GDB/MI: Add new "--language LANG" command option.
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2013-11-14 Joel Brobecker <brobecker@adacore.com>
2
3 * mi/mi-parse.h (struct mi_parse) <language>: New field.
4 * mi/mi-main.c (mi_cmd_execute): Temporarily set language to
5 PARSE->LANGUAGE during command execution, if set.
6 * mi/mi-parse.c: Add "language.h" #include.
7 (mi_parse): Add parsing of "--language" command option.
8
9 * NEWS: Add entry mentioning the new "--language" command option.
10
11 2013-11-14 Pedro Alves <palves@redhat.com>
12 Joel Brobecker <brobecker@adacore.com>
13
14 * cli/cli-utils.h (extract_arg_const): Add declaration.
15 * cli/cli-utils.c (extract_arg_const): New function.
16 (extract_arg): Reimplement using extract_arg_const.
17
18 2013-11-14 Joel Brobecker <brobecker@adacore.com>
19
20 * language.h: Add "symtab.h" #include.
21
22 2013-11-13 Doug Evans <xdje42@gmail.com>
23
24 * breakpoint.c (bpstat_check_breakpoint_conditions): For thread
25 specific breakpoints, don't evaluate breakpoint condition if
26 different thread.
27
28 2013-11-13 Keith Seitz <keiths@redhat.com>
29
30 PR c++/7935
31 PR c++/10541
32 * cp-support.c (insepct_type): Add support for substituting
33 namespace aliases, too.
34 * dwarf2read.c (scan_partial_symbols): Add a partial symbol
35 for DW_TAG_imported_declaration.
36 (add_partial_symbol): Likewise.
37 (process_die): Handle namespace aliases with
38 read_namespace_alias.
39 (die_needs_namespace): Add DW_TAG_imported_declaration.
40 (read_namespace_alias): New function.
41 (load_partial_dies): Load DW_TAG_imported_declaration, too.
42 (new_symbol_full): Handle DW_TAG_imported_declaration.
43
44 2013-11-13 Keith Seitz <keiths@redhat.com>
45
46 * p-exp.y (uptok): Make first parameter const.
47 (yylex): Make `tokstart' and `tokptr' const.
48 Don't copy the lexer input to a temporary buffer.
49 Make `p' const.
50 Remove const workaround for parse_escape.
51 Create a temporary buffer for a convenience variable instead
52 of doing in-place modification of the input.
53 If a match is found with a different case from the input,
54 do not change the input at all.
55 Use `tmp' to construct the resultant stoken instead of
56 `tokstart'.
57
58 2013-11-13 Doug Evans <xdje42@gmail.com>
59
60 * breakpoint.c (breakpoint_cond_eval): Fix and enhance comment.
61
62 2013-11-13 Joel Brobecker <brobecker@adacore.com>
63
64 * mi/mi-main.c (mi_cmd_list_features): Replace "info-ada-exceptions"
65 entry with "ada-exceptions".
66
67 2013-11-13 Joel Brobecker <brobecker@adacore.com>
68
69 * symfile.c (reread_symbols): Move call to set_objfile_per_bfd
70 after re-initialization of OBJFILE's obstack.
71
72 2013-11-12 Doug Evans <xdje42@gmail.com>
73
74 * breakpoint.c (bpstat_check_breakpoint_conditions): Assert
75 bs->stop != 0 on entry. Update function comment. Simplify early
76 exit for frame mismatch. Reindent rest of function.
77
78 2013-11-12 Andreas Arnez <arnez@linux.vnet.ibm.com>
79
80 * objc-lang.c (uniquify_strings): Prevent invoking qsort with
81 NULL.
82
83 2013-11-12 Doug Evans <dje@google.com>
84
85 Work around gold/15646.
86 * dwarf2read.c (read_index_from_section): Update comment.
87 (struct dw2_symtab_iterator): New member global_seen.
88 (dw2_symtab_iter_init): Initialize it.
89 (dw2_symtab_iter_next): Skip duplicate global symbols.
90 (dw2_expand_symtabs_matching): Ditto.
91
92 2013-11-12 Joel Brobecker <brobecker@adacore.com>
93
94 * mi/mi-cmds.h (mi_cmd_info_ada_exceptions): Add declaration.
95 * mi/mi-cmds.c (mi_cmds): Add entry for -info-ada-exceptions
96 command.
97 * mi/mi-cmd-info.c: #include "ada-lang.c" and "arch-utils.c".
98 (mi_cmd_info_ada_exceptions): New function.
99 * mi/mi-main.c (mi_cmd_list_features): Add "info-ada-exceptions".
100
101 2013-11-12 Joel Brobecker <brobecker@adacore.com>
102
103 * ada-lang.h: #include "vec.h".
104 (struct ada_exc_info): New.
105 (ada_exc_info): New typedef.
106 (DEF_VEC_O(ada_exc_info)): New vector.
107 (ada_exceptions_list): Add declaration.
108 * ada-lang.c (ada_is_exception_sym)
109 (ada_is_non_standard_exception_sym, compare_ada_exception_info)
110 (sort_remove_dups_ada_exceptions_list)
111 (ada_exc_search_name_matches, ada_add_standard_exceptions)
112 (ada_add_exceptions_from_frame, ada_add_global_exceptions)
113 (ada_exceptions_list_1, ada_exceptions_list)
114 (info_exceptions_command): New function.
115 (_initialize_ada_language): Add "info exception" command.
116
117 2013-11-11 Phil Muldoon <pmuldoon@redhat.com>
118
119 PR python/15629
120 * NEWS: Add linetable feature.
121 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-linetable entries.
122 * python/py-linetable.c: New file.
123 * python/py-symtab.c (stpy_get_linetable): New function.
124 * python/python-internal.h (symtab_to_linetable_object): Declare.
125 (gdbpy_initialize_linetable): Ditto.
126 * python/python.c (_initialize_python): Call
127 gdbpy_initialize_linetable.
128
129 2013-11-11 Joel Brobecker <brobecker@adacore.com>
130
131 * ada-lang.c (create_ada_exception_catchpoint): Enhance
132 the documentation of fields "except_string" and "condition".
133 * mi/mi-cmd-catch.c (mi_cmd_catch_assert): Reallocate
134 CONDITION on the heap before passing it to
135 create_ada_exception_catchpoint.
136 (mi_cmd_catch_exception): Likewise for EXCEPTION_NAME and
137 CONDITION.
138
139 2013-11-11 Tom Tromey <tromey@redhat.com>
140
141 * config.in, configure: Rebuild.
142 * configure.ac (HAVE_TKILL_SYSCALL): Check for "syscall".
143
144 2013-11-11 Joel Brobecker <brobecker@adacore.com>
145
146 * remote-sim.c (gdbsim_detach): Break declaration into
147 shorter lines. No code change.
148
149 2013-11-11 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
150
151 * remote-sim.c (gdbsim_detach): Fix prototype.
152
153 2013-11-08 Doug Evans <dje@google.com>
154
155 * dwarf2read.c (dwarf2_read_debug): Change to unsigned int.
156 (create_debug_types_hash_table): Only print debugging messages for
157 each TU if dwarf2-read >= 2.
158 (process_queue): Ditto.
159 (_initialize_dwarf2_read): Make "set debug dwarf2-read" a zuinteger.
160 Update doc string.
161
162 2013-11-08 Tom Tromey <tromey@redhat.com>
163
164 * configure: Rebuild.
165 * configure.ac: Remove mentions of HAVE_MULTIPLE_PROC_FDS.
166
167 2013-11-08 Tom Tromey <tromey@redhat.com>
168
169 * configure, config.in: Rebuild.
170 * configure.ac: Remove unused configury.
171
172 2013-11-08 Tom Tromey <tromey@redhat.com>
173
174 * m32c-tdep.c: Use gdb_string.h.
175
176 2013-11-08 Tom Tromey <tromey@redhat.com>
177
178 * configure, config.in: Rebuild.
179 * configure.ac: Remove all link.h-related checks.
180
181 2013-11-08 Tom Tromey <tromey@redhat.com>
182
183 * acinclude.m4: Include common.m4.
184 * common/common.m4: New file.
185 * configure, config.in: Rebuild.
186 * configure.ac: Use GDB_AC_COMMON.
187
188 2013-11-08 Doug Evans <dje@google.com>
189
190 * NEWS: Mention that "set debug symtab-create" now accepts a
191 verbosity level.
192 * buildsym.c (end_symtab_from_static_block): Call set_symtab_primary
193 to set the symtab's primary flag.
194 * jit.c (finalize_symtab): Ditto.
195 * mdebugread.c (psymtab_to_symtab_1): Ditto.
196 * symfile.c (allocate_symtab): Only print debugging messages for
197 symtab_create_debug levels 2 and higher.
198 * symtab.c (symtab_create_debug): Change type to unsigned int.
199 (set_symtab_primary): New function.
200 (_initialize_symtab): Change "set debug symtab-create" to a
201 zuinteger option.
202 * symtab.h (set_symtab_primary): Declare.
203 (symtab_create_debug): Update decl.
204
205 2013-11-08 Tom Tromey <tromey@redhat.com>
206
207 * aix-thread.c (aix_thread_detach): Update.
208 * corelow.c (core_detach): Update.
209 * darwin-nat.c (darwin_detach): Update.
210 * dec-thread.c (dec_thread_detach): Update.
211 * gnu-nat.c (gnu_detach): Update.
212 * go32-nat.c (go32_detach): Update.
213 * inf-ptrace.c (inf_ptrace_detach): Update.
214 * inf-ttrace.c (inf_ttrace_detach): Update.
215 * linux-fork.c (linux_fork_detach): Update.
216 * linux-fork.h (linux_fork_detach): Update.
217 * linux-nat.c (linux_nat_detach): Update. Introduce "tem"
218 local for const-correctness.
219 * linux-thread-db.c (thread_db_detach): Update.
220 * monitor.c (monitor_detach): Update.
221 * nto-procfs.c (procfs_detach): Update.
222 * procfs.c (procfs_detach): Update.
223 * record.c (record_detach): Update.
224 * record.h (record_detach): Update.
225 * remote-m32r-sdi.c (m32r_detach): Update.
226 * remote-mips.c (mips_detach): Update.
227 * remote-sim.c (gdbsim_detach): Update.
228 * remote.c (remote_detach_1, remote_detach)
229 (extended_remote_detach): Update.
230 * sol-thread.c (sol_thread_detach): Update.
231 * target.c (target_detach): Make "args" const.
232 (init_dummy_target): Update.
233 * target.h (struct target_ops) <to_detach>: Make argument const.
234 (target_detach): Likewise.
235 * windows-nat.c (windows_detach): Update.
236
237 2013-11-07 Doug Evans <dje@google.com>
238
239 PR 11786
240 * solib-svr4.c (svr4_exec_displacement): Ignore filesz, memsz, flags
241 and align fields for PT_GNU_RELRO segments.
242
243 2013-11-07 Phil Muldoon <pmuldoon@redhat.com>
244
245 PR python/15747
246 * python/py-cmd.c: Add COMPLETE_EXPRESSION constant.
247
248 2013-11-07 Phil Muldoon <pmuldoon@redhat.com>
249
250 * NEWS: Document Python temporary breakpoint support.
251 * python/py-breakpoint.c (bppy_get_temporary): New function.
252 (bppy_init): New keyword: temporary. Parse it and set breakpoint
253 to temporary if True.
254
255 2013-11-07 Jose E. Marchesi <jose.marchesi@oracle.com>
256
257 * sparc-tdep.c (sparc_analyze_control_transfer): Assertion
258 removed to allow analyzing unconditional branch instructions
259 with PC-relative offsets of zero.
260
261 2013-11-07 Yao Qi <yao@codesourcery.com>
262
263 * mi/mi-cmd-var.c: Include "language.h".
264 (mi_cmd_var_info_expression): Get language name from
265 language_defn.
266 * varobj.c (varobj_language_string): Remove.
267 (variable_language): Remove declaration.
268 (languages): Remove.
269 (varobj_get_language): Change the type of return value.
270 (variable_language): Remove.
271 * varobj.h (enum varobj_languages): Remove.
272 (varobj_language_string): Remove declaration.
273 (varobj_get_language): Update declaration.
274
275 2013-11-07 Yao Qi <yao@codesourcery.com>
276
277 * language.h (struct language_defn) <la_natural_name>: New
278 field.
279 * ada-lang.c (ada_language_defn): Initialize field
280 'la_natural_name'.
281 * c-lang.c (c_language_defn): Likewise.
282 (cplus_language_defn, asm_language_defn): Likewise.
283 * d-lang.c (d_language_defn): Likewise.
284 * f-lang.c (f_language_defn): Likewise.
285 * go-lang.c (go_language_defn): Likewise.
286 * jv-lang.c (java_language_defn): Likewise.
287 * language.c (unknown_language_defn ): Likewise.
288 (auto_language_defn): Likewise.
289 * m2-lang.c (m2_language_defn): Likewise.
290 * objc-lang.c (objc_language_defn): Likewise.
291 * opencl-lang.c (opencl_language_defn): Likewise.
292 * p-lang.c (pascal_language_defn): Likewise.
293
294 2013-11-07 Yao Qi <yao@codesourcery.com>
295
296 * language.c (language_str): Return const char *.
297 (add_language): Add const to 'language_names'
298 * language.h (struct language_defn) <la_name>: Add const.
299 (language_str: Update declaration.
300
301 2013-11-06 Andreas Arnez <arnez@linux.vnet.ibm.com>
302
303 * s390-linux-nat.c (s390_read_description): Consider the TE field
304 in the HWCAP for determining 'have_regset_tdb'.
305
306 2013-11-06 Will Newton <will.newton@linaro.org>
307
308 PR gdb/12866
309 * dwarf2read.c (skip_one_die): Sanity check DW_AT_sibling
310 values. (read_partial_die): Likewise.
311
312 2013-11-06 Muhammad Bilal <mbilal@codesourcery.com>
313
314 PR cli/16122
315 * top.c (command_line_input): Unify interactivity tests to use
316 input_from_terminal_p.
317 * event-top.c (command_line_handler): Likewise.
318
319 2013-11-06 Yao Qi <yao@codesourcery.com>
320
321 * Makefile.in (check-perf): New target.
322
323 2013-11-05 Will Newton <will.newton@linaro.org>
324
325 PR gdb/7670
326 * arm-tdep.c (print_fpu_flags): Use filtered output routines.
327 (arm_print_float_info): Likewise.
328
329 2013-11-04 Anton Blanchard <anton@samba.org>
330
331 * target.c (memory_xfer_partial): Cap write to 4KB.
332
333 2013-11-01 Tiago Stürmer Daitx <tdaitx@linux.vnet.ibm.com>
334
335 * breakpoint.c (create_longjmp_master_breakpoint): Allow libc
336 probe scan even when the arch provides no get_longjmp_target.
337
338 2013-10-31 Pedro Alves <palves@redhat.com>
339
340 * infrun.c (handle_syscall_event): Don't set or clear stop_signal.
341 (handle_inferior_event) <TARGET_WAITKIND_FORKED,
342 TARGET_WAITKIND_VFORKED>: Don't set stop_signal to
343 GDB_SIGNAL_TRAP, or clear it. Pass GDB_SIGNAL_0 to
344 bpstat_explains signal, instead of GDB_SIGNAL_TRAP.
345 <bpstat handling>: If the bpstat chain wants the signal to be
346 hidden, then set stop_signal to GDB_SIGNAL_0 instead of
347 GDB_SIGNAL_TRAP.
348
349 2013-10-31 Andrew Burgess <aburgess@broadcom.com>
350
351 * breakpoint.c (update_watchpoint): Update error message and add
352 an additional error message.
353
354 2013-10-30 Andreas Arnez <arnez@linux.vnet.ibm.com>
355
356 * s390-tdep.h: Rename to...
357 * s390-linux-tdep.h: ...here.
358 * s390-tdep.c: Rename to...
359 * s390-linux-tdep.c: ...here. Adjust #include.
360 * s390-nat.c: Rename to...
361 * s390-linux-nat.c: ...here. Adjust #include.
362 * config/s390/s390.mh: Rename to...
363 * config/s390/linux.mh: ...here. Reflect rename s390-nat.o ->
364 s390-linux-nat.o.
365 * configure.host: Reflect host rename "s390" -> "linux".
366 * configure.tgt: Reflect rename s390-tdep.o -> s390-linux-tdep.o.
367 * Makefile.in (ALL_TARGET_OBS): Likewise.
368 (HFILES_NO_SRCDIR): Reflect rename s390-tdep.h ->
369 s390-linux-tdep.h.
370 (ALLDEPFILES): Reflect rename of .c files.
371
372 2013-10-30 Andreas Arnez <arnez@linux.vnet.ibm.com>
373
374 * s390-nat.c: Whitespace cleanup.
375 * s390-tdep.c: Likewise.
376 * s390-tdep.h: Remove empty line at end of file.
377
378 2013-10-30 Maciej W. Rozycki <macro@codesourcery.com>
379
380 * linux-tdep.c (linux_corefile_thread_callback): Preinitialize
381 siginfo_size.
382
383 2013-10-29 Tom Tromey <tromey@redhat.com>
384
385 * utils.c (reg): Move undefinition...
386 * gdb_curses.h: ... here. Update comment to mention AIX.
387
388 2013-10-29 Nicolas Blanc <nicolas.blanc@intel.com>
389
390 * exec.h (add_target_sections_of_objfile): New declaration.
391 * exec.c (add_target_sections_of_objfile): New function.
392 * symfile.c (add_symbol_file_command): Update current target sections.
393 (remove_symbol_file_command): New command.
394 (symfile_free_objfile): New function.
395 (_initialize_symfile): Register observer for free_objfile events.
396 * NEWS: Add description of the remove-symbol-file command.
397 * breakpoint.c (disable_breakpoints_in_freed_objfile): New function.
398 * objfiles.c (free_objfile): Notify free_objfile.
399 (is_addr_in_objfile): New function.
400 * objfiles.h (is_addr_in_objfile): New declaration.
401 * printcmd.c (clear_dangling_display_expressions): Act upon free_objfile
402 events instead of solib_unloaded events.
403 (_initialize_printcmd): Register observer for free_objfile instead
404 of solib_unloaded notifications.
405 * solib.c (remove_user_added_objfile): New function.
406 (_initialize_symfile): Add remove-symbol-file.
407
408 2013-10-29 Andrew Burgess <aburgess@broadcom.com>
409
410 * infcmd.c (default_print_one_register_info): Use val_print to
411 print all values even optimized out or unavailable ones. Don't
412 try to print a raw form of optimized out or unavailable values.
413
414 2013-10-29 Yao Qi <yao@codesourcery.com>
415
416 * auto-load.c (auto_load_pspace_data_cleanup): Get data from
417 parameter 'arg' instead of from program_space_data.
418 * objfiles.c (objfiles_pspace_data_cleanup): Likewise.
419 * solib-darwin.c (darwin_pspace_data_cleanup): Likewise.
420 * solib-dsbt.c (dsbt_pspace_data_cleanup): Likewise.
421 * solib-svr4.c (svr4_pspace_data_cleanup): Likewise.
422 * inflow.c (inflow_inferior_data_cleanup): Get data from
423 parameter 'arg' instead of inferior_data.
424 * registry.h: Add comments.
425
426 2013-10-28 Pedro Alves <palves@redhat.com>
427
428 * breakpoint.c (watchpoints_triggered)
429 <!target_stopped_data_address>: Hardcode return 1.
430
431 2013-10-28 Pedro Alves <palves@redhat.com>
432
433 * infrun.c (process_event_stop_test): Remove unnecessary scoping
434 level and reindent.
435
436 2013-10-28 Pedro Alves <palves@redhat.com>
437
438 * infrun.c (process_event_stop_test): New function, factored out
439 from handle_inferior_event.
440 (handle_inferior_event): 'process_event_stop_test' is now a
441 function instead of a goto label -- adjust.
442
443 2013-10-28 Pedro Alves <palves@redhat.com>
444
445 * infrun.c (handle_inferior_event): Move process_event_stop_test
446 goto label to the else branch of the ecs->random_signal check,
447 along with FRAME and GDBARCH re-fetching.
448
449 2013-10-28 Pedro Alves <palves@redhat.com>
450
451 * infrun.c (switch_back_to_stepped_thread): New function, factored
452 out from handle_inferior_event.
453 (handle_inferior_event): Adjust to call
454 switch_back_to_stepped_thread. Call it also at the tail of the
455 random signal handling, and return, instead of also handling
456 random signals just before the stepping tests.
457
458 2013-10-28 Pedro Alves <palves@redhat.com>
459
460 * infrun.c (clear_stop_func): Delete.
461 (handle_inferior_event): Don't call clear_stop_func and don't
462 clear 'ecs->random_signal'.
463
464 2013-10-27 Yao Qi <yao@codesourcery.com>
465
466 * varobj.c (struct varobj_root) <lang>: Rename to 'lang_ops'.
467 (varobj_create, varobj_get_path_expr): Update.
468 (varobj_value_has_mutated, varobj_update): Likewise.
469 (create_child_with_value, new_root_variable): Likewise.
470 (number_of_children, name_of_variable): Likewise.
471 (value_of_child, my_value_of_variable): Likewise.
472 (varobj_value_is_changeable_p): Likewise.
473
474 2013-10-25 Yao Qi <yao@codesourcery.com>
475
476 * language.h (struct lang_varobj_ops): Declare.
477 (struct language_defn) <la_varobj_ops>: New field.
478 * ada-lang.c: Include "varobj.h"
479 (defn ada_language_defn): Initialize field 'la_varobj_ops' with
480 ada_varobj_ops.
481 * c-lang.c: Include "varobj.h"
482 (c_language_defn): Initialize field 'la_varobj_ops' with
483 c_varobj_ops.
484 (cplus_language_defn): Initialize field 'la_varobj_ops' with
485 cplus_varobj_ops.
486 (asm_language_defn): Initialize field 'la_varobj_ops' with
487 default_varobj_ops.
488 (minimal_language_defn): Likewise.
489 * d-lang.c (d_language_defn): Likewise.
490 * f-lang.c (f_language_defn): Likewise.
491 * go-lang.c (go_language_defn): Likewise.
492 * m2-lang.c (m2_language_defn): Likewise.
493 * objc-lang.c (objc_language_defn): Likewise.
494 * opencl-lang.c (opencl_language_defn): Likewise.
495 * p-lang.c (pascal_language_defn): Likewise.
496 * language.c (unknown_language_defn): Likewise.
497 (auto_language_defn): Likewise.
498 (local_language_defn): Likewise.
499 * jv-lang.c (java_language_defn): Initialize field
500 'la_varobj_ops' with java_varobj_ops.
501 * varobj.c (varobj_create): Update.
502 * varobj.h (default_varobj_ops): Define macro.
503
504 2013-10-25 Pedro Alves <palves@redhat.com>
505
506 * cp-valprint.c (cp_print_value_fields): No longer handle a NULL
507 static field value.
508 (cp_print_static_field): If the value is entirely optimized out,
509 print <optimized out> here.
510 * jv-valprint.c (java_print_value_fields): No longer handle a NULL
511 static field value.
512 * p-valprint.c (pascal_object_print_static_field): If the value is
513 entirely optimized out, print <optimized out> here.
514 * valops.c (do_search_struct_field)
515 (value_struct_elt_for_reference): No longer handle a NULL static
516 field value.
517 * value.c (value_static_field): Return an optimized out value
518 instead of NULL.
519
520 2013-10-25 Yao Qi <yao@codesourcery.com>
521
522 * remote.c (remote_traceframe_info): Return early if
523 traceframe is not selected.
524
525 2013-10-25 Yao Qi <yao@codesourcery.com>
526
527 * tracepoint.c (traceframe_fun): Remove.
528 (traceframe_sal): Remove.
529 (set_traceframe_context): Add local variables.
530
531 2013-10-25 Joel Brobecker <brobecker@adacore.com>
532
533 * varobj.h (struct lang_varobj_ops): Remove spaces between '*'
534 and parameter name.
535
536 2013-10-24 Maciej W. Rozycki <macro@codesourcery.com>
537
538 * linux-tdep.c (linux_corefile_thread_callback): Propagate any
539 failure from register information collection.
540
541 2013-10-24 Maciej W. Rozycki <macro@codesourcery.com>
542
543 * linux-tdep.c (linux_corefile_thread_data): Remove `num_notes'
544 member.
545 (linux_corefile_thread_callback): Update accordingly.
546 (linux_make_corefile_notes): Likewise.
547
548 2013-10-24 Pedro Alves <palves@redhat.com>
549
550 * NEWS (New options): Mention set/show startup-with-shell.
551 * config/alpha/nm-osf3.h (START_INFERIOR_TRAPS_EXPECTED): Set to 2
552 instead of 3.
553 * fork-child.c (fork_inferior, startup_inferior): Handle 'set
554 startup-with-shell'.
555 (show_startup_with_shell): New function.
556 (_initialize_fork_child): Register the set/show startup-with-shell
557 commands.
558 * inf-ptrace.c (inf_ptrace_create_inferior): Remove comment.
559 * inf-ttrace.c (inf_ttrace_him): Remove comment.
560 * procfs.c (procfs_init_inferior): Remove comment.
561 * infcmd.c (startup_with_shell): New global.
562 * inferior.h (startup_with_shell): Declare global.
563 (STARTUP_WITH_SHELL): Delete.
564 (START_INFERIOR_TRAPS_EXPECTED): Set to 1 by default instead of 2.
565
566 2013-10-23 Pedro Alves <palves@redhat.com>
567
568 * common/gdb_signals.h (gdb_signal_to_symbol_string): Declare.
569 * common/signals.c: Include "gdb_assert.h".
570 (signals): New field 'symbol'.
571 (SET): Use the 'symbol' parameter.
572 (gdb_signal_to_symbol_string): New function.
573 * infrun.c (handle_inferior_event) <random signal>: In debug
574 output, print the random signal enum as string in addition to its
575 number.
576 * target/waitstatus.c (target_waitstatus_to_string): Print the
577 signal's enum value as string instead of the (POSIX) signal name.
578
579 2013-10-23 Gary Benson <gbenson@redhat.com>
580
581 PR 16013
582 * common/linux-osdata.c (command_from_pid): Reduced size of cmd
583 from 32 to 18. Adjusted fscanf format string accordingly.
584 (Avoids leaving cmd unterminated.)
585 (print_sockets): Do not parse tlen, inode, sl, timeout, txq, rxq,
586 trun, retn or extra. (Avoids leaving extra unterminated.) Check
587 that local_address and remote_address will not overflow.
588 (linux_xfer_osdata_modules): Parse lines using strtok to avoid
589 leaving dependencies unterminated. Parse size as "%u" to match
590 definition.
591
592 2013-10-22 Pedro Alves <palves@redhat.com>
593
594 * infrun.c (handle_inferior_event) <thread hop>: Don't clear or
595 set ecs->random signal.
596
597 2013-10-22 Pedro Alves <palves@redhat.com>
598
599 * infrun.c (keep_going): Update comments.
600
601 2013-10-22 Pedro Alves <palves@redhat.com>
602
603 * remote.c (remote_parse_stop_reply) <'T'/'S'/'X' replies>: Map
604 invalid signal numbers to GDB_SIGNAL_UNKNOWN.
605
606 2013-10-22 Pedro Alves <palves@redhat.com>
607
608 * include/gdb/signals.def (TARGET_EXC_BAD_ACCESS): Rename to
609 GDB_EXC_BAD_ACCESS.
610 (TARGET_EXC_BAD_INSTRUCTION): Rename to GDB_EXC_BAD_INSTRUCTION.
611 (TARGET_EXC_ARITHMETIC): Rename to GDB_EXC_ARITHMETIC.
612 (TARGET_EXC_EMULATION): Rename to GDB_EXC_EMULATION.
613 (TARGET_EXC_SOFTWARE): Rename to GDB_EXC_SOFTWARE.
614 (TARGET_EXC_BREAKPOINT): Rename to GDB_EXC_BREAKPOINT.
615 (GDB_SIGNAL_LAST): Change description string.
616 * common/signals.c (gdb_signal_from_host, do_gdb_signal_to_host):
617 Adjust to signal renaming.
618 * darwin-nat.c (darwin_decode_message): Likewise.
619
620 2013-10-22 Jose E. Marchesi <jose.marchesi@oracle.com>
621
622 * MAINTAINERS (Write After Approval): Add myself to the list.
623
624 2013-10-18 Andrew Burgess <aburgess@broadcom.com>
625
626 * breakpoint.c (update_watchpoint): If hardware watchpoints are
627 forced off, downgrade them to software watchpoints if possible,
628 and error out if not possible.
629 (watch_command_1): Move watchpoint type selection closer to
630 watchpoint creation, and extend the comments.
631
632 2013-10-18 Pedro Alves <palves@redhat.com>
633
634 PR gdb/16062
635 * infrun.c (handle_inferior_event): Keep going if we got a random
636 signal we should not stop for, instead of falling through to the
637 step tests.
638
639 2013-10-18 Yao Qi <yao@codesourcery.com>
640
641 * c-varobj.c (cplus_number_of_children): Fix indentation.
642
643 2013-10-17 Tom Tromey <tromey@redhat.com>
644
645 PR gdb/15995:
646 * printcmd.c (printcmd): Call gdb_flush.
647
648 2013-10-17 Tom Tromey <tromey@redhat.com>
649
650 * elfread.c (struct elfinfo) <stabindexsect>: Remove.
651 (elf_locate_sections): Update.
652
653 2013-10-17 Yao Qi <yao@codesourcery.com>
654
655 * Makefile.in (HFILES_NO_SRCDIR): Remove ada-varobj.h.
656 * ada-varobj.c: Remove the include of ada-varobj.h.
657 (ada_varobj_get_number_of_children): Declare.
658 (ada_varobj_get_name_of_child): Make it static.
659 (ada_varobj_get_path_expr_of_child): Likewise.
660 (ada_varobj_get_value_of_child): Likewise.
661 (ada_varobj_get_type_of_child): Likewise.
662 (ada_varobj_get_value_of_array_variable): Likewise.
663 * ada-varobj.h: Remove.
664
665 2013-10-17 Yao Qi <yao@codesourcery.com>
666
667 * Makefile.in (SFILES): Add c-varobj.c and jv-varobj.c.
668 (COMMON_OBS): Add c-varobj.o and jv-varobj.o.
669 * ada-varobj.c: Include "varobj.h".
670 (ada_number_of_children): New. Moved from varobj.c.
671 (ada_name_of_variable, ada_name_of_child): Likewise.
672 (ada_path_expr_of_child, ada_value_of_child): Likewise.
673 (ada_type_of_child, ada_value_of_variable): Likewise.
674 (ada_value_is_changeable_p, ada_value_has_mutated): Likewise.
675 (ada_varobj_ops): New.
676 * c-varobj.c, jv-varobj.c: New file. Moved from varobj.c.
677 * gdbtypes.c (get_target_type): New. Moved from varobj.c.
678 * gdbtypes.h (get_target_type): Declare.
679 * varobj.c: Remove the inclusion of "ada-varobj.h" and
680 "ada-lang.h".
681 (ANONYMOUS_STRUCT_NAME): Move it to c-varobj.c.
682 (ANONYMOUS_UNION_NAME): Likewise.
683 (get_type, get_value_type, get_target_type): Remove declarations.
684 (value_get_print_value, varobj_value_get_print_value): Likewise.
685 (c_number_of_children, c_name_of_variable): Likewise.
686 (c_name_of_child, c_path_expr_of_child): Likewise.
687 (c_value_of_child, c_type_of_child): Likewise.
688 (c_value_of_variable, cplus_number_of_children): Likewise.
689 (cplus_class_num_children, cplus_name_of_variable): Likewise.
690 (cplus_name_of_child, cplus_path_expr_of_child): Likewise.
691 (cplus_value_of_child, cplus_type_of_child): Likewise.
692 (cplus_value_of_variable, java_number_of_children): Likewise.
693 (java_name_of_variable, java_name_of_child): Likewise.
694 (java_path_expr_of_child, java_value_of_child): Likewise.
695 (java_type_of_child, java_value_of_variable): Likewise.
696 (ada_number_of_children, ada_name_of_variable): Likewise.
697 (ada_name_of_child, ada_path_expr_of_child): Likewise.
698 (ada_value_of_child, ada_type_of_child): Likewise.
699 (ada_value_of_variable, ada_value_is_changeable_p): Likewise.
700 (ada_value_has_mutated): Likewise.
701 (struct language_specific): Move it to varobj.h.
702 (CPLUS_FAKE_CHILD): Move it to varobj.h.
703 (restrict_range): Rename it varobj_restrict_range. Make it extern.
704 Callers update.
705 (get_path_expr_parent): Rename it to varobj_get_path_expr_parent.
706 Make it extern.
707 (is_anonymous_child): Move it to c-varobj.c and rename to
708 varobj_is_anonymous_child. Caller update.
709 (get_type): Move it to c-varobj.c.
710 (get_value_type): Rename it varobj_get_value_type. Make it
711 extern.
712 (get_target_type): Move it gdbtypes.c.
713 (varobj_formatted_print_options): New function.
714 (value_get_print_value): Rename it to
715 varobj_value_get_print_value and make it extern.
716 (varobj_value_is_changeable_p): Make it extern.
717 (adjust_value_for_child_access): Move it to c-varobj.c.
718 (default_value_is_changeable_p): Rename it to
719 varobj_default_value_is_changeable_p. Make it extern.
720 (c_number_of_children, c_name_of_variable): Move it to c-varobj.c
721 (c_name_of_child, c_path_expr_of_child): Likewise.
722 (c_value_of_child, c_type_of_child): Likewise.
723 (c_value_of_variable, cplus_number_of_children): Likewise.
724 (cplus_class_num_children, cplus_name_of_variable): Likewise.
725 (cplus_name_of_child, cplus_path_expr_of_child): Likewise.
726 (cplus_value_of_child, cplus_type_of_child): Likewise.
727 (cplus_value_of_variable): Likewise.
728 (java_number_of_children, java_name_of_variable): Move it to jv-varobj.c.
729 (java_name_of_child, java_path_expr_of_child): Likewise.
730 (java_value_of_child, java_type_of_child): Likewise.
731 (java_value_of_variable): Likewise.
732 (ada_number_of_children, ada_name_of_variable): Move it to ada-varobj.c.
733 (ada_name_of_child, ada_path_expr_of_child): Likewise.
734 (ada_value_of_child, ada_type_of_child): Likewise.
735 (ada_value_of_variable, ada_value_is_changeable_p): Likewise.
736 (ada_value_has_mutated): Likewise.
737 * varobj.h (CPLUS_FAKE_CHILD): New macro, moved from varobj.c.
738 (struct lang_varobj_ops): New. Renamed by 'struct language_specific'.
739 (c_varobj_ops, cplus_varobj_ops): Declare.
740 (java_varobj_ops, ada_varobj_ops): Declare.
741 (varobj_default_value_is_changeable_p): Declare.
742 (varobj_value_is_changeable_p): Declare.
743 (varobj_get_value_type, varobj_is_anonymous_child): Declare.
744 (varobj_get_path_expr_parent): Declare.
745 (varobj_value_get_print_value): Declare.
746 (varobj_formatted_print_options): Declare.
747 (varobj_restrict_range): Declare.
748
749 2013-10-17 Luis Machado <lgustavo@codesourcery.com>
750
751 * target/waitstatus.h (target_waitkind): Remove spurious
752 character from the comments.
753
754 2013-10-17 Joel Brobecker <brobecker@adacore.com>
755
756 * gdbarch.sh (get_longjmp_target): Add method documentation.
757 * gdbarch.h: Regenerate.
758
759 2013-10-16 Tom Tromey <tromey@redhat.com>
760
761 * dbxread.c (read_dbx_symtab) <bss_ext_symbol>: Remove unused
762 label.
763
764 2013-10-16 Luis Machado <lgustavo@codesourcery.com>
765
766 * gcore.in: Call GDB using the full path to the gcore script.
767 Error out if the GDB binary is not found.
768
769 2013-10-16 Sergio Durigan Junior <sergiodj@redhat.com>
770
771 PR gdb/16014
772 * dwarf2read.c (dw2_get_real_path): Remove unnecessary call to
773 sizeof.
774
775 2013-10-16 Sergio Durigan Junior <sergiodj@redhat.com>
776
777 PR gdb/16042
778 * target.c (target_disable_btrace): Fix invalid return value for
779 void function.
780 (target_teardown_btrace): Likewise.
781
782 2013-10-14 Yao Qi <yao@codesourcery.com>
783
784 * varobj.c (struct varobj): Move most of the fields to
785 varobj.h.
786 (struct varobj_dynamic): New struct.
787 (varobj_get_display_hint) [HAVE_PYTHON]: Adjust.
788 (varobj_has_more): Likewise.
789 (dynamic_varobj_has_child_method): Likewise.
790 (update_dynamic_varobj_children): Likewise.
791 (varobj_get_num_children): Likewise.
792 (varobj_list_children, varobj_pretty_printed_p): Likewise.
793 (install_new_value_visualizer): Likewise.
794 (install_new_value_visualizer, install_new_value): Likewise.
795 (varobj_update, new_variable, free_variable): Likewise.
796 (my_value_of_variable, value_get_print_value): Likewise.
797 (install_visualizer): Change the type of parameter 'var' to
798 'struct varobjd_dynamic *'. Callers update.
799 * varobj.h (struct varobj): Moved from varobj.c.
800 (struct varobj) <dynamic>: New field.
801
802 2013-10-13 Sandra Loosemore <sandra@codesourcery.com>
803
804 * nios2-tdep.c (nios2_reg_names): Use "sstatus" rather than "ba"
805 as the preferred name of r30.
806 * nios2-linux-tdep.c (reg_offsets): Likewise.
807 * features/nios2-cpu.xml: Likewise.
808 * features/nios2-linux.c: Regenerated.
809 * features/nios2.c: Regenerated.
810 * regformats/nios2-linux.dat: Regenerated.
811
812 2013-10-13 Jan Kratochvil <jan.kratochvil@redhat.com>
813
814 Canonicalize directories for EXEC_FILENAME.
815 * exec.c (exec_file_attach): Use gdb_realpath_keepfile for
816 exec_filename.
817 * utils.c (gdb_realpath_keepfile): New function.
818 * utils.h (gdb_realpath_keepfile): New declaration.
819
820 2013-10-11 Doug Evans <dje@google.com>
821
822 * Makefile.in (GDBFLAGS): New variable.
823 (run): New rule.
824
825 2013-10-11 Joel Brobecker <brobecker@adacore.com>
826
827 * NEWS: Add entry documenting the new "-catch-assert" and
828 "-catch-exception" GDB/MI commands.
829
830 2013-10-11 Joel Brobecker <brobecker@adacore.com>
831
832 * breakpoint.h (init_ada_exception_breakpoint): Add parameter
833 "enabled".
834 * breakpoint.c (init_ada_exception_breakpoint): Add parameter
835 "enabled". Set B->ENABLE_STATE accordingly.
836 * ada-lang.h (ada_exception_catchpoint_kind): Move here from
837 ada-lang.c.
838 (create_ada_exception_catchpoint): Add declaration.
839 * ada-lang.c (ada_exception_catchpoint_kind): Move to ada-lang.h.
840 (create_ada_exception_catchpoint): Make non-static. Add new
841 parameter "disabled". Use it in call to
842 init_ada_exception_breakpoint.
843 (catch_ada_exception_command): Add parameter "enabled" in call
844 to create_ada_exception_catchpoint.
845 (catch_assert_command): Likewise.
846
847 * mi/mi-cmds.h (mi_cmd_catch_assert, mi_cmd_catch_exception):
848 Add declarations.
849 * mi/mi-cmds.c (mi_cmds): Add the "catch-assert" and
850 "catch-exception" commands.
851 * mi/mi-cmd-catch.c: Add #include "ada-lang.h".
852 (mi_cmd_catch_assert, mi_cmd_catch_exception): New functions.
853
854 2013-10-11 Joel Brobecker <brobecker@adacore.com>
855
856 * ada-lang.c (enum ada_exception_catchpoint_kind): Renames
857 "enum exception_catchpoint_kind". Replace the "ex_" prefix
858 of all its enumerates with "ada_". Update the rest of this
859 file throughout.
860
861 2013-10-11 Joel Brobecker <brobecker@adacore.com>
862
863 * ada-lang.c (ada_decode_exception_location): Delete.
864 (create_ada_exception_catchpoint): Remove arguments "sal",
865 "addr_string" and "ops". Add argument "ex_kind" instead.
866 Adjust implementation accordingly, calling ada_exception_sal
867 to get the entities it no longer gets passed as arguments.
868 Document the function's arguments.
869 (catch_ada_exception_command): Use catch_ada_exception_command_split
870 instead of ada_decode_exception_location, and update call to
871 create_ada_exception_catchpoint.
872 (catch_ada_assert_command_split): Renames
873 ada_decode_assert_location. Remove parameters "addr_string" and
874 "ops", and now returns void. Adjust implementation accordingly.
875 Update the function documentation.
876 (catch_assert_command): Use catch_ada_assert_command_split
877 instead of ada_decode_assert_location. Update call to
878 create_ada_exception_catchpoint.
879
880 2013-10-11 Joel Brobecker <brobecker@adacore.com>
881
882 * utils.h (perror_warning_with_name): Add declaration.
883 * utils.c (perror_warning_with_name): New function.
884 * cli/cli-cmds.c (source_script_with_search): Add call to
885 perror_warning_with_name if from_tty is nul.
886
887 2013-10-11 Joel Brobecker <brobecker@adacore.com>
888
889 * utils.c (perror_string): New function, extracted out of
890 throw_perror_with_name.
891 (throw_perror_with_name): Rework to use perror_string.
892
893 2013-10-11 Yao Qi <yao@codesourcery.com>
894
895 * remote.c (discard_pending_stop_replies_in_queue): Update
896 declaration.
897 (struct stop_reply) <rs>: New field.
898 (remove_stop_reply_of_remote_state): New function.
899 (discard_pending_stop_replies_in_queue): Add parameter 'rs'.
900 Callers update. Pass remove_stop_reply_of_remote_state to
901 QUEUE_iterate.
902 (remote_parse_stop_reply): Initialize field 'rs'.
903
904 2013-10-10 Will Newton <will.newton@linaro.org>
905
906 * aarch64-linux-tdep.c (aarch64_linux_init_abi): Call
907 linux_init_abi.
908
909 2013-10-10 Joel Brobecker <brobecker@adacore.com>
910
911 * cli/cli-cmds.c (show_baud_rate): Moved to serial.c as
912 serial_baud_show_cmd.
913 (_initialize_cli_cmds): Delete the code creating the
914 "set/show remotebaud" commands.
915 * serial.c (baud_rate): Move here from top.c.
916 (serial_baud_show_cmd): Move here from cli/cli-cmds.c.
917 (_initialize_serial): Create "set/show serial baud" commands.
918 Add "set/show remotebaud" command aliases.
919 * top.c (baud_rate): Moved to serial.c.
920 * NEWS: Document the new "set/show serial baud" commands,
921 replacing "set/show remotebaud".
922
923 2013-10-09 Pedro Alves <palves@redhat.com>
924
925 * breakpoint.c (insert_bp_location): Use memory_error_message to
926 build the memory error string.
927 * c-lang.c: Include "gdbcore.h".
928 (c_get_string): Use memory_error to throw error.
929 (target_xfer_memory_error): Delete.
930 (memory_error_message): New, factored out from
931 target_xfer_memory_error.
932 (memory_error): Change parameter type to target_xfer_error.
933 Rewrite.
934 (read_memory): Use memory_error instead of
935 target_xfer_memory_error.
936 * gdbcore.h: Include "target.h".
937 (memory_error): Change parameter type to target_xfer_error.
938 (memory_error_message): Declare function.
939 * target.c (target_read_memory, target_read_stack)
940 (target_write_memory, target_write_raw_memory): Return
941 TARGET_XFER_E_IO on error. Adjust comments.
942 (get_target_memory): Pass TARGET_XFER_E_IO to memory_error,
943 instead of EIO.
944 * target.h (target_read, target_insert_breakpoint)
945 (target_remove_breakpoint): Adjust comments.
946 * valprint.c (partial_memory_read): Rename parameter, and adjust
947 comment.
948 (val_print_string): Use memory_error_message to build the memory
949 error string.
950
951 2013-10-09 Jan Kratochvil <jan.kratochvil@redhat.com>
952
953 * common/filestuff.c (gdb_fopen_cloexec): Remove initialization of
954 result variable. Rename variable fopen_e_ever_failed to
955 fopen_e_ever_failed_einval. Retry fopen only for errno EINVAL.
956
957 2013-10-09 Pedro Alves <palves@redhat.com>
958
959 * monitor.c (monitor_write_memory, monitor_write_memory_bytes)
960 (monitor_write_memory_longlongs, monitor_write_memory_block):
961 Constify 'myaddr' parameter.
962 (monitor_xfer_memory): Adjust interface as monitor_xfer_partial
963 helper.
964 (monitor_xfer_partial): New function.
965 (init_base_monitor_ops): Don't install a deprecated_xfer_memory
966 hook. Install a to_xfer_partial hook.
967
968 2013-10-09 Tom Tromey <tromey@redhat.com>
969
970 * dwarf2read.c (dwarf2_get_dwz_file): Update for type change in
971 bfd_get_alt_debug_link_info.
972
973 2013-10-09 Jan Kratochvil <jan.kratochvil@redhat.com>
974
975 New flag OBJF_NOT_FILENAME.
976 * auto-load.c (auto_load_objfile_script): Check also OBJF_NOT_FILENAME.
977 * jit.c (jit_object_close_impl): Use OBJF_NOT_FILENAME for
978 allocate_objfile.
979 (jit_bfd_try_read_symtab): Use OBJF_NOT_FILENAME for
980 symbol_file_add_from_bfd.
981 * jv-lang.c (get_dynamics_objfile): Use OBJF_NOT_FILENAME for
982 allocate_objfile.
983 * objfiles.c (allocate_objfile): Assert OBJF_NOT_FILENAME if NAME is
984 NULL.
985 * objfiles.h (OBJF_NOT_FILENAME): New.
986
987 2013-10-08 Tom Tromey <tromey@redhat.com>
988
989 * Makefile.in (SFILES): Add build-id.c.
990 (HFILES_NO_SRCDIR): Add build-id.h.
991 * build-id.c: New file, largely from elfread.c. Modified
992 most functions.
993 * build-id.h: New file.
994 * dwarf2read.c (dwarf2_get_dwz_file): Update for change to
995 bfd_get_alt_debug_link_info. Verify dwz file's build-id.
996 Search for dwz file using build-id.
997 * elfread.c (build_id_bfd_get, build_id_verify)
998 (build_id_to_debug_filename, find_separate_debug_file): Remove.
999
1000 2013-10-08 Joel Brobecker <brobecker@adacore.com>
1001
1002 * ada-lang.c (compare_names_with_case): Renamed from
1003 compare_names, adding a new parameter "casing" and its handling.
1004 New function documentation.
1005 (compare_names): New function, implemented using
1006 compare_names_with_case.
1007
1008 2013-10-08 Joel Brobecker <brobecker@adacore.com>
1009
1010 * ada-lang.c (ada_exception_sal): Remove advance declaration.
1011
1012 2013-10-07 Tom Tromey <tromey@redhat.com>
1013
1014 * objfiles.c (free_objfile_per_bfd_storage): Delete the
1015 demangled_names_hash.
1016 (free_objfile): Don't delete the demangled_names_hash.
1017 * objfiles.h (struct objfile_per_bfd_storage)
1018 <demangled_names_hash>: New field.
1019 (struct objfile) <demangled_names_hash>: Move to
1020 objfile_per_bfd_storage.
1021 * symfile.c (reread_symbols): Don't delete the
1022 demangled_names_hash.
1023 * symtab.c (create_demangled_names_hash): Update.
1024 (symbol_set_names): Update.
1025
1026 2013-10-07 Tom Tromey <tromey@redhat.com>
1027
1028 * gdb_bfd.c (struct gdb_bfd_data) <relocation_computed,
1029 needs_relocations>: New fields.
1030 (gdb_bfd_requires_relocations): New function.
1031 * gdb_bfd.h (gdb_bfd_requires_relocations): Declare.
1032 * objfiles.c (get_objfile_bfd_data): Disallow sharing if
1033 the BFD needs relocations applied.
1034
1035 2013-10-07 Pedro Alves <palves@redhat.com>
1036
1037 PR breakpoints/11568
1038 * breakpoint.c (remove_threaded_breakpoints): Say "no longer in
1039 the thread list" instead of "gone".
1040
1041 2013-10-06 Sergio Durigan Junior <sergiodj@redhat.com>
1042
1043 * NEWS: Mention new convenience variable $_exitsignal.
1044 * corelow.c (core_open): Reset exit convenience variables. Set
1045 $_exitsignal to the uncaught signal which generated the corefile.
1046 * infrun.c (handle_inferior_event): Reset exit convenience
1047 variables. Set $_exitsignal for TARGET_WAITKIND_SIGNALLED.
1048 (clear_exit_convenience_vars): New function.
1049 * inferior.h (clear_exit_convenience_vars): New prototype.
1050
1051 2013-10-06 Yao Qi <yao@codesourcery.com>
1052
1053 * varobj.h: Add comments to enum varobj_languages.
1054
1055 2013-10-04 Doug Evans <dje@google.com>
1056
1057 Add support for DWP file format version 2.
1058 * NEWS: Mention support for DWP file format version 2.
1059 * dwarf2read.c (dwarf2_section_info): Convert asection field to a
1060 union of asection, containing_section. New fields virtual_offset
1061 and is_virtual. Change type of readin filed from int to char.
1062 (dwo_sections, dwo_file): Tweak comments.
1063 (dwp_v2_section_ids): New enum.
1064 (dwp_sections): New fields abbrev, info, line, loc, macinfo, macro,
1065 str_offsets, types.
1066 (virtual_v1_dwo_sections): Renamed from virtual_dwo_sections.
1067 All uses updated.
1068 (virtual_v2_dwo_sections): New struct.
1069 (dwp_hash_table): New fields version, nr_columns. Change type of
1070 section_pool field to a union.
1071 (dwp_file): New field version.
1072 (dwarf2_has_info): Check for virtual sections.
1073 (get_containing_section): New function.
1074 (get_section_bfd_owner, get_section_bfd_section): Call it.
1075 (dwarf2_locate_sections): Update.
1076 (dwarf2_section_empty_p): Update.
1077 (dwarf2_read_section): Handle virtual sections.
1078 (locate_dwz_sections): Update.
1079 (create_dwp_hash_table): Document and handle V2 format.
1080 (locate_v1_virtual_dwo_sections): Renamed from
1081 locate_virtual_dwo_sections and update. All callers updated.
1082 (create_dwo_unit_in_dwp_v1): Renamed from create_dwo_in_dwp.
1083 Delete arg htab. Rename arg section_index to unit_index.
1084 All callers updated.
1085 (MAX_NR_V1_DWO_SECTIONS): Renamed from MAX_NR_DWO_SECTIONS.
1086 All uses updated.
1087 (create_dwp_v2_section, create_dwo_unit_in_dwp_v2): New functions.
1088 (lookup_dwo_unit_in_dwp): Add V2 support.
1089 (dwarf2_locate_dwo_sections): Update.
1090 (dwarf2_locate_common_dwp_sections): Renamed from
1091 dwarf2_locate_dwp_sections and update. All callers updated.
1092 (dwarf2_locate_v2_dwp_sections): New function.
1093 (open_and_init_dwp_file): Add V2 support.
1094 (read_str_index): New locals str_section, str_offsets_section.
1095
1096 2013-10-04 Pedro Alves <palves@redhat.com>
1097
1098 * common/ptid.c (null_ptid, minus_one_ptid, ptid_build)
1099 (pid_to_ptid, ptid_get_pid, ptid_get_lwp, ptid_get_tid)
1100 (ptid_equal, ptid_is_pid, ptid_lwp_p, ptid_tid_p): Replace
1101 describing comments with references to ptid.h.
1102 * common/ptid.h: Remove intro description of constructors,
1103 accessors and predicates.
1104 (struct ptid): Reformat.
1105 (minus_one_ptid, ptid_build, pid_to_ptid, ptid_get_pid)
1106 (ptid_get_lwp, ptid_get_tid, ptid_equal, ptid_is_pid): Change
1107 describing comments.
1108
1109 2013-10-04 Joel Brobecker <brobecker@adacore.com>
1110
1111 * aix-thread.c (sync_threadlists): Add missing ')' in call
1112 to ptid_build.
1113
1114 2013-10-04 Joel Brobecker <brobecker@adacore.com>
1115
1116 * procfs.c (procfs_init_inferior): Fix typo causing the build
1117 to fail.
1118
1119 2013-10-04 Joel Brobecker <brobecker@adacore.com>
1120
1121 * aix-thread.c (ptrace32): Remove cast to addr_ptr.
1122
1123 2013-10-04 Joel Brobecker <brobecker@adacore.com>
1124
1125 * mi/mi-main.c (run_one_inferior): Add function description.
1126 Make ARG a pointer to an integer whose value determines whether
1127 we should "run" or "start" the program.
1128 (mi_cmd_exec_run): Add handling of the "--start" option.
1129 Reject all other command-line options.
1130 * NEWS: Add entry for "-exec-run"'s new "--start" option.
1131
1132 2013-10-04 Yao Qi <yao@codesourcery.com>
1133
1134 * remote-notif.h (REMOTE_NOTIF_ID): New enum.
1135 (struct notif_client) <pending_event>: Moved
1136 to struct remote_notif_state.
1137 <id>: New field.
1138 (struct remote_notif_state) <pending_event>: New field.
1139 (notif_event_xfree): Declare.
1140 * remote-notif.c (handle_notification): Adjust.
1141 (notif_event_xfree): New function.
1142 (do_notif_event_xfree): Call notif_event_xfree.
1143 (remote_notif_state_xfree): Call notif_event_xfree to free
1144 each element in field pending_event.
1145 * remote.c (discard_pending_stop_replies): Remove declaration.
1146 (discard_pending_stop_replies_in_queue): Declare.
1147 (remote_close): Call discard_pending_stop_replies_in_queue
1148 instead of discard_pending_stop_replies.
1149 (remote_start_remote): Adjust.
1150 (stop_reply_xfree): Call notif_event_xfree.
1151 (notif_client_stop): Adjust initialization.
1152 (remote_notif_remove_all): Rename it to ...
1153 (remove_stop_reply_for_inferior): ... this. Update comments.
1154 Don't check INF is NULL.
1155 (discard_pending_stop_replies): Return early if notif_state is
1156 NULL. Adjust. Don't check INF is NULL.
1157 (remote_notif_get_pending_events): Adjust.
1158 (discard_pending_stop_replies_in_queue): New function.
1159 (remote_wait_ns): Likewise.
1160
1161 2013-10-04 Yao Qi <yao@codesourcery.com>
1162
1163 * remote-notif.c (DECLARE_QUEUE_P): Remove.
1164 (notif_queue): Remove.
1165 (remote_notif_process): Add one parameter 'notif_queue'.
1166 Update comments. Callers update.
1167 (remote_async_get_pending_events_token): Remove.
1168 (remote_notif_register_async_event_handler): Remove.
1169 (remote_notif_unregister_async_event_handler): Remove.
1170 (handle_notification): Add parameter 'notif_queue'. Update
1171 comments. Callers update.
1172 (notif_xfree): Remove.
1173 (remote_notif_state_allocate): New function.
1174 (remote_notif_state_xfree): New function.
1175 (_initialize_notif): Remove code to allocate queue.
1176 * remote-notif.h (DECLARE_QUEUE_P): Moved from remote-notif.c.
1177 (struct remote_notif_state): New.
1178 (handle_notification): Update declaration.
1179 (remote_notif_process): Likewise.
1180 (remote_notif_register_async_event_handler): Remove.
1181 (remote_notif_unregister_async_event_handler): Remove.
1182 (remote_notif_state_allocate): Declare.
1183 (remote_notif_state_xfree): Declare.
1184 * remote.c (struct remote_state) <notif_state>: New field.
1185 (remote_close): Don't call
1186 remote_notif_unregister_async_event_handler. Call
1187 remote_notif_state_xfree.
1188 (remote_open_1): Don't call
1189 remote_notif_register_async_event_handler. Call
1190 remote_notif_state_allocate.
1191
1192 2013-10-04 Yao Qi <yao@codesourcery.com>
1193
1194 * varobj.c (create_child_with_value): Remove 'const' from the
1195 type of parameter 'name'.
1196 (varobj_add_child): Likewise.
1197 (install_dynamic_child): Remove 'const' from the type of
1198 parameter 'name'.
1199 (varobj_add_child): Likewise.
1200 (create_child_with_value): Likewise. Update comments. Don't
1201 duplicate 'name'.
1202 (update_dynamic_varobj_children): Duplicate 'name'
1203 and pass it to install_dynamic_child.
1204
1205 2013-10-03 Phil Muldoon <pmuldoon@redhat.com>
1206
1207 * python/py-value.c (convert_value_from_python): Move PyInt_Check
1208 conversion logic to occur after PyLong_Check. Comment on order
1209 change significance.
1210 * python/py-arch.c (archpy_disassemble): Comment on order of
1211 conversion for integers and longs.
1212
1213 2013-10-03 Pedro Alves <palves@redhat.com>
1214
1215 * common/linux-ptrace.c (linux_check_ptrace_features): Factor out
1216 the PTRACE_O_TRACESYSGOOD and PTRACE_O_TRACEFORK to separate
1217 functions. Always test for PTRACE_O_TRACESYSGOOD even if
1218 PTRACE_O_TRACEFORK is not supported.
1219 (linux_test_for_tracesysgood): New function.
1220 (linux_test_for_tracefork): New function, factored out from
1221 linux_check_ptrace_features, and also don't kill child_pid here.
1222
1223 2013-10-03 Tristan Gingold <gingold@adacore.com>
1224
1225 * i386-darwin-nat.c (i386_darwin_dr_set): Fix argument type.
1226 Remove verbose error reporting. Use detected state to
1227 thread_set_state call.
1228 (i386_darwin_dr_get): Fix return type. Remove verbose error
1229 report.
1230 Remove trailing spaces.
1231
1232 2013-10-02 Pedro Alves <palves@redhat.com>
1233
1234 * cp-valprint.c (cp_print_value_fields): Adjust calls to
1235 val_print_optimized_out.
1236 * jv-valprint.c (java_print_value_fields): Likewise.
1237 * p-valprint.c (pascal_object_print_value_fields): Likewise.
1238 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full)
1239 <DWARF_VALUE_REGISTER>: If the register was not saved, return a
1240 new optimized out value.
1241 * findvar.c (address_from_register): Likewise.
1242 * frame.c (put_frame_register): Tweak error string to say the
1243 register was not saved, rather than optimized out.
1244 * infcmd.c (default_print_one_register_info): Adjust call to
1245 val_print_optimized_out. Use value_of_register instead of
1246 get_frame_register_value.
1247 * mi/mi-main.c (output_register): Use value_of_register instead of
1248 get_frame_register_value.
1249 * valprint.c (valprint_check_validity): Likewise.
1250 (val_print_optimized_out): New value parameter. If the value is
1251 lval_register, print <not saved> instead.
1252 (value_check_printable, val_print_scalar_formatted): Adjust calls
1253 to val_print_optimized_out.
1254 * valprint.h (val_print_optimized_out): New value parameter.
1255 * value.c (struct value) <optimized_out>: Extend comment.
1256 (error_value_optimized_out): New function.
1257 (require_not_optimized_out): Use it. Use a different string for
1258 lval_register values.
1259 * value.h (error_value_optimized_out): New declaration.
1260 * NEWS: Mention <not saved>.
1261
1262 2013-10-02 Joel Brobecker <brobecker@adacore.com>
1263
1264 * symtab.c (compare_search_syms): Use FILENAME_CMP instead of
1265 strcmp to compare two symtab filenames.
1266
1267 2013-10-02 Joel Brobecker <brobecker@adacore.com>
1268
1269 * symtab.c (search_symbols_equal): Delete.
1270 (sort_search_symbols_remove_dups): Replace call to
1271 search_symbols_equal by call to compare_search_syms,
1272 adjusting as necessary.
1273
1274 2013-10-02 Phil Muldoon <pmuldoon@redhat.com>
1275
1276 PR python/15579
1277 * python/python.c: Document gdb.execute command in Python help.
1278
1279 2013-10-02 Phil Muldoon <pmuldoon@redhat.com>
1280
1281 * python/py-frame.c (frame_info_to_frame_object): Use
1282 gdbpy_convert_exception. Clean up Python object on failure.
1283
1284 2013-10-02 Phil Muldoon <pmuldoon@redhat.com>
1285
1286 * python/lib/gdb/command/frame_filters.py
1287 (InfoFrameFilter.list_frame_filters): Retrieve exception manually.
1288 (ShowFrameFilterPriority.invoke): Ditto.
1289
1290 2013-10-01 Keith Seitz <keiths@redhat.com>
1291
1292 * linespec.c (struct ls_parser): Make 'saved_arg' const.
1293 (parse_linespec): Make 'argptr' const.
1294 Remove temporary cast of 'argptr' to const char **.
1295 (decode_line_full): Pass const pointer to parse_linespec.
1296 (decode_line_1): Likewise.
1297 (decode_objc): Make local variable 'new_argptr' const.
1298 (find_function_symbols): Remove temporary cast to char *
1299 to find_imps.
1300 * objc-lang.c (find_imps): Make argument 'method' const.
1301 Return const.
1302 * objc-lang.h (find_imps): Likewise.
1303
1304 2013-10-01 Keith Seitz <keiths@redhat.com>
1305
1306 * completer.c (skip_quoted_chars): Make all arguments const.
1307 Return const.
1308 (skip_quoted): Likewise.
1309 * completer.h (skip_quoted_chars): Likewise.
1310 (skip_quoted): Likewise.
1311 * defs.h (skip_quoted): Remove duplicate declaration.
1312 * jv-exp.y: Include completer.h.
1313 (yylex): Remove unneccessary cast to char * fro skip_quoted.
1314 * p-exp.y: Include completer.h.
1315
1316 2013-10-01 Keith Seitz <keiths@redhat.com>
1317
1318 * c-exp.y (parse_number): Make first argument const.
1319 Make a copy of the input to manipulate.
1320 (c_parse_escape): Make first argument const.
1321 Make local variable 'tokptr' const.
1322 (parse_string_or_char): Make first two arguments const.
1323 (macro_original_text): Make const.
1324 (lex_one_token): Make local variable 'tokstart' const.
1325 Likewise for local variables named 'p'.
1326 Cast away const for struct stoken (temporary).
1327 * c-lang.h (c_parse_escpae): Make first argument const.
1328 * cli/cli-cmds.c (echo_command): Make local variable 'p'
1329 const.
1330 * cli/cli-setshow.c (do_set_command): Likewise for 'p' in
1331 var_string case.
1332 * f-exp.y (parse_number): Make first argument const.
1333 (match_string_literal): Make local variable 'tokstart'
1334 const.
1335 (yylex): Make local variable 'p' const.
1336 Cast away const for struct stoken (temporary).
1337 * go-exp.y (parse_number): Make first argument const.
1338 (parse_string_or_char): Likewise.
1339 Make local variable 'tokstart' const.
1340 (lex_one_token): Likewise for numerous locals called 'p'.
1341 Cast away const for struct stoken (temporary).
1342 * jv-exp.y (parse_number): Make first argument const.
1343 Make local variables 'tokstart' and 'tokptr' const.
1344 Cast away const for call to skip_quoted (temporary).
1345 (yylex): Make local variable 'p' const.
1346 Cast away const for struct stoken (temporary).
1347 * m2-exp.y (parse_number): Make local variable 'p' const.
1348 (yylex): Likewise for 'tokstart'.
1349 Cast away const for struct stoken (temporary).
1350 Make local variable 'p' const.
1351 * macroexp.c (get_character_constant): Pass a const string
1352 to c_parse_escape.
1353 (get_string_literal): Likewise.
1354 (macro_expand_next): Make first argument const.
1355 Cast away const for init_shared_buffer.
1356 * macroexp.h (macro_expand_next): Make first argument const.
1357 * p-exp.y (yylex): Make a local copy of 'lexptr'.
1358 Pass a const string to c_parse_escape.
1359 Make local variables 'p' and 'namestart' const.
1360 * parse.c (lexptr): Make const.
1361 (prev_lexptr): Likewise.
1362 (find_template_name_end): Return const.
1363 Make argument const, too.
1364 (parse_exp_in_context): Make first argument const.
1365 Remove the entire const_hack.
1366 (parse_exp_in_context_1): Make first argument const.
1367 * parser-defs.h (find_template_name_end): Return const.
1368 Make argument const, too.
1369 (lexptr): Make const.
1370 (prev_lexptr): Likewise.
1371 * utils.c (parse_escape): Make second argument const.
1372 * utils.h (parse_escape): Likewise.
1373
1374 2013-10-01 Keith Seitz <keiths@redhat.com>
1375
1376 * ada-exp.y (write_object_renaming): Update: struct stoken.ptr
1377 is now const.
1378 (block_lookup): Make 'raw_name' and 'name' const.
1379 * ada-lex.l (processString): Update for struct stoken.ptr.
1380 * c-exp.y (qualified_name : TYPENAME COLONCOLON '~' name): Likewise.
1381 (operator_stoken): Likewise.
1382 (lex_one_token): Remove temporary cast to char * for
1383 'yylval.sval.ptr'.
1384 * f-exp.y (yylex): Likewise.
1385 * gdb-types.c (lookup_struct_elt_type): Make argument 'name' const.
1386 * gdbtypes.h (lookup_struct_elt_type): Likewisee.
1387 * go-exp.y (lex_one_token): Remove temporary cast to char * for
1388 'yylval.sval.ptr'.
1389 * jv-exp.y (QualifiedName): Update for struct stoken.ptr.
1390 (yylex): Remove temporary cast to char * for 'yylval.sval.ptr'.
1391 * linespec.c (struct ls_parser): Make 'stream' const.
1392 (find_parameter_list_end): Make argument 'input' and local
1393 variable 'p' const.
1394 (linespec_lexer_lex_string): Make local variables 'start' and
1395 'p' const.
1396 Use skip_spaces_const instead of skip_spaces.
1397 (linespec_lexer_peek_token): Make local variable 'saved_stream'
1398 const.
1399 (parse_linespec): Temporarily cast 'argptr' to const for
1400 'parser->lexer.stream'.
1401 * m2-exp.y (yylex): Remove temporary cast to char * for
1402 'yylval.sval.ptr'.
1403 * objc-lang.c (add_msglist): Make local variable 'p' const.
1404 * p-exp.y (exp : exp '['): Update for struct stoken.ptr.
1405 (exp : STRING): Make 'sp' const.
1406 (parse_number): Make argument 'p' const.
1407 * parser-defs.h (struct stoken): Make 'ptr' const.
1408
1409 2013-10-01 Doug Evans <dje@google.com>
1410
1411 * cli/cli-decode.c: Remove unnecessary inclusion of tui/tui.h.
1412
1413 2013-10-01 Yao Qi <yao@codesourcery.com>
1414
1415 * varobj.c (c_value_of_root): Remove declaration.
1416 (cplus_value_of_root, java_value_of_root): Likewise.
1417 (ada_value_of_root): Likewise.
1418 (struct language_specific) <value_of_root>: Remove.
1419 (languages): Update initialization.
1420 (check_scope): Move earlier.
1421 (c_value_of_root): Move earlier and rename to ...
1422 (value_of_root_1): ... this.
1423 (value_of_root): Caller update.
1424 (cplus_value_of_root, java_value_of_root): Remove.
1425 (ada_value_of_root): Remove.
1426
1427 2013-10-01 Yao Qi <yao@codesourcery.com>
1428
1429 * varobj.c (varobj_format_string): Remove "unknown".
1430 (languages): Remove the first element.
1431 * varobj.h (enum varobj_languages): Remove vlang_c.
1432
1433 2013-10-01 Yao Qi <yao@codesourcery.com>
1434
1435 * varobj.c (struct language_specific) <language>: Remove.
1436 (languages): Update the initialization.
1437
1438 2013-10-01 Yao Qi <yao@codesourcery.com>
1439
1440 * arm-wince-tdep.c: Remove inclusion of "solib.h" and
1441 "solib-target.h". Include "windows-tdep.h".
1442 (arm_wince_init_abi): Call windows_init_abi. Remove call to
1443 set_solib_ops and set_gdbarch_has_dos_based_file_system.
1444 * configure.tgt (arm*-wince-pe | arm*-*-mingw32ce*): Append
1445 windows-tdep.o to gdb_target_obs.
1446
1447 2013-10-01 Yao Qi <yao@codesourcery.com>
1448
1449 * amd64-windows-tdep.c: Remove inclusion of "solib.h" and
1450 "solib-target.h".
1451 (amd64_windows_init_abi): Don't call set_solib_ops and
1452 set_gdbarch_iterate_over_objfiles_in_search_order. Call
1453 windows_init_abi instead.
1454 * i386-cygwin-tdep.c: Remove inclusion of "solib.h" and
1455 "solib-target.h".
1456 (i386_cygwin_init_abi): Don't call set_solib_ops,
1457 set_gdbarch_has_dos_based_file_system and
1458 set_gdbarch_iterate_over_objfiles_in_search_order. Call
1459 windows_init_abi instead.
1460 * windows-tdep.c: Include "solib.h" and "solib-target.h".
1461 (windows_init_abi): New function.
1462 (windows_iterate_over_objfiles_in_search_order): Make it
1463 static.
1464 * windows-tdep.h (windows_init_abi): Declare.
1465 (windows_iterate_over_objfiles_in_search_order): Remove
1466 declaration.
1467
1468 2013-10-01 Jerome Guitton <guitton@adacore.com>
1469
1470 Checked in by Joel Brobecker <brobecker@adacore.com>
1471 * system-gdbinit/elinos.py (get_elinos_environment): Return an
1472 incomplete dictionnary instead of None in case of missing
1473 environment variables.
1474 (elinos_init): in case of an incomplete environment, best
1475 effort to load system libraries instead of abort.
1476
1477 2013-10-01 Joel Brobecker <brobecker@adacore.com>
1478
1479 * ada-lang.c (ada_has_this_exception_support): Ignore
1480 mst_solib_trampoline minimal symbols.
1481
1482 2013-09-30 Tristan Gingold <gingold@adacore.com>
1483
1484 * i386-darwin-nat.c (darwin_complete_target): Install methods for
1485 hardware watchpoint.
1486 (i386_darwin_dr_set): Support 32 and 64 bit states.
1487 (i386_darwin_dr_get): Likewise.
1488 (i386_darwin_dr_set_control): Make static.
1489 (i386_darwin_dr_set_addr, i386_darwin_dr_get_addr)
1490 (i386_darwin_dr_get_status, i386_darwin_dr_get_control): Likewise.
1491
1492 2013-09-30 Luis Machado <lgustavo@codesourcery.com>
1493
1494 * aarch64-linux-nat.c: Replace PIDGET with ptid_get_pid.
1495 Replace TIDGET with ptid_get_lwp.
1496 Replace GET_LWP with ptid_get_lwp.
1497 * aix-thread.c (BUILD_THREAD, BUILD_LWP): Remove.
1498 Replace BUILD_THREAD with ptid_build.
1499 Replace BUILD_LWP with ptid_build.
1500 Replace PIDGET with ptid_get_pid.
1501 Replace TIDGET with ptid_get_lwp.
1502 * alphabsd-nat.c: Replace PIDGET with ptid_get_pid.
1503 * amd64-linux-nat.c: Replace PIDGET with ptid_get_pid.
1504 Replace TIDGET with ptid_get_lwp.
1505 * amd64bsd-nat.c: Replace PIDGET with ptid_get_pid.
1506 * arm-linux-nat.c: Replace PIDGET with ptid_get_pid.
1507 Replace TIDGET with ptid_get_lwp.
1508 Replace GET_LWP with ptid_get_lwp.
1509 * armnbsd-nat.c: Replace PIDGET with ptid_get_pid.
1510 * auxv.c: Likewise.
1511 * breakpoint.c: Likewise.
1512 * common/ptid.c (ptid_is_pid): Condense check for
1513 null_ptid and minus_one_ptid.
1514 (ptid_lwp_p): New function.
1515 (ptid_tid_p): New function.
1516 * common/ptid.h: Update comments for accessors.
1517 (ptid_lwp_p): New prototype.
1518 (ptid_tid_p): New prototype.
1519 * defs.h (PIDGET, TIDGET, MERGEPID): Do not define.
1520 * gcore.c: Replace PIDGET with ptid_get_pid.
1521 * gdbthread.h: Likewise.
1522 * gnu-nat.c: Likewise.
1523 * hppa-linux-nat.c: Replace PIDGET with ptid_get_pid.
1524 Replace TIDGET with ptid_get_lwp.
1525 * hppabsd-nat.c: Replace PIDGET with ptid_get_pid.
1526 * hppanbsd-nat.c: Likewise.
1527 * i386-linux-nat.c: Replace PIDGET with ptid_get_pid.
1528 Replace TIDGET with ptid_get_lwp.
1529 * i386bsd-nat.c: Replace PIDGET with ptid_get_pid.
1530 * ia64-linux-nat.c: Replace PIDGET with ptid_get_pid.
1531 * infcmd.c: Likewise.
1532 * inferior.h: Likewise.
1533 * inflow.c: Likewise.
1534 * infrun.c: Likewise.
1535 * linux-fork.c: Likewise.
1536 * linux-nat.c: Replace PIDGET with ptid_get_pid.
1537 Replace GET_PID with ptid_get_pid.
1538 Replace is_lwp with ptid_lwp_p.
1539 Replace GET_LWP with ptid_get_lwp.
1540 Replace BUILD_LWP with ptid_build.
1541
1542 2013-09-28 Mike Frysinger <vapier@gentoo.org>
1543
1544 * common/linux-btrace.c: Move sys/syscall.h out of the
1545 HAVE_LINUX_PERF_EVENT_H check and wrap it in HAVE_SYS_SYSCALL_H.
1546 Also check for SYS_perf_event_open before attempting to buid.
1547
1548 2013-09-27 Doug Evans <dje@google.com>
1549
1550 * dwarf2read.c (dwarf2_section_info): Add comment.
1551 (dwp_file): Split loaded_cutus into loaded_cus, loaded_tus.
1552 All uses updated.
1553 (dwarf2_section_empty_p): Rename arg from "info" to "section".
1554 (dwarf2_read_section): Delete unused local "header". Add section
1555 name to error message.
1556 (create_dwo_in_dwp): Tweak comment.
1557 (MAX_NR_DWO_SECTIONS): Combine count of .debug_macro + .debug_macinfo.
1558
1559 * dwarf2read.c (die_reader_specs): Tweak comment.
1560 (get_section_bfd_owner, get_section_bfd_section): New functions.
1561 (get_section_name, get_section_file_name): New functions.
1562 (get_section_id, get_section_flags): New functions.
1563 (*): Use new functions to access section fields.
1564
1565 * dwarf2read.c (struct dwo_file): Add/tweak comments.
1566 (lookup_dwo_unit_in_dwp): Renamed from lookup_dwo_in_dwp. Remove
1567 arg "htab". All callers updated.
1568 (create_debug_types_hash_table): Remove redundant copy of
1569 abbrev_section.
1570 (create_dwo_in_dwp): Tweak comments.
1571 (read_str_index): Tweak comment. Record dwarf form name in static
1572 local.
1573
1574 2013-09-27 Pedro Alves <palves@redhat.com>
1575
1576 * remote.h (REMOTE_SYSROOT_PREFIX): New define.
1577 (remote_filename_p): Add comment.
1578 * remote.c (remote_filename_p): Adjust to use
1579 REMOTE_SYSROOT_PREFIX.
1580 * solib.c (solib_find): When deciding whether we need to add a
1581 directory separator, check whether the sysroot is "remote:"
1582 instead of checking whether the patch has a drive spec. Add
1583 comments.
1584
1585 2013-09-27 Pedro Alves <palves@redhat.com>
1586
1587 * remote.c (struct stop_reply) <solibs_changed, replay_event>:
1588 Delete fields.
1589 (remote_parse_stop_reply): Adjust, setting event->ws.kind
1590 directly.
1591
1592 2013-09-26 Jan Kratochvil <jan.kratochvil@redhat.com>
1593
1594 Fix set debug frame output.
1595 * frame.c (fprint_frame_type): Add TAILCALL_FRAME entry. Move
1596 SENTINEL_FRAME entry lower to match enum frame_type order.
1597
1598 2013-09-26 Pierre Muller <muller@sourceware.org>
1599
1600 Replace constant values 8 to 15 by AMD64_R8_REGNUM to
1601 AMD64_R15_REGNUM when a register index is expected.
1602 * amd64-windows-tdep.c (amd64_windows_dummy_call_integer_regs):
1603 Substitute in array.
1604 * amd64-tdep.c (amd64_dwarf_regmap): Ditto.
1605 (amd64_push_arguments): Substitute in integer_regnum array.
1606
1607 2013-09-25 Doug Evans <dje@google.com>
1608
1609 * objfiles.c (allocate_objfile): Move comment to better place.
1610
1611 New option "set debug symfile on".
1612 * NEWS: Mention "set debug symfile".
1613 * Makefile.in (SFILES): Add symfile-debug.c.
1614 (COMMON_OBS): Add symfile-debug.o.
1615 * elfread.c (elf_symfile_read): Use objfile_set_sym_fns to set the
1616 objfile's symbol functions.
1617 * objfiles.h (objfile_set_sym_fns): Declare.
1618 * symfile-debug.c: New file.
1619 * symfile.c (syms_from_objfile_1): Use objfile_set_sym_fns to set the
1620 objfile's symbol functions.
1621 (reread_symbols): Ditto.
1622
1623 * symfile.h (struct sym_fns): Delete member "sym_flavour".
1624 All uses updated.
1625 (add_symtab_fns): Update prototype.
1626 * symfile.c (sym_fns_ptr): Delete. Replace with ...
1627 (registered_sym_fns): ... this.
1628 (symtab_fns): Update.
1629 (add_symtab_fns): New arg "flavour". All callers updated.
1630 (find_sym_fns): Rewrite to use new sym_fns registry.
1631
1632 * symfile.h (struct sym_fns): Add "objfile" argument to
1633 sym_read_linetable. All uses updated.
1634
1635 * symtab.c (domain_name, search_domain_name): New functions.
1636 * symtab.h (domain_name, search_domain_name): Declare.
1637
1638 * symfile.h (struct quick_symbol_functions): Reorg arg list of
1639 map_matching_symbols so objfile is first. All uses updated.
1640 * dwarf2read.c (dw2_map_matching_symbols): Update signature.
1641 * psymtab.c (map_matching_symbols_psymtab): Update signature.
1642
1643 2013-09-25 Andreas Arnez <arnez@linux.vnet.ibm.com>
1644
1645 PR shlibs/8882
1646 * solib-svr4.c (svr4_read_so_list): Skip the vDSO when reading
1647 link map entries.
1648
1649 2013-09-24 Doug Evans <dje@google.com>
1650
1651 * objfiles.c (free_objfile): Move comment.
1652
1653 2013-09-24 Joel Brobecker <brobecker@adacore.com>
1654
1655 * ada-exp.y (string_to_operator): Delete.
1656 (dummy_string_to_ada_operator): Delete.
1657
1658 2013-09-24 Joel Brobecker <brobecker@adacore.com>
1659
1660 Revert:
1661 * i386-tdep.h (enum amd64_reg_class): New, moved here from
1662 amd64-tdep.c.
1663 (struct gdbarch_tdep): Add fields call_dummy_num_integer_regs,
1664 call_dummy_integer_regs, and classify.
1665 * amd64-tdep.h (amd64_classify): Add declaration.
1666 * amd64-tdep.c (amd64_dummy_call_integer_regs): New static constant.
1667 (amd64_reg_class): Delete, moved to i386-tdep.h.
1668 (amd64_classify): Make non-static. Move declaration to amd64-tdep.h.
1669 Replace call to amd64_classify by call to tdep->classify.
1670 (amd64_push_arguments): Get the list of registers to use for
1671 passing integer parameters from the gdbarch tdep structure,
1672 rather than using a hardcoded one. Replace calls to amd64_classify
1673 by calls to tdep->classify.
1674 (amd64_push_dummy_call): Get the register number used for
1675 the "hidden" argument from tdep->call_dummy_integer_regs.
1676 (amd64_init_abi): Initialize tdep->call_dummy_num_integer_regs
1677 and tdep->call_dummy_integer_regs. Set tdep->classify.
1678
1679 2013-09-24 Joel Brobecker <brobecker@adacore.com>
1680
1681 Revert:
1682 * i386-tdep.h (gdbarch_tdep): Add field memory_args_by_pointer.
1683 * amd64-tdep.c (amd64_push_arguments): Add handling of architectures
1684 where tdep->memory_args_by_pointer is non-zero.
1685
1686 2013-09-24 Joel Brobecker <brobecker@adacore.com>
1687
1688 Revert:
1689 * i386-tdep.h (struct gdbarch_tdep): Add new field
1690 integer_param_regs_saved_in_caller_frame.
1691 * amd64-tdep.c (amd64_push_dummy_call): Allocate some memory on
1692 stack if tdep->integer_param_regs_saved_in_caller_frame is set.
1693
1694 2013-09-24 Joel Brobecker <brobecker@adacore.com>
1695
1696 * amd64-windows-tdep.c: #include "value.h"
1697 (amd64_windows_classify): Delete.
1698 (amd64_windows_passed_by_integer_register)
1699 (amd64_windows_passed_by_xmm_register)
1700 (amd64_windows_passed_by_pointer)
1701 (amd64_windows_adjust_args_passed_by_pointer)
1702 (amd64_windows_store_arg_in_reg, amd64_windows_push_arguments)
1703 (amd64_windows_push_dummy_call): New functions.
1704 (amd64_windows_init_abi): Remove setting of
1705 tdep->call_dummy_num_integer_regs, tdep->call_dummy_integer_regs,
1706 tdep->classify, tdep->memory_args_by_pointer and
1707 tdep->integer_param_regs_saved_in_caller_frame.
1708 Add call to set_gdbarch_push_dummy_call.
1709
1710 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1711
1712 * dwarf2read.c (open_and_init_dwp_file): Try open_dwp_file also with
1713 objfile->original_name.
1714
1715 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1716
1717 Pass down original filename for objfile.
1718 * coffread.c (coff_symfile_read): Update symbol_file_add_separate call.
1719 * elfread.c (elf_symfile_read): Likewise.
1720 * jit.c (jit_object_close_impl): Update allocate_objfile call, no
1721 longer set ORIGINAL_NAME.
1722 (jit_bfd_try_read_symtab): Update symbol_file_add_from_bfd call.
1723 * jv-lang.c (get_dynamics_objfile): Update allocate_objfile call.
1724 * machoread.c (macho_add_oso_symfile): Add parameter name. Update
1725 symbol_file_add_from_bfd call.
1726 (macho_symfile_read_all_oso): Update two macho_add_oso_symfile calls.
1727 (macho_check_dsym): Add parameter filenamep. Change function comment.
1728 Set *filenamep.
1729 (macho_symfile_read): New variable dsym_filename. Update
1730 macho_check_dsym call. Use it for symbol_file_add_separate.
1731 * objfiles.c (allocate_objfile): Add parameter name. New comment for
1732 it. Use it for objfile->original_name.
1733 (objfile_name): Return OBFD's filename, if available.
1734 * objfiles.h (allocate_objfile): Add new parameter name.
1735 * solib.c (solib_read_symbols): Update symbol_file_add_from_bfd call.
1736 * symfile-mem.c (symbol_file_add_from_memory): Update
1737 symbol_file_add_from_bfd call.
1738 * symfile.c (read_symbols): Update symbol_file_add_separate call, new
1739 comment for it.
1740 (symbol_file_add_with_addrs): New parameter name, add function comment
1741 for it. Remove variable name. Update allocate_objfile call.
1742 (symbol_file_add_separate): New parameter name, add function comment
1743 for it. Update symbol_file_add_with_addrs call.
1744 (symbol_file_add_from_bfd): New parameter name. Update
1745 symbol_file_add_with_addrs call.
1746 (symbol_file_add): Update symbol_file_add_from_bfd call.
1747 (reread_symbols): New variable original_name. Save
1748 objfile->original_name by it.
1749 * symfile.h (symbol_file_add_from_bfd, symbol_file_add_separate): Add
1750 second parameter.
1751
1752 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1753
1754 Code cleanup: Add objfile_name accessor function.
1755 * ada-lang.c (is_known_support_routine): Use objfile_name.
1756 * auto-load.c (source_gdb_script_for_objfile)
1757 (auto_load_objfile_script): Likewise.
1758 * coffread.c (coff_symtab_read, read_one_sym): Likewise.
1759 * dbxread.c (dbx_symfile_read): Likewise.
1760 * dwarf2-frame.c (dwarf2_build_frame_info): Likewise.
1761 * dwarf2loc.c (locexpr_describe_location_piece): Likewise.
1762 * dwarf2read.c (dwarf2_get_dwz_file, dwarf2_read_index)
1763 (dw2_symtab_iter_next, dw2_expand_symtabs_matching)
1764 (lookup_dwp_signatured_type, lookup_dwo_unit)
1765 (dwarf2_build_psymtabs_hard, scan_partial_symbols, process_queue)
1766 (fixup_go_packaging, process_imported_unit_die, dwarf2_physname)
1767 (read_import_statement, create_dwo_cu, open_and_init_dwp_file)
1768 (lookup_dwo_cutu, read_call_site_scope, dwarf2_ranges_read)
1769 (dwarf2_record_block_ranges, read_common_block, read_typedef)
1770 (read_subrange_type, load_partial_dies, read_partial_die)
1771 (read_addr_index_1, read_str_index, dwarf_decode_lines_1)
1772 (die_containing_type, build_error_marker_type, lookup_die_type)
1773 (follow_die_ref_or_sig, follow_die_ref, dwarf2_fetch_die_loc_sect_off)
1774 (dwarf2_fetch_constant_bytes, follow_die_sig, get_signatured_type)
1775 (get_DW_AT_signature_type, write_psymtabs_to_index)
1776 (save_gdb_index_command): Likewise.
1777 * elfread.c (find_separate_debug_file_by_buildid, elf_symfile_read):
1778 Likewise.
1779 * expprint.c (dump_subexp_body_standard): Likewise.
1780 * gdbtypes.c (type_name_no_tag_or_error): Likewise.
1781 * jit.c (jit_object_close_impl): Use the objfile field name renamed to
1782 original_name.
1783 * linux-thread-db.c (try_thread_db_load_from_pdir_1): New variable
1784 obj_name, use objfile_name for it, use the variable.
1785 (try_thread_db_load_from_pdir, has_libpthread, thread_db_new_objfile):
1786 Use objfile_name.
1787 * machoread.c (macho_symtab_read, macho_check_dsym)
1788 (macho_symfile_relocate): Likewise.
1789 * maint.c (maintenance_translate_address): Likewise.
1790 * minidebug.c (find_separate_debug_file_in_section): Likewise.
1791 * minsyms.c (install_minimal_symbols): Likewise.
1792 * objfiles.c (allocate_objfile): Use the objfile field name renamed to
1793 original_name.
1794 (filter_overlapping_sections): Use objfile_name.
1795 (objfile_name): New function.
1796 * objfiles.h (struct objfile): Rename field name to original_name.
1797 (objfile_name): New prototype.
1798 * printcmd.c (sym_info, address_info): Use objfile_name.
1799 * probe.c (parse_probes, collect_probes, compare_probes)
1800 (info_probes_for_ops): Likewise.
1801 * progspace.c (clone_program_space): Likewise.
1802 * psymtab.c (require_partial_symbols, dump_psymtab, allocate_psymtab)
1803 (maintenance_info_psymtabs): Likewise.
1804 * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile)
1805 (source_section_scripts): Likewise.
1806 * python/py-objfile.c (objfpy_get_filename): Likewise.
1807 * python/py-progspace.c (pspy_get_filename): Likewise.
1808 * solib-aix.c (solib_aix_get_toc_value): Likewise.
1809 * solib-som.c (match_main, som_solib_section_offsets): Likewise.
1810 * solib.c (solib_read_symbols): Likewise.
1811 * stabsread.c (scan_file_globals): Likewise.
1812 * stap-probe.c (handle_stap_probe): Likewise.
1813 * symfile.c (symbol_file_clear, separate_debug_file_exists)
1814 (find_separate_debug_file_by_debuglink): Likewise.
1815 (reread_symbols): Likewise. Use the objfile field name renamed to
1816 original_name.
1817 (allocate_symtab): Use objfile_name.
1818 * symmisc.c (print_symbol_bcache_statistics, print_objfile_statistics)
1819 (dump_objfile, dump_msymbols, dump_symtab_1)
1820 (maintenance_print_msymbols, maintenance_print_objfiles)
1821 (maintenance_info_symtabs, maintenance_check_symtabs): Likewise.
1822 * target.c (target_translate_tls_address, target_info): Likewise.
1823 * xcoffread.c (xcoff_initial_scan): Make variable name const. Use
1824 objfile_name.
1825
1826 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1827
1828 Code cleanup.
1829 * probe.c (parse_probes): Rename variable objfile_name to
1830 objfile_namestr.
1831
1832 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1833
1834 Remove solib-sunos.c.
1835 * Makefile.in (ALLDEPFILES): Remove solib-sunos.c.
1836 * config/m68k/obsd.mh (NATDEPFILES): Remove solib-sunos.o.
1837 * objfiles.c (rt_common_objfile): Remove.
1838 (free_objfile): Remove rt_common_objfile comparison.
1839 * objfiles.h (rt_common_objfile): Remove.
1840 * solib-sunos.c: Remove.
1841 * symfile.c (reread_symbols): Remove solib-sunos.c comment.
1842
1843 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1844
1845 Remove a.out NetBSD and OpenBSD hosts.
1846 * NEWS (Removed native configurations): New.
1847 * config/arm/nbsdaout.mh: Remove.
1848 * config/i386/nbsdaout.mh: Remove.
1849 * config/i386/obsdaout.mh: Remove.
1850 * config/m68k/nbsdaout.mh: Remove.
1851 * config/sparc/nbsdaout.mh: Remove.
1852 * config/vax/nbsdaout.mh: Remove.
1853 * configure.host (arm*-*-netbsd*, i[34567]86-*-netbsd*)
1854 (i[34567]86-*-openbsd[0-2].*, i[34567]86-*-openbsd3.[0-3])
1855 (m68*-*-netbsd*, sparc-*-netbsd*, vax-*-netbsd*): Add them to obsolete
1856 error.
1857 (arm*-*-netbsd*, i[34567]86-*-netbsd*, i[34567]86-*-openbsd[0-2].*)
1858 (i[34567]86-*-openbsd3.[0-3], m68*-*-netbsd*, sparc-*-netbsdaout*)
1859 (sparc-*-netbsd*, vax-*-netbsd*): Remove.
1860
1861 2013-09-23 Tom Tromey <tromey@redhat.com>
1862
1863 * linespec.c (struct minsym_and_objfile): Remove.
1864 (minsym_and_objfile_d): Remove.
1865 (struct linespec, struct collect_info, linespec_parse_basic)
1866 (convert_linespec_to_sals, linespec_parser_delete, decode_objc)
1867 (compare_msymbols, find_method, find_function_symbols)
1868 (find_linespec_symbols, struct collect_minsyms, compare_msyms)
1869 (add_minsym, search_minsyms_for_name): Update.
1870
1871 2013-09-23 Andrew Burgess <aburgess@broadcom.com>
1872
1873 * regcache.c: Add include of valprint.h.
1874 (dump_endian_bytes): Delete.
1875 (regcache_dump): Use print_hex_chars not dump_endian_bytes.
1876
1877 2013-09-23 Andrew Burgess <aburgess@broadcom.com>
1878
1879 * sh64-tdep.c (sh64_do_fp_register): Use print_hex_chars.
1880
1881 2013-09-19 Pedro Alves <palves@redhat.com>
1882
1883 * breakpoint.c (remove_threaded_breakpoints): Skip non-user
1884 breakpoints.
1885
1886 2013-09-19 Pedro Alves <palves@redhat.com>
1887 Thomas Schwinge <thomas@codesourcery.com>
1888 Yue Lu <hacklu.newborn@gmail.com>
1889
1890 * gnu-nat.c (gnu_read_inferior, gnu_write_inferior): Make static.
1891 Take a gdb_byte pointer instead of a char pointer.
1892
1893 * gnu-nat.c (gnu_xfer_memory): Adjust interface as
1894 gnu_xfer_partial helper.
1895 (gnu_xfer_partial): New function.
1896 (gnu_target): Don't install a deprecated_xfer_memory hook.
1897 Install a to_xfer_partial hook.
1898
1899 2013-09-19 Jan Kratochvil <jan.kratochvil@redhat.com>
1900
1901 Constification.
1902 * main.c (captured_main): Replace catch_command_errors by
1903 catch_command_errors_const. Twice.
1904 * symfile.c (symbol_file_add_main_1): Make args parameter const.
1905 (symbol_file_add): Make name parameter const.
1906 (symbol_file_add_main, symbol_file_add_main_1): Make args parameter const.
1907 (symfile_bfd_open): Make name parameter const, rename it to cname. Add
1908 variable name. Change their usage accordingly.
1909 * symfile.h (symbol_file_add, symfile_bfd_open): Make first parameter
1910 const.
1911 (symbol_file_add_main): Make args parameter const.
1912
1913 2013-09-18 Raunaq Bathija <raunaq12@in.ibm.com>
1914 Ulrich Weigand <uweigand@de.ibm.com>
1915
1916 * xcoffread.c (struct coff_symbol): Use CORE_ADDR as type
1917 of c_value member.
1918 (read_xcoff_symtab): Use CORE_ADDR as type of fcn_start_addr.
1919
1920 2013-09-18 Pedro Alves <palves@redhat.com>
1921 Yue Lu <hacklu.newborn@gmail.com>
1922
1923 * gnu-nat.c (inf_validate_procs, gnu_wait, gnu_resume)
1924 (gnu_create_inferior)
1925 (gnu_attach, gnu_thread_alive, gnu_pid_to_str, cur_thread)
1926 (set_sig_thread_cmd): Use the lwpid field of ptids to
1927 store/extract thread ids instead of the tid field.
1928 * i386gnu-nat.c (gnu_fetch_registers): Adjust.
1929
1930 2013-09-18 Andrew Burgess <aburgess@broadcom.com>
1931
1932 * infcmd.c (default_print_one_register_info): Add detection of
1933 optimized out values.
1934 (default_print_registers_info): Switch to using
1935 get_frame_register_value.
1936
1937 2013-09-18 Markus Metzger <markus.t.metzger@intel.com>
1938
1939 * infrun.c (handle_inferior_event): Check if we know the
1940 function start address before setting a resume breakpoint.
1941
1942 2013-09-18 Pedro Alves <palves@redhat.com>
1943
1944 * gnu-nat.c (set_sig_thread_cmd): Compare the thread's ptid to
1945 minus_one_ptid instead of looking at the ptid's tid field and
1946 comparing that to -1.
1947
1948 2013-09-18 Andrew Burgess <aburgess@broadcom.com>
1949
1950 * main.h (get_gdb_program_name): Remove extra whitespace.
1951
1952 2013-09-18 Andrew Burgess <aburgess@broadcom.com>
1953
1954 * main.h (get_gdb_program_name): Add declaration.
1955 * main.c (get_gdb_program_name): Add definition.
1956
1957 2013-09-17 Doug Evans <dje@google.com>
1958
1959 * dwarf2read.c: Move definitions of complaint functions to after
1960 forward declarations of local functions.
1961
1962 2013-09-17 Muhammad Waqas <mwaqas@codesourcery.com>
1963 Pedro Alves <palves@redhat.com>
1964
1965 PR gdb/11568
1966 * breakpoint.c (remove_threaded_breakpoints): New function.
1967 (_initialize_breakpoint): Attach remove_threaded_breakpoints
1968 as thread_exit observer.
1969
1970 2013-09-17 Pedro Alves <palves@redhat.com>
1971
1972 PR gdb/15911
1973 * ada-tasks.c (task_command_1): Adjust call to print_stack_frame.
1974 * bsd-kvm.c (bsd_kvm_open, bsd_kvm_proc_cmd, bsd_kvm_pcb_cmd):
1975 * corelow.c (core_open):
1976 * frame.h (print_stack_frame, print_frame_info): New
1977 'set_current_sal' parameter.
1978 * infcmd.c (finish_command, kill_command): Adjust call to
1979 print_stack_frame.
1980 * inferior.c (inferior_command): Likewise.
1981 * infrun.c (normal_stop): Likewise.
1982 * linux-fork.c (linux_fork_context): Likewise.
1983 * record-full.c (record_full_goto_entry, record_full_restore):
1984 Likewise.
1985 * remote-mips.c (common_open): Likewise.
1986 * stack.c (print_stack_frame): New 'set_current_sal' parameter.
1987 Use it.
1988 (print_frame_info): New 'set_current_sal' parameter. Set the last
1989 displayed sal depending on the new paremeter instead of looking at
1990 print_what.
1991 (backtrace_command_1, select_and_print_frame, frame_command)
1992 (current_frame_command, up_command, down_command): Adjust call to
1993 print_stack_frame.
1994 * thread.c (print_thread_info, restore_selected_frame)
1995 (do_captured_thread_select): Adjust call to print_stack_frame.
1996 * tracepoint.c (tfind_1): Likewise.
1997 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames)
1998 (mi_cmd_stack_info_frame): Likewise.
1999 * mi/mi-interp.c (mi_on_normal_stop): Likewise.
2000 * mi/mi-main.c (mi_cmd_exec_return, mi_cmd_trace_find): Likewise.
2001
2002 2013-09-16 Sergio Durigan Junior <sergiodj@redhat.com>
2003
2004 * value.c (isvoid_internal_fn): Replace "parameter" with
2005 "argument".
2006
2007 2013-09-16 Stan Shebs <stan@codesourcery.com>
2008
2009 * README: Update references to writing code for GDB.
2010 * configure.ac (build_warnings): Remove obsolete comment.
2011 * configure: Regenerate.
2012 * gdbarch.sh: Remove references to gdbint.texinfo.
2013 * gdbarch.h: Regenerate.
2014 * gdbtypes.c (objfile_type): Remove comments referencing internals
2015 manual and D10V.
2016
2017 2013-09-16 Sergio Durigan Junior <sergiodj@redhat.com>
2018
2019 * NEWS: Mention new convenience function $_isvoid.
2020 * value.c (isvoid_internal_fn): New function.
2021 (_initialize_values): Add new convenience function $_isvoid.
2022
2023 2013-09-16 Pierre Muller <muller@sourceware.org>
2024
2025 * arm-linux-tdep.c: Add "elf/common.h" header.
2026 Remove AT_HWCAP macro definintion as it is provided in
2027 added include file.
2028 * s390-tdep.c: Remove system header <elf.h>
2029 Add "elf/common.h" header for AT_HWCAP definition.
2030 (s390_core_read_description): Use correct CORE_ADDR
2031 for hwcap local variable used as third parameter
2032 of function target_auxv_search.
2033
2034 2013-09-14 Pierre Muller <muller@sourceware.org>
2035 Tom Tromey <tromey@redhat.com>
2036 Pedro Alves <palves@redhat.com>
2037
2038 * common/filestuff.c (gdb_fopen_cloexec): Do not try to use "e"
2039 mode if operating system doesn't know O_CLOEXEC.
2040
2041 2013-09-13 Jan Kratochvil <jan.kratochvil@redhat.com>
2042
2043 Code cleanup.
2044 * symfile.c (reread_symbols): Move variable obfd_filename to a more
2045 inner block.
2046
2047 2013-09-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
2048
2049 * NEWS: Mention TDB support.
2050 * features/s390-tdb.xml: New file.
2051 * features/s390-te-linux64.xml: New file.
2052 * features/s390x-te-linux64.xml: New file.
2053 * features/Makefile (WHICH): Add new tdescs above.
2054 (s390-te-linux64-expedite): Set.
2055 (s390x-te-linux64-expedite): Set.
2056 * features/s390-te-linux64.c: New file (generated).
2057 * features/s390x-te-linux64.c: New file (generated).
2058 * regformats/s390-te-linux64.dat: New file (generated).
2059 * regformats/s390x-te-linux64.dat: New file (generated).
2060 * s390-tdep.h (HWCAP_S390_HIGH_GPRS): Define.
2061 (HWCAP_S390_TE): Likewise.
2062 (S390_TDB_DWORD0_REGNUM): Likewise.
2063 (S390_TDB_DWORD0_REGNUM): Likewise.
2064 (S390_TDB_ABORT_CODE_REGNUM): Likewise.
2065 (S390_TDB_CONFLICT_TOKEN_REGNUM): Likewise.
2066 (S390_TDB_ATIA_REGNUM): Likewise.
2067 (S390_TDB_R0_REGNUM): Likewise.
2068 (S390_TDB_R1_REGNUM): Likewise.
2069 (S390_TDB_R2_REGNUM): Likewise.
2070 (S390_TDB_R3_REGNUM): Likewise.
2071 (S390_TDB_R4_REGNUM): Likewise.
2072 (S390_TDB_R5_REGNUM): Likewise.
2073 (S390_TDB_R6_REGNUM): Likewise.
2074 (S390_TDB_R7_REGNUM): Likewise.
2075 (S390_TDB_R8_REGNUM): Likewise.
2076 (S390_TDB_R9_REGNUM): Likewise.
2077 (S390_TDB_R10_REGNUM): Likewise.
2078 (S390_TDB_R11_REGNUM): Likewise.
2079 (S390_TDB_R12_REGNUM): Likewise.
2080 (S390_TDB_R13_REGNUM): Likewise.
2081 (S390_TDB_R14_REGNUM): Likewise.
2082 (S390_TDB_R15_REGNUM): Likewise.
2083 (S390_NUM_REGS): Increase.
2084 (S390_IS_TDBREGSET_REGNUM): New macro.
2085 (s390_regmap_tdb): Declare.
2086 (s390_sizeof_tdbregset): Define.
2087 (tdesc_s390_te_linux64): Declare.
2088 (tdesc_s390x_te_linux64): Likewise.
2089 * s390-tdep.c: Add includes for "auxv.h", <elf.h>,
2090 "features/s390-te-linux64.c", and "features/s390x-te-linux64.c".
2091 (s390_regmap_tdb): New regmap.
2092 (s390_supply_tdb_regset): New function.
2093 (s390_tdb_regset): New regset.
2094 (s390_linux64v2_regset_sections): Add TDB regset to list.
2095 (s390x_linux64v2_regset_sections): Likewise.
2096 (s390_regset_from_core_section): Recognize TDB core note section.
2097 (s390_core_read_description): If HWCAP indicates TE support,
2098 select tdesc_s390_te_linux64 or tdesc_s390_s390x_te_linux64.
2099 (s390_gdbarch_init): Handle TDB regset.
2100 (_initialize_s390_tdep): Initialize new tdescs.
2101 * s390-nat.c (HWCAP_S390_HIGH_GPRS): Remove define.
2102 (have_regset_tdb): New variable.
2103 (s390_native_supply): Support register invalidation.
2104 (fetch_regset): Invalidate registers if ptrace yields ENODATA.
2105 (check_regset): Treat ENODATA as "regset exists".
2106 (s390_linux_fetch_inferior_registers): Add TDB.
2107 (s390_read_description): Check for TDB existence and select
2108 appropriate tdesc.
2109 * gdbserver/Makefile.in (clean): Add removal of new makefile
2110 targets.
2111 (s390-te-linux64.c): New makefile target.
2112 (s390x-te-linux64.c): Likewise.
2113 * gdbserver/configure.srv (srv_regobj): Append new objects
2114 s390-te-linux64.o and s390x-te-linux64.o.
2115 (srv_xmlfiles): Append new files s390-te-linux64.xml,
2116 s390x-te-linux64.xml, and s390-tdb.xml.
2117 * gdbserver/linux-s390-low.c (init_registers_s390_te_linux64): New
2118 declaration.
2119 (tdesc_s390_te_linux64): Likewise.
2120 (init_registers_s390x_te_linux64): Likewise.
2121 (tdesc_s390x_te_linux64): Likewise.
2122 (s390_check_regset): Treat ENODATA as "regset exists".
2123 (s390_arch_setup): Add TDB regset support.
2124 (initialize_low_arch): Initialize registers for new tdescs.
2125
2126 2013-09-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
2127
2128 * s390-tdep.h (S390_IS_GREGSET_REGNUM): New macro.
2129 (S390_IS_FPREGSET_REGNUM): New macro.
2130 * s390-tdep.c (s390_dwarf_regmap): Make const.
2131 (regnum_is_gpr_full): New function for replacing repeated code.
2132 (s390_pseudo_register_name): Use it.
2133 (s390_pseudo_register_type): Likewise.
2134 (s390_pseudo_register_read): Likewise.
2135 (s390_pseudo_register_write): Likewise.
2136 (s390_unwind_pseudo_register): Likewise.
2137 (s390_regmap_gregset): New format for regmap.
2138 (s390x_regmap_gregset): Likewise.
2139 (s390_regmap_fpregset): Likewise.
2140 (s390_regmap_upper): Likewise.
2141 (s390_regmap_last_break): Likewise.
2142 (s390_regmap_system_call): Likewise.
2143 (s390_supply_regset): Adjust to new regmap format.
2144 (s390_collect_regset): Likewise.
2145 * s390-nat.c (s390_native_supply): Adjust to new regmap format.
2146 (s390_native_collect): Likewise.
2147 (supply_gregset): Likewise.
2148 (fill_gregset): Likewise.
2149 (supply_fpregset): Likewise.
2150 (fill_fpregset): Likewise.
2151 (fetch_regset): Likewise.
2152 (store_regset): Likewise.
2153 (s390_linux_fetch_inferior_registers): Likewise.
2154 (s390_linux_fetch_inferior_registers): Likewise.
2155
2156 2013-09-12 Andrew Pinski <apinski@cavium.com>
2157
2158 * aarch64-linux-nat.c (aarch64_linux_set_debug_regs): Zero out regs.
2159
2160 2013-09-10 Andreas Arnez <arnez@linux.vnet.ibm.com>
2161
2162 * config/s390/s390.mh (NATDEPFILES): Add linux-waitpid.o.
2163
2164 2013-09-09 Andrew Burgess <aburgess@broadcom.com>
2165
2166 * top.c (quit_confirm): Remove use of deprecated_init_ui_hook.
2167
2168 2013-09-06 Pedro Alves <palves@redhat.com>
2169
2170 * remote-sim.c (dump_mem, gdbsim_fetch_register)
2171 (gdbsim_store_register, gdbsim_kill, gdbsim_load)
2172 (gdbsim_create_inferior, gdbsim_open, gdbsim_close)
2173 (gdbsim_detach, gdbsim_resume_inferior, gdbsim_wait)
2174 (gdbsim_files_info, gdbsim_mourn_inferior): Send debug output to
2175 gdb_stdlog.
2176
2177 2013-09-06 Pedro Alves <palves@redhat.com>
2178
2179 * remote-sim.c (dump_mem): Constify buf parameter.
2180 gdbsim_xfer_inferior_memory): Rename to ...
2181 (gdbsim_xfer_memory): ... this. Adjust interface as
2182 target_xfer_partial helper.
2183 (gdbsim_xfer_partial): New function.
2184 (init_gdbsim_ops): Don't install a deprecated_xfer_memory hook.
2185 Install a to_xfer_partial hook. Send output to gdb_stdlog.
2186
2187 2013-09-06 Pedro Alves <palves@redhat.com>
2188
2189 * remote-sim.c (gdbsim_xfer_inferior_memory): Use
2190 host_address_to_string, and send debug output to gdb_stdlog.
2191
2192 2013-09-06 Ricard Wanderlof <ricardw@axis.com>
2193
2194 * Makefile.in (ALL_TARGET_OBS): Add cris-linux-tdep.o.
2195 * configure.tgt: Add cris-linux-tdep.o and linux-tdep.o to
2196 gdb_target_obs for cris target.
2197 * cris-tdep.c (struct gdbarch_tdep): Move to cris-tdep.h.
2198 (cris_gdbarch_init): Move calls to
2199 set_gdbarch_fetch_tls_load_module_address and
2200 set_solib_svr4_fetch_link_map_offsets to cris-linux-tdep.c.
2201 Add call to gdbarch_init_osabi.
2202 * cris-linux-tdep.c: New file.
2203 * cris-tdep.h: New file.
2204
2205 2013-09-06 Andrew Burgess <aburgess@broadcom.com>
2206
2207 * tui/tui-io.c (tui_initialize_io): Remove legacy comment referring
2208 to deprecated_init_ui_hook.
2209
2210 2013-09-06 Andrew Burgess <aburgess@broadcom.com>
2211
2212 * cli/cli-interp.c (_initialize_cli_interp): Add a
2213 command_loop_proc to interp_procs.
2214 * event-top.c (cli_command_loop): Change signature to match
2215 interp_command_loop_ftype.
2216 * event-top.h (cli_command_loop): Same.
2217 * interps.c (interp_new): Require every interpreter to have a
2218 command_loop_proc.
2219 (current_interp_command_loop): Just call the command_loop_proc on
2220 the current interpreter.
2221 * tui/tui-interp.c (_initialize_tui_interp): Add a
2222 command_loop_proc to interp_procs.
2223
2224 2013-09-06 Ricard Wanderlof <ricardw@axis.com>
2225
2226 * cris-tdep.c (cris_gdbarch_init): Add call to
2227 get_gdbarch_fetch_tls_load_module_address.
2228
2229 2013-09-06 Ricard Wanderlof <ricardw@axis.com>
2230
2231 * cris-tdep.c (cris_elf_greg_t): Rename from elf_greg_t.
2232 (cris_elf_gregset_t): Rename from elf_gregset_t.
2233 (crisv32_elf_gregset_t): Adjust.
2234 (cris_supply_gregset, fetch_core_registers): Adjust.
2235
2236 2013-09-06 Ricard Wanderlof <ricardw@axis.com>
2237
2238 * cris-tdep.c (elf_greg_t): Change typedef to unsigned char[4]
2239
2240 2013-09-05 Andrew Burgess <aburgess@broadcom.com>
2241
2242 * defs.h (deprecated_command_loop_hook): Remove, including
2243 references in comments.
2244 * interps.c (current_interp_command_loop): No longer use
2245 deprecated_command_loop_hook.
2246 (clear_interpreter_hooks): Remove deprecated_command_loop_hook
2247 setup.
2248 * top.c (deprecated_command_loop_hook): Remove.
2249
2250 2013-09-05 Pedro Alves <palves@redhat.com>
2251
2252 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): 'dwarf_regnum'
2253 local is now int instead of ULONGEST. Print it with %d
2254 instead of paddress.
2255
2256 2013-09-05 Tristan Gingold <gingold@adacore.com>
2257
2258 * MAINTAINERS: Remove avr maintainership.
2259
2260 2013-09-05 Pedro Alves <palves@redhat.com>
2261
2262 * findvar.c (value_of_register): Rework in terms of
2263 value_of_register_lazy.
2264
2265 2013-09-05 Muhammad Bilal <mbilal@codesourcery.com>
2266
2267 * symfile.c (add_symbol_file_command): Remove trailing
2268 whitespaces and blank line after comment.
2269
2270 2013-09-05 Pedro Alves <palves@redhat.com>
2271
2272 * tui/tui-regs.c (tui_register_format): Don't look at the
2273 register's name here. Return string representing register
2274 value instead of storing it in the data element.
2275 (tui_get_register): Compare register string representations
2276 instead of register value states and contents.
2277
2278 2013-09-05 Pedro Alves <palves@redhat.com>
2279
2280 PR tui/15933
2281 * tui/tui-regs.c (tui_show_registers): Show registers of the
2282 selected frame, not the current frame.
2283
2284 2013-09-05 Ricard Wanderlof <ricardw@axis.com>
2285
2286 * MAINTAINERS (Write After Approval): Add myself to the list.
2287
2288 2013-09-04 Doug Evans <dje@google.com>
2289
2290 * dwarf2read.c (queue_and_load_all_dwo_tus): New function.
2291 (queue_and_load_dwo_tu): New function.
2292 (lookup_dwo_signatured_type): Set per_cu.tu_read.
2293 (maybe_queue_comp_unit): Rename this_cu argument to dependent_cu.
2294 Make dependent_cu optional.
2295 (dw2_do_instantiate_symtab): If we just loaded a CU from a DWO,
2296 and an older .gdb_index is in use, queue and load all its TUs too.
2297
2298 2013-09-04 Jan Kratochvil <jan.kratochvil@redhat.com>
2299
2300 Code cleanup: Change OPF_DISABLE_REALPATH to OPF_RETURN_REALPATH.
2301 * cli/cli-cmds.c (find_and_open_script): Add OPF_RETURN_REALPATH to
2302 variable search_flags.
2303 * defs.h (OPF_DISABLE_REALPATH): Rename to ...
2304 (OPF_RETURN_REALPATH): ... here.
2305 * dwarf2read.c (try_open_dwop_file): Set OPF_RETURN_REALPATH for flags.
2306 * exec.c (exec_file_attach): Remove OPF_DISABLE_REALPATH from openp
2307 call. Twice.
2308 * nto-tdep.c (nto_find_and_open_solib): Add OPF_RETURN_REALPATH for
2309 openp call.
2310 * solib.c (solib_find): Likewise. Four times.
2311 * source.c (openp): Change OPF_DISABLE_REALPATH to OPF_RETURN_REALPATH
2312 in the function comment and for the realpath_fptr variable.
2313 (source_full_path_of): Add OPF_RETURN_REALPATH for openp call.
2314 (find_and_open_source): Likewise. Twice.
2315 * symfile.c (symfile_bfd_open): Likewise, also twice.
2316
2317 2013-09-04 Doug Evans <dje@google.com>
2318
2319 * progspace.c (save_current_space_and_thread): Remove unnecessary
2320 call to save_current_inferior.
2321
2322 2013-09-04 Andrew Burgess <aburgess@broadcom.com>
2323
2324 * sh64-tdep.c (sh64_do_register): Return after printing message
2325 about unavailable register contents.
2326
2327 2013-09-04 Muhammad Bilal <mbilal@codesourcery.com>
2328 Pedro Alves <palves@redhat.com>
2329
2330 * symfile.c (add_symbol_file_command): Error out on unknown
2331 option. Handle EXPECTING_SEC_ADDR/EXPECTING_SEC_NAME before '-'
2332 options and collapse into single conditional branch.
2333
2334 2013-09-03 Luis Machado <lgustavo@codesourcery.com>
2335
2336 * inf-child.c (inf_child_follow_fork): New parameter
2337 detach_fork.
2338 * inf-ptrace.c (inf_ptrace_follow_fork): Likewise.
2339 * inf-ttrace.c (inf_ttrace_follow_fork): Likewise.
2340 * inferior.h (detach_fork): Remove.
2341 * infrun.c (detach_fork): Adjust comment and make it
2342 static.
2343 (follow_fork): Pass detach_fork parameter to
2344 target_follow_fork.
2345 * linux-nat.c (linux_child_follow_fork): New parameter
2346 detach_fork.
2347 * target.c (target_follow_fork): New parameter detach_fork.
2348 Pass detach_fork as parameter and print its value.
2349 * target.h (struct target_ops) <to_follow_fork>: New int
2350 parameter.
2351 (target_follow_fork): New parameter detach_fork.
2352
2353 2013-09-03 Joel Brobecker <brobecker@adacore.com>
2354
2355 * solib-ia64-hpux.c (ia64_hpux_relocate_section_addresses):
2356 Replace sec->bfd by sec->the_bfd_section->owner.
2357
2358 2013-09-03 Yao Qi <yao@codesourcery.com>
2359
2360 * linux-tdep.c (linux_is_uclinux): New function. Code moved
2361 from linux_has_shared_address_space.
2362 (linux_has_shared_address_space): Call linux_is_uclinux.
2363 * linux-tdep.h (linux_is_uclinux): Declare.
2364 * m68klinux-tdep.c (m68k_linux_get_sigtramp_info): Call
2365 linux_is_uclinux.
2366
2367 2013-09-03 Yao Qi <yao@codesourcery.com>
2368
2369 * config/djgpp/fnchange.lst: Remove entry of
2370 i386-interix-nat.c and i386-interix-tdep.c.
2371 * configure.ac: Remove '*-*-interix*'.
2372 * configure: Re-generated.
2373 * defs.h (enum gdb_osabi): Remove GDB_OSABI_INTERIX.
2374 * i386-cygwin-tdep.c (i386_cygwin_osabi_sniffer): Remove
2375 obsolete comments.
2376 * osabi.c (gdb_osabi_names): Remove "Interix".
2377
2378 2013-09-03 Yao Qi <yao@codesourcery.com>
2379
2380 * arch-utils.c: Fix typo in the comment to gdbarch_update_p.
2381
2382 2013-09-02 Markus Metzger <markus.t.metzger@intel.com>
2383
2384 * record.h (record_print_flag) <record_print_src_line,
2385 record_print_insn_range>: Rename into ...
2386 (record_print_flag) <record_print_src_line,
2387 record_print_insn_range>: ... this. Update all users.
2388
2389 2013-09-02 Pierre Muller <muller@sourceware.org>
2390
2391 * windows-nat.c (windows_xfer_memory): Handle ERROR_PARTIAL_COPY
2392 error code.
2393
2394 2013-09-02 Pierre Muller <muller@sourceware.org>
2395
2396 * windows-nat.c (windows_xfer_memory): Fix compilation failure
2397 by use of plongest function.
2398
2399 2013-09-02 Tristan Gingold <gingold@adacore.com>
2400
2401 * NEWS: Add entry mentioning support for native Windows x64
2402 SEH data.
2403
2404 * amd64-windows-tdep.c: #include "objfiles.h", "frame-unwind.h",
2405 "coff/internal.h", "coff/i386.h", "coff/pe.h" and "libcoff.h".
2406 (struct amd64_windows_frame_cache): New struct.
2407 (amd64_windows_w2gdb_regnum): New global.
2408 (pc_in_range, amd64_windows_frame_decode_epilogue)
2409 (amd64_windows_frame_decode_insns, amd64_windows_find_unwind_info)
2410 (amd64_windows_frame_cache, amd64_windows_frame_prev_register)
2411 (amd64_windows_frame_this_id): New functions.
2412 (amd64_windows_frame_unwind): New static global.
2413 (amd64_windows_skip_prologue): New function.
2414 (amd64_windows_init_abi): Call frame_unwind_prepend_unwinder
2415 with amd64_windows_frame_unwind. Call set_gdbarch_skip_prologue
2416 with amd64_windows_skip_prologue.
2417
2418 2013-08-30 Joel Brobecker <brobecker@adacore.com>
2419
2420 GDB 7.6.1 released.
2421
2422 2013-08-30 Pedro Alves <palves@redhat.com>
2423
2424 * mi/mi-main.c (mi_cmd_trace_find): Use LOC_AND_ADDRESS instead of
2425 SRC_AND_LOC.
2426
2427 2013-08-30 Pedro Alves <palves@redhat.com>
2428
2429 * thread.c (restore_selected_frame): Use SRC_AND_LOC, and change
2430 warning text.
2431
2432 2013-08-30 Pedro Alves <palves@redhat.com>
2433
2434 * bsd-kvm.c (bsd_kvm_open, bsd_kvm_proc_cmd, bsd_kvm_pcb_cmd):
2435 Adjust arguments to print_stack_frame.
2436
2437 2013-08-30 Pedro Alves <palves@redhat.com>
2438
2439 * ada-tasks.c (task_command_1): Write SRC_AND_LOC instead '1'.
2440
2441 2013-08-30 Pedro Alves <palves@redhat.com>
2442
2443 * frame.h (show_and_print_stack_frame): Delete declaration.
2444
2445 2013-08-30 Phil Muldoon <pmuldoon@redhat.com>
2446
2447 PR python/15461
2448 * python/py-arch.c (ARCHPY_REQUIRE_VALID): New macro.
2449 (archpy_name): Check for valid architecture.
2450 (archpy_disassemble): Ditto.
2451
2452 2013-08-29 Joel Brobecker <brobecker@adacore.com>
2453
2454 * rs6000-nat.c (rs6000_ptrace32): Cast "addr" to "uintptr_t"
2455 instead of "long long" in call to ptrace64.
2456
2457 2013-08-29 Andrew Burgess <aburgess@broadcom.com>
2458
2459 * mi/mi-interp.c (mi_command_loop): Change signature to match
2460 interp_command_loop_ftype.
2461 (mi1_command_loop): Remove.
2462 (mi2_command_loop): Remove.
2463 (mi3_command_loop): Remove.
2464 (mi_interpreter_resume): Remove setting of
2465 deprecated_command_loop_hook.
2466 (_initialize_mi_interp): Set mi_command_loop as the command loop
2467 callback.
2468
2469 2013-08-29 Sanimir Agovic <sanimir.agovic@intel.com>
2470
2471 * valops.c (do_search_struct_field): Pass v2 instead of base_type to
2472 value_type.
2473
2474 2013-08-29 Sanimir Agovic <sanimir.agovic@intel.com>
2475
2476 * value.c (allocate_value_contents): Make static.
2477 * value.h (allocate_value_contents): Remove prototype.
2478
2479 2013-08-29 Sanimir Agovic <sanimir.agovic@intel.com>
2480
2481 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Use value_at_lazy instead
2482 of assembling value via allocate_value_lazy and attribute setter.
2483 * findvar.c (default_read_var_value): Use value_at_lazy instead of
2484 assembling value via allocate_value_lazy and attribute setter.
2485 * valops.c (do_search_struct_field): Use value_at_lazy instead of
2486 assembling value via allocate_value_lazy and attribute setter.
2487
2488 2013-08-29 Sanimir Agovic <sanimir.agovic@intel.com>
2489
2490 * value.c (value_from_contents_and_address): Replace allocate_value and
2491 memcpy with value_from_contents.
2492
2493 2013-08-29 Phil Muldoon <pmuldoon@redhat.com>
2494
2495 * python/py-framefilter.c (py_print_frame): Remove usage of
2496 PyString_AsString. Use python_string_to_host_string instead.
2497 Refactor function to work with a string as a new allocation
2498 instead of a pointer.
2499 (py_print_frame): Ditto.
2500 * python/lib/gdb/frames.py (return_list): Cain iterators together
2501 instead of adding them as a list.
2502 (_sort_list): Call return_list, and remove duplicate code.
2503 (execute_frame_filters): Convert iterator to a list with list().
2504 * python/lib/gdb/command/frame_filters.py
2505 (SetFrameFilterPriority._set_filter_priority): Convert priority
2506 attribute to an integer.
2507 * python/lib/gdb/FrameIterator.py (FrameIterator.next): Define
2508 wrapper function __next__.
2509 * python/lib/gdb/FrameDecorator.py: If basestring not defined,
2510 define as "str".
2511
2512 2013-08-29 Phil Muldoon <pmuldoon@redhat.com>
2513
2514 PR python/15752
2515 * python/py-framefilter.c (apply_frame_filter): Check
2516 gdb_python_initialized. Exit if the Python frame-filter code
2517 cannot be initialized.
2518
2519 2013-08-29 Phil Muldoon <pmuldoon@redhat.com>
2520
2521 PR cli/15842
2522 * top.c (print_gdb_version): Remove erroneous newline after help
2523 text.
2524
2525 2013-08-29 Yao Qi <yao@codesourcery.com>
2526
2527 * varobj.c (install_dynamic_child): Remove trailing space.
2528 Add one blank line after variable declaration.
2529
2530 2013-08-28 Jan Kratochvil <jan.kratochvil@redhat.com>
2531
2532 PR gdb/15415
2533 * corefile.c (get_exec_file): Use exec_filename.
2534 * defs.h (OPF_DISABLE_REALPATH): New definition. Add new comment.
2535 * exec.c (exec_close): Free EXEC_FILENAME.
2536 (exec_file_attach): New variable canonical_pathname. Use
2537 OPF_DISABLE_REALPATH. Call gdb_realpath explicitly. Set
2538 EXEC_FILENAME.
2539 * exec.h (exec_filename): New.
2540 * inferior.c (print_inferior, inferior_command): Use
2541 PSPACE_EXEC_FILENAME.
2542 * mi/mi-main.c (print_one_inferior): Likewise.
2543 * progspace.c (clone_program_space, print_program_space): Likewise.
2544 * progspace.h (struct program_space): New field pspace_exec_filename.
2545 * source.c (openp): Describe OPF_DISABLE_REALPATH. New variable
2546 realpath_fptr, initialize it from OPF_DISABLE_REALPATH, use it.
2547
2548 2013-08-28 Will Newton <will.newton@linaro.org>
2549
2550 * common/linux-ptrace.c: Include stdint.h unconditionally.
2551
2552 2013-08-28 Jan Kratochvil <jan.kratochvil@redhat.com>
2553
2554 Code cleanup.
2555 * nto-tdep.c (nto_find_and_open_solib): Use OPF_TRY_CWD_FIRST.
2556
2557 2013-08-28 Yao Qi <yao@codesourcery.com>
2558 Pedro Alves <palves@redhat.com>
2559
2560 * event-top.c (gdb_setup_readline): Call stderr_fileopen
2561 instead of stdio_fileopen.
2562 * main.c (captured_main) [__MINGW32__]: Set stderr unbuffered.
2563 .Call stderr_fileopen instead of stdio_fileopen.
2564 * ui-file.c [__MINGW32__] (stderr_file_write): New function.
2565 [__MINGW32__] (stderr_file_fputs): New function.
2566 (stderr_fileopen): New function.
2567 * ui-file.h (stderr_fileopen): Declare.
2568
2569 2013-08-27 Doug Evans <dje@google.com>
2570
2571 * dwarf2read.c (struct dwarf2_cu): Tweak comment.
2572 (struct dwarf2_per_cu_data): Ditto.
2573 (maybe_queue_comp_unit): Delete forward decl. Add comment.
2574 (process_imported_unit_die): Ditto.
2575 (follow_die_sig_1): Simplify assert.
2576
2577 2013-08-27 Pedro Alves <palves@redhat.com>
2578
2579 * windows-nat.c (windows_xfer_memory): Adjust prototype to follow
2580 xfer_partial's interface. Return TARGET_XFER_E_IO on error.
2581 (windows_xfer_partial): Defer TARGET_OBJECT_MEMORY handling to
2582 windows_xfer_memory directly.
2583 (init_windows_ops): Don't install a deprecated_xfer_memory method.
2584
2585 2013-08-27 Pedro Alves <palves@redhat.com>
2586
2587 * darwin-nat.c (darwin_xfer_memory): Delete.
2588 (_initialize_darwin_inferior): Don't install a
2589 deprecated_xfer_memory method.
2590
2591 2013-08-27 Pedro Alves <pedro@codesourcery.com>
2592 Yao Qi <yao@codesourcery.com>
2593
2594 * mi/mi-cmd-stack.c (list_args_or_locals): Adjust prototype.
2595 (parse_no_frames_option): Remove.
2596 (mi_cmd_stack_list_locals): Handle --skip-unavailable.
2597 (mi_cmd_stack_list_args): Adjust.
2598 (mi_cmd_stack_list_variables): Handle --skip-unavailable.
2599 (list_arg_or_local): Add new parameter 'skip_unavailable'. Return
2600 early if SKIP_UNAVAILABLE is true and ARG->val is unavailable.
2601 Caller update.
2602 (list_args_or_locals): New parameter 'skip_unavailable'.
2603 Handle it.
2604 * valprint.c (scalar_type_p): Rename to ...
2605 (val_print_scalar_type_p): ... this. Make extern.
2606 (val_print, value_check_printable): Adjust.
2607 * valprint.h (val_print_scalar_type_p): Declare.
2608 * value.c (value_entirely_unavailable): New function.
2609 * value.h (value_entirely_unavailable): Declare.
2610
2611 * NEWS: Mention the new option "--skip-unavailable" to MI
2612 commands '-stack-list-locals', '-stack-list-arguments' and
2613 '-stack-list-variables'.
2614
2615 2013-08-27 Yao Qi <yao@codesourcery.com>
2616
2617 * mi/mi-cmd-stack.c (parse_no_frames_option): Remove.
2618 (mi_cmd_stack_list_args): Use mi_getopt_silent to handle
2619 options.
2620 * mi/mi-getopt.c (mi_getopt): Remove.
2621 (mi_getopt_1): Renamed from mi_getopt. Add one parameter
2622 'error_on_unknown'.
2623 (mi_getopt): Call mi_getopt_1.
2624 (mi_getopt_silent): New.
2625 * mi/mi-getopt.h (mi_getopt_silent): Declare.
2626
2627 2013-08-26 Doug Evans <dje@google.com>
2628
2629 PR symtab/15885
2630 * dwarf2read.c (dw2_dump): Print some minimal information indicating
2631 .gdb_index is in use.
2632 * symfile.c (reread_symbols): Reset objfile->sf.
2633
2634 * NEWS: Document "mt print objfiles" now takes optional regexp.
2635 * symmisc.c (maintenance_print_objfiles): Argument is now an optional
2636 regexp of objfiles to print.
2637 (_initialize_symmisc): Update doc string for "mt print objfiles".
2638
2639 * dwarf2read.c (write_psymtabs_to_index): Move error checks ahead of
2640 missing debug info checks.
2641
2642 2013-08-26 Raunaq Bathija <raunaq12@in.ibm.com>
2643 Ulrich Weigand <uweigand@de.ibm.com>
2644
2645 * xcoffread.c (arrange_linetable): Add fix to correctly handle
2646 line tables generated by XLC compiled binaries.
2647
2648 2013-08-23 Doug Evans <dje@google.com>
2649
2650 * symmisc.c (dump_symtab): Delete prototype.
2651 (dump_msymbols, dump_objfile): Ditto.
2652 (maintenance_info_symtabs): Mark as dont_repeat.
2653 (_initialize_symmisc): Improve doc string for "mt info symtabs".
2654
2655 * elfread.c (elf_symfile_read): Move "Done reading minimal symbols"
2656 debugging printf to better location.
2657
2658 2013-08-23 Pedro Alves <palves@redhat.com>
2659
2660 * target.c (target_read_live_memory): Change type of 'ret' local
2661 to LONGEST.
2662
2663 2013-08-23 Pedro Alves <palves@redhat.com>
2664
2665 * remote.c (remote_write_bytes_aux, remote_write_bytes)
2666 (remote_read_bytes): Change return type to LONGEST, and adjust to
2667 return a target_xfer_error on error.
2668 (remote_xfer_memory): Delete.
2669 (remote_flash_write): Change type of 'ret' local to LONGEST.
2670 (remote_xfer_partial, remote_xfer_partial): Adjust.
2671 (init_remote_ops): Don't install a deprecated_xfer_memory hook.
2672
2673 2013-08-23 Pierre Muller <muller@sourceware.org>
2674
2675 ARI fix: Push # directives to start of line.
2676 * rs6000-nat.c (rs6000_ptrace32, rs6000_ptrace64): Rule applied.
2677
2678 2013-08-12 Muhammad Waqas <mwaqas@codesourcery.com>
2679
2680 PR gdb/15501
2681 * breakpoint.c (enable_command, disable_command): Iterate over
2682 all specified breakpoint locations.
2683
2684 2013-08-22 Luis Machado <lgustavo@codesourcery.com>
2685
2686 * common/linux-ptrace.c (linux_fork_to_function): Push #
2687 directives to the start of the line.
2688 (linux_check_ptrace_features): Fix warning message to use
2689 the "_" markup.
2690
2691 2013-08-22 Luis Machado <lgustavo@codesourcery.com>
2692
2693 * Makefile.in (HFILES_NO_SRCDIR): Add nat/linux-nat.h and
2694 nat/linux-waitpid.h.
2695 (linux-waitpid.o): New object file rule.
2696 * common/linux-ptrace.c: Include nat/linux-waitpid.h.
2697 (current_ptrace_options): Moved from linux-nat.c.
2698 (linux_ptrace_test_ret_to_nx): Use type casts for ptrace
2699 parameters.
2700 (linux_fork_to_function): New function.
2701 (linux_grandchild_function): Likewise.
2702 (linux_child_function): Likewise.
2703 (linux_check_ptrace_features): New function, heavily
2704 based on linux-nat.c:linux_test_for_tracefork.
2705 (linux_enable_event_reporting): New function.
2706 (ptrace_supports_feature): Likewise.
2707 (linux_supports_tracefork): Likewise.
2708 (linux_supports_traceclone): Likewise.
2709 (linux_supports_tracevforkdone): Likewise.
2710 (linux_supports_tracesysgood): Likewise.
2711 * common/linux-ptrace.h (HAS_NOMMU): Moved from
2712 gdbserver/linux-low.c.
2713 (linux_enable_event_reporting): New declaration.
2714 (linux_supports_tracefork): Likewise.
2715 (linux_supports_traceclone): Likewise.
2716 (linux_supports_tracevforkdone): Likewise.
2717 (linux_supports_tracesysgood): Likewise.
2718 * config.in (PTRACE_TYPE_ARG4): Regenerate.
2719 * config/aarch64/linux.mh (NATDEPFILES): Add linux-waitpid.o.
2720 * config/alpha/alpha-linux.mh (NATDEPFILES): Likewise.
2721 * config/arm/linux.mh (NATDEPFILES): Likewise.
2722 * config/i386/linux.mh (NATDEPFILES): Likewise.
2723 * config/i386/linux64.mh (NATDEPFILES): Likewise.
2724 * config/ia64/linux.mh (NATDEPFILES): Likewise.
2725 * config/m32r/linux.mh (NATDEPFILES): Likewise.
2726 * config/m68k/linux.mh (NATDEPFILES): Likewise.
2727 * config/mips/linux.mh (NATDEPFILES): Likewise.
2728 * config/pa/linux.mh (NATDEPFILES): Likewise..
2729 * config/powerpc/linux.mh (NATDEPFILES): Likewise..
2730 * config/powerpc/ppc64-linux.mh (NATDEPFILES): Likewise.
2731 * config/powerpc/spu-linux.mh (NATDEPFILES): Likewise.
2732 * config/sparc/linux.mh (NATDEPFILES): Likewise.
2733 * config/sparc/linux64.mh (NATDEPFILES): Likewise.
2734 * config/tilegx/linux.mh (NATDEPFILES): Likewise.
2735 * config/xtensa/linux.mh (NATDEPFILES): Likewise.
2736 * configure.ac (AC_CACHE_CHECK): Add void * to the list of
2737 ptrace's 4th argument's types.
2738 Check the type of PTRACE_TYPE_ARG4.
2739 * configure: Regenerate.
2740 * linux-nat.c: Include nat/linux-nat.h and nat/linux-waitpid.h.
2741 (SYSCALL_SIGTRAP): Moved to nat/linux-nat.h.
2742 (linux_supports_tracefork_flag): Remove.
2743 (linux_supports_tracesysgood_flag): Likewise.
2744 (linux_supports_tracevforkdone_flag): Likewise.
2745 (current_ptrace_options): Moved to
2746 common/linux-ptrace.c.
2747 (linux_tracefork_child): Remove.
2748 (my_waitpid): Remove.
2749 (linux_test_for_tracefork): Renamed to
2750 linux_check_ptrace_features and moved to common/linux-ptrace.c.
2751 (linux_test_for_tracesysgood): Remove.
2752 (linux_supports_tracesysgood): Remove.
2753 (linux_supports_tracefork): Remove.
2754 (linux_supports_tracevforkdone): Remove.
2755 (linux_enable_tracesysgood): Remove.
2756 (linux_enable_event_reporting): Remove.
2757 (linux_init_ptrace): New function.
2758 (linux_child_post_attach): Call linux_init_ptrace.
2759 (linux_child_post_startup_inferior): Call linux_init_ptrace.
2760 (linux_child_follow_fork): Call linux_supports_tracefork
2761 and linux_supports_tracevforkdone.
2762 (linux_child_insert_fork_catchpoint): Call
2763 linux_supports_tracefork.
2764 (linux_child_insert_vfork_catchpoint): Likewise.
2765 (linux_child_set_syscall_catchpoint): Call
2766 linux_supports_tracesysgood.
2767 (lin_lwp_attach_lwp): Call linux_supports_tracefork.
2768 * nat/linux-nat.h: New file.
2769 * nat/linux-waitpid.c: New file.
2770 * nat/linux-waitpid.h: New file.
2771
2772 2013-08-22 Samuel Bronson <naesten@gmail.com>
2773
2774 ARM Linux support for `catch syscall'.
2775 * syscalls/arm-linux.py: New file.
2776 * syscalls/arm-linux.xml: Likewise.
2777 * arm-linux-tdep.c (arm_linux_get_syscall_number): New function.
2778 (arm_linux_init_abi): Register the new function and syscall xml file.
2779 * data-directory/Makefile.in: Install the new syscall xml file.
2780 * NEWS: Brag about this.
2781
2782 2013-08-22 Pedro Alves <palves@redhat.com>
2783
2784 PR gdb/15871
2785 * corefile.c (target_xfer_memory_error): New function.
2786 (memory_error): Defer EIO to target_memory_error.
2787 (read_memory): Use target_xfer_partial, and handle finer-grained
2788 target xfer errors.
2789 * target.c (target_xfer_error_to_string): New function.
2790 (memory_xfer_partial_1): If memory is known to be
2791 unavailable, return TARGET_XFER_E_UNAVAILABLE instead of -1.
2792 (target_xfer_partial): Make extern.
2793 * target.h (enum target_xfer_error): New enum.
2794 (target_xfer_error_to_string): Declare function.
2795 (target_xfer_partial): Declare function.
2796 (struct target_ops) <xfer_partial>: Adjust describing comment.
2797
2798 2013-08-22 Alan Modra <amodra@gmail.com>
2799
2800 * configure.host: Support powerpc64le-linux and powerpcle-linux hosts.
2801 * configure.tgt: Likewise as targets.
2802
2803 2013-08-20 Doug Evans <dje@google.com>
2804
2805 * buildsym.c (subfile_stack): Move here from buildsym.h.
2806 (pending_macros): Ditto.
2807 (get_macro_table): New function.
2808 (buildsym_init): Initialize subfile_stack.
2809 * coffread.c (type_vector,type_vector_length): Moved here from
2810 buildsym.h.
2811 (INITIAL_TYPE_VECTOR_LENGTH): Ditto.
2812 (coff_symtab_read): Use it.
2813 * dbxread.c (read_ofile_symtab): Delete init of subfile_stack.
2814 * dwarf2read.c (macro_start_file): Replace uses of pending_macros
2815 with call to get_macro_table.
2816 * stabsread.c (type_vector,type_vector_length): Moved here from
2817 buildsym.h.
2818 (INITIAL_TYPE_VECTOR_LENGTH): Ditto.
2819 * buildsym.h (get_macro_table): Declare.
2820
2821 2013-08-20 Tom Tromey <tromey@redhat.com>
2822
2823 * dbxread.c (record_minimal_symbol): Make 'name' argument const.
2824 Update.
2825 (read_dbx_dynamic_symtab): Make 'name' const. Remove casts.
2826
2827 2013-08-20 Doug Evans <dje@google.com>
2828
2829 * blockframe.c: Remove #include "psymtab.h".
2830 * cp-support.c: Ditto.
2831 * source.c: Ditto.
2832 * stack.c: Ditto.
2833
2834 2013-08-20 Tom Tromey <tromey@redhat.com>
2835
2836 PR python/15816:
2837 * exceptions.h (return_mask): Now an enum.
2838 (RETURN_MASK_QUIT, RETURN_MASK_ERROR, RETURN_MASK_ALL): Now
2839 enum constants.
2840
2841 2013-08-20 Tom Tromey <tromey@redhat.com>
2842
2843 * cp-namespace.c (cp_lookup_symbol_imports_or_template): Use
2844 get_objfile_arch.
2845 * elfread.c (elf_rel_plt_read, elf_gnu_ifunc_record_cache)
2846 (elf_gnu_ifunc_resolve_by_got): Use get_objfile_arch.
2847 * jit.c (jit_object_close_impl): Update.
2848 * jv-lang.c (get_dynamics_objfile): Update.
2849 * linespec.c (add_minsym): Use get_dynamics_objfile.
2850 * objfiles.c (get_objfile_bfd_data): Initialize 'gdbarch' field.
2851 (allocate_objfile): Don't initialize 'gdbarch' field.
2852 (get_objfile_arch): Update.
2853 * objfiles.h (struct objfile_per_bfd_storage) <gdbarch>: New field,
2854 moved from...
2855 (struct objfile) <gdbarch>: ... here. Remove.
2856 * stap-probe.c (stap_can_evaluate_probe_arguments): Use
2857 get_objfile_arch.
2858 * symfile.c (init_entry_point_info): Use get_objfile_arch.
2859
2860 2013-08-20 Alan Modra <amodra@gmail.com>
2861
2862 * doublest.c (convert_floatformat_to_doublest): Use fmt->split_half
2863 for IBM long double nan and inf.
2864 (floatformat_is_negative, floatformat_classify,
2865 floatformat_mantissa): Similarly.
2866 (floatformat_ieee_single, floatformat_ieee_double,
2867 floatformat_ieee_quad, floatformat_arm_ext,
2868 floatformat_ia64_spill): Delete unused vars.
2869 (_initialize_doublest): Delete unused function.
2870 * gdbtypes.c (floatformats_ibm_long_double): Use new big- and
2871 little-endian variants of floatformat_ibm_long_double.
2872
2873 2013-08-19 Luis Machado <lgustavo@codesourcery.com>
2874
2875 * Makefile.in (SFILES): Remove common/target-common.c and
2876 add target/waitstatus.c.
2877 (HFILES_NO_SRCDIR): Remove common/target-common.h and add
2878 target/resume.h, target/wait.h and target/waitstatus.h.
2879 (COMMON_OBS): Remove target-common.o and add
2880 waitstatus.o.
2881 (target-common.o): Remove.
2882 (waitstatus.o): New target object file.
2883 * common/target-common.c: Move contents to
2884 target/waitstatus.c and remove.
2885 * common/target-common.h: Move contents to other files and
2886 remove.
2887 (enum resume_kind: Move to target/resume.h.
2888 (TARGET_WNOHANG): Move to target/wait.h.
2889 (enum target_waitkind): Move to target/waitstatus.h.
2890 (struct target_waitstatus): Likewise.
2891 * target.h: Do not include target-common.h and
2892 include target/resume.h, target/wait.h and
2893 target/waitstatus.h.
2894 * target/resume.h: New file.
2895 * target/wait.h: New file.
2896 * target/waitstatus.h: New file.
2897 * target/waitstatus.c: New file.
2898
2899 2013-08-19 Pedro Alves <palves@redhat.com>
2900
2901 * linux-nat.c (linux_test_for_tracefork)
2902 (linux_test_for_tracesysgood, linux_child_follow_fork)
2903 (lin_lwp_attach_lwp, linux_nat_resume): Don't block child signals.
2904 (linux_nat_wait_1): Extend comment.
2905 (linux_async_pipe): Add comment.
2906
2907 2013-08-15 Kevin Buettner <kevinb@redhat.com>
2908
2909 * rl78-tdep.c (RL78_RAW_PC_REGNUM): New enum.
2910 (RL78_PC_REGNUM): Move to list of pseudo-register enums.
2911 (rl78_register_type, rl78_register_name, rl78_register_reggroup_p):
2912 Update to account for fact that PC is now a pseudo-register.
2913 (rl78_pseudo_register_write, rl78_pseudo_register_read): Add
2914 cases for RL78_PC_REGNUM.
2915
2916 2013-08-15 Muhammad Bilal <mbilal@codesourcery.com>
2917
2918 PR cli/15841
2919 * top.c (quit_force): Skip writing history file
2920 if input is not from terminal.
2921
2922 2013-08-14 Tom Tromey <tromey@redhat.com>
2923
2924 * remote.c (struct remote_state) <echo_nextthread, nextthread,
2925 resultthreadlist>: New fields.
2926 (OPAQUETHREADBYTES, threadref, MAXTHREADLISTRESULTS): Move earlier.
2927 (remote_get_threadlist, remote_threadlist_iterator): Use
2928 new fields. Remove static variables.
2929
2930 2013-08-14 Tom Tromey <tromey@redhat.com>
2931
2932 * remote.c (struct remote_state) <remote_stopped_by_watchpoint_p,
2933 remote_watch_data_address>: New fields.
2934 (remote_stopped_by_watchpoint_p, remote_watch_data_address): Remove.
2935 (process_stop_reply, remote_wait_as)
2936 (remote_check_watch_resources, remote_stopped_data_address): Update.
2937
2938 2013-08-14 Tom Tromey <tromey@redhat.com>
2939
2940 * remote.c (struct remote_state) <async_client_callback,
2941 async_client_context>: New fields.
2942 (async_client_callback, async_client_context): Remove.
2943 (remote_async_serial_handler, remote_async): Update.
2944
2945 2013-08-14 Tom Tromey <tromey@redhat.com>
2946
2947 * remote.c (sizeof_pkt): Remove.
2948 (remote_trace_find): Use rs->buf_size, not sizeof_pkt.
2949
2950 2013-08-14 Tom Tromey <tromey@redhat.com>
2951
2952 * remote.c (struct remote_state) <use_threadinfo_query,
2953 use_threadextra_query>: New fields.
2954 (remote_threads_info, remote_threads_extra_info)
2955 (remote_open_1): Update.
2956
2957 2013-08-14 Tom Tromey <tromey@redhat.com>
2958
2959 * remote.c (struct remote_state) <finished_object,
2960 finished_annex, finished_offset>: New fields.
2961 (remote_read_qxfer): Use remote_state fields; remove static
2962 variables.
2963
2964 2013-08-14 Tom Tromey <tromey@redhat.com>
2965
2966 * remote.c (struct remote_state) <last_sent_step>:
2967 New field.
2968 (last_sent_step): Remove.
2969 (remote_resume, remote_wait_as): Update.
2970
2971 2013-08-14 Tom Tromey <tromey@redhat.com>
2972
2973 * remote.c (struct remote_state) <last_sent_signal>:
2974 New field.
2975 (last_sent_signal): Remove.
2976 (new_remote_state, remote_resume, remote_wait_as): Update.
2977
2978 2013-08-14 Tom Tromey <tromey@redhat.com>
2979
2980 * remote.c (struct remote_state) <last_program_signals_packet>:
2981 New field.
2982 (last_program_signals_packet): Remove.
2983 (remote_program_signals, remote_open_1): Update.
2984
2985 2013-08-14 Tom Tromey <tromey@redhat.com>
2986
2987 * remote.c (struct remote_state) <last_pass_packet>:
2988 New field.
2989 (last_pass_packet): Remove.
2990 (remote_pass_signals, remote_open_1): Update.
2991
2992 2013-08-14 Tom Tromey <tromey@redhat.com>
2993
2994 * remote.c (struct remote_state) <remote_traceframe_number>:
2995 New field.
2996 (remote_traceframe_number): Remove.
2997 (new_remote_state, remote_open_1, set_remote_traceframe)
2998 (remote_trace_find): Update.
2999
3000 2013-08-14 Tom Tromey <tromey@redhat.com>
3001
3002 * remote.c (struct remote_state) <general_thread, continue_thread>:
3003 New fields.
3004 (general_thread, continue_thread): Remove.
3005 (record_currthread, set_thread, set_general_process)
3006 (remote_open_1, extended_remote_attach_1, remote_wait_as)
3007 (extended_remote_mourn_1): Update.
3008
3009 2013-08-14 Tom Tromey <tromey@redhat.com>
3010
3011 * remote.c (struct remote_state) <remote_desc>: New field.
3012 (remote_desc): Remove.
3013 (remote_threads_info, remote_threads_extra_info, remote_close)
3014 (send_interrupt_sequence, remote_start_remote, remote_open_1)
3015 (readchar, remote_xfer_partial, remote_rcmd, packet_command)
3016 (remote_hostio_send_command, remote_file_put, remote_file_get)
3017 (remote_file_delete, remote_can_async_p, remote_is_async_p)
3018 (remote_async, remote_new_objfile, set_range_stepping): Update.
3019
3020 2013-08-14 Tom Tromey <tromey@redhat.com>
3021
3022 * remote.c (remote_state): Now a pointer.
3023 (get_remote_state_raw): Update.
3024 (new_remote_state): New function.
3025 (_initialize_remote): Use new_remote_state.
3026
3027 2013-08-14 Tom Tromey <tromey@redhat.com>
3028
3029 * remote.c (remote_protocol_features): Now const.
3030
3031 2013-08-14 Tom Tromey <tromey@redhat.com>
3032
3033 * remote.c (crc32_table, crc32): Remove.
3034 (remote_verify_memory): Use xcrc32.
3035
3036 2013-08-13 Sergio Durigan Junior <sergiodj@redhat.com>
3037
3038 * value.h (create_internalvar_type_lazy): Adjust prototype
3039 declaration.
3040
3041 2013-08-13 Andrew Burgess <aburgess@broadcom.com>
3042
3043 * common/format.c (parse_format_string): Don't allow '#' flag for
3044 pointer arguments in format string.
3045
3046 2013-08-13 Pierre Muller <muller@sourceware.org>
3047
3048 * utils.c (init_page_info): Only call tgetnum function
3049 if rl_get_screen_size did not return useful values.
3050
3051 2013-08-12 Ali Anwar <ali_anwar@codesourcery.com>
3052
3053 PR breakpoints/15117
3054 * linespec.c (linespec_parse_basic): Check for convenience
3055 variable or history value while parsing.
3056
3057 2013-08-12 Sergio Durigan Junior <sergiodj@redhat.com>
3058
3059 Revert implementation of gdbarch_gdb_signal_{to,from}_target for
3060 AVR.
3061 * avr-tdep.c: Remove include of "linux-tdep.h". Remove enum with
3062 different signals between the generic Linux kernel implementation
3063 and AVR's.
3064 (avr_linux_gdb_signal_from_target): Delete.
3065 (avr_linux_gdb_signal_to_target): Delete.
3066 (avr_gdbarch_init): Don't set gdbarch_gdb_signal_{to,from}_target.
3067
3068 2013-08-09 Doug Evans <dje@google.com>
3069
3070 * dwarf2read.c (create_addrmap_from_index): Ignore bad address table
3071 entries.
3072
3073 2013-08-09 Sergio Durigan Junior <sergiodj@redhat.com>
3074
3075 * linux-tdep.c: Define enum with generic signal numbers.
3076 (linux_gdb_signal_from_target): New function.
3077 (linux_gdb_signal_to_target): Likewise.
3078 (linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
3079 methods to the functions above.
3080 * linux-tdep.h (linux_gdb_signal_from_target): New prototype.
3081 (linux_gdb_signal_to_target): Likewise.
3082 * alpha-linux-tdep.c: Define new enum with signals different
3083 from generic Linux kernel.
3084 (alpha_linux_gdb_signal_from_target): New function.
3085 (alpha_linux_gdb_signal_to_target): Likewise.
3086 (alpha_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
3087 with the functions mentioned above.
3088 * avr-tdep.c: Define enum with differences between Linux kernel
3089 and AVR signals.
3090 (avr_linux_gdb_signal_from_target): New function.
3091 (avr_linux_gdb_signal_to_target): Likewise.
3092 (avr_gdbarch_init): Set gdbarch_gdb_signal_{to,from}_target to
3093 the functions mentioned above.
3094 * sparc-linux-tdep.c: Define enum with differences between SPARC
3095 and generic Linux kernel signal numbers.
3096 (sparc32_linux_gdb_signal_from_target): New function.
3097 (sparc32_linux_gdb_signal_to_target): Likewise.
3098 (sparc32_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
3099 to the functions defined above.
3100 * xtensa-linux-tdep.c: Define enum with differences between
3101 Xtensa and Linux kernel generic signals.
3102 (xtensa_linux_gdb_signal_from_target): New function.
3103 (xtensa_linux_gdb_signal_to_target): Likewise.
3104 (xtensa_linux_init_abi): Set gdbarch_gdb_signal_to_target
3105 to the functions defined above.
3106 * mips-linux-tdep.c: Define enum with differences between
3107 signals in MIPS and Linux kernel generic ones.
3108 (mips_gdb_signal_to_target): New function.
3109 (mips_gdb_signal_from_target): Redefine to use new enum, handle
3110 only different signals from the Linux kernel generic.
3111 (mips_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
3112 the functions defined above.
3113 * mips-linux-tdep.h (enum mips_signals): Remove.
3114
3115 2013-08-09 Pedro Alves <palves@redhat.com>
3116
3117 * avr-tdep.c (XMALLOC): Delete macro.
3118 * cli/cli-dump.c (XMALLOC): Delete macro.
3119
3120 2013-08-09 Pedro Alves <palves@redhat.com>
3121
3122 * cli/cli-dump.c: Don't include cli/cli-dump.h.
3123 (scan_expression_with_cleanup, scan_filename_with_cleanup)
3124 (fopen_with_cleanup, add_dump_command): Make static.
3125 * cli/cli-dump.h: Delete file.
3126 * Makefile.in (HFILES_NO_SRCDIR): Remove reference to
3127 cli/cli-dump.h.
3128
3129 2013-08-09 Pedro Alves <palves@redhat.com>
3130
3131 * tracepoint.c (tfile_start): Show tilde-expanded filename in
3132 error message.
3133
3134 2013-08-09 Pedro Alves <palves@redhat.com>
3135
3136 * breakpoint.c (save_breakpoints): Show tilde-expanded filename in
3137 error message.
3138
3139 2013-08-09 Pedro Alves <palves@redhat.com>
3140
3141 * gcore.c (create_gcore_bfd): Don't use tilde_expand here.
3142 (gcore_command): Use tilde_expand here, and when showing the
3143 filename to the user, show the expanded version.
3144
3145 2013-08-09 Yao Qi <yao@codesourcery.com>
3146
3147 * stack.c (read_frame_arg): Set 'entryval_error' to NULL if
3148 'entryval' is set.
3149
3150 2013-08-08 Azat Khuzhin <a3at.mail@gmail.com> (tiny change)
3151
3152 * gcore.c (create_gcore_bfd): Use tilde_expand.
3153
3154 2013-08-08 Yao Qi <yao@codesourcery.com>
3155
3156 * frame.h (read_frame_local): Declare.
3157 * mi/mi-cmd-stack.c (list_args_or_locals): Call
3158 read_frame_local.
3159 * stack.c (read_frame_local): New.
3160
3161 2013-08-08 Yao Qi <yao@codesourcery.com>
3162
3163 * mi/mi-cmd-stack.c: Update comments to function
3164 list_args_or_locals.
3165
3166 2013-08-07 Tom Tromey <tromey@redhat.com>
3167
3168 PR symtab/15028:
3169 * dwarf2read.c (struct process_psymtab_comp_unit_data): New.
3170 (process_psymtab_comp_unit_reader): Use it.
3171 (process_psymtab_comp_unit): Update. Add "pretend_language"
3172 argument.
3173 (dwarf2_build_psymtabs_hard): Update.
3174 (scan_partial_symbols): Pass CU's language to
3175 process_psymtab_comp_unit.
3176
3177 2013-08-07 Tom Tromey <tromey@redhat.com>
3178
3179 * dwarf2read.c (dw2_get_primary_filename_reader): Remove.
3180 (dwarf2_gdb_index_functions): Update.
3181 * psymtab.c (find_symbol_file_from_partial): Remove.
3182 (psym_functions): Update.
3183 * symfile.h (struct quick_symbol_functions) <find_symbol_file>:
3184 Remove.
3185
3186 2013-08-07 Tom Tromey <tromey@redhat.com>
3187
3188 * symfile.c (set_initial_language): Look up "main" symbol
3189 and use its language.
3190 * symtab.c (find_main_filename): Remove.
3191 * symtab.h (find_main_filename): Remove.
3192
3193 2013-08-07 Tom Tromey <tromey@redhat.com>
3194
3195 * dwarf2read.c (recursively_compute_inclusions): Add
3196 "immediate_parent" argument. Set symtab's "user" field
3197 if not set.
3198 (compute_symtab_includes): Update.
3199
3200 2013-08-07 Tom Tromey <tromey@redhat.com>
3201
3202 * linespec.c (convert_linespec_to_sals): Use maybe_add_address
3203 when adding label symbols.
3204
3205 2013-08-07 Raunaq Bathija <raunaq12@in.ibm.com>
3206 Ulrich Weigand <uweigand@de.ibm.com>
3207
3208 * configure.tgt (powerpc64-*-aix*): Match powerpc64 running aix.
3209 * configure.host (powerpc64-*-aix*): Likewise.
3210
3211 2013-08-07 Raunaq Bathija <raunaq12@in.ibm.com>
3212 Ulrich Weigand <uweigand@de.ibm.com>
3213
3214 * gdb_ptrace.h: Use ptrace64 instead of ptrace if HAVE_PTRACE64
3215 is defined.
3216 * rs6000-nat.c: Check for __ld_info64_ if compiling 64 BIT gdb.
3217 (rs6000_ptrace32): Call ptrace64 instead of ptrace if present.
3218 (rs6000_ptrace64): Call ptace64 instead of ptracex if present.
3219 * configure.ac: Check for ptrace64.
3220 * configure, config.in: Regenerate.
3221
3222 2013-08-07 Raunaq Bathija <raunaq12@in.ibm.com>
3223 Ulrich Weigand <uweigand@de.ibm.com>
3224
3225 * aixthread.c: Call ptrace64 instead of ptracex if defined.
3226 Call ptrace64 instead of ptrace if defined.
3227 Add macro addr_ptr to take care of ptrace address argument.
3228 (pdc_read_regs): Likewise.
3229 (pdc_write_regs): Likewise.
3230 (aix_thread_resume): Likewise.
3231 (fetch_regs_kernel_thread): Likewise.
3232 (store_regs_kernel_thread): Likewise.
3233
3234 2013-08-07 Anton Blanchard <anton@samba.org>
3235
3236 * MAINTAINERS: Add myself to Write After Approval.
3237
3238 2013-08-05 Tom Tromey <tromey@redhat.com>
3239
3240 * aix-thread.c (_initialize_aix_thread): Use
3241 complete_target_initialization.
3242 * bsd-uthread.c (_initialize_bsd_uthread): Use
3243 complete_target_initialization.
3244 * dec-thread.c (_initialize_dec_thread): Use
3245 complete_target_initialization.
3246 * ravenscar-thread.c (_initialize_ravenscar): Use
3247 complete_target_initialization.
3248 * sol-thread.c (_initialize_sol_thread): Use
3249 complete_target_initialization.
3250 * spu-multiarch.c (_initialize_spu_multiarch): Use
3251 complete_target_initialization.
3252
3253 2013-08-05 Tom Tromey <tromey@redhat.com>
3254
3255 * ada-exp.y (write_var_or_type): Use bound_minimal_symbol.
3256 * ada-lang.c (ada_lookup_simple_minsym): Return
3257 bound_minimal_symbol.
3258 * ada-lang.h (ada_lookup_simple_minsym): Update.
3259 * c-exp.y (variable): Use lookup_bound_minimal_symbol.
3260 * f-exp.y (variable): Use lookup_bound_minimal_symbol.
3261 * go-exp.y (variable): Use lookup_bound_minimal_symbol.
3262 * jv-exp.y (push_expression_name): Use lookup_bound_minimal_symbol.
3263 * m2-exp.y (variable): Use lookup_bound_minimal_symbol.
3264 * minsyms.c (msymbol_objfile): Remove.
3265 (lookup_minimal_symbol_internal): New function, from
3266 lookup_minimal_symbol.
3267 (lookup_minimal_symbol): Rewrite using
3268 lookup_minimal_symbol_internal.
3269 (lookup_bound_minimal_symbol): New function.
3270 * minsyms.h (msymbol_objfile): Remove.
3271 (lookup_bound_minimal_symbol): Declare.
3272 * p-exp.y (variable): Use lookup_bound_minimal_symbol.
3273 * parse.c (write_exp_msymbol): Change parameter to a
3274 bound_minimal_symbol.
3275 (write_dollar_variable): Use lookup_bound_minimal_symbol.
3276 * parser-defs.h (write_exp_msymbol): Update.
3277 * printcmd.c (address_info): Use lookup_bound_minimal_symbol.
3278 * symfile.c (simple_read_overlay_table): Use
3279 lookup_bound_minimal_symbol.
3280 * symtab.c (skip_prologue_sal): Don't use msymbol_objfile.
3281 (search_symbols): Likewise.
3282 (print_msymbol_info): Take a bound_minimal_symbol argument.
3283 (symtab_symbol_info, rbreak_command): Update.
3284 * symtab.h (struct symbol_search) <msymbol>: Change type
3285 to bound_minimal_symbol.
3286 * valops.c (find_function_in_inferior): Use
3287 lookup_bound_minimal_symbol.
3288 * value.c (value_fn_field): Use lookup_bound_minimal_symbol.
3289
3290 2013-08-05 Jan Kratochvil <jan.kratochvil@redhat.com>
3291
3292 Code cleanup.
3293 * remote.c (cleanup_sigint_signal_handler): Rename the declaration
3294 to ...
3295 (async_cleanup_sigint_signal_handler): ... this.
3296 (initialize_sigint_signal_handler): Remove declaration.
3297 (handle_remote_sigint): Rename the declaration to ...
3298 (async_handle_remote_sigint): ... this.
3299 (handle_remote_sigint_twice): Rename the declaration to ...
3300 (async_handle_remote_sigint_twice): ... this.
3301 (async_remote_interrupt, async_remote_interrupt_twice)
3302 (remote_interrupt): Remove the declarations.
3303 (remote_interrupt_twice): Rename the declaration ...
3304 (sync_remote_interrupt_twice): ... this.
3305 (sigint_remote_twice_token): Rename the variable to ...
3306 (async_sigint_remote_twice_token): ... this.
3307 (sigint_remote_token): Rename the variable to ...
3308 (async_sigint_remote_token): ... this.
3309 (initialize_sigint_signal_handler): Rename the function to ...
3310 (async_initialize_sigint_signal_handler): ... this. Update the name
3311 inside.
3312 (handle_remote_sigint): Rename the function to ...
3313 (async_handle_remote_sigint): ... this. Update the names inside.
3314 (handle_remote_sigint_twice): Rename the function to ...
3315 (async_handle_remote_sigint_twice): ... this. Update the names inside.
3316 (cleanup_sigint_signal_handler): Rename the function to ...
3317 (async_cleanup_sigint_signal_handler): ... this.
3318 (remote_interrupt): Rename the function to ...
3319 (sync_remote_interrupt): this. Update the names inside.
3320 (remote_interrupt_twice): Rename the function to ...
3321 (sync_remote_interrupt_twice): this. Update the names inside.
3322 (remote_terminal_inferior, remote_terminal_ours, remote_wait_as)
3323 (_initialize_remote): Update the names inside.
3324
3325 2013-08-02 Tom Tromey <tromey@redhat.com>
3326
3327 PR symtab/15719:
3328 * breakpoint.c (update_watchpoint, watchpoint_check)
3329 (watch_command_1): Update.
3330 * eval.c (fetch_subexp_value): Add "preserve_errors"
3331 parameter.
3332 * ppc-linux-nat.c (check_condition): Update.
3333 * value.h (fetch_subexp_value): Update.
3334
3335 2013-08-02 Andrew Burgess <aburgess@broadcom.com>
3336
3337 * mi/mi-interp.c (mi_interpreter_resume): Remove call to
3338 add_file_handler.
3339
3340 2013-08-01 Doug Evans <dje@google.com>
3341
3342 PR symtab/15691
3343 * dwarf2read.c (struct dwarf2_per_cu_data): New member tu_read.
3344 (fill_in_sig_entry_from_dwo_entry): Reorganize asserts.
3345 Add assert of sig_entry->dwo_unit == NULL.
3346 (lookup_dwo_signatured_type): Don't assign TU to a DWO if the TU
3347 had already been read.
3348 (read_signatured_type): Set per_cu.tu_read.
3349
3350 PR symtab/15695
3351 * valops.c (value_struct_elt): Add missing call to check_typedef.
3352 (value_find_oload_method_list): Ditto.
3353
3354 * symtab.c (do_free_search_symbols_cleanup): Change arg to,
3355 effectively, struct symbol_search **.
3356 (make_cleanup_free_search_symbols): Change arg to struct
3357 symbol_search **. All callers updated.
3358 (compare_search_syms): Compare symtab file name and block as well.
3359 (search_symbols_equal): New function.
3360 (sort_search_symbols_remove_dups): Renamed from sort_search_symbols.
3361 New args new_head, new_tail. Result is now void. Remove dups after
3362 sorting the symbols.
3363 (search_symbols): Sort all found symbols once, after all have been
3364 found, and remove duplicates. Simplify cleanup tracking of result.
3365 * symtab.h (make_cleanup_free_search_symbols): Update prototype.
3366
3367 Further workarounds for binutils/15021.
3368 * dwarf2read.c (recursively_compute_inclusions): Change type of result
3369 parameter to VEC (symtab_ptr) **. New parameter all_type_symtabs.
3370 Watch for duplicate symtabs coming from type units.
3371 (compute_symtab_includes): Update call to
3372 recursively_compute_inclusions. Build vector of included symtabs
3373 instead of per_cus.
3374 * symtab.h (symtab_ptr): New typedef.
3375 (DEF_VEC_P (symtab_ptr)): New VEC type.
3376 * linespec.c (symtab_p): Delete. All uses updated to use symtab_ptr
3377 instead.
3378
3379 2013-08-01 Andrew Burgess <aburgess@broadcom.com>
3380
3381 * cli/cli-script.c (script_from_file): Remove use of
3382 error_pre_print.
3383 * main.c (captured_main): Remove use of error_pre_print and
3384 quit_pre_print.
3385 * utils.c (error_pre_print, quit_pre_print): Remove.
3386 * utils.h (error_pre_print, quit_pre_print): Likewise.
3387
3388 2013-08-01 Yao Qi <yao@codesourcery.com>
3389
3390 * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Parse argv
3391 with mi_getopt.
3392 (mi_cmd_stack_list_variables): Likewise.
3393
3394 2013-07-31 Andrew Burgess <aburgess@broadcom.com>
3395
3396 * exceptions.c (deprecated_throw_reason): Remove.
3397 * exceptions.h (deprecated_throw_reason): Remove.
3398
3399 2013-07-31 Andrew Burgess <aburgess@broadcom.com>
3400
3401 * remote-mips.c (mips_error): Replace use of
3402 deprecated_throw_reason with throw_verror. Use the error message
3403 passed to mips_error as the error message for throw_verror.
3404
3405 2013-07-31 Andrew Burgess <aburgess@broadcom.com>
3406
3407 * monitor.c (monitor_interrupt_query): Replace use of
3408 deprecated_throw_reason with quit.
3409 * nto-procfs.c (interrupt_query): Likewise.
3410 * remote-fileio.c (remote_fileio_sig_exit): Likewise.
3411 * remote-mips.c (mips_kill): Likewise.
3412 * remote.c (interrupt_query): Likewise.
3413
3414 2013-07-31 Andrew Burgess <aburgess@broadcom.com>
3415
3416 * utils.c (internal_verror): Replace use of deprecated_throw_reason
3417 with call to fatal.
3418
3419 2013-07-31 Pedro Alves <pedro@codesourcery.com>
3420 Yao Qi <yao@codesourcery.com>
3421
3422 * tracepoint.c (trace_dump_command): Select the current frame.
3423
3424 2013-07-30 Doug Evans <dje@google.com>
3425
3426 * dwarf2read.c (process_queue): Add type signature to debug output.
3427
3428 2013-07-30 Andrew Burgess <aburgess@broadcom.com>
3429
3430 * value.c (value_fetch_lazy): Mark optimized out values as such
3431 rather than raising an error.
3432
3433 2013-07-30 Andrew Burgess <aburgess@broadcom.com>
3434
3435 * value.c (value_fetch_lazy): Ensure parent value is not lazy
3436 before checking which bits of the parent, not the child, value are
3437 valid.
3438
3439 2013-07-30 Muhammad Bilal <mbilal@codesorcery.com>
3440
3441 PR gdb/15715
3442 * top.c: Include "filenames.h".
3443 (set_history_filename): New function.
3444 (init_main): Install it as set hook of the "set history filename"
3445 command.
3446
3447 2013-07-30 Sanimir Agovic <sanimir.agovic@intel.com>
3448
3449 * dwarf2read.c (dwarf2_get_ref_die_offset): Constify struct
3450 attribute parameter.
3451 (dwarf2_const_value_data): Constify struct attribute parameter.
3452 (dwarf2_const_value): Constify struct attribute parameter.
3453 (dwarf2_const_value_attr): Constify struct attribute parameter.
3454 (lookup_die_type): Constify struct attribute parameter.
3455 (dwarf2_get_attr_constant_value): Constify struct attribute parameter.
3456 (follow_die_ref_or_sig): Constify struct attribute parameter.
3457 (follow_die_ref): Constify struct attribute parameter.
3458 (follow_die_sig): Constify struct attribute parameter.
3459 (get_DW_AT_signature_type): Constify struct attribute parameter.
3460 (get_type_unit_group): Constify struct attribute parameter.
3461 (fill_in_loclist_baton): Constify struct attribute parameter.
3462 (dwarf2_symbol_mark_computed): Constify struct attribute parameter.
3463 (type_unit_group): Constify struct attribute parameter.
3464
3465 2013-07-30 Sanimir Agovic <sanimir.agovic@intel.com>
3466
3467 * dwarf2read.c (attr_form_is_block): Make argument const.
3468 (attr_form_is_section_offset): Make argument const.
3469 (attr_form_is_constant): Make argument const.
3470 (attr_form_is_ref): Make argument const.
3471
3472 2013-07-30 Sanimir Agovic <sanimir.agovic@intel.com>
3473
3474 * dwarf2read.c (attr_is_ref): Rename to attr_form_is_ref.
3475 All uses updated.
3476 (attr_form_is_ref): Moved below attr_form_is_constant.
3477
3478 2013-07-29 Doug Evans <dje@google.com>
3479
3480 * main.c (captured_command_loop): Tweak comment.
3481
3482 * target.c (target_async_permitted_1): Fix comment.
3483
3484 * symtab.c (iterate_over_some_symtabs): Add comment.
3485
3486 * symtab.c (iterate_over_some_symtabs): Fix indentation.
3487
3488 2013-07-27 Yao Qi <yao@codesourcery.com>
3489
3490 * NEWS: Mention that GDBserver now supports hardware
3491 watchpoints on the MIPS GNU/Linux target.
3492
3493 2013-07-27 Yao Qi <yao@codesourcery.com>
3494
3495 * Makefile.in (HFILES_NO_SRCDIR): Add
3496 common/mips-linux-watch.h.
3497 (mips-linux-watch.o): New rule.
3498 * common/mips-linux-watch.c: New.
3499 * common/mips-linux-watch.h: New.
3500 * config/mips/linux.mh (NATDEPFILES): Add mips-linux-watch.o
3501 * mips-linux-nat.c: Include mips-linux-watch.h.
3502 (W_BIT, R_BIT, I_BIT, W_MASK, R_MASK, I_MASK, IRW_MASK): Move
3503 to common/mips-linux-watch.h.
3504 (MAX_DEBUG_REGISTER): Likewise.
3505 (enum pt_watch_style): Likewise.
3506 (struct mips32_watch_regs): Likewise.
3507 (struct mips64_watch_regs): Likewise.
3508 (struct pt_watch_regs): Likewise.
3509 (struct mips_watchpoint): Likewise.
3510 (mips_linux_watch_get_irw_mask): Move to
3511 common/mips-linux-watch.c.
3512 (get_reg_mask, mips_linux_watch_get_num_valid): Likewise.
3513 (mips_linux_watch_get_watchlo): Likewise.
3514 (mips_linux_watch_set_watchlo): Likewise.
3515 (mips_linux_watch_get_watchhi): Likewise.
3516 (mips_linux_watch_set_watchhi): Likewise.
3517 (mips_linux_read_watch_registers): Likewise.
3518 (mips_linux_watch_type_to_irw): Likewise.
3519 (mips_linux_stopped_data_address, fill_mask): Likewise.
3520 (mips_linux_watch_try_one_watch): Likewise.
3521 (mips_linux_watch_populate_regs): Likewise.
3522
3523 2013-07-27 Yao Qi <yao@codesourcery.com>
3524
3525 * mips-linux-nat.c (get_irw_mask): Rename to ...
3526 (mips_linux_watch_get_irw_mask): ... this. Rename parameter
3527 'set' to 'n'. Update function comment. All callers changed.
3528 (get_reg_mask): Rename parameter 'set' to 'n'. Update
3529 function comment. All callers changed.
3530 (get_num_valid): Rename to ...
3531 (mips_linux_watch_get_num_valid): ... this. Rename parameter
3532 'set' to 'n'. Update function comment. All callers changed.
3533 (get_watchlo): Rename to ...
3534 (mips_linux_watch_get_watchlo): ... this. Rename parameter
3535 'set' to 'n'. Update function comment. All callers changed.
3536 (set_watchlo): Rename to ...
3537 (mips_linux_watch_set_watchlo): ... this. Rename parameter
3538 'set' to 'n'. Update function comment. All callers changed.
3539 (get_watchhi): Rename to ...
3540 (mips_linux_watch_get_watchhi): ... this. Update function
3541 comment. All callers changed.
3542 (set_watchhi): Rename to ...
3543 (mips_linux_watch_set_watchhi): ... this. Update function
3544 comment. All callers changed.
3545 (mips_linux_read_watch_registers): Update function comment.
3546 Add new parameters 'lwpid', 'watch_readback', and
3547 'watch_readback_valid'. Update.
3548 (type_to_irw): Rename to ...
3549 (mips_linux_watch_type_to_irw): ... this. Update function
3550 comment. All callers changed.
3551 (fill_mask): Update function comment.
3552 (try_one_watch): Rename to ...
3553 (mips_linux_watch_try_one_watch): ... this. Change the type
3554 of parameter 'irw' from 'unsigned' to 'uint32_t'.
3555 (populate_regs_from_watches): Rename to ...
3556 (mips_linux_watch_populate_regs): ... this. Add parameter
3557 'current_watches'. All callers changed.
3558
3559 2013-07-27 Yao Qi <yao@codesourcery.com>
3560
3561 * mips-linux-nat.c (MAX_DEBUG_REGISTER): Move it earlier in
3562 the code.
3563 (PTRACE_SET_WATCH_REGS, enum pt_watch_style): Remove.
3564 (struct mips32_watch_regs, struct mips64_watch_regs): Remove.
3565 (struct pt_watch_regs): Likewise.
3566 [!PTRACE_GET_WATCH_REGS] (PTRACE_SET_WATCH_REGS): New macro.
3567 [!PTRACE_GET_WATCH_REGS] (enum pt_watch_style): New.
3568 [!PTRACE_GET_WATCH_REGS] (struct mips32_watch_regs): New.
3569 [!PTRACE_GET_WATCH_REGS] (struct mips64_watch_regs): New.
3570 [!PTRACE_GET_WATCH_REGS] (struct pt_watch_regs): New.
3571
3572 2013-07-27 Yao Qi <yao@codesourcery.com>
3573
3574 * breakpoint.h: Include break-common.h.
3575 (enum target_hw_bp_type): Move to ...
3576 * common/break-common.h: ... here. New.
3577
3578 2013-07-26 Cyril Nikolaev <cyril@nichtverstehen.de>
3579
3580 * inflow.c (terminal_init_inferior_with_pgrp): Save inferior
3581 process group regardless of having tty on stdin.
3582
3583 2013-07-25 Doug Evans <dje@google.com>
3584
3585 * linux-fork.h (detach_fork): Delete.
3586
3587 2013-07-25 Tom Tromey <tromey@redhat.com>
3588
3589 PR remote/15256, PR remote/15266:
3590 * bfd-target.c (target_bfd_reopen): Initialize to_magic.
3591 * monitor.c (monitor_detach): Use unpush_target.
3592 * remote-m32r-sdi.c (m32r_detach): Use unpush_target.
3593 * remote-mips.c (mips_detach): Use unpush_target. Don't
3594 call mips_close.
3595 * remote-sim.c (gdbsim_detach): Use unpush_target.
3596 * target.c (pop_target): Remove.
3597 (pop_all_targets_above): Don't call target_close.
3598 (target_close): Assert that the target is unpushed.
3599 * target.h (pop_target): Don't declare.
3600 * tracepoint.c (tfile_open): Use unpush_target.
3601
3602 2013-07-25 Tom Tromey <tromey@redhat.com>
3603
3604 * linux-thread-db.c (init_thread_db_ops): Call
3605 complete_target_initialization.
3606 (_initialize_thread_db): Don't call add_target.
3607 * target.c (complete_target_initialization): New function.
3608 (add_target_with_completer): Call it.
3609 * target.h (complete_target_initialization): Declare.
3610
3611 2013-07-25 Mark Kettenis <kettenis@gnu.org>
3612
3613 * hppa-tdep.h (enum hppa_regnum): Add members for all space registers.
3614 * hppaobsd-tdep.c (HPPAOBSD_SIZEOF_GREGS): Add comment.
3615 (HPPANBSD_SIZEOF_GREGS): New define.
3616 (hppaobsd_supply_gregset): Handle additional registers.
3617 * hppabsd-nat.c (hppabsd_gregset_supplies_p): Adjust to indicate
3618 we provide more registers now.
3619 (hppabsd_supply_gregset): Supply additional registers.
3620 (hppabsd_collect_gregset): Collect additional registers.
3621
3622 2013-07-25 Mark Kettenis <kettenis@gnu.org>
3623
3624 * hppabsd-tdep.c: Include "dwarf2-frame.h".
3625 (hppabsd_dwarf2_frame_init_reg): New function.
3626 (hppabsd_init_abi): Hook in the DWARF CFI frame unwinder.
3627
3628 2013-07-25 Andrew Burgess <aburgess@broadcom.com>
3629
3630 * mi/mi-main.c (output_register): Make MI 'r' format use standard
3631 'z' format code. Remove error for optimized out values, standard
3632 code will handle these fine.
3633
3634 2013-07-25 Andrew Burgess <aburgess@broadcom.com>
3635
3636 * NEWS: Mention new 'z' formatter.
3637 * printcmd.c (print_scalar_formatted): Add new 'z' formatter.
3638 (_initialize_printcmd): Mention 'z' formatter in help text of the
3639 'x' command.
3640
3641 2013-07-24 Maciej W. Rozycki <macro@codesourcery.com>
3642
3643 * mips-tdep.c (micromips_deal_with_atomic_sequence): Correct
3644 formatting.
3645
3646 2013-07-24 Sergio Durigan Junior <sergiodj@redhat.com>
3647
3648 * breakpoint.c (create_longjmp_master_breakpoint): Check if probe
3649 interface can evaluate arguments. Fallback to the old mode if it
3650 cannot.
3651 (create_exception_master_breakpoint): Likewise.
3652 * elfread.c (elf_can_evaluate_probe_arguments): New function.
3653 (struct sym_probe_fns elf_probe_fns): Export function above to the
3654 probe interface.
3655 * probe.c (can_evaluate_probe_arguments): New function.
3656 * probe.h (struct probe_ops) <can_evaluate_probe_arguments>: New
3657 function pointer.
3658 (can_evaluate_probe_arguments): New function prototype.
3659 * solib-svr4.c (svr4_create_solib_event_breakpoints): Check if
3660 probe interface can evaluate arguments. Fallback to the old mode
3661 if it cannot.
3662 * stap-probe.c (stap_get_probe_argument_count): Check if probe
3663 interface can evaluate arguments. Warning the user if it cannot.
3664 (stap_can_evaluate_probe_arguments): New function.
3665 (struct probe_ops stap_probe_ops): Export function above to the
3666 probe interface.
3667 * symfile.h (struct sym_probe_fns) <can_evaluate_probe_arguments>:
3668 New function pointer.
3669
3670 2013-07-24 Luis Machado <lgustavo@codesourcery.com>
3671
3672 * Makefile.in (SFILES): Add common/target-common.c.
3673 Add common/target-common.h to headers.
3674 (COMMON_OBS): Add target-common.o.
3675 (target-common.o): New target.
3676 * linux-nat.h (resume_kind): Move to common/target-common.h.
3677 * target.c (target_waitstatus_to_string): Move to
3678 common/target-common.c.
3679 * target.h: Include target-common.h.
3680 (target_waitkind): Move to common/target-common.h.
3681 (target_waitstatus): Likewise.
3682 (TARGET_WNOHANG): Likewise.
3683 * common/target-common.c: New file.
3684 * common/target-common.h: New file.
3685
3686 2013-07-24 Doug Evans <dje@google.com>
3687
3688 * dwarf2read.c (lookup_dwo_cutu): Change missing DWO complaint to
3689 a warning.
3690
3691 2013-07-23 Yao Qi <yao@codesourcery.com>
3692
3693 * i386-tdep.c (i386_in_stack_tramp_p): Remove unused
3694 parameter 'gdbarch'.
3695 (i386_stack_tramp_frame_sniffer): Caller update.
3696 * i386-linux-tdep.c (i386_linux_core_read_xcr0): Remove
3697 parameter 'gdbarch' and 'target'.
3698 (i386_linux_core_read_description): Caller update.
3699 * amd64-linux-tdep.c (amd64_linux_core_read_description):
3700 Likewise.
3701 * i386-linux-tdep.h (i386_linux_core_read_xcr0): Update
3702 declaration.
3703
3704 2013-07-23 Tom Tromey <tromey@redhat.com>
3705
3706 * dwarf2read.c (init_cutu_and_read_dies): Revert patch from
3707 2013-07-22.
3708
3709 2013-07-22 Doug Evans <dje@google.com>
3710
3711 * exec.h (remove_target_sections): Delete arg abfd.
3712 * exec.c (exec_close): Update call to remove_target_sections.
3713 (remove_target_sections): Delete arg abfd.
3714 * solib.c (update_solib_list): Ditto.
3715 (reload_shared_libraries_1): Ditto.
3716 (clear_solib): Ditto, and unconditionally call remove_target_sections.
3717 * target.h (struct target_section): Rename key to owner.
3718 All uses updated.
3719
3720 2013-07-22 Tom Tromey <tromey@redhat.com>
3721
3722 * solib-som.c (som_open_symbol_file_object): Call do_cleanups.
3723
3724 2013-07-22 Tom Tromey <tromey@redhat.com>
3725
3726 * dwarf2read.c (init_cutu_and_read_dies): Remove 'free_cu_cleanup'.
3727 Simplify cleanup handling.
3728
3729 2013-07-22 Tom Tromey <tromey@redhat.com>
3730
3731 * dwarf2read.c (dwarf_decode_line_header): Call do_cleanups
3732 on all return paths.
3733
3734 2013-07-22 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
3735
3736 * ppc-linux-nat.c (PPC_DEBUG_FEATURE_DATA_BP_DAWR): New define.
3737 (ppc_linux_region_ok_for_hw_watchpoint): Add checking to use the new
3738 DAWR interface for longer ranges hardware watchpoint (up to 512 bytes).
3739
3740 2013-07-22 Phil Muldoon <pmuldoon@redhat.com>
3741
3742 * top.c (print_gdb_version): Add help, apropos description and
3743 url to online documentation.
3744
3745 2013-07-19 Hui Zhu <hui@codesourcery.com>
3746
3747 PR gdb/15692
3748 * mi/mi-cmd-break.c (mi_argv_to_format): Handle double quotes.
3749
3750 2013-07-19 Yao Qi <yao@codesourcery.com>
3751
3752 * target.c (update_current_target): Change the default action
3753 of 'to_traceframe_info' from tcomplain to return_zero.
3754 * target.h (struct target_ops) <to_traceframe_info>: Add more
3755 comments.
3756 * valops.c (read_value_memory): Call
3757 traceframe_available_memory unconditionally.
3758
3759 2013-07-18 Yao Qi <yao@codesourcery.com>
3760
3761 * coffread.c (coff_symfile_read): Iterate over minimal symbols,
3762 if the name is prefixed by "__imp_" or "_imp_", look for minimal
3763 symbol without prefix. If found, set its type to
3764 'mst_solib_trampoline'.
3765
3766 2013-07-17 Doug Evans <dje@google.com>
3767
3768 * NEWS: Mention "set print raw frame-arguments".
3769 * gdbcmd.h (setprintrawlist, showprintrawlist): Declare.
3770 * stack.c (print_raw_frame_arguments): New static global.
3771 (print_frame_arg): Set opts.raw from print_raw_frame_arguments.
3772 (_initialize_stack): New command "set/show print raw frame-arguments".
3773 * valprint.c (setprintrawlist, showprintrawlist): New globals.
3774 (set_print_raw, show_print_raw): New functions.
3775 (_initialize_valprint): New prefix command "set/show print raw".
3776 * valprint.h (value_print_options): Improve comments.
3777
3778 * cli/cli-cmds.c (init_cmd_lists): Delete unnecessary initialization
3779 of all *list variables.
3780
3781 * gdbcmd.h (togglelist): Delete.
3782 * cli/cli-cmds.c (togglelist): Delete.
3783 (init_cmd_lists): Update.
3784 * cli/cli-cmds.h (togglelist): Delete.
3785
3786 2013-07-17 Tom Tromey <tromey@redhat.com>
3787
3788 * dwarf2read.c (dwarf2_per_objfile_free): Clear
3789 dwarf2_per_objfile.
3790
3791 2013-07-16 Doug Evans <dje@google.com>
3792
3793 * nto-tdep.c (nto_relocate_section_addresses): Update,
3794 target_section.bfd deleted.
3795 * ppc64-tdep.c (ppc64_convert_from_func_ptr_addr): Ditto.
3796 * s390-tdep.c (s390_load): Ditto.
3797 * solib-aix.c (solib_aix_relocate_section_addresses): Ditto.
3798
3799 2013-07-16 Andrew Burgess <aburgess@broadcom.com>
3800
3801 * common/format.c (parse_format_string): Add checks for NULL
3802 character before calling strchr.
3803
3804 2013-07-16 Doug Evans <dje@google.com>
3805
3806 * solist.h (target_so_ops.find_and_open_solib): Clarify usage of
3807 temp_pathname argument.
3808 * nto-tdep.c (nto_find_and_open_solib): Fix setting of temp_pathname
3809 when opening the file fails.
3810
3811 * target.h (struct target_section): Delete member bfd.
3812 All users updated to use the_bfd_section->owner instead.
3813 * exec.c (add_to_section_table): Assert bfd is expected value.
3814 Remove initialization of target_section.bfd.
3815 (remove_target_sections): Update.
3816 (section_table_available_memory): Update.
3817 (section_table_xfer_memory_partial): Update.
3818 (print_section_info): Update.
3819 (exec_set_section_address): Update.
3820 * record-full.c (record_full_core_xfer_partial): Update.
3821 * solib-svr4.c (svr4_relocate_section_addresses): Update.
3822 * solib-target.c (solib_target_relocate_section_addresses): Update.
3823 * symfile.c (build_section_addr_info_from_section_table): Update.
3824 * target.c (memory_xfer_live_readonly_partial): Update.
3825 (memory_xfer_partial_1): Update.
3826
3827 2013-07-15 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
3828
3829 * ppc-linux-nat.c: Since the new PowerPC specific ptrace interface is
3830 now available for embedded (BookE) and server (BookS) processors,
3831 correct mentions of 'booke' and adjust comments accordingly in order to
3832 avoid confusion. Rename struct 'booke_debug_info' to 'hwdebug_info'.
3833 (have_ptrace_booke_interface): Rename function and variable
3834 'have_ptrace_booke_interface' to 'have_ptrace_hwdebug_interface'.
3835 Rename struct 'booke_debug_info' to 'hwdebug_info'. Update all uses.
3836 (booke_cmp_hw_point): Rename function 'booke_cmp_hw_point' to
3837 'hwdebug_point_cmp'. Update all uses.
3838 (booke_find_thread_points_by_tid): Rename function
3839 'booke_find_thread_points_by_tid' to
3840 'hwdebug_find_thread_points_by_tid'. Update all uses.
3841 (booke_insert_point): Rename function 'booke_insert_point' to
3842 'hwdebug_insert_point'. Update all uses.
3843 (booke_remove_point): Rename function 'booke_remove_point' to
3844 'hwdebug_remove_point'. Update all uses.
3845
3846 2013-07-15 Maciej W. Rozycki <macro@codesourcery.com>
3847
3848 * mips-tdep.c (mips_gdbarch_init): Replace hardcoded magic
3849 numbers with enum values.
3850
3851 2013-07-15 Ali Anwar <ali_anwar@codesourcery.com>
3852
3853 PR threads/13217
3854 * thread.c (thread_apply_all_command): Check for valid threads
3855 and thread count.
3856 (thread_array_cleanup): New struct.
3857 (set_thread_refcount): New function.
3858
3859 2013-07-11 Andrew Burgess <aburgess@broadcom.com>
3860
3861 * infcmd.c (default_print_one_register_info): Reuse function
3862 print_hex_chars.
3863
3864 2013-07-10 Tom Tromey <tromey@redhat.com>
3865
3866 * Makefile.in (GDB_WARN_CFLAGS_NO_DEFS, ADA_EXP_C): New macros.
3867 (ada-exp.o): New target.
3868
3869 2013-07-10 Sergio Durigan Junior <sergiodj@redhat.com>
3870
3871 * mt-tdep.c (mt_registers_info): Call
3872 get_no_prettyformat_print_options instead of
3873 get_raw_print_options (regression by last patch from Doug
3874 Evans).
3875
3876 2013-07-09 Pedro Alves <palves@redhat.com>
3877
3878 Checked in by Joel Brobecker <brobecker@adacore.com>.
3879 * ada-lang.c (coerce_unspec_val_to_type): Use
3880 value_optimized_out_const.
3881 * value.c (value_optimized_out_const): New function.
3882 * value.h (value_optimized_out_const): New declaration.
3883
3884 2013-07-09 Doug Evans <dje@google.com>
3885
3886 * defs.h (enum val_prettyformat): Renamed from val_prettyprint.
3887 Enum values rename as well. All uses updated.
3888 * valprint.h (value_print_options): Rename member pretty to
3889 pretty format. Rename member prettyprint_arrays to
3890 prettyformat_arrays. Rename member prettyprint_structs to
3891 prettyformat_structs. All uses updated.
3892 (get_no_prettyformat_print_options): Renamed from
3893 get_raw_print_options.
3894 * valprint.c (get_no_prettyformat_print_options): Renamed from
3895 get_raw_print_options. All callers updated.
3896 (show_prettyformat_structs): Renamed from show_prettyprint_structs.
3897 All callers updated.
3898 (show_prettyformat_arrays): Renamed from show_prettyprint_arrays.
3899 All callers updated.
3900 (_initialize_valprint): Improve help text for "set print pretty" and
3901 "set print arrays".
3902
3903 2013-07-09 Andrew Burgess <aburgess@broadcom.com>
3904
3905 * value.c (value_bits_valid): Revert previous change, and change
3906 by Pedro on 2013-07-04, due to regressions in
3907 gdb.dwarf2/implptr.exp and gdb.dwarf2/pieces.exp.
3908
3909 2013-07-08 Andrew Burgess <aburgess@broadcom.com>
3910 Pedro Alves <palves@redhat.com>
3911
3912 * value.c (value_bits_valid): If the value is not lval_computed
3913 or has no check validity handler then the answer is the
3914 optimized_out flag, otherwise defer to the handler.
3915
3916 2013-07-06 Eli Zaretskii <eliz@gnu.org>
3917
3918 * top.c (print_gdb_configuration): Explain in output of
3919 --configuration what does "relocatable" mean.
3920
3921 * main.c (print_gdb_help): Regroup options in the --help text.
3922 See http://sourceware.org/ml/gdb-patches/2013-04/msg00362.html for
3923 the relevant discussions.
3924
3925 2013-07-06 Yao Qi <yao@codesourcery.com>
3926
3927 * breakpoint.h (struct breakpoint_ops) <create_breakpoints_sal>:
3928 Remove parameter 'lsal'.
3929 * breakpoint.c (create_breakpoint): Move local variable 'lsal'
3930 to inner block. Caller update.
3931 (base_breakpoint_create_breakpoints_sal): Update.
3932 (bkpt_create_breakpoints_sal): Likewise.
3933 (tracepoint_create_breakpoints_sal): Likewise.
3934 (strace_marker_create_breakpoints_sal): Get 'lsal' from the
3935 element 0 of vector 'canonical->sals'.
3936
3937 2013-07-05 Luis Machado <lgustavo@codesourcery.com>
3938
3939 * rs6000-tdep.c (rs6000_stab_reg_to_regnum): Return the real
3940 register number instead of the pseudo register one.
3941 (rs6000_dwarf2_reg_to_regnum): Likewise.
3942
3943 2013-07-04 Pedro Alves <palves@redhat.com>
3944
3945 * findvar.c (value_of_register): Use allocate_optimized_out_value
3946 if the register has been optimized out, instead of
3947 set_value_optimized_out.
3948 * frame-unwind.c (frame_unwind_got_optimized): Use
3949 allocate_optimized_out_value.
3950
3951 2013-07-04 Pedro Alves <palves@redhat.com>
3952
3953 * value.c (value_bits_valid): If the value is not lval_computed,
3954 or doesn't have a check_validity hook, assume the value is entirely
3955 valid.
3956
3957 2013-07-04 Andrew Burgess <aburgess@broadcom.com>
3958
3959 * stack.c (read_frame_arg): No longer fetch lazy values.
3960 * value.c (value_optimized_out): If the value is not already
3961 marked optimized out, and is lazy then fetch it.
3962 (value_primitive_field): Move optimized out check to later in the
3963 function, after we have loaded any lazy values.
3964 (value_fetch_lazy): Use optimized out flag directly rather than
3965 calling optimized_out method.
3966
3967 2013-07-04 Andrew Burgess <aburgess@broadcom.com>
3968
3969 * valops.c: Don't include "user-regs.h".
3970 (value_fetch_lazy): Moved to value.c.
3971 * value.c: Include "user-regs.h".
3972 (value_fetch_lazy): Moved from valops.c.
3973
3974 2013-07-04 Yao Qi <yao@codesourcery.com>
3975
3976 Revert:
3977 2013-06-27 Yao Qi <yao@codesourcery.com>
3978
3979 * common/create-version.sh: Update comments. Handle the case
3980 that TARGET_ALIAS is empty.
3981
3982 2013-07-03 Pedro Alves <palves@redhat.com>
3983
3984 * Makefile.in (config.status): Depend on development.sh.
3985 (aclocal_m4_deps): Add libmcheck.m4.
3986 * acinclude.m4: Include libmcheck.m4.
3987 * configure.ac: Source development.sh instead of setting
3988 'development' here. --enable-libmcheck/--disable-libmcheck code
3989 factored out to GDB_AC_LIBMCHECK. Run it.
3990 * development.sh: New file.
3991 * libmcheck.m4: New file.
3992 * configure: Regenerate.
3993
3994 2013-07-02 Tom Tromey <tromey@redhat.com>
3995
3996 * contrib/ari/update-web-ari.sh: Update for version.in change.
3997
3998 2013-07-02 Tom Tromey <tromey@redhat.com>
3999
4000 * common/ptid.h: Comment fixes.
4001
4002 2013-07-01 Tom Tromey <tromey@redhat.com>
4003
4004 * dwarf2read.c (dwarf2_get_dwz_file): Return NULL if
4005 .gnu_debugaltlink not found. Use bfd_get_alt_debug_link_info.
4006 (dwarf2_read_index, create_all_comp_units): Update.
4007
4008 2013-07-01 Tom Tromey <tromey@redhat.com>
4009
4010 * configure.ac (build_warnings): Add -Wold-style-definition.
4011 * configure: Rebuild.
4012 * machoread.c (_initialize_machoread): Use "(void)".
4013 * macrocmd.c (macro_inform_no_debuginfo): Fix formatting;
4014 use "(void)".
4015
4016 2013-07-01 Tom Tromey <tromey@redhat.com>
4017
4018 * configure.ac (build_warnings): Add -Wold-style-declaration.
4019 * configure: Rebuild.
4020 * dsrec.c (make_srec): Use "static const", not "const static".
4021 * h8300-tdep.c (h8300_breakpoint_from_pc): Use "static const",
4022 not "const static".
4023 * mi/mi-parse.c (mi_no_values, mi_simple_values, mi_all_values):
4024 Use "static const", not "const static".
4025 * mn10300-tdep.c (mn10300_breakpoint_from_pc): Use "static const",
4026 not "const static".
4027 * moxie-tdep.c (moxie_breakpoint_from_pc): Use "static const",
4028 not "const static".
4029 * rs6000-tdep.c (rs6000_breakpoint_from_pc): Use "static const",
4030 not "const static".
4031 * v850-tdep.c (v850_breakpoint_from_pc): Use "static const",
4032 not "const static".
4033 (v850_dbtrap_breakpoint_from_pc): Likewise.
4034 * xstormy16-tdep.c (xstormy16_breakpoint_from_pc): Use "static const",
4035 not "const static".
4036
4037 2013-07-01 Tom Tromey <tromey@redhat.com>
4038
4039 * configure.ac (build_warnings): Add -Wmissing-parameter-type.
4040 * configure: Rebuild.
4041
4042 2013-07-01 Pedro Alves <palves@redhat.com>
4043
4044 * defs.h: Include "pathmax.h".
4045 * utils.c: Don't include sys/param.h.
4046 (gdb_realpath): Remove code that checks for MAXPATHLEN.
4047 * solib-ia64-hpux.c (ia64_hpux_handle_load_event): Use PATH_MAX
4048 instead of MAXPATHLEN.
4049 * solib-sunos.c: Don't include sys/param.h.
4050 * xcoffread.c: Don't include sys/param.h.
4051 * bsd-kvm.c: Don't include sys/param.h.
4052 * darwin-nat.c: Don't include sys/param.h.
4053 (darwin_pid_to_exec_file): Use PATH_MAX instead of MAXPATHLEN.
4054 * darwin-nat-info.c: Don't include sys/param.h.
4055 * fbsd-nat.c (fbsd_pid_to_exec_file): Use PATH_MAX instead of
4056 MAXPATHLEN.
4057 * i386obsd-nat.c: Don't include sys/param.h.
4058 * inf-child.c: Don't include sys/param.h.
4059 (inf_child_fileio_readlink): Use PATH_MAX instead of MAXPATHLEN.
4060 * linux-fork.c: Don't include sys/param.h.
4061 (fork_save_infrun_state): Use PATH_MAX instead of MAXPATHLEN.
4062 * linux-nat.c: Don't include sys/param.h.
4063 (linux_child_pid_to_exec_file, linux_proc_pending_signals)
4064 (linux_proc_pending_signals): Use PATH_MAX instead of MAXPATHLEN.
4065 * m68klinux-nat.c: Don't include sys/param.h.
4066 * nbsd-nat.c: Don't include sys/param.h.
4067 (nbsd_pid_to_exec_file): Use PATH_MAX instead of MAXPATHLEN.
4068 * ppc-linux-nat.c: Don't include sys/param.h.
4069 * rs6000-nat.c: Don't include sys/param.h.
4070 * spu-linux-nat.c. Don't include sys/param.h.
4071 * windows-nat.c: Don't include sys/param.h.
4072 * xtensa-linux-nat.c: Don't include sys/param.h.
4073 * config/i386/nm-fbsd.h: Don't include sys/param.h.
4074
4075 2013-07-01 Pedro Alves <palves@redhat.com>
4076
4077 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add pathmax.
4078 * gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/pathmax.m4.
4079 * gnulib/aclocal.m4: Regenerate.
4080 * gnulib/config.in: Regenerate.
4081 * gnulib/configure: Regenerate.
4082 * gnulib/import/pathmax.h: New file.
4083 * gnulib/import/Makefile.am: Regenerate.
4084 * gnulib/import/Makefile.in: Regenerate.
4085 * gnulib/import/m4/gnulib-cache.m4: Regenerate.
4086 * gnulib/import/m4/gnulib-comp.m4: Regenerate.
4087 * gnulib/import/m4/pathmax.m4: New file.
4088
4089 2013-07-01 Pedro Alves <palves@redhat.com>
4090
4091 * configure.ac (GDBINIT): Define, depending on host.
4092 * go32-nat.c (init_go32_ops): Don't override gdbinit here.
4093 * top.c (PATH_MAX): Delete fallback definition.
4094 (GDBINIT_FILENAME): Delete.
4095 (gdbinit): Reimplement as const char array set to the GDBINIT
4096 string constant.
4097 * top.h (gdbinit): Make const.
4098 * configure, config.in: Regenerate.
4099
4100 2013-07-01 Pedro Alves <palves@redhat.com>
4101
4102 * cli/cli-cmds.c (source_script): Make 'file' parameter const.
4103 * cli/cli-cmds.h (source_script): Likewise.
4104 * exceptions.c (catch_command_errors_const): New function.
4105 * exceptions.h (catch_command_errors_const): Declare.
4106 * main.c (get_init_files): Make parameters const, and adjust.
4107 (captured_main): Make 'system_gdbinit', 'home_gdbinit' and
4108 'local_gdbinit' locals const. Adjust to use
4109 catch_command_errors_const.
4110 (print_gdb_help): Make 'system_gdbinit', 'home_gdbinit' and
4111 'local_gdbinit' locals const.
4112
4113 2013-07-01 Pedro Alves <palves@redhat.com>
4114
4115 * defs.h: Don't check HAVE_UNISTD_H before including <unistd.h>.
4116 (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO): Delete.
4117 * tracepoint.c: Don't check HAVE_UNISTD_H before including
4118 <unistd.h>.
4119
4120 2013-07-01 Pedro Alves <palves@redhat.com>
4121
4122 Import the "unistd" gnulib module.
4123 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add "unistd".
4124 * gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/off_t.m4,
4125 import/m4/ssize_t.m4, import/m4/sys_types_h.m4 and
4126 import/m4/unistd_h.m4.
4127 * gnulib/aclocal.m4: Renenerate.
4128 * gnulib/config.in: Renenerate.
4129 * gnulib/configure: Renenerate.
4130 * gnulib/import/Makefile.am: Renenerate.
4131 * gnulib/import/Makefile.in: Renenerate.
4132 * gnulib/import/m4/gnulib-cache.m4: Renenerate.
4133 * gnulib/import/m4/gnulib-comp.m4: Renenerate.
4134 * gnulib/import/m4/off_t.m4: New file.
4135 * gnulib/import/m4/ssize_t.m4: New file.
4136 * gnulib/import/m4/sys_types_h.m4: New file.
4137 * gnulib/import/m4/unistd_h.m4: New file.
4138 * gnulib/import/sys_types.in.h: New file.
4139 * gnulib/import/unistd.c: New file.
4140 * gnulib/import/unistd.in.h: New file.
4141
4142 2013-07-01 Pedro Alves <palves@redhat.com>
4143
4144 * utils.c <pathconf/_PC_PATH_MAX use>: Check if _PC_PATH_MAX is
4145 defined instead of checking HAVE_UNISTD_H.
4146
4147 2013-07-01 Pedro Alves <palves@redhat.com>
4148
4149 Reimport gnulib from scratch.
4150 * gnulib/Makefile.in (aclocal_m4_deps): Remove reference to
4151 import/m4/onceonly.m4.
4152 * gnulib/aclocal.m4: Renegerate.
4153 * gnulib/config.in: Renegerate.
4154 * gnulib/configure: Renegerate.
4155 * gnulib/import/Makefile.in: Renegerate.
4156 * gnulib/import/extra/update-copyright: Renegerate.
4157 * gnulib/import/m4/onceonly.m4: Delete.
4158
4159 2013-07-01 Pedro Alves <palves@redhat.com>
4160
4161 * tui/tui-regs.c (pagination_enabled): Delete declaration.
4162
4163 2013-06-30 Jan Kratochvil <jan.kratochvil@redhat.com>
4164
4165 Code cleanup.
4166 * remote.c (async_remote_interrupt_twice): Make it static.
4167 * remote.h (async_remote_interrupt_twice): Remove the declaration.
4168
4169 2013-06-29 Sergio Durigan Junior <sergiodj@redhat.com>
4170
4171 * ia64-linux-tdep.c: Include <ctype.h>.
4172 (ia64_linux_stap_is_single_operand): New function.
4173 (ia64_linux_init_abi): Initialize SystemTap related attributes.
4174
4175 2013-06-28 Tom Tromey <tromey@redhat.com>
4176
4177 * Makefile.in (version.c): Use version.in, not
4178 common/version.in.
4179 * common/create-version.sh: Likewise.
4180 * common/version.in: Move...
4181 * version.in: ...here.
4182
4183 2013-06-28 Pedro Alves <palves@redhat.com>
4184
4185 * infrun.c (set_observer_mode): Don't declare pagination_enabled
4186 here.
4187 * utils.h (pagination_enabled): Declare.
4188
4189 2013-06-28 Pedro Alves <palves@redhat.com>
4190
4191 * infrun.c (non_stop, non_stop_1, set_non_stop, show_non_stop):
4192 Move higher up in file.
4193
4194 2013-06-28 Tom Tromey <tromey@redhat.com>
4195
4196 * tracepoint.c (deprecated_readline_begin_hook)
4197 (deprecated_readline_hook, deprecated_readline_end_hook): Don't
4198 declare.
4199
4200 2013-06-28 Pedro Alves <palves@redhat.com>
4201
4202 PR tui/14880
4203 * tui/tui-regs.c (tui_get_register): Fetch value contents before
4204 checking if they're available.
4205 * value.c (value_available_contents_eq): Change comment.
4206 * value.h (value_available_contents_eq): Expand comment.
4207
4208 2013-06-27 Tom Tromey <tromey@redhat.com>
4209
4210 * target.c (find_run_target): Remove.
4211 * target.h (find_run_target): Remove.
4212
4213 2013-06-27 Tom Tromey <tromey@redhat.com>
4214
4215 * corelow.c (core_gdbarch): Now static.
4216
4217 2013-06-27 Tom Tromey <tromey@redhat.com>
4218
4219 * target.c (target_struct_index): Remove.
4220
4221 2013-06-27 Pedro Alves <palves@redhat.com>
4222
4223 * infrun.c: Remove comment describing the 'stepping over runtime
4224 loader dynamic symbol resolution code' mechanism; moved to
4225 gdbint.texinfo.
4226
4227 2013-06-27 Pedro Alves <palves@redhat.com>
4228
4229 * exceptions.c (catch_command_errors): Remove spurious space.
4230 * exceptions.h (catch_command_errors): Second parameter is "arg",
4231 not "command".
4232
4233 2013-06-27 Yao Qi <yao@codesourcery.com>
4234
4235 * common/create-version.sh: Update comments. Handle the case
4236 that TARGET_ALIAS is empty.
4237
4238 2013-06-26 Pedro Alves <palves@redhat.com>
4239
4240 * infrun.c (SOLIB_IN_DYNAMIC_LINKER): Delete macro and describing
4241 comment.
4242
4243 2013-06-26 Pedro Alves <palves@redhat.com>
4244
4245 * infrun.c: Update comments on stepping over runtime loader
4246 dynamic symbol resolution code.
4247
4248 2013-06-26 Sergio Durigan Junior <sergiodj@redhat.com>
4249
4250 * ax-gdb.h (union exp_element): Forward declare.
4251 * parser-defs.h: Include expression.h.
4252
4253 2013-06-26 Maciej W. Rozycki <macro@codesourcery.com>
4254
4255 * mips-tdep.c (fetch_mips_16): Use unmake_compact_addr.
4256
4257 2013-06-26 Dmitry Kozlov <ddk@codesourcery.com>
4258
4259 * tracepoint.c (trace_save): Extend tsave to save starttime, stoptime.
4260
4261 2013-06-26 Dmitry Kozlov <ddk@codesourcery.com>
4262
4263 Fix trace-status to output proper start-time and stop-time.
4264 * tracepoint.c (trace_status_command): Fix type of printf arg to
4265 prevent improper type conversion.
4266 (trace_status_mi): Likewise.
4267
4268 2013-06-26 Maciej W. Rozycki <macro@codesourcery.com>
4269
4270 * mips-tdep.c (mips_next_pc): Fix a typo.
4271
4272 2013-06-26 Maciej W. Rozycki <macro@codesourcery.com>
4273
4274 * mips-tdep.c (micromips_scan_prologue): Fix a typo.
4275
4276 2013-06-26 Pedro Alves <pedro@codesourcery.com>
4277 Yao Qi <yao@codesourcery.com>
4278
4279 * mi/mi-cmds.c (mi_cmds): Register -trace-frame-collected.
4280 * mi/mi-cmds.h (mi_cmd_trace_frame_collected): Declare.
4281 * mi/mi-main.c (print_variable_or_computed): New function.
4282 (mi_cmd_trace_frame_collected): New function.
4283 * tracepoint.c (find_trace_state_variable_by_number): New.
4284 (struct traceframe_info): Move to tracepoint.h
4285 (struct collection_list): Likewise.
4286 (do_collect_symbol): Include locals and arguments in the
4287 collected variables list.
4288 (clear_collection_list): Clear wholly collected variables list
4289 and computed variables list.
4290 (append_exp): New function.
4291 (encode_actions_1): Include variables in the wholly
4292 collected variables list. Include memory ranges and
4293 full-fledged expressions in the computed expressions list.
4294 (encode_actions): Move some code to ...
4295 Return the cleanup chain.
4296 (encode_actions_rsp): ... here. New function.
4297 (get_traceframe_location, get_traceframe_info): Remove static.
4298 * tracepoint.h (struct memrange): Moved from tracepoint.c.
4299 (struct collection_list): Moved from tracepoint.c. Add two
4300 new fields 'wholly_collected' and 'computed'.
4301 (find_trace_state_variable_by_number): Declare.
4302 (encode_actions): Adjust declaration.
4303 (encode_actions_rsp): Declare.
4304 (get_traceframe_info, get_traceframe_location): Declare.
4305
4306 * NEWS: Mention new MI command -trace-frame-collected.
4307
4308 2013-06-26 Pedro Alves <pedro@codesourcery.com>
4309 Yao Qi <yao@codesourcery.com>
4310
4311 * ctf.c (ctf_traceframe_info): Push trace state variables
4312 present in the trace data into the traceframe info object.
4313 * breakpoint.c (DEF_VEC_I): Remove.
4314 * common/filestuff.c (DEF_VEC_I): Likewise.
4315 * dwarf2loc.c (DEF_VEC_I): Likewise.
4316 * mi/mi-main.c (DEF_VEC_I): Likewise.
4317 * common/gdb_vecs.h (DEF_VEC_I): Define vector for int.
4318 * features/traceframe-info.dtd: Add tvar element and its
4319 attributes.
4320 * tracepoint.c (free_traceframe_info): Free vector 'tvars'.
4321 (build_traceframe_info): Push trace state variables present in
4322 the trace data into the traceframe info object.
4323 (traceframe_info_start_tvar): New function.
4324 (tvar_attributes): New.
4325 (traceframe_info_children): Add "tvar" element.
4326 * tracepoint.h (struct traceframe_info) <tvars>: New field.
4327
4328 * NEWS: Mention the change in GDB and GDBserver.
4329
4330 2013-06-26 Pedro Alves <pedro@codesourcery.com>
4331 Yao Qi <yao@codesourcery.com>
4332
4333 * tracepoint.c (trace_dump_command): Move code to ...
4334 (get_traceframe_location): ... here. New.
4335
4336 2013-06-26 Pedro Alves <pedro@codesourcery.com>
4337 Yao Qi <yao@codesourcery.com>
4338
4339 * tracepoint.c (trace_dump_command): GDB emits an error
4340 instead of a warning when a traceframe is not selected.
4341
4342 2013-06-26 Pedro Alves <pedro@codesourcery.com>
4343 Yao Qi <yao@codesourcery.com>
4344
4345 * tracepoint.c (tracepoint_list, stepping_list): Remove.
4346 (clear_collection_list): Free fields 'aexpre_list' and 'list'
4347 in collection_list.
4348 (do_clear_collection_list, init_collection_list): New.
4349 (encode_actions): Add local variables 'tracepoint_list' and
4350 'stepping_list'. Call init_collection_list and make cleanup
4351 which calls do_clear_collection_list. Don't call
4352 clear_collection_list.
4353 (_initialize_tracepoint): Delete references to
4354 'tracepoint_list' and 'stepping_list'.
4355
4356 2013-06-25 Tom Tromey <tromey@redhat.com>
4357
4358 * common/create-version.sh (date): Use "$", not "$$" in sed
4359 expression.
4360
4361 2013-06-25 Kevin Buettner <kevinb@redhat.com>
4362
4363 * NEWS (New targets): Add entry for TI MSP430.
4364
4365 2013-06-25 Yao Qi <yao@codesourcery.com>
4366
4367 * remote.c (remote_start_remote): Move code to upload tsv
4368 earlier.
4369
4370 2013-06-25 Yao Qi <yao@codesourcery.com>
4371 Hui Zhu <hui@codesourcery.com>
4372 Pedro Alves <palves@redhat.com>
4373
4374 PR breakpoints/15075
4375 PR breakpoints/15434
4376 * breakpoint.c (bpstat_stop_status): Call
4377 b->ops->after_condition_true.
4378 (update_dprintf_command_list): Don't append "continue" command
4379 to the command list of dprintf breakpoint.
4380 (base_breakpoint_after_condition_true): New function.
4381 (base_breakpoint_ops): Add base_breakpoint_after_condition_true.
4382 (dprintf_after_condition_true): New function.
4383 (initialize_breakpoint_ops): Set dprintf_after_condition_true.
4384 * breakpoint.h (breakpoint_ops): Add after_condition_true.
4385
4386 2013-06-24 Kevin Buettner <kevinb@redhat.com>
4387
4388 * Makefile.in (ALL_TARGET_OBS): Add msp430-tdep.o.
4389 (ALLDEPFILES): Add msp430-tdep.c.
4390 * configure.tgt (msp430*-*-elf): New target.
4391 * msp430-tdep.c: New file.
4392
4393 2013-06-24 Maciej W. Rozycki <macro@codesourcery.com>
4394
4395 * mips-tdep.c (mips_elf_make_msymbol_special): Handle MIPS16 and
4396 microMIPS synthetic symbols.
4397
4398 2013-06-24 Maciej W. Rozycki <macro@codesourcery.com>
4399
4400 * objfiles.h (pc_in_section): New prototype.
4401 (in_plt_section): Remove name argument, replace prototype with
4402 static inline function.
4403 * mips-tdep.h: Include "objfiles.h".
4404 (in_mips_stubs_section): New function.
4405 * hppa-tdep.h (gdbarch_tdep): Remove name argument of
4406 in_solib_call_trampoline member.
4407 (hppa_in_solib_call_trampoline): Remove name argument.
4408 * objfiles.c (pc_in_section): New function.
4409 (in_plt_section): Remove function.
4410 * mips-linux-tdep.c: Include "objfiles.h".
4411 (mips_linux_in_dynsym_stub): Call in_mips_stubs_section. Remove
4412 name argument. Return 1 rather than the low 16-bit halfword of
4413 any instruction examined.
4414 (mips_linux_in_dynsym_resolve_code): Update
4415 mips_linux_in_dynsym_stub call accordingly.
4416 * mips-tdep.c (mips_stub_frame_sniffer): Use in_mips_stubs_section
4417 rather than an equivalent hand-coded sequence.
4418 * hppa-hpux-tdep.c (in_opd_section): Remove function.
4419 (hppa32_hpux_in_solib_call_trampoline): Remove name argument.
4420 (hppa64_hpux_in_solib_call_trampoline): Likewise.
4421 (hppa64_hpux_find_global_pointer): Use pc_in_section rather than
4422 in_opd_section.
4423 * hppa-tdep.c (hppa_stub_unwind_sniffer): Remove name argument
4424 on call to tdep->in_solib_call_trampoline.
4425 (hppa_in_solib_call_trampoline): Remove name argument, update
4426 according to in_plt_section change.
4427 (hppa_skip_trampoline_code): Update according to in_plt_section
4428 change.
4429 * aarch64-tdep.c (aarch64_stub_unwind_sniffer): Likewise.
4430 * arm-symbian-tdep.c (arm_symbian_skip_trampoline_code):
4431 Likewise.
4432 * arm-tdep.c (arm_stub_unwind_sniffer): Likewise.
4433 * hppa-linux-tdep.c (hppa_linux_find_global_pointer): Likewise.
4434 * hppabsd-tdep.c (hppabsd_find_global_pointer): Likewise.
4435 * nios2-tdep.c (nios2_stub_frame_sniffer): Likewise.
4436 * nto-tdep.c (nto_relocate_section_addresses): Likewise.
4437 * s390-tdep.c (s390_stub_frame_sniffer): Likewise.
4438 * sh-tdep.c (sh_stub_unwind_sniffer): Likewise.
4439 * solib-dsbt.c (dsbt_in_dynsym_resolve_code): Likewise.
4440 * solib-frv.c (frv_in_dynsym_resolve_code): Likewise.
4441 * solib-svr4.c (svr4_in_dynsym_resolve_code): Likewise.
4442 * solib-target.c (solib_target_in_dynsym_resolve_code): Likewise.
4443 * sparc-tdep.c (sparc_analyze_prologue): Likewise.
4444 * tic6x-tdep.c (tic6x_stub_unwind_sniffer): Likewise.
4445
4446 2013-06-24 Joel Brobecker <brobecker@adacore.com>
4447
4448 * common/create-version.sh: Fix expansion of $host_alias
4449 and $target_alias in generation of HOST_NAME and TARGET_NAME
4450 (resp.).
4451
4452 2013-06-24 Tom Tromey <tromey@redhat.com>
4453
4454 * common/create-version.sh: New file.
4455 * Makefile.in (version.c): Use bfd/version.h, common/version.in,
4456 create-version.sh.
4457 (HFILES_NO_SRCDIR): Use common/version.h.
4458 * version.in: Move to ...
4459 * common/version.in: ... here. Replace date with "DATE".
4460 * version.h: Move to ...
4461 * common/version.h: ... here.
4462
4463 2013-06-21 Joel Brobecker <brobecker@adacore.com>
4464
4465 * gdb/gnulib/Makefile.in: Update date in copyright header.
4466 * gdb/gnulib/configure.ac: Ditto.
4467 * gdb/gnulib/update-gnulib.sh: Ditto.
4468
4469 2013-06-21 Joel Brobecker <brobecker@adacore.com>
4470
4471 * copyright.py (EXCLUDE_LIST): Replace "gdb/gnulib" by
4472 "gdb/gnulib/import".
4473
4474 2013-06-21 Will Newton <will.newton@linaro.org>
4475
4476 * doublest.c (ldfrexp): Remove function.
4477 (convert_doublest_to_floatformat): Call frexpl instead of
4478 ldfrexp.
4479
4480 2013-06-21 Will Newton <will.newton@linaro.org>
4481
4482 * gnulib/update-gnulib.sh(IMPORTED_GNULIB_MODULES): Add frexpl.
4483 * gnulib/aclocal.m4: Regenerate.
4484 * gnulib/config.in: Regenerate.
4485 * gnulib/configure: Regenerate.
4486 * gnulib/import/Makefile.am: Update.
4487 * gnulib/import/Makefile.in: Update.
4488 * gnulib/import/m4/gnulib-cache.m4: Update.
4489 * gnulib/import/m4/gnulib-comp.m4: Update.
4490 * gnulib/import/float+.h: Import.
4491 * gnulib/import/float.c: Import.
4492 * gnulib/import/float.in.h: Import.
4493 * gnulib/import/fpucw.h: Import.
4494 * gnulib/import/frexp.c: Import.
4495 * gnulib/import/frexpl.c: Import.
4496 * gnulib/import/isnan.c: Import.
4497 * gnulib/import/isnand-nolibm.h: Import.
4498 * gnulib/import/isnand.c: Import.
4499 * gnulib/import/isnanl-nolibm.h: Import.
4500 * gnulib/import/isnanl.c: Import.
4501 * gnulib/import/itold.c: Import.
4502 * gnulib/import/m4/exponentd.m4: Import.
4503 * gnulib/import/m4/exponentl.m4: Import.
4504 * gnulib/import/m4/float_h.m4: Import.
4505 * gnulib/import/m4/fpieee.m4: Import.
4506 * gnulib/import/m4/frexp.m4: Import.
4507 * gnulib/import/m4/frexpl.m4: Import.
4508 * gnulib/import/m4/isnand.m4: Import.
4509 * gnulib/import/m4/isnanl.m4: Import.
4510 * gnulib/import/m4/math_h.m4: Import.
4511 * gnulib/import/math.c: Import.
4512 * gnulib/import/math.in.h: Import.
4513
4514 2013-06-21 Jan Kratochvil <jan.kratochvil@redhat.com>
4515
4516 * common/linux-btrace.c (cpu_supports_btrace): Remove variable vendor,
4517 replace strcmp with signature_INTEL_ebx, signature_INTEL_ecx and
4518 signature_INTEL_edx comparisons.
4519
4520 2013-06-20 Doug Evans <dje@google.com>
4521
4522 symtab/15652
4523 * dwarf2read.c (try_open_dwop_file): New arg search_cwd.
4524 All callers updated.
4525 (open_dwp_file): If we can't find the dwp file, search the basename
4526 in debug-file-directory.
4527
4528 * dwarf2read.c (struct dwp_file): Fix comment.
4529 (open_and_init_dwp_file): Set dwp_file->name to bfd's file name.
4530
4531 * source.c (openp): Document OPF_TRY_CWD_FIRST+OPF_SEARCH_IN_PATH
4532 better.
4533
4534 2013-06-20 Yao Qi <yao@codesourcery.com>
4535
4536 * breakpoint.c (create_breakpoint): Fix code indentation.
4537
4538 2013-06-20 Yao Qi <yao@codesourcery.com>
4539
4540 * breakpoint.c (create_breakpoints_sal_default): Remove
4541 parameter 'lsal'. Update declaration.
4542 (bkpt_create_breakpoints_sal): Caller update.
4543 (tracepoint_create_breakpoints_sal): Likewise.
4544
4545 2013-06-20 Pedro Alves <pedro@codesourcery.com>
4546 Yao Qi <yao@codesourcery.com>
4547
4548 * NEWS: Mention the new option '--skip-unavailable' of command
4549 -data-list-register-values.
4550 * mi/mi-main.c (mi_cmd_data_list_register_values): Accept the
4551 --skip-unavailable option. Adjust to use output_register.
4552 (output_register): Add new 'skip_unavailable' parameter.
4553 Handle it.
4554
4555 2013-06-19 Mike Frysinger <vapier@gentoo.org>
4556
4557 * Makefile.in (HFILES_NO_SRCDIR): Add common/i386-cpuid.h and
4558 common/i386-gcc-cpuid.h.
4559 * common/i386-cpuid.h: New wrapper header around i386-gcc-cpuid.h.
4560 * common/i386-gcc-cpuid.h: Rename from testsuite/gdb.arch/i386-cpuid.h.
4561 Copy the latest version from upstream gcc.
4562 * common/linux-btrace.c: Include i386-cpuid.h.
4563 (intel_supports_btrace): Delete x86 ifdefs and replace inline asm with
4564 call to i386_cpuid.
4565 (cpu_supports_btrace): Likewise.
4566 * go32-nat.c: Include i386-cpuid.h.
4567 (go32_sysinfo): Add (disabled) calls to i386_cpuid with comments.
4568
4569 2013-06-19 Doug Evans <dje@google.com>
4570
4571 * symfile.c (symfile_bfd_open): Delete unnecessary declaration.
4572 (get_section_index): Ditto.
4573
4574 2013-06-19 Tom Tromey <tromey@redhat.com>
4575
4576 * breakpoint.c (_initialize_breakpoint): Remove trailing \n from
4577 "dprintf" help.
4578
4579 2013-06-18 Doug Evans <dje@google.com>
4580
4581 * dwarf2read.c (dw2_symtab_iter_next): Check value of cu_index
4582 before using it.
4583 (dw2_expand_symtabs_matching): Fix symbol kind validity check.
4584 Move test of cu_index closer to use. Print complaint if cu_index
4585 is bad.
4586
4587 2013-06-18 Joel Brobecker <brobecker@adacore.com>
4588
4589 * machoread.c (oso_vector): Delete this global.
4590 (macho_register_oso): Add new parameter "oso_vector_ptr".
4591 Use it instead of the "oso_vector" global.
4592 (macho_symtab_read, macho_symfile_read_all_oso): Likewise.
4593 (macho_symfile_read): Use a local oso_vector, to be free'ed
4594 at the end of this function, in place of the old "oso_vector"
4595 global. Update various function calls accordingly. Use one
4596 single cleanup chain for the entire function.
4597
4598 2013-06-18 Joel Brobecker <brobecker@adacore.com>
4599
4600 * dwarf2read.c (dwarf2_per_objfile_free): Replace uses of
4601 DWARF2_PER_OBJFILE by uses of DATA instead.
4602
4603 2013-06-18 Tom Tromey <tromey@redhat.com>
4604
4605 * break-catch-sig.c (signal_catchpoint_explains_signal): Add 'sig'
4606 argument.
4607 * breakpoint.c (bpstat_explains_signal): Add 'sig' argument.
4608 Special case signals other than GDB_SIGNAL_TRAP.
4609 (explains_signal_watchpoint): New function.
4610 (base_breakpoint_explains_signal): Add 'sig' argument.
4611 (initialize_breakpoint_ops): Set 'explains_signal' method for
4612 watchpoints.
4613 * breakpoint.h (struct breakpoint_ops) <explains_signal>: Add
4614 signal argument.
4615 (bpstat_explains_signal): Likewise.
4616 * infrun.c (handle_syscall_event, handle_inferior_event): Update.
4617
4618 2013-06-18 Tom Tromey <tromey@redhat.com>
4619
4620 * python/py-inferior.c (gdbpy_selected_inferior): Don't incref.
4621
4622 2013-06-18 Tom Tromey <tromey@redhat.com>
4623
4624 * python/python.c (finish_python_initialization): Decref
4625 'pythondir' on failure path as well.
4626
4627 2013-06-18 Tom Tromey <tromey@redhat.com>
4628
4629 PR symtab/15391:
4630 * dwarf2loc.c (read_pieced_value): Truncate this_size_bits
4631 after taking bits_to_skip into account. Sign extend byte_offset.
4632 * utils.h (gdb_sign_extend): Declare.
4633 * utils.c (gdb_sign_extend): New function.
4634
4635 2013-06-18 Jan Kratochvil <jan.kratochvil@redhat.com>
4636
4637 * dwarf2read.c (write_psymtabs_to_index): Ignore NULL PSYMTAB.
4638
4639 2013-06-17 Pierre Muller <muller@sourceware.org>
4640
4641 * corelow.c (core_open): Print GDB signal name instead of target
4642 signal number.
4643
4644 2013-06-17 Mike Frysinger <vapier@gentoo.org>
4645
4646 * .gitignore: Add /gcore.
4647
4648 2013-06-13 Doug Evans <dje@google.com>
4649
4650 * dwarf2read.c (try_open_dwop_file): Work around behaviour of
4651 OPF_TRY_CWD_FIRST to not search path if the file contains a '/'.
4652
4653 2013-06-12 Phil Muldoon <pmuldoon@redhat.com>
4654
4655 * stack.c (backtrace_command_1): Fix indentation.
4656
4657 2013-06-11 Joel Brobecker <brobecker@adacore.com>
4658
4659 * window-nat.c (thread_rec): Add missing empty line after
4660 local variable declaration.
4661
4662 2013-06-11 Joel Brobecker <brobecker@adacore.com>
4663
4664 * windows-nat.c (thread_rec): Revert format used to print
4665 error code returned by SuspendThread from %d back to %u.
4666
4667 2013-06-11 Joel Brobecker <brobecker@adacore.com>
4668
4669 * windows-nat.c (windows_continue): Add "0x" prefix for thread
4670 ID in debug trace.
4671 (get_windows_debug_event): Likewise, for all debug traces.
4672
4673 2013-06-11 Joel Brobecker <brobecker@adacore.com>
4674
4675 * window-nat.c (thread_rec): Add thread ID in SuspendThread
4676 warning message.
4677
4678 2013-06-08 Pedro Alves <pedro@codesourcery.com>
4679 Yao Qi <yao@codesourcery.com>
4680
4681 * mi/mi-main.c (get_register): Remove declaration.
4682 (output_register): Declare.
4683 (mi_cmd_data_list_register_values): Remove local variable
4684 'tuple_cleanup'. Move some code into output_register.
4685 (get_register): Renamed to ...
4686 (output_register): ... this. Output the register's
4687 "number" ui_out tuple here.
4688
4689 2013-06-07 Pedro Alves <palves@redhat.com>
4690
4691 * darwin-nat.c: Fix formating in copyright header.
4692 * darwin-nat.h: Likewise.
4693 * gnu-nat.c: Likewise.
4694 * machoread.c: Likewise.
4695
4696 2013-06-07 Pedro Alves <palves@redhat.com>
4697
4698 PR server/14823
4699 * regformats/regdat.sh: Output #include tdesc.h. Make globals
4700 static. Output a global target description pointer.
4701 (init_registers_${name}): Adjust to initialize a
4702 target description structure.
4703
4704 2013-06-07 Will Newton <will.newton@linaro.org>
4705
4706 * printcmd.c (build_address_symbolic): Call
4707 gdbarch_addr_bits_remove for text minimal symbols.
4708
4709 2013-06-07 Will Newton <will.newton@linaro.org>
4710
4711 * MAINTAINERS: Add myself to Write After Approval.
4712
4713 2013-06-07 Yao Qi <yao@codesourcery.com>
4714
4715 * tracepoint.c (start_tracing): Move code to ...
4716 (trace_reset_local_state): ... here. New.
4717 (disconnect_tracing): Don't call set_current_traceframe,
4718 set_tracepoint_num, and set_traceframe_context. Call
4719 trace_reset_local_state instead.
4720 (tfile_close): Call trace_reset_local_state.
4721 * ctf.c (ctf_close): Likewise.
4722 * remote.c (remote_close): Likewise.
4723 * tracepoint.h (trace_reset_local_state): Declare.
4724
4725 2013-06-06 Doug Evans <dje@google.com>
4726
4727 * dwarf2read.c: Whitespace fixes for DWP file format documentation,
4728 and fix header docs.
4729
4730 2013-06-05 Doug Evans <dje@google.com>
4731 Keith Seitz <keiths@redhat.com>
4732
4733 PR 15519
4734 * cp-namespace.c (find_symbol_in_baseclass): Call
4735 cp_lookup_symbol_in_namespace instead of cp_lookup_symbol_namespace.
4736 Check result of call to lookup_symbol_static.
4737 Call lookup_static_symbol_aux unconditionally.
4738 Call check_typedef on base types before accessing them.
4739 (cp_lookup_nested_symbol): Fix comment.
4740
4741 2013-06-05 Luis Machado <lgustavo@codesourcery.com>
4742
4743 * gnu-v3-abi.c (gnuv3_skip_trampoline): Handle thunk
4744 minimal symbols pointing to function descriptors.
4745
4746 2013-06-05 Tom Tromey <tromey@redhat.com>
4747
4748 * python/py-utils.c (gdb_pymodule_addobject): Cast away const.
4749
4750 2013-06-04 Sergio Durigan Junior <sergiodj@redhat.com>
4751 Pedro Alves <palves@redhat.com>
4752
4753 * remote.c (remote_wait_as): Restore signal handler before returning
4754 when GDB gets a notification.
4755
4756 2013-06-04 Gary Benson <gbenson@redhat.com>
4757
4758 PR 2328
4759 * breakpoint.h (handle_solib_event): Moved function declaration
4760 to solib.h.
4761 * breakpoint.c (handle_solib_event): Moved function to solib.c.
4762 (bpstat_stop_status): Pass new argument to handle_solib_event.
4763 * solib.h (update_solib_breakpoints): New function declaration.
4764 (handle_solib_event): Moved function declaration from
4765 breakpoint.h.
4766 * solib.c (update_solib_breakpoints): New function.
4767 (handle_solib_event): Moved function from breakpoint.c.
4768 Updated to call solib_ops->handle_event if not NULL.
4769 * solist.h (target_so_ops): New fields "update_breakpoints" and
4770 "handle_event".
4771 * infrun.c (set_stop_on_solib_events): New function.
4772 (_initialize_infrun): Use the above for "set
4773 stop-on-solib-events".
4774 (handle_inferior_event): Pass new argument to handle_solib_event.
4775 * solib-svr4.c (probe.h): New include.
4776 (svr4_free_library_list): New forward declaration.
4777 (probe_action): New enum.
4778 (probe_info): New struct.
4779 (probe_info): New static variable.
4780 (NUM_PROBES): New definition.
4781 (svr4_info): New fields "using_xfer", "probes_table" and
4782 "solib_list".
4783 (free_probes_table): New function.
4784 (free_solib_list): New function.
4785 (svr4_pspace_data_cleanup): Free probes table and solib list.
4786 (svr4_copy_library_list): New function.
4787 (svr4_current_sos_via_xfer_libraries): New parameter "annex".
4788 (svr4_read_so_list): New parameter "prev_lm".
4789 (svr4_current_sos_direct): Renamed from "svr4_current_sos".
4790 (svr4_current_sos): New function.
4791 (probe_and_action): New struct.
4792 (hash_probe_and_action): New function.
4793 (equal_probe_and_action): Likewise.
4794 (register_solib_event_probe): Likewise.
4795 (solib_event_probe_at): Likewise.
4796 (solib_event_probe_action): Likewise.
4797 (solist_update_full): Likewise.
4798 (solist_update_incremental): Likewise.
4799 (disable_probes_interface_cleanup): Likewise.
4800 (svr4_handle_solib_event): Likewise.
4801 (svr4_update_solib_event_breakpoint): Likewise.
4802 (svr4_update_solib_event_breakpoints): Likewise.
4803 (svr4_create_solib_event_breakpoints): Likewise.
4804 (enable_break): Free probes table before creating breakpoints.
4805 Use svr4_create_solib_event_breakpoints to create breakpoints.
4806 (svr4_solib_create_inferior_hook): Free the solib list.
4807 (_initialize_svr4_solib): Initialise
4808 svr4_so_ops.handle_solib_event and svr4_so_ops.update_breakpoints.
4809
4810 2013-06-04 Gary Benson <gbenson@redhat.com>
4811
4812 * target.h (target_ops): New field
4813 "to_augmented_libraries_svr4_read".
4814 (target_augmented_libraries_svr4_read): New macro.
4815 * target.c (update_current_target): Handle
4816 to_augmented_libraries_svr4_read.
4817 * remote.c (remote_state): New field
4818 "augmented_libraries_svr4_read".
4819 (remote_augmented_libraries_svr4_read_feature): New function.
4820 (remote_protocol_features): Add entry for
4821 "augmented-libraries-svr4-read".
4822 (remote_augmented_libraries_svr4_read): New function.
4823 (init_remote_ops): Initialize
4824 remote_ops.to_augmented_libraries_svr4_read.
4825
4826 2013-06-04 Gary Benson <gbenson@redhat.com>
4827
4828 * NEWS: Update.
4829
4830 2013-06-04 Gary Benson <gbenson@redhat.com>
4831
4832 * objfiles.h (inhibit_section_map_updates): New function
4833 declaration.
4834 (resume_section_map_updates): Likewise.
4835 (resume_section_map_updates_cleanup): Likewise.
4836 * objfiles.c (objfile_pspace_info): Removed field
4837 "objfiles_changed_p". New fields "new_objfiles_available",
4838 "section_map_dirty" and "inhibit_updates".
4839 (allocate_objfile): Set new_objfiles_available.
4840 (free_objfile): Set section_map_dirty.
4841 (objfile_relocate1): Likewise.
4842 (in_plt_section): Likewise.
4843 (find_pc_section): Update the conditions under which the
4844 section map will be updated.
4845 (inhibit_section_map_updates): New function.
4846 (resume_section_map_updates): Likewise.
4847 (resume_section_map_updates_cleanup): Likewise.
4848
4849 2013-06-04 Gary Benson <gbenson@redhat.com>
4850
4851 * probe.h (get_probe_argument_count): New declaration.
4852 (evaluate_probe_argument): Likewise.
4853 * probe.c (get_probe_argument_count): New function.
4854 (evaluate_probe_argument): Likewise.
4855 (probe_safe_evaluate_at_pc): Use the above new functions.
4856
4857 2013-06-04 Alan Modra <amodra@gmail.com>
4858
4859 * ppc-tdep.h (ppc_insns_match_pattern): Update prototype.
4860 * rs6000-tdep.c (read_insn): Add frame param, don't assume big-endian.
4861 (ppc_insns_match_pattern): Add frame param. Avoid multiple
4862 target mem reads on optional insns.
4863 * ppc-linux-tdep.c (ppc_skip_trampoline_code): Update
4864 ppc_insns_match_pattern calls.
4865 * ppc64-tdep.c (ppc64_standard_linkage2, ppc64_standard_linkage3):
4866 Add match for power7 thread safety insns, and new order of
4867 std 2,40(1) insn. Correct code shown for _dl_runtime_resolve
4868 invocation in comment, and update rest of comment.
4869 (PPC64_STANDARD_LINKAGE1_LEN, PPC64_STANDARD_LINKAGE2_LEN,
4870 PPC64_STANDARD_LINKAGE3_LEN): Delete.
4871 (ppc64_standard_linkage2_target): Update insn offsets.
4872 (ppc64_skip_trampoline_code): Use a single insn buffer. Match newer
4873 stubs first. Update calls.
4874
4875 2013-06-04 Yao Qi <yao@codesourcery.com>
4876
4877 * solib.c (solib_find): Don't need dir separator if path has
4878 drive spec.
4879
4880 2013-06-03 Joel Brobecker <brobecker@adacore.com>
4881
4882 Revert (indirectly causes a SIGSEGV):
4883 * machoread.c (macho_symfile_read): Assign first cleanup to
4884 'back_to'.
4885
4886 2013-06-03 Yao Qi <yao@codesourcery.com>
4887
4888 * mi/mi-cmd-var.c (mi_no_values, mi_simple_values): Move to
4889 mi-parse.c. Make them static.
4890 (mi_all_values): Likewise.
4891 (mi_parse_values_option): Move to mi-parse.c. Rename it to
4892 mi_parse_print_values. Make it external.
4893 * mi/mi-cmds.h (mi_no_values, mi_simple_values, mi_all_values):
4894 Remove the declarations.
4895 * mi/mi-parse.c (mi_parse_print_values): Moved from mi-cmd-var.c.
4896 * mi/mi-parse.h (mi_parse_print_values): Declare.
4897 * mi/mi-cmd-stack.c: Include mi-parse.h.
4898 (parse_print_values): Remove
4899 (mi_cmd_stack_list_locals): Call mi_parse_print_values instead
4900 of parse_print_values.
4901 (mi_cmd_stack_list_args, mi_cmd_stack_list_variables): Likewise.
4902
4903 2013-05-31 Pedro Alves <pedro@codesourcery.com>
4904 Yao Qi <yao@codesourcery.com>
4905
4906 * tracepoint.c (all_tracepoint_actions_and_cleanup): Declare.
4907 (encode_actions): Move code to ...
4908 (all_tracepoint_actions_and_cleanup): ... here. New.
4909 (trace_dump_command): Likewise.
4910
4911 2013-05-30 Tom Tromey <tromey@redhat.com>
4912
4913 * symmisc.c (maintenance_expand_symtabs): Call do_cleanups.
4914
4915 2013-05-30 Tom Tromey <tromey@redhat.com>
4916
4917 * xml-support.c (gdb_xml_create_parser_and_cleanup): Rename from
4918 gdb_xml_create_parser_and_cleanup_1. Return a cleanup. Remove
4919 'old_chain' argument. Add 'parser_result' argument.
4920 (gdb_xml_create_parser_and_cleanup): Remove old version.
4921 (gdb_xml_parse_quick): Update.
4922 (xml_process_xincludes): Update.
4923 * xml-support.h (gdb_xml_create_parser_and_cleanup): Don't
4924 declare.
4925
4926 2013-05-30 Tom Tromey <tromey@redhat.com>
4927
4928 * probe.c (collect_probes): Check arguments for NULL before
4929 calling compile_rx_or_error.
4930 * utils.c (compile_rx_or_error): Require 'rx' to be non-NULL.
4931 Remove NULL return.
4932
4933 2013-05-30 Tom Tromey <tromey@redhat.com>
4934
4935 * infrun.c (adjust_pc_after_break): Introduce an outer null
4936 cleanup.
4937
4938 2013-05-30 Tom Tromey <tromey@redhat.com>
4939
4940 * mi/mi-cmd-var.c (varobj_update_one): Add an outer null cleanup.
4941
4942 2013-05-30 Tom Tromey <tromey@redhat.com>
4943
4944 * cli/cli-script.c (read_command_lines_1): Use a null cleanup
4945 for 'old_chain'. Do not check 'head' before processing
4946 cleanups.
4947
4948 2013-05-30 Tom Tromey <tromey@redhat.com>
4949
4950 * mi/mi-cmd-stack.c (list_arg_or_local): Remove
4951 "cleanup_tuple".
4952
4953 2013-05-30 Tom Tromey <tromey@redhat.com>
4954
4955 * dbxread.c (dbx_read_symtab): Declare 'back_to' in a more
4956 inner scope. Unconditionally call do_cleanups.
4957
4958 2013-05-30 Tom Tromey <tromey@redhat.com>
4959
4960 * source.c (find_and_open_source): Call do_cleanups.
4961
4962 2013-05-30 Tom Tromey <tromey@redhat.com>
4963
4964 * linux-thread-db.c (thread_db_load_search): Unconditionally
4965 call do_cleanups.
4966
4967 2013-05-30 Tom Tromey <tromey@redhat.com>
4968
4969 * solib-aix.c (solib_aix_bfd_open): Don't use a null cleanup
4970 for 'cleanup'; instead use a later one.
4971
4972 2013-05-30 Tom Tromey <tromey@redhat.com>
4973
4974 * python/py-breakpoint.c (bppy_get_commands): Use
4975 explicit, unconditional return.
4976 * python/py-frame.c (frapy_read_var): Likewise.
4977 * python/python.c (gdbpy_decode_line): Likewise.
4978
4979 2013-05-30 Tom Tromey <tromey@redhat.com>
4980
4981 * cp-namespace.c (cp_lookup_symbol_imports_or_template): Call
4982 do_cleanups on all return paths.
4983
4984 2013-05-30 Tom Tromey <tromey@redhat.com>
4985
4986 * top.c (execute_command): Discard 'cleanup_if_error' cleanups.
4987
4988 2013-05-30 Tom Tromey <tromey@redhat.com>
4989
4990 * stabsread.c (read_struct_type): Call do_cleanups along
4991 all return paths.
4992
4993 2013-05-30 Maciej W. Rozycki <macro@codesourcery.com>
4994
4995 * mips-linux-tdep.c: Adjust formatting throughout.
4996
4997 2013-05-30 Tom Tromey <tromey@redhat.com>
4998
4999 * mipsread.c (read_alphacoff_dynamic_symtab): Call do_cleanups
5000 along all return paths.
5001
5002 2013-05-30 Tom Tromey <tromey@redhat.com>
5003
5004 * symfile.c (find_separate_debug_file): Call do_cleanups
5005 along all return paths.
5006
5007 2013-05-30 Tom Tromey <tromey@redhat.com>
5008
5009 * symtab.c (search_symbols): Introduce a null cleanup for
5010 'retval_chain'.
5011
5012 2013-05-30 Tom Tromey <tromey@redhat.com>
5013
5014 * python/py-value.c (valpy_binop): Call do_cleanups before
5015 exiting loop.
5016
5017 2013-05-30 Tom Tromey <tromey@redhat.com>
5018
5019 * python/py-prettyprint.c (print_children): Remove extra
5020 do_cleanups call.
5021
5022 2013-05-30 Tom Tromey <tromey@redhat.com>
5023
5024 * python/py-frame.c (frapy_read_var): Call do_cleanups along
5025 all return paths.
5026
5027 2013-05-30 Tom Tromey <tromey@redhat.com>
5028
5029 * python/py-breakpoint.c (bppy_get_commands): Call do_cleanups
5030 along all return paths.
5031
5032 2013-05-30 Tom Tromey <tromey@redhat.com>
5033
5034 * cli/cli-logging.c (set_logging_redirect): Unconditionally
5035 call do_cleanups.
5036
5037 2013-05-30 Tom Tromey <tromey@redhat.com>
5038
5039 * varobj.c (c_value_of_root): Call do_cleanups along all
5040 return paths.
5041
5042 2013-05-30 Tom Tromey <tromey@redhat.com>
5043
5044 * tracepoint.c (trace_dump_command): Unconditionally call
5045 do_cleanups.
5046
5047 2013-05-30 Tom Tromey <tromey@redhat.com>
5048
5049 * breakpoint.c (output_thread_groups, parse_cmd_to_aexpr): Call
5050 do_cleanups earlier.
5051
5052 2013-05-30 Tom Tromey <tromey@redhat.com>
5053
5054 * machoread.c (macho_symfile_read): Assign first cleanup to
5055 'back_to'.
5056
5057 2013-05-30 Tom Tromey <tromey@redhat.com>
5058
5059 * m32r-rom.c (m32r_load): Call do_cleanups at all returns.
5060
5061 2013-05-30 Tom Tromey <tromey@redhat.com>
5062
5063 * mi/mi-main.c (list_available_thread_groups): Call do_cleanups.
5064
5065 2013-05-30 Tom Tromey <tromey@redhat.com>
5066
5067 * inf-ptrace.c (inf_ptrace_create_inferior): Unconditionally
5068 call discard_cleanups.
5069 (inf_ptrace_attach): Likewise.
5070
5071 2013-05-30 Tom Tromey <tromey@redhat.com>
5072
5073 * remote-mips.c (mips_exit_debug): Call do_cleanups on all
5074 return paths.
5075 (mips_initialize): Likewise.
5076 (common_open): Call do_cleanups.
5077
5078 2013-05-30 Tom Tromey <tromey@redhat.com>
5079
5080 * utils.c (internal_vproblem): Call do_cleanups.
5081
5082 2013-05-30 Tom Tromey <tromey@redhat.com>
5083
5084 * linespec.c (find_linespec_symbols): Don't reassign to 'cleanup'.
5085
5086 2013-05-30 Tom Tromey <tromey@redhat.com>
5087
5088 * cli/cli-script.c (setup_user_args): Don't return after error.
5089
5090 2013-05-30 Tom Tromey <tromey@redhat.com>
5091
5092 * somread.c (som_symtab_read): Call do_cleanups.
5093
5094 2013-05-30 Tom Tromey <tromey@redhat.com>
5095
5096 * printcmd.c (print_command_1): Unconditionally call do_cleanups.
5097
5098 2013-05-30 Tom Tromey <tromey@redhat.com>
5099
5100 * cli/cli-cmds.c (cd_command, alias_command): Call do_cleanups.
5101 * cli/cli-dump.c (restore_binary_file): Call do_cleanups.
5102 * interps.c (interpreter_exec_cmd): Call do_cleanups.
5103 * source.c (show_substitute_path_command): Call do_cleanups.
5104 (unset_substitute_path_command, set_substitute_path_command):
5105 Likewise.
5106 * symfile.c (load_command): Call do_cleanups.
5107
5108 2013-05-30 Tom Tromey <tromey@redhat.com>
5109
5110 * contrib/cleanup_check.py: New file.
5111 * contrib/gcc-with-excheck: Add option parsing.
5112
5113 2013-05-30 Joel Brobecker <brobecker@adacore.com>
5114
5115 * windows-nat.c (windows_delete_thread): Add missing space
5116 in cast expression.
5117
5118 2013-05-30 Hafiz Abid Qadeer <abidh@codesourcery.com>
5119
5120 * inferior.c (top level): Include tilde.h.
5121 (add_inferior_command): Call tilde_expand on the value of 'exec'
5122 argument.
5123
5124 2013-05-30 Pedro Alves <pedro@codesourcery.com>
5125 Yao Qi <yao@codesourcery.com>
5126
5127 * tracepoint.c (encode_actions_1): Remove parameter 't'.
5128 Caller update.
5129 (encode_actions): Likewise.
5130 * remote.c (remote_download_tracepoint): Caller update.
5131 * tracepoint.h (encode_actions): Update declaration.
5132
5133 2013-05-30 Pedro Alves <palves@redhat.com>
5134
5135 * python/python-internal.h (gdb_Py_DECREF): Cast OP to PyObject
5136 pointer.
5137
5138 2013-05-30 Yao Qi <yao@codesourcery.com>
5139
5140 * remote.c (remote_check_symbols): Remove unused parameter
5141 'objfile'.
5142 Declaration update.
5143 (remote_start_remote, remote_new_objfile): Caller update.
5144
5145 2013-05-30 Yao Qi <yao@codesourcery.com>
5146
5147 * mi/mi-cmds.c (mi_cmds): Define MI command
5148 '-exec-arguments' by macro DEF_MI_CMD_CLI_1 instead of
5149 DEF_MI_CMD_CLI.
5150
5151 2013-05-29 Pedro Alves <palves@redhat.com>
5152
5153 * remote.c (remote_insert_breakpoint, remote_remove_breakpoint)
5154 (remote_insert_watchpoint, remote_remove_watchpoint)
5155 (remote_insert_hw_breakpoint, remote_remove_hw_breakpoint)
5156 (remote_verify_memory, compare_sections_command)
5157 (remote_search_memory): Set the general process/thread on the
5158 remote side.
5159
5160 2013-05-29 Pedro Alves <palves@redhat.com>
5161
5162 * aarch64-tdep.c: Don't include "features/aarch64-without-fpu.c".
5163 (_initialize_aarch64_tdep): Don't call
5164 initialize_tdesc_aarch64_without_fpu.
5165 * features/Makefile (WHICH): Remove reference to
5166 aarch64-without-fpu.
5167 * features/aarch64-without-fpu.c: Delete file.
5168 * regformats/aarch64-without-fpu.dat: Delete file.
5169
5170 2013-05-28 Yao Qi <yao@codesourcery.com>
5171
5172 * tracepoint.c (stringify_collection_list): Remove parameter
5173 'string'.
5174 (encode_actions): Caller update. Remove local variables.
5175
5176 2013-05-24 Yao Qi <yao@codesourcery.com>
5177
5178 * tracepoint.c (TFILE_PID): Remove.
5179 (tfile_open): Don't add thread and inferior.
5180 (tfile_close): Don't set 'inferior_ptid'. Don't call
5181 exit_inferior_silent.
5182 (tfile_thread_alive): Remove.
5183 (init_tfile_ops): Don't set field 'to_thread_alive' of
5184 tfile_ops.
5185
5186 2013-05-23 Doug Evans <dje@google.com>
5187
5188 * contrib/cc-with-tweaks.sh (-p): Handle no dwo files.
5189
5190 2013-05-23 Pedro Alves <palves@redhat.com>
5191
5192 * common/filestuff.c [USE_WIN32API]: Define HAVE_SOCKETS.
5193 [HAVE_SYS_SOCKET_H]: Define HAVE_SOCKETS.
5194 (socket_mark_cloexec, gdb_socketpair_cloexec, gdb_socket_cloexec):
5195 Only define if HAVE_SOCKETS is defined.
5196 * configure.ac: Check for sys/socket.h.
5197 * config.in, configure: Regenerate.
5198
5199 2013-05-23 Pedro Alves <palves@redhat.com>
5200
5201 * dwarf2read.c (create_dwp_hash_table, create_dwo_in_dwp)
5202 (open_and_init_dwp_file): Use %s/pulongest instead of %u for
5203 printing uint32_t variables.
5204
5205 2013-05-23 Pedro Alves <palves@redhat.com>
5206
5207 * NEWS: Mention GDBserver range stepping support.
5208
5209 2013-05-23 Yao Qi <yao@codesourcery.com>
5210 Pedro Alves <palves@redhat.com>
5211
5212 * gdbthread.h (struct thread_control_state) <may_range_step>: New
5213 field.
5214 * infcmd.c (step_once, until_next_command): Enable range stepping.
5215 * infrun.c (displaced_step_prepare): Disable range stepping.
5216 (resume): Disable range stepping if stepping over a breakpoint or
5217 we have software watchpoints. If range stepping is enabled,
5218 assert the thread is in the stepping range.
5219 (clear_proceed_status_thread): Clear may_range_step.
5220 (handle_inferior_event): Disable range stepping as soon as we know
5221 the thread that hit the event. Re-enable it whenever we're going
5222 to step with a step range.
5223 * remote.c (struct vCont_action_support) <r>: New field.
5224 (use_range_stepping): New global.
5225 (remote_vcont_probe): Handle 'r' action.
5226 (append_resumption): Append an 'r' action if the thread may range
5227 step.
5228 (show_range_stepping): New function.
5229 (set_range_stepping): New function.
5230 (_initialize_remote): Call add_setshow_boolean_cmd to register the
5231 'set range-stepping' and 'show range-stepping' commands.
5232 * NEWS: Mention range stepping, the new vCont;r action, and the
5233 new "set/show range-stepping" commands.
5234
5235 2013-05-23 Yao Qi <yao@codesourcery.com>
5236 Pedro Alves <palves@redhat.com>
5237
5238 * remote.c (struct vCont_action_support): New struct.
5239 (struct remote_state) <support_vCont_t>: Remove field.
5240 <vCont_actions_support>: New field.
5241 (remote_vcont_probe, remote_stop_ns): Update.
5242
5243 2013-05-23 Yao Qi <yao@codesourcery.com>
5244 Pedro Alves <palves@redhat.com>
5245
5246 * gdbthread.h (pc_in_thread_step_range): New declaration.
5247 * thread.c (pc_in_thread_step_range): New function.
5248 * infrun.c (handle_inferior_event): Use it.
5249
5250 2013-05-23 Joel Brobecker <brobecker@adacore.com>
5251
5252 * mi/mi-cmd-break.c (mi_argv_to_format): Use xsnprintf instead
5253 of sprintf.
5254
5255 2013-05-22 Keith Seitz <keiths@redhat.com>
5256
5257 * ada-lang.c (is_known_support_routine): Add explicit free of
5258 'func_name' from find_frame_funname.
5259 (ada_unhandled_exception_name_addr_from_raise): Add cleanups
5260 for func_name from find_frame_funname.
5261 * python/py-frame.c (frapy_name): Add explicit free of
5262 'name' from find_frame_funname.
5263 * stack.c (find_frame_funname): Add comment explaining that
5264 funcp must be freed by the caller.
5265 Return copy of symbol names instead of pointers.
5266 (print_frame): Add a cleanup for 'funname' from
5267 find_frame_funname.
5268 * stack.h (find_frame_funname): Remove "const" from
5269 'funname' parameter.
5270
5271 2013-05-22 Tom Tromey <tromey@redhat.com>
5272
5273 PR c++/15401:
5274 * c-valprint.c (c_value_print): Use value_addr for
5275 references. Convert back to reference type with value_ref.
5276
5277 2013-05-22 Eli Zaretskii <eliz@gnu.org>
5278
5279 * windows-nat.c (handle_unload_dll): Don't call solib_add for the
5280 unloaded DLL, it will be done by handle_solib_event. See
5281 http://sourceware.org/ml/gdb-patches/2013-05/msg00713.html for the
5282 details.
5283
5284 2013-05-22 Phil Muldoon <pmuldoon@redhat.com>
5285
5286 * ui-out.c: Create typedef ui_out_level_p and define vector
5287 operations for that type.
5288 (struct ui_out): Use a vector instead of an array.
5289 (current_level): Return level from a vector.
5290 (push_level): Create a level in a vector.
5291 (pop_level): Delete a level in a vector.
5292 (ui_out_new): Create initial level zero level, and store in a
5293 vector.
5294 (ui_out_destroy): Add vector cleanup.
5295
5296 2013-05-22 Pedro Alves <palves@redhat.com>
5297
5298 * python/python-internal.h (gdb_Py_DECREF): Tag with
5299 "ARI: editCase function".
5300
5301 2013-05-21 Paul Pluzhnikov <ppluzhnikov@google.com>
5302
5303 * solib-svr4.c (svr4_free_so): Protect against NULL dereference.
5304
5305 2013-05-21 Pedro Alves <palves@redhat.com>
5306
5307 * python/py-prettyprint.c (apply_val_pretty_printer): Check
5308 whether PRINTER is NULL before installing a Py_DECREF cleanup.
5309 * python/py-utils.c (py_decref): Don't check for NULL before
5310 calling Py_DECREF.
5311
5312 2013-05-21 Pedro Alves <palves@redhat.com>
5313
5314 * python/py-utils.c (py_decref): Remove extra braces.
5315 (gdb_pymodule_addobject): Remove extra braces.
5316 * python-internal.h (gdb_Py_DECREF): New static inline function.
5317 (Py_DECREF): Redefine as calling gdb_Py_DECREF.
5318
5319 2013-05-21 Philippe Waroquiers <philippe.waroquiers@skynet.be>
5320
5321 * breakpoints.c (detach_breakpoints): Do not
5322 detach breakpoints locations with loc_type bp_loc_other.
5323
5324 2013-05-21 Jan Kratochvil <jan.kratochvil@redhat.com>
5325
5326 Workaround Python 2.6.
5327 * python/py-utils.c (gdb_pymodule_addobject): Wrap Py_DECREF into
5328 a block.
5329
5330 2013-05-21 Jan Kratochvil <jan.kratochvil@redhat.com>
5331
5332 Code cleanup: constification.
5333 * solib.c (solib_ops): Make return type and ops variable type const.
5334 (set_solib_ops): Make the new_ops parameter and ops variable const.
5335 (solib_find, solib_map_sections, clear_so, free_so, update_solib_list)
5336 (solib_add, solib_keep_data_in_core, clear_solib)
5337 (solib_create_inferior_hook, in_solib_dynsym_resolve_code)
5338 (reload_shared_libraries, solib_global_lookup): Make the ops variable
5339 const.
5340 * solib.h (set_solib_ops): Make the new_ops parameter const.
5341
5342 2013-05-21 Joel Brobecker <brobecker@adacore.com>
5343
5344 * data-directory/Makefile.in (SYSTEM_GDBINIT_SRCDIR): New
5345 variable.
5346 (VPATH): Add SYSTEM_GDBINIT_SRCDIR.
5347 (SYSTEM_GDBINIT_DIR, SYSTEM_GDBINIT_INSTALL_DIR)
5348 (SYSTEM_GDBINIT_FILES): New variables.
5349 (all): Add stamp-system-gdbinit.
5350 (stamp-system-gdbinit): New rule.
5351 (clean-system-gdbinit, install-system-gdbinit)
5352 (uninstall-system-gdbinit): New rules. Make them .PHONY.
5353 (install-only): Add dependency on install-system-gdbinit.
5354 (uninstall): Add dependency on uninstall-system-gdbinit.
5355 (clean): Add dependency on clean-system-gdbinit.
5356 * system-gdbinit/elinos.py: New file.
5357 * system-gdbinit/wrs-linux.py: New file.
5358
5359 2013-05-21 Joel Brobecker <brobecker@adacore.com>
5360
5361 * ada-lang.c (old_renaming_is_invisible): Fix cleanup leak.
5362
5363 2013-05-21 Hui Zhu <hui@codesourcery.com>
5364
5365 * breakpoint.c (dprintf_breakpoint_ops): Remove its static.
5366 * breakpoint.h (dprintf_breakpoint_ops): Add extern.
5367 * mi/mi-cmd-break.c (ctype.h): New include.
5368 (gdb_obstack.h): New include.
5369 (mi_argv_to_format, mi_cmd_break_insert_1): New.
5370 (mi_cmd_break_insert): Call mi_cmd_break_insert_1.
5371 (mi_cmd_dprintf_insert): New.
5372 * mi/mi-cmds.c (mi_cmds): Add "dprintf-insert".
5373 * mi/mi-cmds.h (mi_cmd_dprintf_insert): New extern.
5374
5375 2013-05-20 Tom Tromey <tromey@redhat.com>
5376
5377 * python/py-prettyprint.c (search_pp_list): Decref 'attr'.
5378
5379 2013-05-20 Tom Tromey <tromey@redhat.com>
5380
5381 * python/py-value.c (valpy_get_dynamic_type): Simplify
5382 dynamic_type assignment. Use Py_XINCREF.
5383
5384 2013-05-20 Tom Tromey <tromey@redhat.com>
5385
5386 * python/py-type.c (typy_fields): Unconditionally decref 'r'.
5387
5388 2013-05-20 Tom Tromey <tromey@redhat.com>
5389
5390 * python/py-frame.c (frapy_older, frapy_newer, gdbpy_newest_frame)
5391 (gdbpy_selected_frame): Move object-construction code
5392 out of TRY_CATCH.
5393
5394 2013-05-20 Tom Tromey <tromey@redhat.com>
5395
5396 * python/py-arch.c (gdbpy_initialize_arch): Use
5397 gdb_pymodule_addobject.
5398 * python/py-block.c (gdbpy_initialize_blocks): Use
5399 gdb_pymodule_addobject.
5400 * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Use
5401 gdb_pymodule_addobject.
5402 * python/py-cmd.c (gdbpy_initialize_breakpoints): Use
5403 gdb_pymodule_addobject.
5404 * python/py-event.c (gdbpy_initialize_event_generic): Use
5405 gdb_pymodule_addobject.
5406 * python/py-evtregistry.c (gdbpy_initialize_eventregistry): Use
5407 gdb_pymodule_addobject.
5408 * python/py-evts.c (add_new_registry): Use
5409 gdb_pymodule_addobject.
5410 (gdbpy_initialize_py_events): Likewise.
5411 * python/py-finishbreakpoint.c
5412 (gdbpy_initialize_finishbreakpoints): Use
5413 gdb_pymodule_addobject.
5414 * python/py-frame.c (gdbpy_initialize_frames): Use
5415 gdb_pymodule_addobject.
5416 * python/py-function.c (gdbpy_initialize_functions): Use
5417 gdb_pymodule_addobject.
5418 * python/py-inferior.c (gdbpy_initialize_inferior): Use
5419 gdb_pymodule_addobject.
5420 * python/py-infthread.c (gdbpy_initialize_thread): Use
5421 gdb_pymodule_addobject.
5422 * python/py-objfile.c (gdbpy_initialize_objfile): Use
5423 gdb_pymodule_addobject.
5424 * python/py-param.c (gdbpy_initialize_parameters): Use
5425 gdb_pymodule_addobject.
5426 * python/py-progspace.c (gdbpy_initialize_pspace): Use
5427 gdb_pymodule_addobject.
5428 * python/py-symbol.c (gdbpy_initialize_symbols): Use
5429 gdb_pymodule_addobject.
5430 * python/py-symtab.c (gdbpy_initialize_symtabs): Use
5431 gdb_pymodule_addobject.
5432 * python/py-type.c (gdbpy_initialize_types): Use
5433 gdb_pymodule_addobject.
5434 * python/py-utils.c (gdb_pymodule_addobject): New function.
5435 * python/py-value.c (gdbpy_initialize_values): Use
5436 gdb_pymodule_addobject.
5437 * python/python-internal.h (gdb_pymodule_addobject): Declare.
5438 * python/python.c (_initialize_python): Use
5439 gdb_pymodule_addobject.
5440
5441 2013-05-20 Tom Tromey <tromey@redhat.com>
5442
5443 * python/py-cmd.c (cmdpy_completer): Use explicit decref.
5444 * python/py-param.c (get_set_value, get_show_value): Use
5445 explicit decrefs.
5446 * python/python.c (start_type_printers, apply_type_printers):
5447 Use explicit decrefs.
5448
5449 2013-05-20 Tom Tromey <tromey@redhat.com>
5450
5451 * python/py-evts.c (gdbpy_initialize_py_events): Don't
5452 incref the module.
5453
5454 2013-05-20 Tom Tromey <tromey@redhat.com>
5455
5456 * python/python.c (gdbpy_run_events): Decref the result
5457 of PyObject_CallObject.
5458
5459 2013-05-20 Tom Tromey <tromey@redhat.com>
5460
5461 * python/py-symtab.c (set_sal): Use
5462 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION. Return -1 on error.
5463 (symtab_and_line_to_sal_object): Update.
5464
5465 2013-05-20 Tom Tromey <tromey@redhat.com>
5466
5467 * python/py-param.c (compute_enum_values): Decref 'item'.
5468
5469 2013-05-20 Tom Tromey <tromey@redhat.com>
5470
5471 * mi/mi-main.c: Include python-internal.h.
5472 (mi_cmd_list_features): Check gdb_python_initialized.
5473 * python/py-inferior.c (python_on_normal_stop, python_on_resume)
5474 (python_inferior_exit, python_new_objfile, add_thread_object)
5475 (delete_thread_object, py_free_inferior): Check
5476 gdb_python_initialized.
5477 * python/py-prettyprint.c (apply_val_pretty_printer): Check
5478 gdb_python_initialized.
5479 * python/py-type.c (save_objfile_types): Check
5480 gdb_python_initialized.
5481 * python/python-internal.h (gdb_python_initialized): Declare.
5482 * python/python.c (ensure_python_env): Throw exception if
5483 Python not initialized.
5484 (before_prompt_hook, source_python_script_for_objfile)
5485 (start_type_printers, apply_type_printers,
5486 free_type_printers): Check gdb_python_initialized.
5487 * varobj.c (varobj_get_display_hint)
5488 (dynamic_varobj_has_child_method, update_dynamic_varobj_children)
5489 (install_new_value_visualizer, varobj_set_visualizer)
5490 (value_get_print_value): Check gdb_python_initialized.
5491
5492 2013-05-20 Tom Tromey <tromey@redhat.com>
5493
5494 * python/py-arch.c (gdbpy_initialize_arch): Return 'int'.
5495 Check errors.
5496 * python/py-auto-load.c (gdbpy_initialize_auto_load): Return 'int'.
5497 * python/py-block.c (gdbpy_initialize_blocks): Return 'int'.
5498 Check errors.
5499 * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Return 'int'.
5500 Check errors.
5501 * python/py-cmd.c (gdbpy_initialize_commands): Return 'int'.
5502 Check errors.
5503 * python/py-event.c (gdbpy_initialize_event): Return 'int'.
5504 Check errors.
5505 * python/py-event.h (GDBPY_NEW_EVENT_TYPE): Change generated
5506 init function to return 'int'.
5507 * python/py-evtregistry.c (gdbpy_initialize_eventregistry):
5508 Return 'int'. Check errors.
5509 * python/py-evts.c (gdbpy_initialize_py_events): Return 'int'.
5510 Check errors.
5511 * python/py-finishbreakpoint.c (gdbpy_initialize_finishbreakpoints):
5512 Return 'int'. Check errors.
5513 * python/py-frame.c (gdbpy_initialize_frames): Return 'int'.
5514 Check errors.
5515 * python/py-function.c (gdbpy_initialize_functions): Return 'int'.
5516 Check errors.
5517 * python/py-gdb-readline.c (gdbpy_initialize_gdb_readline):
5518 Check errors.
5519 * python/py-inferior.c (gdbpy_initialize_inferior): Return 'int'.
5520 Check errors.
5521 * python/py-infthread.c (gdbpy_initialize_thread): Return 'int'.
5522 Check errors.
5523 * python/py-lazy-string.c (gdbpy_initialize_lazy_string): Return 'int'.
5524 Check errors.
5525 * python/py-objfile.c (gdbpy_initialize_objfile): Return 'int'.
5526 Check errors.
5527 * python/py-param.c (gdbpy_initialize_parameters): Return 'int'.
5528 Check errors.
5529 * python/py-progspace.c (gdbpy_initialize_pspace): Return 'int'.
5530 Check errors.
5531 * python/py-symbol.c (gdbpy_initialize_symbols): Return 'int'.
5532 Check errors.
5533 * python/py-symtab.c (gdbpy_initialize_symtabs): Return 'int'.
5534 Check errors.
5535 * python/py-type.c (gdbpy_initialize_types): Return 'int'.
5536 Check errors.
5537 * python/py-value.c (gdbpy_initialize_values): Return 'int'.
5538 Check errors.
5539 * python/python-internal.h (gdbpy_initialize_auto_load,
5540 gdbpy_initialize_values, gdbpy_initialize_frames,
5541 gdbpy_initialize_symtabs, gdbpy_initialize_commands,
5542 gdbpy_initialize_symbols, gdbpy_initialize_symtabs,
5543 gdbpy_initialize_blocks, gdbpy_initialize_types,
5544 gdbpy_initialize_functions, gdbpy_initialize_pspace,
5545 gdbpy_initialize_objfile, gdbpy_initialize_breakpoints,
5546 gdbpy_initialize_finishbreakpoints,
5547 gdbpy_initialize_lazy_string, gdbpy_initialize_parameters,
5548 gdbpy_initialize_thread, gdbpy_initialize_inferior,
5549 gdbpy_initialize_eventregistry, gdbpy_initialize_event,
5550 gdbpy_initialize_py_events, gdbpy_initialize_stop_event,
5551 gdbpy_initialize_signal_event,
5552 gdbpy_initialize_breakpoint_event,
5553 gdbpy_initialize_continue_event,
5554 gdbpy_initialize_exited_event, gdbpy_initialize_thread_event,
5555 gdbpy_initialize_new_objfile_event, gdbpy_initialize_arch):
5556 Update. Use CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
5557 * python/python.c (gdb_python_initialized): New global.
5558 (gdbpy_initialize_events): Return 'int'. Check errors.
5559 (_initialize_python): Check errors. Set
5560 gdb_python_initialized.
5561
5562 2013-05-20 Tom Tromey <tromey@redhat.com>
5563
5564 * python/py-finishbreakpoint.c (bpfinishpy_out_of_scope):
5565 Decref the reslut of PyObject_CallMethod.
5566
5567 2013-05-20 Tom Tromey <tromey@redhat.com>
5568
5569 * python/py-event.c (gdbpy_initialize_event_generic): Return
5570 early if PyType_Ready fails.
5571
5572 2013-05-20 Tom Tromey <tromey@redhat.com>
5573
5574 * python/py-type.c (make_fielditem): Add gdb_assert_not_reached
5575 as 'default' in the switch.
5576
5577 2013-05-20 Tom Tromey <tromey@redhat.com>
5578
5579 * python/py-inferior.c (gdbpy_inferiors): Update. Hoist
5580 get_addr_from_python calls out of TRY_CATCH.
5581 (infpy_write_memory, infpy_search_memory): Likewise.
5582 * python/py-utils.c (get_addr_from_python): Return negative
5583 value on error. Use TRY_CATCH.
5584 * python/python-internal.h (get_addr_from_python): Use
5585 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
5586
5587 2013-05-20 Tom Tromey <tromey@redhat.com>
5588
5589 * python/py-event.c (evpy_emit_event): Decref the
5590 result of PyObject_CallFunctionObjArgs.
5591
5592 2013-05-20 Tom Tromey <tromey@redhat.com>
5593
5594 * python/py-cmd.c (cmdpy_completer): Use iterator protocol.
5595 Correctly decref.
5596
5597 2013-05-20 Tom Tromey <tromey@redhat.com>
5598
5599 * python/py-cmd.c (cmdpy_init): Decref 'ds_obj'.
5600
5601 2013-05-20 Tom Tromey <tromey@redhat.com>
5602
5603 * python/py-event.h (gdbpy_initialize_event_generic): Use
5604 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
5605 * python/py-evts.c (add_new_registry): Use
5606 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
5607 * python/python-internal.h
5608 (CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION): New macro.
5609
5610 2013-05-20 Tom Tromey <tromey@redhat.com>
5611
5612 * python/py-arch.c (archpy_disassemble): Update.
5613 * python/py-type.c (typy_get_composite, typy_lookup_typename)
5614 (typy_lookup_type): Use GDB_PY_HANDLE_EXCEPTION.
5615 * python/py-utils.c (gdbpy_convert_exception): Return 'void'.
5616 * python/python-internal.h (CPYCHECKER_SETS_EXCEPTION): New
5617 macro.
5618 (GDB_PY_HANDLE_EXCEPTION): Update.
5619 (gdbpy_convert_exception): Update. Use CPYCHECKER_SETS_EXCEPTION.
5620
5621 2013-05-20 Tom Tromey <tromey@redhat.com>
5622
5623 * python/python-internal.h (events_object_type): Remove.
5624
5625 2013-05-20 Tom Tromey <tromey@redhat.com>
5626
5627 * python/py-event.h (evpy_emit_event): Use
5628 CPYCHECKER_STEALS_REFERENCE_TO_ARG.
5629 * python/python-internal.h (CPYCHECKER_STEALS_REFERENCE_TO_ARG):
5630 New macro.
5631
5632 2013-05-20 Tom Tromey <tromey@redhat.com>
5633
5634 * py-evtregistry.c (create_event_object): Decref
5635 eventregistry_object if PyList_New fails.
5636
5637 2013-05-20 Tom Tromey <tromey@redhat.com>
5638
5639 * py-cmd.c (gdbpy_string_to_argv): Check result of
5640 PyList_New.
5641
5642 2013-05-20 Tom Tromey <tromey@redhat.com>
5643
5644 * python/python.c (before_prompt_hook): Add cleanup to
5645 decref 'hook'.
5646
5647 2013-05-20 Tom Tromey <tromey@redhat.com>
5648
5649 * python/py-function.c (fnpy_init): Decref result of
5650 PyObject_GetAttrString.
5651
5652 2013-05-20 Tom Tromey <tromey@redhat.com>
5653
5654 * python/py-threadevent.c (get_event_thread): Use
5655 CPYCHECKER_RETURNS_BORROWED_REF.
5656 * python/python-internal.h (CPYCHECKER_RETURNS_BORROWED_REF):
5657 New define.
5658 (pspace_to_pspace_object, objfile_to_objfile_object)
5659 (find_thread_object): Use it.
5660
5661 2013-05-20 Tom Tromey <tromey@redhat.com>
5662
5663 * python/py-arch.c (arch_object_type): Use
5664 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5665 * python/py-block.c (block_syms_iterator_object_type):
5666 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5667 * python/py-bpevent.c (breakpoint_event_object_type):
5668 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5669 * python/py-cmd.c (cmdpy_object_type): Use
5670 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5671 * python/py-continueevent.c (continue_event_object_type):
5672 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5673 * python/py-event.h (GDBPY_NEW_EVENT_TYPE):
5674 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5675 * python/py-events.h (thread_event_object_type):
5676 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5677 * python/py-evtregistry.c (eventregistry_object_type): Use
5678 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5679 * python/py-exitedevent.c (exited_event_object_type):
5680 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5681 * python/py-finishbreakpoint.c (finish_breakpoint_object_type):
5682 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5683 * python/py-function.c (fnpy_object_type): Use
5684 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5685 * python/py-inferior.c (inferior_object_type, membuf_object_type):
5686 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5687 * python/py-infthread.c (thread_object_type): Use
5688 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5689 * python/py-lazy-string.c (lazy_string_object_type):
5690 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5691 * python/py-newobjfileevent.c (new_objfile_event_object_type):
5692 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5693 * python/py-objfile.c (objfile_object_type): Use
5694 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5695 * python/py-param.c (parmpy_object_type):
5696 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5697 * python/py-progspace.c (pspace_object_type):
5698 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5699 * python/py-signalevent.c (signal_event_object_type):
5700 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5701 * python/py-symtab.c (symtab_object_type, sal_object_type): Use
5702 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5703 * python/py-type.c (type_object_type, field_object_type)
5704 (type_iterator_object_type): Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5705 * python/py-internal.h (CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF): New
5706 define.
5707 (value_object_type, block_object_type, symbol_object_type)
5708 (event_object_type, stop_event_object_type, breakpoint_object_type)
5709 (frame_object_type): Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5710
5711 2013-05-20 Andreas Tobler <andreas@fgznet.ch>
5712
5713 * Makefile.in (ALL_TARGET_OBS): Add ppcfbsd-tdep.o.
5714 (ALLDEPFILES): Add ppcfbsd-nat.c and ppcfbsd-tdep.c.
5715
5716 2013-05-20 Doug Evans <dje@google.com>
5717
5718 When reading CU, stay in DWO. Be more tolerent of bad debug info.
5719 For Fission.
5720 * dwarf2read.c (struct dwarf2_per_cu_data): New member
5721 reading_dwo_directly.
5722 (struct signatured_type): New member dwo_unit.
5723 (struct die_reader_specs): New member comp_dir.
5724 (create_signatured_type_table_from_index): Use malloc for
5725 all_type_units instead of objfile's obstack.
5726 (create_all_type_units): Ditto.
5727 (fill_in_sig_entry_from_dwo_entry): New function.
5728 (add_type_unit): New function.
5729 (lookup_dwo_signatured_type): New function.
5730 (lookup_dwp_signatured_type): New function.
5731 (lookup_signatured_type): New arg cu. All callers updated.
5732 (init_cu_die_reader): Initialize comp_dir.
5733 (read_cutu_die_from_dwo): New arg stub_comp_dir. All callers updated.
5734 Change assert of matching type signatures to call error on mismatch.
5735 (lookup_dwo_unit): Add assert.
5736 (init_tu_and_read_dwo_dies): New function.
5737 (init_cutu_and_read_dies): Call it.
5738 (build_type_unit_groups): Handle case of no type unit groups created.
5739 (hash_dwo_file, eq_dwo_file): Handle missing comp_dir.
5740 (lookup_dwo_cutu): Tweak complaint.
5741 (dwarf2_free_abbrev_table): Check for NULL abbrev_table.
5742 (dwarf2_per_objfile_free): Free all_type_units.
5743
5744 2013-05-20 Joel Brobecker <brobecker@adacore.com>
5745
5746 * windows-nat.c (handle_unload_dll): Add missing empty line.
5747
5748 2013-05-20 Joel Brobecker <brobecker@adacore.com>
5749
5750 * dwarf2read.c (prototyped_function_p): New function.
5751 (read_subroutine_type): Use it.
5752
5753 2013-05-20 Joel Brobecker <brobecker@adacore.com>
5754
5755 * rs6000-aix-tdep.c: De-indent some example code provided
5756 as a comment.
5757
5758 2013-05-17 Edjunior Machado <emachado@linux.vnet.ibm.com>
5759
5760 * ppc-linux-nat.c (ppc_linux_region_ok_for_hw_watchpoint): Check if the
5761 region is ok for a hardware watchpoint using the new ptrace interface
5762 on Power servers.
5763
5764 2013-05-17 Doug Evans <dje@google.com>
5765
5766 * NEWS: Mention new maintenance commands check-symtabs, and
5767 expand-symtabs, and renamed check-psymtabs.
5768 * psymtab.c (maintenance_check_psymtabs): Renamed from
5769 maintenance_check_symtabs. Only process already-expanded symbol
5770 tables.
5771 (_initialize_psymtab): Update.
5772 * symmisc.c (maintenance_check_symtabs): New function.
5773 (maintenance_expand_name_matcher): New function
5774 (maintenance_expand_file_matcher): New function
5775 (maintenance_expand_symtabs): New function.
5776 (_initialize_symmisc): Add "mt check-symtabs" and "mt expand-symtabs"
5777 commands.
5778
5779 2013-05-17 Tom Tromey <tromey@redhat.com>
5780
5781 * python/py-inferior.c (infpy_read_memory): Don't call
5782 PyErr_SetString if PyObject_New fails.
5783 * python/py-frame.c (frame_info_to_frame_object): Don't call
5784 PyErr_SetString if PyObject_New fails.
5785
5786 2013-05-17 Pavel Chupin <pavel.v.chupin@intel.com>
5787
5788 * acinclude.m4: Add check for dlopen in libdl.
5789 * configure.ac: Ditto.
5790 * configure: Regenerate.
5791
5792 2013-05-17 Phil Muldoon <pmuldoon@redhat.com>
5793
5794 * frame.c (frame_stash): Convert to htab.
5795 (frame_addr_hash): New function.
5796 (frame_addr_hash_eq): New function.
5797 (frame_stash_create): Convert function to create
5798 a hash table.
5799 (frame_stash_add): Convert function to add an entry to a hash
5800 table.
5801 (frame_stash_find): Convert function to search the hash table.
5802 (frame_stash_invalidate): Convert function to empty the hash
5803 table.
5804 (get_frame_id): Only add to stash if a frame_id is created.
5805 (_initialize_frame): Call frame_stash_create.
5806
5807 2013-05-16 Yue Lu <hacklu.newborn@gmail.com> (tiny change)
5808
5809 * configure.ac: Ensure MIG is available when building for GNU Hurd
5810 hosts.
5811 * configure: Regenerate.
5812
5813 2013-05-16 Joel Brobecker <brobecker@adacore.com>
5814
5815 * dwarf2read.c (set_cu_language): Add DW_LANG_UPC handling.
5816
5817 2013-05-16 Joel Brobecker <brobecker@adacore.com>
5818
5819 * ada-lang.c (ada_make_symbol_completion_list): Make sure
5820 all cleanups are done before returning from this function.
5821
5822 2013-05-15 Joel Brobecker <brobecker@adacore.com>
5823
5824 * utils.h: #include "exceptions.h".
5825 (enum errors): Remove partial declaration.
5826
5827 2013-05-15 Joel Brobecker <brobecker@adacore.com>
5828
5829 * gdbarch.sh (core_xfer_shared_libraries_aix): New method.
5830 * gdbarch.h, gdbarch.c: Regenerate.
5831 * corelow.c (core_xfer_partial): Add TARGET_OBJECT_LIBRARIES_AIX
5832 handling.
5833
5834 * rs6000-aix-tdep.h: New file.
5835 * Makefile.in (HFILES_NO_SRCDIR): Add rs6000-aix-tdep.h.
5836 * rs6000-aix-tdep.c: Include "rs6000-aix-tdep.h" and
5837 "xml-utils.h".
5838 (struct field_info, struct ld_info_desc): New types.
5839 (ld_info32_desc, ld_info64_desc): New static constants.
5840 (struct ld_info): New type.
5841 (rs6000_aix_extract_ld_info): New function.
5842 (rs6000_aix_shared_library_to_xml): Likewise.
5843 (rs6000_aix_ld_info_to_xml): Likewise.
5844 (rs6000_aix_core_xfer_shared_libraries_aix): Likewise.
5845 (rs6000_aix_init_osabi): Add call to
5846 set_gdbarch_core_xfer_shared_libraries_aix.
5847 * rs6000-nat.c: Add "rs6000-aix-tdep.h" include.
5848 Remove "xml-utils.h" include.
5849 (LdInfo): Delete typedef.
5850 (ARCH64_DECL, LDI_FIELD, LDI_NEXT, LDI_FD, LDI_FILENAME):
5851 Delete macros.
5852 (rs6000_ptrace_ldinfo): Change return type to gdb_byte *.
5853 Adjust code accordingly.
5854 (rs6000_core_ldinfo): Delete, folded into
5855 rs6000_aix_core_xfer_shared_libraries_aix.
5856 (rs6000_xfer_shared_library): Delete.
5857 (rs6000_xfer_shared_libraries): Reimplement.
5858
5859 2013-05-15 Markus Metzger <markus.t.metzger@intel.com>
5860
5861 * record.c (record_goto_cmdlist): New.
5862 (cmd_record_goto): Split into this ...
5863 (cmd_record_goto_begin): ... this
5864 (cmd_record_goto_end): ... and this.
5865 (_initialize_record): Change "record goto" to prefix command.
5866 Add commands for "record goto begin" and "record goto end".
5867 Add an alias for "record goto start" to "record goto begin".
5868
5869 2013-05-14 Jan Kratochvil <jan.kratochvil@redhat.com>
5870
5871 * linespec.c (convert_linespec_to_sals): New comment for
5872 SOURCE_FILENAME assignment.
5873
5874 2013-05-14 Jan Kratochvil <jan.kratochvil@redhat.com>
5875
5876 * cleanups.c (restore_my_cleanups): Replace gdb_assert by
5877 internal_warning.
5878
5879 2013-05-14 Tom Tromey <tromey@redhat.com>
5880
5881 * eval.c (parse_and_eval_long): Make 'exp' const.
5882 * value.h (parse_and_eval_long): Update.
5883
5884 2013-05-14 Tom Tromey <tromey@redhat.com>
5885
5886 * ui-file.c (gdb_fopen): Make arguments const.
5887 * ui-file.h (gdb_fopen): Make arguments const.
5888
5889 2013-05-14 Tom Tromey <tromey@redhat.com>
5890
5891 * remote.c (remote_set_trace_notes): Make arguments const.
5892 * target.c (update_current_target): Update cast.
5893 * target.h (to_set_trace_notes): Make arguments const.
5894
5895 2013-05-14 Tom Tromey <tromey@redhat.com>
5896
5897 * go32-nat.c (go32_terminal_info): Make 'args' const.
5898 * inferior.h (child_terminal_info): Update.
5899 * inflow.c (child_terminal_info): Make 'args' const.
5900 * target.c (default_terminal_info): Make 'args' const.
5901 (debug_to_terminal_save_ours): Likewise.
5902 * target.h (struct target_ops) <to_terminal_info>: Make argument
5903 const.
5904
5905 2013-05-13 Tom Tromey <tromey@redhat.com>
5906
5907 * gcore.c (create_gcore_bfd): Make 'filename' const.
5908 * gcore.h (create_gcore_bfd): Make 'filename' const.
5909 * record-full.c (record_full_save): Make 'recfilename' const.
5910 * target.c (target_save_record): Make 'filename' const.
5911 * target.h (struct target_ops) <to_save_record>: Make 'filename'
5912 const.
5913 (target_save_record): Likewise.
5914
5915 2013-05-13 Tom Tromey <tromey@redhat.com>
5916
5917 PR gdb/15338:
5918 * dwarf2read.c (dwarf2_record_block_ranges): Ensure that the
5919 ranges section has been read.
5920
5921 2013-05-13 Tom Tromey <tromey@redhat.com>
5922
5923 PR exp/15364:
5924 * eval.c (evaluate_subexp_standard) <STRUCTOP_STRUCT,
5925 STRUCTOP_PTR>: Return a not_lval value for
5926 EVAL_AVOID_SIDE_EFFECTS.
5927 * opencl-lang.c (evaluate_subexp_opencl): Return a not_lval value
5928 for EVAL_AVOID_SIDE_EFFECTS.
5929
5930 2013-05-13 Joel Brobecker <brobecker@adacore.com>
5931
5932 * rs6000-aix-tdep.c (rs6000_push_dummy_call): Convert
5933 floating point registers to register type before storing
5934 value.
5935 * rs6000-lynx178-tdep.c (rs6000_lynx178_push_dummy_call):
5936 Likewise.
5937
5938 2013-05-10 Joel Brobecker <brobecker@adacore.com>
5939 Tom Tromey <tromey@redhat.com>
5940
5941 * common/filestuff.c (mark_fd_no_cloexec, unmark_fd_no_cloexec):
5942 New functions.
5943 * common/filestuff.c (mark_fd_no_cloexec, unmark_fd_no_cloexec):
5944 Declare.
5945 * darwin-nat.c (darwin_pre_ptrace): Use mark_fd_no_cloexec.
5946 (darwin_ptrace_him): Use unmark_fd_no_cloexec.
5947 * inf-ttrace.c (do_cleanup_pfds): Use unmark_fd_no_cloexec.
5948 (inf_ttrace_prepare): Use mark_fd_no_cloexec.
5949
5950 2013-05-10 Freddie Chopin <freddie_chopin@op.pl>
5951 Tom Tromey <tromey@redhat.com>
5952
5953 PR build/15414:
5954 * configure: Rebuild.
5955 * configure.ac (build_warnings): Do not use -Wformat-nonliteral
5956 with -Wno-format.
5957
5958 2013-05-10 Pedro Alves <palves@redhat.com>
5959
5960 * remote.c (_initialize_remote): Fix spelling of
5961 qXfer:traceframe-info:read packet in packet config command.
5962
5963 2013-05-10 David Taylor <dtaylor@emc.com>
5964
5965 PR remote/15455
5966
5967 * remote.c (remote_trace_set_readonly_regions): Do not overwrite
5968 "QTro" at start of packet.
5969
5970 2013-05-10 Joel Brobecker <brobecker@adacore.com>
5971
5972 * solib-aix.c (solib_aix_relocate_section_addresses):
5973 For the .bss section action, apply the same offset as
5974 the .data section.
5975
5976 2013-05-10 Joel Brobecker <brobecker@adacore.com>
5977
5978 * solib-aix.c (solib_aix_relocate_section_addresses):
5979 Remove FIXME comment.
5980
5981 2013-05-10 Joel Brobecker <brobecker@adacore.com>
5982
5983 PR tdep/15420:
5984 * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
5985 New functions, directly copied from sparc-sol-thread.c.
5986 * sparc-sol-thread.c: Delete.
5987 * configure.ac: Remove code handling sparc-solaris-thread.c.
5988 * configure: Regenerate.
5989
5990 2013-05-10 Phil Muldoon <pmuldoon@redhat.com>
5991
5992 * stack.c (backtrace_command_1): Add "no-filters", and Python frame
5993 filter logic.
5994 (backtrace_command): Add "no-filters" option parsing.
5995 (_initialize_stack): Alter help to reflect "no-filters" option.
5996 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-framefilter.o
5997 (SUBDIR_PYTHON_SRCS): Add py-framefilter.c
5998 (py-frame.o): Add target
5999 * data-directory/Makefile.in (PYTHON_DIR): Add Python frame
6000 filter files.
6001 * python/python.h: Add new frame filter constants, and flag enum.
6002 (apply_frame_filter): Add definition.
6003 * python/python.c (apply_frame_filter): New non-Python
6004 enabled function.
6005 * python/py-utils.c (py_xdecref): New function.
6006 (make_cleanup_py_xdecref): Ditto.
6007 * python/py-objfile.c: Declare frame_filters dictionary.
6008 (objfpy_dealloc): Add frame_filters dealloc.
6009 (objfpy_new): Initialize frame_filters attribute.
6010 (objfile_to_objfile_object): Ditto.
6011 (objfpy_get_frame_filters): New function.
6012 (objfpy_set_frame_filters): New function.
6013 * python/py-progspace.c: Declare frame_filters dictionary.
6014 (pspy_dealloc): Add frame_filters dealloc.
6015 (pspy_new): Initialize frame_filters attribute.
6016 (pspacee_to_pspace_object): Ditto.
6017 (pspy_get_frame_filters): New function.
6018 (pspy_set_frame_filters): New function.
6019 * python/py-framefilter.c: New file.
6020 * python/lib/gdb/command/frame_filters.py: New file.
6021 * python/lib/gdb/frames.py: New file.
6022 * python/lib/gdb/__init__.py: Initialize global frame_filters
6023 dictionary
6024 * python/lib/gdb/FrameDecorator.py: New file.
6025 * python/lib/gdb/FrameIterator.py: New file.
6026 * mi/mi-cmds.c (mi_cmds): Add frame filters command.
6027 * mi/mi-cmds.h: Declare.
6028 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames): Add
6029 --no-frame-filter logic, and Python frame filter logic.
6030 (stack_enable_frame_filters): New function.
6031 (parse_no_frame_option): Ditto.
6032 (mi_cmd_stack_list_frames): Add --no-frame-filter and Python frame
6033 filter logic.
6034 (mi_cmd_stack_list_locals): Ditto.
6035 (mi_cmd_stack_list_args): Ditto.
6036 (mi_cmd_stack_list_variables): Ditto.
6037 * NEWS: Add frame filter note.
6038
6039 2013-05-09 Doug Evans <dje@google.com>
6040
6041 * symfile.c (syms_from_objfile_1): Delete args offsets, num_offsets.
6042 All callers updated.
6043 (syms_from_objfile): Ditto. Make static.
6044 (symbol_file_add_with_addrs): Renamed from
6045 symbol_file_add_with_addrs_or_offsets. Delete args offsets,
6046 num_offsets. All callers updated.
6047 * symfile.h (syms_from_objfile): Delete.
6048
6049 * symfile.c (decrement_reading_symtab): Add assert.
6050 (increment_reading_symtab): Ditto.
6051
6052 2013-05-09 Joel Brobecker <brobecker@adacore.com>
6053
6054 * source.c (forward_search_command): Replace call to getc
6055 by call to fgetc.
6056 (reverse_search_command): Likewise.
6057
6058 2013-05-08 Doug Evans <dje@google.com>
6059
6060 * psymtab.c (expand_symtabs_matching_via_partial): Fix file name
6061 matching test.
6062
6063 2013-05-08 Joel Brobecker <brobecker@adacore.com>
6064
6065 * sol-thread.c (info_cb): Factorize the code a little.
6066
6067 2013-05-08 Joel Brobecker <brobecker@adacore.com>
6068
6069 * sol-thread.c (info_cb): Rework the output of the "maintenance
6070 info sol-threads" command a bit.
6071
6072 2013-05-08 Joel Brobecker <brobecker@adacore.com>
6073
6074 * sol-thread.c (info_cb) [ti.ti_state == TD_THR_SLEEP]:
6075 Replace ti.ti_startfunc by ti.ti_pc.
6076
6077 2013-05-08 Joel Brobecker <brobecker@adacore.com>
6078
6079 * solib-aix.c (solib_aix_free_library_list): New function
6080 for the case where HAVE_LIBEXPAT is not defined.
6081
6082 2013-05-07 Sergio Durigan Junior <sergiodj@redhat.com>
6083
6084 PR breakpoints/15413:
6085 * breakpoint.c (condition_completer): Simplify the code to
6086 disconsider multiple locations of breakpoints when completing the
6087 "condition" command.
6088
6089 2013-05-07 Pierre Muller <muller@sourceware.org>
6090
6091 * common/linux-btrace.c: ARI fix: Include "gdb_wait.h"
6092 instead of <sys/wait.h>.
6093
6094 2013-05-07 Pierre Muller <muller@sourceware.org>
6095
6096 * nios2-tdep.c (nios2_dwarf_reg_to_regnum): ARI fix: remove
6097 trailing new line from warning message.
6098
6099 2013-05-07 Pierre Muller <muller@sourceware.org>
6100
6101 * contrib/ari/gdb_ari.sh (SOLIB_ADD, SOLIB_CREATE_INFERIOR_HOOK)
6102 (PC_SOLIB): Change type from ari_deprecate to ari_regression.
6103
6104 2013-05-07 Joel Brobecker <brobecker@adacore.com>
6105
6106 * rs6000-nat.c (rs6000_core_ldinfo): Remove '\n' at end of
6107 error message (ARI fix).
6108
6109 2013-05-07 Joel Brobecker <brobecker@adacore.com>
6110
6111 * features/library-list-aix.dtd: Replace library-list by
6112 library-list-aix.
6113 * rs6000-nat.c: Replace library-list by library-list-aix
6114 throughout.
6115 * solib-aix.c: Likewise.
6116
6117 2013-05-07 Joel Brobecker <brobecker@adacore.com>
6118
6119 * target.h (enum target_object) [TARGET_OBJECT_LIBRARIES_AIX]:
6120 Renames TARGET_OBJECT_AIX_LIBRARIES.
6121 * rs6000-nat.c: Replace TARGET_OBJECT_AIX_LIBRARIES with
6122 TARGET_OBJECT_LIBRARIES_AIX throughout.
6123 * solib-aix.c: Likwise.
6124
6125 2013-05-07 Yao Qi <yao@codesourcery.com>
6126
6127 * solib-dsbt.c (struct dsbt_info) <enable_break2_done>: Remove.
6128 (get_dsbt_info, enable_break, dsbt_clear_solib): Update.
6129
6130 2013-05-07 Yao Qi <yao@codesourcery.com>
6131
6132 * solib-dsbt.c (enable_break): Declare.
6133 (dsbt_current_sos): Remove call to enable_break2.
6134 (enable_break2): Rename to enable_break. Set solib breakpoint
6135 on '_dl_debug_state'.
6136 (enable_break): Remove.
6137
6138 2013-05-07 Luis Machado <lgustavo@codesourcery.com>
6139
6140 * ppc-linux-nat.c (ppc_linux_new_thread): Clear the new thread's
6141 debug state prior to replicating existing hardware watchpoints or
6142 breakpoints.
6143
6144 2013-05-07 Jan Kratochvil <jan.kratochvil@redhat.com>
6145
6146 * gcore.c (gcore_create_callback): Ignore sections with
6147 separate_debug_objfile_backlink != NULL.
6148
6149 2013-05-06 Sandra Loosemore <sandra@codesourcery.com>
6150 Andrew Jenner <andrew@codesourcery.com>
6151 Chung-Lin Tang <cltang@codesourcery.com>
6152 Julian Brown <julian@codesourcery.com>
6153
6154 Based on the nios2-elf port from Altera Corporation.
6155
6156 * Makefile.in (ALL_TARGET_OBS): Add nios2-tdep.o and
6157 nios2-linux-tdep.o.
6158 (HFILES_NO_SRCDIR): Add nios2-tdep.h.
6159 (ALLDEPFILES): Add nios2-tdep.c and nios2-linux-tdep.c.
6160 * configure.tgt: Add nios2*-*-linux* and nios2*-*-* targets.
6161 * nios2-tdep.h: New.
6162 * nios2-tdep.c: New.
6163 * nios2-linux-tdep.c: New.
6164 * features/Makefile (WHICH): Add nios2-linux.
6165 (nios2-linux-expedite): Set.
6166 * features/nios2-cpu.xml: New.
6167 * features/nios2.xml: New.
6168 * features/nios2-linux.xml: New.
6169 * features/nios2.c: New (autogenerated).
6170 * features/nios2-linux.c: New (autogenerated).
6171 * regformats/nios2-linux.dat: New (autogenerated).
6172 * NEWS (Changes since GDB 7.6): Add new Nios II targets
6173 and commands.
6174
6175 2013-05-06 Doug Evans <dje@google.com>
6176
6177 * symfile.c: Whitespace cleanup.
6178
6179 * solist.h (struct target_so_ops): New member clear_so.
6180 * solib-svr4.c (svr4_clear_so): New function.
6181 (_initialize_svr4_solib): Set svr4_so_ops.clear_so.
6182 * solib.c (clear_so): Renamed from free_so_symbols.
6183 All callers updated. Call target clear_so if it exists.
6184
6185 2013-05-06 Tom Tromey <tromey@redhat.com>
6186
6187 * ada-lang.c (ada_value_primitive_packed_val): Don't
6188 call value_incref.
6189 * value.c (set_value_parent): Incref the new parent and decref
6190 the old parent.
6191 (value_copy, value_primitive_field): Use set_value_parent.
6192
6193 2013-05-06 Tom Tromey <tromey@redhat.com>
6194
6195 * dwarf2loc.c (invalid_synthetic_pointer): Move earlier.
6196 (indirect_pieced_value): Call dwarf2_fetch_constant_bytes
6197 if needed.
6198 * dwarf2loc.h (dwarf2_fetch_constant_bytes): Declare.
6199 * dwarf2read.c (write_constant_as_bytes)
6200 (dwarf2_fetch_constant_bytes): New functions.
6201
6202 2013-05-06 Tom Tromey <tromey@redhat.com>
6203
6204 * dwarf2read.c (dwarf2_const_value_data): Remove unused
6205 parameters.
6206 (dwarf2_const_value_attr): Update.
6207
6208 2013-05-06 Tom Tromey <tromey@redhat.com>
6209
6210 * somread.c (som_symfile_offsets): Add 'const' to addrs.
6211 * machoread.c (macho_symfile_offsets): Add 'const' to addrs.
6212 * xcoffread.c (xcoff_symfile_offsets): Add 'const' to addrs.
6213 Remove declaration.
6214
6215 2013-05-06 Tom Tromey <tromey@redhat.com>
6216
6217 * dwarf2read.c (dwarf2_const_value_attr): Use 'obstack', not
6218 objfile's obstack.
6219
6220 2013-05-06 Doug Evans <dje@google.com>
6221
6222 * dbxread.c (process_one_symbol): Constify section_offsets parameter.
6223 * stabsread.h (process_one_symbol): Update declaration.
6224 * dwarf2read.c (dw2_relocate): Constify new_offsets, delta parameters.
6225 * elfread.c (elf_symfile_relocate_probe): Ditto.
6226 * psymtab.c (relocate_psymtabs): Ditto.
6227 * objfiles.c (objfile_relocate1): Constify new_offsets parameter.
6228 (objfile_relocate): Ditto.
6229 * objfiles.h (objfile_relocate): Update declaration.
6230 * symfile.c (relative_addr_info_to_section_offsets): Constify
6231 addrs parameter.
6232 (default_symfile_offsets): Ditto.
6233 (syms_from_objfile_1): Constify offsets parameter.
6234 (syms_from_objfile): Ditto.
6235 (symbol_file_add_with_addrs_or_offsets): Ditto.
6236 (symfile_map_offsets_to_segments): Constify data parameter.
6237 * symfile.h (struct quick_symbol_functions): Constify new_offsets,
6238 delta parameters of member relocate.
6239 (struct sym_probe_fns): Constify new_offsets,
6240 delta parameters of member sym_relocate_probe.
6241 (struct sym_fns): Constify section_addr_info parameter of member
6242 sym_offsets.
6243 (relative_addr_info_to_section_offsets): Update declaration.
6244 (default_symfile_offsets): Ditto.
6245 (syms_from_objfile): Ditto.
6246 (symfile_map_offsets_to_segments): Ditto.
6247
6248 * symfile.c (syms_from_objfile_1): Use correct section count when
6249 objfile->sf == NULL.
6250
6251 2013-05-06 Mike Frysinger <vapier@gentoo.org>
6252
6253 * common/linux-btrace.c (intel_supports_btrace): Fix indentation.
6254
6255 2013-05-06 Doug Evans <dje@google.com>
6256
6257 * psympriv.h (struct partial_symtab): Augment comment for member
6258 section_offsets.
6259
6260 2013-05-06 Joel Brobecker <brobecker@adacore.com>
6261
6262 Reimplement shared library support on ppc-aix...
6263 * target.h (TARGET_OBJECT_AIX_LIBRARIES): New target_object enum.
6264 * features/library-list-aix.dtd: New file.
6265 * solib-aix.h, solib-aix.c: New file.
6266 * rs6000-aix-tdep.c: #include "solib.h" and "solib-aix.h".
6267 (rs6000_find_toc_address_hook): Delete.
6268 (rs6000_push_dummy_call): Rewrite code setting the TOC value.
6269 (rs6000_aix_init_osabi): Register solib_aix_so_ops.
6270 * rs6000-nat.c: Remove "xcoffsolib.h" include. Include
6271 "xml-utils.h".
6272 (map_vmap, vmap_exec, vmap_ldinfo, add_vmap, objfile_symbol_add)
6273 (vmap_symtab, fixup_breakpoints): Delete.
6274 (rs6000_xfer_shared_libraries): New function.
6275 (rs6000_xfer_partial): Add TARGET_OBJECT_AIX_LIBRARIES handling.
6276 (vmap_secs, bss_data_overlap, vmap_add_symbols): Delete.
6277 (xcoff_relocate_symtab, xcoff_relocate_core): Delete.
6278 (rs6000_ptrace_ldinfo, rs6000_core_ldinfo)
6279 (rs6000_xfer_shared_library): New function.
6280 (find_toc_address): Delete.
6281 (_initialize_rs6000_nat): Do not set rs6000_find_toc_address_hook.
6282 * rs6000-tdep.h (rs6000_find_toc_address_hook): Remove.
6283 * xcoffread.c (record_minimal_symbol): Reloate symbol address
6284 before creating minimal symbol. Adjust function description
6285 accordingly.
6286 (scan_xcoff_symtab): Replace call to
6287 prim_record_minimal_symbol_and_info by call to
6288 record_minimal_symbol.
6289 (xcoff_symfile_offsets): Reimplement mostly as a wrapper
6290 around default_symfile_offsets.
6291 * configure.tgt: Add solib-aix.o to gdb_target_obs for
6292 powerpc-aix targets.
6293 * config/rs6000/nm-rs6000.h: Delete.
6294 * config/powerpc/aix.mh (NAT_FILE): Delete.
6295 (NATDEPFILES): Remove xcoffsolib.o.
6296 * Makefile.in (XMLFILES): Add library-list-aix.dtd.
6297 (ALL_TARGET_OBS): Add solib-aix.o.
6298 (HFILES_NO_SRCDIR): Remove xcoffsolib.h and
6299 config/rs6000/nm-rs6000.h. Add solib-aix.h.
6300 (ALLDEPFILES): Add solib-aix.c. Remove xcoffsolib.c.
6301 * xcoffsolib.h, xcoffsolib.c: Delete.
6302
6303 * solib.c (reload_shared_libraries): Remove reference to
6304 SOLIB_CREATE_INFERIOR_HOOK.
6305 * breakpoint.c (handle_solib_event): Remove reference to SOLIB_ADD.
6306 (disable_breakpoints_in_shlibs): Remove reference to PC_SOLIB.
6307 (momentary_bkpt_re_set): Replace SOLIB_ADD by solib_add in
6308 comment.
6309 * corelow.c (deprecated_core_resize_section_table): Delete.
6310 * exec.c: Remove include of xcoffsolib.h".
6311 (map_vmap, vmap): Delete.
6312 (exec_close_1): Remove references to vmap.
6313 (exec_file_attach): Remove vmap handling code, and reference
6314 to DEPRECATED_IBM6000_TARGET.
6315 (bfdsec_to_vmap): Delete.
6316 (exec_files_info): Remove block of code handling VMAP.
6317 * infcmd.c (post_create_inferior): Remove reference to
6318 SOLIB_CREATE_INFERIOR_HOOK and SOLIB_ADD.
6319 * infrun.c (follow_exec): Remove reference to
6320 SOLIB_CREATE_INFERIOR_HOOK.
6321 * stack.c (print_frame): Remove reference to PC_SOLIB.
6322 * solib-dsbt.c (dsbt_current_sos): Adjust comment.
6323 (dsbt_relocate_main_executable): Likewise.
6324 * solib-frv.c (frv_current_sos): Likewise.
6325
6326 2013-05-06 Joel Brobecker <brobecker@adacore.com>
6327
6328 * sol-thread.c (rw_common): Cast BUF to "gdb_byte *" in calls
6329 to target_write_memory and target_read_memory.
6330
6331 2013-05-06 Joel Brobecker <brobecker@adacore.com>
6332
6333 * darwin-nat.c (darwin_setup_fake_stop_event): New function.
6334 (darwin_attach): Adjust using darwin_setup_fake_stop_event.
6335
6336 2013-05-06 Joel Brobecker <brobecker@adacore.com>
6337
6338 * darwin-nat.c: Replace all "%x" instances in format strings
6339 into "0x%x" throughout.
6340
6341 2013-05-06 Joel Brobecker <brobecker@adacore.com>
6342
6343 * darwin-nat.c (darwin_mourn_inferior): Replace call to
6344 gdb_assert by call to MACH_CHECK_ERROR.
6345 (darwin_attach_pid): Raise an error rather than a failed
6346 assertion when various system calls failed. Report a warning
6347 instead of raising a failed assertion when PREV_NOT is not NULL
6348 after call to mach_port_request_notification.
6349 (darwin_ptrace_me): Raise an error rather than a failed
6350 assertion when read returns nonzero.
6351
6352 2013-05-06 Joel Brobecker <brobecker@adacore.com>
6353
6354 * amd64-darwin-tdep.c: Remove #include "gdb_assert.h".
6355
6356 2013-05-05 Jan Kratochvil <jan.kratochvil@redhat.com>
6357
6358 * cleanups.c (restore_my_cleanups): New gdb_assert for SENTINEL_CLEANUP.
6359
6360 2013-05-05 Jan Kratochvil <jan.kratochvil@redhat.com>
6361
6362 * event-top.c (display_gdb_prompt): Call missing do_cleanups.
6363 * infcmd.c (get_return_value) <!stop_regs>: Do not overwrite CLEANUP.
6364 * symfile.c (symfile_bfd_open): New variable back_to. Do not leave
6365 a stale cleanup. Fix double free of NAME.
6366
6367 2013-05-04 Eli Zaretskii <eliz@gnu.org>
6368
6369 * windows-nat.c (windows_delete_thread): Accept an additional
6370 argument, the thread's exit code, and announce thread death when
6371 print_thread_events is non-zero and we are deleting a thread that
6372 is not the main thread.
6373 (get_windows_debug_event): Pass thread exit code to
6374 windows_delete_thread.
6375
6376 2013-05-03 Kevin Buettner <kevinb@redhat.com>
6377
6378 * v850-tdep.c (elf-bfd.h, elf/v850.h): Include.
6379 (R_149_REGNUM, E_NUM_OF_V850E2_REGS, E_SELID_1_R0_REGNUM)
6380 (E_SELID_1_R31_REGNUM, E_SELID_2_R0_REGNUM, E_SELID_2_R31_REGNUM)
6381 (E_SELID_3_R0_REGNUM, E_SELID_3_R31_REGNUM, E_SELID_4_R0_REGNUM)
6382 (E_SELID_4_R31_REGNUM, E_SELID_5_R0_REGNUM, E_SELID_5_R31_REGNUM)
6383 (E_SELID_6_R0_REGNUM, E_SELID_6_R31_REGNUM, E_SELID_7_R0_REGNUM, E_SELID_7_R31_REGNUM)
6384 (E_VR0_REGNUM, E_VR31_REGNUM, E_NUM_OF_V850E3V5_REGS): Define.
6385 (v850_abi, V850_ABI_GCC, V850_ABI_RH850): New enum and constants.
6386 (gdbarch_tdep): New struct.
6387 (v850e2_register_name): Use E_NUM_OF_V850E2_REGS instead of
6388 E_NUM_REGS.
6389 (v850e3v5_register_name): New function.
6390 (v850_register_type): v850e3v5 vector registers are 64-bits wide.
6391 (v850_use_struct_convention): Add `gdbarch' parameter. Add new
6392 code handling the struct return conventions for the RH850 ABI.
6393 Update all callers.
6394 (v850_eight_byte_align_p): New function.
6395 (v850_push_call_dummy): Push structs by value, not by reference
6396 for the RH850 ABI. Add support for eight byte alignment.
6397 (v850_dbtrap_breakpoint_from_pc): New function.
6398 (v850_gdbarch_init): Add ABI detection code. Register
6399 v850e3v5_register_name for the v850e3v5 architecture. Set the
6400 number of registers for v850e3v5. Register
6401 v850_dbtrap_breakpoint_from_pc as appropriate.
6402 (_initialize_gdbarch_init): Registration bfd_arch_v850_rh850.
6403
6404 2013-05-03 Doug Evans <dje@google.com>
6405
6406 * objfiles.c (objfile_relocate): Use gdb_bfd_count_sections instead
6407 of bfd_count_sections.
6408 * solib-target.c (solib_target_relocate_section_addresses): Ditto.
6409 * symfile.c (default_symfile_offsets): Ditto.
6410 (syms_from_objfile_1): Ditto. Make dummy addrs list an array of
6411 one entry, not bfd_count_sections entries.
6412
6413 2013-05-03 Kevin Buettner <kevinb@redhat.com>
6414
6415 * rl78-tdep.c (rl78_register_reggroup_p): Include SP in the
6416 `save' and `restore' register groups. Don't include SPL
6417 or SPH in these groups.
6418 (rl78_dwarf_reg_to_regnum): Adjust mapping for
6419 RL78_PC_REGNUM. Add mappings for RL78_PSW_REGNUM,
6420 RL78_ES_REGNUM, and RL78_CS_REGNUM.
6421 (rl78_gdbarch_init): Set `dwarf2_addr_size' to 4. Invoke
6422 dwarf2_append_unwinders().
6423
6424 2013-05-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
6425
6426 * break-catch-sig.c (signal_catchpoint_breakpoint_hit): Do not
6427 ignore SIGINT and SIGTRAP in case these internal signals are
6428 caught explicitely.
6429
6430 2013-05-01 Joel Brobecker <brobecker@adacore.com>
6431
6432 * darwin-nat.c (darwin_read_write_inferior): Change types
6433 of parameters rdaddr and wraddr to "gdb_byte *". Change type
6434 of copy_count to "mach_msg_type_number_t".
6435 (darwin_read_dyld_info): Change type of parameter
6436 rdaddr to "gdb_byte *".
6437
6438 2013-05-01 Joel Brobecker <brobecker@adacore.com>
6439
6440 * solib-ia64-hpux.c (ia64_hpux_read_dynamic_info): Change cast
6441 of &info->load_map from "char *" to "gdb_byte *".
6442
6443 2013-05-01 Joel Brobecker <brobecker@adacore.com>
6444
6445 * ia64-tdep.c (ia64_access_fpreg): Change cast of val
6446 from "char *" to "gdb_byte *".
6447 (ia64_access_rse_fpreg, ia64_access_mem): Likewise.
6448
6449 2013-04-30 Doug Evans <dje@google.com>
6450
6451 * dwarf2read.c (lookup_dwo_unit): Return NULL if DWO not found.
6452 (init_cutu_and_read_dies): Flag a complaint, not error, for bad
6453 DWO stub. If DWO isn't found, just use stub.
6454 (lookup_dwo_cutu): Don't try DWO if there's a DWP file.
6455
6456 * dwarf2read.c (dw2_find_symbol_file): Initialize filename before
6457 calling init_cutu_and_read_dies.
6458
6459 2013-03-27 Walfred Tedeschi <walfred.tedeschi@intel.com>
6460
6461 * target-descriptions.c (maint_print_c_tdesc_cmd):
6462 Add case to parse structures as register types and
6463 bitfields.
6464
6465 2013-04-30 Walfred Tedeschi <walfred.tedeschi@intel.com>
6466
6467 * MAINTAINERS (Write After Approval): Add myself to the list.
6468
6469 2013-04-30 Joel Brobecker <brobecker@adacore.com>
6470
6471 * sol-thread.c (rw_common): Change type of parameter "buf"
6472 to "gdb_byte *".
6473 (ps_pdwrite, ps_ptwrite): Cast parameter "buf" in call to
6474 rw_common to "gdb_byte *" instead of "char *".
6475
6476 2013-04-30 Joel Brobecker <brobecker@adacore.com>
6477
6478 * sol-thread.c (info_cb) [ti.ti_startfunc != 0]: Change type
6479 of local variable msym to const struct bound_minimal_symbol.
6480 Adjust use accordingly.
6481 [ti.ti_state == TD_THR_SLEEP]: Likewise.
6482
6483 2013-04-30 Samuel Thibault <samuel.thibault@gnu.org>
6484
6485 * i386gnu-nat.c (CREG_OFFSET): New macro.
6486 (creg_offset): New array.
6487 (CREG_ADDR): Use creg_offset instead of reg_offset.
6488
6489 2013-04-30 Joel Brobecker <brobecker@adacore.com>
6490
6491 * mep-tdep.c (mep_write_pc): Delete.
6492 (mep_gdbarch_init): Remove call to set_gdbarch_write_pc.
6493 Add call to set_gdbarch_pc_regnum.
6494
6495 2013-04-30 Joel Brobecker <brobecker@adacore.com>
6496
6497 * common/filestuff.c: Replace #include <dirent.h> by
6498 #include "gdb_dirent.h".
6499
6500 2013-04-30 Joel Brobecker <brobecker@adacore.com>
6501
6502 * common/filestuff.c: Replace #include <sys/stat.h> by
6503 #include "gdb_stat.h".
6504
6505 2013-04-29 Pierre Muller <muller@sourceware.org>
6506
6507 * dwarf2read.c (handle_DW_AT_stmt_list): Avoid ARI warning for
6508 editCase function rule.
6509 (get_DW_AT_signature_type): Likewise.
6510
6511 2013-04-29 Joel Brobecker <brobecker@adacore.com>
6512
6513 * m32r-tdep.c (m32r_write_pc): Delete.
6514 (m32r_gdbarch_init): Remove call to set_gdbarch_write_pc.
6515 Add call to set_gdbarch_pc_regnum.
6516
6517 2013-04-29 Pierre Muller <muller@sourceware.org>
6518
6519 * ./contrib/ari/gdb_ari.sh (editCase rule): Fix spelling error.
6520
6521 2013-04-29 Joel Brobecker <brobecker@adacore.com>
6522
6523 * dwarf2read.c (get_DW_AT_signature_type): Add ARI marker.
6524
6525 2013-04-28 Yao Qi <yao@codesourcery.com>
6526
6527 * solib-dsbt.c (fetch_loadmap): Re-indent.
6528 (displacement_from_map, enable_break2): Likewise.
6529 (dsbt_relocate_section_addresses): Likewise.
6530
6531 2013-04-26 Joel Brobecker <brobecker@adacore.com>
6532
6533 GDB 7.6 released.
6534
6535 2013-04-25 Andreas Kaufmann <Andreas.Kaufmann@synopsys.com>
6536
6537 PR corefiles/14983:
6538 * dwarf2read.c (process_full_comp_unit): Always create a static
6539 block.
6540
6541 2013-04-25 Hui Zhu <hui@codesourcery.com>
6542
6543 * breakpoint.c (build_target_command_list): Change loc->cond_bytecode
6544 to loc->cmd_bytecode.
6545
6546 2013-04-24 Doug Evans <dje@google.com>
6547
6548 * dwarf2read.c (setup_type_unit_groups): Fix comment.
6549
6550 2013-04-22 Keith Seitz <keiths@redhat.com>
6551
6552 * tracepoint.c (trace_save): Call the writer's start method.
6553
6554 2013-04-24 Muhammad Bilal <mbilal@codesourcery.com>
6555
6556 PR gdb/10462
6557 * cli/cli-decode.c (lookup_command): Show an error if there is no space
6558 before argument.
6559
6560 2013-04-23 Tom Tromey <tromey@redhat.com>
6561
6562 * common/filestuff.c: Check USE_WIN32API before including
6563 sys/socket.h.
6564 (HAVE_F_GETFD): New define.
6565 (mark_cloexec): Check HAVE_F_GETFD.
6566 (gdb_open_cloexec): Change 'mode' to unsigned long.
6567 (gdb_socketpair_cloexec): Check HAVE_SOCKETPAIR.
6568 (gdb_pipe_cloexec): Check HAVE_PIPE.
6569 * common/filestuff.h (gdb_open_cloexec): Change 'mode' to unsigned
6570 long.
6571
6572 2013-04-23 Hui Zhu <hui@codesourcery.com>
6573
6574 PR gdb/15293
6575 * breakpoint.c (bpstat_what): Add BPSTAT_WHAT_SINGLE to bp_dprintf.
6576
6577 2013-04-23 Hui Zhu <hui@codesourcery.com>
6578
6579 PR gdb/15165
6580 * breakpoint.c (dprintf_print_recreate): New.
6581 (save_breakpoints): Let it not save dprintf commands.
6582 (initialize_breakpoint_ops): Set dprintf_print_recreate.
6583
6584 2013-04-22 Tom Tromey <tromey@redhat.com>
6585
6586 PR gdb/7912:
6587 * Makefile.in (SFILES): Add filestuff.c
6588 (COMMON_OBS): Add filestuff.o.
6589 (filestuff.o): New target.
6590 * auto-load.c (auto_load_objfile_script_1): Use
6591 gdb_fopen_cloexec.
6592 * auxv.c (procfs_xfer_auxv): Use gdb_open_cloexec.
6593 * cli/cli-cmds.c (shell_escape): Call close_most_fds.
6594 * cli/cli-dump.c (fopen_with_cleanup): Use gdb_fopen_cloexec.
6595 * common/agent.c (gdb_connect_sync_socket): Use
6596 gdb_socket_cloexec.
6597 * common/filestuff.c: New file.
6598 * common/filestuff.h: New file.
6599 * common/linux-osdata.c (linux_common_core_of_thread)
6600 (command_from_pid, commandline_from_pid, print_source_lines)
6601 (linux_xfer_osdata_shm, linux_xfer_osdata_sem)
6602 (linux_xfer_osdata_msg, linux_xfer_osdata_modules): Use
6603 gdb_fopen_cloexec.
6604 * common/linux-procfs.c (linux_proc_get_int)
6605 (linux_proc_pid_has_state): Use gdb_fopen_cloexec.
6606 * config.in, configure: Rebuild.
6607 * configure.ac: Don't check for sys/socket.h. Check for
6608 fdwalk, pipe2.
6609 * corelow.c (core_open): Use gdb_open_cloexec.
6610 * dwarf2read.c (write_psymtabs_to_index): Use gdb_fopen_cloexec.
6611 * fork-child.c (fork_inferior): Call close_most_fds.
6612 * gdb_bfd.c (gdb_bfd_open): Use gdb_open_cloexec.
6613 * inf-child.c (inf_child_fileio_readlink): Use gdb_open_cloexec.
6614 * linux-nat.c (linux_nat_thread_name, linux_proc_pending_signals):
6615 Use gdb_fopen_cloexec.
6616 (linux_proc_xfer_partial, linux_proc_xfer_spu): Use
6617 gdb_open_cloexec.
6618 (linux_async_pipe): Use gdb_pipe_cloexec.
6619 * remote-fileio.c (remote_fileio_func_open): Use
6620 gdb_open_cloexec.
6621 * remote.c (remote_file_put, remote_file_get): Use
6622 gdb_fopen_cloexec.
6623 * ser-pipe.c (pipe_open): Use gdb_socketpair_cloexec,
6624 close_most_fds.
6625 * ser-tcp.c (net_open): Use gdb_socket_cloexec.
6626 * ser-unix.c (hardwire_open): Use gdb_open_cloexec.
6627 * solib.c (solib_find): Use gdb_open_cloexec.
6628 * source.c (openp, find_and_open_source): Use gdb_open_cloexec.
6629 * tracepoint.c (tfile_start): Use gdb_fopen_cloexec.
6630 (tfile_open): Use gdb_open_cloexec.
6631 * tui/tui-io.c (tui_initialize_io): Use gdb_pipe_cloexec.
6632 * ui-file.c (gdb_fopen): Use gdb_fopen_cloexec.
6633 * xml-support.c (xml_fetch_content_from_file): Use
6634 gdb_fopen_cloexec.
6635 * main.c (captured_main): Call notice_open_fds.
6636
6637 2013-04-22 Edjunior Machado <emachado@linux.vnet.ibm.com>
6638
6639 * remote-sim.c (dump_mem): Change the type of 'buf' parameter from
6640 'char *' to 'gdb_byte *'.
6641 (gdbsim_store_register): Change the type of 'tmp' from 'char' to
6642 'gdb_byte'.
6643
6644 2013-04-22 Yao Qi <yao@codesourcery.com>
6645
6646 * infrun.c: Fix typo in comment.
6647
6648 2013-04-22 Andrew Haley <aph@redhat.com>
6649
6650 * arm-tdep.c (BranchDest): Cast result as "unsigned long",
6651 instead of "long".
6652
6653 2013-04-20 Yao Qi <yao@codesourcery.com>
6654
6655 * ctf.c (ctf_fetch_registers): Change the type of 'regs' from
6656 'char *' to 'gdb_byte *'. Cast the return value of
6657 'bt_ctf_get_char_array' to 'gdb_byte *'.
6658
6659 2013-04-19 Pedro Alves <palves@redhat.com>
6660
6661 * configure.ac (build_warnings): Replace -Wno-pointer-sign with
6662 -Wpointer-sign.
6663 * configure: Regenerate.
6664
6665 2013-04-19 Pedro Alves <palves@redhat.com>
6666
6667 * ser-tcp.c (net_read_prim): Cast second argument to recv to
6668 'void *'.
6669
6670 2013-04-19 Pedro Alves <palves@redhat.com>
6671
6672 * monitor.c (monitor_write_memory, monitor_write_memory_bytes):
6673 Change type of 'myaddr' parameter to gdb_byte pointer.
6674 (monitor_write_memory_longlongs): Likewise. Cast 'myaddr' pointer
6675 to 'long long' pointer instead of to 'unsigned long long'.
6676 (monitor_write_memory_block, monitor_read_memory_single)
6677 (monitor_read_memory): Change type of 'myaddr' parameter to
6678 gdb_byte pointer.
6679
6680 2013-04-19 Pedro Alves <palves@redhat.com>
6681
6682 * record.c (validate_history_size): Make parameter 'setting'
6683 unsigned.
6684
6685 2013-04-19 Pedro Alves <palves@redhat.com>
6686
6687 * ctf.c (ctf_write_uploaded_tsv, ctf_write_uploaded_tp): Add casts
6688 to 'gdb_byte *'.
6689
6690 2013-04-19 Pedro Alves <palves@redhat.com>
6691
6692 * cp-valprint.c (cp_print_class_member): Change type of 'fieldno'
6693 local to int.
6694
6695 2013-04-19 Pedro Alves <palves@redhat.com>
6696
6697 * ada-lang.c (print_it_exception): Add cast to gdb_byte *.
6698 * ada-tasks.c (read_fat_string_value): Likewise.
6699
6700 2013-04-19 Pedro Alves <palves@redhat.com>
6701
6702 * dwarf2-frame.c (execute_cfa_program): Make 'bytes_read' local
6703 unsigned. Pass 'tmp' to safe_read_uleb128 instead of the signed
6704 'offset', and adjust.
6705
6706 2013-04-19 Pedro Alves <palves@redhat.com>
6707
6708 * dwarf2read.c (dwarf2_get_dwz_file): Add cast to const char *.
6709 (read_index_from_section): Add cast to 'char *'.
6710
6711 2013-04-19 Pedro Alves <palves@redhat.com>
6712
6713 * xcoffread.c (xcoff_initial_scan): Add cast to 'char *'.
6714
6715 2013-04-19 Pedro Alves <palves@redhat.com>
6716
6717 * coff-pe-read.c (read_pe_exported_syms): Handle strings as char.
6718
6719 2013-04-19 Pedro Alves <palves@redhat.com>
6720
6721 * record-full.c (record_full_get_bookmark): Change local 'ret'
6722 type to char * and add cast to gdb_byte *.
6723 (record_full_goto_bookmark): Handle 'bookmark' argument as a
6724 string.
6725 * reverse.c (goto_bookmark_command): Add casts to gdb_byte *.
6726
6727 2013-04-19 Pedro Alves <palves@redhat.com>
6728
6729 * python/py-inferior.c (infpy_write_memory): Add cast to gdb_byte
6730 * python/py-prettyprint.c (print_string_repr): Change type of
6731 'output' local to char *. Add cast to gdb_byte * in
6732 LA_PRINT_STRING call.
6733 (print_children): Change type of 'output' local to char *.
6734 * python/py-value.c (valpy_string): Add cast to const char * in
6735 PyUnicode_Decode call.
6736
6737 2013-04-19 Pedro Alves <palves@redhat.com>
6738
6739 * remote-mips.c (mips_cksum): Rename 'data' parameter to 'datastr'
6740 and change its type to 'const char *'. Adjust.
6741 (mips_send_packet): Add cast to 'char *', and remove cast to
6742 'unsigned char *'.
6743 (mips_receive_packet): Remove cast to 'unsigned char *'.
6744 (mips_load_srec): Use bfd_byte.
6745 (pmon_makeb64, pmon_zeroset): Make 'chksum' parameter unsigned.
6746 (pmon_checkset): Make 'value' parameter unsigned.
6747
6748 2013-04-19 Pedro Alves <palves@redhat.com>
6749
6750 * common/agent.c (agent_run_command): Add cast to gdb_byte *.
6751
6752 2013-04-19 Pedro Alves <palves@redhat.com>
6753
6754 * remote.c (remote_write_bytes_aux, compare_sections_command)
6755 (remote_read_qxfer)
6756 (remote_search_memory, remote_hostio_pwrite, remote_hostio_pread)
6757 (remote_hostio_readlink, remote_bfd_iovec_pread)
6758 (remote_set_trace_notes): Use gdb_byte when RSP buffer is used as
6759 binary buffer, and char when buffer is used as string.
6760 * tracepoint.c (encode_source_string, tfile_write_uploaded_tp)
6761 (trace_save, tfile_open, traceframe_walk_blocks)
6762 (tfile_fetch_registers): Likewise.
6763
6764 2013-04-19 Pedro Alves <palves@redhat.com>
6765
6766 * ser-base.c (ser_base_write): Change prototype -- take 'void *'
6767 buffer and size_t size. Adjust.
6768 * ser-base.h (ser_base_write): Adjust.
6769 * ser-go32.c (cnts): Change type to size_t.
6770 (dos_write): Change prototype -- take 'void *'
6771 buffer and size_t size. Adjust.
6772 (dos_info): Print elements of 'cnts' as unsigned long.
6773 * serial.c (serial_write): Likewise.
6774 * serial.h (serial_write): Adjust.
6775 (struct serial_ops) <write>: Change prototype -- take 'void *'
6776 buffer and size_t size. Adjust.
6777
6778 2013-04-19 Pedro Alves <palves@redhat.com>
6779
6780 * c-lang.c (evaluate_subexp_c): Cast result of obstack_base to
6781 gdb_byte *.
6782 * linux-tdep.c (linux_make_mappings_corefile_notes): Likewise.
6783
6784 2013-04-19 Pedro Alves <palves@redhat.com>
6785
6786 * alpha-tdep.c (alpha_extract_return_value): Use
6787 regcache_cooked_read_unsigned to read 'v0'.
6788
6789 2013-04-19 Pedro Alves <palves@redhat.com>
6790
6791 * xtensa-tdep.c (execute_l32e, execute_s32e): Change type of
6792 parameters 'at', 'as' and 'offset' to uint32_t.
6793
6794 2013-04-19 Pedro Alves <palves@redhat.com>
6795
6796 * aarch64-tdep.c (aarch64_analyze_prologue): Change type of local
6797 'is64' to signed 'int'.
6798
6799 2013-04-19 Pedro Alves <palves@redhat.com>
6800
6801 * s390-tdep.c (is_rs, is_rsy, is_rx, is_rxy): Change type of 'd2'
6802 parameter to int *.
6803
6804 2013-04-19 Pedro Alves <palves@redhat.com>
6805
6806 * ppc-linux-tdep.c (ppc_skip_trampoline_code): Change local
6807 'insnbuf' buffer type to unsigned int[].
6808
6809 2013-04-19 Pedro Alves <palves@redhat.com>
6810
6811 * mips-tdep.c (mips_read_pc): Change local 'pc' type to LONGEST.
6812
6813 2013-04-19 Pedro Alves <palves@redhat.com>
6814
6815 * mep-tdep.c (mep_get_insn): Change 'insn' parameter type to
6816 unsigned long *.
6817
6818 2013-04-19 Pedro Alves <palves@redhat.com>
6819
6820 * alpha-tdep.c (heuristic_fence_post): Change type to int.
6821 (alpha_heuristic_proc_start): Adjust to check -1 instead of
6822 UINT_MAX.
6823 * mips-tdep.c (heuristic_fence_post): Change type to int.
6824 (heuristic_proc_start): Adjust to check -1 instead of UINT_MAX.
6825
6826 2013-04-19 Pedro Alves <palves@redhat.com>
6827
6828 * cris-tdep.c (usr_cmd_cris_version): Make unsigned.
6829 (struct gdbarch_tdep) <cris_version>: Make unsigned.
6830 (cris_spec_reg_applicable, cris_gdbarch_init): Adjust locals.
6831
6832 2013-04-19 Pedro Alves <palves@redhat.com>
6833
6834 * avr-tdep.c (avr_io_reg_read_command): New local 'bufstr'. Use
6835 it to get a string view of the byte buffer.
6836 * i386-cygwin-tdep.c (core_process_module_section): Change local 'buf'
6837 type to gdb_byte *. Adjust.
6838 * linux-tdep.c (linux_info_proc, linux_find_memory_regions_full):
6839 Change local to char *.
6840 * solib-darwin.c (find_program_interpreter): Change return type to
6841 char *. Adjust.
6842 (darwin_solib_get_all_image_info_addr_at_init): Adjust.
6843 * solib-dsbt.c (enable_break2): Change local 'buf' to char *.
6844 * solib-frv.c (enable_break2): Change local 'buf' to char *.
6845 * solib-spu.c (spu_current_sos): Add gdb_byte * cast.
6846 * solib-svr4.c (find_program_interpreter): Change return type to
6847 char *. Adjust.
6848 (enable_break): Change local 'interp_name' to char *.
6849 * spu-multiarch.c (spu_xfer_partial): Add cast to 'char *'.
6850 * spu-tdep.c (spu_pseudo_register_read_spu): Add cast to 'char *'.
6851 (spu_pseudo_register_write_spu): Use char for string buffer.
6852 Adjust.
6853 (info_spu_event_command, info_spu_signal_command): Add casts to
6854 'char *'.
6855
6856 2013-04-19 Pedro Alves <palves@redhat.com>
6857
6858 * aarch64-tdep.c (aarch64_default_breakpoint): Change type to
6859 gdb_byte[].
6860 (aarch64_breakpoint_from_pc): Change return type to gdb_byte *.
6861 * ada-lang.c (ada_value_assign): Use gdb_byte.
6862 * alphanbsd-tdep.c (sigtramp_retcode): Change type to gdb_byte[].
6863 (alphanbsd_sigtramp_offset): Use gdb_byte.
6864 * arm-linux-tdep.c (arm_linux_arm_le_breakpoint)
6865 (arm_linux_arm_be_breakpoint, eabi_linux_arm_le_breakpoint)
6866 (eabi_linux_arm_be_breakpoint, arm_linux_thumb_be_breakpoint)
6867 (arm_linux_thumb_le_breakpoint, arm_linux_thumb2_be_breakpoint)
6868 (arm_linux_thumb2_le_breakpoint): Change type to gdb_byte[].
6869 * arm-tdep.c (arm_stub_unwind_sniffer)
6870 (arm_displaced_init_closure): Use gdb_byte.
6871 (arm_default_arm_le_breakpoint, arm_default_arm_be_breakpoint)
6872 (arm_default_thumb_le_breakpoint)
6873 (arm_default_thumb_be_breakpoint): Change type to gdb_byte[].
6874 * arm-tdep.h (struct gdbarch_tdep) <arm_breakpoint,
6875 thumb_breakpoint, thumb2_breakpoint>: Change type to gdb_byte *.
6876 * arm-wince-tdep.c (arm_wince_le_breakpoint)
6877 (arm_wince_thumb_le_breakpoint): Change type to gdb_byte[].
6878 * armnbsd-tdep.c (arm_nbsd_arm_le_breakpoint)
6879 (arm_nbsd_arm_be_breakpoint, arm_nbsd_thumb_le_breakpoint)
6880 (arm_nbsd_thumb_be_breakpoint): Change type to gdb_byte[].
6881 * armobsd-tdep.c (arm_obsd_thumb_le_breakpoint)
6882 (arm_obsd_thumb_be_breakpoint): Change type to gdb_byte[].
6883 * cris-tdep.c (push_stack_item, cris_push_dummy_call)
6884 (cris_store_return_value, cris_extract_return_value): Use
6885 gdb_byte.
6886 (constraint): Change type of parameter to char * from signed
6887 char*. Use gdb_byte.
6888 * dwarf2loc.c (read_pieced_value, write_pieced_value): Change type
6889 of local buffer to gdb_byte *.
6890 * dwarf2read.c (read_index_from_section): Use gdb_byte.
6891 (create_dwp_hash_table): Change type of locals to gdb_byte *.
6892 (add_address_entry): Change type of local buffer to gdb_byte[].
6893 * frv-tdep.c (frv_adjust_breakpoint_address, find_func_descr)
6894 (frv_push_dummy_call): Use gdb_byte.
6895 * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code)
6896 (hppa_hpux_supply_ss_fpblock, hppa_hpux_supply_ss_wide)
6897 (hppa_hpux_supply_save_state): Use gdb_byte.
6898 * hppa-tdep.c (hppa32_push_dummy_call)
6899 (hppa64_convert_code_addr_to_fptr): Use gdb_byte.
6900 * ia64-tdep.c (extract_bit_field, replace_bit_field)
6901 (slotN_contents, replace_slotN_contents): Change type of parameter
6902 to gdb_byte *.
6903 (fetch_instruction, ia64_pseudo_register_write)
6904 (ia64_register_to_value, ia64_value_to_register)
6905 (ia64_extract_return_value, ia64_store_return_value)
6906 (ia64_push_dummy_call): Use gdb_byte.
6907 * m32c-tdep.c (m32c_return_value): Remove cast.
6908 * m68hc11-tdep.c (m68hc11_pseudo_register_write)
6909 (m68hc11_push_dummy_call, m68hc11_store_return_value): Use
6910 gdb_byte.
6911 * mipsnbsd-tdep.c (mipsnbsd_get_longjmp_target): Use gdb_byte.
6912 * mn10300-tdep.c (mn10300_store_return_value)
6913 (mn10300_breakpoint_from_pc, mn10300_push_dummy_call): Use
6914 gdb_byte.
6915 * moxie-tdep.c (moxie_process_readu): Use gdb_byte.
6916 (moxie_process_record): Remove casts.
6917 * ppc-ravenscar-thread.c (supply_register_at_address)
6918 (ppc_ravenscar_generic_store_registers): Use gdb_byte.
6919 * ravenscar-thread.c (get_running_thread_id): Use gdb_byte.
6920 * remote-m32r-sdi.c (m32r_fetch_register): Use gdb_byte.
6921 * remote-mips.c (mips_xfer_memory): Use gdb_byte.
6922 * remote.c (compare_sections_command): Use gdb_byte.
6923 * score-tdep.c (score7_free_memblock): Change type of parameter to
6924 gdb_byte *.
6925 * sh-tdep.c (sh_justify_value_in_reg): Change return type to
6926 gdb_byte *. Use gdb_byte.
6927 (sh_push_dummy_call_fpu): Use gdb_byte.
6928 (sh_extract_return_value_nofpu, sh_extract_return_value_fpu)
6929 (sh_store_return_value_nofpu, sh_store_return_value_fpu)
6930 (sh_register_convert_to_virtual, sh_register_convert_to_raw):
6931 Change parameter type to 'gdb_byte *'. Use gdb_byte.
6932 (sh_pseudo_register_read, sh_pseudo_register_write): Use gdb_byte.
6933 * sh64-tdep.c (sh64_push_dummy_call): Use gdb_byte.
6934 (sh64_store_return_value, sh64_register_convert_to_virtual):
6935 Change parameter type to 'gdb_byte *'. Use gdb_byte.
6936 (sh64_pseudo_register_write): Use gdb_byte.
6937 * solib-darwin.c (darwin_current_sos): Add casts to 'gdb_byte *'.
6938 * solib-irix.c (fetch_lm_info): Likewise. Use gdb_byte for byte
6939 buffer.
6940 (irix_current_sos): Use gdb_byte.
6941 * solib-som.c (som_current_sos): Use gdb_byte.
6942 * sparc-ravenscar-thread.c (supply_register_at_address)
6943 (sparc_ravenscar_generic_store_registers): Use gdb_byte.
6944 * spu-multiarch.c (spu_xfer_partial): Add cast to 'char *'.
6945 * spu-tdep.c (spu_get_overlay_table): Use gdb_byte.
6946 * tic6x-tdep.c (tic6x_breakpoint_from_pc): Change return type to
6947 'gdb_byte *'.
6948 * tic6x-tdep.h (struct gdbarch_tdep) <breakpoint>: Change type to
6949 'gdb_byte *'.
6950 * tracepoint.c (tfile_fetch_registers): Use gdb_byte.
6951 * xstormy16-tdep.c (xstormy16_extract_return_value)
6952 (xstormy16_store_return_value): Change parameter type to
6953 'gdb_byte *'. Adjust.
6954 (xstormy16_push_dummy_call): Use gdb_byte.
6955 * xtensa-tdep.c (xtensa_scan_prologue, call0_ret)
6956 (call0_analyze_prologue, execute_code): Use gdb_byte.
6957
6958 2013-04-19 Vladimir Kargov <kargov@gmail.com>
6959 Pedro Alves <palves@redhat.com>
6960
6961 * i387-tdep.c (i387_print_float_info): Use gdb_byte for pointer to
6962 value contents.
6963
6964 2013-04-17 Doug Evans <dje@google.com>
6965
6966 * dwarf2read.c (struct signatured_type): New member type.
6967 (struct attribute): Replace member signatured_type with signature.
6968 (DW_SIGNATURE): Replaces DW_SIGNATURE_TYPE.
6969 (read_call_site_scope): Call follow_die_ref instead of
6970 follow_die_ref_or_sig.
6971 (read_structure_type): Rewrite handling of signatured types.
6972 (read_enumeration_type): Ditto.
6973 (read_attribute_value): Update.
6974 (build_error_marker_type): New function.
6975 (lookup_die_type): Add assert. Rewrite handling of signatured types.
6976 Don't call error for bad types, just build an error marker type.
6977 (dump_die_shallow): Update.
6978 (follow_die_sig_1): Renamed from follow_die_sig.
6979 Don't call error for bad types, instead return NULL.
6980 (follow_die_sig): New function.
6981 (get_signatured_type, get_DW_AT_signature_type): New functions.
6982
6983 2013-04-17 Yufeng Zhang <yufeng.zhang@arm.com>
6984
6985 * aarch64-tdep.c (aarch64_write_pc): Removed.
6986 (aarch64_gdbarch_init): Remove set_gdbarch_write_pc of the above
6987 function.
6988
6989 2013-04-17 Yao Qi <yao@codesourcery.com>
6990
6991 * top.c (print_gdb_configuration): Print configure-time
6992 parameter on using libbabeltrace or not.
6993
6994 2013-04-16 Pedro Alves <palves@redhat.com>
6995
6996 * copyright.py (EXCLUDE_LIST): Add gdb/common/glibc_thread_db.h.
6997
6998 2013-04-16 Pedro Alves <palves@redhat.com>
6999
7000 * common/glibc_thread_db.h: Update from upstream glibc
7001 (git 568035b7874a099087b77f7bba3e36a1173787b0).
7002
7003 2013-04-16 Pedro Alves <palves@redhat.com>
7004
7005 * common/gdb_thread_db.h [!HAVE_THREAD_DB_H]: Factor out to ...
7006 * common/glibc_thread_db.h: ... this new file ...
7007 * common/gdb_thread_db.h [!HAVE_THREAD_DB_H]: ... and include it.
7008
7009 2013-04-16 Will Newton <will.newton@gmail.com>
7010 Pedro Alves <palves@redhat.com>
7011
7012 PR build/11881
7013
7014 * common/gdb_thread_db.h (LIBTHREAD_DB_SO)
7015 (LIBTHREAD_DB_SEARCH_PATH): Move outside of #ifdef
7016 HAVE_THREAD_DB_H.
7017
7018 2013-04-16 Pedro Alves <palves@redhat.com>
7019 Eli Zaretskii <eliz@gnu.org>
7020
7021 * NEWS: Mention "set foo unlimited".
7022
7023 2013-04-15 Doug Evans <dje@google.com>
7024
7025 * dwarf2read.c (struct dwo_file): Replace member "cus" with "cu".
7026 (struct create_dwo_cu_data): Renamed from create_dwo_info_table_data.
7027 (create_dwo_cu_reader): Renamed from
7028 create_dwo_debug_info_hash_table_reader.
7029 (create_dwo_cu): Renamed from create_dwo_debug_info_hash_table.
7030 Remove support for multiple CUs in a DWO file.
7031 (open_and_init_dwo_file, lookup_dwo_cutu): Update.
7032
7033 * dwarf2read.c (create_debug_types_hash_table): Use hex_string
7034 instead of phex.
7035 (lookup_dwo_unit, create_dwo_debug_info_hash_table_reader): Ditto.
7036 (create_dwo_in_dwp): Ditto.
7037
7038 2013-04-15 Tom Tromey <tromey@redhat.com>
7039
7040 * NEWS: Move recent entries into "since 7.6" section.
7041
7042 2013-04-15 Tom Tromey <tromey@redhat.com>
7043
7044 PR c++/13588:
7045 * NEWS: Update.
7046 * break-catch-throw.c (struct exception_catchpoint)
7047 <exception_rx, pattern>: New fields.
7048 (fetch_probe_arguments, dtor_exception_catchpoint)
7049 (check_status_exception_catchpoint)
7050 (print_one_detail_exception_catchpoint): New functions.
7051 (handle_gnu_v3_exceptions): Add "except_rx" argument.
7052 Compile regular expression if needed.
7053 (extract_exception_regexp): New function.
7054 (catch_exception_command_1): Use extract_exception_regexp.
7055 (compute_exception): Use fetch_probe_arguments.
7056 (initialize_throw_catchpoint_ops): Set dtor, print_one_detail,
7057 and check_status fields.
7058 * cp-abi.c (cplus_typename_from_type_info): New function.
7059 * cp-abi.h (cplus_typename_from_type_info): Declare.
7060 (struct cp_abi_ops) <get_typename_from_type_info>: New field.
7061 * gdb_regex.h (compile_rx_or_error): Declare.
7062 * gnu-v3-abi.c (gnuv3_get_typename_from_type_info): Update
7063 comment.
7064 (init_gnuv3_ops): Set get_type_from_type_info field.
7065 * probe.c (compile_rx_or_error): Move...
7066 * utils.c (compile_rx_or_error): ... here.
7067
7068 2013-04-15 Tom Tromey <tromey@redhat.com>
7069
7070 PR c++/15176:
7071 * NEWS: Update.
7072 * break-catch-throw.c (compute_exception): New function.
7073 (exception_funcs): New global.
7074 (_initialize_break_catch_throw): Create $_exception.
7075 * cp-abi.c (cplus_type_from_type_info): New function.
7076 * cp-abi.h (cplus_type_from_type_info): Declare.
7077 (struct cp_abi_ops) <get_type_from_type_info>: New field.
7078 * gnu-v3-abi.c (gnuv3_get_typename_from_type_info)
7079 (gnuv3_get_type_from_type_info): New functions.
7080 (init_gnuv3_ops): Set get_type_from_type_info ABI field.
7081
7082 2013-04-15 Tom Tromey <tromey@redhat.com>
7083
7084 * break-catch-throw.c (struct exception_names): New.
7085 (exception_functions): Change type.
7086 (re_set_exception_catchpoint): Look for SDT probes.
7087
7088 2013-04-15 Tom Tromey <tromey@redhat.com>
7089
7090 PR c++/10119:
7091 * break-catch-throw.c (exception_functions): New global.
7092 (gnu_v3_exception_catchpoint_ops): Move earlier.
7093 (struct exception_catchpoint): New.
7094 (classify_exception_breakpoint): Rewrite.
7095 (re_set_exception_catchpoint): New function.
7096 (handle_gnu_v3_exceptions): Return void. Use init_catchpoint.
7097 Allocate a struct exception_catchpoint.
7098 (catch_exception_command_1): Update.
7099 (initialize_throw_catchpoint_ops): Set 're_set' method.
7100
7101 2013-04-15 Tom Tromey <tromey@redhat.com>
7102
7103 * Makefile.in (SFILES): Add break-catch-throw.c
7104 (COMMON_OBS): Add break-catch-throw.o.
7105 * break-catch-throw.c: New file.
7106 * breakpoint.c: Move exception-catching code to new file.
7107 (ep_parse_optional_if_clause): No longer static.
7108 * breakpoint.h (ep_parse_optional_if_clause): Declare.
7109
7110 2013-04-15 Tom Tromey <tromey@redhat.com>
7111
7112 PR c++/9065:
7113 * NEWS: Update.
7114 * breakpoint.c (watchpoint_exp_is_const): Add OP_TYPEID.
7115 * c-exp.y (TYPEID): New token.
7116 (exp): Add new TYPEID productions.
7117 (ident_tokens): Add "typeid".
7118 * cp-abi.c (cplus_typeid, cplus_typeid_type): New functions.
7119 * cp-abi.h (cplus_typeid, cplus_typeid_type): Declare.
7120 (struct cp_abi_ops) <get_typeid, get_typeid_type>: New fields.
7121 * eval.c (evaluate_subexp_standard) <OP_TYPEID>: New case.
7122 * expprint.c (dump_subexp_body_standard) <OP_TYPEID>: New
7123 case.
7124 * gnu-v3-abi.c (std_type_info_gdbarch_data): New global.
7125 (build_std_type_info_type, gnuv3_get_typeid_type)
7126 (gnuv3_get_typeid): New functions.
7127 (init_gnuv3_ops): Initialize std_type_info_gdbarch_data. Set
7128 new fields on ABI object.
7129 * parse.c (operator_length_standard) <OP_TYPEID>: New case.
7130 * std-operator.def (OP_TYPEID): New.
7131
7132 2013-04-15 Tom Tromey <tromey@redhat.com>
7133
7134 * elfread.c (elf_symtab_read): Install versioned symbol under
7135 unversioned name as well.
7136
7137 2013-04-15 Tom Tromey <tromey@redhat.com>
7138
7139 PR c++/11990:
7140 * c-lang.c (cplus_language_defn): Use gdb_demangle.
7141 * c-typeprint.c (c_type_print_base): Use gdb_demangle.
7142 * cp-support.c (mangled_name_to_comp): Use gdb_demangle.
7143 (gdb_demangle): New function.
7144 * cp-support.h (gdb_demangle): Declare.
7145 * dwarf2read.c (dwarf2_physname, fixup_partial_die)
7146 (dwarf2_name): Use gdb_demangle.
7147 * gdbtypes.c (check_stub_method): Use gdb_demangle.
7148 * gnu-v3-abi.c (gnuv3_rtti_type): Strip @plt and version
7149 suffixes from name.
7150 (gnuv3_print_method_ptr): Use gdb_demangle.
7151 * jv-lang.c (java_demangle): Use gdb_demangle.
7152 * jv-typeprint.c (java_type_print_base): Use gdb_demangle.
7153 * language.c (unk_lang_demangle): Use gdb_demangle.
7154 * symtab.c (symbol_find_demangled_name)
7155 (demangle_for_lookup): Use gdb_demangle.
7156
7157 2013-04-15 Tom Tromey <tromey@redhat.com>
7158
7159 PR c++/12824:
7160 * NEWS: Update.
7161 * breakpoint.c (enum exception_event_kind) <EX_EVENT_RETHROW>:
7162 New constant.
7163 (classify_exception_breakpoint): New function.
7164 (print_it_exception_catchpoint, print_one_exception_catchpoint)
7165 (print_mention_exception_catchpoint)
7166 (print_recreate_exception_catchpoint, handle_gnu_v3_exceptions)
7167 (catch_exception_command_1): Handle "rethrow" catchpoint.
7168 (catch_rethrow_command): New function.
7169 (_initialize_breakpoint): Add "catch rethrow" command.
7170
7171 2013-04-15 Pierre Muller <muller@sourceware.org>
7172
7173 * contrib/ari/gdb_ari.sh (write_pc rule): Do not consider
7174 set_gdbarch_write_pc as deprecated anymore.
7175
7176 2013-04-15 Joel Brobecker <brobecker@adacore.com>
7177
7178 * spu-tdep.c (spu_write_pc): Add empty line after local variable
7179 declarations.
7180
7181 2013-04-13 Yao Qi <yao@codesourcery.com>
7182
7183 * ctf.c (_initialize_ctf): Include "completer.h".
7184 Call add_target_with_completer instead of add_target.
7185
7186 2013-04-12 Jan Kratochvil <jan.kratochvil@redhat.com>
7187
7188 Fix GDB regression related to PR binutils/14813.
7189 * jit.c (mem_bfd_iovec_close): Return 0 for success.
7190 * minidebug.c (lzma_close): Add return value comment.
7191 * remote.c (remote_bfd_iovec_close): Return 0 for success.
7192 * solib-spu.c (spu_bfd_iovec_close): Likewise.
7193 * spu-linux-nat.c (spu_bfd_iovec_close): Likewise.
7194
7195 2013-04-12 Jan Kratochvil <jan.kratochvil@redhat.com>
7196
7197 * config.in: Regenerate.
7198
7199 2013-04-12 Tom Tromey <tromey@redhat.com>
7200
7201 * dwarf2-frame.c (struct comp_unit) <dwarf_frame_buffer>: Now
7202 const.
7203 * dwarf2read.c (struct dwarf2_section_info) <buffer>: Now const.
7204 (struct die_reader_specs) <buffer>: Likewise.
7205 (die_reader_func_ftype): Make 'info_ptr' const.
7206 (struct line_header) <include_dirs, statement_program_start,
7207 statement_program_end>: Now const.
7208 (struct file_entry) <name>: Likewise.
7209 (struct partial_die_info) <sibling>: Likewise.
7210 (struct dwarf_block) <data>: Likewise.
7211 (dwarf2_read_section): Remove cast.
7212 (dwarf2_get_section_info): Make 'bufp' const.
7213 (read_index_from_section): Constify.
7214 (dw2_get_file_names_reader): Make 'info_ptr' const.
7215 (dw2_get_primary_filename_reader): Likewise.
7216 (read_comp_unit_head): Make 'info_ptr' and return type const.
7217 (read_and_check_comp_unit_head, read_and_check_type_unit_head):
7218 Likewise.
7219 (read_abbrev_offset): Constify.
7220 (dwarf2_create_include_psymtab): Make 'name' const.
7221 (create_debug_types_hash_table): Update.
7222 (read_cutu_die_from_dwo): Make 'result_info_ptr' const.
7223 (init_cutu_and_read_dies, init_cutu_and_read_dies_no_follow):
7224 Constify.
7225 (process_psymtab_comp_unit_reader, build_type_psymtabs_reader)
7226 (load_partial_comp_unit_reader): Make 'info_ptr' const.
7227 (read_comp_units_from_section): Constify.
7228 (peek_abbrev_code, peek_die_abbrev, skip_children, skip_one_die)
7229 (locate_pdi_sibling, load_full_comp_unit_reader): Make 'info_ptr'
7230 const.
7231 (dwarf2_compute_name, setup_type_unit_groups): Constify.
7232 (create_dwo_debug_info_hash_table): Make 'info_ptr' const.
7233 (create_dwp_hash_table, dwarf2_ranges_read)
7234 (dwarf2_record_block_ranges): Constify.
7235 (read_die_and_children, read_die_and_siblings_1)
7236 (read_die_and_siblings): Make 'info_ptr' and 'new_info_ptr'
7237 const.
7238 (read_full_die_1, read_full_die): Make 'info_ptr' const.
7239 (abbrev_table_read_table): Constify.
7240 (load_partial_dies): Make 'info_ptr' const.
7241 (read_partial_die, read_attribute_value, read_attribute): Make
7242 'info_ptr' and return type const.
7243 (read_address, read_initial_length)
7244 (read_checked_initial_length_and_offset, read_offset)
7245 (read_offset_1, read_n_bytes, read_direct_string): Make 'buf'
7246 const.
7247 (read_direct_string): Make 'buf' and return type const.
7248 (read_indirect_string_at_offset, read_indirect_string_from_dwz)
7249 (read_indirect_string): Make return type const.
7250 (read_unsigned_leb128, read_signed_leb128): Make 'buf' const.
7251 (read_addr_index_from_leb128, dwarf2_read_addr_index_reader): Make
7252 'info_ptr' const.
7253 (read_str_index): Make return type const.
7254 (add_include_dir): Make 'include_dir' const.
7255 (add_file_name): Make 'name' const.
7256 (dwarf_decode_line_header): Constify.
7257 (psymtab_include_file_name): Make return type const.
7258 (dwarf_decode_lines_1, dwarf_decode_lines): Constify.
7259 (dwarf2_start_subfile): Make 'filename' const.
7260 (dwarf2_const_value_attr): Make 'bytes' const.
7261 (read_signatured_type_reader): Make 'info_ptr' const.
7262 (decode_locdesc): Constify.
7263 (skip_form_bytes): Make 'bytes', 'buffer_end', and return type
7264 const.
7265 (skip_unknown_opcode): Make 'opcode_definitions', 'mac_ptr',
7266 'mac_end', and return type const.
7267 (dwarf_parse_macro_header): Make 'mac_ptr' and return type const.
7268 (dwarf_decode_macro_bytes): Make 'mac_ptr', 'mac_end', and return
7269 type const.
7270 (per_cu_header_read_in): Constify.
7271 * symfile.h (dwarf2_get_section_info): Update.
7272
7273 2013-04-12 Tom Tromey <tromey@redhat.com>
7274
7275 * symtab.h (struct general_symbol_info) <value.bytes>: Make const.
7276
7277 2013-04-12 Eli Zaretskii <eliz@gnu.org>
7278
7279 * NEWS: Mention "show configuration", --configuration.
7280 * top.c (print_gdb_configuration): New function, displays the
7281 details about GDB configure-time parameters.
7282 (print_gdb_version): Mention "show configuration".
7283 * cli/cli-cmds.c (show_configuration): New function.
7284 (_initialize_cli_cmds): Add the "show configuration" command.
7285 * main.c (captured_main) <print_configuration>: New static var.
7286 <long_options>: Use it.
7287 If --configuration was given, call print_gdb_configuration.
7288
7289 2013-04-11 Jan Kratochvil <jan.kratochvil@redhat.com>
7290 Pedro Alves <palves@redhat.com>
7291
7292 * Makefile.in (HAVE_NATIVE_GCORE_TARGET): New.
7293 (generated_files): Add gcore.
7294 (install-only, uninstall): Add gcore if HAVE_NATIVE_GCORE_TARGET or
7295 HAVE_NATIVE_GCORE_HOST.
7296 (gcore): New.
7297 * NEWS (Changes since GDB 7.6): Mention newly installed gcore.
7298 * config/alpha/alpha-osf3.mh, config/i386/fbsd.mh,
7299 config/i386/fbsd64.mh, config/i386/i386gnu.mh, config/i386/i386sol2.mh,
7300 config/i386/sol2-64.mh, config/mips/irix5.mh, config/mips/irix6.mh,
7301 config/powerpc/fbsd.mh, config/sparc/fbsd.mh, config/sparc/sol2.mh:
7302 Add HAVE_NATIVE_GCORE_HOST.
7303 * configure: Regenerate.
7304 * configure.ac (HAVE_NATIVE_GCORE_TARGET): New, set it, AC_SUBST it.
7305 New AC_SUBST fir GDB_TRANSFORM_NAME and GCORE_TRANSFORM_NAME. New
7306 AC_CONFIG_FILES for gcore.
7307 * configure.tgt: Add gdb_have_gcore to the initial comment. Set
7308 gdb_have_gcore.
7309 * gdb_gcore.sh: Rename to ...
7310 * gcore.in: ... here. Remove gcore.sh comment. Use GDB_TRANSFORM_NAME
7311 and GCORE_TRANSFORM_NAME substitutions.
7312
7313 Fix parsing tabs in ${gdb_target_obs}.
7314 * configure.tgt (gdb_have_gcore): Replace case with for and if.
7315
7316 2013-04-11 Jan Kratochvil <jan.kratochvil@redhat.com>
7317
7318 * remote.c (unpush_and_perror): Add output message final dot.
7319
7320 2013-04-11 Yao Qi <yao@codesourcery.com>
7321
7322 * tracepoint.c (tfile_interp_line): Fit parameters line and
7323 utpp in one line.
7324
7325 2013-04-10 Joel Brobecker <brobecker@adacore.com>
7326
7327 * solib.c (solib_map_sections): Remove code overwriting
7328 SO->SO_NAME with the bfd's filename.
7329
7330 2013-04-10 Pedro Alves <palves@redhat.com>
7331
7332 * cli/cli-decode.c (integer_unlimited_completer): New function.
7333 (add_setshow_integer_cmd, add_setshow_uinteger_cmd)
7334 (add_setshow_zuinteger_unlimited_cmd): Install the "unlimited"
7335 completer.
7336 * cli/cli-setshow.c: Include "cli/cli-utils.h".
7337 (is_unlimited_literal): New function.
7338 (do_set_command): Handle literal "unlimited" arguments.
7339 * frame.c (_initialize_frame) <set backtrace limit>: Document
7340 "unlimited".
7341 * printcmd.c (_initialize_printcmd) <set print
7342 max-symbolic-offset>: Add help text.
7343 * record-full.c (_initialize_record_full) <set record full
7344 insn-number-max>: Likewise.
7345 * record.c (_initialize_record) <set record
7346 instruction-history-size, set record function-call-history-size>:
7347 Add help text.
7348 * ser-tcp.c (_initialize_ser_tcp) <set tcp connect-timeout>: Add
7349 help text.
7350 * tracepoint.c (_initialize_tracepoint) <set trace-buffer-size>:
7351 Likewise.
7352 * source.c (_initialize_source) <set listsize>: Add help text.
7353 * utils.c (initialize_utils) <set height, set width>: Likewise.
7354 <set pagination>: Mention "set height unlimited".
7355 * valprint.c (_initialize_valprint) <set print elements, set print
7356 repeats>: Document "unlimited".
7357
7358 2013-04-10 Pedro Alves <palves@redhat.com>
7359
7360 * cli/cli-cmds.c (quit_command): Call query_if_trace_running
7361 instead of disconnect_tracing.
7362 * infcmd.c (detach_command, disconnect_command): Call
7363 query_if_trace_running. Adjust.
7364 * top.c: Include "tracepoint.h".
7365 (quit_target): Delete. Contents moved ...
7366 (quit_force): ... here. Wrap each stage of teardown in
7367 TRY_CATCH. Call disconnect_tracing before detaching.
7368
7369 2013-04-10 Hui Zhu <hui@codesourcery.com>
7370 Yao Qi <yao@codesourcery.com>
7371
7372 * configure.ac: Check libbabeltrace is installed.
7373 * config.in: Regenerate.
7374 * configure: Regenerate.
7375 * Makefile.in (LIBBABELTRACE): New.
7376 (CLIBS): Add LIBBABELTRACE.
7377 * ctf.c: Include "exec.h".
7378 (CTF_EVENT_ID_STATUS, CTF_EVENT_ID_TSV_DEF): New macros.
7379 (CTF_EVENT_ID_TP_DEF, ctf_save_write_int32): New macros.
7380 (ctf_save_metadata_header): Define new type aliases in
7381 metadata.
7382 (ctf_write_header): Define event type "tsv_def" and "tp_def"
7383 in metadata. Start a new faked packet for trace status.
7384 (ctf_write_status): Write trace status to CTF.
7385 (ctf_write_uploaded_tsv): Write TSV to CTF.
7386 (ctf_write_uploaded_tp): Write tracepoint definition to CTF.
7387 (ctf_write_definition_end): End the faked packet.
7388
7389 (ctx, ctf_iter, trace_dirname): New.
7390 (start_pos): New variable.
7391 (ctf_destroy, ctf_open_dir, ctf_open): New.
7392 (SET_INT32_FIELD, SET_ARRAY_FIELD, SET_STRING_FIELD): New
7393 macros.
7394 (ctf_read_tsv, ctf_read_tp, ctf_close, ctf_files_info): New.
7395 (ctf_fetch_registers, ctf_xfer_partial): New.
7396 (ctf_get_trace_state_variable_value): New.
7397 (ctf_get_tpnum_from_frame_event): New.
7398 (ctf_get_traceframe_address): New.
7399 (ctf_trace_find, ctf_has_stack): New.
7400 (ctf_has_registers, ctf_traceframe_info, init_ctf_ops): New.
7401 (ctf_get_trace_status, ctf_read_status): New.
7402 (_initialize_ctf): New.
7403 * tracepoint.c (get_tracepoint_number): New
7404 (get_uploaded_tsv): Remove 'static'.
7405 (struct traceframe_info, trace_regblock_size): Move it to ...
7406 * tracepoint.h: ... here.
7407 (get_tracepoint_number): Declare it.
7408 (get_uploaded_tsv): Declare it.
7409
7410 * NEWS: Mention new configure option.
7411
7412 2013-04-10 Pedro Alves <palves@redhat.com>
7413 Hui Zhu <hui@codesourcery.com>
7414
7415 * breakpoint.c (dprintf_re_set): New.
7416 (initialize_breakpoint_ops): Set dprintf_breakpoint_ops re_set
7417 to dprintf_re_set.
7418
7419 2013-04-09 Joel Brobecker <brobecker@adacore.com>
7420
7421 * configure.tgt (gdb_target_obs) <powerpc-*-aix* | rs6000-*-*>:
7422 Remove solib-svr4.o from the list.
7423
7424 2013-04-09 Joel Brobecker <brobecker@adacore.com>
7425
7426 * varobj.c (update_dynamic_varobj_children) [!HAVE_PYTHON]:
7427 Use gdb_assert_not_reached instead of invalid boolean expression.
7428
7429 2013-04-09 Pedro Alves <palves@redhat.com>
7430
7431 * remote.c (unpush_and_perror): New function.
7432 (readchar, remote_serial_write): Use it.
7433
7434 2013-04-09 Markus Metzger <markus.t.metzger@intel.com>
7435
7436 * NEWS: Mention new btrace RSP packets.
7437
7438 2013-04-08 Tom Tromey <tromey@redhat.com>
7439
7440 * symmisc.c (dump_msymbols): Cast fprintf_filtered argument to
7441 long.
7442
7443 2013-04-08 Tom Tromey <tromey@redhat.com>
7444
7445 * maint.c (print_bfd_section_info): Print the section index.
7446 * symmisc.c (dump_msymbols): Print the section index.
7447
7448 2013-04-08 Tom Tromey <tromey@redhat.com>
7449
7450 PR symtab/8424:
7451 * blockframe.c (find_pc_partial_function_gnu_ifunc): Check
7452 SYMBOL_SECTION, not SYMBOL_OBJ_SECTION.
7453 * breakpoint.c (resolve_sal_pc): Update.
7454 * elfread.c (elf_gnu_ifunc_record_cache): Update.
7455 * findvar.c (struct minsym_lookup_data) <objfile>: New field.
7456 (minsym_lookup_iterator_cb): Use it.
7457 (default_read_var_value): Update.
7458 * hppa-hpux-tdep.c (hppa64_hpux_in_solib_call_trampoline):
7459 Update.
7460 * infcmd.c (jump_command): Update.
7461 * linespec.c (minsym_found): Update.
7462 * maint.c (maintenance_translate_address): Update.
7463 * minsyms.c (lookup_minimal_symbol_by_pc_section_1): Update.
7464 (prim_record_minimal_symbol_full): Don't set SYMBOL_OBJ_SECTION.
7465 * parse.c (write_exp_msymbol): Update.
7466 * printcmd.c (address_info): Update.
7467 * psymtab.c (find_pc_sect_psymbol): Update.
7468 (fixup_psymbol_section): Check SYMBOL_SECTION, not
7469 SYMBOL_OBJ_SECTION.
7470 (add_psymbol_to_bcache): Correctly initialize SYMBOL_SECTION.
7471 Don't initialize SYMBOL_OBJ_SECTION.
7472 * spu-tdep.c (spu_catch_start): Update.
7473 * stabsread.c (define_symbol): Don't set SYMBOL_SECTION.
7474 * symmisc.c (dump_msymbols, print_symbol): Update.
7475 * symtab.c (fixup_section): Don't set 'obj_section'. Change
7476 how fallback section is computed.
7477 (fixup_symbol_section): Update.
7478 (find_pc_sect_symtab, find_function_start_sal, skip_prologue_sal):
7479 Update.
7480 (allocate_symbol, initialize_symbol, allocate_template_symbol):
7481 Initialize SYMBOL_SECTION.
7482 * symtab.h (struct general_symbol_info) <section>: Update comment.
7483 <obj_section>: Remove.
7484 (SYMBOL_OBJ_SECTION): Add 'objfile' argument. Rewrite.
7485 (SYMBOL_OBJFILE): New macro.
7486
7487 2013-04-08 Tom Tromey <tromey@redhat.com>
7488
7489 * coffread.c (record_minimal_symbol): Update.
7490 * dbxread.c (record_minimal_symbol): Update.
7491 * elfread.c (record_minimal_symbol): Update.
7492 * machoread.c (macho_symtab_add_minsym): Update.
7493 * mdebugread.c (record_minimal_symbol, parse_partial_symbols):
7494 Update.
7495 * minsyms.c (prim_record_minimal_symbol): Update.
7496 (prim_record_minimal_symbol_full): Remove 'bfd_section'
7497 argument.
7498 (prim_record_minimal_symbol_and_info): Likewise.
7499 * minsyms.h (prim_record_minimal_symbol_full)
7500 (prim_record_minimal_symbol_and_info): Update.
7501 * symtab.c (allocate_symbol, initialize_symbol)
7502 (allocate_template_symbol): Initialize SYMBOL_SECTION.
7503 * xcoffread.c (record_minimal_symbol, scan_xcoff_symtab):
7504 Update.
7505
7506 2013-04-08 Tom Tromey <tromey@redhat.com>
7507
7508 PR symtab/8423:
7509 * solib-som.c (som_solib_section_offsets): Use BFD section
7510 indices. Set offsets for all sections.
7511 * somread.c (som_symtab_read): Compute BFD section for
7512 symbol. Use prim_record_minimal_symbol_and_info.
7513 (som_symfile_read): Fix comment.
7514 (struct find_section_offset_arg): New.
7515 (find_section_offset, set_section_index): New functions.
7516 (som_symfile_offsets): Use set_section_index to compute
7517 section indices.
7518
7519 2013-04-08 Tom Tromey <tromey@redhat.com>
7520
7521 * coffread.c (cs_to_section): Use gdb_bfd_section_index.
7522 * elfread.c (record_minimal_symbol, elf_symtab_read): Use
7523 gdb_bfd_section_index.
7524 * gdb_bfd.c (gdb_bfd_section_index, gdb_bfd_count_sections):
7525 New functions.
7526 * gdb_bfd.h (gdb_bfd_section_index, gdb_bfd_count_sections):
7527 Declare.
7528 * machoread.c (macho_symtab_add_minsym, macho_symfile_offsets):
7529 Update.
7530 * objfiles.c (add_to_objfile_sections_full): New function.
7531 (add_to_objfile_sections): Use it.
7532 (build_section_table): Rewrite.
7533 (objfile_relocate1): Use gdb_bfd_section_index. Update.
7534 * objfiles.h (obj_section_offset): Use gdb_bfd_section_index.
7535 (struct objfile) <sections>: Update comment.
7536 (ALL_OBJFILE_OSECTIONS): Skip sections where the_bfd_section
7537 is NULL.
7538 (ALL_OBJSECTIONS): Use it.
7539 * solib-dsbt.c (dsbt_relocate_main_executable): Update.
7540 * solib-frv.c (frv_relocate_main_executable): Update.
7541 * solib-target.c (solib_target_relocate_section_addresses):
7542 Use gdb_bfd_section_index.
7543 * symfile.c (build_section_addr_info_from_section_table):
7544 Use gdb_bfd_section_index.
7545 (build_section_addr_info_from_bfd, place_section): Likewise.
7546 * symtab.c (fixup_section): Update.
7547 * xcoffread.c (find_targ_sec): Use gdb_bfd_section_index.
7548
7549 2013-04-08 Tom Tromey <tromey@redhat.com>
7550
7551 * minsyms.h (struct bound_minimal_symbol): New.
7552 (lookup_minimal_symbol_and_objfile): Return bound_minimal_symbol.
7553 Remove objfile argument.
7554 (lookup_minimal_symbol_by_pc_section, lookup_minimal_symbol_by_pc):
7555 Return bound_minimal_symbol.
7556 * minsyms.c (lookup_minimal_symbol_by_pc_1)
7557 (lookup_minimal_symbol_by_pc_section, lookup_minimal_symbol_by_pc):
7558 Return bound_minimal_symbol.
7559 (in_gnu_ifunc_stub): Update.
7560 (lookup_minimal_symbol_and_objfile): Return bound_minimal_symbol.
7561 Remove 'objfile_p' argument.
7562 (lookup_solib_trampoline_symbol_by_pc): Update.
7563 * ada-tasks.c, amd64-windows-tdep.c, arm-tdep.c,
7564 arm-wince-tdep.c, block.c, blockframe.c, breakpoint.c, btrace.c,
7565 c-valprint.c, dwarf2loc.c, elfread.c, frame.c, frv-tdep.c,
7566 glibc-tdep.c, gnu-v2-abi.c, gnu-v3-abi.c, hppa-hpux-tdep.c,
7567 i386-tdep.c, ia64-tdep.c, infcall.c, infcmd.c, jit.c,
7568 linux-fork.c, m32c-tdep.c, m68hc11-tdep.c, maint.c,
7569 mips-tdep.c, p-valprint.c, parse.c, ppc-linux-tdep.c,
7570 ppc-sysv-tdep.c, printcmd.c, rs6000-tdep.c, sh64-tdep.c,
7571 stack.c, symtab.c, tui/tui-disasm.c: Update.
7572
7573 2013-04-08 Tom Tromey <tromey@redhat.com>
7574
7575 * ada-lang.c (ada_decode_symbol): Check and set 'ada_mangled'.
7576 Use symbol's obstack, not an objfile.
7577 * coffread.c (process_coff_symbol): Update.
7578 * dwarf2read.c (fixup_go_packaging, new_symbol_full): Update.
7579 * jv-lang.c (add_class_symbol): Update.
7580 * mdebugread.c (new_symbol): Update.
7581 * minsyms.c (prim_record_minimal_symbol_full)
7582 (terminate_minimal_symbol_table): Update.
7583 * psymtab.c (add_psymbol_to_bcache): Clear entire symbol. Update.
7584 * stabsread.c (define_symbol, read_enum_type): Update.
7585 * symtab.c (symbol_set_demangled_name, symbol_get_demangled_name):
7586 Handle Ada specially.
7587 (symbol_set_language): Add 'obstack' argument.
7588 (symbol_set_names): Update.
7589 (symbol_natural_name, symbol_demangled_name): Always use
7590 ada_decode_symbol.
7591 * symtab.h (struct general_symbol_info)
7592 <language_specific::obstack>: New field.
7593 <ada_mangled>: New field.
7594 (SYMBOL_SET_LANGUAGE): Add 'obstack' argument.
7595 (symbol_set_language): Update.
7596
7597 2013-04-08 Tom Tromey <tromey@redhat.com>
7598
7599 * symtab.c (symbol_init_cplus_specific, symbol_set_demangled_name):
7600 Take an obstack, not an objfile.
7601 (symbol_set_names): Update.
7602 * symtab.h (symbol_set_demangled_name): Update.
7603
7604 2013-04-08 Tom Tromey <tromey@redhat.com>
7605
7606 * coffread.c (process_coff_symbol, coff_read_enum_type): Call
7607 allocate_symbol.
7608 * dwarf2read.c (fixup_go_packaging): Call allocate_symbol.
7609 (read_func_scope): Call allocate_template_symbol.
7610 (new_symbol_full): Call allocate_symbol.
7611 * jit.c (finalize_symtab): Call allocate_symbol.
7612 * jv-lang.c (add_class_symbol): Call allocate_symbol.
7613 * mdebugread.c (parse_symbol, new_block): Call allocate_symbol.
7614 * stabsread.c (patch_block_stabs, define_symbol, read_enum_type)
7615 (common_block_end): Call allocate_symbol.
7616 * symtab.c (allocate_symbol, initialize_symbol)
7617 (allocate_template_symbol): New functions.
7618 * symtab.c (allocate_symbol, initialize_symbol)
7619 (allocate_template_symbol): Declare.
7620 * xcoffread.c (process_xcoff_symbol): Call initialize_symbol.
7621
7622 2013-04-08 Pedro Alves <palves@redhat.com>
7623 Keith Seitz <keiths@redhat.com>
7624
7625 * breakpoint.c (create_breakpoint): Rename
7626 "parse_condition_and_thread" parameter to "parse_arg". Update
7627 describing comment. If !PARSE_ARG, then error out if ARG is not
7628 the empty string after extracting the location.
7629 * breakpoint.h (create_breakpoint): Rename
7630 "parse_condition_and_thread" parameter to "parse_arg".
7631
7632 2013-04-08 Aleksandar Ristovski <aristovski@qnx.com
7633
7634 * solib-svr4.c (lm_addr_check): Add const qualifier to 'so' arg.
7635
7636 2013-04-07 Yao Qi <yao@codesourcery.com>
7637
7638 * remote.c (remote_trace_find): Change type of parameters 'addr1'
7639 and 'addr2' to CORE_ADDR.
7640 * target.c (update_current_target): Update.
7641 * target.h (struct target_ops) <to_trace_find>: Change parameter
7642 type to CORE_ADDR.
7643 * tracepoint.c (tfind_1): Change type of parameters 'addr1' and
7644 'addr2' to CORE_ADDR.
7645 (tfile_trace_find): Likewise.
7646 (tfile_get_traceframe_address): Change return type to CORE_ADDR.
7647 Change local variable 'addr' to type CORE_ADDR.
7648 * tracepoint.h (tfind_1): Update declaration.
7649
7650 2013-04-06 Eli Zaretskii <eliz@gnu.org>
7651
7652 * windows-nat.c (windows_get_absolute_argv0): Move from here...
7653 * mingw-hdep.c (windows_get_absolute_argv0): ...to here.
7654 Include main.h.
7655
7656 * windows-nat.h (windows_get_absolute_argv0): Move prototype from
7657 here...
7658 * main.h (windows_get_absolute_argv0): ...to here.
7659
7660 2013-04-05 Doug Evans <dje@google.com>
7661
7662 * dwarf2read.c (struct dwarf2_per_objfile): Tweak comment.
7663 (read_cutu_die_from_dwo): Add comments.
7664 (read_structure_type): Update comment.
7665 (read_enumeration_type, read_namespace_type): Update comment.
7666 (read_die_type, get_die_type_at_offset, get_die_type): Update comment.
7667
7668 2013-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
7669
7670 Convert man pages to texinfo, new gdbinit.5 texinfo page.
7671 * Makefile.in (gdb.z): Remove.
7672 (install-only): Remove $(man1dir) and gdb.1 installation.
7673 * gdb.1: Remove.
7674
7675 2013-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
7676
7677 Fix compatibility with Linux kernel 3.8.3.
7678 * linux-tdep.c (linux_find_memory_regions_full): Move variable number
7679 to more inner block. Remove parsing of NUMBER from outer block.
7680 Parse NUMBER only if KEYWORD has been identified.
7681
7682 2013-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
7683
7684 Fix variable name shadowing.
7685 * linux-tdep.c (linux_find_memory_regions_full): Rename outer variable
7686 filename to mapsfilename and update its uses.
7687
7688 2013-04-05 Eli Zaretskii <eliz@gnu.org>
7689
7690 * Makefile.in (TAGS): Avoid warning from etags when $GDB_NM_FILE is
7691 empty. See http://sourceware.org/ml/gdb-patches/2012-08/msg00504.html
7692 and http://sourceware.org/ml/gdb-patches/2013-04/msg00055.html for
7693 details of the problem.
7694
7695 2013-04-04 Pedro Alves <palves@redhat.com>
7696 Hui Zhu <hui@codesourcery.com>
7697
7698 * breakpoint.c (validate_commands_for_breakpoint): If validating a
7699 tracepoint, reset its STEP_COUNT and call validate_actionline.
7700
7701 2013-04-03 Doug Evans <dje@google.com>
7702
7703 * dwarf2read.c (read_die_and_siblings_1): Renamed from
7704 read_die_and_siblings.
7705 (read_die_and_siblings): New function.
7706 (read_cutu_die_from_dwo): Dump die if requested.
7707 (read_die_and_children): Call read_full_die_1 and
7708 read_die_and_siblings_1.
7709 (read_full_die): Dump die if requested.
7710
7711 * dwarf2read.c (read_comp_units_from_section): Add debugging printf.
7712
7713 * dwarf2read.c (struct dwo_file): New member comp_dir.
7714 Rename member name to dwo_name. All uses updated.
7715 (hash_dwo_file): Include comp_dir in computation.
7716 (eq_dwo_file): Ditto.
7717 (lookup_dwo_file_slot): New arg comp_dir. All callers updated.
7718 (create_dwo_in_dwp, lookup_dwo_in_dwp, open_and_init_dwo_file): Ditto.
7719
7720 * psymtab.c (read_psymtabs_with_fullname): Don't call
7721 psymtab_to_fullname if the basenames are different.
7722
7723 2013-04-03 Jan Kratochvil <jan.kratochvil@redhat.com>
7724
7725 * NEWS (Changes in GDB 7.6): Update the data-disassemble for "fullname".
7726 New entry about "fullname" presence.
7727
7728 2013-04-03 Pedro Alves <palves@redhat.com>
7729
7730 * NEWS: Mention x86_64/Cygwin as new native configuration.
7731
7732 2013-04-02 Doug Evans <dje@google.com>
7733
7734 * dwarf2read.c (read_structure_type): Fix typo in comment.
7735
7736 2013-04-02 Pedro Alves <palves@redhat.com>
7737
7738 * NEWS: Mention "set/show debug aarch64", "set/show debug
7739 coff-pe-read" and "set/show debug mach-o".
7740
7741 2013-04-02 Pedro Alves <palves@redhat.com>
7742
7743 * NEWS: Mention "set/show remote trace-buffer-size-packet".
7744
7745 2013-04-02 Eli Zaretskii <eliz@gnu.org>
7746
7747 * Makefile.in (HFILES_NO_SRCDIR): Remove call-cmds.h.
7748 gdb_string.h is now in common/.
7749
7750 2013-04-02 Pedro Alves <palves@redhat.com>
7751
7752 * NEWS: Move "set debug notification" and "set trace-buffer-size"
7753 under "New options".
7754
7755 2013-04-02 Jan Kratochvil <jan.kratochvil@redhat.com>
7756
7757 Revert this patch:
7758 PR gdb/15275
7759 * remote.c (remote_get_trace_status): Include putpkt in TRY_CATCH.
7760
7761 2013-04-02 Pedro Alves <palves@redhat.com>
7762
7763 PR gdb/15275
7764
7765 * remote.c (send_interrupt_sequence): Use remote_serial_write.
7766 (remote_serial_write): New function.
7767 (putpkt_binary, getpkt_or_notif_sane_1): Use remote_serial_write.
7768
7769 2013-04-01 Jiong Wang <jiwang@tilera.com>
7770
7771 * NEWS: Mention TILE-Gx in "New native configurations" and
7772 "New targets" sections.
7773
7774 2013-04-01 Doug Evans <dje@google.com>
7775
7776 * dwarf2read.c (lookup_signatured_type_at_offset): Delete.
7777 (process_enumeration_scope): Simplify.
7778
7779 * dwarf2read.c (struct dwarf2_per_cu_data): Move member
7780 type_unit_group ...
7781 (struct signatured_type): ... to here.
7782 (sig_type_ptr): New typedef.
7783 (type_unit_group): Delete member 't.first_cu'. Move member 'tus'
7784 out of union 't'. All uses updated.
7785 (dw2_get_file_names_reader): Assert not called for a type unit.
7786 (dw2_get_file_names): Assert not called for a type unit or type
7787 unit group.
7788 (build_type_psymtabs_reader): Assert called for a type unit.
7789 (build_type_psymtab_dependencies): Assert called for a type unit group.
7790
7791 * dwarf2read.c (free_dwo_file): Add comment.
7792 (dwarf2_per_objfile_free): Unref dwp bfd.
7793
7794 2013-04-01 Aleksandar Ristovski <aristovski@qnx.com>
7795
7796 * coff-pe-read.c (add_pe_exported_sym): Remove unused 'dll_name_len'.
7797 (add_pe_forwarded_sym): Remove unused 'section', 'dll_name_len'.
7798 (read_pe_exported_syms): Remove unused 'exportix'.
7799 (pe_text_section_offset): Remove unused 'opthdr_ofs', 'num_entries',
7800 'export_rva', 'export_size', 'expptr', 'exp_funcbase', 'expdata',
7801 'erva', 'name_rvas', 'ordinals', 'nexp', 'ordbase', 'dll_name'.
7802
7803 2013-04-01 Aleksandar Ristovski <aristovski@qnx.com>
7804
7805 * breakpoint.c (parse_cond_to_aexpr): Remove unused 'old_chain'.
7806 (print_it_watchpoint): Remove unused 'bl'.
7807 (say_where): Remove unused 'uiout'.
7808 (bpstat_remove_breakpoint_callback): Remove unused 'uiout'.
7809 (bkpt_breakpoint_hit): Remove unused 'b'.
7810 (internal_bkpt_print_it): Remove unused 'uiout'.
7811 * buildsym.c (augment_type_symtab): Remove unused 'i'.
7812
7813 2013-03-31 Tiago Stürmer Daitx <tdaitx@linux.vnet.ibm.com>
7814
7815 * ppc-sysv-tdep.c (ppc64_sysv_abi_push_float): New function.
7816 (ppc64_sysv_abi_push_dummy_call): Handle complex arguments.
7817
7818 2013-03-29 Doug Evans <dje@google.com>
7819
7820 * dwarf2read.c (open_dwo_file): Renamed from open_dwop_file.
7821 Delete arg is_dwp. All callers updated.
7822 (open_dwp_file): New function.
7823 (open_and_init_dwp_file): Call it.
7824 (get_dwp_file): New function.
7825 (lookup_dwo_cutu): Call it.
7826
7827 * dwarf2read.c (open_and_init_dwp_file): Remove incorrect, and
7828 unnecessary, cleanup.
7829
7830 * dwarf2read.c (lookup_dwo_cutu): Improve complaint text.
7831
7832 * dwarf2read.c (read_cutu_die_from_dwo): New function.
7833 (lookup_dwo_unit): New function.
7834 (init_cutu_and_read_dies): Move DWO handling to new functions.
7835
7836 * dwarf2read.c (struct signatured_type): Tweak comment.
7837 (struct dwo_unit): Tweak comment.
7838 (create_debug_types_hash_table): Tweak comment. Reformat long line.
7839 (create_dwo_debug_info_hash_table): Tweak comment.
7840 (dwarf2_per_cu_offset_and_type): Tweak comment.
7841
7842 * dwarf2read.c (lookup_signatured_type): Remove complaint about
7843 missing .debug_types section.
7844
7845 2013-03-29 Yao Qi <yao@codesourcery.com>
7846
7847 * corelow.c: Include "completer.h".
7848 (_initialize_corelow): Call add_target_with_completer with
7849 argument 'filename_completer'.
7850 * tracepoint.c: Likewise.
7851 * exec.c (_initialize_exec): Likewise.
7852 * target.c (add_target): Rename to ...
7853 (add_target_with_completer): ... this. Call set_cmd_completer
7854 if parameter completer is not NULL.
7855 (add_target): New.
7856 * target.h: Include "command.h".
7857 (add_target_with_completer): Declare it.
7858
7859 2013-03-28 Joel Brobecker <brobecker@adacore.com>
7860
7861 * coffread.c (is_import_fixup_symbol): New function.
7862 (record_minimal_symbol): Use is_import_fixup_symbol to
7863 detect import fixup symbols, and discard them.
7864
7865 2013-03-28 Doug Evans <dje@google.com>
7866
7867 * dwarf2read.c (create_debug_types_hash_table): Don't allocate the
7868 types hash table until we know we need it.
7869
7870 * dwarf2read.c (create_addrmap_from_index): Complain about bad CU
7871 index numbers.
7872
7873 * dwarf2read.c (dw2_get_file_names): Delete arg "objfile".
7874 All callers updated.
7875 (dw2_print_stats): Print #read CUs too.
7876 (dump_die_shallow): Print signatured types better.
7877
7878 * dwarf2read.c (struct dwarf2_per_cu_data): Rename member
7879 info_or_types_section to section. All uses updated.
7880 (struct dwo_unit): Ditto.
7881
7882 2013-03-28 Pedro Alves <palves@redhat.com>
7883
7884 * NEWS (New options): New section.
7885 (New options): Mention set/show remote trace-status-packet.
7886 * remote.c (PACKET_qTStatus): New enumeration value.
7887 (remote_get_trace_status): Skip sending qTStatus if the packet is
7888 disabled. Use packet_ok.
7889 (_initialize_remote): Register a configuration command for
7890 qTStatus packet.
7891
7892 2013-03-28 Doug Evans <dje@google.com>
7893
7894 * symfile.c (find_separate_debug_file): Add comment.
7895 (terminate_after_last_dir_separator): Tweak comment.
7896
7897 * dwarf2read.c (create_partial_symtab): Add forward decl.
7898 (create_partial_symtab): Move to be closer to other psymtab functions.
7899 (process_psymtab_comp_unit_reader, process_psymtab_comp_unit): Ditto.
7900
7901 * dwarf2read.c (dwarf2_physname): Move declaration to better spot.
7902 (compute_symtab_includes): Remove unnecessary forward declaration.
7903 (die_needs_namespace): Add comment marking group of functions for
7904 dwarf2 name computation.
7905
7906 * typeprint.c (_initialize_typeprint): Improve type help text.
7907
7908 * python/python.c (finish_python_initialization): Provide suggestion
7909 for how to tell gdb to find its python files.
7910
7911 2013-03-28 Pedro Alves <palves@redhat.com>
7912
7913 PR gdb/15294
7914
7915 * source.c (_initialize_source): Change back "set listsize" to an
7916 integer command.
7917
7918 2013-03-27 Gareth McMullin <gareth@blacksphere.co.nz>
7919
7920 PR gdb/15275
7921 * remote.c (remote_get_trace_status): Include putpkt in TRY_CATCH.
7922
7923 2013-03-27 Pedro Alves <palves@redhat.com>
7924
7925 * top.c (history_size): Rename to ...
7926 (history_size_setshow_var): ... this. Add comment.
7927 (show_commands): Use readline's 'history_length' instead of
7928 computing the history length by calling history_get in a loop.
7929 (set_history_size_command): Error out for sizes over INT_MAX.
7930 Restore previous history size on invalid size.
7931 (init_history): If HISTSIZE is negative, leave the history size as
7932 zero. Add comments.
7933 (init_main): Adjust.
7934
7935 2013-03-27 Pedro Alves <palves@redhat.com>
7936
7937 * coff-pe-read.c (_initialize_coff_pe_read): Rename "set debug
7938 coff_pe_read" command to "set debug coff-pe-read".
7939
7940 2013-03-27 Markus Metzger <markus.t.metzger@intel.com>
7941
7942 * record.c (command_size_to_target_size): Fix size comparison.
7943 Change parameter type from pointer to integer to integer.
7944 Update all users.
7945
7946 2013-03-27 Pierre Muller <muller@sourceware.org>
7947
7948 * windows-nat.c (handle_output_debug_string): Avoid typecast
7949 from integer of different size warning.
7950
7951 2013-03-26 Joel Brobecker <brobecker@adacore.com>
7952
7953 * windows-nat.c (handle_output_debug_string): Add empty line
7954 after local block variable definition.
7955
7956 2013-03-26 Pedro Alves <palves@redhat.com>
7957
7958 * ser-tcp.c (wait_for_connect): Make 'polls' parameter unsigned.
7959 (net_open): Make 'polls' local unsigned.
7960
7961 2013-03-26 Pedro Alves <palves@redhat.com>
7962
7963 * remote.c (_initialize_remote): Make "set remoteaddresssize"
7964 a zuinteger command instead of uinteger.
7965
7966 2013-03-26 Pedro Alves <palves@redhat.com>
7967
7968 * record-full.c (record_full_insn_num): Make it unsigned.
7969 (record_full_check_insn_num, record_full_message)
7970 (record_full_registers_change, record_full_xfer_partial): Remove
7971 record_full_insn_max_num check (it's always != 0).
7972 (record_full_info, record_full_restore): Use %u as format string.
7973 (): Use %u as format string.
7974 (set_record_full_insn_max_num): Remove record_full_insn_max_num
7975 check (it's always != 0).
7976
7977 2013-03-26 Pedro Alves <palves@redhat.com>
7978
7979 * dcache.c (_initialize_dcache): Make the "set dcache line-size"
7980 and "set dcache size" commands zuinteger instead of uinteger.
7981
7982 2013-03-26 Pedro Alves <palves@redhat.com>
7983
7984 * cris-tdep.c (_initialize_cris_tdep): Make the "set cris-version"
7985 command zuinteger instead of uinteger.
7986
7987 2013-03-26 Pedro Alves <palves@redhat.com>
7988
7989 * coff-pe-read.c (_initialize_coff_pe_read): Make the command
7990 zuinteger instead of uinteger.
7991
7992 2013-03-26 Pedro Alves <palves@redhat.com>
7993
7994 * record.c (record_insn_history_size_setshow_var)
7995 (record_call_history_size_setshow_var): New globals.
7996 (command_size_to_target_size): New function.
7997 (cmd_record_insn_history, cmd_record_call_history): Use
7998 command_size_to_target_size instead of cast.
7999 (validate_history_size, set_record_insn_history_size)
8000 (set_record_call_history_size): New functions.
8001 (_initialize_record): Install set_record_insn_history_size and
8002 set_record_call_history_size as "set" hooks of "set record
8003 instruction-history-size" and "set record
8004 function-call-history-size".
8005
8006 2013-03-26 Pedro Alves <palves@redhat.com>
8007
8008 * top.c (gdb_rl_operate_and_get_next): Replace max_input_history
8009 use with history_max_entries use. Remove FIXME note.
8010
8011 2013-03-26 Markus Metzger <markus.t.metzger@intel.com>
8012
8013 * record-btrace.c (record_btrace_close): Call
8014 record_btrace_auto_disable.
8015
8016 2013-03-25 Joel Brobecker <brobecker@adacore.com>
8017
8018 * rs6000-nat.c (fixup_breakpoints): Delete declaration.
8019
8020 2013-03-25 Doug Evans <dje@google.com>
8021
8022 * contrib/cc-with-tweaks.sh: Check exit code of dwp.
8023
8024 2013-03-25 Tom Tromey <tromey@redhat.com>
8025
8026 PR symtab/11462:
8027 * c-exp.y (exp): Add new productions for destructors after '.' and
8028 '->'.
8029 (write_destructor_name): New function.
8030
8031 2013-03-25 Tom Tromey <tromey@redhat.com>
8032
8033 PR c++/9197:
8034 * opencl-lang.c (evaluate_subexp_opencl) <STRUCTOP_STRUCT>: Use
8035 value_struct_elt, not lookup_struct_elt_type.
8036 * eval.c (evaluate_subexp_standard) <STRUCTOP_STRUCT,
8037 STRUCTOP_PTR>: Use value_struct_elt, not lookup_struct_elt_type.
8038 * expression.h (EVAL_AVOID_SIDE_EFFECTS): Update comment.
8039
8040 2013-03-25 Yao Qi <yao@codesourcery.com>
8041
8042 * ctf.c [USE_WIN32API]: Undef 'mkdir' and use 'mkdir'
8043 instead of '_mkdir'.
8044
8045 2013-03-23 Eli Zaretskii <eliz@gnu.org>
8046
8047 * windows-nat.c (windows_get_absolute_argv0): New function.
8048 * windows-nat.h: Add its prototype.
8049
8050 * main.c (get_init_files): Use filename_ncmp instead of strncmp.
8051 Use IS_DIR_SEPARATOR instead of looking for a character inside
8052 SLASH_STRING. Include filenames.h.
8053 (captured_main) [__MINGW32__]: Make argv[0] absolute, so that
8054 relocate_gdb_directory works when passed gdb_program_name.
8055 Include windows-nat.h.
8056
8057 2013-03-22 Jan Kratochvil <jan.kratochvil@redhat.com>
8058
8059 * exceptions.h (enum errors): New entry TARGET_CLOSE_ERROR.
8060 * remote.c (trace_error): Remove the special handling of '2'.
8061 (readchar) <SERIAL_EOF>
8062 (readchar) <SERIAL_ERROR>
8063 (getpkt_or_notif_sane_1): Use TARGET_CLOSE_ERROR for them.
8064 (remote_get_trace_status): Call throw_exception if EX is
8065 TARGET_CLOSE_ERROR.
8066 * utils.c (perror_with_name): Rename to ...
8067 (throw_perror_with_name): ... here. New parameter errcode, describe it
8068 in the function comment.
8069 (perror_with_name): New function wrapper.
8070 * utils.h (enum errors): New stub declaration.
8071 (throw_perror_with_name): New declaration.
8072
8073 2013-03-22 Pedro Alves <palves@redhat.com>
8074 Yao Qi <yao@codesourcery.com>
8075 Mark Kettenis <kettenis@gnu.org>
8076
8077 * cli/cli-setshow.c (do_set_command) <var_uinteger>:
8078 Don't let the user set the value to UINT_MAX directly.
8079 <var_integer>: Don't let the user set the value to INT_MAX
8080 directly.
8081
8082 2013-03-22 Jan Kratochvil <jan.kratochvil@redhat.com>
8083
8084 * remote.c (remote_unpush_target): New function.
8085 (remote_open_1): Remove two pop_target calls, update one comment, add
8086 comment to target_preopen call. Replace pop_target call by
8087 remote_unpush_target call.
8088 (interrupt_query, readchar, getpkt_or_notif_sane_1): Replace
8089 pop_target calls by remote_unpush_target calls.
8090
8091 2013-03-22 Pedro Alves <palves@redhat.com>
8092
8093 * linux-nat.c (linux_child_follow_fork): Don't call
8094 linux_enable_event_reporting.
8095 (linux_handle_extended_wait): Don't call
8096 linux_enable_event_reporting.
8097
8098 2013-03-22 Pedro Alves <palves@redhat.com>
8099
8100 * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code): Define INSN macro,
8101 use it to rewrite the trampoline buffers with type gdb_byte[], and
8102 undefine the macro. Remove char* cast.
8103
8104 2013-03-21 Doug Evans <dje@google.com>
8105
8106 New commands "mt set per-command {space,time,symtab} {on,off}".
8107 * NEWS: Add entry.
8108 * event-top.c: #include "maint.h".
8109 * main.c: #include "maint.h".
8110 * maint.c: #include <sys/time.h>, <time.h>, block.h, top.h,
8111 timeval-utils.h, maint.h, cli/cli-setshow.h.
8112 (per_command_time, per_command_space): New static globals.
8113 (per_command_symtab): New static global.
8114 (per_command_setlist, per_command_showlist): New static globals.
8115 (struct cmd_stats): Move here from utils.c.
8116 (set_per_command_time): Renamed from set_display_time in utils.c
8117 and moved here. All callers updated.
8118 (set_per_command_space): Renamed from set_display_space in utils.c
8119 and moved here. All callers updated.
8120 (count_symtabs_and_blocks): New function.
8121 (report_command_stats): Moved here from utils.c. Add support for
8122 printing symtab stats. Only print data if enabled before command
8123 executed.
8124 (make_command_stats_cleanup): Ditto.
8125 (sert_per_command_cmd, show_per_command_cmd): New functions.
8126 (_initialize_maint_cmds): Add new commands
8127 mt set per-command {space,time,symtab} {on,off}.
8128 * maint.h: New file.
8129 * top.c: #include "maint.h".
8130 * utils.c (reset_prompt_for_continue_wait_time): New function.
8131 (get_prompt_for_continue_wait_time): New function.
8132 * utils.h (reset_prompt_for_continue_wait_time): Declare
8133 (get_prompt_for_continue_wait_time): Declare.
8134 (make_command_stats_cleanup): Moved to maint.h.
8135 (set_display_time, set_display_space): Moved to maint.h and renamed
8136 to set_per_command_time, set_per_command_space.
8137 * cli/cli-setshow.c (parse_cli_boolean_value): Renamed from
8138 parse_binary_operation and made non-static. Don't call error,
8139 just return an error marker. All callers updated.
8140 * cli/cli-setshow.h (parse_cli_boolean_value): Declare.
8141
8142 2013-03-21 Tom Tromey <tromey@redhat.com>
8143
8144 * symfile.c (alloc_section_addr_info): Update header. Don't set
8145 'num_sections' field.
8146 (build_section_addr_info_from_section_table): Set 'num_sections'.
8147 (build_section_addr_info_from_bfd): Likewise.
8148 (build_section_addr_info_from_objfile): Remove dead loop
8149 condition.
8150 (free_section_addr_info): Unconditionally call xfree.
8151 (relative_addr_info_to_section_offsets, addrs_section_sort)
8152 (addr_info_make_relative, syms_from_objfile_1): Remove dead loop
8153 condition.
8154 (syms_from_objfile_1): Remove dead 'if' condition. Check
8155 'num_sections'.
8156 (add_symbol_file_command): Set 'num_sections'.
8157 * symfile-mem.c (symbol_file_add_from_memory): Set
8158 'num_sections'.
8159 * somread.c (som_symfile_offsets): Remove dead loop condition.
8160 * machoread.c (macho_symfile_offsets): Remove dead 'if'.
8161 * jit.c (jit_bfd_try_read_symtab): Set 'num_sections'.
8162
8163 2013-03-21 Tom Tromey <tromey@redhat.com>
8164
8165 * tracepoint.h (decode_agent_options): Add 'trace_string'
8166 argument.
8167 * tracepoint.c (decode_agent_options): Add 'trace_string'
8168 argument.
8169 (validate_actionline): Update.
8170 (collect_symbol): Add 'trace_string' argument.
8171 (struct add_local_symbols_data) <trace_string>: New field.
8172 (do_collect_symbol): Update.
8173 (add_local_symbols): Add 'trace_string' argument.
8174 (encode_actions_1): Update.
8175 (trace_dump_actions): Update.
8176 * dwarf2loc.c (access_memory): Update.
8177 * ax.h (struct agent_expr) <tracing, trace_string>: New fields.
8178 * ax-general.c (new_agent_expr): Update.
8179 * ax-gdb.h (gen_trace_for_expr, gen_trace_for_var)
8180 (gen_trace_for_return_address): Add argument.
8181 (trace_kludge, trace_string_kludge): Remove.
8182 * ax-gdb.c (trace_kludge, trace_string_kludge): Remove.
8183 (gen_traced_pop, gen_fetch, gen_bitfield_ref, gen_expr): Update.
8184 (gen_trace_for_var): Add 'trace_string' argument.
8185 (gen_trace_for_expr, gen_trace_for_return_address): Likewise.
8186 (gen_printf, agent_eval_command_one): Update.
8187
8188 2013-03-21 Tom Tromey <tromey@redhat.com>
8189
8190 PR exp/15109:
8191 * c-exp.y (yylex): Rewrite to push all tokens onto the FIFO.
8192 Handle FILENAME token.
8193
8194 2013-03-21 Tom Tromey <tromey@redhat.com>
8195
8196 * c-exp.y (YYPRINT): Define.
8197 (c_print_token): New function.
8198
8199 2013-03-21 Tom Tromey <tromey@redhat.com>
8200
8201 * c-exp.y (%union) <sym, ivar, ivec>: Remove.
8202
8203 2013-03-21 Yao Qi <yao@codesourcery.com>
8204
8205 * ctf.c: Include "gdb_stat.h".
8206 [USE_WIN32API]: New macro 'mkdir'.
8207 (ctf_start): Use permission bits macros if they are defined.
8208
8209 2013-03-20 Keith Seitz <keiths@redhat.com>
8210
8211 * breakpoint.h (struct breakpoint): Add comment to
8212 extra_string indicating that this member is mallod'd.
8213 * breakpoint.c (base_breakpoint_dtor): Free extra_string.
8214
8215 2013-03-20 Pedro Alves <palves@redhat.com>
8216
8217 PR gdb/15289
8218
8219 * cli/cli-setshow.c (do_set_command)
8220 <var_uinteger, var_zuinteger>: Use LONGEST for variable holding
8221 the result of parsing the command argument. Throw error if the
8222 value is greater than UINT_MAX. Print the invalid value with
8223 plongest.
8224 <var_integer, var_zinteger>: Use LONGEST for variable holding the
8225 result of parsing the command argument. Throw error if the value
8226 is greater than INT_MAX, not greater or equal. Also throw error
8227 if the value is less than INT_MIN. Print the invalid value with
8228 plongest.
8229 <var_zuinteger_unlimited>: Throw error if the value is greater
8230 than INT_MAX, not greater or equal.
8231 (do_show_command) <var_integer, var_zinteger,
8232 var_zuinteger_unlimited>: Use %d for printing int, not %u.
8233
8234 2013-03-20 Tom Tromey <tromey@redhat.com>
8235
8236 * ax-gdb.c (gen_var_ref): Unconditionally call via computed ops,
8237 if possible.
8238 * dwarf2read.c (read_func_scope): Remove old FIXME.
8239 * eval.c (evaluate_subexp_standard): Check SYMBOL_COMPUTED_OPS,
8240 not LOC_COMPUTED.
8241 * findvar.c (symbol_read_needs_frame, default_read_var_value):
8242 Unconditionally call via computed ops, if possible.
8243 * printcmd.c (address_info): Unconditionally call via computed ops,
8244 if possible.
8245 * stack.c (read_frame_arg): Unconditionally call via computed ops,
8246 if possible.
8247 * symtab.c (register_symbol_computed_impl): Sanity check 'ops'.
8248 * tracepoint.c (scope_info): Unconditionally call via computed ops,
8249 if possible.
8250
8251 2013-03-20 Jan Kratochvil <jan.kratochvil@redhat.com>
8252 Tom Tromey <tromey@redhat.com>
8253
8254 PR symtab/8421:
8255 * coffread.c (coff_register_index): New global.
8256 (process_coff_symbol, coff_read_enum_type): Set
8257 SYMBOL_ACLASS_INDEX.
8258 (_initialize_coffread): Initialize new global.
8259 * dwarf2loc.c (locexpr_find_frame_base_location)
8260 (dwarf2_block_frame_base_locexpr_funcs)
8261 (loclist_find_frame_base_location)
8262 (dwarf2_block_frame_base_loclist_funcs): New.
8263 (dwarf_expr_frame_base_1): Call SYMBOL_BLOCK_OPS, remove internal_error.
8264 (dwarf2_locexpr_funcs, dwarf2_loclist_funcs): Add location_has_loclist.
8265 * dwarf2loc.h (dwarf2_block_frame_base_locexpr_funcs)
8266 (dwarf2_block_frame_base_loclist_funcs): New.
8267 * dwarf2read.c (dwarf2_locexpr_index, dwarf2_loclist_index)
8268 (dwarf2_locexpr_block_index, dwarf2_loclist_block_index): New
8269 globals.
8270 (read_func_scope): Update.
8271 (fixup_go_packaging, mark_common_block_symbol_computed)
8272 (var_decode_location, new_symbol_full, dwarf2_const_value):
8273 Set SYMBOL_ACLASS_INDEX.
8274 (dwarf2_symbol_mark_computed): Likewise. Add 'is_block' argument.
8275 (_initialize_dwarf2_read): Initialize new globals.
8276 * jit.c (finalize_symtab): Set SYMBOL_ACLASS_INDEX.
8277 * jv-lang.c (add_class_symbol): Set SYMBOL_ACLASS_INDEX.
8278 * mdebugread.c (mdebug_register_index, mdebug_regparm_index): New
8279 globals.
8280 (parse_symbol, psymtab_to_symtab_1): Set SYMBOL_ACLASS_INDEX.
8281 (_initialize_mdebugread): Initialize new globals.
8282 * psympriv.h (struct partial_symbol) <aclass>: Update comment.
8283 * stabsread.c (patch_block_stabs): Set SYMBOL_ACLASS_INDEX.
8284 (stab_register_index, stab_regparm_index): New globals.
8285 (define_symbol, read_enum_type, common_block_end): Set
8286 SYMBOL_ACLASS_INDEX.
8287 (_initialize_stabsread): Initialize new globals.
8288 * symtab.c (next_aclass_value, symbol_impl, symbol_impls): New
8289 globals.
8290 (MAX_SYMBOL_IMPLS): New define.
8291 (register_symbol_computed_impl, register_symbol_block_impl)
8292 (register_symbol_register_impl)
8293 (initialize_ordinary_address_classes): New functions.
8294 (_initialize_symtab): Call initialize_ordinary_address_classes.
8295 * symtab.h (enum address_class) <LOC_FINAL_VALUE>: New constant.
8296 (struct symbol_impl): New.
8297 (SYMBOL_ACLASS_BITS): New define.
8298 (struct symbol) <aclass, ops>: Remove fields.
8299 <aclass_index>: New field.
8300 (symbol_impls): Declare.
8301 (SYMBOL_CLASS, SYMBOL_COMPUTED_OPS, SYMBOL_REGISTER_OPS): Redefine.
8302 (SYMBOL_IMPL, SYMBOL_ACLASS_INDEX): New defines.
8303 (register_symbol_computed_impl, register_symbol_block_impl)
8304 (register_symbol_register_impl): Declare.
8305 (struct symbol_computed_ops): Add location_has_loclist.
8306 (struct symbol_block_ops): New.
8307 (SYMBOL_BLOCK_OPS): New.
8308 * xcoffread.c (process_xcoff_symbol): Set SYMBOL_ACLASS_INDEX.
8309
8310 2013-03-20 Tom Tromey <tromey@redhat.com>
8311
8312 * psymtab.c (find_pc_sect_psymbol, fixup_psymbol_section)
8313 (print_partial_symbols, recursively_search_psymtabs): Use
8314 PSYMBOL_CLASS.
8315
8316 2013-03-20 Pierre Muller <muller@sourceware.org>
8317
8318 * contrib/ari/gdb_ari.sh (OP eol rule): Also check
8319 addtion, subtraction, multiplication and division binary operator.
8320
8321 2013-03-20 Jan Kratochvil <jan.kratochvil@redhat.com>
8322
8323 Code cleanup.
8324 * bfd-target.c (target_bfd_xclose): Remove parameter quitting.
8325 * bsd-kvm.c (bsd_kvm_close): Likewise.
8326 * bsd-uthread.c (bsd_uthread_close): Likewise.
8327 * corelow.c (core_close): Likewise.
8328 (core_close_cleanup): Remove parameter quitting from a caller.
8329 * event-top.c (async_disconnect): Likewise.
8330 * exec.c (exec_close_1): Remove parameter quitting.
8331 * go32-nat.c (go32_close): Likewise.
8332 * linux-nat.c (linux_nat_close): Remove parameter quitting. Remove
8333 parameter quitting from a caller.
8334 * mips-linux-nat.c (super_close): Remove parameter quitting from the
8335 variable.
8336 (mips_linux_close): Remove parameter quitting. Remove parameter
8337 quitting from a caller.
8338 * monitor.c (monitor_close): Remove parameter quitting.
8339 * monitor.h (monitor_close): Likewise.
8340 * record-btrace.c (record_btrace_close): Likewise.
8341 * record-full.c (record_full_close): Likewise.
8342 * remote-m32r-sdi.c (m32r_close): Remove parameter quitting and remove
8343 it also from fprintf_unfiltered.
8344 * remote-mips.c (mips_close): Remove parameter quitting.
8345 (mips_detach): Remove parameter quitting from a caller.
8346 * remote-sim.c (gdbsim_close): Remove parameter quitting.
8347 (gdbsim_close): Remove duplicate function comment. Remove parameter
8348 quitting and remove it also from printf_filtered.
8349 * remote.c (remote_close): Remove parameter quitting.
8350 * solib-svr4.c (enable_break): Remove parameter quitting from a caller.
8351 * target.c (update_current_target): Remove parameter int from to_close
8352 de_fault.
8353 (push_target, unpush_target, pop_target): Remove parameter quitting from
8354 a caller.
8355 (pop_all_targets_above, pop_all_targets): Remove parameter quitting.
8356 Remove parameter quitting from a caller.
8357 (target_preopen): Remove parameter quitting from a caller.
8358 (target_close): Remove parameter quitting. Remove parameter quitting
8359 from a caller two times. Remove parameter quitting also from
8360 fprintf_unfiltered.
8361 * target.h (struct target_ops): Remove parameter quitting and as int
8362 from fields to_xclose and to_close.
8363 (extern struct target_ops current_target):
8364 (target_close, pop_all_targets): Remove parameter quitting. Update the
8365 comment.
8366 (pop_all_targets_above): Remove parameter quitting.
8367 * top.c (quit_target): Remove parameter quitting from a caller.
8368 * tracepoint.c (tfile_close): Remove parameter quitting.
8369 * windows-nat.c (windows_close): Remove parameter quitting.
8370
8371 2013-03-20 Corinna Vinschen <vinschen@redhat.com>
8372
8373 * windows-nat.c (handle_output_debug_string): Replace call
8374 to string_to_core_addr with call to strtoull.
8375
8376 2013-03-20 Yao Qi <yao@codesourcery.com>
8377
8378 * ctf.c (ctf_save_metadata_header): Define macro HOST_ENDIANNESS
8379 and write it to CTF metadata.
8380
8381 2013-03-19 Corinna Vinschen <vinschen@redhat.com>
8382
8383 * windows-nat.c (handle_output_debug_string): Change type of n to
8384 SIZE_T to avoid crash on 64 bit systems.
8385
8386 2013-03-17 Eli Zaretskii <eliz@gnu.org>
8387
8388 * python/python-internal.h (HAVE_SNPRINTF)
8389 [_WIN32 && HAVE_DECL_SNPRINTF]: Define, to avoid compiler warnings
8390 about redefinition of snprintf by pyerrors.h.
8391
8392 2013-03-15 Steve Ellcey <sellcey@mips.com>
8393
8394 * remote-sim.c (sim_command_completer): Make char arguments const.
8395
8396 2013-03-15 Tom Tromey <tromey@redhat.com>
8397
8398 PR c++/15116:
8399 * gdbtypes.c (types_equal): Handle TYPE_CODE_FUNC.
8400
8401 2013-03-14 Tom Tromey <tromey@redhat.com>
8402
8403 * gdb_bfd.c (struct gdb_bfd_data) <crc_computed, crc>:
8404 New fields.
8405 (get_file_crc): Move from symfile.c.
8406 (gdb_bfd_crc): New function.
8407 * gdb_bfd.h (gdb_bfd_crc): Declare.
8408 * objfiles.h (struct objfile) <crc32, crc32_p>: Remove.
8409 * symfile.c (get_file_crc): Move to gdb_bfd.c.
8410 (separate_debug_file_exists): Use gdb_bfd_crc.
8411
8412 2013-03-14 Tom Tromey <tromey@redhat.com>
8413
8414 * symfile.c (get_debug_link_info): Remove.
8415 (find_separate_debug_file_by_debuglink): Use
8416 bfd_get_debug_link_info.
8417
8418 2013-03-14 Tom Tromey <tromey@redhat.com>
8419
8420 * symtab.c (error_in_psymtab_expansion): New function.
8421 (lookup_symbol_aux_quick)
8422 (basic_lookup_transparent_type_quick): Remove "last resort"
8423 code. Use error_in_psymtab_expansion.
8424
8425 2013-03-14 Doug Evans <dje@google.com>
8426 Jan Kratochvil <jan.kratochvil@redhat.com>
8427
8428 * dwarf2read.c (dw2_map_symtabs_matching_filename): Put continue after
8429 any successful compare_filenames_for_search or FILENAME_CMP.
8430 * psymtab.c (partial_map_symtabs_matching_filename): Likewise.
8431 * symtab.c (iterate_over_some_symtabs): Likewise.
8432
8433 2013-03-14 Jan Kratochvil <jan.kratochvil@redhat.com>
8434
8435 * source.c (print_source_lines_base): Make a local copy of
8436 symtab_to_fullname.
8437
8438 2013-03-14 Hui Zhu <hui_zhu@mentor.com>
8439 Jan Kratochvil <jan.kratochvil@redhat.com>
8440
8441 * source.c (print_source_lines_base): Suppress "file" for TUI.
8442
8443 2013-03-14 Keith Seitz <keiths@redhat.com>
8444 Alan Matsuoka <alanm@redhat.com>
8445
8446 PR c++/15203
8447 PR c++/15210
8448 * cp-namespace.c (cp_lookup_nested_symbol): Handle TYPE_CODE_FUNC and
8449 TYPE_CODE_METHOD.
8450 * elfread.c (elf_symtab_read): Handle BSF_GNU_UNIQUE for certain
8451 symbols.
8452
8453 2013-03-14 Yao Qi <yao@codesourcery.com>
8454
8455 * tracepoint.c (tfile_write_status): Write 'stop_desc' of trace
8456 status to tfile if trace is stopped by command 'tstop'.
8457
8458 2013-03-14 Yao Qi <yao@codesourcery.com>
8459
8460 * tracepoint.c (tfile_write_status): Write trace notes and user
8461 name into tfile if they are not NULL.
8462
8463 2013-03-14 Hui Zhu <hui@codesourcery.com>
8464 Yao Qi <yao@codesourcery.com>
8465
8466 * Makefile.in (REMOTE_OBS): Add ctf.o.
8467 (SFILES): Add ctf.c.
8468 (HFILES_NO_SRCDIR): Add ctf.h.
8469 * ctf.c, ctf.h: New files.
8470 * tracepoint.c: Include 'ctf.h'.
8471 (collect_pseudocommand): Remove static.
8472 (trace_save_command): Parse option "-ctf".
8473 Produce different trace file writers per option.
8474 Adjust output message.
8475 (trace_save_tfile, trace_save_ctf): New.
8476 * tracepoint.h (trace_save_tfile, trace_save_ctf): Declare.
8477 * mi/mi-main.c: Include 'ctf.h'.
8478 (mi_cmd_trace_save): Handle option '-ctf'. Call either
8479 trace_save_tfile or trace_save_ctf.
8480 * NEWS: Mention these changes.
8481
8482 2013-03-14 Yao Qi <yao@codesourcery.com>
8483
8484 * tracepoint.c (trace_file_writer_xfree): New.
8485 (struct tfile_writer_data): New.
8486 (tfile_dtor, tfile_can_target_save, tfile_start): New.
8487 (tfile_write_header, tfile_write_regblock_type): New.
8488 (tfile_write_status, tfile_write_uploaded_tsv): New.
8489 (tfile_write_uploaded_tp, tfile_write_definition_end): New.
8490 (tfile_write_raw_data, (tfile_end): New.
8491 (tfile_write_ops): New global variable.
8492 (TRACE_WRITE_R_BLOCK): New macro.
8493 (TRACE_WRITE_M_BLOCK_HEADER): New macro.
8494 (TRACE_WRITE_M_BLOCK_MEMORY): New macro.
8495 (TRACE_WRITE_V_BLOCK): New macro.
8496 (trace_save): Add extra one parameter WRITER. Make it static.
8497 Use WRITER to writer trace.
8498 (tfile_trace_file_writer_new): New.
8499 (trace_save_command): Caller update.
8500 (trace_save_tfile): Write trace data in TFILE format.
8501 * tracepoint.h (struct trace_frame_write_ops): New.
8502 (struct trace_file_write_ops): New.
8503 (struct trace_file_writer): New.
8504 (trace_save): Remove its declaration.
8505 (trace_save_tfile): Declare it.
8506 * mi/mi-main.c (mi_cmd_trace_save): Call trace_save_tfile
8507 instead of trace_save.
8508
8509 2013-03-13 Pedro Alves <palves@redhat.com>
8510
8511 * hppa-hpux-nat.c (hppa_hpux_save_state_offset): Make static.
8512
8513 2013-03-13 Pedro Alves <palves@redhat.com>
8514
8515 * dbxread.c (read_ofile_symtab, process_one_symbol): Remove
8516 commented out code.
8517 * demangle.c (current_demangling_style_string): Make it const.
8518 (set_demangling_command): Assert the demangling style is known.
8519 Remove all handling of unknown styles. Set
8520 'current_demangling_style_string' to an element of the
8521 demangling_style_names array.
8522 (set_demangling_style): Delete.
8523 (_initialize_demangler): Set current_demangling_style_string to the
8524 element of the demangling_style_names array that corresponds to
8525 the default demangling style. Remove FIXME note. Don't call
8526 set_demangling_style.
8527 * gdb-demangle.h (set_demangling_style): Remove declaration.
8528
8529 2013-03-13 Pedro Alves <palves@redhat.com>
8530
8531 * ada-lang.c (struct add_partial_datum) <text, text0, word>: Make
8532 fields const.
8533 (ada_make_symbol_completion_list): Make "text0" parameter const.
8534 * ax-gdb.c (agent_eval_command_one): Make "exp" parameter const.
8535 * breakpoint.c (condition_completer): Make "text" and "word"
8536 parameters const. Adjust.
8537 (check_tracepoint_command): Adjust to validate_actionline
8538 prototype change.
8539 (catch_syscall_completer): Make "text" and "word" parameters
8540 const.
8541 * cli/cli-cmds.c (show_user): Make "comname" local const.
8542 (valid_command_p): Make "command" parameter const.
8543 (alias_command): Make "alias_prefix" and "command_prefix" locals
8544 const.
8545 * cli/cli-decode.c (add_cmd): Make "name" parameter const.
8546 (add_alias_cmd): Make "name" and "oldname" parameters const.
8547 Adjust. No longer make copy of OLDNAME.
8548 (add_prefix_cmd, add_abbrev_prefix_cmd, add_set_or_show_cmd)
8549 (add_setshow_cmd_full, add_setshow_enum_cmd)
8550 (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
8551 (add_setshow_filename_cmd, add_setshow_string_cmd)
8552 (add_setshow_string_noescape_cmd)
8553 (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
8554 (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
8555 (add_setshow_zuinteger_unlimited_cmd, add_setshow_zuinteger_cmd)
8556 (delete_cmd, add_info, add_info_alias, add_com, add_com_alias):
8557 Make "name" parameter const.
8558 (help_cmd): Rename "command" parameter to "arg". New const local
8559 "command".
8560 (find_cmd): Make "command" parameter const.
8561 (lookup_cmd_1): Make "text" parameter pointer to const. Adjust to
8562 deprecated_cmd_warning prototype change.
8563 (undef_cmd_error): Make "cmdtype" parameter const.
8564 (lookup_cmd): Make "line" parameter const.
8565 (deprecated_cmd_warning): Change type of "text" parameter to
8566 pointer to const char, from pointer to pointer to char. Adjust.
8567 (lookup_cmd_composition): Make "text" parameter const.
8568 (complete_on_cmdlist, complete_on_enum): Make "text" and "word"
8569 parameters const.
8570 * cli/cli-decode.h (struct cmd_list_element) <name>: Make field
8571 const.
8572 * cli/cli-script.c (validate_comname): Make "tem" local const.
8573 (define_command): New const local "tem_c". Use it in calls to
8574 lookup_cmd.
8575 (document_command): Make "tem" and "comfull" locals const.
8576 (show_user_1): Make "prefix" and "name" parameters const.
8577 * cli-script.h (show_user_1): Make "prefix" and "name" parameters
8578 const.
8579 * command.h (add_cmd, add_alias_cmd, add_prefix_cmd)
8580 (add_abbrev_prefix_cmd, completer_ftype, lookup_cmd, lookup_cmd_1)
8581 (deprecated_cmd_warning, lookup_cmd_composition, add_com)
8582 (add_com_alias, add_info, add_info_alias, complete_on_cmdlist)
8583 (complete_on_enum, add_setshow_enum_cmd)
8584 (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
8585 (add_setshow_filename_cmd, add_setshow_string_cmd)
8586 (add_setshow_string_noescape_cmd)
8587 (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
8588 (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
8589 (add_setshow_zuinteger_cmd, add_setshow_zuinteger_unlimited_cmd):
8590 Change prototypes, constifying strings.
8591 * completer.c (noop_completer, filename_completer): Make "text"
8592 and "prefix" parameters const.
8593 (location_completer, expression_completer)
8594 (complete_line_internal): Make "text" and "prefix" parameters
8595 const and adjust.
8596 (command_completer, signal_completer): Make "text" and "prefix"
8597 parameters const.
8598 * completer.h (noop_completer, filename_completer)
8599 (expression_completer, location_completer, command_completer)
8600 (signal_completer): Change prototypes.
8601 * corefile.c (complete_set_gnutarget): Make "text" and "word"
8602 parameters const.
8603 * cp-abi.c (cp_abi_completer): Likewise.
8604 * expression.h (parse_expression_for_completion): Change
8605 prototype.
8606 * f-lang.c (f_make_symbol_completion_list): Make "text" and "word"
8607 parameters const.
8608 * infcmd.c (_initialize_infcmd): Make "cmd_name" local const.
8609 * infrun.c (handle_completer): Make "text" and "word" parameters
8610 const.
8611 * interps.c (interpreter_completer): Make "text" and "word"
8612 parameters const.
8613 * language.h (struct language_defn)
8614 <la_make_symbol_completion_list>: Make "text" and "word"
8615 parameters const.
8616 * parse.c (parse_exp_1): Move const hack to parse_exp_in_context.
8617 (parse_exp_in_context): Rename to ...
8618 (parse_exp_in_context_1): ... this.
8619 (parse_exp_in_context): Reimplement, with const hack from
8620 parse_exp_1.
8621 (parse_expression_for_completion): Make "string" parameter const.
8622 * printcmd.c (decode_format): Make "string_ptr" parameter pointer
8623 to pointer to const char. Adjust.
8624 (print_command_1): Make "exp" parameter const.
8625 (output_command): Rename to ...
8626 (output_command_const): ... this. Make "exp" parameter const.
8627 (output_command): Reimplement.
8628 (x_command): Adjust.
8629 (display_command): Rename "exp" parameter to "arg". New "exp"
8630 local, const version of "arg".
8631 * python/py-auto-load.c (gdbpy_initialize_auto_load): Make
8632 "cmd_name" local const.
8633 * python/py-cmd.c (cmdpy_destroyer): Cast const away in xfree
8634 call.
8635 (cmdpy_completer): Make "text" and "word" parameters const.
8636 (gdbpy_parse_command_name): Make "prefix_text2" local const.
8637 * python/py-param.c (add_setshow_generic): Make "tmp_name" local
8638 const.
8639 * remote.c (_initialize_remote): Make "cmd_name" local const.
8640 * symtab.c (language_search_unquoted_string): Make "text" and "p"
8641 parameters const. Adjust.
8642 (completion_list_add_fields): Make "sym_text", "text" and "word"
8643 parameters const.
8644 (struct add_name_data) <sym_text, text, word>: Make fields const.
8645 (default_make_symbol_completion_list_break_on): Make "text" and
8646 "word" parameters const. Adjust locals.
8647 (default_make_symbol_completion_list)
8648 (make_symbol_completion_list, make_symbol_completion_type)
8649 (make_symbol_completion_list_fn): Make "text" and "word"
8650 parameters const.
8651 (make_file_symbol_completion_list): Make "text", "word" and
8652 "srcfile" parameters const. Adjust locals.
8653 (add_filename_to_list): Make "text" and "word" parameters const.
8654 (struct add_partial_filename_data) <text, word>: Make fields
8655 const.
8656 (make_source_files_completion_list): Make "text" and "word"
8657 parameters const.
8658 * symtab.h (default_make_symbol_completion_list_break_on)
8659 (default_make_symbol_completion_list, make_symbol_completion_list)
8660 (make_symbol_completion_type enum type_code)
8661 (make_symbol_completion_list_fn make_file_symbol_completion_list)
8662 (make_source_files_completion_list): Change prototype.
8663 * top.c (execute_command): Adjust to pass pointer to pointer to
8664 const char to lookup_cmd, and to deprecated_cmd_warning prototype
8665 change.
8666 (set_verbose): Make "cmdname" local const.
8667 * tracepoint.c (decode_agent_options): Make "exp" parameter const,
8668 and adjust.
8669 (validate_actionline): Make "line" parameter a pointer to const
8670 char, and adjust.
8671 (encode_actions_1): Make "action_exp" local const, and adjust.
8672 (encode_actions): Adjust.
8673 (replace_comma): Delete.
8674 (trace_dump_actions): Make "action_exp" and "next_comma" locals
8675 const, and adjust. Don't frob the action string while splitting
8676 it at commas. Instead, make a copy of each split substring in
8677 turn.
8678 (trace_dump_command): Adjust to validate_actionline prototype
8679 change.
8680 * tracepoint.h (decode_agent_options, decode_agent_options)
8681 (encode_actions, validate_actionline): Change prototypes.
8682 * valprint.h (output_command): Delete declaration.
8683 (output_command_const): Declare.
8684 * value.c (function_destroyer): Cast const away in xfree call.
8685
8686 2013-03-13 Pedro Alves <palves@redhat.com>
8687
8688 * ada-lang.c (ada_decode_symbol): Cast away constness of GSYMBOL
8689 rather than casting 'const char * const *' to 'const char **'.
8690 * ada-lex.l (processInt): Make "trailer" local const. Remove
8691 'const char **' cast.
8692 * arm-linux-tdep.c (arm_stap_parse_special_token): Add 'char *'
8693 locals, and use those as strtol output pointer, instead than doing
8694 invalid casts to from 'const char **' to 'char **'.
8695 (_initialize_demangle): Remove cast.
8696 * i386-tdep.c (i386_stap_parse_special_token): : Add 'char *'
8697 locals, and use those as strtol output pointer, instead than doing
8698 invalid casts to from 'const char **' to 'char **'.
8699 * solib-dsbt.c (dsbt_get_initial_loadmaps): Remove 'gdb_byte**'
8700 casts.
8701 * stap-probe.c (stap_parse_register_operand)
8702 (stap_parse_single_operand): Likewise.
8703
8704 2013-03-13 Yao Qi <yao@codesourcery.com>
8705
8706 * tracepoint.c (tfile_get_trace_state_variable_value): Look for
8707 the last matched 'V' blcok in trace frame.
8708
8709 2013-03-12 Joel Brobecker <brobecker@adacore.com>
8710
8711 * NEWS: Create a new section for the next release branch.
8712 Rename the section of the current branch, now that it has
8713 been cut.
8714
8715 2013-03-12 Joel Brobecker <brobecker@adacore.com>
8716
8717 GDB 7.6 branch created (branch timestamp: 2013-03-12 22:15 UTC)
8718 * version.in: Bump version to 7.6.50.20130312-cvs.
8719
8720 2013-03-12 Keith Seitz <keiths@redhat.com>
8721
8722 * mi/mi-cmds.h (mi_execute_command): Make "cmd" const.
8723 * mi/mi-interp.c (mi_interpreter_exec): Make "command" const.
8724 Remove temporary copy of input string.
8725 (mi_execute_command_wrapper): Make "cmd" const.
8726 * mi/mi-main.c (mi_execute_command): Make "string_ptr" const.
8727 * mi/mi-parse.c (mi_parse_argv): Make "args" const.
8728 Use const strings.
8729 (mi_parse): Make "cmd" const.
8730 Use const strings.
8731 * mi/mi-parse.h (mi_parse): Make "cmd" const.
8732
8733 2013-03-12 Keith Seitz <keiths@redhat.com>
8734
8735 * ada-lang.c (ada_read_renaming_var_value): Pass const
8736 pointer to expression string to parse_exp_1.
8737 (create_excep_cond_exprs): Likewise.
8738 * ax-gdb.c (agent_eval_command_one): Likewise.
8739 (maint_agent_printf_command): Likewise.
8740 Constify much of the string handling/parsing.
8741 * breakpoint.c (set_breakpoint_condition): Pass const
8742 pointer to expression string to parse_exp_1.
8743 (update_watchpoint): Likewise.
8744 (parse_cmd_to_aexpr): Constify string handling.
8745 Pass const pointer to parse_exp_1.
8746 (init_breakpoint_sal): Pass const pointer to parse_exp_1.
8747 (find_condition_and_thread): Likewise.
8748 Make TOK const.
8749 (watch_command_1): Make "arg" const.
8750 Constify string handling.
8751 Copy the expression string instead of changing the input
8752 string.
8753 (update_breakpoint_location): Pass const pointer to
8754 parse_exp_1.
8755 * eval.c (parse_and_eval_address): Make "exp" const.
8756 (parse_to_comma_and_eval): Make "expp" const.
8757 (parse_and_eval): Make "exp" const.
8758 * expression.h (parse_expression): Make argument const.
8759 (parse_exp_1): Make first argument const.
8760 * findcmd.c (parse_find_args): Treat "args" as const.
8761 * linespec.c (parse_linespec): Pass const pointer to
8762 linespec_expression_to_pc.
8763 (linespec_expression_to_pc): Make "exp_ptr" const.
8764 * parse.c (parse_exp_1): Make "stringptr" const.
8765 Make a copy of the expression to pass to parse_exp_in_context until
8766 this whole interface can be constified.
8767 (parse_expression): Make "string" const.
8768 * printcmd.c (ui_printf): Treat "arg" as const.
8769 Handle const strings.
8770 * tracepoint.c (validate_actionline): Pass const pointer to
8771 all calls to parse_exp_1.
8772 (encode_actions_1): Likewise.
8773 * value.h (parse_to_comma_and_eval): Make argument const.
8774 (parse_and_eval_address): Likewise.
8775 (parse_and_eval): Likewise.
8776 * varobj.c (varobj_create): Pass const pointer to parse_exp_1.
8777 (varobj_set_value): Likewise.
8778 * cli/cli-cmds.c (disassemble_command): Treat "arg" as const and
8779 constify string handling.
8780 Pass const pointers to parse_and_eval_address and
8781 parse_to_comman_and_eval.
8782 * cli/cli-utils.c (skip_to_space): Rename to ...
8783 (skip_to_space_const): ... this. Handle const strings.
8784 * cli/cli-utils.h (skip_to_space): Turn into macro which invokes
8785 skip_to_space_const.
8786 (skip_to_space_const): Declare.
8787 * common/format.c (parse_format_string): Make "arg" const.
8788 Handle const strings.
8789 * common/format.h (parse_format_string): Make "arg" const.
8790 * gdbserver/ax.c (ax_printf): Make "format" const.
8791 * python/python.c (gdbpy_parse_and_eval): Do not make a copy
8792 of the expression string.
8793
8794 2013-03-12 Hui Zhu <hui@codesourcery.com>
8795
8796 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Update error message.
8797
8798 2013-03-12 Yao Qi <yao@codesourcery.com>
8799 Hui Zhu <hui@codesourcery.com>
8800
8801 * dwarf2loc.c (access_memory): Change nbits to nbytes in gdb_assert.
8802 (dwarf2_compile_expr_to_ax): Call access_memory in DW_OP_deref and
8803 DW_OP_deref_size.
8804
8805 2013-03-12 Paul Hilfinger <hilfingr@adacore.com>
8806
8807 * ada-lex.l (rules): Only recognize 'thread' as a
8808 delimiter when followed by numerals, as for c-exp.y.
8809 Use new rewind_to_char function to rewind the input for
8810 expression-delimiting tokens.
8811 (rewind_to_char): New function.
8812
8813 2013-03-11 Pedro Alves <palves@redhat.com>
8814 Jan Kratochvil <jan.kratochvil@redhat.com>
8815
8816 * configure: Regenerate.
8817 * configure.ac (check dynamic export flag): Link python test with
8818 $PYTHON_LIBS.
8819
8820 2013-03-11 Doug Evans <dje@google.com>
8821 Keith Seitz <keiths@redhat.com>
8822
8823 * linespec.c (find_linespec_symbols): Call find_function_symbols
8824 first, and then call lookup_prefix_sym/find_method.
8825
8826 2013-03-11 Pedro Alves <palves@redhat.com>
8827
8828 * charset.c (convert_between_encodings): Don't cast between
8829 different pointer to pointer types. Instead, make the 'inp' local
8830 be of the type iconv expects.
8831 (wchar_iterate): Don't cast between different pointer to pointer
8832 types. Instead, use new pointer local of the type iconv expects.
8833 * target.c (target_read_stralloc, target_fileio_read_stralloc):
8834 Add new local of type char pointer, and use it to get a
8835 char/string view of the byte buffer, instead of casting between
8836 pointer to pointer types.
8837
8838 2013-03-11 Hafiz Abid Qadeer <abidh@codesourcery.com>
8839
8840 * remote.c (remote_set_trace_buffer_size): Move != operator
8841 to the start of next line to fix an ARI warning.
8842
8843 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8844
8845 * NEWS: Add record changes.
8846
8847 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8848
8849 * record-btrace.c (btrace_insn_history): Omit the pc prefix in
8850 the instruction history disassembly.
8851 * disasm.c (dump_insns): Omit the pc prefix, if requested.
8852 * disasm.h (DISASSEMBLY_OMIT_PC): New.
8853
8854 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8855
8856 * Makefile.in (SFILES): Add record-btrace.c
8857 (COMMON_OBS): Add record-btrace.o
8858 * record-btrace.c: New.
8859 * objfiles.c: Include btrace.h.
8860 (free_objfile): call btrace_free_objfile.
8861
8862 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8863
8864 * target.c (target_call_history, target_call_history_from,
8865 target_call_history_range): New.
8866 * target.h (target_ops) <to_call_history, to_call_history_from,
8867 to_call_history_range>: New fields.
8868 (target_call_history, target_call_history_from,
8869 target_call_history_range): New declaration.
8870 * record.c (get_call_history_modifiers, cmd_record_call_history,
8871 record_call_history_size): New.
8872 (_initialize_record): Add the "record function-call-history" command.
8873 Add "set/show record function-call-history-size" commands.
8874 * record.h (record_print_flag): New.
8875
8876 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8877
8878 * target.h (target_ops) <to_insn_history, to_insn_history_from,
8879 to_insn_history_range>: New fields.
8880 (target_insn_history): New.
8881 (target_insn_history_from): New.
8882 (target_insn_history_range): New.
8883 * target.c (target_insn_history): New.
8884 (target_insn_history_from): New.
8885 (target_insn_history_range): New.
8886 * record.c: Include cli/cli-utils.h, disasm.h, ctype.h.
8887 (record_insn_history_size): New.
8888 (get_insn_number): New.
8889 (get_context_size): New.
8890 (no_chunk): New.
8891 (get_insn_history_modifiers): New.
8892 (cmd_record_insn_history): New.
8893 (_initialize_record): Add "set/show record instruction-history-size"
8894 command. Add "record instruction-history" command.
8895
8896 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8897
8898 * record.h (record_disconnect): New.
8899 (record_detach): New.
8900 (record_mourn_inferior): New.
8901 (record_kill): New.
8902 * record-full.c (record_disconnect, record_detach,
8903 record_mourn_inferior, record_kill): Move to...
8904 * record.c: ...here.
8905 (DEBUG): New.
8906 (record_stop): New.
8907 (record_unpush): New.
8908 (cmd_record_stop): Call record_stop. Replace unpush_target
8909 call with record_unpush call.
8910 (record_disconnect, record_detach): Assert that the target
8911 is of record stratum. Call record_unpush, record_stop, and
8912 DEBUG.
8913 (record_mourn_inferior, record_kill): Assert that the target
8914 is of record stratum. Call record_unpush and DEBUG.
8915
8916 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8917
8918 * record-full.h, record-full.c (record_memory_query): Rename
8919 to ...
8920 (record_full_memory_query): ...this. Update all users.
8921 (record_arch_list_add_reg): Rename to ...
8922 (record_full_arch_list_add_reg): ...this. Update all users.
8923 (record_arch_list_add_mem): Rename to ...
8924 (record_full_arch_list_add_mem): ...this. Update all users.
8925 (record_arch_list_add_end): Rename to ...
8926 (record_full_arch_list_add_end): ...this. Update all users.
8927 (record_gdb_operation_disable_set): Rename to ...
8928 (record_full_gdb_operation_disable_set): ...this.
8929 Update all users.
8930
8931 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8932
8933 * record-full.c (DEFAULT_RECORD_INSN_MAX_NUM): Renamed to ...
8934 (DEFAULT_RECORD_FULL_INSN_MAX_NUM): ... this. Updated all users.
8935 (RECORD_IS_REPLAY): Renamed to ...
8936 (RECORD_FULL_IS_REPLAY): ... this. Updated all users.
8937 (RECORD_FILE_MAGIC): Renamed to ...
8938 (RECORD_FULL_FILE_MAGIC): ... this. Updated all users.
8939 (record_mem_entry): Renamed to ...
8940 (record_full_mem_entry): ... this. Updated all users.
8941 (record_reg_entry): Renamed to ...
8942 (record_full_reg_entry): ... this. Updated all users.
8943 (record_end_entry): Renamed to ...
8944 (record_full_end_entry): ... this. Updated all users.
8945 (record_type) <record_end, record_reg, record_mem>: Renamed
8946 to ...
8947 (record_full_type) <record_full_end, record_full_reg,
8948 record_full_mem>: ... this. Updated all users.
8949 (record_entry): Renamed to ...
8950 (record_full_entry): ... this. Updated all users.
8951 (record_core_buf_entry): Renamed to ...
8952 (record_full_core_buf_entry): ... this. Updated all users.
8953 (record_core_regbuf): Renamed to ...
8954 (record_full_core_regbuf): ... this. Updated all users.
8955 (record_core_start): Renamed to ...
8956 (record_full_core_start): ... this. Updated all users.
8957 (record_core_end): Renamed to ...
8958 (record_full_core_end): ... this. Updated all users.
8959 (record_core_buf_list): Renamed to ...
8960 (record_full_core_buf_list): ... this. Updated all users.
8961 (record_first): Renamed to ...
8962 (record_full_first): ... this. Updated all users.
8963 (record_list): Renamed to ...
8964 (record_full_list): ... this. Updated all users.
8965 (record_arch_list_head): Renamed to ...
8966 (record_full_arch_list_head): ... this. Updated all users.
8967 (record_arch_list_tail): Renamed to ...
8968 (record_full_arch_list_tail): ... this. Updated all users.
8969 (record_stop_at_limit): Renamed to ...
8970 (record_full_stop_at_limit): ... this. Updated all users.
8971 (record_insn_max_num): Renamed to ...
8972 (record_full_insn_max_num): ... this. Updated all users.
8973 (record_insn_num): Renamed to ...
8974 (record_full_insn_num): ... this. Updated all users.
8975 (record_insn_count): Renamed to ...
8976 (record_full_insn_count): ... this. Updated all users.
8977 (record_ops): Renamed to ...
8978 (record_full_ops): ... this. Updated all users.
8979 (record_core_ops): Renamed to ...
8980 (record_full_core_ops): ... this. Updated all users.
8981 (set_record_cmdlist): Renamed to ...
8982 (set_record_full_cmdlist): ... this. Updated all users.
8983 (show_record_cmdlist): Renamed to ...
8984 (show_record_full_cmdlist): ... this. Updated all users.
8985 (record_cmdlist): Renamed to ...
8986 (record_full_cmdlist): ... this. Updated all users.
8987 (record_beneath_to_resume_ops): Renamed to ...
8988 (record_full_beneath_to_resume_ops): ... this. Updated all users.
8989 (record_beneath_to_resume): Renamed to ...
8990 (record_full_beneath_to_resume): ... this. Updated all users.
8991 (record_beneath_to_wait_ops): Renamed to ...
8992 (record_full_beneath_to_wait_ops): ... this. Updated all users.
8993 (record_beneath_to_wait): Renamed to ...
8994 (record_full_beneath_to_wait): ... this. Updated all users.
8995 (record_beneath_to_store_registers_ops): Renamed to ...
8996 (record_full_beneath_to_store_registers_ops): ... this.
8997 Updated all users.
8998 (record_beneath_to_store_registers): Renamed to ...
8999 (record_full_beneath_to_store_registers): ... this.
9000 Updated all users.
9001 (record_beneath_to_xfer_partial_ops): Renamed to ...
9002 (record_full_beneath_to_xfer_partial_ops): ... this.
9003 Updated all users.
9004 (record_beneath_to_xfer_partial): Renamed to ...
9005 (record_full_beneath_to_xfer_partial): ... this.
9006 Updated all users.
9007 (record_beneath_to_insert_breakpoint): Renamed to ...
9008 (record_full_beneath_to_insert_breakpoint): ... this.
9009 Updated all users.
9010 (record_beneath_to_stopped_by_watchpoint): Renamed to ...
9011 (record_full_beneath_to_stopped_by_watchpoint): ... this.
9012 Updated all users.
9013 (record_beneath_to_stopped_data_address): Renamed to ...
9014 (record_full_beneath_to_stopped_data_address): ... this.
9015 Updated all users.
9016 (record_beneath_to_async): Renamed to ...
9017 (record_full_beneath_to_async): ... this. Updated all users.
9018 (record_goto_insn): Renamed to ...
9019 (record_full_goto_insn): ... this. Updated all users.
9020 (record_save): Renamed to ...
9021 (record_full_save): ... this. Updated all users.
9022 (record_reg_alloc): Renamed to ...
9023 (record_full_reg_alloc): ... this. Updated all users.
9024 (record_reg_release): Renamed to ...
9025 (record_full_reg_release): ... this. Updated all users.
9026 (record_mem_alloc): Renamed to ...
9027 (record_full_mem_alloc): ... this. Updated all users.
9028 (record_mem_release): Renamed to ...
9029 (record_full_mem_release): ... this. Updated all users.
9030 (record_end_alloc): Renamed to ...
9031 (record_full_end_alloc): ... this. Updated all users.
9032 (record_end_release): Renamed to ...
9033 (record_full_end_release): ... this. Updated all users.
9034 (record_entry_release): Renamed to ...
9035 (record_full_entry_release): ... this. Updated all users.
9036 (record_list_release): Renamed to ...
9037 (record_full_list_release): ... this. Updated all users.
9038 (record_list_release_following): Renamed to ...
9039 (record_full_list_release_following): ... this.
9040 Updated all users.
9041 (record_list_release_first): Renamed to ...
9042 (record_full_list_release_first): ... this. Updated all users.
9043 (record_arch_list_add): Renamed to ...
9044 (record_full_arch_list_add): ... this. Updated all users.
9045 (record_get_loc): Renamed to ...
9046 (record_full_get_loc): ... this. Updated all users.
9047 (record_check_insn_num): Renamed to ...
9048 (record_full_check_insn_num): ... this. Updated all users.
9049 (record_arch_list_cleanups): Renamed to ...
9050 (record_full_arch_list_cleanups): ... this. Updated all users.
9051 (record_message): Renamed to ...
9052 (record_full_message): ... this. Updated all users.
9053 (record_message_wrapper): Renamed to ...
9054 (record_full_message_wrapper): ... this. Updated all users.
9055 (record_message_wrapper_safe): Renamed to ...
9056 (record_full_message_wrapper_safe): ... this. Updated all users.
9057 (record_gdb_operation_disable): Renamed to ...
9058 (record_full_gdb_operation_disable): ... this. Updated all users.
9059 (record_hw_watchpoint): Renamed to ...
9060 (record_full_hw_watchpoint): ... this. Updated all users.
9061 (record_exec_insn): Renamed to ...
9062 (record_full_exec_insn): ... this. Updated all users.
9063 (record_restore): Renamed to ...
9064 (record_full_restore): ... this. Updated all users.
9065 (record_async_inferior_event_token): Renamed to ...
9066 (record_full_async_inferior_event_token): ... this.
9067 Updated all users.
9068 (record_async_inferior_event_handler): Renamed to ...
9069 (record_full_async_inferior_event_handler): ... this.
9070 Updated all users.
9071 (record_core_open_1): Renamed to ...
9072 (record_full_core_open_1): ... this. Updated all users.
9073 (record_open_1): Renamed to ...
9074 (record_full_open_1): ... this. Updated all users.
9075 (record_open): Renamed to ...
9076 (record_full_open): ... this. Updated all users.
9077 (record_close): Renamed to ...
9078 (record_full_close): ... this. Updated all users.
9079 (record_resume_step): Renamed to ...
9080 (record_full_resume_step): ... this. Updated all users.
9081 (record_resumed): Renamed to ...
9082 (record_full_resumed): ... this. Updated all users.
9083 (record_execution_dir): Renamed to ...
9084 (record_full_execution_dir): ... this. Updated all users.
9085 (record_resume): Renamed to ...
9086 (record_full_resume): ... this. Updated all users.
9087 (record_get_sig): Renamed to ...
9088 (record_full_get_sig): ... this. Updated all users.
9089 (record_sig_handler): Renamed to ...
9090 (record_full_sig_handler): ... this. Updated all users.
9091 (record_wait_cleanups): Renamed to ...
9092 (record_full_wait_cleanups): ... this. Updated all users.
9093 (record_wait_1): Renamed to ...
9094 (record_full_wait_1): ... this. Updated all users.
9095 (record_wait): Renamed to ...
9096 (record_full_wait): ... this. Updated all users.
9097 (record_stopped_by_watchpoint): Renamed to ...
9098 (record_full_stopped_by_watchpoint): ... this. Updated all users.
9099 (record_disconnect): Renamed to ...
9100 (record_full_disconnect): ... this. Updated all users.
9101 (record_detach): Renamed to ...
9102 (record_full_detach): ... this. Updated all users.
9103 (record_mourn_inferior): Renamed to ...
9104 (record_full_mourn_inferior): ... this. Updated all users.
9105 (record_kill): Renamed to ...
9106 (record_full_kill): ... this. Updated all users.
9107 (record_stopped_data_address): Renamed to ...
9108 (record_full_stopped_data_address): ... this. Updated all users.
9109 (record_registers_change): Renamed to ...
9110 (record_full_registers_change): ... this. Updated all users.
9111 (record_store_registers): Renamed to ...
9112 (record_full_store_registers): ... this. Updated all users.
9113 (record_xfer_partial): Renamed to ...
9114 (record_full_xfer_partial): ... this. Updated all users.
9115 (record_breakpoint): Renamed to ...
9116 (record_full_breakpoint): ... this. Updated all users.
9117 (record_breakpoint_p): Renamed to ...
9118 (record_full_breakpoint_p): ... this. Updated all users.
9119 (record_breakpoints): Renamed to ...
9120 (record_full_breakpoints): ... this. Updated all users.
9121 (record_sync_record_breakpoints): Renamed to ...
9122 (record_full_sync_record_breakpoints): ... this.
9123 Updated all users.
9124 (record_init_record_breakpoints): Renamed to ...
9125 (record_full_init_record_breakpoints): ... this.
9126 Updated all users.
9127 (record_insert_breakpoint): Renamed to ...
9128 (record_full_insert_breakpoint): ... this. Updated all users.
9129 (record_remove_breakpoint): Renamed to ...
9130 (record_full_remove_breakpoint): ... this. Updated all users.
9131 (record_can_execute_reverse): Renamed to ...
9132 (record_full_can_execute_reverse): ... this. Updated all users.
9133 (record_get_bookmark): Renamed to ...
9134 (record_full_get_bookmark): ... this. Updated all users.
9135 (record_goto_bookmark): Renamed to ...
9136 (record_full_goto_bookmark): ... this. Updated all users.
9137 (record_async): Renamed to ...
9138 (record_full_async): ... this. Updated all users.
9139 (record_can_async_p): Renamed to ...
9140 (record_full_can_async_p): ... this. Updated all users.
9141 (record_is_async_p): Renamed to ...
9142 (record_full_is_async_p): ... this. Updated all users.
9143 (record_execution_direction): Renamed to ...
9144 (record_full_execution_direction): ... this. Updated all users.
9145 (record_info): Renamed to ...
9146 (record_full_info): ... this. Updated all users.
9147 (record_delete): Renamed to ...
9148 (record_full_delete): ... this. Updated all users.
9149 (record_is_replaying): Renamed to ...
9150 (record_full_is_replaying): ... this. Updated all users.
9151 (record_goto_entry): Renamed to ...
9152 (record_full_goto_entry): ... this. Updated all users.
9153 (record_goto_begin): Renamed to ...
9154 (record_full_goto_begin): ... this. Updated all users.
9155 (record_goto_end): Renamed to ...
9156 (record_full_goto_end): ... this. Updated all users.
9157 (record_goto): Renamed to ...
9158 (record_full_goto): ... this. Updated all users.
9159 (init_record_ops): Renamed to ...
9160 (init_record_full_ops): ... this. Updated all users.
9161 (record_core_resume): Renamed to ...
9162 (record_full_core_resume): ... this. Updated all users.
9163 (record_core_kill): Renamed to ...
9164 (record_full_core_kill): ... this. Updated all users.
9165 (record_core_fetch_registers): Renamed to ...
9166 (record_full_core_fetch_registers): ... this. Updated all users.
9167 (record_core_prepare_to_store): Renamed to ...
9168 (record_full_core_prepare_to_store): ... this. Updated all users.
9169 (record_core_store_registers): Renamed to ...
9170 (record_full_core_store_registers): ... this. Updated all users.
9171 (record_core_xfer_partial): Renamed to ...
9172 (record_full_core_xfer_partial): ... this. Updated all users.
9173 (record_core_insert_breakpoint): Renamed to ...
9174 (record_full_core_insert_breakpoint): ... this. Updated all users.
9175 (record_core_remove_breakpoint): Renamed to ...
9176 (record_full_core_remove_breakpoint): ... this. Updated all users.
9177 (record_core_has_execution): Renamed to ...
9178 (record_full_core_has_execution): ... this. Updated all users.
9179 (init_record_core_ops): Renamed to ...
9180 (init_record_full_core_ops): ... this. Updated all users.
9181 (cmd_record_restore): Renamed to ...
9182 (cmd_record_full_restore): ... this. Updated all users.
9183 (record_save_cleanups): Renamed to ...
9184 (record_full_save_cleanups): ... this. Updated all users.
9185 (cmd_record_start): Renamed to ...
9186 (cmd_record_full_start): ... this. Updated all users.
9187 (set_record_insn_max_num): Renamed to ...
9188 (set_record_full_insn_max_num): ... this. Updated all users.
9189 (set_record_command): Renamed to ...
9190 (set_record_full_command): ... this. Updated all users.
9191 (show_record_command): Renamed to ...
9192 (show_record_full_command): ... this. Updated all users.
9193 (_initialize_record): Renamed to ...
9194 (_initialize_record_full): ... this. Updated all users.
9195
9196 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
9197
9198 * record.h: Split into this and ...
9199 * record-full.h: ... this.
9200 * record.c: Split into this and ...
9201 * record-full.c: ... this.
9202 * target.h (target_ops): Add new fields to_info_record,
9203 to_save_record, to_delete_record, to_record_is_replaying,
9204 to_goto_record_begin, to_goto_record_end, to_goto_record.
9205 (target_info_record): New.
9206 (target_save_record): New.
9207 (target_supports_delete_record): New.
9208 (target_delete_record): New.
9209 (target_record_is_replaying): New.
9210 (target_goto_record_begin): New.
9211 (target_goto_record_end): New.
9212 (target_goto_record): New.
9213 * target.c (target_info_record): New.
9214 (target_save_record): New.
9215 (target_supports_delete_record): New.
9216 (target_delete_record): New.
9217 (target_record_is_replaying): New.
9218 (target_goto_record_begin): New.
9219 (target_goto_record_end): New.
9220 (target_goto_record): New.
9221 * record.h: Declare struct cmd_list_element.
9222 (record_cmdlist): New declaration.
9223 (set_record_cmdlist): New declaration.
9224 (show_record_cmdlist): New declaration.
9225 (info_record_cmdlist): New declaration.
9226 (cmd_record_goto): New declaration.
9227 * record.c: Remove unnecessary includes.
9228 Include inferior.h.
9229 (cmd_record_goto): Remove declaration.
9230 (record_cmdlist): Now extern. Initialize.
9231 (set_record_cmdlist): Now extern. Initialize.
9232 (show_record_cmdlist): Now extern. Initialize.
9233 (info_record_cmdlist): Now extern. Initialize.
9234 (find_record_target): New.
9235 (require_record_target): New.
9236 (cmd_record_start): Update.
9237 (cmd_record_delete): Remove target-specific code.
9238 Call target_delete_record.
9239 (cmd_record_stop): Unpush any record target.
9240 (set_record_insn_max_num): Move to record-full.c
9241 (set_record_command): Add comment.
9242 (show_record_command): Add comment.
9243 (info_record_command): Update comment.
9244 Remove target-specific code.
9245 Call the record target's to_info_record.
9246 (cmd_record_start): New.
9247 (cmd_record_goto): Now extern.
9248 Remove target-specific code.
9249 Call target_goto_begin, target_goto_end, or target_goto.
9250 (_initialize_record): Move record target ops initialization to
9251 record-full.c.
9252 Change "record" command help text.
9253 Move "record restore", "record set", and "record show" commands to
9254 record-full.c.
9255 * Makefile.in (SFILES): Add record-full.c.
9256 (HFILES_NO_SRCDIR): Add record-full.h.
9257 (COMMON_OBS): Add record-full.o.
9258 * amd64-linux-tdep.c: Include record-full.h instead of record.h.
9259 * arm-tdep.c: Include record-full.h.
9260 * i386-linux-tdep.c: Include record-full.h instead of record.h.
9261 * i386-tdep.c: Include record-full.h.
9262 * infrun.c: Include record-full.h.
9263 * linux-record.c: Include record-full.h.
9264 * moxie-tdep.c: Include record-full.h.
9265 * record-full.c: Include record-full.h.
9266 Change module comment.
9267 (set_record_full_cmdlist): New.
9268 (show_record_full_cmdlist): New.
9269 (record_full_cmdlist): New.
9270 (record_goto_insn): New declaration.
9271 (record_save): New declaration.
9272 (record_check_insn_num): Change query string.
9273 (record_info): New.
9274 (record_delete): New.
9275 (record_is_replaying): New.
9276 (record_goto_entry): New.
9277 (record_goto_begin): New.
9278 (record_goto_end): New.
9279 (record_goto): New.
9280 (init_record_ops): Update.
9281 (init_record_core_ops): Update.
9282 (cmd_record_save): Rename to record_save. Remove target and arg checks.
9283 (cmd_record_start): New.
9284 (set_record_insn_max_num): Moved from record.c
9285 (set_record_full_command): New.
9286 (show_record_full_command): New.
9287 (_initialize_record_full): New.
9288
9289 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
9290
9291 * target.h (add_deprecated_target_alias): New.
9292 * target.c (add_deprecated_target_alias): New.
9293
9294 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
9295
9296 * common/linux-btrace.c: Include sys/ptrace, sys/types, sys/wait.h,
9297 and signal.h.
9298 (linux_supports_btrace): Add kernel and
9299 cpuid check.
9300 (kernel_supports_btrace): New function.
9301 (cpu_supports_btrace): New function.
9302 (intel_supports_btrace): New function.
9303
9304 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
9305
9306 * target.h (enum target_object): Add TARGET_OBJECT_BTRACE.
9307 * remote.c: Include btrace.h.
9308 (struct btrace_target_info): New struct.
9309 (remote_supports_btrace): New function.
9310 (send_Qbtrace): New function.
9311 (remote_enable_btrace): New function.
9312 (remote_disable_btrace): New function.
9313 (remote_teardown_btrace): New function.
9314 (remote_read_btrace): New function.
9315 (init_remote_ops): Add btrace ops.
9316 (enum <unnamed>): Add btrace packets.
9317 (struct protocol_feature remote_protocol_features[]): Add btrace packets.
9318 (_initialize_remote): Add packet configuration for branch tracing.
9319
9320 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
9321
9322 * features/btrace.dtd: New file.
9323 * Makefile.in (XMLFILES): Add btrace.dtd.
9324 * btrace.h (parse_xml_btrace): New declaration.
9325 * btrace.c: Include xml-support.h.
9326 (parse_xml_btrace): New function.
9327 (parse_xml_btrace_block): New function.
9328 (block_attributes): New struct.
9329 (btrace_attributes): New struct.
9330 (btrace_children): New struct.
9331 (btrace_elements): New struct.
9332
9333 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
9334
9335 * amd64-linux-nat.c: Include btrace.h and linux-btrace.h.
9336 (amd64_linux_enable_btrace): New.
9337 (amd64_linux_disable_btrace): New.
9338 (amd64_linux_teardown_btrace): New.
9339 (_initialize_amd64_linux_nat): Initialize btrace ops.
9340 * i386-linux.nat.c: Include btrace.h and linux-btrace.h.
9341 (i386_linux_enable_btrace): New.
9342 (i386_linux_disable_btrace): New.
9343 (i386_linux_teardown_btrace): New.
9344 (_initialize_i386_linux_nat): Initialize btrace ops.
9345 * config/i386/linux.mh: Add linux-btrace.o.
9346 * config/i386/linux64.mh: Add linux-btrace.o.
9347
9348 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
9349
9350 * common/linux_btrace.h: New file.
9351 * common/linux_btrace.c: New file.
9352 * Makefile.in (SFILES): Add btrace.c.
9353 (HFILES_NO_SRCDIR): Add common/linux-btrace.h.
9354 (COMMON_OBS): Add btrace.o.
9355 (linux-btrace.o): New rule.
9356
9357 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
9358
9359 * target.h: Include btrace.h.
9360 (struct target_ops) <to_supports_btrace, to_enable_btrace,
9361 to_disable_btrace, to_teardown_btrace, to_read_btrace>: New.
9362 * target.c (target_supports_btrace): New function.
9363 (target_enable_btrace): New function.
9364 (target_disable_btrace): New function.
9365 (target_teardown_btrace): New function.
9366 (target_read_btrace): New function.
9367 * btrace.h: New file.
9368 * btrace.c: New file.
9369 * Makefile.in: Add btrace.c.
9370 * gdbthread.h: Include btrace.h.
9371 (struct thread_info): Add btrace field.
9372 * thread.c: Include btrace.h.
9373 (clear_thread_inferior_resources): Call target_teardown_btrace.
9374 * common/btrace-common.h: New file.
9375
9376 2013-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
9377
9378 * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Call also kill
9379 for CHILD, ignore PTRACE_KILL errors, move the inner block variable
9380 kill_status to outer block.
9381
9382 2013-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
9383
9384 Fix entry-values if the callee called a noreturn function.
9385 * dwarf2-frame-tailcall.c (dwarf2_tailcall_sniffer_first): Use
9386 get_frame_address_in_block. Add new comment.
9387
9388 2013-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
9389
9390 Fix entry-values in C++ across CUs.
9391 * dwarf2loc.c (call_site_to_target_addr) <FIELD_LOC_KIND_PHYSNAME>: Use
9392 lookup_minimal_symbol. Add a comment.
9393 * dwarf2read.c
9394 (read_call_site_scope) <is_ref_attr> <die_is_declaration>: Prefer
9395 DW_AT_linkage_name.
9396
9397 2013-03-08 Yao Qi <yao@codesourcery.com>
9398
9399 * tracepoint.c (_initialize_tracepoint): Indent the code.
9400
9401 2013-03-08 Pedro Alves <palves@redhat.com>
9402
9403 * findcmd.c (put_bits): Change type of parameter to 'gdb_byte *'.
9404 (parse_find_args, find_command): Change type of pattern buffer
9405 locals to 'gdb_byte *'.
9406
9407 2013-03-08 Stan Shebs <stan@codesourcery.com>
9408 Hafiz Abid Qadeer <abidh@codesourcery.com>
9409
9410 * NEWS: Mention set and show trace-buffer-size commands.
9411 Mention new packet.
9412 * target.h (struct target_ops): New method
9413 to_set_trace_buffer_size.
9414 (target_set_trace_buffer_size): New macro.
9415 * target.c (update_current_target): Set up new method.
9416 * tracepoint.c (trace_buffer_size): New global.
9417 (start_tracing): Send it to the target.
9418 (set_trace_buffer_size): New function.
9419 (_initialize_tracepoint): Add new setshow for trace-buffer-size.
9420 * remote.c (remote_set_trace_buffer_size): New function.
9421 (_initialize_remote): Use it.
9422 (QTBuffer:size) New remote command.
9423 (PACKET_QTBuffer_size): New enum.
9424 (remote_protocol_features): Add an entry for
9425 PACKET_QTBuffer_size.
9426
9427 2013-03-08 Tom Tromey <tromey@redhat.com>
9428
9429 * remote-m32r-sdi.c (m32r_load): Call skip_spaces on correct
9430 variable.
9431
9432 2013-03-07 Pedro Alves <palves@redhat.com>
9433
9434 * target.c (target_read_stralloc, target_fileio_read_alloc):
9435 *Cast pointer to 'gdb_byte *' in target call.
9436
9437 2013-03-07 Pedro Alves <palves@redhat.com>
9438
9439 * corefile.c (read_memory_string): Cast pointer to gdb_byte* in
9440 call.
9441
9442 2013-03-07 Keith Seitz <keiths@redhat.com>
9443
9444 * breakpoint.c (catch_syscall_split_args): Use skip_spaces.
9445 (trace_pass_command): Likewise.
9446 * cli/cli-cmds.c: Include cli/cli-utils.h.
9447 (source_command): Use skip-spaces.
9448 (disassemble_command): Likewise.
9449 * findcmd.c: Include cli/cli-utils.h.
9450 (parse_find_args): Use skip_spaces.
9451 * go32-nat.c: Include cli/cli-utils.h.
9452 (go32_sldt): Use skip_spaces.
9453 (go32_sgdt): Likewise.
9454 (go32_sidt): Likewise.
9455 (go32_pde): Likewise.
9456 (go32_pte): Likewise.
9457 (go32_pte_for_address): Likewise.
9458 * infcmd.c: Include cli/cli-utils.h.
9459 (registers_info): Use skip_spaces.
9460 * linux-tdep.c (read_mapping): Use skip_spaces_const.
9461 (linux_info_proc): Likewise.
9462 * linux-thread-db.c: Include cli/cli-utils.h.
9463 (info_auto_load_libthread_db): Use skip_spaces_const.
9464 * m32r-rom.c: Include cli/cli-utils.h.
9465 (m32r_upload_command): Use skip_spaces.
9466 * maint.c: Include cli/cli-utils.h.
9467 (maintenance_translate_address): Use skip_spaces.
9468 * mi/mi-parse.c: Include cli/cli-utils.h.
9469 (mi_parse_argv): Use skip_spaces.
9470 (mi_parse): Likewise.
9471 * minsyms.c: Include cli/cli-utils.h.
9472 (msymbol_hash_iw): Use skip_spaces_const.
9473 * objc-lang.c: Include cli/cli-utils.h.
9474 (parse_selector): Use skip_spaces.
9475 (parse_method): Likewise.
9476 * python/python.c: Include cli/cli-utils.h.
9477 (python_interactive_command)[HAVE_PYTHON]: Use skip_spaces.
9478 (python_command)[HAVE_PYTHON]: Likewise.
9479 (python_interactive_command)[!HAVE_PYTHON]: Likewise.
9480 * remote-m32r-sdi.c: Include cli/cli-utils.h.
9481 (m32r_load): Use skip_spaces.
9482 * serial.c: Include cli/cli-utils.h.
9483 (serial_open): Use skip_spaces_const.
9484 * stack.c: Include cli/cli-utils.h.
9485 (parse_frame_specification_1): Use skip_spaces_const.
9486 * symfile.c: Include cli/cli-utils.h.
9487 (set_ext_lang_command): Use skip_spaces.
9488 * symtab.c: Include cli/cli-utils.h.
9489 (rbreak_command): Use skip_spaces.
9490 * thread.c (thread_name_command): Use skip_spaces.
9491 * tracepoint.c (validate_actionline): Use skip_spaces.
9492 (encode_actions_1): Likewise.
9493 (trace_find_range_command): Likewise.
9494 (trace_find_outside_command): Likewise.
9495 (trace_dump_actions): Likewise.
9496
9497 2013-03-07 Pedro Alves <palves@redhat.com>
9498
9499 * c-lang.c (parse_one_string): Cast argument to gdb_byte *.
9500 * expprint.c (print_subexp_standard): Likewise.
9501 * utils.c (host_char_to_target): Likewise.
9502 * valprint.c (generic_emit_char, generic_printstr): Likewise.
9503 * varobj.c (value_get_print_value): Change type of local to char*.
9504 Cast it gdb_byte * in call to language printer.
9505
9506 2013-03-07 Pedro Alves <palves@redhat.com>
9507
9508 * charset.c (struct wchar_iterator) <input>: Change type to 'const
9509 gdb_byte *'.
9510 (make_wchar_iterator): Remove cast to char*.
9511 (wchar_iterate): Change type of local.
9512
9513 2013-03-07 Pedro Alves <palves@redhat.com>
9514
9515 * regcache.c (regcache_xmalloc_1): Call XCALLOC with signed char
9516 for 'regcache->register_status'.
9517
9518 2013-03-07 Pedro Alves <palves@redhat.com>
9519
9520 * breakpoint.c (breakpoint_xfer_memory): Change type of local to
9521 int.
9522
9523 2013-03-07 Pedro Alves <palves@redhat.com>
9524
9525 * stap-probe.c (handle_stap_probe): Add cast to char*.
9526
9527 2013-03-07 Pedro Alves <palves@redhat.com>
9528
9529 * linux-record.c (record_linux_system_call) <gdb_sys_msgrcv,
9530 RECORD_MSGRCV>: Pass a signed variable to
9531 regcache_raw_read_signed, instead of an unsigned one.
9532
9533 2013-03-07 Pedro Alves <palves@redhat.com>
9534
9535 * remote-notif.c (notif_debug): Change type to int.
9536 * remote-notif.h (notif_debug): Likewise.
9537
9538 2013-03-07 Pedro Alves <palves@redhat.com>
9539
9540 * ser-tcp.c (tcp_retry_limit): Change type to unsigned int.
9541
9542 2013-03-07 Pedro Alves <palves@redhat.com>
9543
9544 * remote.c (hex2bin, bin2hex): Move extern declarations to ...
9545 * remote.h (hex2bin, bin2hex): ... here.
9546 * tracepoint.c (hex2bin, bin2hex): Remove extern declarations.
9547
9548 2013-03-07 Eli Zaretskii <eliz@gnu.org>
9549
9550 * utils.c (initialize_utils): Improve doc strings of "set/show
9551 width", "set/show height", and "set/show pagination".
9552
9553 2013-03-06 Keith Seitz <keiths@redhat.com>
9554
9555 * ax-gdb.c (gen_printf): Make FORMAT const.
9556 * ax-gdb.h (gen_printf): Likewise.
9557 * ax-general.c (ax_string): Make STR const.
9558 * ax.h (ax_string): Likewise.
9559
9560 2013-03-06 Doug Evans <dje@google.com>
9561
9562 * elfread.c (elf_symfile_read): Move debugging printf to more
9563 logical location.
9564
9565 2013-03-06 Pedro Alves <palves@redhat.com>
9566
9567 * python/py-utils.c (target_string_to_unicode): Delete function.
9568 * python/python-internal.h (target_string_to_unicode): Delete
9569 declaration.
9570
9571 2013-03-06 Pierre Muller <muller@sourceware.org>
9572
9573 * linespec.c (get_current_search_block): ARI fix, use (void)
9574 for empty parameter list.
9575
9576 2013-03-05 Doug Evans <dje@google.com>
9577
9578 * ada-lang.c (ada_lookup_symbol_list_worker): New function, contents
9579 of old ada_lookup_symbol_list. In !full_search case, don't
9580 search superblocks.
9581 (ada_lookup_symbol_list): Delete arg full_search, all callers
9582 updated. Call ada_lookup_symbol_list_worker.
9583 (ada_iterate_over_symbols): Call ada_lookup_symbol_list_worker.
9584 * ada-lang.h (ada_lookup_symbol_list): Update.
9585 * language.h (language_defn): Update comment for
9586 la_iterate_over_symbols.
9587 * linespec.c (iterate_over_file_blocks): New function.
9588 (iterate_over_all_matching_symtabs): Call it.
9589 (lookup_prefix_sym): Ditto.
9590 (get_current_search_block): New function.
9591 (get_search_block): Delete.
9592 (find_label_symbols): Call get_current_search_block.
9593 (add_matching_symbols_to_info): Call iterate_over_file_blocks.
9594 * symtab.c (iterate_over_symbols): Don't search superblocks.
9595
9596 2013-03-05 Yao Qi <yao@codesourcery.com>
9597
9598 * cli/cli-decode.c (add_setshow_zuinteger_unlimited_cmd): Change
9599 parameter VAR's type from "unsigned int" to "int".
9600 * command.h (var_zuinteger_unlimited): Update its comments.
9601 (add_setshow_zuinteger_unlimited_cmd): Update the declaration.
9602
9603 2013-03-05 Corinna Vinschen <vinschen@redhat.de>
9604
9605 * NEWS: Mention new target x86_64-*-cygwin*.
9606
9607 2013-03-05 Corinna Vinschen <vinschen@redhat.de>
9608
9609 * configure.host: Add x86_64-*-cygwin* as host.
9610 * configure.tgt: Add x86_64-*-cygwin* as target.
9611 * config/i386/cygwin64.mh: New file.
9612
9613 2013-03-04 Jan Kratochvil <jan.kratochvil@redhat.com>
9614
9615 * linespec.c (decode_line_2): Fix duplicate request off by two message.
9616
9617 2013-03-04 Jan Kratochvil <jan.kratochvil@redhat.com>
9618
9619 * linespec.c (struct linespec_canonical_name): New.
9620 (struct linespec_state): Change canonical_names type to it.
9621 (add_sal_to_sals): Change variable canonical_name to canonical. Change
9622 xrealloc element size. Initialize the different CANONICAL fields.
9623 (canonical_to_fullform): New.
9624 (filter_results): Use it. Add variables canonical, fullform and
9625 cleanup.
9626 (struct decode_line_2_item, decode_line_2_compare_items): New.
9627 (decode_line_2): Remove variables iter and item_names, add variables
9628 items and items_count. Modify the code for these new variables.
9629
9630 2013-03-04 Corinna Vinschen <vinschen@redhat.com>
9631
9632 * coff-pe-read.c (read_pe_exported_syms): Don't return without
9633 calling do_cleanup.
9634
9635 2013-03-04 Luis Machado <lgustavo@codesourcery.com>
9636
9637 * tracepoint.c (build_traceframe_info): Add code for byte order.
9638
9639 2013-03-02 Kevin Buettner <kevinb@redhat.com>
9640
9641 * v850-tdep.c: (v850e2_register_name): Revise system register
9642 names to match current V850E2M architecture specifications.
9643 Update register number enum comments too.
9644
9645 2013-03-01 Jiong Wang <jiwang@tilera.com>
9646 Pedro Alves <palves@redhat.com>
9647
9648 * tilegx-tdep.c (tilegx_analyze_prologue): Limit bundle reading
9649 to END_ADDR.
9650 (tilegx_skip_prologue): Limit prologue analysis to section end.
9651
9652 2013-03-01 Jan Kratochvil <jan.kratochvil@redhat.com>
9653
9654 * dwarf2loc.c (call_site_find_chain_1): New variable save_callee_pc,
9655 use it.
9656
9657 2013-03-01 Pedro Alves <palves@redhat.com>
9658
9659 Use gdb_byte for bytes from the program being debugged.
9660
9661 * arm-tdep.c (arm_store_return_value, arm_get_longjmp_target):
9662 Change type of local 'buf' to gdb_byte.
9663 * avr-tdep.c (avr_frame_prev_register, avr_push_dummy_call): Likewise.
9664 * bfin-tdep.c (bfin_push_dummy_call): Likewise.
9665 * cris-tdep.c (cris_sigcontext_addr)
9666 (cris_sigtramp_frame_unwind_cache): Likewise.
9667 * frv-linux-tdep.c (frv_linux_pc_in_sigtramp)
9668 (frv_linux_sigcontext_reg_addr, frv_linux_sigtramp_frame_cache):
9669 Likewise.
9670 * frv-tdep.c (frv_pseudo_register_write, frv_analyze_prologue): Likewise.
9671 * hppa-hpux-tdep.c (hppa32_hpux_find_global_pointer)
9672 (hppa32_hpux_search_dummy_call_sequence)
9673 (hppa_hpux_supply_save_state): Likewise.
9674 * hppa-linux-tdep.c (insns_match_pattern)
9675 (hppa_linux_find_global_pointer): Likewise.
9676 * hppa-tdep.c (hppa_in_function_epilogue_p)
9677 (skip_prologue_hard_way, hppa_frame_cache): Likewise.
9678 * i386-nto-tdep.c (i386nto_sigcontext_addr): Likewise.
9679 * i386fbsd-tdep.c (i386fbsd_supply_uthread)
9680 (i386fbsd_collect_uthread): Likewise.
9681 * ia64-hpux-tdep.c (ia64_hpux_push_dummy_code): Likewise.
9682 * ia64-linux-tdep.c (ia64_linux_sigcontext_register_address): Likewise.
9683 * ia64-tdep.c (examine_prologue, ia64_frame_cache)
9684 (ia64_frame_prev_register, ia64_sigtramp_frame_cache)
9685 (ia64_sigtramp_frame_prev_register, ia64_access_reg)
9686 (ia64_access_rse_reg, ia64_libunwind_frame_this_id)
9687 (ia64_libunwind_frame_prev_register)
9688 (ia64_libunwind_sigtramp_frame_this_id)
9689 (ia64_find_global_pointer_from_dynamic_section)
9690 (find_extant_func_descr, find_func_descr, ia64_dummy_id)
9691 (ia64_unwind_pc): Likewise.
9692 * iq2000-tdep.c (iq2000_store_return_value): Likewise.
9693 * m68hc11-tdep.c (m68hc11_push_dummy_call)
9694 (m68hc11_extract_return_value): Likewise.
9695 * m68klinux-nat.c (fetch_register, store_register): Likewise.
9696 * mep-tdep.c (mep_pseudo_cr32_read, mep_pseudo_cr32_write)
9697 (mep_get_insn, mep_push_dummy_call): Likewise.
9698 * mips-linux-tdep.c (mips_linux_get_longjmp_target)
9699 (mips_linux_in_dynsym_stub): Likewise.
9700 * mn10300-tdep.c (mep_pseudo_cr32_write): Likewise.
9701 * ppc-linux-nat.c (fetch_register, store_register): Likewise.
9702 * regcache.c (dump_endian_bytes): Change type of parameter 'buf'
9703 to gdb_byte.
9704 * remote-mips.c (mips_set_register): Likewise.
9705 * remote-sim.c (gdbsim_fetch_register): Likewise.
9706 * score-tdep.c (score7_fetch_inst): Change type of parameter
9707 'memblock' and local 'buf' to gdb_byte.
9708 (score7_malloc_and_get_memblock): Change return type to gdb_byte.
9709 Change type of local 'buf' to gdb_byte. Adjust.
9710 (score7_adjust_memblock_ptr): Change type of parameter 'memblock'
9711 to gdb_byte**.
9712 (score7_analyze_prologue): Change type of 'memblock' and
9713 'memblock_ptr' locals to gdb_byte*.
9714 * sh64-tdep.c (sh64_extract_return_value)
9715 (sh64_store_return_value): Change type of local 'buf' to gdb_byte.
9716 * solib-darwin.c (darwin_current_sos, darwin_read_exec_load_addr):
9717 * solib-pa64.c (pa64_solib_create_inferior_hook)
9718 (pa64_open_symbol_file_object): Remove local 'buf'.
9719 * solib-som.c (som_solib_create_inferior_hook, link_map_start)
9720 (som_open_symbol_file_object): Likewise.
9721 * solib-spu.c (spu_current_sos): Likewise.
9722 * spu-linux-nat.c (spu_fetch_inferior_registers): Likewise.
9723 * spu-multiarch.c (parse_spufs_run, spu_fetch_registers)
9724 (spu_store_registers): Likewise.
9725 * target.c (debug_print_register): Likewise.
9726 * tic6x-tdep.c (tic6x_get_longjmp_target): Likewise.
9727 * xstormy16-tdep.c (xstormy16_store_return_value)
9728 (xstormy16_push_dummy_call, xstormy16_resolve_jmp_table_entry)
9729 (xstormy16_find_jmp_table_entry): Likewise.
9730
9731 2013-03-01 Jiong Wang <jiwang@tilera.com>
9732
9733 * tilegx-tdep.c (tilegx_get_longjmp_target): New function.
9734 (tilegx_gdbarch_init): Install it.
9735
9736 2013-02-28 Tom Tromey <tromey@redhat.com>
9737
9738 * python/py-arch.c (archpy_disassemble): Use PyInt_Check and
9739 PyLong_Check.
9740
9741 2013-02-28 Doug Evans <dje@google.com>
9742
9743 * python/py-finishbreakpoint.c (bpfinishpy_init): gcc -Wall lint.
9744 * python/python.c (gdbpy_find_pc_line): Ditto.
9745
9746 2013-02-28 Tom Tromey <tromey@redhat.com>
9747
9748 * contrib/excheck.py: New file.
9749 * contrib/exsummary.py: New file.
9750 * contrib/gcc-with-excheck: New file.
9751
9752 2013-02-28 Tom Tromey <tromey@redhat.com>
9753
9754 * python/python.c (gdbpy_print_stack): Call begin_line and
9755 fprintf_filtered inside TRY_CATCH.
9756
9757 2013-02-28 Tom Tromey <tromey@redhat.com>
9758
9759 * python/python.c (gdbpy_find_pc_line): Call find_pc_line
9760 inside TRY_CATCH.
9761
9762 2013-02-28 Tom Tromey <tromey@redhat.com>
9763
9764 * py-finishbreakpoint.c (bpfinishpy_init): Reorganize to call
9765 frame_object_to_frame_info inside TRY_CATCH.
9766
9767 2013-02-28 Tom Tromey <tromey@redhat.com>
9768
9769 * py-block.c (gdbpy_block_for_pc): Call block_for_pc inside
9770 TRY_CATCH.
9771
9772 2013-02-28 Tom Tromey <tromey@redhat.com>
9773
9774 * objfiles.h (ALL_PSPACE_OBJFILES): Remove trailing backlash.
9775
9776 2013-02-27 Corinna Vinschen <vinschen@redhat.com>
9777
9778 * windows-nat.c: Throughout, fix format strings and casts of
9779 printf-like functions to avoid type related warnings on all
9780 platforms.
9781 (handle_output_debug_string): Fetch context information address
9782 from debug string using string_to_core_addr.
9783
9784 2013-02-27 Jiong Wang <jiwang@tilera.com>
9785
9786 * regformats/reg-tilegx.dat (name): Change abi name to "tilegx".
9787 * regformats/reg-tilegx32.dat: New.
9788
9789 2013-02-27 Jiong Wang <jiwang@tilera.com>
9790
9791 * configure.tgt (tilegx-*-linux*): Enable gdbserver.
9792
9793 2013-02-27 Jiong Wang <jiwang@tilera.com>
9794
9795 * configure.tgt (tilegx-*-linux*): Replace whitespace with tab.
9796
9797 2013-02-27 Yao Qi <yao@codesourcery.com>
9798 Pedro Alves <palves@redhat.com>
9799
9800 * tracepoint.c (tfile_trace_find): For tfind
9801 pc/tp/range/outside, look for the next trace frame instead of
9802 always starting from frame 0.
9803
9804 2013-02-26 Anthony Green <green@moxielogic.com>
9805
9806 * configure.tgt: Add support for moxie-*-rtems* target.
9807
9808 2013-02-25 Pedro Alves <palves@redhat.com>
9809
9810 * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Change
9811 warning text.
9812
9813 2013-02-24 Maciej W. Rozycki <macro@codesourcery.com>
9814
9815 * mips-tdep.c (mips32_scan_prologue): Reset frame_offset to zero
9816 if $fp is used as the virtual frame pointer.
9817
9818 2013-02-23 Alan Modra <amodra@gmail.com>
9819
9820 * elfread.c (elf_symtab_read): Do not use udata.p here to find
9821 symbol size.
9822 * ppc64-tdep.c (ppc64_elf_make_msymbol_special): New function.
9823 * ppc64-tdep.h (ppc64_elf_make_msymbol_special): Declare.
9824 * ppc-linux-tdep.c (ppc_linux_init_abi): Set up to use the above.
9825 * ppcfbsd-tdep.c (ppcfbsd_init_abi): Likewise.
9826
9827 2013-02-22 Jan Kratochvil <jan.kratochvil@redhat.com>
9828
9829 Code cleanup.
9830 * elfread.c (build_id_bfd_get): Make the return type const.
9831 (build_id_verify): Make the check parameter const.
9832 (build_id_to_debug_filename): Make the build_id parameter and variable
9833 data const.
9834 (find_separate_debug_file_by_buildid): Make the variable build_id const.
9835
9836 2013-02-21 Alan Modra <amodra@gmail.com>
9837
9838 * elfread.c (build_id_bfd_get): Adjust for elf_tdata changes.
9839
9840 2013-02-20 Siva Chandra Reddy <sivachandra@google.com>
9841
9842 Add a new method 'disassemble' to gdb.Architecture class.
9843 * python/py-arch.c (archpy_disassmble): Implementation of the
9844 new method gdb.Architecture.disassemble.
9845 (arch_object_methods): Add entry for the new method.
9846
9847 2013-02-20 Jiong Wang <jiwang@tilera.com>
9848
9849 * MAINTAINERS (Write After Approval): Add myself to the list.
9850
9851 2013-02-19 Pedro Alves <palves@redhat.com>
9852
9853 Garbage collect 'struct monitor_ops'::load_routine.
9854
9855 * monitor.h (struct monitor_ops) <load_routine>: Remove field.
9856 * monitor.c (monitor_load): No longer call
9857 current_monitor->load_routine.
9858 * dbug-rom.c (init_dbug_cmds): Don't set 'load_routine'.
9859 * m32r-rom.c (init_m32r_cmds): Don't set 'load_routine'.
9860 * ppcbug-rom.c (init_ppc_cmds): Don't set 'load_routine'.
9861
9862 2013-02-19 Pedro Alves <palves@redhat.com>
9863
9864 PR gdb/15161
9865
9866 Harmonize with generic_load.
9867
9868 * monitor.c: Include "readline/readline.h".
9869 (monitor_load): Rename parameter 'file' to 'args'. Use build_argv
9870 instead of sscanf. Use CORE_ADDR/strtoulst instead of unsigned
9871 long/strtol for the 'load_offset' local. Error out if no argument
9872 is given or if too many arguments are given. Tilde expand the
9873 passed in file name.
9874
9875 2013-02-19 Kai Tietz <ktietz@redhat.com>
9876
9877 PR gdb/15161
9878 * symfile.c (load_section_data): Change type of load_offset
9879 to CORE_ADDR.
9880 (generic_load): User strtoulst instead of strtoul for conversion
9881 of load_offset.
9882
9883 2013-02-19 Jiong Wang <jiwang@tilera.com>
9884
9885 * tilegx-tdep.c (tilegx_analyze_prologue): add check for
9886 for return address, "lr" register, saved on stack.
9887 * tilegx-tdep.c (tilegx_frame_cache): update "PC" reg
9888 after we invoke tilegx_analyze_prologue.
9889
9890 2013-02-19 Jiong Wang <jiwang@tilera.com>
9891
9892 * tilegx-tdep.c (itilegx_gdbarch_init): char type should be signed.
9893
9894 2013-02-19 Jiong Wang <jiwang@tilera.com>
9895
9896 * tilegx-tdep.c (tilegx_skip_prologue): Use skip_prologue_using_sal.
9897
9898 2013-02-19 Jiong Wang <jiwang@tilera.com>
9899
9900 * tilegx-tdep.c (INT_SWINT_1_SIGRETURN): New macro.
9901 (tilegx_write_pc): New function.
9902 (tilegx_cannot_reference_register): Return zero if REGNO
9903 is TILEGX_FAULTNUM_REGNUM.
9904 (tilegx_gdbarch_init): Add call to set_gdbarch_write_pc.
9905 (tilegx_register_name): Add handling of "faultnum" register.
9906 * tilegx-tdep.h (enum tilegx_regnum): Add TILEGX_FAULTNUM_REGNUM.
9907 * tilegx-linux-tdep.c (tilegx_linux_supply_regset): Add
9908 handling of TILEGX_FAULTNUM_REGNUM.
9909 * tilegx-linux-nat.c (regmap): Add entry for TILEGX_FAULTNUM_REGNUM.
9910
9911 2013-02-19 Jiong Wang <jiwang@tilera.com>
9912
9913 * tilegx-tdep.c (tilegx_push_dummy_call): args pushed on stack
9914 should be aligned to 64bit.
9915
9916 2013-02-19 Kai Tietz <ktietz@redhat.com>
9917
9918 * windows-nat.c (windows_xfer_memory): Fix debug-output
9919 for LLP64.
9920
9921 2013-02-19 Lei Liu <lei.liu2@windriver.com>
9922
9923 * mips-linux-nat.c (mips64_linux_regsets_store_registers):
9924 Don't check DSP register number if HAVE_DSP is not set.
9925
9926 2013-02-19 Alan Modra <amodra@gmail.com>
9927
9928 * elfread.c (struct build_id): Delete. Use struct elf_build_id
9929 throughout file instead.
9930 (build_id_bfd_get): Update to use new elf_tdata build_id field.
9931 Don't xmalloc return value.
9932 (build_id_verify): Similarly. Don't xfree.
9933 (build_id_to_debug_filename): Update.
9934 (find_separate_debug_file_by_buildid): Update, don't xfree.
9935
9936 2013-02-18 Tom Tromey <tromey@redhat.com>
9937
9938 PR gdb/15102:
9939 * dwarf2read.c (read_subrange_type): Use result of
9940 'check_typedef'.
9941
9942 2013-02-16 Yuanhui Zhang <asmwarrior@gmail.com>
9943
9944 * frame.c: Remove one extra white space after #include
9945 directive.
9946
9947 2013-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
9948
9949 * contrib/cc-with-tweaks.sh: Extend the comment for -p option.
9950
9951 2013-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
9952
9953 * gdb-gdb.gdb.in: Wrap set complaints, b internal_error, b info_command
9954 and dir commands into an if block.
9955
9956 2013-02-15 Sanimir Agovic <sanimir.agovic@intel.com>
9957
9958 * python/py-breakpoint (struct pybp_code): Use int instead of
9959 enum type_code.
9960
9961 2013-02-15 Pedro Alves <pedro@codesourcery.com>
9962 Hafiz Abid Qadeer <abidh@codesourcery.com>
9963
9964 * NEWS: Mention new field "trace-file".
9965 * tracepoint.c (trace_status_mi): Output "trace-file" field.
9966 (tfile_open): Record the trace file's filename in the trace
9967 status.
9968 (tfile_files_info): Mention the name of the trace file.
9969 Check the "filename" field explicitely.
9970 (trace_status_command): Explicitely check "filename" field.
9971 (trace_find_command): Ditto.
9972 (trace_find_pc_command): Ditto.
9973 (trace_find_tracepoint_command): Ditto.
9974 (trace_find_line_command): Ditto.
9975 (trace_find_range_command): Ditto.
9976 (trace_find_outside_command): Ditto.
9977 * tracepoint.h (struct trace_status) <from_file>: Rename it
9978 to "filename" and make it hold the trace file's filename
9979 instead of a boolean.
9980 * remote.c (remote_get_trace_status): Initialize "filename"
9981 field with NULL instead of 0.
9982
9983 2013-02-15 Yao Qi <yao@codesourcery.com>
9984
9985 * remote.c: Fix a typo.
9986
9987 2013-02-14 Pierre Muller <muller@sourceware.org>
9988
9989 * contrib/ari/gdb_ari.sh (GNU/Linux rule): Remove.
9990
9991 2013-02-14 Pedro Alves <palves@redhat.com>
9992
9993 * utils.c (savestring): Don't #undef it. Move function to
9994 common/common-utils.c.
9995 * common/common-utils.c: Include gdb_string.h.
9996 (savestring): Move here from utils.c.
9997 * common/common-utils.h (savestring): Declare.
9998
9999 2013-02-14 Pedro Alves <palves@redhat.com>
10000
10001 * utils.c (savestring): Rename parameter 'size' to 'len'.
10002
10003 2013-02-14 Pedro Alves <palves@redhat.com>
10004 Yufeng Zhang <yufeng.zhang@arm.com>
10005
10006 * aarch64-linux-nat.c (aarch64_init_debug_reg_state): Delete.
10007 (aarch64_inferior_data, struct aarch64_inferior_data):
10008 Delete.
10009 (struct aarch64_process_info): New.
10010 (aarch64_process_list): New global.
10011 (aarch64_find_process_pid, aarch64_add_process)
10012 (aarch64_process_info_get): New functions.
10013 (aarch64_inferior_data_get): Delete.
10014 (aarch64_process_info_get): New function.
10015 (aarch64_forget_process): New function.
10016 (aarch64_get_debug_reg_state): New parameter 'pid'. Reimplement.
10017 (aarch64_linux_prepare_to_resume): Pass the lwp's pid to
10018 aarch64_get_debug_reg_state.
10019 (aarch64_notify_debug_reg_change): Use iterate_over_lwps
10020 instead of linux_nat_iterate_watchpoint_lwps.
10021 (aarch64_linux_new_fork): New function.
10022 (aarch64_linux_child_post_startup_inferior): Use
10023 aarch64_forget_process instead of aarch64_init_debug_reg_state.
10024 (aarch64_handle_breakpoint, aarch64_linux_insert_hw_breakpoint)
10025 (aarch64_linux_remove_hw_breakpoint)
10026 (aarch64_handle_aligned_watchpoint)
10027 (aarch64_handle_unaligned_watchpoint)
10028 (aarch64_linux_insert_watchpoint)
10029 (aarch64_linux_remove_watchpoint)
10030 (aarch64_linux_stopped_data_address): Adjust to pass the current
10031 process id to aarch64_debug_reg_state.
10032 (_initialize_aarch64_linux_nat): Install aarch64_linux_new_fork as
10033 linux_nat_new_fork hook, and aarch64_forget_process as
10034 linux_nat_forget_process hook; remove the call to
10035 register_inferior_data_with_cleanup.
10036
10037 2013-02-14 Pedro Alves <palves@redhat.com>
10038
10039 * eval.c (evaluate_subexp_for_address) <default_case_after_eval,
10040 EVAL_AVOID_SIDE_EFFECTS>: Swap and handle TYPE_CODE_REF before
10041 lval_memory.
10042
10043 2013-02-14 Pedro Alves <pedro@codesourcery.com>
10044 Hafiz Abid Qadeer <abidh@codesourcery.com>
10045
10046 * tracepoint.h (validate_trace_state_variable_name): Declare.
10047 * tracepoint.c (validate_trace_state_variable_name): New.
10048 (trace_variable_command): Parse the trace state variable's name
10049 without using parse_expression. Do several validations.
10050 * mi/mi-main.c (mi_cmd_trace_define_variable): Don't parse the
10051 trace state variable's name with parse_expression. Validate it.
10052
10053 2013-02-14 Yao Qi <yao@codesourcery.com>
10054
10055 * infcmd.c (breakpoint_proceeded): Remove it.
10056
10057 2013-02-14 Yao Qi <yao@codesourcery.com>
10058
10059 * tracepoint.c (end_actions_pseudocommand): Make it static.
10060 (while_stepping_pseudocommand): Likewise.
10061 * tracepoint.h (end_actions_pseudocommand): Remove the
10062 declaration.
10063 (while_stepping_pseudocommand): Likewise.
10064
10065 2013-02-14 Yao Qi <yao@codesourcery.com>
10066
10067 * cli/cli-decode.c (help_cmd): Remove the declaration of
10068 "cmdlist".
10069 (help_all): Likewise.
10070
10071 2013-02-13 Pedro Alves <palves@redhat.com>
10072
10073 * amd64-linux-nat.c (update_debug_registers_callback):
10074 Update comment.
10075 (amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use
10076 iterate_over_lwps.
10077 (amd64_linux_prepare_to_resume): Pass the lwp's pid to
10078 i386_debug_reg_state.
10079 (amd64_linux_new_fork): New function.
10080 (_initialize_amd64_linux_nat): Install amd64_linux_new_fork as
10081 linux_nat_new_fork hook, and i386_forget_process as
10082 linux_nat_forget_process hook.
10083 * i386-linux-nat.c (update_debug_registers_callback):
10084 Update comment.
10085 (i386_linux_dr_set_control, i386_linux_dr_set_addr): Use
10086 iterate_over_lwps.
10087 (i386_linux_prepare_to_resume): Pass the lwp's pid to
10088 i386_debug_reg_state.
10089 (i386_linux_new_fork): New function.
10090 (_initialize_i386_linux_nat): Install i386_linux_new_fork as
10091 linux_nat_new_fork hook, and i386_forget_process as
10092 linux_nat_forget_process hook.
10093 * i386-nat.c (i386_init_dregs): Delete.
10094 (i386_inferior_data, struct i386_inferior_data):
10095 Delete.
10096 (struct i386_process_info): New.
10097 (i386_process_list): New global.
10098 (i386_find_process_pid, i386_add_process, i386_process_info_get):
10099 New functions.
10100 (i386_inferior_data_get): Delete.
10101 (i386_process_info_get): New function.
10102 (i386_debug_reg_state): New parameter 'pid'. Reimplement.
10103 (i386_forget_process): New function.
10104 (i386_cleanup_dregs): Rewrite.
10105 (i386_update_inferior_debug_regs, i386_insert_watchpoint)
10106 (i386_remove_watchpoint, i386_region_ok_for_watchpoint)
10107 (i386_stopped_data_address, i386_insert_hw_breakpoint)
10108 (i386_remove_hw_breakpoint): Adjust to pass the current process id
10109 to i386_debug_reg_state.
10110 (i386_use_watchpoints): Don't register inferior data.
10111 * i386-nat.h (i386_debug_reg_state): Add new 'pid' parameter, and
10112 adjust comment.
10113 (i386_forget_process): Declare.
10114 * linux-fork.c (delete_fork): Call linux_nat_forget_process.
10115 * linux-nat.c (linux_nat_new_fork, linux_nat_forget_process_hook):
10116 New static globals.
10117 (linux_child_follow_fork): Don't call linux_nat_new_thread here.
10118 (add_initial_lwp): New, factored out from ...
10119 (add_lwp): ... this. Don't check the number of lwps before
10120 calling linux_nat_new_thread.
10121 (linux_nat_iterate_watchpoint_lwps): Delete.
10122 (linux_nat_attach): Use add_initial_lwp instead of add_lwp.
10123 (linux_handle_extended_wait): Call the linux_nat_new_fork hook on
10124 forks and vforks.
10125 (linux_nat_wait_1): Use add_initial_lwp instead of add_lwp for the
10126 initial lwp.
10127 (linux_nat_kill, linux_nat_mourn_inferior): Call
10128 linux_nat_forget_process.
10129 (linux_nat_set_new_fork, linux_nat_set_forget_process)
10130 (linux_nat_forget_process): New functions.
10131 * linux-nat.h (linux_nat_iterate_watchpoint_lwps_ftype): Delete
10132 type.
10133 (linux_nat_iterate_watchpoint_lwps): Delete declaration.
10134 (linux_nat_new_fork_ftype, linux_nat_forget_process_ftype): New
10135 types.
10136 (linux_nat_set_new_fork, linux_nat_set_forget_process)
10137 (linux_nat_forget_process): New declarations.
10138
10139 * amd64fbsd-nat.c (super_mourn_inferior): New global.
10140 (amd64fbsd_mourn_inferior): New function.
10141 (_initialize_amd64fbsd_nat): Override to_mourn_inferior.
10142 * windows-nat.c (windows_detach): Call i386_cleanup_dregs.
10143
10144 2013-02-13 Marcus Shawcroft <marcus.shawcroft@arm.com>
10145
10146 * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity):
10147 Adding _().
10148
10149 2013-02-13 Marcus Shawcroft <marcus.shawcroft@arm.com>
10150
10151 * aarch64-linux-nat.c (debug_reg_change_callback)
10152 (aarch64_linux_get_debug_reg_capacity): ARI fix: Replace %llx with
10153 %s and phex().
10154
10155 2013-02-13 Marcus Shawcroft <marcus.shawcroft@arm.com>
10156
10157 * aarch64-linux-nat.c (dr_changed_t): ARI fix: Replace long long
10158 with LONGEST.
10159
10160 2013-02-13 Pedro Alves <palves@redhat.com>
10161 Hafiz Abid Qadeer <abidh@codesourcery.com>
10162
10163 * c-lang.c (c_op_print_tab): Add entry for UNOP_PLUS.
10164
10165 2013-02-12 Tom Tromey <tromey@redhat.com>
10166
10167 PR symtab/11464:
10168 * c-exp.y (lex_one_token): Initialize other fields of yylval on
10169 NAME return.
10170 (classify_inner_name): Remove 'first_name' argument, add
10171 'context'. Remove unused variable.
10172 (yylex): Explicitly maintain the context type. Exit loop earlier
10173 if NAME result is seen.
10174
10175 2013-02-12 Pedro Alves <palves@redhat.com>
10176
10177 * amd64-darwin-tdep.c: Add (C) after Copyright.
10178 * cli/cli-cmds.h: Ditto.
10179 * cli/cli-decode.c: Ditto.
10180 * cli/cli-decode.h: Ditto.
10181 * cli/cli-dump.c: Ditto.
10182 * cli/cli-dump.h: Ditto.
10183 * cli/cli-interp.c: Ditto.
10184 * cli/cli-logging.c: Ditto.
10185 * cli/cli-script.c: Ditto.
10186 * cli/cli-script.h: Ditto.
10187 * cli/cli-setshow.c: Ditto.
10188 * cli/cli-setshow.h: Ditto.
10189 * cli/cli-utils.c: Ditto.
10190 * cli/cli-utils.h: Ditto.
10191 * config/alpha/nm-osf3.h: Ditto.
10192 * config/djgpp/djconfig.sh: Ditto.
10193 * config/i386/nm-fbsd.h: Ditto.
10194 * config/i386/nm-i386gnu.h: Ditto.
10195 * config/nm-linux.h: Ditto.
10196 * config/nm-nto.h: Ditto.
10197 * config/rs6000/nm-rs6000.h: Ditto.
10198 * config/sparc/nm-sol2.h: Ditto.
10199 * darwin-nat-info.c: Ditto.
10200 * dfp.c: Ditto.
10201 * dfp.h: Ditto.
10202 * gdb-demangle.h: Ditto.
10203 * i386-darwin-nat.c: Ditto.
10204 * i386-darwin-tdep.c: Ditto.
10205 * linux-fork.h: Ditto.
10206 * m32c-tdep.c: Ditto.
10207 * microblaze-linux-tdep.c: Ditto.
10208 * microblaze-rom.c: Ditto.
10209 * microblaze-tdep.c: Ditto.
10210 * microblaze-tdep.h: Ditto.
10211 * mips-linux-tdep.h: Ditto.
10212 * ppc-ravenscar-thread.c: Ditto.
10213 * ppc-ravenscar-thread.h: Ditto.
10214 * prologue-value.c: Ditto.
10215 * prologue-value.h: Ditto.
10216 * ravenscar-thread.c: Ditto.
10217 * ravenscar-thread.h: Ditto.
10218 * sparc-ravenscar-thread.c: Ditto.
10219 * sparc-ravenscar-thread.h: Ditto.
10220 * tilegx-linux-tdep.c: Ditto.
10221 * unwind_stop_reasons.def: Ditto.
10222 * windows-nat.h: Ditto.
10223 * xtensa-linux-tdep.c: Ditto.
10224 * xtensa-xtregs.c: Ditto.
10225 * regformats/regdat.sh: Ditto.
10226 * regformats/regdef.h: Ditto.
10227
10228 2013-02-12 Pedro Alves <palves@redhat.com>
10229
10230 * break-catch-sig.c: Update copyright years.
10231
10232 2013-02-11 Siva Chandra Reddy <sivachandra@google.com>
10233
10234 Add support for a destructor for ui_out data and use it to
10235 provide a ui_out destructor.
10236 * ui-out.h: Declare the new ui_out destructor.
10237 (ui_out_impl): Add a field for data destructor in ui_out_impl.
10238 * ui-out.c (default_data_destroy): Add a default data destructor
10239 which does nothing.
10240 (default_ui_out_impl): Set the new data_destroy field to
10241 default_data_destroy
10242 (uo_data_destroy): Local function which invokes the data
10243 destructor if present.
10244 (clear_table): Local function which clears the table data of a
10245 ui_out object.
10246 (ui_out_destroy): Public function which frees a ui_out object.
10247 (ui_out_table_end): Use the new clear_table function.
10248 * cli-out.c (cli_ui_out_impl): Set the new data_destroy field to
10249 NULL.
10250 * mi/mi-out.c (mi_ui_out_impl): Set the new data_destroy field
10251 to NULL.
10252
10253 2013-02-11 Doug Evans <dje@google.com>
10254
10255 * printcmd.c (printf_c_string,printf_wide_c_string): New functions.
10256 (printf_decfloat): New function. Broken out from ui_printf.
10257 Remove unnecessary code to shift the entire format string down.
10258 (printf_pointer): New function.
10259 (ui_printf): Code to print C strings, wide C strings, decfloats,
10260 and pointers moved to separate functions.
10261
10262 2013-02-11 Sergio Durigan Junior <sergiodj@redhat.com>
10263
10264 * valops.c (value_assign): Handling bitfield offset in
10265 `lval_internalvar_component' case.
10266
10267 2013-02-08 Doug Evans <dje@google.com>
10268
10269 * common/format.c (parse_format_string): Fix whitespace.
10270
10271 2013-02-08 Matthew Gretton-Dann <matthew.gretton-dann@linaro.org>
10272
10273 * stack.c (return_command): Work around uninitialized variable
10274 warning.
10275
10276 2013-02-08 Yufeng Zhang <yufeng.zhang@arm.com>
10277
10278 * aarch64-linux-tdep.c (AARCH64_LINUX_SIZEOF_GREGSET): Change the
10279 number of the registers from 36 to 34.
10280
10281 2013-02-08 Marcus Shawcroft <marcus.shawcroft@arm.com>
10282
10283 * NEWS: Mention new AArch64 native and target support.
10284
10285 2013-02-08 Marcus Shawcroft <marcus.shawcroft@arm.com>
10286
10287 * MAINTAINERS (Write After Approval): Add myself.
10288
10289 2013-02-08 Jim MacArthur <jim.macarthur@arm.com>
10290 Marcus Shawcroft <marcus.shawcroft@arm.com>
10291 Nigel Stephens <nigel.stephens@arm.com>
10292 Yufeng Zhang <yufeng.zhang@arm.com>
10293
10294 * aarch64-linux-nat.c: New file.
10295 * config/aarch64/linux.mh: New file.
10296 * configure.host: Add AArch64.
10297 * Makefile.in (ALLDEPFILES): Add aarch64-linux-nat.c.
10298
10299 2013-02-07 Doug Evans <dje@google.com>
10300
10301 * cli/cli-cmds.c (_initialize_cli_cmds): Clarify argument to
10302 disassemble command.
10303
10304 2013-02-07 Marcus Shawcroft <marcus.shawcroft@arm.com>
10305
10306 * aarch64-linux-tdep.c (aarch64_linux_init_abi): Call
10307 set_gdbarch_fetch_tls_load_module_address.
10308
10309 2013-02-06 David S. Miller <davem@davemloft.net>
10310
10311 * sparc-tdep.c (sparc32_return_value): Handle writing return value when
10312 using RETURN_VALUE_ABI_PRESERVES_ADDRESS.
10313 * value.c (struct_return_convention): New function.
10314 (using_struct_return): Implement in terms of struct_return_convention.
10315 * value.h (struct_return_convention): Declare.
10316 * stack.c (return_command): Allow successful overriding of the return
10317 value when RETURN_VALUE_ABI_PRESERVES_ADDRESS.
10318
10319 2013-02-06 Tom Tromey <tromey@redhat.com>
10320
10321 * python/py-type.c (typy_strip_typedefs): Don't call check_typedef
10322 outside of TRY_CATCH.
10323
10324 2013-02-06 Yao Qi <yao@codesourcery.com>
10325
10326 * mi/mi-interp.c: Include "tracepoint.h".
10327 (mi_tsv_modified): Declare.
10328 (mi_tsv_created, mi_tsv_deleted): Update declaration.
10329 (mi_interpreter_init): Call observer_attach_tsv_modified.
10330 (mi_tsv_modified): New.
10331 (mi_tsv_created, mi_tsv_deleted): Update.
10332 * tracepoint.c (trace_variable_command): Call
10333 observer_notify_tsv_modified if the initial value of tsv is
10334 changed.
10335 (delete_trace_state_variable): Call
10336 observer_notify_tsv_deleted earlier.
10337 (trace_variable_command): Caller update.
10338 (create_tsv_from_upload): Likewise.
10339 * observer.sh: Declare "struct trace_state_variable".
10340
10341 * NEWS: Mention the new MI notification "=tsv-modified".
10342
10343 2013-02-05 Doug Evans <dje@google.com>
10344
10345 * completer.c (location_completer): Fix typo in comment.
10346
10347 2013-02-05 Jan Kratochvil <jan.kratochvil@redhat.com>
10348
10349 * breakpoint.c (add_location_to_breakpoint): Insert the location with
10350 ADDRESS sorted.
10351
10352 2013-02-05 Marcus Shawcroft <marcus.shawcroft@arm.com>
10353
10354 * aarch64-tdep.c (aarch64_analyze_prologue): ARI fix:
10355 Refactor if statement to avoid trailing || operator.
10356
10357 2013-02-05 Andreas Tobler <andreast@fgznet.ch>
10358
10359 * NEWS: Add PowerPC FreeBSD as a new native configuration.
10360
10361 2013-02-04 Andreas Tobler <andreast@fgznet.ch>
10362
10363 * Makefile.in (ALL_TARGET_OBS): Add powerpc FreeBSD files.
10364 * configure.host: Add powerpc*-*-freebsd* target.
10365 * configure.tgt: Add target info for powerpc*-*-freebsd*.
10366 * ppcfbsd-nat.c, ppcfbsd-tdep.h, ppcfbsd-tdep.c: New files.
10367 * config/powerpc/fbsd.mh: New file.
10368
10369 2013-02-04 Sergio Durigan Junior <sergiodj@redhat.com>
10370 Denys Vlasenko <dvlasenk@redhat.com>
10371 Pedro Alves <palves@redhat.com>
10372
10373 * gdbarch.sh (elfcore_write_linux_prpsinfo): New F hook.
10374 (struct elf_internal_linux_prpsinfo): Forward declare.
10375 * gdbarch.h, gdbarch.c: Regenerate.
10376 * linux-tdep.c: Include `cli/cli-utils.h'.
10377 (linux_fill_prpsinfo): New function.
10378 (linux_make_corefile_notes): Use linux_fill_prpsinfo. If there's
10379 an elfcore_write_linux_prpsinfo hook, use it, otherwise, use
10380 elfcore_write_linux_prpsinfo32 or elfcore_write_linux_prpsinfo64
10381 depending on gdbarch pointer bitness.
10382 * ppc-linux-tdep.c: Include elf-bfd.h.
10383 (ppc_linux_init_abi): Hook in elfcore_write_ppc_linux_prpsinfo32
10384 on 32-bit.
10385
10386 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
10387 Marcus Shawcroft <marcus.shawcroft@arm.com>
10388 Nigel Stephens <nigel.stephens@arm.com>
10389 Yufeng Zhang <yufeng.zhang@arm.com>
10390
10391 * configure.tgt (aarch64*-*-linux*): Set build_gdbserver=yes.
10392
10393 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
10394 Marcus Shawcroft <marcus.shawcroft@arm.com>
10395 Nigel Stephens <nigel.stephens@arm.com>
10396 Yufeng Zhang <yufeng.zhang@arm.com>
10397
10398 * aarch64-newlib-tdep.c: New file.
10399 * configure.tgt: Add aarch64-newlib-tdep.o to gdb_target_obs of
10400 aarch64*-*-elf.
10401 * defs.h (enum gdb_osabi): Add GDB_OSABI_NEWLIB.
10402 * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-newlib-tdep.o.
10403 (ALLDEPFILES): Add aarch64-newlib-tdep.c.
10404 * osabi.c (gdb_osabi_names): Add "Newlib".
10405
10406 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
10407 Marcus Shawcroft <marcus.shawcroft@arm.com>
10408 Nigel Stephens <nigel.stephens@arm.com>
10409 Yufeng Zhang <yufeng.zhang@arm.com>
10410
10411 * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-linux-tdep.o.
10412 (ALLDEPFILES): Add aarch64-linux-tdep.c.
10413 * aarch64-linux-tdep.c: New file.
10414 * aarch64-linux-tdep.h: New file.
10415 * aarch64-tdep.h (gdbarch_tdep): Define gregset and fpregset.
10416 * configure.tgt: Add aarch64-none-linux-gnu.
10417
10418 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
10419 Marcus Shawcroft <marcus.shawcroft@arm.com>
10420 Nigel Stephens <nigel.stephens@arm.com>
10421 Yufeng Zhang <yufeng.zhang@arm.com>
10422
10423 * Makefile.in (ALL_64_TARGET_OBS): Add arch64-tdep.o.
10424 (HFILES_NO_SRCDIR): Add aarch64-tdep.h.
10425 (ALLDEPFILES): Add aarch64-tdep.c.
10426 * aarch64-tdep.c: New file.
10427 * aarch64-tdep.h: New file.
10428 * configure.tgt: Add AArch64.
10429 * features/Makefile (WHICH): Add aarch64 and aarch64-without-fpu.
10430 (aarch64-expedite): New definition.
10431 * features/aarch64-core.xml: New file.
10432 * features/aarch64-fpu.xml: New file.
10433 * features/aarch64-without-fpu.c: New file (generated).
10434 * features/aarch64-without-fpu.xml: New file.
10435 * features/aarch64.c: New file (generated).
10436 * features/aarch64.xml: New file.
10437 * regformats/aarch64-without-fpu.dat: New file (generated).
10438 * regformats/aarch64.dat: New file (generated).
10439
10440 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10441
10442 * contrib/expect-read1.c: New file.
10443 * contrib/expect-read1.sh: New file.
10444
10445 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10446
10447 * dwarf2read.c (file_file_name): New function with code from
10448 file_full_name.
10449 (file_full_name): Move most of the code to file_file_name.
10450 (macro_start_file): Rename variable full_name to file_name and use
10451 file_file_name for it. Add comp_dir parameter to new_macro_table.
10452 * macrocmd.c (show_pp_source_pos): New variable fullname. Replace any
10453 macro_source_file->filename access by macro_source_fullname call.
10454 * macroscope.c (_initialize_macroscope): Update the new_macro_table
10455 caller.
10456 * macrotab.c (struct macro_table): New field comp_dir.
10457 (macro_include): New variables link_fullname and source_fullname.
10458 Replace any macro_source_file->filename access by macro_source_fullname
10459 call.
10460 (macro_lookup_inclusion): Remove the partial filenames checking code.
10461 (check_for_redefinition): New variables source_fullname and
10462 found_key_fullname. Replace any macro_source_file->filename access by
10463 macro_source_fullname call.
10464 (macro_undef): New variables source_fullname and key_fullname. Replace
10465 any macro_source_file->filename access by macro_source_fullname call.
10466 (macro_lookup_definition): New variables retval and source_fullname.
10467 Replace any macro_source_file->filename access by macro_source_fullname
10468 call.
10469 (foreach_macro): New variable key_fullname. Replace any
10470 macro_source_file->filename access by macro_source_fullname call.
10471 (foreach_macro_in_scope): New variable datum_fullname. Replace any
10472 macro_source_file->filename access by macro_source_fullname call.
10473 (new_macro_table): Add parameter comp_dir. Initialize T with it.
10474 (macro_source_fullname): New function.
10475 * macrotab.h (struct macro_source_file): Extent the filename field
10476 comment.
10477 (new_macro_table): New parameter comp_dir, add a comment for it.
10478 (macro_source_fullname): new declaration.
10479
10480 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10481
10482 * dwarf2read.c (dw2_map_symtabs_matching_filename): Move variable
10483 this_real_name to outer block. Use it also for
10484 compare_filenames_for_search.
10485 (dw2_expand_symtabs_matching): New variable this_real_name. Use it
10486 with dw2_get_real_path for file_matcher, considering also
10487 BASENAMES_MAY_DIFFER.
10488 (file_full_name): Prepend COMP_DIR even for relative lh->INCLUDE_DIRS.
10489
10490 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10491
10492 * dwarf2read.c (dw2_expand_symtabs_matching): Add basenames parameter
10493 to the file_matcher parameter. Pass 0 to it.
10494 (dwarf2_create_include_psymtab): Copy also DIRNAME.
10495 * psymtab.c (partial_map_symtabs_matching_filename): Drop handling of
10496 NULL psymtab_to_fullname result.
10497 (psymtab_to_fullname): Remove variable r. Never return NULL, assemble
10498 an expected filename instead.
10499 (expand_symtabs_matching_via_partial): Add basenames parameter to the
10500 file_matcher parameter. Call also psymtab_to_fullname, after newly
10501 considering BASENAMES_MAY_DIFFER.
10502 * source.c (rewrite_source_path): Remove static.
10503 * source.h (rewrite_source_path): New declaration.
10504 * symfile.h (struct quick_symbol_functions): Add basenames parameter to
10505 the expand_symtabs_matching field. Comment it.
10506 * symtab.c (file_matches): New function comment. Add parameter
10507 basenames, implement it.
10508 (search_symbols_file_matches): Add basenames parameter. Update the
10509 file_matches caller.
10510 (search_symbols): Match FILES also against symtab_to_fullname.
10511 Optimize it for BASENAMES_MAY_DIFFER.
10512
10513 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10514
10515 * source.c (print_source_lines_base): Print for TUI also "fullname".
10516 * tui/tui-data.c (init_content_element): Change tui_locator_element
10517 field to full_name.
10518 * tui/tui-data.h (struct tui_locator_element): Likewise.
10519 * tui/tui-disasm.c (tui_show_disassem_and_update_source): Rename
10520 tui_update_locator_filename calls to tui_update_locator_fullname.
10521 Replace symtab->filename refererence by symtab_to_fullname call.
10522 * tui/tui-out.c (tui_field_string): Check for "fullname" now.
10523 * tui/tui-source.c (tui_set_source_content): Change tui_locator_element
10524 field to full_name. Replace symtab->filename refererence by
10525 symtab_to_fullname call.
10526 (tui_show_symtab_source): Rename parameter to fullname. Change
10527 tui_locator_element field to full_name.
10528 * tui/tui-stack.c: Include source.h.
10529 (tui_set_locator_filename): Rename the declaration to ...
10530 (tui_set_locator_fullname): ... here. Rename its parameter to
10531 fullname, updates its comment.
10532 (tui_set_locator_info): Rename its parameter to fullname.
10533 (tui_set_locator_filename): Rename the definition to ...
10534 (tui_set_locator_fullname): ... here. Rename its parameter to
10535 fullname, updates its comment. Change tui_locator_element field to
10536 full_name.
10537 (tui_set_locator_info): Rename its parameter to fullname.
10538 (tui_set_locator_info): Rename callee to tui_set_locator_fullname.
10539 (tui_update_locator_filename): Rename to ...
10540 (tui_update_locator_fullname): ... here. Rename callee to
10541 tui_set_locator_fullname.
10542 (tui_show_frame_info): Replace symtab->filename refererence by
10543 symtab_to_fullname call.
10544 * tui/tui-stack.h (tui_update_locator_filename): Rename to ...
10545 (tui_update_locator_fullname): ... here.
10546 * tui/tui-winsource.c (tui_display_main): Rename the callee to
10547 tui_update_locator_fullname. Replace symtab->filename refererence by
10548 symtab_to_fullname call.
10549 * tui/tui.c (tui_show_source): Rename its parameter to fullname.
10550 Rename the callee to tui_update_locator_fullname.
10551 * tui/tui.h (tui_show_source): Rename its parameter to fullname.
10552
10553 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10554
10555 * ada-lang.c (user_select_syms): Replace symtab->filename refererences
10556 by symtab_to_filename_for_display calls.
10557 * breakpoint.c (print_breakpoint_location, resolve_sal_pc): Likewise.
10558 (clear_command): New variable sal_fullname, initialize it. Replace
10559 compare_filenames_for_search by filename_cmp with sal_fullname.
10560 (say_where, update_static_tracepoint): Replace symtab->filename
10561 refererences by symtab_to_filename_for_display calls.
10562 * cli/cli-cmds.c (edit_command, list_command, ambiguous_line_spec):
10563 Likewise.
10564 * dwarf2read.c: Include source.h.
10565 (fixup_go_packaging): Replace symtab->filename refererences by
10566 symtab_to_filename_for_display calls.
10567 * linespec.c (add_sal_to_sals): Rename variable filename to fullname.
10568 Replace symtab->filename refererences by symtab_to_filename_for_display
10569 calls.
10570 (create_sals_line_offset, convert_linespec_to_sals): New variable
10571 fullname, initialize it, replace symtab->filename reference by the
10572 variable.
10573 * linux-fork.c: Include source.h.
10574 (info_checkpoints_command): Replace symtab->filename refererences by
10575 symtab_to_filename_for_display calls.
10576 * macroscope.c (sal_macro_scope): Replace symtab->filename refererences
10577 by symtab_to_filename_for_display calls.
10578 * mdebugread.c: Include source.h.
10579 (psymtab_to_symtab_1): Replace symtab->filename refererences by
10580 symtab_to_filename_for_display calls.
10581 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file)
10582 (mi_cmd_file_list_exec_source_files): Likewise.
10583 * printcmd.c: Include source.h.
10584 (build_address_symbolic): Replace symtab->filename refererences by
10585 symtab_to_filename_for_display calls.
10586 * psymtab.c (partial_map_symtabs_matching_filename)
10587 (read_psymtabs_with_fullname): Call compare_filenames_for_search also
10588 with psymtab_to_fullname.
10589 * python/py-symtab.c (stpy_str): Replace symtab->filename refererences
10590 by symtab_to_filename_for_display calls.
10591 (stpy_get_filename): New variable filename, initialize it, use instead
10592 of symtab->filename refererences.
10593 (salpy_str): Make variable filename const char *. Replace
10594 symtab->filename refererences by symtab_to_filename_for_display calls.
10595 * skip.c: Include source.h and filenames.h.
10596 (skip_file_command): Remove const from the symtab variable. Replace
10597 symtab->filename refererences by symtab_to_fullname call.
10598 (function_name_is_marked_for_skip): New variables searched_for_fullname
10599 and fullname. Use them to search also with symtab's fullname.
10600 * source.c (find_source_lines): Replace symtab->filename refererences
10601 by symtab_to_filename_for_display calls.
10602 (print_source_lines_base): New variable filename, use it instead of
10603 symtab->filename. Replace symtab->filename refererences by
10604 symtab_to_filename_for_display calls.
10605 (line_info, forward_search_command): Replace symtab->filename
10606 refererences by symtab_to_filename_for_display calls.
10607 (reverse_search_command): Replace symtab->filename refererences by
10608 symtab_to_filename_for_display calls. New variable filename for it.
10609 * stack.c (frame_info): Likewise.
10610 * symmisc.c: Include source.h.
10611 (dump_objfile, dump_symtab_1, maintenance_print_symbols)
10612 (maintenance_info_symtabs): Replace symtab->filename refererences by
10613 symtab_to_filename_for_display calls.
10614 * symtab.c (iterate_over_some_symtabs): Call
10615 compare_filenames_for_search also with symtab_to_fullname.
10616 (lookup_symbol_aux_quick, basic_lookup_transparent_type_quick): Replace
10617 symtab->filename refererences by symtab_to_filename_for_display calls.
10618 (find_line_symtab): Replace symtab->filename refererences by
10619 symtab_to_filename_for_display calls.
10620 (file_matches): Replace filename_cmp by compare_filenames_for_search.
10621 (print_symbol_info): Make the last parameter const char *. New
10622 variable s_filename. Use it in the function.
10623 (symtab_symbol_info): Make the last_filename variable const char *.
10624 Replace symtab->filename refererences by symtab_to_filename_for_display
10625 calls.
10626 (rbreak_command): New variable fullname. Use it. Replace
10627 symtab->filename refererence by symtab_to_filename_for_display call.
10628 * tracepoint.c (set_traceframe_context, trace_find_line_command)
10629 (print_one_static_tracepoint_marker): Replace symtab->filename
10630 refererences by symtab_to_filename_for_display calls.
10631 * tui/tui-source.c (tui_set_source_content): New variables filename and
10632 s_filename. Replace symtab->filename refererences by this variable.
10633 Replace other symtab->filename refererences by
10634 symtab_to_filename_for_display calls.
10635
10636 2013-02-03 Eldar Gaynetdinov <hal9000ed2k@gmail.com>
10637 Jan Kratochvil <jan.kratochvil@redhat.com>
10638
10639 Add a new variable that controls a way in which filenames are
10640 displayed.
10641 * NEWS (set filename-display): New entry.
10642 * source.c (filename_display_basename, filename_display_relative)
10643 (filename_display_absolute, filename_display_kind_names)
10644 (filename_display_string, show_filename_display_string)
10645 (symtab_to_filename_for_display): New.
10646 (_initialize_source): Added initialization of 'filename-display'
10647 variable.
10648 * source.h (symtab_to_filename_for_display): Added declaration.
10649 * stack.c (print_frame): Added new variable and calling of a new
10650 function and condition with this variable. Changed third argument of
10651 calling of a function.
10652
10653 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10654
10655 * tui/tui-data.c (init_win_info, tui_del_window, tui_free_window):
10656 Rename field reference filename to fullname.
10657 * tui/tui-data.h (struct tui_source_info): Rename field filename to
10658 fullname. New comment for it.
10659 * tui/tui-source.c (tui_set_source_content): Rename field reference
10660 filename to fullname. Initialize field by symtab_to_fullname now.
10661 * tui/tui-winsource.c (tui_update_breakpoint_info): Rename field
10662 reference filename to fullname. Use symtab_to_fullname during
10663 comparison.
10664
10665 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10666
10667 Code cleanup.
10668 * dwarf2read.c (dw2_expand_symtabs_with_filename): Rename to ...
10669 (dw2_expand_symtabs_with_fullname): ... here. Rename parameter
10670 filename to fullname. Rename variable this_name to this_fullname.
10671 Lowercase FILENAME_CMP call.
10672 (dw2_find_symbol_file): New comment for the returned string.
10673 (dwarf2_gdb_index_functions): Rename the function to
10674 dw2_expand_symtabs_with_fullname.
10675 * psymtab.c (read_psymtabs_with_filename): Rename to ...
10676 (read_psymtabs_with_fullname): ... here. Rename parameter filename to
10677 fullname.
10678 (psym_functions): Rename the function to read_psymtabs_with_fullname.
10679 * symfile.h (struct quick_symbol_functions): Rename field
10680 expand_symtabs_with_filename to expand_symtabs_with_fullname and its
10681 parameter filename to fullname. Document returned string meaning for
10682 find_symbol_file.
10683 * symtab.c (find_line_symtab): Rename the called function to
10684 expand_symtabs_with_fullname.
10685
10686 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10687
10688 Code cleanup.
10689 * breakpoint.c (clear_command): Remove variable is_abs, unify the
10690 call of filename_cmp with compare_filenames_for_search.
10691 * dwarf2read.c (dw2_map_symtabs_matching_filename): Remove variable
10692 is_abs, unify the call of FILENAME_CMP with
10693 compare_filenames_for_search. New gdb_asserts for real_path and name.
10694 Unify the call of compare_filenames_for_search with FILENAME_CMP.
10695 * psymtab.c (partial_map_symtabs_matching_filename): Likewise.
10696 * symfile.h (struct quick_symbol_functions): Extend the comment for
10697 map_symtabs_matching_filename.
10698 * symtab.c (compare_filenames_for_search): Remove the function comment
10699 relative path requirement. Handle absolute filenames, with a comment.
10700 (iterate_over_some_symtabs): Remove variable is_abs, unify the call of
10701 FILENAME_CMP with compare_filenames_for_search. New gdb_asserts for
10702 real_path and name. Unify the call of compare_filenames_for_search
10703 with FILENAME_CMP.
10704 (iterate_over_symtabs): New gdb_assert on REAL_PATH.
10705
10706 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10707
10708 Code cleanup.
10709 * breakpoint.c (print_breakpoint_location): Replace bp_location field
10710 source_file references by symtab field references. Remove variables
10711 sal and fullname.
10712 (momentary_breakpoint_from_master, add_location_to_breakpoint):
10713 (clear_command, say_where): Replace bp_location field source_file
10714 references by symtab field references.
10715 (bp_location_dtor): Remove the source_file reference.
10716 (update_static_tracepoint): Replace bp_location field source_file
10717 references by symtab field references.
10718 (breakpoint_free_objfile): New function.
10719 * breakpoint.h (struct bp_location): Extend the comment for line_number.
10720 Replace the field source_file by field symtab, extend its comment.
10721 (breakpoint_free_objfile): New declaration.
10722 * objfiles.c (free_objfile): Call breakpoint_free_objfile.
10723 * tui/tui-winsource.c (tui_update_breakpoint_info): Replace bp_location
10724 field source_file references by symtab field references.
10725
10726 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10727
10728 Replace xfullpath calls by gdb_realpath calls.
10729 * cli/cli-cmds.c (find_and_open_script): Remove xfullpath from the
10730 function comment.
10731 * dwarf2read.c (dw2_map_expand_apply): Remove parameter full_path.
10732 Remove it from the iterate_over_some_symtabs call.
10733 (dw2_map_symtabs_matching_filename): Remove parameter full_path.
10734 Remove it from the dw2_map_expand_apply calls, remove a block handling
10735 it.
10736 * psymtab.c (partial_map_expand_apply): Remove parameter full_path.
10737 Remove it from the iterate_over_some_symtabs call.
10738 (partial_map_symtabs_matching_filename): Remove parameter full_path.
10739 Remove it from the partial_map_expand_apply calls, remove a block
10740 handling it. Drop gdb_realpath call and cleanups from the real_path
10741 handling.
10742 * source.c (openp): Drop the comment part about xfullpath. Replace
10743 xfullpath calls by gdb_realpath calls.
10744 (find_and_open_source): Replace xfullpath call by gdb_realpath call.
10745 * symfile.h (struct quick_symbol_functions): Remove parameter full_path
10746 from method map_symtabs_matching_filename and its comment.
10747 * symmisc.c (maintenance_print_msymbols): Replace xfullpath call by
10748 gdb_realpath call.
10749 * symtab.c (iterate_over_some_symtabs): Remove parameter full_path,
10750 remove it also from the function comment, remove a block handling it.
10751 Drop gdb_realpath call and cleanups from the real_path handling.
10752 (iterate_over_symtabs): Drop variable full_path and its use.
10753 * symtab.h (iterate_over_some_symtabs): Remove parameter full_path.
10754 * utils.c (xfullpath): Remove.
10755 * utils.h (xfullpath): Remove.
10756
10757 2013-02-01 Andreas Tobler <andreast@fgznet.ch>
10758
10759 * Makefile.in (ALL_TARGET_OBS): Add ppc64-tdep.o.
10760 (HFILES_NO_SRCDIR): Add ppc64-tdep.h.
10761 (ALLDEPFILES): Add ppc64-tdep.c.
10762 * configure.tgt (powerpc-*-linux* | powerpc64-*-linux*): Add
10763 ppc64-tdep.o to gdb_target_obs.
10764 * ppc64-tdep.h: New file.
10765 * ppc64-tdep.c: New file.
10766 (insn_d, insn_ds, insn_xfx, ppc64_desc_entry_point): Move from
10767 ppc-linux-tdep.c to here.
10768 (PPC64_STANDARD_LINKAGE1_LEN, PPC64_STANDARD_LINKAGE2_LEN)
10769 (PPC64_STANDARD_LINKAGE2_LEN): Likewise and use ARRAY_SIZE macro.
10770 (ppc64_standard_linkage1_target, ppc64_standard_linkage2_target)
10771 (ppc64_standard_linkage3_target, ppc64_skip_trampoline_code): Move
10772 from ppc-linux-tdep.c to here.
10773 (ppc64_convert_from_func_ptr_addr): Rename from
10774 ppc64_linux_convert_from_func_ptr_addr to
10775 ppc64_convert_from_func_ptr_addr and move from ppc-linux-tdep.c to
10776 here.
10777 * rs6000-tdep.c:
10778 (read_insn): Move from ppc-linux-tdep.c to here.
10779 (insns_match_pattern, insn_d_field, insn_ds_field): Move
10780 from ppc-linux-tdep.c to here and rename them with the ppc_ prefix.
10781 * ppc-linux-tdep.c: Include ppc64-tdep.h.
10782 Removed above functions.
10783 (ppc_linux_init_abi): Adjust.
10784
10785 2013-02-01 Aleksandar Ristovski <aristovski@qnx.com>
10786
10787 * ada-valprint.c (ada_print_floating): Remove unused 'len'.
10788
10789 2013-02-01 Aleksandar Ristovski <aristovski@qnx.com>
10790
10791 * ada-lang.c (assign_aggregate): Remove unused 'is_array_aggregate'.
10792
10793 2013-02-01 Pedro Alves <palves@redhat.com>
10794
10795 * dummy-frame.c (deprecated_pc_in_call_dummy): Delete function.
10796 * frame.h (deprecated_pc_in_call_dummy): Delete declaration.
10797
10798 2013-02-01 Jan Kratochvil <jan.kratochvil@redhat.com>
10799
10800 * elfread.c (elf_symfile_read): Limit separate debug info additions to
10801 files with no separate debug info.
10802 * objfiles.c (add_separate_debug_objfile): Add gdb_assert calls.
10803 * symfile.c (read_symbols): Call find_separate_debug_file_in_section
10804 only for files with no separate debug info.
10805
10806 2013-01-31 Tom Tromey <tromey@redhat.com>
10807
10808 * jit.c (jit_program_space_data): Rename from jit_inferior_data;
10809 change type.
10810 (struct jit_program_space_data): Rename from jit_inferior_data.
10811 Update comments.
10812 (get_jit_program_space_data): Rename from get_jit_inferior_data.
10813 Change return type. Attach data to program space.
10814 (jit_program_space_data_cleanup): Rename from
10815 jit_inferior_data_cleanup; change argument type.
10816 (jit_read_descriptor): Change 'inf_data' argument to 'ps_data',
10817 change type.
10818 (jit_register_code): Update.
10819 (jit_update_inferior_cache): Remove.
10820 (jit_breakpoint_deleted): Get jit data from the location's program
10821 space.
10822 (jit_breakpoint_re_set_internal): Rename 'inf_data' argument to
10823 'ps_data', change type.
10824 (jit_inferior_init, jit_breakpoint_re_set_internal)
10825 (jit_event_handler): Update.
10826 (free_objfile_data): Get data from objfile's program space.
10827 (_initialize_jit): Update.
10828
10829 2013-01-31 Tom Tromey <tromey@redhat.com>
10830
10831 PR gdb/13987:
10832 * jit.c (struct jit_inferior_data) <cached_code_address,
10833 jit_breakpoint>: New fields.
10834 (jit_breakpoint_re_set_internal): Fix logging. Only create
10835 breakpoint if cached address has changed.
10836 (jit_update_inferior_cache, jit_breakpoint_deleted): New
10837 functions.
10838 (_initialize_jit): Register breakpoint deleted observer.
10839
10840 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
10841
10842 * infrun.c (handle_syscall_event): Remove unused gdbarch.
10843 (save_infcall_suspend_state): Ifdef out unused inf.
10844 (restore_infcall_suspend_state): Ifdef out unused inf.
10845 * jit.c (jit_register_code): Remove unused i, b, inf_data.
10846 (jit_frame_sniffer): Remove unused inf_data.
10847
10848 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
10849
10850 * c-exp.y (classify_inner_name): Remove unused type.
10851 * c-lang.c (c_printstr): Remove unused byte_order, i, things_printed,
10852 in_quotes, need_comma, wchar_buf, output, cleanup, iter, finished,
10853 need_escape.
10854 (c_get_string): Remove unused kind.
10855 * c-typeprint.c (c_type_print_args): Remove unused i, len, args, table2.
10856
10857 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
10858
10859 * charset.c (intermediate_encoding): Remove unused i.
10860 * completer.c (signal_completer): Remove unused i.
10861 * continuations.c (discard_my_continuations_1): Remove unused
10862 continuation_ptr.
10863 * corelow.c (core_close): Remove unuseD name.
10864 (get_core_siginfo): Remove unused pid.
10865 * cp-namespace.c (cp_lookup_symbol_imports_or_template): Remove unused
10866 i, cps.
10867 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Remove unused base_offset.
10868 (loclist_describe_location): Remove unused first.
10869 * event-top.c (command_line_handler): Remove unused got_eof.
10870 * exec.c (exec_close_1): Remove unused need_symtab_cleanup.
10871 (resize_section_table): Remove unused old_value.
10872 * gdb_bfd.c (gdb_bfd_map_section): Remove unused header.
10873 * gnu-v3-abi.c (compute_vtable_size): Remove unused addr.
10874 * i386-tdep.c (i386_process_record): Remove unused rex.
10875 * infcmd.c (get_return_value): Remove unused uiout.
10876 * jv-lang.c (type_from_class): Remove unused is_array.
10877 * jv-valprint.c (java_val_print): Remove unused i.
10878 * linux-nat.c (linux_nat_stop_lwp): Remove unused ptid.
10879 * linux-thread-db.c (thread_db_find_new_threads_2): Remove unuseD pid.
10880 * m2-typeprint.c (m2_print_type): Remove unused code.
10881 * macroexp.c (get_character_constant): Remove unused body_start.
10882 (macro_stringify): Remove unused result.
10883 * objc-lang.c (find_methods): Remove unused gdbarch.
10884 * objfiles.c (filter_overlapping_sections): Remove unused abfd1, abfd2.
10885 * regcache.c (regcache_cooked_read): Remove unused gdbarch.
10886 * stack.c (print_frame_args): Remove unused summary.
10887 * thread.c (thread_apply_command): Remove unused p.
10888 * valarith.c (value_x_unop): Remove unused mangle_ptr.
10889 * valops.c (search_struct_method): Remove unused skip.
10890 * valprint.c (generic_val_print): Remove unused byte_order.
10891 * varobj.c (varobj_update): Remove unused changed.
10892 * cli/cli-cmds.c (complete_command): Remove unused next_item.
10893 (alias_command): Remove unused c.
10894 * mi/mi-cmd-catch.c (mi_catch_load_unload): Remove unused c.
10895 * mi/mi-main.c (mi_cmd_data_write_register_values): Remove unused
10896 format.
10897 (mi_cmd_data_write_memory): Remove unused word_format.
10898 (mi_cmd_data_write_memory_bytes): Remove unused r.
10899 * python/py-gdb-readline.c (gdbpy_readline_wrapper): Remove unused
10900 p_start, p_end.
10901 * python/python.c (_initialize_python): Remove unused cmd_name, cmd.
10902 * tui/tui-disasm.c (tui_set_disassem_content): Remove unused
10903 line_width.
10904
10905 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
10906
10907 * dwarf2-frame.c (dwarf2_compile_cfa_to_ax): Remove unused num_regs.
10908 * symtab.c (iterate_over_symtabs): Remove unused s.
10909 (find_pc_sect_symtab): Remove unused pspAce.
10910 (find_pc_sect_line): Remove unused alt_symtab.
10911 (find_pcs_for_symtab_line): Remove unused ix, previous_function.
10912 (completion_list_add_name): Remove unused newsize.
10913
10914 2013-01-31 Tom Tromey <tromey@redhat.com>
10915
10916 PR c++/14998:
10917 * dwarf2read.c (read_tag_ptr_to_member_type): Handle
10918 TYPE_CODE_FUNC.
10919
10920 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
10921
10922 * target.c (target_read_string): Remove unused origlen.
10923
10924 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
10925
10926 * auto-load.c (auto_load_expand_dir_vars): Remove unused dir_vec.
10927 * ax-gdb.c (gen_printf): Remove unused expr, i, bot, fr, flen, fmt.
10928 * ax-general.c (ax_print): Remove unused is_float.
10929 * blockframe.c (block_innermost_frame): Remove unused start, end.
10930 * break-catch-sig.c (catch_signal_command): Remove unused gdbarch.
10931
10932 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
10933
10934 * solib-svr4.c (svr4_keep_data_in_core): Remove unused lmo.
10935 (svr4_read_so_list): Remove unused lmo.
10936 * solib-target.c (solib_target_relocate_section_addresses): Remove
10937 unused flags.
10938
10939 2013-01-30 Tom Tromey <tromey@redhat.com>
10940
10941 * hppa-tdep.c (read_unwind_info): Use SECT_OFF_TEXT, not "0".
10942
10943 2013-01-30 Tom Tromey <tromey@redhat.com>
10944
10945 * symfile.c (get_file_crc): Use bfd_calc_gnu_debuglink_crc32.
10946 * utils.c (gnu_debuglink_crc32): Remove.
10947 * utils.h (gnu_debuglink_crc32): Don't declare.
10948
10949 2013-01-30 Tom Tromey <tromey@redhat.com>
10950
10951 * dwarf2read.c (compute_delayed_physnames, read_call_site_scope)
10952 (read_structure_type, read_enumeration_type): Remove cast.
10953
10954 2013-01-30 Tom Tromey <tromey@redhat.com>
10955
10956 * dwarf2read.c (read_namespace_type): Remove cast.
10957 (read_typedef): Likewise.
10958
10959 2013-01-29 Tom Tromey <tromey@redhat.com>
10960
10961 * dwarf2read.c (free_dwo_file): Remove assert.
10962
10963 2013-01-29 Tom Tromey <tromey@redhat.com>
10964
10965 * value.c (deprecated_set_value_modifiable): Remove.
10966 * value.h (deprecated_set_value_modifiable): Remove.
10967
10968 2013-01-28 Doug Evans <dje@google.com>
10969
10970 * dwarf2loc.c (dwarf2_find_location_expression): Don't add base address
10971 to addresses from dwo files.
10972
10973 2013-01-25 Siva Chandra Reddy <sivachandra@google.com>
10974
10975 * valops.c (find_overload_match): Remove unused argument 'lax'.
10976 * value.h: Remove unused argument 'lax' from the declaration of
10977 find_overload_match.
10978 * eval.c (value_subexp_standard): Do not pass a 'lax' argument
10979 to find_overload_match.
10980 * valarith.c (value_user_defined_cpp_op): Do not pass a 'lax'
10981 argument to find_overload_match.
10982
10983 2013-01-25 Tom Tromey <tromey@redhat.com>
10984
10985 * dwarf2read.c (processing_has_namespace_info): Remove.
10986 (struct dwarf2_cu) <processing_has_namespace_info>: New field.
10987 (process_die, read_func_scope, dwarf2_start_symtab)
10988 (new_symbol_full): Update.
10989
10990 2013-01-25 Tom Tromey <tromey@redhat.com>
10991
10992 * cp-namespace.c (cp_set_block_scope): Remove.
10993 * cp-support.h (cp_set_block_scope): Remove.
10994 * dbxread.c: Include block.h.
10995 (cp_set_block_scope): New function.
10996 (process_one_symbol): Update.
10997 * dwarf2read.c (read_func_scope): Use block_set_scope.
10998
10999 2013-01-25 Pedro Alves <palves@redhat.com>
11000
11001 * remote.c (add_current_inferior_and_thread): Tweak comment.
11002
11003 2013-01-25 Tom Tromey <tromey@redhat.com>
11004
11005 * cp-namespace.c (cp_scan_for_anonymous_namespaces): Update.
11006 (cp_add_using_directive): Add 'copy_names' argument.
11007 * cp-support.h (cp_add_using_directive): Update.
11008 (struct using_direct) <import_src, import_dest, alias,
11009 declaration>: Now const.
11010 * dwarf2read.c (read_import_statement): Use obconcat.
11011 Don't copy names passed to cp_add_using_directive.
11012
11013 2013-01-25 Tom Tromey <tromey@redhat.com>
11014
11015 * c-exp.y (qualified_name): Use TYPE_SAFE_NAME.
11016
11017 2013-01-25 Pedro Alves <palves@redhat.com>
11018
11019 * remote.c (stop_reply_extract_thread): New.
11020 (add_current_inferior_and_thread): New parameter 'wait_status'.
11021 Handle it.
11022 (remote_start_remote): Pass wait status to
11023 add_current_inferior_and_thread.
11024 (extended_remote_run): Update comment.
11025 (extended_remote_create_inferior_1): Pass wait status to
11026 add_current_inferior_and_thread.
11027
11028 2013-01-25 Andrew Burgess <aburgess@broadcom.com>
11029 Ulrich Weigand <uweigand@de.ibm.com>
11030
11031 * valarith.c (value_vector_widen): New function for replicating a
11032 scalar into a vector.
11033 (value_binop): Use value_vector_widen to widen scalar to vector
11034 rather than casting, this better matches gcc C behaviour.
11035 * valops.c (value_casst): Update logic for casting between vector
11036 types, and for casting from scalar to vector, try to match gcc C
11037 behaviour.
11038 * value.h (value_vector_widen): Declare.
11039 * opencl-lang.c (opencl_value_cast): New opencl specific casting
11040 function, handle special case for casting scalar to vector.
11041 (opencl_relop): Use opencl_value_cast.
11042 (evaluate_subexp_opencl): Use opencl_value_cast instead of
11043 value_cast, and handle BINOP_ASSIGN, UNOP_CAST, and UNOP_CAST_TYPE
11044 in order to use opencl_value_cast.
11045
11046 2013-01-25 Yao Qi <yao@codesourcery.com>
11047
11048 * event-loop.c: Include "queue.h".
11049 (gdb_event_p): New typedef.
11050 (DECLARE_QUEUE_P): Use.
11051 (DEFINE_QUEUE_P): Use.
11052 (async_queue_event): Remove.
11053 (gdb_event_xfree): New.
11054 (initialize_event_loop): New.
11055 (process_event): Use QUEUE macros.
11056 (event_queue): Remove.
11057 (gdb_wait_for_event): Caller update.
11058 (check_async_event_handlers): Likewise.
11059 (poll_timers): Likewise.
11060 * event-loop.h (initialize_event_loop): Declare.
11061 * event-loop.c (gdb_event_xfree): New.
11062 * top.c (gdb_init): Call initialize_event_loop.
11063
11064 2013-01-25 Yao Qi <yao@codesourcery.com>
11065
11066 * event-loop.c (async_queue_event): Remove one parameter
11067 'position'. Remove code handling 'position' == TAIL.
11068 (gdb_wait_for_event): Caller update.
11069 (check_async_event_handlers): Caller update.
11070 (poll_timers): Caller update.
11071 * event-loop.h (enum queue_position): Remove.
11072
11073 2013-01-25 Maxim Kuvyrkov <maxim@kugelworks.com>
11074
11075 * MAINTAINERS: Update my email.
11076
11077 2013-01-25 Yao Qi <yao@codesourcery.com>
11078
11079 * main.c (print_gdb_help): Remove "--epoch" from the help
11080 message.
11081
11082 2013-01-24 Ulrich Weigand  <uweigand@de.ibm.com>
11083
11084 * symtab.c (skip_prologue_using_sal): Consider a file
11085 change the same as an increased line number
11086
11087 2013-01-24 Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
11088
11089 * MAINTAINERS (Write After Approval): Add myself to the list.
11090
11091 2013-01-24 Tom Tromey <tromey@redhat.com>
11092
11093 * ada-lang.h (ada_decode_symbol): Make return type const.
11094 * ada-lang.c (ada_decode_symbol): Likewise.
11095
11096 2013-01-23 Doug Evans <dje@google.com>
11097
11098 * linespec.c (find_linespec_symbols): Make static.
11099
11100 2013-01-23 Tiago Stürmer Daitx <tdaitx@linux.vnet.ibm.com>
11101
11102 * ppc-sysv-tdep.c (ppc64_sysv_abi_return_value): Set correct
11103 type on float conversion for complex type.
11104
11105 2013-01-23 Siva Chandra Reddy <sivachandra@google.com>
11106
11107 Add a new class gdb.Architecture which exposes GDB's
11108 internal representation of architecture via GDB Python API.
11109 * Makefile.in: Add entries corresponding to the new file
11110 python/py-arch.c.
11111 * NEWS (Python Scripting): Add entries for the new class
11112 gdb.Architecture and the new method gdb.Frame.architecture.
11113 * python/py-arch.c: Implement gdb.Architecture class.
11114 * python/py-frame.c (frapy_arch): Implement the method
11115 gdb.Frame.architecture().
11116 (frame_object_methods): Add 'architecture' to the method table.
11117 * python/python-internal.h: Add declarations of new utility
11118 functions.
11119 * python/python.c (_initialize_python): Initialize
11120 gdb.Architecture class.
11121
11122 2013-01-23 Doug Evans <dje@google.com>
11123
11124 Work around binutils/15021.
11125 * dwarf2read.c (dwarf2_per_cu_data): Split imported_symtabs and
11126 type_unit_group out of union s. All uses updated.
11127 (read_index_from_section): Watch for index version 8.
11128 (follow_die_sig): If using .gdb_index version <= 7, record the TU as
11129 an imported symtab.
11130 (write_psymtabs_to_index): Increment version number to 8.
11131
11132 2013-01-22 Pedro Alves <palves@redhat.com>
11133
11134 * annotate.c (breakpoint_changed): Skip if breakpoint is not
11135 user-visible.
11136
11137 2013-01-22 Pedro Alves <palves@redhat.com>
11138
11139 * annotate.c (annotate_breakpoints_changed): Rename to ...
11140 (annotate_breakpoints_invalid): ... this. Make static.
11141 (breakpoint_changed): Adjust.
11142 (_initialize_annotate): Always install the observers. Install a
11143 "breakpoint_created" observer.
11144 * annotate.h (annotate_breakpoints_changed): Delete declaration.
11145 * breakpoint.c (set_breakpoint_condition)
11146 (breakpoint_set_commands, do_map_commands_command)
11147 (init_raw_breakpoint, clear_command, set_ignore_count)
11148 (enable_breakpoint_disp): No longer call
11149 annotate_breakpoints_changed.
11150
11151 2013-01-22 Pedro Alves <palves@redhat.com>
11152
11153 * annotate.c: Include "inferior.h".
11154 (frames_invalid_emitted)
11155 (breakpoints_invalid_emitted): New globals.
11156 (async_background_execution_p): New function.
11157 (annotate_breakpoints_changed, annotate_frames_invalid): Skip
11158 emitting the annotation if it has already been emitted.
11159 (annotate_display_prompt): New function.
11160 * annotate.h (annotate_display_prompt): New declaration.
11161 * event-top.c: Include annotate.h.
11162 (display_gdb_prompt): Call annotate_display_prompt.
11163
11164 2013-01-22 Pedro Alves <palves@redhat.com>
11165
11166 * annotate.c (ignore_count_changed): Delete.
11167 (annotate_breakpoints_changed): Don't clear ignore_count_changed.
11168 (annotate_ignore_count_change): Delete.
11169 (annotate_stopped): Don't emit a delayed breakpoints-changed
11170 annotation.
11171 * annotate.h (annotate_ignore_count_change): Delete.
11172 * breakpoint.c (bpstat_check_breakpoint_conditions): Don't call
11173 annotate_ignore_count_change.
11174
11175 2013-01-22 Tom Tromey <tromey@redhat.com>
11176
11177 * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>: Only
11178 require_rvalue for a register location.
11179
11180 2013-01-21 Marc Khouzam <marc.khouzam@ericsson.com>
11181
11182 * breakpoint.c (print_one_breakpoint_location): Add MI
11183 field 'thread-groups' when printing a breakpoint.
11184 (output_thread_groups): New function.
11185
11186 2013-01-21 Siva Chandra Reddy <sivachandra@google.com>
11187
11188 * python/lib/gdb/commands/explore.py
11189 (CompoundExplorer.explore_expr): Correct the name of a method
11190 being invoked.
11191 (ExploreTypeCommand.invoke): Add a missing 'return'.
11192
11193 2013-01-21 Tom Tromey <tromey@redhat.com>
11194
11195 * gdb_obstack.h (obconcat): Move declaration here, from...
11196 * symfile.h (obconcat): ... here.
11197 * gdb_obstack.c: New file.
11198 (obconcat): Move from...
11199 * symfile.c (obconcat): ... here.
11200 * Makefile.in (SFILES): Add gdb_obstack.c.
11201 (COMMON_OBS): Add gdb_obstack.o.
11202
11203 2013-01-21 Tom Tromey <tromey@redhat.com>
11204
11205 * symfile.h (obsavestring): Don't declare.
11206 * symfile.c (obsavestring): Remove.
11207 * ada-exp.y: Use obstack_copy0, not obsavestring.
11208 * ada-lang.c: Use obstack_copy0, not obsavestring.
11209 * coffread.c: Use obstack_copy0, not obsavestring.
11210 * cp-namespace.c: Use obstack_copy0, not obsavestring.
11211 * dbxread.c: Use obstack_copy0, not obsavestring.
11212 * dwarf2read.c: Use obstack_copy0, not obsavestring.
11213 * jit.c: Use obstack_copy0, not obsavestring.
11214 * mdebugread.c: Use obstack_copy0, not obsavestring.
11215 * psymtab.c: Use obstack_copy0, not obsavestring.
11216 * stabsread.c: Use obstack_copy0, not obsavestring.
11217 * xcoffread.c: Use obstack_copy0, not obsavestring.
11218
11219 2013-01-21 Tom Tromey <tromey@redhat.com>
11220
11221 * dwarf2read.c (fixup_go_packaging): Save package name
11222 on objfile obstack.
11223 * gdbtypes.c (init_type): Don't copy name.
11224
11225 2013-01-21 Tom Tromey <tromey@redhat.com>
11226
11227 * dwarf2read.c (struct partial_die_info) <name, scope>: Now
11228 const.
11229 (struct attribute) <u.str>: Now const.
11230 (struct fnfieldlist) <name>: Now const.
11231 (dw2_get_file_names_reader, init_cutu_and_read_dies): Update.
11232 (partial_die_parent_scope): Make return type const.
11233 (partial_die_full_name, add_partial_symbol): Update.
11234 (dwarf2_compute_name, dwarf2_full_name, dwarf2_physname): Make
11235 'name' const.
11236 (find_file_and_directory): Make 'name' and 'comp_dir' const.
11237 (read_file_scope, read_func_scope, dwarf2_add_field)
11238 (dwarf2_add_member_fn, read_structure_type)
11239 (process_enumeration_scope, read_array_type, read_module_type)
11240 (read_base_type, read_subrange_type): Update.
11241 (dwarf2_start_symtab): Make 'name' and 'comp_dir' const.
11242 (new_symbol_full, guess_full_die_structure_name): Update.
11243 (dwarf2_canonicalize_name): Return const type. Make 'name' const.
11244 (dwarf2_name): Return const type.
11245 (dwarf_decode_macro_bytes, dwarf_decode_macros): Make 'comp_dir'
11246 const.
11247
11248 2013-01-21 Tom Tromey <tromey@redhat.com>
11249
11250 * gdbtypes.c (init_type): Make 'name' const.
11251 * gdbtypes.h (init_type): Update.
11252
11253 2013-01-21 Tom Tromey <tromey@redhat.com>
11254
11255 * buildsym.c (patch_subfile_names): Use set_last_source_file.
11256 (start_symtab): Make 'name' and 'dirname' const. Use
11257 set_last_source_file.
11258 (restart_symtab, reset_symtab_globals): Use set_last_source_file.
11259 (last_source_file): Define. Now static.
11260 (set_last_source_file, get_last_source_file): New functions.
11261 * buildsym.h (last_source_file): Don't declare.
11262 (start_symtab): Update.
11263 (set_last_source_file, get_last_source_file): Declare.
11264 * coffread.c (complete_symtab): Use set_last_source_file.
11265 (coff_end_symtab): Likewise.
11266 (coff_symtab_read): Use set_last_source_file, get_last_source_file.
11267 * dbxread.c (read_dbx_symtab, read_ofile_symtab): Use
11268 set_last_source_file.
11269 (process_one_symbol): Use get_last_source_file.
11270 * mdebugread.c (parse_partial_symbols): Use set_last_source_file.
11271 (psymtab_to_symtab_1): Use get_last_source_file.
11272 * xcoffread.c (process_linenos): Use get_last_source_file.
11273 (complete_symtab): Use set_last_source_file.
11274 (read_xcoff_symtab): Use set_last_source_file, get_last_source_file.
11275 (scan_xcoff_symtab): Use set_last_source_file.
11276
11277 2013-01-21 Tom Tromey <tromey@redhat.com>
11278
11279 * symtab.c (struct demangled_name_entry) <mangled>: Now const.
11280 (symbol_set_names): Remove casts. Handle field const-ness.
11281
11282 2013-01-21 Tom Tromey <tromey@redhat.com>
11283
11284 * dwarf2read.c (new_symbol_full): Remove cast.
11285 * symtab.c (symbol_set_demangled_name): Make 'name' const.
11286 * symtab.h (symbol_set_demangled_name): Update.
11287
11288 2013-01-21 Tom Tromey <tromey@redhat.com>
11289
11290 * main.c (captured_main): Call bfd_init.
11291
11292 2013-01-21 Tom Tromey <tromey@redhat.com>
11293
11294 * gnu-v2-abi.c (_initialize_gnu_v2_abi): Don't set default ABI.
11295 * gnu-v3-abi.c (_initialize_gnu_v3_abi): Set default ABI.
11296 * minsyms.c (install_minimal_symbols): Don't check for _Z symbols.
11297 * NEWS: Update.
11298
11299 2013-01-21 Jan Kratochvil <jan.kratochvil@redhat.com>
11300
11301 * symmisc.c (maintenance_print_msymbols): Check also ST_DEV.
11302
11303 2013-01-21 Jan Kratochvil <jan.kratochvil@redhat.com>
11304
11305 Fix gdb.fortran/common-block.exp crash in PIE mode.
11306 * dwarf2read.c (new_symbol_full) <DW_TAG_common_block>: Use
11307 LOC_COMMON_BLOCK.
11308 * f-valprint.c (info_common_command_for_block): Expect
11309 LOC_COMMON_BLOCK in gdb_assert.
11310 * symtab.h (struct general_symbol_info): Update comment for the
11311 common_block member.
11312 (domain_enum): Extend comment for the COMMON_BLOCK_DOMAIN member.
11313 (enum address_class): New member LOC_COMMON_BLOCK.
11314
11315 2013-01-18 David Blaikie <dblaikie@gmail.com>
11316
11317 * MAINTAINERS (Write After Approval): Add "David Blaikie".
11318
11319 2013-01-18 Tom Tromey <tromey@redhat.com>
11320
11321 PR c++/14999:
11322 * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>:
11323 Call require_rvalue.
11324
11325 2013-01-18 Yao Qi <yao@codesourcery.com>
11326
11327 * dbxread.c (dbx_psymtab_to_symtab): Delete the declaration.
11328 (dbx_read_symtab): New declaration.
11329 (dbx_psymtab_to_symtab): Delete.
11330 (dbx_read_symtab): Rename from dbx_psymtab_to_symtab.
11331 Rename parameter PST to SELF. Exchanged two parameters.
11332 (start_psymtab): Caller update.
11333 * dwarf2read.c (dwarf2_psymtab_to_symtab): Delete the declaration.
11334 (dwarf2_read_symtab): New declaration.
11335 (dwarf2_psymtab_to_symtab): Delete.
11336 (dwarf2_read_symtab): Rename from dwarf2_psymtab_to_symtab.
11337 Rename parameter PST to SELF. Exchanged two parameters.
11338 (create_partial_symtab): Caller update.
11339 * mdebugread.c (mdebug_psymtab_to_symtab): Delete.
11340 (mdebug_read_symtab): Rename from mdebug_psymtab_to_symtab.
11341 Rename parameter PST to SELF. Exchanged two parameters.
11342 (parse_partial_symbols, new_psymtab): Caller update.
11343 * psympriv.h (struct partial_symtab) <read_symtab>: Exchange
11344 two parameters.
11345 * psymtab.c (psymtab_to_symtab): Caller update.
11346 * xcoffread.c (xcoff_psymtab_to_symtab): Delete.
11347 (xcoff_read_symtab): Rename from xcoff_psymtab_to_symtab.
11348 Rename parameter PST to SELF. Exchanged two parameters.
11349 (xcoff_start_psymtab): Caller update.
11350
11351 2013-01-18 Yao Qi <yao@codesourcery.com>
11352
11353 * infrun.c (proceed): Rename local variable 'oneproc' to
11354 'force_step'.
11355
11356 2013-01-17 Doug Evans <dje@google.com>
11357
11358 * dwarf2read.c (dw2_build_type_unit_groups_reader): Delete.
11359 (dw2_build_type_unit_groups): Delete. All uses updated.
11360
11361 * symtab.h (struct symbol_search): Add comment.
11362
11363 2013-01-17 Jan Kratochvil <jan.kratochvil@redhat.com>
11364
11365 * symtab.c (compare_filenames_for_search): New comment for
11366 HAS_DRIVE_SPEC.
11367
11368 2013-01-17 Tom Tromey <tromey@redhat.com>
11369
11370 * cp-abi.c (cp_abi_completer): Fix typo in assignment.
11371
11372 2013-01-17 Jan Kratochvil <jan.kratochvil@redhat.com>
11373
11374 * symtab.c (iterate_over_some_symtabs): New variable cleanups,
11375 initialize it by existing make_cleanup. Call new do_cleanups.
11376
11377 2013-01-17 Tom Tromey <tromey@redhat.com>
11378
11379 * cp-abi.c (cp_abi_completer): New function.
11380 (_initialize_cp_abi): Set completer for "set cp-abi".
11381
11382 2013-01-17 Tom Tromey <tromey@redhat.com>
11383
11384 * mem-break.c: Remove obsolete comment.
11385 * bfin-tdep.c (bfin_breakpoint_from_pc): Fix comment.
11386
11387 2012-01-17 Sanjoy Das <sanjoy@playingwithpointers.com>
11388
11389 * jit.c (jit_reader_load_command): Interpret the jit reader name
11390 as an absolute path if it begins with a forward slash.
11391
11392 2012-01-17 Sanjoy Das <sanjoy@playingwithpointers.com>
11393
11394 PR gdb/14550
11395
11396 * jit.c (finalize_symtab): Ensure that only the global block has a
11397 NULL superblock.
11398
11399 2013-01-17 Pedro Alves <palves@redhat.com>
11400
11401 * acinclude.m4: Include ../config/plugins.m4,
11402 ../config/largefile.m4 and ../config/lead-dot.m4. Add comments.
11403 * Makefile.in (aclocal_m4_deps): Update.
11404 * aclocal.m4: Renegerate.
11405
11406 2013-01-16 Doug Evans <dje@google.com>
11407
11408 * contrib/cc-with-tweaks.sh: Add references to Fission docs.
11409
11410 2013-01-16 Pedro Alves <palves@redhat.com>
11411 Tom Tromey <tromey@redhat.com>
11412
11413 PR cli/7221:
11414 * NEWS: Add "catch signal".
11415 * breakpoint.c (base_breakpoint_ops): No longer static.
11416 (bpstat_explains_signal): New function.
11417 (init_catchpoint): No longer static.
11418 (base_breakpoint_explains_signal): New function.
11419 (base_breakpoint_ops): Initialize new field.
11420 * breakpoint.h (enum bpstat_signal_value): New.
11421 (struct breakpoint_ops) <explains_signal>: New field.
11422 (bpstat_explains_signal): Remove macro, declare as function.
11423 (base_breakpoint_ops, init_catchpoint): Declare.
11424 * break-catch-sig.c: New file.
11425 * inferior.h (signal_catch_update): Declare.
11426 * infrun.c (signal_catch): New global.
11427 (handle_syscall_event): Update for change to
11428 bpstat_explains_signal.
11429 (handle_inferior_event): Likewise. Always handle random signals
11430 via bpstats.
11431 (signal_cache_update): Check signal_catch.
11432 (signal_catch_update): New function.
11433 (_initialize_infrun): Initialize signal_catch.
11434 * Makefile.in (SFILES): Add break-catch-sig.c.
11435 (COMMON_OBS): Add break-catch-sig.o.
11436
11437 2013-01-16 Tom Tromey <tromey@redhat.com>
11438
11439 * breakpoint.c (print_one_catch_fork, print_one_catch_vfork)
11440 (print_one_catch_solib, print_one_catch_syscall)
11441 (print_one_catch_exec, print_one_exception_catchpoint): Emit
11442 "catch-type".
11443
11444 2013-01-16 Yao Qi <yao@codesourcery.com>
11445
11446 * printcmd.c (current_display_number): Make it static.
11447
11448 2013-01-16 Yao Qi <yao@codesourcery.com>
11449
11450 * infcmd.c (step_once): Don't check '!single_inst' as it was
11451 checked before.
11452
11453 2013-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
11454
11455 * dwarf2read.c (psymtab_include_file_name): Extend the function comment.
11456
11457 2013-01-14 Tom Tromey <tromey@redhat.com>
11458
11459 * cli/cli-decode.c (add_setshow_string_noescape_cmd): Return the
11460 set command.
11461 * command.h (add_setshow_string_noescape_cmd): Update.
11462 * corefile.c (set_gnutarget_command): Remove trailing whitespace.
11463 (complete_set_gnutarget): New function.
11464 (_initialize_core): Set the "set gnutarget" completer.
11465
11466 2013-01-14 Tom Tromey <tromey@redhat.com>
11467
11468 PR symtab/14442:
11469 * c-typeprint.c (cp_type_print_method_args): Handle 'restrict'.
11470 (c_type_print_modifier): Likewise.
11471 * dwarf2read.c (read_tag_restrict_type): New function.
11472 (read_type_die_1): Handle DW_TAG_restrict_type.
11473 * gdbtypes.c (make_restrict_type): New function.
11474 (recursive_dump_type): Handle TYPE_RESTRICT.
11475 * gdbtypes.h (enum type_flag_values): Renumber.
11476 (enum type_instance_flag_value): Add
11477 TYPE_INSTANCE_FLAG_RESTRICT.
11478 (TYPE_RESTRICT): New macro.
11479 (make_restrict_type): Declare.
11480
11481 2013-01-14 Tom Tromey <tromey@redhat.com>
11482
11483 PR symtab/14931:
11484 * psymtab.c (struct psymtab_state): New.
11485 (discard_psymtabs_upto, make_cleanup_discard_psymtabs): New
11486 functions.
11487 * psympriv.h (make_cleanup_discard_psymtabs): Declare.
11488 * dwarf2read.c (dwarf2_build_psymtabs): Catch exceptions.
11489
11490 2013-01-14 Richard Sharman <richard_sharman@mitel.com>
11491 Pedro Alves <palves@redhat.com>
11492
11493 PR remote/14786
11494
11495 * remote.c (remote_threads_info): Make a copy of the reply from
11496 qfThreadInfo and use that instead of rs->buf.
11497
11498 2013-01-14 Yao Qi <yao@codesourcery.com>
11499
11500 * dbxread.c (dbx_psymtab_to_symtab_1): Don't check PST is NULL.
11501 (dbx_psymtab_to_symtab): Likewise.
11502 * dwarf2read.c (dwarf2_psymtab_to_symtab): Likewise.
11503 * mdebugread.c (mdebug_psymtab_to_symtab): Likewise.
11504 * xcoffread.c (xcoff_psymtab_to_symtab_1): Likewise.
11505
11506 2013-01-13 Jan Kratochvil <jan.kratochvil@redhat.com>
11507
11508 * parse.c (parse_exp_in_context): New variable inner_chain. Call
11509 make_cleanup_restore_current_language. Call set_language. Move
11510 OLD_CHAIN and INNER_CHAIN cleanups.
11511 * utils.c (do_restore_current_language)
11512 (make_cleanup_restore_current_language): New functions.
11513 * utils.h (make_cleanup_restore_current_language): New declaration.
11514
11515 2013-01-13 Jan Kratochvil <jan.kratochvil@redhat.com>
11516
11517 * source.c (symtab_to_fullname): Apply rewrite_source_path also for
11518 non-existing files.
11519
11520 * source.c (symtab_to_fullname): Do not prepend DIRNAME for
11521 non-existing files if FILENAME is already absolute.
11522
11523 2013-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
11524
11525 * macrocmd.c (macro_inform_no_debuginfo): Use puts_filtered instead of
11526 fputs_filtered. Append trailing newline.
11527
11528 2013-01-11 Yao Qi <yao@codesourcery.com>
11529 Stan Shebs <stan@codesourcery.com>
11530
11531 * psymtab.c (init_psymbol_list): Clarify the comment.
11532
11533 2013-01-11 Yao Qi <yao@codesourcery.com>
11534
11535 * breakpoint.c (print_one_breakpoint_location): Remove dead code.
11536 (update_dprintf_command_list): Assert that 'printf_line' is
11537 non-null. Remove condition check.
11538
11539 2013-01-10 Jan Kratochvil <jan.kratochvil@redhat.com>
11540
11541 Code cleanup.
11542 * psymtab.c (psymtab_to_fullname, psymtab_to_fullname): Make the return
11543 type const char *.
11544 * tui/tui-source.c (tui_source_is_displayed): Make the parameter fname
11545 const char *.
11546 * tui/tui-source.h (tui_source_is_displayed): Likewise.
11547
11548 2013-01-09 Anthony Green <green@moxielogic.com>
11549
11550 * cp-abi.c (cplus_print_vtable): Don't return value from void
11551 function.
11552 * ada-lang.c (re_set_catch_assert): Ditto.
11553
11554 2013-01-09 Doug Evans <dje@google.com>
11555
11556 * symfile.h (quick_symbol_functions): Delete member
11557 pre_expand_symtabs_matching. All uses removed.
11558 * dwarf2read.c (dw2_lookup_symbol): Implement.
11559 (dw2_do_expand_symtabs_matching): Delete.
11560 (dw2_pre_expand_symtabs_matching): Delete.
11561 (struct dw2_symtab_iterator): New type.
11562 (dw2_symtab_iter_init, dw2_symtab_iter_next): New functions.
11563 (dw2_expand_symtabs_for_function): Rewrite.
11564 (dwarf2_gdb_index_functions): Update.
11565 * psymtab.c (pre_expand_symtabs_matching_psymtabs): Delete.
11566 (psym_functions): Update.
11567
11568 2013-01-09 Tom Tromey <tromey@redhat.com>
11569
11570 * config/pa/hpux.mh (NATDEPFILES): Remove somread.o.
11571 * configure: Rebuild.
11572 * configure.ac: Add somread.o to the build if BFD has SOM
11573 support.
11574 * somread.c: Include som/aout.h, not syms.h.
11575 (som_symtab_read): Use som_external_symbol_dictionary_record.
11576 Unpack records manually.
11577 (_initialize_somread): Declare.
11578
11579 2012-01-08 Mike Frysinger <vapier@gentoo.org>
11580
11581 * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx) [__x86_64__]:
11582 Cast return_address to 64bits.
11583
11584 2013-01-08 Hui Zhu <hui_zhu@mentor.com>
11585
11586 * printcmd.c: Remove define of function output_command.
11587 * tracepoint.c: Remove extern of function output_command.
11588 * valprint.h: (output_command): New extern.
11589
11590 2013-01-07 Tom Tromey <tromey@redhat.com>
11591
11592 * objc-lang.c (objc_emit_char, objc_printchar, objc_printstr):
11593 Remove.
11594 (objc_language_defn): Use c_printchar, c_printstr,
11595 c_emit_char.
11596
11597 2013-01-07 Tom Tromey <tromey@redhat.com>
11598
11599 PR cli/7719:
11600 * NEWS: Update.
11601 * ada-valprint.c (printstr, print_field_values): Remove
11602 "inspect_it" code.
11603 * cp-valprint.c (cp_print_value_fields): Remove "inspect_it"
11604 code.
11605 * jv-valprint.c (java_print_value_fields): Remove "inspect_it"
11606 code.
11607 * m2-lang.c (m2_printstr): Remove "inspect_it" code.
11608 * main.c (captured_main): Remove "epoch" argument.
11609 * objc-lang.c (objc_printstr): Remove "inspect_it" code.
11610 * p-lang.c (pascal_printstr): Remove "inspect_it" code.
11611 * p-valprint.c (pascal_object_print_value_fields): Remove
11612 "inspect_it" code.
11613 * printcmd.c (print_command_1): Remove 'inspect' argument.
11614 (print_command, call_command): Update.
11615 (inspect_command): Remove.
11616 (_initialize_printcmd): Make "inspect" an alias for "print".
11617 * top.c (epoch_interface): Remove.
11618 * top.h (epoch_interface): Remove.
11619 * valprint.c (user_print_options): Update.
11620 (print_converted_chars_to_obstack): Remove "inspect_it" code.
11621 * valprint.h (struct value_print_options) <inspect_it>: Remove
11622 field.
11623
11624 2013-01-04 Tom Tromey <tromey@redhat.com>
11625
11626 * valprint.h (read_string): Add 'extern'.
11627
11628 2013-01-07 Joel Brobecker <brobecker@adacore.com>
11629
11630 * darwin-nat.c: Fix typo in TASK_DYLD_INFO_COUNT macro test
11631 used to decide whether to define darwin_read_dyld_info or not.
11632
11633 2013-01-03 Pierre Muller <muller@sourceware.org>
11634
11635 * main.c (relocate_gdb_directory): Avoid calling stat function
11636 if DIR is empty.
11637
11638 2013-01-03 Yao Qi <yao@codesourcery.com>
11639
11640 * psymtab.c (fixup_psymbol_section): Update declaration.
11641 (fixup_psymbol_section): Remove code returning value.
11642
11643 2013-01-03 Yao Qi <yao@codesourcery.com>
11644
11645 * symtab.h: Remove some out of date comments.
11646 (enum exception_event_kind): Move it ...
11647 * breakpoint.c: ... here.
11648
11649 2013-01-02 Iain Sandoe <developer@sandoe-acoustics.co.uk>
11650
11651 PR gdb/14405
11652 * darwin-nat.c (darwin_read_dyld_info): Only build if
11653 TASK_DYLD_INFO_COUNT is defined.
11654 (darwin_xfer_partial): Call darwin_read_dyld_info only if
11655 TASK_DYLD_INFO_COUNT is defined.
11656
11657 2013-01-02 Tom Tromey <tromey@redhat.com>
11658
11659 * symfile.h (struct ecoff_debug_hack): Remove.
11660 * objfiles.c: Don't include mdebugread.h.
11661
11662 2013-01-02 Tom Tromey <tromey@redhat.com>
11663
11664 * config/i386/darwin.mh (NATDEPFILES): Remove machoread.o.
11665 * configure.ac: Check for Mach-O support in BFD. Update
11666 CONFIG_OBS.
11667 * configure: Rebuild.
11668
11669 2013-01-02 Tom Tromey <tromey@redhat.com>
11670
11671 * acinclude.m4 (GDB_AC_CHECK_BFD): New macro.
11672 * configure.ac: Use GDB_AC_CHECK_BFD.
11673 * configure: Rebuild.
11674
11675 2013-01-01 Maxim Kuvyrkov <maxim.kuvyrkov@gmail.com>
11676
11677 * MAINTAINERS: Update my email.
11678
11679 2013-01-01 Joel Brobecker <brobecker@adacore.com>
11680
11681 * cli/cli-script.h (make_cleanup_free_command_lines): Make extern.
11682
11683 2013-01-01 Joel Brobecker <brobecker@adacore.com>
11684
11685 * rs6000-nat.c (bss_data_overlap): New function.
11686 (vmap_symtab): Use it to adjust the .bss section's offset.
11687
11688 2013-01-01 Joel Brobecker <brobecker@adacore.com>
11689
11690 Update year range in copyright notice of all files.
11691
11692 2013-01-01, 13 Joel Brobecker <brobecker@adacore.com>
11693
11694 * top.c (print_gdb_version): Update copyright year.
11695
11696 For older changes see ChangeLog-2012.
11697 \f
11698 Local Variables:
11699 mode: change-log
11700 left-margin: 8
11701 fill-column: 74
11702 version-control: never
11703 coding: utf-8
11704 End:
This page took 0.277607 seconds and 4 git commands to generate.