22de9aaf5d862e5d2b8e6321c145d9a782e25036
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2013-11-08 Tom Tromey <tromey@redhat.com>
2
3 * configure: Rebuild.
4 * configure.ac: Remove mentions of HAVE_MULTIPLE_PROC_FDS.
5
6 2013-11-08 Tom Tromey <tromey@redhat.com>
7
8 * configure, config.in: Rebuild.
9 * configure.ac: Remove unused configury.
10
11 2013-11-08 Tom Tromey <tromey@redhat.com>
12
13 * m32c-tdep.c: Use gdb_string.h.
14
15 2013-11-08 Tom Tromey <tromey@redhat.com>
16
17 * configure, config.in: Rebuild.
18 * configure.ac: Remove all link.h-related checks.
19
20 2013-11-08 Tom Tromey <tromey@redhat.com>
21
22 * acinclude.m4: Include common.m4.
23 * common/common.m4: New file.
24 * configure, config.in: Rebuild.
25 * configure.ac: Use GDB_AC_COMMON.
26
27 2013-11-08 Doug Evans <dje@google.com>
28
29 * NEWS: Mention that "set debug symtab-create" now accepts a
30 verbosity level.
31 * buildsym.c (end_symtab_from_static_block): Call set_symtab_primary
32 to set the symtab's primary flag.
33 * jit.c (finalize_symtab): Ditto.
34 * mdebugread.c (psymtab_to_symtab_1): Ditto.
35 * symfile.c (allocate_symtab): Only print debugging messages for
36 symtab_create_debug levels 2 and higher.
37 * symtab.c (symtab_create_debug): Change type to unsigned int.
38 (set_symtab_primary): New function.
39 (_initialize_symtab): Change "set debug symtab-create" to a
40 zuinteger option.
41 * symtab.h (set_symtab_primary): Declare.
42 (symtab_create_debug): Update decl.
43
44 2013-11-08 Tom Tromey <tromey@redhat.com>
45
46 * aix-thread.c (aix_thread_detach): Update.
47 * corelow.c (core_detach): Update.
48 * darwin-nat.c (darwin_detach): Update.
49 * dec-thread.c (dec_thread_detach): Update.
50 * gnu-nat.c (gnu_detach): Update.
51 * go32-nat.c (go32_detach): Update.
52 * inf-ptrace.c (inf_ptrace_detach): Update.
53 * inf-ttrace.c (inf_ttrace_detach): Update.
54 * linux-fork.c (linux_fork_detach): Update.
55 * linux-fork.h (linux_fork_detach): Update.
56 * linux-nat.c (linux_nat_detach): Update. Introduce "tem"
57 local for const-correctness.
58 * linux-thread-db.c (thread_db_detach): Update.
59 * monitor.c (monitor_detach): Update.
60 * nto-procfs.c (procfs_detach): Update.
61 * procfs.c (procfs_detach): Update.
62 * record.c (record_detach): Update.
63 * record.h (record_detach): Update.
64 * remote-m32r-sdi.c (m32r_detach): Update.
65 * remote-mips.c (mips_detach): Update.
66 * remote-sim.c (gdbsim_detach): Update.
67 * remote.c (remote_detach_1, remote_detach)
68 (extended_remote_detach): Update.
69 * sol-thread.c (sol_thread_detach): Update.
70 * target.c (target_detach): Make "args" const.
71 (init_dummy_target): Update.
72 * target.h (struct target_ops) <to_detach>: Make argument const.
73 (target_detach): Likewise.
74 * windows-nat.c (windows_detach): Update.
75
76 2013-11-07 Doug Evans <dje@google.com>
77
78 PR 11786
79 * solib-svr4.c (svr4_exec_displacement): Ignore filesz, memsz, flags
80 and align fields for PT_GNU_RELRO segments.
81
82 2013-11-07 Phil Muldoon <pmuldoon@redhat.com>
83
84 PR python/15747
85 * python/py-cmd.c: Add COMPLETE_EXPRESSION constant.
86
87 2013-11-07 Phil Muldoon <pmuldoon@redhat.com>
88
89 * NEWS: Document Python temporary breakpoint support.
90 * python/py-breakpoint.c (bppy_get_temporary): New function.
91 (bppy_init): New keyword: temporary. Parse it and set breakpoint
92 to temporary if True.
93
94 2013-11-07 Jose E. Marchesi <jose.marchesi@oracle.com>
95
96 * sparc-tdep.c (sparc_analyze_control_transfer): Assertion
97 removed to allow analyzing unconditional branch instructions
98 with PC-relative offsets of zero.
99
100 2013-11-07 Yao Qi <yao@codesourcery.com>
101
102 * mi/mi-cmd-var.c: Include "language.h".
103 (mi_cmd_var_info_expression): Get language name from
104 language_defn.
105 * varobj.c (varobj_language_string): Remove.
106 (variable_language): Remove declaration.
107 (languages): Remove.
108 (varobj_get_language): Change the type of return value.
109 (variable_language): Remove.
110 * varobj.h (enum varobj_languages): Remove.
111 (varobj_language_string): Remove declaration.
112 (varobj_get_language): Update declaration.
113
114 2013-11-07 Yao Qi <yao@codesourcery.com>
115
116 * language.h (struct language_defn) <la_natural_name>: New
117 field.
118 * ada-lang.c (ada_language_defn): Initialize field
119 'la_natural_name'.
120 * c-lang.c (c_language_defn): Likewise.
121 (cplus_language_defn, asm_language_defn): Likewise.
122 * d-lang.c (d_language_defn): Likewise.
123 * f-lang.c (f_language_defn): Likewise.
124 * go-lang.c (go_language_defn): Likewise.
125 * jv-lang.c (java_language_defn): Likewise.
126 * language.c (unknown_language_defn ): Likewise.
127 (auto_language_defn): Likewise.
128 * m2-lang.c (m2_language_defn): Likewise.
129 * objc-lang.c (objc_language_defn): Likewise.
130 * opencl-lang.c (opencl_language_defn): Likewise.
131 * p-lang.c (pascal_language_defn): Likewise.
132
133 2013-11-07 Yao Qi <yao@codesourcery.com>
134
135 * language.c (language_str): Return const char *.
136 (add_language): Add const to 'language_names'
137 * language.h (struct language_defn) <la_name>: Add const.
138 (language_str: Update declaration.
139
140 2013-11-06 Andreas Arnez <arnez@linux.vnet.ibm.com>
141
142 * s390-linux-nat.c (s390_read_description): Consider the TE field
143 in the HWCAP for determining 'have_regset_tdb'.
144
145 2013-11-06 Will Newton <will.newton@linaro.org>
146
147 PR gdb/12866
148 * dwarf2read.c (skip_one_die): Sanity check DW_AT_sibling
149 values. (read_partial_die): Likewise.
150
151 2013-11-06 Muhammad Bilal <mbilal@codesourcery.com>
152
153 PR cli/16122
154 * top.c (command_line_input): Unify interactivity tests to use
155 input_from_terminal_p.
156 * event-top.c (command_line_handler): Likewise.
157
158 2013-11-06 Yao Qi <yao@codesourcery.com>
159
160 * Makefile.in (check-perf): New target.
161
162 2013-11-05 Will Newton <will.newton@linaro.org>
163
164 PR gdb/7670
165 * arm-tdep.c (print_fpu_flags): Use filtered output routines.
166 (arm_print_float_info): Likewise.
167
168 2013-11-04 Anton Blanchard <anton@samba.org>
169
170 * target.c (memory_xfer_partial): Cap write to 4KB.
171
172 2013-11-01 Tiago Stürmer Daitx <tdaitx@linux.vnet.ibm.com>
173
174 * breakpoint.c (create_longjmp_master_breakpoint): Allow libc
175 probe scan even when the arch provides no get_longjmp_target.
176
177 2013-10-31 Pedro Alves <palves@redhat.com>
178
179 * infrun.c (handle_syscall_event): Don't set or clear stop_signal.
180 (handle_inferior_event) <TARGET_WAITKIND_FORKED,
181 TARGET_WAITKIND_VFORKED>: Don't set stop_signal to
182 GDB_SIGNAL_TRAP, or clear it. Pass GDB_SIGNAL_0 to
183 bpstat_explains signal, instead of GDB_SIGNAL_TRAP.
184 <bpstat handling>: If the bpstat chain wants the signal to be
185 hidden, then set stop_signal to GDB_SIGNAL_0 instead of
186 GDB_SIGNAL_TRAP.
187
188 2013-10-31 Andrew Burgess <aburgess@broadcom.com>
189
190 * breakpoint.c (update_watchpoint): Update error message and add
191 an additional error message.
192
193 2013-10-30 Andreas Arnez <arnez@linux.vnet.ibm.com>
194
195 * s390-tdep.h: Rename to...
196 * s390-linux-tdep.h: ...here.
197 * s390-tdep.c: Rename to...
198 * s390-linux-tdep.c: ...here. Adjust #include.
199 * s390-nat.c: Rename to...
200 * s390-linux-nat.c: ...here. Adjust #include.
201 * config/s390/s390.mh: Rename to...
202 * config/s390/linux.mh: ...here. Reflect rename s390-nat.o ->
203 s390-linux-nat.o.
204 * configure.host: Reflect host rename "s390" -> "linux".
205 * configure.tgt: Reflect rename s390-tdep.o -> s390-linux-tdep.o.
206 * Makefile.in (ALL_TARGET_OBS): Likewise.
207 (HFILES_NO_SRCDIR): Reflect rename s390-tdep.h ->
208 s390-linux-tdep.h.
209 (ALLDEPFILES): Reflect rename of .c files.
210
211 2013-10-30 Andreas Arnez <arnez@linux.vnet.ibm.com>
212
213 * s390-nat.c: Whitespace cleanup.
214 * s390-tdep.c: Likewise.
215 * s390-tdep.h: Remove empty line at end of file.
216
217 2013-10-30 Maciej W. Rozycki <macro@codesourcery.com>
218
219 * linux-tdep.c (linux_corefile_thread_callback): Preinitialize
220 siginfo_size.
221
222 2013-10-29 Tom Tromey <tromey@redhat.com>
223
224 * utils.c (reg): Move undefinition...
225 * gdb_curses.h: ... here. Update comment to mention AIX.
226
227 2013-10-29 Nicolas Blanc <nicolas.blanc@intel.com>
228
229 * exec.h (add_target_sections_of_objfile): New declaration.
230 * exec.c (add_target_sections_of_objfile): New function.
231 * symfile.c (add_symbol_file_command): Update current target sections.
232 (remove_symbol_file_command): New command.
233 (symfile_free_objfile): New function.
234 (_initialize_symfile): Register observer for free_objfile events.
235 * NEWS: Add description of the remove-symbol-file command.
236 * breakpoint.c (disable_breakpoints_in_freed_objfile): New function.
237 * objfiles.c (free_objfile): Notify free_objfile.
238 (is_addr_in_objfile): New function.
239 * objfiles.h (is_addr_in_objfile): New declaration.
240 * printcmd.c (clear_dangling_display_expressions): Act upon free_objfile
241 events instead of solib_unloaded events.
242 (_initialize_printcmd): Register observer for free_objfile instead
243 of solib_unloaded notifications.
244 * solib.c (remove_user_added_objfile): New function.
245 (_initialize_symfile): Add remove-symbol-file.
246
247 2013-10-29 Andrew Burgess <aburgess@broadcom.com>
248
249 * infcmd.c (default_print_one_register_info): Use val_print to
250 print all values even optimized out or unavailable ones. Don't
251 try to print a raw form of optimized out or unavailable values.
252
253 2013-10-29 Yao Qi <yao@codesourcery.com>
254
255 * auto-load.c (auto_load_pspace_data_cleanup): Get data from
256 parameter 'arg' instead of from program_space_data.
257 * objfiles.c (objfiles_pspace_data_cleanup): Likewise.
258 * solib-darwin.c (darwin_pspace_data_cleanup): Likewise.
259 * solib-dsbt.c (dsbt_pspace_data_cleanup): Likewise.
260 * solib-svr4.c (svr4_pspace_data_cleanup): Likewise.
261 * inflow.c (inflow_inferior_data_cleanup): Get data from
262 parameter 'arg' instead of inferior_data.
263 * registry.h: Add comments.
264
265 2013-10-28 Pedro Alves <palves@redhat.com>
266
267 * breakpoint.c (watchpoints_triggered)
268 <!target_stopped_data_address>: Hardcode return 1.
269
270 2013-10-28 Pedro Alves <palves@redhat.com>
271
272 * infrun.c (process_event_stop_test): Remove unnecessary scoping
273 level and reindent.
274
275 2013-10-28 Pedro Alves <palves@redhat.com>
276
277 * infrun.c (process_event_stop_test): New function, factored out
278 from handle_inferior_event.
279 (handle_inferior_event): 'process_event_stop_test' is now a
280 function instead of a goto label -- adjust.
281
282 2013-10-28 Pedro Alves <palves@redhat.com>
283
284 * infrun.c (handle_inferior_event): Move process_event_stop_test
285 goto label to the else branch of the ecs->random_signal check,
286 along with FRAME and GDBARCH re-fetching.
287
288 2013-10-28 Pedro Alves <palves@redhat.com>
289
290 * infrun.c (switch_back_to_stepped_thread): New function, factored
291 out from handle_inferior_event.
292 (handle_inferior_event): Adjust to call
293 switch_back_to_stepped_thread. Call it also at the tail of the
294 random signal handling, and return, instead of also handling
295 random signals just before the stepping tests.
296
297 2013-10-28 Pedro Alves <palves@redhat.com>
298
299 * infrun.c (clear_stop_func): Delete.
300 (handle_inferior_event): Don't call clear_stop_func and don't
301 clear 'ecs->random_signal'.
302
303 2013-10-27 Yao Qi <yao@codesourcery.com>
304
305 * varobj.c (struct varobj_root) <lang>: Rename to 'lang_ops'.
306 (varobj_create, varobj_get_path_expr): Update.
307 (varobj_value_has_mutated, varobj_update): Likewise.
308 (create_child_with_value, new_root_variable): Likewise.
309 (number_of_children, name_of_variable): Likewise.
310 (value_of_child, my_value_of_variable): Likewise.
311 (varobj_value_is_changeable_p): Likewise.
312
313 2013-10-25 Yao Qi <yao@codesourcery.com>
314
315 * language.h (struct lang_varobj_ops): Declare.
316 (struct language_defn) <la_varobj_ops>: New field.
317 * ada-lang.c: Include "varobj.h"
318 (defn ada_language_defn): Initialize field 'la_varobj_ops' with
319 ada_varobj_ops.
320 * c-lang.c: Include "varobj.h"
321 (c_language_defn): Initialize field 'la_varobj_ops' with
322 c_varobj_ops.
323 (cplus_language_defn): Initialize field 'la_varobj_ops' with
324 cplus_varobj_ops.
325 (asm_language_defn): Initialize field 'la_varobj_ops' with
326 default_varobj_ops.
327 (minimal_language_defn): Likewise.
328 * d-lang.c (d_language_defn): Likewise.
329 * f-lang.c (f_language_defn): Likewise.
330 * go-lang.c (go_language_defn): Likewise.
331 * m2-lang.c (m2_language_defn): Likewise.
332 * objc-lang.c (objc_language_defn): Likewise.
333 * opencl-lang.c (opencl_language_defn): Likewise.
334 * p-lang.c (pascal_language_defn): Likewise.
335 * language.c (unknown_language_defn): Likewise.
336 (auto_language_defn): Likewise.
337 (local_language_defn): Likewise.
338 * jv-lang.c (java_language_defn): Initialize field
339 'la_varobj_ops' with java_varobj_ops.
340 * varobj.c (varobj_create): Update.
341 * varobj.h (default_varobj_ops): Define macro.
342
343 2013-10-25 Pedro Alves <palves@redhat.com>
344
345 * cp-valprint.c (cp_print_value_fields): No longer handle a NULL
346 static field value.
347 (cp_print_static_field): If the value is entirely optimized out,
348 print <optimized out> here.
349 * jv-valprint.c (java_print_value_fields): No longer handle a NULL
350 static field value.
351 * p-valprint.c (pascal_object_print_static_field): If the value is
352 entirely optimized out, print <optimized out> here.
353 * valops.c (do_search_struct_field)
354 (value_struct_elt_for_reference): No longer handle a NULL static
355 field value.
356 * value.c (value_static_field): Return an optimized out value
357 instead of NULL.
358
359 2013-10-25 Yao Qi <yao@codesourcery.com>
360
361 * remote.c (remote_traceframe_info): Return early if
362 traceframe is not selected.
363
364 2013-10-25 Yao Qi <yao@codesourcery.com>
365
366 * tracepoint.c (traceframe_fun): Remove.
367 (traceframe_sal): Remove.
368 (set_traceframe_context): Add local variables.
369
370 2013-10-25 Joel Brobecker <brobecker@adacore.com>
371
372 * varobj.h (struct lang_varobj_ops): Remove spaces between '*'
373 and parameter name.
374
375 2013-10-24 Maciej W. Rozycki <macro@codesourcery.com>
376
377 * linux-tdep.c (linux_corefile_thread_callback): Propagate any
378 failure from register information collection.
379
380 2013-10-24 Maciej W. Rozycki <macro@codesourcery.com>
381
382 * linux-tdep.c (linux_corefile_thread_data): Remove `num_notes'
383 member.
384 (linux_corefile_thread_callback): Update accordingly.
385 (linux_make_corefile_notes): Likewise.
386
387 2013-10-24 Pedro Alves <palves@redhat.com>
388
389 * NEWS (New options): Mention set/show startup-with-shell.
390 * config/alpha/nm-osf3.h (START_INFERIOR_TRAPS_EXPECTED): Set to 2
391 instead of 3.
392 * fork-child.c (fork_inferior, startup_inferior): Handle 'set
393 startup-with-shell'.
394 (show_startup_with_shell): New function.
395 (_initialize_fork_child): Register the set/show startup-with-shell
396 commands.
397 * inf-ptrace.c (inf_ptrace_create_inferior): Remove comment.
398 * inf-ttrace.c (inf_ttrace_him): Remove comment.
399 * procfs.c (procfs_init_inferior): Remove comment.
400 * infcmd.c (startup_with_shell): New global.
401 * inferior.h (startup_with_shell): Declare global.
402 (STARTUP_WITH_SHELL): Delete.
403 (START_INFERIOR_TRAPS_EXPECTED): Set to 1 by default instead of 2.
404
405 2013-10-23 Pedro Alves <palves@redhat.com>
406
407 * common/gdb_signals.h (gdb_signal_to_symbol_string): Declare.
408 * common/signals.c: Include "gdb_assert.h".
409 (signals): New field 'symbol'.
410 (SET): Use the 'symbol' parameter.
411 (gdb_signal_to_symbol_string): New function.
412 * infrun.c (handle_inferior_event) <random signal>: In debug
413 output, print the random signal enum as string in addition to its
414 number.
415 * target/waitstatus.c (target_waitstatus_to_string): Print the
416 signal's enum value as string instead of the (POSIX) signal name.
417
418 2013-10-23 Gary Benson <gbenson@redhat.com>
419
420 PR 16013
421 * common/linux-osdata.c (command_from_pid): Reduced size of cmd
422 from 32 to 18. Adjusted fscanf format string accordingly.
423 (Avoids leaving cmd unterminated.)
424 (print_sockets): Do not parse tlen, inode, sl, timeout, txq, rxq,
425 trun, retn or extra. (Avoids leaving extra unterminated.) Check
426 that local_address and remote_address will not overflow.
427 (linux_xfer_osdata_modules): Parse lines using strtok to avoid
428 leaving dependencies unterminated. Parse size as "%u" to match
429 definition.
430
431 2013-10-22 Pedro Alves <palves@redhat.com>
432
433 * infrun.c (handle_inferior_event) <thread hop>: Don't clear or
434 set ecs->random signal.
435
436 2013-10-22 Pedro Alves <palves@redhat.com>
437
438 * infrun.c (keep_going): Update comments.
439
440 2013-10-22 Pedro Alves <palves@redhat.com>
441
442 * remote.c (remote_parse_stop_reply) <'T'/'S'/'X' replies>: Map
443 invalid signal numbers to GDB_SIGNAL_UNKNOWN.
444
445 2013-10-22 Pedro Alves <palves@redhat.com>
446
447 * include/gdb/signals.def (TARGET_EXC_BAD_ACCESS): Rename to
448 GDB_EXC_BAD_ACCESS.
449 (TARGET_EXC_BAD_INSTRUCTION): Rename to GDB_EXC_BAD_INSTRUCTION.
450 (TARGET_EXC_ARITHMETIC): Rename to GDB_EXC_ARITHMETIC.
451 (TARGET_EXC_EMULATION): Rename to GDB_EXC_EMULATION.
452 (TARGET_EXC_SOFTWARE): Rename to GDB_EXC_SOFTWARE.
453 (TARGET_EXC_BREAKPOINT): Rename to GDB_EXC_BREAKPOINT.
454 (GDB_SIGNAL_LAST): Change description string.
455 * common/signals.c (gdb_signal_from_host, do_gdb_signal_to_host):
456 Adjust to signal renaming.
457 * darwin-nat.c (darwin_decode_message): Likewise.
458
459 2013-10-22 Jose E. Marchesi <jose.marchesi@oracle.com>
460
461 * MAINTAINERS (Write After Approval): Add myself to the list.
462
463 2013-10-18 Andrew Burgess <aburgess@broadcom.com>
464
465 * breakpoint.c (update_watchpoint): If hardware watchpoints are
466 forced off, downgrade them to software watchpoints if possible,
467 and error out if not possible.
468 (watch_command_1): Move watchpoint type selection closer to
469 watchpoint creation, and extend the comments.
470
471 2013-10-18 Pedro Alves <palves@redhat.com>
472
473 PR gdb/16062
474 * infrun.c (handle_inferior_event): Keep going if we got a random
475 signal we should not stop for, instead of falling through to the
476 step tests.
477
478 2013-10-18 Yao Qi <yao@codesourcery.com>
479
480 * c-varobj.c (cplus_number_of_children): Fix indentation.
481
482 2013-10-17 Tom Tromey <tromey@redhat.com>
483
484 PR gdb/15995:
485 * printcmd.c (printcmd): Call gdb_flush.
486
487 2013-10-17 Tom Tromey <tromey@redhat.com>
488
489 * elfread.c (struct elfinfo) <stabindexsect>: Remove.
490 (elf_locate_sections): Update.
491
492 2013-10-17 Yao Qi <yao@codesourcery.com>
493
494 * Makefile.in (HFILES_NO_SRCDIR): Remove ada-varobj.h.
495 * ada-varobj.c: Remove the include of ada-varobj.h.
496 (ada_varobj_get_number_of_children): Declare.
497 (ada_varobj_get_name_of_child): Make it static.
498 (ada_varobj_get_path_expr_of_child): Likewise.
499 (ada_varobj_get_value_of_child): Likewise.
500 (ada_varobj_get_type_of_child): Likewise.
501 (ada_varobj_get_value_of_array_variable): Likewise.
502 * ada-varobj.h: Remove.
503
504 2013-10-17 Yao Qi <yao@codesourcery.com>
505
506 * Makefile.in (SFILES): Add c-varobj.c and jv-varobj.c.
507 (COMMON_OBS): Add c-varobj.o and jv-varobj.o.
508 * ada-varobj.c: Include "varobj.h".
509 (ada_number_of_children): New. Moved from varobj.c.
510 (ada_name_of_variable, ada_name_of_child): Likewise.
511 (ada_path_expr_of_child, ada_value_of_child): Likewise.
512 (ada_type_of_child, ada_value_of_variable): Likewise.
513 (ada_value_is_changeable_p, ada_value_has_mutated): Likewise.
514 (ada_varobj_ops): New.
515 * c-varobj.c, jv-varobj.c: New file. Moved from varobj.c.
516 * gdbtypes.c (get_target_type): New. Moved from varobj.c.
517 * gdbtypes.h (get_target_type): Declare.
518 * varobj.c: Remove the inclusion of "ada-varobj.h" and
519 "ada-lang.h".
520 (ANONYMOUS_STRUCT_NAME): Move it to c-varobj.c.
521 (ANONYMOUS_UNION_NAME): Likewise.
522 (get_type, get_value_type, get_target_type): Remove declarations.
523 (value_get_print_value, varobj_value_get_print_value): Likewise.
524 (c_number_of_children, c_name_of_variable): Likewise.
525 (c_name_of_child, c_path_expr_of_child): Likewise.
526 (c_value_of_child, c_type_of_child): Likewise.
527 (c_value_of_variable, cplus_number_of_children): Likewise.
528 (cplus_class_num_children, cplus_name_of_variable): Likewise.
529 (cplus_name_of_child, cplus_path_expr_of_child): Likewise.
530 (cplus_value_of_child, cplus_type_of_child): Likewise.
531 (cplus_value_of_variable, java_number_of_children): Likewise.
532 (java_name_of_variable, java_name_of_child): Likewise.
533 (java_path_expr_of_child, java_value_of_child): Likewise.
534 (java_type_of_child, java_value_of_variable): Likewise.
535 (ada_number_of_children, ada_name_of_variable): Likewise.
536 (ada_name_of_child, ada_path_expr_of_child): Likewise.
537 (ada_value_of_child, ada_type_of_child): Likewise.
538 (ada_value_of_variable, ada_value_is_changeable_p): Likewise.
539 (ada_value_has_mutated): Likewise.
540 (struct language_specific): Move it to varobj.h.
541 (CPLUS_FAKE_CHILD): Move it to varobj.h.
542 (restrict_range): Rename it varobj_restrict_range. Make it extern.
543 Callers update.
544 (get_path_expr_parent): Rename it to varobj_get_path_expr_parent.
545 Make it extern.
546 (is_anonymous_child): Move it to c-varobj.c and rename to
547 varobj_is_anonymous_child. Caller update.
548 (get_type): Move it to c-varobj.c.
549 (get_value_type): Rename it varobj_get_value_type. Make it
550 extern.
551 (get_target_type): Move it gdbtypes.c.
552 (varobj_formatted_print_options): New function.
553 (value_get_print_value): Rename it to
554 varobj_value_get_print_value and make it extern.
555 (varobj_value_is_changeable_p): Make it extern.
556 (adjust_value_for_child_access): Move it to c-varobj.c.
557 (default_value_is_changeable_p): Rename it to
558 varobj_default_value_is_changeable_p. Make it extern.
559 (c_number_of_children, c_name_of_variable): Move it to c-varobj.c
560 (c_name_of_child, c_path_expr_of_child): Likewise.
561 (c_value_of_child, c_type_of_child): Likewise.
562 (c_value_of_variable, cplus_number_of_children): Likewise.
563 (cplus_class_num_children, cplus_name_of_variable): Likewise.
564 (cplus_name_of_child, cplus_path_expr_of_child): Likewise.
565 (cplus_value_of_child, cplus_type_of_child): Likewise.
566 (cplus_value_of_variable): Likewise.
567 (java_number_of_children, java_name_of_variable): Move it to jv-varobj.c.
568 (java_name_of_child, java_path_expr_of_child): Likewise.
569 (java_value_of_child, java_type_of_child): Likewise.
570 (java_value_of_variable): Likewise.
571 (ada_number_of_children, ada_name_of_variable): Move it to ada-varobj.c.
572 (ada_name_of_child, ada_path_expr_of_child): Likewise.
573 (ada_value_of_child, ada_type_of_child): Likewise.
574 (ada_value_of_variable, ada_value_is_changeable_p): Likewise.
575 (ada_value_has_mutated): Likewise.
576 * varobj.h (CPLUS_FAKE_CHILD): New macro, moved from varobj.c.
577 (struct lang_varobj_ops): New. Renamed by 'struct language_specific'.
578 (c_varobj_ops, cplus_varobj_ops): Declare.
579 (java_varobj_ops, ada_varobj_ops): Declare.
580 (varobj_default_value_is_changeable_p): Declare.
581 (varobj_value_is_changeable_p): Declare.
582 (varobj_get_value_type, varobj_is_anonymous_child): Declare.
583 (varobj_get_path_expr_parent): Declare.
584 (varobj_value_get_print_value): Declare.
585 (varobj_formatted_print_options): Declare.
586 (varobj_restrict_range): Declare.
587
588 2013-10-17 Luis Machado <lgustavo@codesourcery.com>
589
590 * target/waitstatus.h (target_waitkind): Remove spurious
591 character from the comments.
592
593 2013-10-17 Joel Brobecker <brobecker@adacore.com>
594
595 * gdbarch.sh (get_longjmp_target): Add method documentation.
596 * gdbarch.h: Regenerate.
597
598 2013-10-16 Tom Tromey <tromey@redhat.com>
599
600 * dbxread.c (read_dbx_symtab) <bss_ext_symbol>: Remove unused
601 label.
602
603 2013-10-16 Luis Machado <lgustavo@codesourcery.com>
604
605 * gcore.in: Call GDB using the full path to the gcore script.
606 Error out if the GDB binary is not found.
607
608 2013-10-16 Sergio Durigan Junior <sergiodj@redhat.com>
609
610 PR gdb/16014
611 * dwarf2read.c (dw2_get_real_path): Remove unnecessary call to
612 sizeof.
613
614 2013-10-16 Sergio Durigan Junior <sergiodj@redhat.com>
615
616 PR gdb/16042
617 * target.c (target_disable_btrace): Fix invalid return value for
618 void function.
619 (target_teardown_btrace): Likewise.
620
621 2013-10-14 Yao Qi <yao@codesourcery.com>
622
623 * varobj.c (struct varobj): Move most of the fields to
624 varobj.h.
625 (struct varobj_dynamic): New struct.
626 (varobj_get_display_hint) [HAVE_PYTHON]: Adjust.
627 (varobj_has_more): Likewise.
628 (dynamic_varobj_has_child_method): Likewise.
629 (update_dynamic_varobj_children): Likewise.
630 (varobj_get_num_children): Likewise.
631 (varobj_list_children, varobj_pretty_printed_p): Likewise.
632 (install_new_value_visualizer): Likewise.
633 (install_new_value_visualizer, install_new_value): Likewise.
634 (varobj_update, new_variable, free_variable): Likewise.
635 (my_value_of_variable, value_get_print_value): Likewise.
636 (install_visualizer): Change the type of parameter 'var' to
637 'struct varobjd_dynamic *'. Callers update.
638 * varobj.h (struct varobj): Moved from varobj.c.
639 (struct varobj) <dynamic>: New field.
640
641 2013-10-13 Sandra Loosemore <sandra@codesourcery.com>
642
643 * nios2-tdep.c (nios2_reg_names): Use "sstatus" rather than "ba"
644 as the preferred name of r30.
645 * nios2-linux-tdep.c (reg_offsets): Likewise.
646 * features/nios2-cpu.xml: Likewise.
647 * features/nios2-linux.c: Regenerated.
648 * features/nios2.c: Regenerated.
649 * regformats/nios2-linux.dat: Regenerated.
650
651 2013-10-13 Jan Kratochvil <jan.kratochvil@redhat.com>
652
653 Canonicalize directories for EXEC_FILENAME.
654 * exec.c (exec_file_attach): Use gdb_realpath_keepfile for
655 exec_filename.
656 * utils.c (gdb_realpath_keepfile): New function.
657 * utils.h (gdb_realpath_keepfile): New declaration.
658
659 2013-10-11 Doug Evans <dje@google.com>
660
661 * Makefile.in (GDBFLAGS): New variable.
662 (run): New rule.
663
664 2013-10-11 Joel Brobecker <brobecker@adacore.com>
665
666 * NEWS: Add entry documenting the new "-catch-assert" and
667 "-catch-exception" GDB/MI commands.
668
669 2013-10-11 Joel Brobecker <brobecker@adacore.com>
670
671 * breakpoint.h (init_ada_exception_breakpoint): Add parameter
672 "enabled".
673 * breakpoint.c (init_ada_exception_breakpoint): Add parameter
674 "enabled". Set B->ENABLE_STATE accordingly.
675 * ada-lang.h (ada_exception_catchpoint_kind): Move here from
676 ada-lang.c.
677 (create_ada_exception_catchpoint): Add declaration.
678 * ada-lang.c (ada_exception_catchpoint_kind): Move to ada-lang.h.
679 (create_ada_exception_catchpoint): Make non-static. Add new
680 parameter "disabled". Use it in call to
681 init_ada_exception_breakpoint.
682 (catch_ada_exception_command): Add parameter "enabled" in call
683 to create_ada_exception_catchpoint.
684 (catch_assert_command): Likewise.
685
686 * mi/mi-cmds.h (mi_cmd_catch_assert, mi_cmd_catch_exception):
687 Add declarations.
688 * mi/mi-cmds.c (mi_cmds): Add the "catch-assert" and
689 "catch-exception" commands.
690 * mi/mi-cmd-catch.c: Add #include "ada-lang.h".
691 (mi_cmd_catch_assert, mi_cmd_catch_exception): New functions.
692
693 2013-10-11 Joel Brobecker <brobecker@adacore.com>
694
695 * ada-lang.c (enum ada_exception_catchpoint_kind): Renames
696 "enum exception_catchpoint_kind". Replace the "ex_" prefix
697 of all its enumerates with "ada_". Update the rest of this
698 file throughout.
699
700 2013-10-11 Joel Brobecker <brobecker@adacore.com>
701
702 * ada-lang.c (ada_decode_exception_location): Delete.
703 (create_ada_exception_catchpoint): Remove arguments "sal",
704 "addr_string" and "ops". Add argument "ex_kind" instead.
705 Adjust implementation accordingly, calling ada_exception_sal
706 to get the entities it no longer gets passed as arguments.
707 Document the function's arguments.
708 (catch_ada_exception_command): Use catch_ada_exception_command_split
709 instead of ada_decode_exception_location, and update call to
710 create_ada_exception_catchpoint.
711 (catch_ada_assert_command_split): Renames
712 ada_decode_assert_location. Remove parameters "addr_string" and
713 "ops", and now returns void. Adjust implementation accordingly.
714 Update the function documentation.
715 (catch_assert_command): Use catch_ada_assert_command_split
716 instead of ada_decode_assert_location. Update call to
717 create_ada_exception_catchpoint.
718
719 2013-10-11 Joel Brobecker <brobecker@adacore.com>
720
721 * utils.h (perror_warning_with_name): Add declaration.
722 * utils.c (perror_warning_with_name): New function.
723 * cli/cli-cmds.c (source_script_with_search): Add call to
724 perror_warning_with_name if from_tty is nul.
725
726 2013-10-11 Joel Brobecker <brobecker@adacore.com>
727
728 * utils.c (perror_string): New function, extracted out of
729 throw_perror_with_name.
730 (throw_perror_with_name): Rework to use perror_string.
731
732 2013-10-11 Yao Qi <yao@codesourcery.com>
733
734 * remote.c (discard_pending_stop_replies_in_queue): Update
735 declaration.
736 (struct stop_reply) <rs>: New field.
737 (remove_stop_reply_of_remote_state): New function.
738 (discard_pending_stop_replies_in_queue): Add parameter 'rs'.
739 Callers update. Pass remove_stop_reply_of_remote_state to
740 QUEUE_iterate.
741 (remote_parse_stop_reply): Initialize field 'rs'.
742
743 2013-10-10 Will Newton <will.newton@linaro.org>
744
745 * aarch64-linux-tdep.c (aarch64_linux_init_abi): Call
746 linux_init_abi.
747
748 2013-10-10 Joel Brobecker <brobecker@adacore.com>
749
750 * cli/cli-cmds.c (show_baud_rate): Moved to serial.c as
751 serial_baud_show_cmd.
752 (_initialize_cli_cmds): Delete the code creating the
753 "set/show remotebaud" commands.
754 * serial.c (baud_rate): Move here from top.c.
755 (serial_baud_show_cmd): Move here from cli/cli-cmds.c.
756 (_initialize_serial): Create "set/show serial baud" commands.
757 Add "set/show remotebaud" command aliases.
758 * top.c (baud_rate): Moved to serial.c.
759 * NEWS: Document the new "set/show serial baud" commands,
760 replacing "set/show remotebaud".
761
762 2013-10-09 Pedro Alves <palves@redhat.com>
763
764 * breakpoint.c (insert_bp_location): Use memory_error_message to
765 build the memory error string.
766 * c-lang.c: Include "gdbcore.h".
767 (c_get_string): Use memory_error to throw error.
768 (target_xfer_memory_error): Delete.
769 (memory_error_message): New, factored out from
770 target_xfer_memory_error.
771 (memory_error): Change parameter type to target_xfer_error.
772 Rewrite.
773 (read_memory): Use memory_error instead of
774 target_xfer_memory_error.
775 * gdbcore.h: Include "target.h".
776 (memory_error): Change parameter type to target_xfer_error.
777 (memory_error_message): Declare function.
778 * target.c (target_read_memory, target_read_stack)
779 (target_write_memory, target_write_raw_memory): Return
780 TARGET_XFER_E_IO on error. Adjust comments.
781 (get_target_memory): Pass TARGET_XFER_E_IO to memory_error,
782 instead of EIO.
783 * target.h (target_read, target_insert_breakpoint)
784 (target_remove_breakpoint): Adjust comments.
785 * valprint.c (partial_memory_read): Rename parameter, and adjust
786 comment.
787 (val_print_string): Use memory_error_message to build the memory
788 error string.
789
790 2013-10-09 Jan Kratochvil <jan.kratochvil@redhat.com>
791
792 * common/filestuff.c (gdb_fopen_cloexec): Remove initialization of
793 result variable. Rename variable fopen_e_ever_failed to
794 fopen_e_ever_failed_einval. Retry fopen only for errno EINVAL.
795
796 2013-10-09 Pedro Alves <palves@redhat.com>
797
798 * monitor.c (monitor_write_memory, monitor_write_memory_bytes)
799 (monitor_write_memory_longlongs, monitor_write_memory_block):
800 Constify 'myaddr' parameter.
801 (monitor_xfer_memory): Adjust interface as monitor_xfer_partial
802 helper.
803 (monitor_xfer_partial): New function.
804 (init_base_monitor_ops): Don't install a deprecated_xfer_memory
805 hook. Install a to_xfer_partial hook.
806
807 2013-10-09 Tom Tromey <tromey@redhat.com>
808
809 * dwarf2read.c (dwarf2_get_dwz_file): Update for type change in
810 bfd_get_alt_debug_link_info.
811
812 2013-10-09 Jan Kratochvil <jan.kratochvil@redhat.com>
813
814 New flag OBJF_NOT_FILENAME.
815 * auto-load.c (auto_load_objfile_script): Check also OBJF_NOT_FILENAME.
816 * jit.c (jit_object_close_impl): Use OBJF_NOT_FILENAME for
817 allocate_objfile.
818 (jit_bfd_try_read_symtab): Use OBJF_NOT_FILENAME for
819 symbol_file_add_from_bfd.
820 * jv-lang.c (get_dynamics_objfile): Use OBJF_NOT_FILENAME for
821 allocate_objfile.
822 * objfiles.c (allocate_objfile): Assert OBJF_NOT_FILENAME if NAME is
823 NULL.
824 * objfiles.h (OBJF_NOT_FILENAME): New.
825
826 2013-10-08 Tom Tromey <tromey@redhat.com>
827
828 * Makefile.in (SFILES): Add build-id.c.
829 (HFILES_NO_SRCDIR): Add build-id.h.
830 * build-id.c: New file, largely from elfread.c. Modified
831 most functions.
832 * build-id.h: New file.
833 * dwarf2read.c (dwarf2_get_dwz_file): Update for change to
834 bfd_get_alt_debug_link_info. Verify dwz file's build-id.
835 Search for dwz file using build-id.
836 * elfread.c (build_id_bfd_get, build_id_verify)
837 (build_id_to_debug_filename, find_separate_debug_file): Remove.
838
839 2013-10-08 Joel Brobecker <brobecker@adacore.com>
840
841 * ada-lang.c (compare_names_with_case): Renamed from
842 compare_names, adding a new parameter "casing" and its handling.
843 New function documentation.
844 (compare_names): New function, implemented using
845 compare_names_with_case.
846
847 2013-10-08 Joel Brobecker <brobecker@adacore.com>
848
849 * ada-lang.c (ada_exception_sal): Remove advance declaration.
850
851 2013-10-07 Tom Tromey <tromey@redhat.com>
852
853 * objfiles.c (free_objfile_per_bfd_storage): Delete the
854 demangled_names_hash.
855 (free_objfile): Don't delete the demangled_names_hash.
856 * objfiles.h (struct objfile_per_bfd_storage)
857 <demangled_names_hash>: New field.
858 (struct objfile) <demangled_names_hash>: Move to
859 objfile_per_bfd_storage.
860 * symfile.c (reread_symbols): Don't delete the
861 demangled_names_hash.
862 * symtab.c (create_demangled_names_hash): Update.
863 (symbol_set_names): Update.
864
865 2013-10-07 Tom Tromey <tromey@redhat.com>
866
867 * gdb_bfd.c (struct gdb_bfd_data) <relocation_computed,
868 needs_relocations>: New fields.
869 (gdb_bfd_requires_relocations): New function.
870 * gdb_bfd.h (gdb_bfd_requires_relocations): Declare.
871 * objfiles.c (get_objfile_bfd_data): Disallow sharing if
872 the BFD needs relocations applied.
873
874 2013-10-07 Pedro Alves <palves@redhat.com>
875
876 PR breakpoints/11568
877 * breakpoint.c (remove_threaded_breakpoints): Say "no longer in
878 the thread list" instead of "gone".
879
880 2013-10-06 Sergio Durigan Junior <sergiodj@redhat.com>
881
882 * NEWS: Mention new convenience variable $_exitsignal.
883 * corelow.c (core_open): Reset exit convenience variables. Set
884 $_exitsignal to the uncaught signal which generated the corefile.
885 * infrun.c (handle_inferior_event): Reset exit convenience
886 variables. Set $_exitsignal for TARGET_WAITKIND_SIGNALLED.
887 (clear_exit_convenience_vars): New function.
888 * inferior.h (clear_exit_convenience_vars): New prototype.
889
890 2013-10-06 Yao Qi <yao@codesourcery.com>
891
892 * varobj.h: Add comments to enum varobj_languages.
893
894 2013-10-04 Doug Evans <dje@google.com>
895
896 Add support for DWP file format version 2.
897 * NEWS: Mention support for DWP file format version 2.
898 * dwarf2read.c (dwarf2_section_info): Convert asection field to a
899 union of asection, containing_section. New fields virtual_offset
900 and is_virtual. Change type of readin filed from int to char.
901 (dwo_sections, dwo_file): Tweak comments.
902 (dwp_v2_section_ids): New enum.
903 (dwp_sections): New fields abbrev, info, line, loc, macinfo, macro,
904 str_offsets, types.
905 (virtual_v1_dwo_sections): Renamed from virtual_dwo_sections.
906 All uses updated.
907 (virtual_v2_dwo_sections): New struct.
908 (dwp_hash_table): New fields version, nr_columns. Change type of
909 section_pool field to a union.
910 (dwp_file): New field version.
911 (dwarf2_has_info): Check for virtual sections.
912 (get_containing_section): New function.
913 (get_section_bfd_owner, get_section_bfd_section): Call it.
914 (dwarf2_locate_sections): Update.
915 (dwarf2_section_empty_p): Update.
916 (dwarf2_read_section): Handle virtual sections.
917 (locate_dwz_sections): Update.
918 (create_dwp_hash_table): Document and handle V2 format.
919 (locate_v1_virtual_dwo_sections): Renamed from
920 locate_virtual_dwo_sections and update. All callers updated.
921 (create_dwo_unit_in_dwp_v1): Renamed from create_dwo_in_dwp.
922 Delete arg htab. Rename arg section_index to unit_index.
923 All callers updated.
924 (MAX_NR_V1_DWO_SECTIONS): Renamed from MAX_NR_DWO_SECTIONS.
925 All uses updated.
926 (create_dwp_v2_section, create_dwo_unit_in_dwp_v2): New functions.
927 (lookup_dwo_unit_in_dwp): Add V2 support.
928 (dwarf2_locate_dwo_sections): Update.
929 (dwarf2_locate_common_dwp_sections): Renamed from
930 dwarf2_locate_dwp_sections and update. All callers updated.
931 (dwarf2_locate_v2_dwp_sections): New function.
932 (open_and_init_dwp_file): Add V2 support.
933 (read_str_index): New locals str_section, str_offsets_section.
934
935 2013-10-04 Pedro Alves <palves@redhat.com>
936
937 * common/ptid.c (null_ptid, minus_one_ptid, ptid_build)
938 (pid_to_ptid, ptid_get_pid, ptid_get_lwp, ptid_get_tid)
939 (ptid_equal, ptid_is_pid, ptid_lwp_p, ptid_tid_p): Replace
940 describing comments with references to ptid.h.
941 * common/ptid.h: Remove intro description of constructors,
942 accessors and predicates.
943 (struct ptid): Reformat.
944 (minus_one_ptid, ptid_build, pid_to_ptid, ptid_get_pid)
945 (ptid_get_lwp, ptid_get_tid, ptid_equal, ptid_is_pid): Change
946 describing comments.
947
948 2013-10-04 Joel Brobecker <brobecker@adacore.com>
949
950 * aix-thread.c (sync_threadlists): Add missing ')' in call
951 to ptid_build.
952
953 2013-10-04 Joel Brobecker <brobecker@adacore.com>
954
955 * procfs.c (procfs_init_inferior): Fix typo causing the build
956 to fail.
957
958 2013-10-04 Joel Brobecker <brobecker@adacore.com>
959
960 * aix-thread.c (ptrace32): Remove cast to addr_ptr.
961
962 2013-10-04 Joel Brobecker <brobecker@adacore.com>
963
964 * mi/mi-main.c (run_one_inferior): Add function description.
965 Make ARG a pointer to an integer whose value determines whether
966 we should "run" or "start" the program.
967 (mi_cmd_exec_run): Add handling of the "--start" option.
968 Reject all other command-line options.
969 * NEWS: Add entry for "-exec-run"'s new "--start" option.
970
971 2013-10-04 Yao Qi <yao@codesourcery.com>
972
973 * remote-notif.h (REMOTE_NOTIF_ID): New enum.
974 (struct notif_client) <pending_event>: Moved
975 to struct remote_notif_state.
976 <id>: New field.
977 (struct remote_notif_state) <pending_event>: New field.
978 (notif_event_xfree): Declare.
979 * remote-notif.c (handle_notification): Adjust.
980 (notif_event_xfree): New function.
981 (do_notif_event_xfree): Call notif_event_xfree.
982 (remote_notif_state_xfree): Call notif_event_xfree to free
983 each element in field pending_event.
984 * remote.c (discard_pending_stop_replies): Remove declaration.
985 (discard_pending_stop_replies_in_queue): Declare.
986 (remote_close): Call discard_pending_stop_replies_in_queue
987 instead of discard_pending_stop_replies.
988 (remote_start_remote): Adjust.
989 (stop_reply_xfree): Call notif_event_xfree.
990 (notif_client_stop): Adjust initialization.
991 (remote_notif_remove_all): Rename it to ...
992 (remove_stop_reply_for_inferior): ... this. Update comments.
993 Don't check INF is NULL.
994 (discard_pending_stop_replies): Return early if notif_state is
995 NULL. Adjust. Don't check INF is NULL.
996 (remote_notif_get_pending_events): Adjust.
997 (discard_pending_stop_replies_in_queue): New function.
998 (remote_wait_ns): Likewise.
999
1000 2013-10-04 Yao Qi <yao@codesourcery.com>
1001
1002 * remote-notif.c (DECLARE_QUEUE_P): Remove.
1003 (notif_queue): Remove.
1004 (remote_notif_process): Add one parameter 'notif_queue'.
1005 Update comments. Callers update.
1006 (remote_async_get_pending_events_token): Remove.
1007 (remote_notif_register_async_event_handler): Remove.
1008 (remote_notif_unregister_async_event_handler): Remove.
1009 (handle_notification): Add parameter 'notif_queue'. Update
1010 comments. Callers update.
1011 (notif_xfree): Remove.
1012 (remote_notif_state_allocate): New function.
1013 (remote_notif_state_xfree): New function.
1014 (_initialize_notif): Remove code to allocate queue.
1015 * remote-notif.h (DECLARE_QUEUE_P): Moved from remote-notif.c.
1016 (struct remote_notif_state): New.
1017 (handle_notification): Update declaration.
1018 (remote_notif_process): Likewise.
1019 (remote_notif_register_async_event_handler): Remove.
1020 (remote_notif_unregister_async_event_handler): Remove.
1021 (remote_notif_state_allocate): Declare.
1022 (remote_notif_state_xfree): Declare.
1023 * remote.c (struct remote_state) <notif_state>: New field.
1024 (remote_close): Don't call
1025 remote_notif_unregister_async_event_handler. Call
1026 remote_notif_state_xfree.
1027 (remote_open_1): Don't call
1028 remote_notif_register_async_event_handler. Call
1029 remote_notif_state_allocate.
1030
1031 2013-10-04 Yao Qi <yao@codesourcery.com>
1032
1033 * varobj.c (create_child_with_value): Remove 'const' from the
1034 type of parameter 'name'.
1035 (varobj_add_child): Likewise.
1036 (install_dynamic_child): Remove 'const' from the type of
1037 parameter 'name'.
1038 (varobj_add_child): Likewise.
1039 (create_child_with_value): Likewise. Update comments. Don't
1040 duplicate 'name'.
1041 (update_dynamic_varobj_children): Duplicate 'name'
1042 and pass it to install_dynamic_child.
1043
1044 2013-10-03 Phil Muldoon <pmuldoon@redhat.com>
1045
1046 * python/py-value.c (convert_value_from_python): Move PyInt_Check
1047 conversion logic to occur after PyLong_Check. Comment on order
1048 change significance.
1049 * python/py-arch.c (archpy_disassemble): Comment on order of
1050 conversion for integers and longs.
1051
1052 2013-10-03 Pedro Alves <palves@redhat.com>
1053
1054 * common/linux-ptrace.c (linux_check_ptrace_features): Factor out
1055 the PTRACE_O_TRACESYSGOOD and PTRACE_O_TRACEFORK to separate
1056 functions. Always test for PTRACE_O_TRACESYSGOOD even if
1057 PTRACE_O_TRACEFORK is not supported.
1058 (linux_test_for_tracesysgood): New function.
1059 (linux_test_for_tracefork): New function, factored out from
1060 linux_check_ptrace_features, and also don't kill child_pid here.
1061
1062 2013-10-03 Tristan Gingold <gingold@adacore.com>
1063
1064 * i386-darwin-nat.c (i386_darwin_dr_set): Fix argument type.
1065 Remove verbose error reporting. Use detected state to
1066 thread_set_state call.
1067 (i386_darwin_dr_get): Fix return type. Remove verbose error
1068 report.
1069 Remove trailing spaces.
1070
1071 2013-10-02 Pedro Alves <palves@redhat.com>
1072
1073 * cp-valprint.c (cp_print_value_fields): Adjust calls to
1074 val_print_optimized_out.
1075 * jv-valprint.c (java_print_value_fields): Likewise.
1076 * p-valprint.c (pascal_object_print_value_fields): Likewise.
1077 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full)
1078 <DWARF_VALUE_REGISTER>: If the register was not saved, return a
1079 new optimized out value.
1080 * findvar.c (address_from_register): Likewise.
1081 * frame.c (put_frame_register): Tweak error string to say the
1082 register was not saved, rather than optimized out.
1083 * infcmd.c (default_print_one_register_info): Adjust call to
1084 val_print_optimized_out. Use value_of_register instead of
1085 get_frame_register_value.
1086 * mi/mi-main.c (output_register): Use value_of_register instead of
1087 get_frame_register_value.
1088 * valprint.c (valprint_check_validity): Likewise.
1089 (val_print_optimized_out): New value parameter. If the value is
1090 lval_register, print <not saved> instead.
1091 (value_check_printable, val_print_scalar_formatted): Adjust calls
1092 to val_print_optimized_out.
1093 * valprint.h (val_print_optimized_out): New value parameter.
1094 * value.c (struct value) <optimized_out>: Extend comment.
1095 (error_value_optimized_out): New function.
1096 (require_not_optimized_out): Use it. Use a different string for
1097 lval_register values.
1098 * value.h (error_value_optimized_out): New declaration.
1099 * NEWS: Mention <not saved>.
1100
1101 2013-10-02 Joel Brobecker <brobecker@adacore.com>
1102
1103 * symtab.c (compare_search_syms): Use FILENAME_CMP instead of
1104 strcmp to compare two symtab filenames.
1105
1106 2013-10-02 Joel Brobecker <brobecker@adacore.com>
1107
1108 * symtab.c (search_symbols_equal): Delete.
1109 (sort_search_symbols_remove_dups): Replace call to
1110 search_symbols_equal by call to compare_search_syms,
1111 adjusting as necessary.
1112
1113 2013-10-02 Phil Muldoon <pmuldoon@redhat.com>
1114
1115 PR python/15579
1116 * python/python.c: Document gdb.execute command in Python help.
1117
1118 2013-10-02 Phil Muldoon <pmuldoon@redhat.com>
1119
1120 * python/py-frame.c (frame_info_to_frame_object): Use
1121 gdbpy_convert_exception. Clean up Python object on failure.
1122
1123 2013-10-02 Phil Muldoon <pmuldoon@redhat.com>
1124
1125 * python/lib/gdb/command/frame_filters.py
1126 (InfoFrameFilter.list_frame_filters): Retrieve exception manually.
1127 (ShowFrameFilterPriority.invoke): Ditto.
1128
1129 2013-10-01 Keith Seitz <keiths@redhat.com>
1130
1131 * linespec.c (struct ls_parser): Make 'saved_arg' const.
1132 (parse_linespec): Make 'argptr' const.
1133 Remove temporary cast of 'argptr' to const char **.
1134 (decode_line_full): Pass const pointer to parse_linespec.
1135 (decode_line_1): Likewise.
1136 (decode_objc): Make local variable 'new_argptr' const.
1137 (find_function_symbols): Remove temporary cast to char *
1138 to find_imps.
1139 * objc-lang.c (find_imps): Make argument 'method' const.
1140 Return const.
1141 * objc-lang.h (find_imps): Likewise.
1142
1143 2013-10-01 Keith Seitz <keiths@redhat.com>
1144
1145 * completer.c (skip_quoted_chars): Make all arguments const.
1146 Return const.
1147 (skip_quoted): Likewise.
1148 * completer.h (skip_quoted_chars): Likewise.
1149 (skip_quoted): Likewise.
1150 * defs.h (skip_quoted): Remove duplicate declaration.
1151 * jv-exp.y: Include completer.h.
1152 (yylex): Remove unneccessary cast to char * fro skip_quoted.
1153 * p-exp.y: Include completer.h.
1154
1155 2013-10-01 Keith Seitz <keiths@redhat.com>
1156
1157 * c-exp.y (parse_number): Make first argument const.
1158 Make a copy of the input to manipulate.
1159 (c_parse_escape): Make first argument const.
1160 Make local variable 'tokptr' const.
1161 (parse_string_or_char): Make first two arguments const.
1162 (macro_original_text): Make const.
1163 (lex_one_token): Make local variable 'tokstart' const.
1164 Likewise for local variables named 'p'.
1165 Cast away const for struct stoken (temporary).
1166 * c-lang.h (c_parse_escpae): Make first argument const.
1167 * cli/cli-cmds.c (echo_command): Make local variable 'p'
1168 const.
1169 * cli/cli-setshow.c (do_set_command): Likewise for 'p' in
1170 var_string case.
1171 * f-exp.y (parse_number): Make first argument const.
1172 (match_string_literal): Make local variable 'tokstart'
1173 const.
1174 (yylex): Make local variable 'p' const.
1175 Cast away const for struct stoken (temporary).
1176 * go-exp.y (parse_number): Make first argument const.
1177 (parse_string_or_char): Likewise.
1178 Make local variable 'tokstart' const.
1179 (lex_one_token): Likewise for numerous locals called 'p'.
1180 Cast away const for struct stoken (temporary).
1181 * jv-exp.y (parse_number): Make first argument const.
1182 Make local variables 'tokstart' and 'tokptr' const.
1183 Cast away const for call to skip_quoted (temporary).
1184 (yylex): Make local variable 'p' const.
1185 Cast away const for struct stoken (temporary).
1186 * m2-exp.y (parse_number): Make local variable 'p' const.
1187 (yylex): Likewise for 'tokstart'.
1188 Cast away const for struct stoken (temporary).
1189 Make local variable 'p' const.
1190 * macroexp.c (get_character_constant): Pass a const string
1191 to c_parse_escape.
1192 (get_string_literal): Likewise.
1193 (macro_expand_next): Make first argument const.
1194 Cast away const for init_shared_buffer.
1195 * macroexp.h (macro_expand_next): Make first argument const.
1196 * p-exp.y (yylex): Make a local copy of 'lexptr'.
1197 Pass a const string to c_parse_escape.
1198 Make local variables 'p' and 'namestart' const.
1199 * parse.c (lexptr): Make const.
1200 (prev_lexptr): Likewise.
1201 (find_template_name_end): Return const.
1202 Make argument const, too.
1203 (parse_exp_in_context): Make first argument const.
1204 Remove the entire const_hack.
1205 (parse_exp_in_context_1): Make first argument const.
1206 * parser-defs.h (find_template_name_end): Return const.
1207 Make argument const, too.
1208 (lexptr): Make const.
1209 (prev_lexptr): Likewise.
1210 * utils.c (parse_escape): Make second argument const.
1211 * utils.h (parse_escape): Likewise.
1212
1213 2013-10-01 Keith Seitz <keiths@redhat.com>
1214
1215 * ada-exp.y (write_object_renaming): Update: struct stoken.ptr
1216 is now const.
1217 (block_lookup): Make 'raw_name' and 'name' const.
1218 * ada-lex.l (processString): Update for struct stoken.ptr.
1219 * c-exp.y (qualified_name : TYPENAME COLONCOLON '~' name): Likewise.
1220 (operator_stoken): Likewise.
1221 (lex_one_token): Remove temporary cast to char * for
1222 'yylval.sval.ptr'.
1223 * f-exp.y (yylex): Likewise.
1224 * gdb-types.c (lookup_struct_elt_type): Make argument 'name' const.
1225 * gdbtypes.h (lookup_struct_elt_type): Likewisee.
1226 * go-exp.y (lex_one_token): Remove temporary cast to char * for
1227 'yylval.sval.ptr'.
1228 * jv-exp.y (QualifiedName): Update for struct stoken.ptr.
1229 (yylex): Remove temporary cast to char * for 'yylval.sval.ptr'.
1230 * linespec.c (struct ls_parser): Make 'stream' const.
1231 (find_parameter_list_end): Make argument 'input' and local
1232 variable 'p' const.
1233 (linespec_lexer_lex_string): Make local variables 'start' and
1234 'p' const.
1235 Use skip_spaces_const instead of skip_spaces.
1236 (linespec_lexer_peek_token): Make local variable 'saved_stream'
1237 const.
1238 (parse_linespec): Temporarily cast 'argptr' to const for
1239 'parser->lexer.stream'.
1240 * m2-exp.y (yylex): Remove temporary cast to char * for
1241 'yylval.sval.ptr'.
1242 * objc-lang.c (add_msglist): Make local variable 'p' const.
1243 * p-exp.y (exp : exp '['): Update for struct stoken.ptr.
1244 (exp : STRING): Make 'sp' const.
1245 (parse_number): Make argument 'p' const.
1246 * parser-defs.h (struct stoken): Make 'ptr' const.
1247
1248 2013-10-01 Doug Evans <dje@google.com>
1249
1250 * cli/cli-decode.c: Remove unnecessary inclusion of tui/tui.h.
1251
1252 2013-10-01 Yao Qi <yao@codesourcery.com>
1253
1254 * varobj.c (c_value_of_root): Remove declaration.
1255 (cplus_value_of_root, java_value_of_root): Likewise.
1256 (ada_value_of_root): Likewise.
1257 (struct language_specific) <value_of_root>: Remove.
1258 (languages): Update initialization.
1259 (check_scope): Move earlier.
1260 (c_value_of_root): Move earlier and rename to ...
1261 (value_of_root_1): ... this.
1262 (value_of_root): Caller update.
1263 (cplus_value_of_root, java_value_of_root): Remove.
1264 (ada_value_of_root): Remove.
1265
1266 2013-10-01 Yao Qi <yao@codesourcery.com>
1267
1268 * varobj.c (varobj_format_string): Remove "unknown".
1269 (languages): Remove the first element.
1270 * varobj.h (enum varobj_languages): Remove vlang_c.
1271
1272 2013-10-01 Yao Qi <yao@codesourcery.com>
1273
1274 * varobj.c (struct language_specific) <language>: Remove.
1275 (languages): Update the initialization.
1276
1277 2013-10-01 Yao Qi <yao@codesourcery.com>
1278
1279 * arm-wince-tdep.c: Remove inclusion of "solib.h" and
1280 "solib-target.h". Include "windows-tdep.h".
1281 (arm_wince_init_abi): Call windows_init_abi. Remove call to
1282 set_solib_ops and set_gdbarch_has_dos_based_file_system.
1283 * configure.tgt (arm*-wince-pe | arm*-*-mingw32ce*): Append
1284 windows-tdep.o to gdb_target_obs.
1285
1286 2013-10-01 Yao Qi <yao@codesourcery.com>
1287
1288 * amd64-windows-tdep.c: Remove inclusion of "solib.h" and
1289 "solib-target.h".
1290 (amd64_windows_init_abi): Don't call set_solib_ops and
1291 set_gdbarch_iterate_over_objfiles_in_search_order. Call
1292 windows_init_abi instead.
1293 * i386-cygwin-tdep.c: Remove inclusion of "solib.h" and
1294 "solib-target.h".
1295 (i386_cygwin_init_abi): Don't call set_solib_ops,
1296 set_gdbarch_has_dos_based_file_system and
1297 set_gdbarch_iterate_over_objfiles_in_search_order. Call
1298 windows_init_abi instead.
1299 * windows-tdep.c: Include "solib.h" and "solib-target.h".
1300 (windows_init_abi): New function.
1301 (windows_iterate_over_objfiles_in_search_order): Make it
1302 static.
1303 * windows-tdep.h (windows_init_abi): Declare.
1304 (windows_iterate_over_objfiles_in_search_order): Remove
1305 declaration.
1306
1307 2013-10-01 Jerome Guitton <guitton@adacore.com>
1308
1309 Checked in by Joel Brobecker <brobecker@adacore.com>
1310 * system-gdbinit/elinos.py (get_elinos_environment): Return an
1311 incomplete dictionnary instead of None in case of missing
1312 environment variables.
1313 (elinos_init): in case of an incomplete environment, best
1314 effort to load system libraries instead of abort.
1315
1316 2013-10-01 Joel Brobecker <brobecker@adacore.com>
1317
1318 * ada-lang.c (ada_has_this_exception_support): Ignore
1319 mst_solib_trampoline minimal symbols.
1320
1321 2013-09-30 Tristan Gingold <gingold@adacore.com>
1322
1323 * i386-darwin-nat.c (darwin_complete_target): Install methods for
1324 hardware watchpoint.
1325 (i386_darwin_dr_set): Support 32 and 64 bit states.
1326 (i386_darwin_dr_get): Likewise.
1327 (i386_darwin_dr_set_control): Make static.
1328 (i386_darwin_dr_set_addr, i386_darwin_dr_get_addr)
1329 (i386_darwin_dr_get_status, i386_darwin_dr_get_control): Likewise.
1330
1331 2013-09-30 Luis Machado <lgustavo@codesourcery.com>
1332
1333 * aarch64-linux-nat.c: Replace PIDGET with ptid_get_pid.
1334 Replace TIDGET with ptid_get_lwp.
1335 Replace GET_LWP with ptid_get_lwp.
1336 * aix-thread.c (BUILD_THREAD, BUILD_LWP): Remove.
1337 Replace BUILD_THREAD with ptid_build.
1338 Replace BUILD_LWP with ptid_build.
1339 Replace PIDGET with ptid_get_pid.
1340 Replace TIDGET with ptid_get_lwp.
1341 * alphabsd-nat.c: Replace PIDGET with ptid_get_pid.
1342 * amd64-linux-nat.c: Replace PIDGET with ptid_get_pid.
1343 Replace TIDGET with ptid_get_lwp.
1344 * amd64bsd-nat.c: Replace PIDGET with ptid_get_pid.
1345 * arm-linux-nat.c: Replace PIDGET with ptid_get_pid.
1346 Replace TIDGET with ptid_get_lwp.
1347 Replace GET_LWP with ptid_get_lwp.
1348 * armnbsd-nat.c: Replace PIDGET with ptid_get_pid.
1349 * auxv.c: Likewise.
1350 * breakpoint.c: Likewise.
1351 * common/ptid.c (ptid_is_pid): Condense check for
1352 null_ptid and minus_one_ptid.
1353 (ptid_lwp_p): New function.
1354 (ptid_tid_p): New function.
1355 * common/ptid.h: Update comments for accessors.
1356 (ptid_lwp_p): New prototype.
1357 (ptid_tid_p): New prototype.
1358 * defs.h (PIDGET, TIDGET, MERGEPID): Do not define.
1359 * gcore.c: Replace PIDGET with ptid_get_pid.
1360 * gdbthread.h: Likewise.
1361 * gnu-nat.c: Likewise.
1362 * hppa-linux-nat.c: Replace PIDGET with ptid_get_pid.
1363 Replace TIDGET with ptid_get_lwp.
1364 * hppabsd-nat.c: Replace PIDGET with ptid_get_pid.
1365 * hppanbsd-nat.c: Likewise.
1366 * i386-linux-nat.c: Replace PIDGET with ptid_get_pid.
1367 Replace TIDGET with ptid_get_lwp.
1368 * i386bsd-nat.c: Replace PIDGET with ptid_get_pid.
1369 * ia64-linux-nat.c: Replace PIDGET with ptid_get_pid.
1370 * infcmd.c: Likewise.
1371 * inferior.h: Likewise.
1372 * inflow.c: Likewise.
1373 * infrun.c: Likewise.
1374 * linux-fork.c: Likewise.
1375 * linux-nat.c: Replace PIDGET with ptid_get_pid.
1376 Replace GET_PID with ptid_get_pid.
1377 Replace is_lwp with ptid_lwp_p.
1378 Replace GET_LWP with ptid_get_lwp.
1379 Replace BUILD_LWP with ptid_build.
1380
1381 2013-09-28 Mike Frysinger <vapier@gentoo.org>
1382
1383 * common/linux-btrace.c: Move sys/syscall.h out of the
1384 HAVE_LINUX_PERF_EVENT_H check and wrap it in HAVE_SYS_SYSCALL_H.
1385 Also check for SYS_perf_event_open before attempting to buid.
1386
1387 2013-09-27 Doug Evans <dje@google.com>
1388
1389 * dwarf2read.c (dwarf2_section_info): Add comment.
1390 (dwp_file): Split loaded_cutus into loaded_cus, loaded_tus.
1391 All uses updated.
1392 (dwarf2_section_empty_p): Rename arg from "info" to "section".
1393 (dwarf2_read_section): Delete unused local "header". Add section
1394 name to error message.
1395 (create_dwo_in_dwp): Tweak comment.
1396 (MAX_NR_DWO_SECTIONS): Combine count of .debug_macro + .debug_macinfo.
1397
1398 * dwarf2read.c (die_reader_specs): Tweak comment.
1399 (get_section_bfd_owner, get_section_bfd_section): New functions.
1400 (get_section_name, get_section_file_name): New functions.
1401 (get_section_id, get_section_flags): New functions.
1402 (*): Use new functions to access section fields.
1403
1404 * dwarf2read.c (struct dwo_file): Add/tweak comments.
1405 (lookup_dwo_unit_in_dwp): Renamed from lookup_dwo_in_dwp. Remove
1406 arg "htab". All callers updated.
1407 (create_debug_types_hash_table): Remove redundant copy of
1408 abbrev_section.
1409 (create_dwo_in_dwp): Tweak comments.
1410 (read_str_index): Tweak comment. Record dwarf form name in static
1411 local.
1412
1413 2013-09-27 Pedro Alves <palves@redhat.com>
1414
1415 * remote.h (REMOTE_SYSROOT_PREFIX): New define.
1416 (remote_filename_p): Add comment.
1417 * remote.c (remote_filename_p): Adjust to use
1418 REMOTE_SYSROOT_PREFIX.
1419 * solib.c (solib_find): When deciding whether we need to add a
1420 directory separator, check whether the sysroot is "remote:"
1421 instead of checking whether the patch has a drive spec. Add
1422 comments.
1423
1424 2013-09-27 Pedro Alves <palves@redhat.com>
1425
1426 * remote.c (struct stop_reply) <solibs_changed, replay_event>:
1427 Delete fields.
1428 (remote_parse_stop_reply): Adjust, setting event->ws.kind
1429 directly.
1430
1431 2013-09-26 Jan Kratochvil <jan.kratochvil@redhat.com>
1432
1433 Fix set debug frame output.
1434 * frame.c (fprint_frame_type): Add TAILCALL_FRAME entry. Move
1435 SENTINEL_FRAME entry lower to match enum frame_type order.
1436
1437 2013-09-26 Pierre Muller <muller@sourceware.org>
1438
1439 Replace constant values 8 to 15 by AMD64_R8_REGNUM to
1440 AMD64_R15_REGNUM when a register index is expected.
1441 * amd64-windows-tdep.c (amd64_windows_dummy_call_integer_regs):
1442 Substitute in array.
1443 * amd64-tdep.c (amd64_dwarf_regmap): Ditto.
1444 (amd64_push_arguments): Substitute in integer_regnum array.
1445
1446 2013-09-25 Doug Evans <dje@google.com>
1447
1448 * objfiles.c (allocate_objfile): Move comment to better place.
1449
1450 New option "set debug symfile on".
1451 * NEWS: Mention "set debug symfile".
1452 * Makefile.in (SFILES): Add symfile-debug.c.
1453 (COMMON_OBS): Add symfile-debug.o.
1454 * elfread.c (elf_symfile_read): Use objfile_set_sym_fns to set the
1455 objfile's symbol functions.
1456 * objfiles.h (objfile_set_sym_fns): Declare.
1457 * symfile-debug.c: New file.
1458 * symfile.c (syms_from_objfile_1): Use objfile_set_sym_fns to set the
1459 objfile's symbol functions.
1460 (reread_symbols): Ditto.
1461
1462 * symfile.h (struct sym_fns): Delete member "sym_flavour".
1463 All uses updated.
1464 (add_symtab_fns): Update prototype.
1465 * symfile.c (sym_fns_ptr): Delete. Replace with ...
1466 (registered_sym_fns): ... this.
1467 (symtab_fns): Update.
1468 (add_symtab_fns): New arg "flavour". All callers updated.
1469 (find_sym_fns): Rewrite to use new sym_fns registry.
1470
1471 * symfile.h (struct sym_fns): Add "objfile" argument to
1472 sym_read_linetable. All uses updated.
1473
1474 * symtab.c (domain_name, search_domain_name): New functions.
1475 * symtab.h (domain_name, search_domain_name): Declare.
1476
1477 * symfile.h (struct quick_symbol_functions): Reorg arg list of
1478 map_matching_symbols so objfile is first. All uses updated.
1479 * dwarf2read.c (dw2_map_matching_symbols): Update signature.
1480 * psymtab.c (map_matching_symbols_psymtab): Update signature.
1481
1482 2013-09-25 Andreas Arnez <arnez@linux.vnet.ibm.com>
1483
1484 PR shlibs/8882
1485 * solib-svr4.c (svr4_read_so_list): Skip the vDSO when reading
1486 link map entries.
1487
1488 2013-09-24 Doug Evans <dje@google.com>
1489
1490 * objfiles.c (free_objfile): Move comment.
1491
1492 2013-09-24 Joel Brobecker <brobecker@adacore.com>
1493
1494 * ada-exp.y (string_to_operator): Delete.
1495 (dummy_string_to_ada_operator): Delete.
1496
1497 2013-09-24 Joel Brobecker <brobecker@adacore.com>
1498
1499 Revert:
1500 * i386-tdep.h (enum amd64_reg_class): New, moved here from
1501 amd64-tdep.c.
1502 (struct gdbarch_tdep): Add fields call_dummy_num_integer_regs,
1503 call_dummy_integer_regs, and classify.
1504 * amd64-tdep.h (amd64_classify): Add declaration.
1505 * amd64-tdep.c (amd64_dummy_call_integer_regs): New static constant.
1506 (amd64_reg_class): Delete, moved to i386-tdep.h.
1507 (amd64_classify): Make non-static. Move declaration to amd64-tdep.h.
1508 Replace call to amd64_classify by call to tdep->classify.
1509 (amd64_push_arguments): Get the list of registers to use for
1510 passing integer parameters from the gdbarch tdep structure,
1511 rather than using a hardcoded one. Replace calls to amd64_classify
1512 by calls to tdep->classify.
1513 (amd64_push_dummy_call): Get the register number used for
1514 the "hidden" argument from tdep->call_dummy_integer_regs.
1515 (amd64_init_abi): Initialize tdep->call_dummy_num_integer_regs
1516 and tdep->call_dummy_integer_regs. Set tdep->classify.
1517
1518 2013-09-24 Joel Brobecker <brobecker@adacore.com>
1519
1520 Revert:
1521 * i386-tdep.h (gdbarch_tdep): Add field memory_args_by_pointer.
1522 * amd64-tdep.c (amd64_push_arguments): Add handling of architectures
1523 where tdep->memory_args_by_pointer is non-zero.
1524
1525 2013-09-24 Joel Brobecker <brobecker@adacore.com>
1526
1527 Revert:
1528 * i386-tdep.h (struct gdbarch_tdep): Add new field
1529 integer_param_regs_saved_in_caller_frame.
1530 * amd64-tdep.c (amd64_push_dummy_call): Allocate some memory on
1531 stack if tdep->integer_param_regs_saved_in_caller_frame is set.
1532
1533 2013-09-24 Joel Brobecker <brobecker@adacore.com>
1534
1535 * amd64-windows-tdep.c: #include "value.h"
1536 (amd64_windows_classify): Delete.
1537 (amd64_windows_passed_by_integer_register)
1538 (amd64_windows_passed_by_xmm_register)
1539 (amd64_windows_passed_by_pointer)
1540 (amd64_windows_adjust_args_passed_by_pointer)
1541 (amd64_windows_store_arg_in_reg, amd64_windows_push_arguments)
1542 (amd64_windows_push_dummy_call): New functions.
1543 (amd64_windows_init_abi): Remove setting of
1544 tdep->call_dummy_num_integer_regs, tdep->call_dummy_integer_regs,
1545 tdep->classify, tdep->memory_args_by_pointer and
1546 tdep->integer_param_regs_saved_in_caller_frame.
1547 Add call to set_gdbarch_push_dummy_call.
1548
1549 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1550
1551 * dwarf2read.c (open_and_init_dwp_file): Try open_dwp_file also with
1552 objfile->original_name.
1553
1554 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1555
1556 Pass down original filename for objfile.
1557 * coffread.c (coff_symfile_read): Update symbol_file_add_separate call.
1558 * elfread.c (elf_symfile_read): Likewise.
1559 * jit.c (jit_object_close_impl): Update allocate_objfile call, no
1560 longer set ORIGINAL_NAME.
1561 (jit_bfd_try_read_symtab): Update symbol_file_add_from_bfd call.
1562 * jv-lang.c (get_dynamics_objfile): Update allocate_objfile call.
1563 * machoread.c (macho_add_oso_symfile): Add parameter name. Update
1564 symbol_file_add_from_bfd call.
1565 (macho_symfile_read_all_oso): Update two macho_add_oso_symfile calls.
1566 (macho_check_dsym): Add parameter filenamep. Change function comment.
1567 Set *filenamep.
1568 (macho_symfile_read): New variable dsym_filename. Update
1569 macho_check_dsym call. Use it for symbol_file_add_separate.
1570 * objfiles.c (allocate_objfile): Add parameter name. New comment for
1571 it. Use it for objfile->original_name.
1572 (objfile_name): Return OBFD's filename, if available.
1573 * objfiles.h (allocate_objfile): Add new parameter name.
1574 * solib.c (solib_read_symbols): Update symbol_file_add_from_bfd call.
1575 * symfile-mem.c (symbol_file_add_from_memory): Update
1576 symbol_file_add_from_bfd call.
1577 * symfile.c (read_symbols): Update symbol_file_add_separate call, new
1578 comment for it.
1579 (symbol_file_add_with_addrs): New parameter name, add function comment
1580 for it. Remove variable name. Update allocate_objfile call.
1581 (symbol_file_add_separate): New parameter name, add function comment
1582 for it. Update symbol_file_add_with_addrs call.
1583 (symbol_file_add_from_bfd): New parameter name. Update
1584 symbol_file_add_with_addrs call.
1585 (symbol_file_add): Update symbol_file_add_from_bfd call.
1586 (reread_symbols): New variable original_name. Save
1587 objfile->original_name by it.
1588 * symfile.h (symbol_file_add_from_bfd, symbol_file_add_separate): Add
1589 second parameter.
1590
1591 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1592
1593 Code cleanup: Add objfile_name accessor function.
1594 * ada-lang.c (is_known_support_routine): Use objfile_name.
1595 * auto-load.c (source_gdb_script_for_objfile)
1596 (auto_load_objfile_script): Likewise.
1597 * coffread.c (coff_symtab_read, read_one_sym): Likewise.
1598 * dbxread.c (dbx_symfile_read): Likewise.
1599 * dwarf2-frame.c (dwarf2_build_frame_info): Likewise.
1600 * dwarf2loc.c (locexpr_describe_location_piece): Likewise.
1601 * dwarf2read.c (dwarf2_get_dwz_file, dwarf2_read_index)
1602 (dw2_symtab_iter_next, dw2_expand_symtabs_matching)
1603 (lookup_dwp_signatured_type, lookup_dwo_unit)
1604 (dwarf2_build_psymtabs_hard, scan_partial_symbols, process_queue)
1605 (fixup_go_packaging, process_imported_unit_die, dwarf2_physname)
1606 (read_import_statement, create_dwo_cu, open_and_init_dwp_file)
1607 (lookup_dwo_cutu, read_call_site_scope, dwarf2_ranges_read)
1608 (dwarf2_record_block_ranges, read_common_block, read_typedef)
1609 (read_subrange_type, load_partial_dies, read_partial_die)
1610 (read_addr_index_1, read_str_index, dwarf_decode_lines_1)
1611 (die_containing_type, build_error_marker_type, lookup_die_type)
1612 (follow_die_ref_or_sig, follow_die_ref, dwarf2_fetch_die_loc_sect_off)
1613 (dwarf2_fetch_constant_bytes, follow_die_sig, get_signatured_type)
1614 (get_DW_AT_signature_type, write_psymtabs_to_index)
1615 (save_gdb_index_command): Likewise.
1616 * elfread.c (find_separate_debug_file_by_buildid, elf_symfile_read):
1617 Likewise.
1618 * expprint.c (dump_subexp_body_standard): Likewise.
1619 * gdbtypes.c (type_name_no_tag_or_error): Likewise.
1620 * jit.c (jit_object_close_impl): Use the objfile field name renamed to
1621 original_name.
1622 * linux-thread-db.c (try_thread_db_load_from_pdir_1): New variable
1623 obj_name, use objfile_name for it, use the variable.
1624 (try_thread_db_load_from_pdir, has_libpthread, thread_db_new_objfile):
1625 Use objfile_name.
1626 * machoread.c (macho_symtab_read, macho_check_dsym)
1627 (macho_symfile_relocate): Likewise.
1628 * maint.c (maintenance_translate_address): Likewise.
1629 * minidebug.c (find_separate_debug_file_in_section): Likewise.
1630 * minsyms.c (install_minimal_symbols): Likewise.
1631 * objfiles.c (allocate_objfile): Use the objfile field name renamed to
1632 original_name.
1633 (filter_overlapping_sections): Use objfile_name.
1634 (objfile_name): New function.
1635 * objfiles.h (struct objfile): Rename field name to original_name.
1636 (objfile_name): New prototype.
1637 * printcmd.c (sym_info, address_info): Use objfile_name.
1638 * probe.c (parse_probes, collect_probes, compare_probes)
1639 (info_probes_for_ops): Likewise.
1640 * progspace.c (clone_program_space): Likewise.
1641 * psymtab.c (require_partial_symbols, dump_psymtab, allocate_psymtab)
1642 (maintenance_info_psymtabs): Likewise.
1643 * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile)
1644 (source_section_scripts): Likewise.
1645 * python/py-objfile.c (objfpy_get_filename): Likewise.
1646 * python/py-progspace.c (pspy_get_filename): Likewise.
1647 * solib-aix.c (solib_aix_get_toc_value): Likewise.
1648 * solib-som.c (match_main, som_solib_section_offsets): Likewise.
1649 * solib.c (solib_read_symbols): Likewise.
1650 * stabsread.c (scan_file_globals): Likewise.
1651 * stap-probe.c (handle_stap_probe): Likewise.
1652 * symfile.c (symbol_file_clear, separate_debug_file_exists)
1653 (find_separate_debug_file_by_debuglink): Likewise.
1654 (reread_symbols): Likewise. Use the objfile field name renamed to
1655 original_name.
1656 (allocate_symtab): Use objfile_name.
1657 * symmisc.c (print_symbol_bcache_statistics, print_objfile_statistics)
1658 (dump_objfile, dump_msymbols, dump_symtab_1)
1659 (maintenance_print_msymbols, maintenance_print_objfiles)
1660 (maintenance_info_symtabs, maintenance_check_symtabs): Likewise.
1661 * target.c (target_translate_tls_address, target_info): Likewise.
1662 * xcoffread.c (xcoff_initial_scan): Make variable name const. Use
1663 objfile_name.
1664
1665 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1666
1667 Code cleanup.
1668 * probe.c (parse_probes): Rename variable objfile_name to
1669 objfile_namestr.
1670
1671 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1672
1673 Remove solib-sunos.c.
1674 * Makefile.in (ALLDEPFILES): Remove solib-sunos.c.
1675 * config/m68k/obsd.mh (NATDEPFILES): Remove solib-sunos.o.
1676 * objfiles.c (rt_common_objfile): Remove.
1677 (free_objfile): Remove rt_common_objfile comparison.
1678 * objfiles.h (rt_common_objfile): Remove.
1679 * solib-sunos.c: Remove.
1680 * symfile.c (reread_symbols): Remove solib-sunos.c comment.
1681
1682 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1683
1684 Remove a.out NetBSD and OpenBSD hosts.
1685 * NEWS (Removed native configurations): New.
1686 * config/arm/nbsdaout.mh: Remove.
1687 * config/i386/nbsdaout.mh: Remove.
1688 * config/i386/obsdaout.mh: Remove.
1689 * config/m68k/nbsdaout.mh: Remove.
1690 * config/sparc/nbsdaout.mh: Remove.
1691 * config/vax/nbsdaout.mh: Remove.
1692 * configure.host (arm*-*-netbsd*, i[34567]86-*-netbsd*)
1693 (i[34567]86-*-openbsd[0-2].*, i[34567]86-*-openbsd3.[0-3])
1694 (m68*-*-netbsd*, sparc-*-netbsd*, vax-*-netbsd*): Add them to obsolete
1695 error.
1696 (arm*-*-netbsd*, i[34567]86-*-netbsd*, i[34567]86-*-openbsd[0-2].*)
1697 (i[34567]86-*-openbsd3.[0-3], m68*-*-netbsd*, sparc-*-netbsdaout*)
1698 (sparc-*-netbsd*, vax-*-netbsd*): Remove.
1699
1700 2013-09-23 Tom Tromey <tromey@redhat.com>
1701
1702 * linespec.c (struct minsym_and_objfile): Remove.
1703 (minsym_and_objfile_d): Remove.
1704 (struct linespec, struct collect_info, linespec_parse_basic)
1705 (convert_linespec_to_sals, linespec_parser_delete, decode_objc)
1706 (compare_msymbols, find_method, find_function_symbols)
1707 (find_linespec_symbols, struct collect_minsyms, compare_msyms)
1708 (add_minsym, search_minsyms_for_name): Update.
1709
1710 2013-09-23 Andrew Burgess <aburgess@broadcom.com>
1711
1712 * regcache.c: Add include of valprint.h.
1713 (dump_endian_bytes): Delete.
1714 (regcache_dump): Use print_hex_chars not dump_endian_bytes.
1715
1716 2013-09-23 Andrew Burgess <aburgess@broadcom.com>
1717
1718 * sh64-tdep.c (sh64_do_fp_register): Use print_hex_chars.
1719
1720 2013-09-19 Pedro Alves <palves@redhat.com>
1721
1722 * breakpoint.c (remove_threaded_breakpoints): Skip non-user
1723 breakpoints.
1724
1725 2013-09-19 Pedro Alves <palves@redhat.com>
1726 Thomas Schwinge <thomas@codesourcery.com>
1727 Yue Lu <hacklu.newborn@gmail.com>
1728
1729 * gnu-nat.c (gnu_read_inferior, gnu_write_inferior): Make static.
1730 Take a gdb_byte pointer instead of a char pointer.
1731
1732 * gnu-nat.c (gnu_xfer_memory): Adjust interface as
1733 gnu_xfer_partial helper.
1734 (gnu_xfer_partial): New function.
1735 (gnu_target): Don't install a deprecated_xfer_memory hook.
1736 Install a to_xfer_partial hook.
1737
1738 2013-09-19 Jan Kratochvil <jan.kratochvil@redhat.com>
1739
1740 Constification.
1741 * main.c (captured_main): Replace catch_command_errors by
1742 catch_command_errors_const. Twice.
1743 * symfile.c (symbol_file_add_main_1): Make args parameter const.
1744 (symbol_file_add): Make name parameter const.
1745 (symbol_file_add_main, symbol_file_add_main_1): Make args parameter const.
1746 (symfile_bfd_open): Make name parameter const, rename it to cname. Add
1747 variable name. Change their usage accordingly.
1748 * symfile.h (symbol_file_add, symfile_bfd_open): Make first parameter
1749 const.
1750 (symbol_file_add_main): Make args parameter const.
1751
1752 2013-09-18 Raunaq Bathija <raunaq12@in.ibm.com>
1753 Ulrich Weigand <uweigand@de.ibm.com>
1754
1755 * xcoffread.c (struct coff_symbol): Use CORE_ADDR as type
1756 of c_value member.
1757 (read_xcoff_symtab): Use CORE_ADDR as type of fcn_start_addr.
1758
1759 2013-09-18 Pedro Alves <palves@redhat.com>
1760 Yue Lu <hacklu.newborn@gmail.com>
1761
1762 * gnu-nat.c (inf_validate_procs, gnu_wait, gnu_resume)
1763 (gnu_create_inferior)
1764 (gnu_attach, gnu_thread_alive, gnu_pid_to_str, cur_thread)
1765 (set_sig_thread_cmd): Use the lwpid field of ptids to
1766 store/extract thread ids instead of the tid field.
1767 * i386gnu-nat.c (gnu_fetch_registers): Adjust.
1768
1769 2013-09-18 Andrew Burgess <aburgess@broadcom.com>
1770
1771 * infcmd.c (default_print_one_register_info): Add detection of
1772 optimized out values.
1773 (default_print_registers_info): Switch to using
1774 get_frame_register_value.
1775
1776 2013-09-18 Markus Metzger <markus.t.metzger@intel.com>
1777
1778 * infrun.c (handle_inferior_event): Check if we know the
1779 function start address before setting a resume breakpoint.
1780
1781 2013-09-18 Pedro Alves <palves@redhat.com>
1782
1783 * gnu-nat.c (set_sig_thread_cmd): Compare the thread's ptid to
1784 minus_one_ptid instead of looking at the ptid's tid field and
1785 comparing that to -1.
1786
1787 2013-09-18 Andrew Burgess <aburgess@broadcom.com>
1788
1789 * main.h (get_gdb_program_name): Remove extra whitespace.
1790
1791 2013-09-18 Andrew Burgess <aburgess@broadcom.com>
1792
1793 * main.h (get_gdb_program_name): Add declaration.
1794 * main.c (get_gdb_program_name): Add definition.
1795
1796 2013-09-17 Doug Evans <dje@google.com>
1797
1798 * dwarf2read.c: Move definitions of complaint functions to after
1799 forward declarations of local functions.
1800
1801 2013-09-17 Muhammad Waqas <mwaqas@codesourcery.com>
1802 Pedro Alves <palves@redhat.com>
1803
1804 PR gdb/11568
1805 * breakpoint.c (remove_threaded_breakpoints): New function.
1806 (_initialize_breakpoint): Attach remove_threaded_breakpoints
1807 as thread_exit observer.
1808
1809 2013-09-17 Pedro Alves <palves@redhat.com>
1810
1811 PR gdb/15911
1812 * ada-tasks.c (task_command_1): Adjust call to print_stack_frame.
1813 * bsd-kvm.c (bsd_kvm_open, bsd_kvm_proc_cmd, bsd_kvm_pcb_cmd):
1814 * corelow.c (core_open):
1815 * frame.h (print_stack_frame, print_frame_info): New
1816 'set_current_sal' parameter.
1817 * infcmd.c (finish_command, kill_command): Adjust call to
1818 print_stack_frame.
1819 * inferior.c (inferior_command): Likewise.
1820 * infrun.c (normal_stop): Likewise.
1821 * linux-fork.c (linux_fork_context): Likewise.
1822 * record-full.c (record_full_goto_entry, record_full_restore):
1823 Likewise.
1824 * remote-mips.c (common_open): Likewise.
1825 * stack.c (print_stack_frame): New 'set_current_sal' parameter.
1826 Use it.
1827 (print_frame_info): New 'set_current_sal' parameter. Set the last
1828 displayed sal depending on the new paremeter instead of looking at
1829 print_what.
1830 (backtrace_command_1, select_and_print_frame, frame_command)
1831 (current_frame_command, up_command, down_command): Adjust call to
1832 print_stack_frame.
1833 * thread.c (print_thread_info, restore_selected_frame)
1834 (do_captured_thread_select): Adjust call to print_stack_frame.
1835 * tracepoint.c (tfind_1): Likewise.
1836 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames)
1837 (mi_cmd_stack_info_frame): Likewise.
1838 * mi/mi-interp.c (mi_on_normal_stop): Likewise.
1839 * mi/mi-main.c (mi_cmd_exec_return, mi_cmd_trace_find): Likewise.
1840
1841 2013-09-16 Sergio Durigan Junior <sergiodj@redhat.com>
1842
1843 * value.c (isvoid_internal_fn): Replace "parameter" with
1844 "argument".
1845
1846 2013-09-16 Stan Shebs <stan@codesourcery.com>
1847
1848 * README: Update references to writing code for GDB.
1849 * configure.ac (build_warnings): Remove obsolete comment.
1850 * configure: Regenerate.
1851 * gdbarch.sh: Remove references to gdbint.texinfo.
1852 * gdbarch.h: Regenerate.
1853 * gdbtypes.c (objfile_type): Remove comments referencing internals
1854 manual and D10V.
1855
1856 2013-09-16 Sergio Durigan Junior <sergiodj@redhat.com>
1857
1858 * NEWS: Mention new convenience function $_isvoid.
1859 * value.c (isvoid_internal_fn): New function.
1860 (_initialize_values): Add new convenience function $_isvoid.
1861
1862 2013-09-16 Pierre Muller <muller@sourceware.org>
1863
1864 * arm-linux-tdep.c: Add "elf/common.h" header.
1865 Remove AT_HWCAP macro definintion as it is provided in
1866 added include file.
1867 * s390-tdep.c: Remove system header <elf.h>
1868 Add "elf/common.h" header for AT_HWCAP definition.
1869 (s390_core_read_description): Use correct CORE_ADDR
1870 for hwcap local variable used as third parameter
1871 of function target_auxv_search.
1872
1873 2013-09-14 Pierre Muller <muller@sourceware.org>
1874 Tom Tromey <tromey@redhat.com>
1875 Pedro Alves <palves@redhat.com>
1876
1877 * common/filestuff.c (gdb_fopen_cloexec): Do not try to use "e"
1878 mode if operating system doesn't know O_CLOEXEC.
1879
1880 2013-09-13 Jan Kratochvil <jan.kratochvil@redhat.com>
1881
1882 Code cleanup.
1883 * symfile.c (reread_symbols): Move variable obfd_filename to a more
1884 inner block.
1885
1886 2013-09-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
1887
1888 * NEWS: Mention TDB support.
1889 * features/s390-tdb.xml: New file.
1890 * features/s390-te-linux64.xml: New file.
1891 * features/s390x-te-linux64.xml: New file.
1892 * features/Makefile (WHICH): Add new tdescs above.
1893 (s390-te-linux64-expedite): Set.
1894 (s390x-te-linux64-expedite): Set.
1895 * features/s390-te-linux64.c: New file (generated).
1896 * features/s390x-te-linux64.c: New file (generated).
1897 * regformats/s390-te-linux64.dat: New file (generated).
1898 * regformats/s390x-te-linux64.dat: New file (generated).
1899 * s390-tdep.h (HWCAP_S390_HIGH_GPRS): Define.
1900 (HWCAP_S390_TE): Likewise.
1901 (S390_TDB_DWORD0_REGNUM): Likewise.
1902 (S390_TDB_DWORD0_REGNUM): Likewise.
1903 (S390_TDB_ABORT_CODE_REGNUM): Likewise.
1904 (S390_TDB_CONFLICT_TOKEN_REGNUM): Likewise.
1905 (S390_TDB_ATIA_REGNUM): Likewise.
1906 (S390_TDB_R0_REGNUM): Likewise.
1907 (S390_TDB_R1_REGNUM): Likewise.
1908 (S390_TDB_R2_REGNUM): Likewise.
1909 (S390_TDB_R3_REGNUM): Likewise.
1910 (S390_TDB_R4_REGNUM): Likewise.
1911 (S390_TDB_R5_REGNUM): Likewise.
1912 (S390_TDB_R6_REGNUM): Likewise.
1913 (S390_TDB_R7_REGNUM): Likewise.
1914 (S390_TDB_R8_REGNUM): Likewise.
1915 (S390_TDB_R9_REGNUM): Likewise.
1916 (S390_TDB_R10_REGNUM): Likewise.
1917 (S390_TDB_R11_REGNUM): Likewise.
1918 (S390_TDB_R12_REGNUM): Likewise.
1919 (S390_TDB_R13_REGNUM): Likewise.
1920 (S390_TDB_R14_REGNUM): Likewise.
1921 (S390_TDB_R15_REGNUM): Likewise.
1922 (S390_NUM_REGS): Increase.
1923 (S390_IS_TDBREGSET_REGNUM): New macro.
1924 (s390_regmap_tdb): Declare.
1925 (s390_sizeof_tdbregset): Define.
1926 (tdesc_s390_te_linux64): Declare.
1927 (tdesc_s390x_te_linux64): Likewise.
1928 * s390-tdep.c: Add includes for "auxv.h", <elf.h>,
1929 "features/s390-te-linux64.c", and "features/s390x-te-linux64.c".
1930 (s390_regmap_tdb): New regmap.
1931 (s390_supply_tdb_regset): New function.
1932 (s390_tdb_regset): New regset.
1933 (s390_linux64v2_regset_sections): Add TDB regset to list.
1934 (s390x_linux64v2_regset_sections): Likewise.
1935 (s390_regset_from_core_section): Recognize TDB core note section.
1936 (s390_core_read_description): If HWCAP indicates TE support,
1937 select tdesc_s390_te_linux64 or tdesc_s390_s390x_te_linux64.
1938 (s390_gdbarch_init): Handle TDB regset.
1939 (_initialize_s390_tdep): Initialize new tdescs.
1940 * s390-nat.c (HWCAP_S390_HIGH_GPRS): Remove define.
1941 (have_regset_tdb): New variable.
1942 (s390_native_supply): Support register invalidation.
1943 (fetch_regset): Invalidate registers if ptrace yields ENODATA.
1944 (check_regset): Treat ENODATA as "regset exists".
1945 (s390_linux_fetch_inferior_registers): Add TDB.
1946 (s390_read_description): Check for TDB existence and select
1947 appropriate tdesc.
1948 * gdbserver/Makefile.in (clean): Add removal of new makefile
1949 targets.
1950 (s390-te-linux64.c): New makefile target.
1951 (s390x-te-linux64.c): Likewise.
1952 * gdbserver/configure.srv (srv_regobj): Append new objects
1953 s390-te-linux64.o and s390x-te-linux64.o.
1954 (srv_xmlfiles): Append new files s390-te-linux64.xml,
1955 s390x-te-linux64.xml, and s390-tdb.xml.
1956 * gdbserver/linux-s390-low.c (init_registers_s390_te_linux64): New
1957 declaration.
1958 (tdesc_s390_te_linux64): Likewise.
1959 (init_registers_s390x_te_linux64): Likewise.
1960 (tdesc_s390x_te_linux64): Likewise.
1961 (s390_check_regset): Treat ENODATA as "regset exists".
1962 (s390_arch_setup): Add TDB regset support.
1963 (initialize_low_arch): Initialize registers for new tdescs.
1964
1965 2013-09-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
1966
1967 * s390-tdep.h (S390_IS_GREGSET_REGNUM): New macro.
1968 (S390_IS_FPREGSET_REGNUM): New macro.
1969 * s390-tdep.c (s390_dwarf_regmap): Make const.
1970 (regnum_is_gpr_full): New function for replacing repeated code.
1971 (s390_pseudo_register_name): Use it.
1972 (s390_pseudo_register_type): Likewise.
1973 (s390_pseudo_register_read): Likewise.
1974 (s390_pseudo_register_write): Likewise.
1975 (s390_unwind_pseudo_register): Likewise.
1976 (s390_regmap_gregset): New format for regmap.
1977 (s390x_regmap_gregset): Likewise.
1978 (s390_regmap_fpregset): Likewise.
1979 (s390_regmap_upper): Likewise.
1980 (s390_regmap_last_break): Likewise.
1981 (s390_regmap_system_call): Likewise.
1982 (s390_supply_regset): Adjust to new regmap format.
1983 (s390_collect_regset): Likewise.
1984 * s390-nat.c (s390_native_supply): Adjust to new regmap format.
1985 (s390_native_collect): Likewise.
1986 (supply_gregset): Likewise.
1987 (fill_gregset): Likewise.
1988 (supply_fpregset): Likewise.
1989 (fill_fpregset): Likewise.
1990 (fetch_regset): Likewise.
1991 (store_regset): Likewise.
1992 (s390_linux_fetch_inferior_registers): Likewise.
1993 (s390_linux_fetch_inferior_registers): Likewise.
1994
1995 2013-09-12 Andrew Pinski <apinski@cavium.com>
1996
1997 * aarch64-linux-nat.c (aarch64_linux_set_debug_regs): Zero out regs.
1998
1999 2013-09-10 Andreas Arnez <arnez@linux.vnet.ibm.com>
2000
2001 * config/s390/s390.mh (NATDEPFILES): Add linux-waitpid.o.
2002
2003 2013-09-09 Andrew Burgess <aburgess@broadcom.com>
2004
2005 * top.c (quit_confirm): Remove use of deprecated_init_ui_hook.
2006
2007 2013-09-06 Pedro Alves <palves@redhat.com>
2008
2009 * remote-sim.c (dump_mem, gdbsim_fetch_register)
2010 (gdbsim_store_register, gdbsim_kill, gdbsim_load)
2011 (gdbsim_create_inferior, gdbsim_open, gdbsim_close)
2012 (gdbsim_detach, gdbsim_resume_inferior, gdbsim_wait)
2013 (gdbsim_files_info, gdbsim_mourn_inferior): Send debug output to
2014 gdb_stdlog.
2015
2016 2013-09-06 Pedro Alves <palves@redhat.com>
2017
2018 * remote-sim.c (dump_mem): Constify buf parameter.
2019 gdbsim_xfer_inferior_memory): Rename to ...
2020 (gdbsim_xfer_memory): ... this. Adjust interface as
2021 target_xfer_partial helper.
2022 (gdbsim_xfer_partial): New function.
2023 (init_gdbsim_ops): Don't install a deprecated_xfer_memory hook.
2024 Install a to_xfer_partial hook. Send output to gdb_stdlog.
2025
2026 2013-09-06 Pedro Alves <palves@redhat.com>
2027
2028 * remote-sim.c (gdbsim_xfer_inferior_memory): Use
2029 host_address_to_string, and send debug output to gdb_stdlog.
2030
2031 2013-09-06 Ricard Wanderlof <ricardw@axis.com>
2032
2033 * Makefile.in (ALL_TARGET_OBS): Add cris-linux-tdep.o.
2034 * configure.tgt: Add cris-linux-tdep.o and linux-tdep.o to
2035 gdb_target_obs for cris target.
2036 * cris-tdep.c (struct gdbarch_tdep): Move to cris-tdep.h.
2037 (cris_gdbarch_init): Move calls to
2038 set_gdbarch_fetch_tls_load_module_address and
2039 set_solib_svr4_fetch_link_map_offsets to cris-linux-tdep.c.
2040 Add call to gdbarch_init_osabi.
2041 * cris-linux-tdep.c: New file.
2042 * cris-tdep.h: New file.
2043
2044 2013-09-06 Andrew Burgess <aburgess@broadcom.com>
2045
2046 * tui/tui-io.c (tui_initialize_io): Remove legacy comment referring
2047 to deprecated_init_ui_hook.
2048
2049 2013-09-06 Andrew Burgess <aburgess@broadcom.com>
2050
2051 * cli/cli-interp.c (_initialize_cli_interp): Add a
2052 command_loop_proc to interp_procs.
2053 * event-top.c (cli_command_loop): Change signature to match
2054 interp_command_loop_ftype.
2055 * event-top.h (cli_command_loop): Same.
2056 * interps.c (interp_new): Require every interpreter to have a
2057 command_loop_proc.
2058 (current_interp_command_loop): Just call the command_loop_proc on
2059 the current interpreter.
2060 * tui/tui-interp.c (_initialize_tui_interp): Add a
2061 command_loop_proc to interp_procs.
2062
2063 2013-09-06 Ricard Wanderlof <ricardw@axis.com>
2064
2065 * cris-tdep.c (cris_gdbarch_init): Add call to
2066 get_gdbarch_fetch_tls_load_module_address.
2067
2068 2013-09-06 Ricard Wanderlof <ricardw@axis.com>
2069
2070 * cris-tdep.c (cris_elf_greg_t): Rename from elf_greg_t.
2071 (cris_elf_gregset_t): Rename from elf_gregset_t.
2072 (crisv32_elf_gregset_t): Adjust.
2073 (cris_supply_gregset, fetch_core_registers): Adjust.
2074
2075 2013-09-06 Ricard Wanderlof <ricardw@axis.com>
2076
2077 * cris-tdep.c (elf_greg_t): Change typedef to unsigned char[4]
2078
2079 2013-09-05 Andrew Burgess <aburgess@broadcom.com>
2080
2081 * defs.h (deprecated_command_loop_hook): Remove, including
2082 references in comments.
2083 * interps.c (current_interp_command_loop): No longer use
2084 deprecated_command_loop_hook.
2085 (clear_interpreter_hooks): Remove deprecated_command_loop_hook
2086 setup.
2087 * top.c (deprecated_command_loop_hook): Remove.
2088
2089 2013-09-05 Pedro Alves <palves@redhat.com>
2090
2091 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): 'dwarf_regnum'
2092 local is now int instead of ULONGEST. Print it with %d
2093 instead of paddress.
2094
2095 2013-09-05 Tristan Gingold <gingold@adacore.com>
2096
2097 * MAINTAINERS: Remove avr maintainership.
2098
2099 2013-09-05 Pedro Alves <palves@redhat.com>
2100
2101 * findvar.c (value_of_register): Rework in terms of
2102 value_of_register_lazy.
2103
2104 2013-09-05 Muhammad Bilal <mbilal@codesourcery.com>
2105
2106 * symfile.c (add_symbol_file_command): Remove trailing
2107 whitespaces and blank line after comment.
2108
2109 2013-09-05 Pedro Alves <palves@redhat.com>
2110
2111 * tui/tui-regs.c (tui_register_format): Don't look at the
2112 register's name here. Return string representing register
2113 value instead of storing it in the data element.
2114 (tui_get_register): Compare register string representations
2115 instead of register value states and contents.
2116
2117 2013-09-05 Pedro Alves <palves@redhat.com>
2118
2119 PR tui/15933
2120 * tui/tui-regs.c (tui_show_registers): Show registers of the
2121 selected frame, not the current frame.
2122
2123 2013-09-05 Ricard Wanderlof <ricardw@axis.com>
2124
2125 * MAINTAINERS (Write After Approval): Add myself to the list.
2126
2127 2013-09-04 Doug Evans <dje@google.com>
2128
2129 * dwarf2read.c (queue_and_load_all_dwo_tus): New function.
2130 (queue_and_load_dwo_tu): New function.
2131 (lookup_dwo_signatured_type): Set per_cu.tu_read.
2132 (maybe_queue_comp_unit): Rename this_cu argument to dependent_cu.
2133 Make dependent_cu optional.
2134 (dw2_do_instantiate_symtab): If we just loaded a CU from a DWO,
2135 and an older .gdb_index is in use, queue and load all its TUs too.
2136
2137 2013-09-04 Jan Kratochvil <jan.kratochvil@redhat.com>
2138
2139 Code cleanup: Change OPF_DISABLE_REALPATH to OPF_RETURN_REALPATH.
2140 * cli/cli-cmds.c (find_and_open_script): Add OPF_RETURN_REALPATH to
2141 variable search_flags.
2142 * defs.h (OPF_DISABLE_REALPATH): Rename to ...
2143 (OPF_RETURN_REALPATH): ... here.
2144 * dwarf2read.c (try_open_dwop_file): Set OPF_RETURN_REALPATH for flags.
2145 * exec.c (exec_file_attach): Remove OPF_DISABLE_REALPATH from openp
2146 call. Twice.
2147 * nto-tdep.c (nto_find_and_open_solib): Add OPF_RETURN_REALPATH for
2148 openp call.
2149 * solib.c (solib_find): Likewise. Four times.
2150 * source.c (openp): Change OPF_DISABLE_REALPATH to OPF_RETURN_REALPATH
2151 in the function comment and for the realpath_fptr variable.
2152 (source_full_path_of): Add OPF_RETURN_REALPATH for openp call.
2153 (find_and_open_source): Likewise. Twice.
2154 * symfile.c (symfile_bfd_open): Likewise, also twice.
2155
2156 2013-09-04 Doug Evans <dje@google.com>
2157
2158 * progspace.c (save_current_space_and_thread): Remove unnecessary
2159 call to save_current_inferior.
2160
2161 2013-09-04 Andrew Burgess <aburgess@broadcom.com>
2162
2163 * sh64-tdep.c (sh64_do_register): Return after printing message
2164 about unavailable register contents.
2165
2166 2013-09-04 Muhammad Bilal <mbilal@codesourcery.com>
2167 Pedro Alves <palves@redhat.com>
2168
2169 * symfile.c (add_symbol_file_command): Error out on unknown
2170 option. Handle EXPECTING_SEC_ADDR/EXPECTING_SEC_NAME before '-'
2171 options and collapse into single conditional branch.
2172
2173 2013-09-03 Luis Machado <lgustavo@codesourcery.com>
2174
2175 * inf-child.c (inf_child_follow_fork): New parameter
2176 detach_fork.
2177 * inf-ptrace.c (inf_ptrace_follow_fork): Likewise.
2178 * inf-ttrace.c (inf_ttrace_follow_fork): Likewise.
2179 * inferior.h (detach_fork): Remove.
2180 * infrun.c (detach_fork): Adjust comment and make it
2181 static.
2182 (follow_fork): Pass detach_fork parameter to
2183 target_follow_fork.
2184 * linux-nat.c (linux_child_follow_fork): New parameter
2185 detach_fork.
2186 * target.c (target_follow_fork): New parameter detach_fork.
2187 Pass detach_fork as parameter and print its value.
2188 * target.h (struct target_ops) <to_follow_fork>: New int
2189 parameter.
2190 (target_follow_fork): New parameter detach_fork.
2191
2192 2013-09-03 Joel Brobecker <brobecker@adacore.com>
2193
2194 * solib-ia64-hpux.c (ia64_hpux_relocate_section_addresses):
2195 Replace sec->bfd by sec->the_bfd_section->owner.
2196
2197 2013-09-03 Yao Qi <yao@codesourcery.com>
2198
2199 * linux-tdep.c (linux_is_uclinux): New function. Code moved
2200 from linux_has_shared_address_space.
2201 (linux_has_shared_address_space): Call linux_is_uclinux.
2202 * linux-tdep.h (linux_is_uclinux): Declare.
2203 * m68klinux-tdep.c (m68k_linux_get_sigtramp_info): Call
2204 linux_is_uclinux.
2205
2206 2013-09-03 Yao Qi <yao@codesourcery.com>
2207
2208 * config/djgpp/fnchange.lst: Remove entry of
2209 i386-interix-nat.c and i386-interix-tdep.c.
2210 * configure.ac: Remove '*-*-interix*'.
2211 * configure: Re-generated.
2212 * defs.h (enum gdb_osabi): Remove GDB_OSABI_INTERIX.
2213 * i386-cygwin-tdep.c (i386_cygwin_osabi_sniffer): Remove
2214 obsolete comments.
2215 * osabi.c (gdb_osabi_names): Remove "Interix".
2216
2217 2013-09-03 Yao Qi <yao@codesourcery.com>
2218
2219 * arch-utils.c: Fix typo in the comment to gdbarch_update_p.
2220
2221 2013-09-02 Markus Metzger <markus.t.metzger@intel.com>
2222
2223 * record.h (record_print_flag) <record_print_src_line,
2224 record_print_insn_range>: Rename into ...
2225 (record_print_flag) <record_print_src_line,
2226 record_print_insn_range>: ... this. Update all users.
2227
2228 2013-09-02 Pierre Muller <muller@sourceware.org>
2229
2230 * windows-nat.c (windows_xfer_memory): Handle ERROR_PARTIAL_COPY
2231 error code.
2232
2233 2013-09-02 Pierre Muller <muller@sourceware.org>
2234
2235 * windows-nat.c (windows_xfer_memory): Fix compilation failure
2236 by use of plongest function.
2237
2238 2013-09-02 Tristan Gingold <gingold@adacore.com>
2239
2240 * NEWS: Add entry mentioning support for native Windows x64
2241 SEH data.
2242
2243 * amd64-windows-tdep.c: #include "objfiles.h", "frame-unwind.h",
2244 "coff/internal.h", "coff/i386.h", "coff/pe.h" and "libcoff.h".
2245 (struct amd64_windows_frame_cache): New struct.
2246 (amd64_windows_w2gdb_regnum): New global.
2247 (pc_in_range, amd64_windows_frame_decode_epilogue)
2248 (amd64_windows_frame_decode_insns, amd64_windows_find_unwind_info)
2249 (amd64_windows_frame_cache, amd64_windows_frame_prev_register)
2250 (amd64_windows_frame_this_id): New functions.
2251 (amd64_windows_frame_unwind): New static global.
2252 (amd64_windows_skip_prologue): New function.
2253 (amd64_windows_init_abi): Call frame_unwind_prepend_unwinder
2254 with amd64_windows_frame_unwind. Call set_gdbarch_skip_prologue
2255 with amd64_windows_skip_prologue.
2256
2257 2013-08-30 Joel Brobecker <brobecker@adacore.com>
2258
2259 GDB 7.6.1 released.
2260
2261 2013-08-30 Pedro Alves <palves@redhat.com>
2262
2263 * mi/mi-main.c (mi_cmd_trace_find): Use LOC_AND_ADDRESS instead of
2264 SRC_AND_LOC.
2265
2266 2013-08-30 Pedro Alves <palves@redhat.com>
2267
2268 * thread.c (restore_selected_frame): Use SRC_AND_LOC, and change
2269 warning text.
2270
2271 2013-08-30 Pedro Alves <palves@redhat.com>
2272
2273 * bsd-kvm.c (bsd_kvm_open, bsd_kvm_proc_cmd, bsd_kvm_pcb_cmd):
2274 Adjust arguments to print_stack_frame.
2275
2276 2013-08-30 Pedro Alves <palves@redhat.com>
2277
2278 * ada-tasks.c (task_command_1): Write SRC_AND_LOC instead '1'.
2279
2280 2013-08-30 Pedro Alves <palves@redhat.com>
2281
2282 * frame.h (show_and_print_stack_frame): Delete declaration.
2283
2284 2013-08-30 Phil Muldoon <pmuldoon@redhat.com>
2285
2286 PR python/15461
2287 * python/py-arch.c (ARCHPY_REQUIRE_VALID): New macro.
2288 (archpy_name): Check for valid architecture.
2289 (archpy_disassemble): Ditto.
2290
2291 2013-08-29 Joel Brobecker <brobecker@adacore.com>
2292
2293 * rs6000-nat.c (rs6000_ptrace32): Cast "addr" to "uintptr_t"
2294 instead of "long long" in call to ptrace64.
2295
2296 2013-08-29 Andrew Burgess <aburgess@broadcom.com>
2297
2298 * mi/mi-interp.c (mi_command_loop): Change signature to match
2299 interp_command_loop_ftype.
2300 (mi1_command_loop): Remove.
2301 (mi2_command_loop): Remove.
2302 (mi3_command_loop): Remove.
2303 (mi_interpreter_resume): Remove setting of
2304 deprecated_command_loop_hook.
2305 (_initialize_mi_interp): Set mi_command_loop as the command loop
2306 callback.
2307
2308 2013-08-29 Sanimir Agovic <sanimir.agovic@intel.com>
2309
2310 * valops.c (do_search_struct_field): Pass v2 instead of base_type to
2311 value_type.
2312
2313 2013-08-29 Sanimir Agovic <sanimir.agovic@intel.com>
2314
2315 * value.c (allocate_value_contents): Make static.
2316 * value.h (allocate_value_contents): Remove prototype.
2317
2318 2013-08-29 Sanimir Agovic <sanimir.agovic@intel.com>
2319
2320 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Use value_at_lazy instead
2321 of assembling value via allocate_value_lazy and attribute setter.
2322 * findvar.c (default_read_var_value): Use value_at_lazy instead of
2323 assembling value via allocate_value_lazy and attribute setter.
2324 * valops.c (do_search_struct_field): Use value_at_lazy instead of
2325 assembling value via allocate_value_lazy and attribute setter.
2326
2327 2013-08-29 Sanimir Agovic <sanimir.agovic@intel.com>
2328
2329 * value.c (value_from_contents_and_address): Replace allocate_value and
2330 memcpy with value_from_contents.
2331
2332 2013-08-29 Phil Muldoon <pmuldoon@redhat.com>
2333
2334 * python/py-framefilter.c (py_print_frame): Remove usage of
2335 PyString_AsString. Use python_string_to_host_string instead.
2336 Refactor function to work with a string as a new allocation
2337 instead of a pointer.
2338 (py_print_frame): Ditto.
2339 * python/lib/gdb/frames.py (return_list): Cain iterators together
2340 instead of adding them as a list.
2341 (_sort_list): Call return_list, and remove duplicate code.
2342 (execute_frame_filters): Convert iterator to a list with list().
2343 * python/lib/gdb/command/frame_filters.py
2344 (SetFrameFilterPriority._set_filter_priority): Convert priority
2345 attribute to an integer.
2346 * python/lib/gdb/FrameIterator.py (FrameIterator.next): Define
2347 wrapper function __next__.
2348 * python/lib/gdb/FrameDecorator.py: If basestring not defined,
2349 define as "str".
2350
2351 2013-08-29 Phil Muldoon <pmuldoon@redhat.com>
2352
2353 PR python/15752
2354 * python/py-framefilter.c (apply_frame_filter): Check
2355 gdb_python_initialized. Exit if the Python frame-filter code
2356 cannot be initialized.
2357
2358 2013-08-29 Phil Muldoon <pmuldoon@redhat.com>
2359
2360 PR cli/15842
2361 * top.c (print_gdb_version): Remove erroneous newline after help
2362 text.
2363
2364 2013-08-29 Yao Qi <yao@codesourcery.com>
2365
2366 * varobj.c (install_dynamic_child): Remove trailing space.
2367 Add one blank line after variable declaration.
2368
2369 2013-08-28 Jan Kratochvil <jan.kratochvil@redhat.com>
2370
2371 PR gdb/15415
2372 * corefile.c (get_exec_file): Use exec_filename.
2373 * defs.h (OPF_DISABLE_REALPATH): New definition. Add new comment.
2374 * exec.c (exec_close): Free EXEC_FILENAME.
2375 (exec_file_attach): New variable canonical_pathname. Use
2376 OPF_DISABLE_REALPATH. Call gdb_realpath explicitly. Set
2377 EXEC_FILENAME.
2378 * exec.h (exec_filename): New.
2379 * inferior.c (print_inferior, inferior_command): Use
2380 PSPACE_EXEC_FILENAME.
2381 * mi/mi-main.c (print_one_inferior): Likewise.
2382 * progspace.c (clone_program_space, print_program_space): Likewise.
2383 * progspace.h (struct program_space): New field pspace_exec_filename.
2384 * source.c (openp): Describe OPF_DISABLE_REALPATH. New variable
2385 realpath_fptr, initialize it from OPF_DISABLE_REALPATH, use it.
2386
2387 2013-08-28 Will Newton <will.newton@linaro.org>
2388
2389 * common/linux-ptrace.c: Include stdint.h unconditionally.
2390
2391 2013-08-28 Jan Kratochvil <jan.kratochvil@redhat.com>
2392
2393 Code cleanup.
2394 * nto-tdep.c (nto_find_and_open_solib): Use OPF_TRY_CWD_FIRST.
2395
2396 2013-08-28 Yao Qi <yao@codesourcery.com>
2397 Pedro Alves <palves@redhat.com>
2398
2399 * event-top.c (gdb_setup_readline): Call stderr_fileopen
2400 instead of stdio_fileopen.
2401 * main.c (captured_main) [__MINGW32__]: Set stderr unbuffered.
2402 .Call stderr_fileopen instead of stdio_fileopen.
2403 * ui-file.c [__MINGW32__] (stderr_file_write): New function.
2404 [__MINGW32__] (stderr_file_fputs): New function.
2405 (stderr_fileopen): New function.
2406 * ui-file.h (stderr_fileopen): Declare.
2407
2408 2013-08-27 Doug Evans <dje@google.com>
2409
2410 * dwarf2read.c (struct dwarf2_cu): Tweak comment.
2411 (struct dwarf2_per_cu_data): Ditto.
2412 (maybe_queue_comp_unit): Delete forward decl. Add comment.
2413 (process_imported_unit_die): Ditto.
2414 (follow_die_sig_1): Simplify assert.
2415
2416 2013-08-27 Pedro Alves <palves@redhat.com>
2417
2418 * windows-nat.c (windows_xfer_memory): Adjust prototype to follow
2419 xfer_partial's interface. Return TARGET_XFER_E_IO on error.
2420 (windows_xfer_partial): Defer TARGET_OBJECT_MEMORY handling to
2421 windows_xfer_memory directly.
2422 (init_windows_ops): Don't install a deprecated_xfer_memory method.
2423
2424 2013-08-27 Pedro Alves <palves@redhat.com>
2425
2426 * darwin-nat.c (darwin_xfer_memory): Delete.
2427 (_initialize_darwin_inferior): Don't install a
2428 deprecated_xfer_memory method.
2429
2430 2013-08-27 Pedro Alves <pedro@codesourcery.com>
2431 Yao Qi <yao@codesourcery.com>
2432
2433 * mi/mi-cmd-stack.c (list_args_or_locals): Adjust prototype.
2434 (parse_no_frames_option): Remove.
2435 (mi_cmd_stack_list_locals): Handle --skip-unavailable.
2436 (mi_cmd_stack_list_args): Adjust.
2437 (mi_cmd_stack_list_variables): Handle --skip-unavailable.
2438 (list_arg_or_local): Add new parameter 'skip_unavailable'. Return
2439 early if SKIP_UNAVAILABLE is true and ARG->val is unavailable.
2440 Caller update.
2441 (list_args_or_locals): New parameter 'skip_unavailable'.
2442 Handle it.
2443 * valprint.c (scalar_type_p): Rename to ...
2444 (val_print_scalar_type_p): ... this. Make extern.
2445 (val_print, value_check_printable): Adjust.
2446 * valprint.h (val_print_scalar_type_p): Declare.
2447 * value.c (value_entirely_unavailable): New function.
2448 * value.h (value_entirely_unavailable): Declare.
2449
2450 * NEWS: Mention the new option "--skip-unavailable" to MI
2451 commands '-stack-list-locals', '-stack-list-arguments' and
2452 '-stack-list-variables'.
2453
2454 2013-08-27 Yao Qi <yao@codesourcery.com>
2455
2456 * mi/mi-cmd-stack.c (parse_no_frames_option): Remove.
2457 (mi_cmd_stack_list_args): Use mi_getopt_silent to handle
2458 options.
2459 * mi/mi-getopt.c (mi_getopt): Remove.
2460 (mi_getopt_1): Renamed from mi_getopt. Add one parameter
2461 'error_on_unknown'.
2462 (mi_getopt): Call mi_getopt_1.
2463 (mi_getopt_silent): New.
2464 * mi/mi-getopt.h (mi_getopt_silent): Declare.
2465
2466 2013-08-26 Doug Evans <dje@google.com>
2467
2468 PR symtab/15885
2469 * dwarf2read.c (dw2_dump): Print some minimal information indicating
2470 .gdb_index is in use.
2471 * symfile.c (reread_symbols): Reset objfile->sf.
2472
2473 * NEWS: Document "mt print objfiles" now takes optional regexp.
2474 * symmisc.c (maintenance_print_objfiles): Argument is now an optional
2475 regexp of objfiles to print.
2476 (_initialize_symmisc): Update doc string for "mt print objfiles".
2477
2478 * dwarf2read.c (write_psymtabs_to_index): Move error checks ahead of
2479 missing debug info checks.
2480
2481 2013-08-26 Raunaq Bathija <raunaq12@in.ibm.com>
2482 Ulrich Weigand <uweigand@de.ibm.com>
2483
2484 * xcoffread.c (arrange_linetable): Add fix to correctly handle
2485 line tables generated by XLC compiled binaries.
2486
2487 2013-08-23 Doug Evans <dje@google.com>
2488
2489 * symmisc.c (dump_symtab): Delete prototype.
2490 (dump_msymbols, dump_objfile): Ditto.
2491 (maintenance_info_symtabs): Mark as dont_repeat.
2492 (_initialize_symmisc): Improve doc string for "mt info symtabs".
2493
2494 * elfread.c (elf_symfile_read): Move "Done reading minimal symbols"
2495 debugging printf to better location.
2496
2497 2013-08-23 Pedro Alves <palves@redhat.com>
2498
2499 * target.c (target_read_live_memory): Change type of 'ret' local
2500 to LONGEST.
2501
2502 2013-08-23 Pedro Alves <palves@redhat.com>
2503
2504 * remote.c (remote_write_bytes_aux, remote_write_bytes)
2505 (remote_read_bytes): Change return type to LONGEST, and adjust to
2506 return a target_xfer_error on error.
2507 (remote_xfer_memory): Delete.
2508 (remote_flash_write): Change type of 'ret' local to LONGEST.
2509 (remote_xfer_partial, remote_xfer_partial): Adjust.
2510 (init_remote_ops): Don't install a deprecated_xfer_memory hook.
2511
2512 2013-08-23 Pierre Muller <muller@sourceware.org>
2513
2514 ARI fix: Push # directives to start of line.
2515 * rs6000-nat.c (rs6000_ptrace32, rs6000_ptrace64): Rule applied.
2516
2517 2013-08-12 Muhammad Waqas <mwaqas@codesourcery.com>
2518
2519 PR gdb/15501
2520 * breakpoint.c (enable_command, disable_command): Iterate over
2521 all specified breakpoint locations.
2522
2523 2013-08-22 Luis Machado <lgustavo@codesourcery.com>
2524
2525 * common/linux-ptrace.c (linux_fork_to_function): Push #
2526 directives to the start of the line.
2527 (linux_check_ptrace_features): Fix warning message to use
2528 the "_" markup.
2529
2530 2013-08-22 Luis Machado <lgustavo@codesourcery.com>
2531
2532 * Makefile.in (HFILES_NO_SRCDIR): Add nat/linux-nat.h and
2533 nat/linux-waitpid.h.
2534 (linux-waitpid.o): New object file rule.
2535 * common/linux-ptrace.c: Include nat/linux-waitpid.h.
2536 (current_ptrace_options): Moved from linux-nat.c.
2537 (linux_ptrace_test_ret_to_nx): Use type casts for ptrace
2538 parameters.
2539 (linux_fork_to_function): New function.
2540 (linux_grandchild_function): Likewise.
2541 (linux_child_function): Likewise.
2542 (linux_check_ptrace_features): New function, heavily
2543 based on linux-nat.c:linux_test_for_tracefork.
2544 (linux_enable_event_reporting): New function.
2545 (ptrace_supports_feature): Likewise.
2546 (linux_supports_tracefork): Likewise.
2547 (linux_supports_traceclone): Likewise.
2548 (linux_supports_tracevforkdone): Likewise.
2549 (linux_supports_tracesysgood): Likewise.
2550 * common/linux-ptrace.h (HAS_NOMMU): Moved from
2551 gdbserver/linux-low.c.
2552 (linux_enable_event_reporting): New declaration.
2553 (linux_supports_tracefork): Likewise.
2554 (linux_supports_traceclone): Likewise.
2555 (linux_supports_tracevforkdone): Likewise.
2556 (linux_supports_tracesysgood): Likewise.
2557 * config.in (PTRACE_TYPE_ARG4): Regenerate.
2558 * config/aarch64/linux.mh (NATDEPFILES): Add linux-waitpid.o.
2559 * config/alpha/alpha-linux.mh (NATDEPFILES): Likewise.
2560 * config/arm/linux.mh (NATDEPFILES): Likewise.
2561 * config/i386/linux.mh (NATDEPFILES): Likewise.
2562 * config/i386/linux64.mh (NATDEPFILES): Likewise.
2563 * config/ia64/linux.mh (NATDEPFILES): Likewise.
2564 * config/m32r/linux.mh (NATDEPFILES): Likewise.
2565 * config/m68k/linux.mh (NATDEPFILES): Likewise.
2566 * config/mips/linux.mh (NATDEPFILES): Likewise.
2567 * config/pa/linux.mh (NATDEPFILES): Likewise..
2568 * config/powerpc/linux.mh (NATDEPFILES): Likewise..
2569 * config/powerpc/ppc64-linux.mh (NATDEPFILES): Likewise.
2570 * config/powerpc/spu-linux.mh (NATDEPFILES): Likewise.
2571 * config/sparc/linux.mh (NATDEPFILES): Likewise.
2572 * config/sparc/linux64.mh (NATDEPFILES): Likewise.
2573 * config/tilegx/linux.mh (NATDEPFILES): Likewise.
2574 * config/xtensa/linux.mh (NATDEPFILES): Likewise.
2575 * configure.ac (AC_CACHE_CHECK): Add void * to the list of
2576 ptrace's 4th argument's types.
2577 Check the type of PTRACE_TYPE_ARG4.
2578 * configure: Regenerate.
2579 * linux-nat.c: Include nat/linux-nat.h and nat/linux-waitpid.h.
2580 (SYSCALL_SIGTRAP): Moved to nat/linux-nat.h.
2581 (linux_supports_tracefork_flag): Remove.
2582 (linux_supports_tracesysgood_flag): Likewise.
2583 (linux_supports_tracevforkdone_flag): Likewise.
2584 (current_ptrace_options): Moved to
2585 common/linux-ptrace.c.
2586 (linux_tracefork_child): Remove.
2587 (my_waitpid): Remove.
2588 (linux_test_for_tracefork): Renamed to
2589 linux_check_ptrace_features and moved to common/linux-ptrace.c.
2590 (linux_test_for_tracesysgood): Remove.
2591 (linux_supports_tracesysgood): Remove.
2592 (linux_supports_tracefork): Remove.
2593 (linux_supports_tracevforkdone): Remove.
2594 (linux_enable_tracesysgood): Remove.
2595 (linux_enable_event_reporting): Remove.
2596 (linux_init_ptrace): New function.
2597 (linux_child_post_attach): Call linux_init_ptrace.
2598 (linux_child_post_startup_inferior): Call linux_init_ptrace.
2599 (linux_child_follow_fork): Call linux_supports_tracefork
2600 and linux_supports_tracevforkdone.
2601 (linux_child_insert_fork_catchpoint): Call
2602 linux_supports_tracefork.
2603 (linux_child_insert_vfork_catchpoint): Likewise.
2604 (linux_child_set_syscall_catchpoint): Call
2605 linux_supports_tracesysgood.
2606 (lin_lwp_attach_lwp): Call linux_supports_tracefork.
2607 * nat/linux-nat.h: New file.
2608 * nat/linux-waitpid.c: New file.
2609 * nat/linux-waitpid.h: New file.
2610
2611 2013-08-22 Samuel Bronson <naesten@gmail.com>
2612
2613 ARM Linux support for `catch syscall'.
2614 * syscalls/arm-linux.py: New file.
2615 * syscalls/arm-linux.xml: Likewise.
2616 * arm-linux-tdep.c (arm_linux_get_syscall_number): New function.
2617 (arm_linux_init_abi): Register the new function and syscall xml file.
2618 * data-directory/Makefile.in: Install the new syscall xml file.
2619 * NEWS: Brag about this.
2620
2621 2013-08-22 Pedro Alves <palves@redhat.com>
2622
2623 PR gdb/15871
2624 * corefile.c (target_xfer_memory_error): New function.
2625 (memory_error): Defer EIO to target_memory_error.
2626 (read_memory): Use target_xfer_partial, and handle finer-grained
2627 target xfer errors.
2628 * target.c (target_xfer_error_to_string): New function.
2629 (memory_xfer_partial_1): If memory is known to be
2630 unavailable, return TARGET_XFER_E_UNAVAILABLE instead of -1.
2631 (target_xfer_partial): Make extern.
2632 * target.h (enum target_xfer_error): New enum.
2633 (target_xfer_error_to_string): Declare function.
2634 (target_xfer_partial): Declare function.
2635 (struct target_ops) <xfer_partial>: Adjust describing comment.
2636
2637 2013-08-22 Alan Modra <amodra@gmail.com>
2638
2639 * configure.host: Support powerpc64le-linux and powerpcle-linux hosts.
2640 * configure.tgt: Likewise as targets.
2641
2642 2013-08-20 Doug Evans <dje@google.com>
2643
2644 * buildsym.c (subfile_stack): Move here from buildsym.h.
2645 (pending_macros): Ditto.
2646 (get_macro_table): New function.
2647 (buildsym_init): Initialize subfile_stack.
2648 * coffread.c (type_vector,type_vector_length): Moved here from
2649 buildsym.h.
2650 (INITIAL_TYPE_VECTOR_LENGTH): Ditto.
2651 (coff_symtab_read): Use it.
2652 * dbxread.c (read_ofile_symtab): Delete init of subfile_stack.
2653 * dwarf2read.c (macro_start_file): Replace uses of pending_macros
2654 with call to get_macro_table.
2655 * stabsread.c (type_vector,type_vector_length): Moved here from
2656 buildsym.h.
2657 (INITIAL_TYPE_VECTOR_LENGTH): Ditto.
2658 * buildsym.h (get_macro_table): Declare.
2659
2660 2013-08-20 Tom Tromey <tromey@redhat.com>
2661
2662 * dbxread.c (record_minimal_symbol): Make 'name' argument const.
2663 Update.
2664 (read_dbx_dynamic_symtab): Make 'name' const. Remove casts.
2665
2666 2013-08-20 Doug Evans <dje@google.com>
2667
2668 * blockframe.c: Remove #include "psymtab.h".
2669 * cp-support.c: Ditto.
2670 * source.c: Ditto.
2671 * stack.c: Ditto.
2672
2673 2013-08-20 Tom Tromey <tromey@redhat.com>
2674
2675 PR python/15816:
2676 * exceptions.h (return_mask): Now an enum.
2677 (RETURN_MASK_QUIT, RETURN_MASK_ERROR, RETURN_MASK_ALL): Now
2678 enum constants.
2679
2680 2013-08-20 Tom Tromey <tromey@redhat.com>
2681
2682 * cp-namespace.c (cp_lookup_symbol_imports_or_template): Use
2683 get_objfile_arch.
2684 * elfread.c (elf_rel_plt_read, elf_gnu_ifunc_record_cache)
2685 (elf_gnu_ifunc_resolve_by_got): Use get_objfile_arch.
2686 * jit.c (jit_object_close_impl): Update.
2687 * jv-lang.c (get_dynamics_objfile): Update.
2688 * linespec.c (add_minsym): Use get_dynamics_objfile.
2689 * objfiles.c (get_objfile_bfd_data): Initialize 'gdbarch' field.
2690 (allocate_objfile): Don't initialize 'gdbarch' field.
2691 (get_objfile_arch): Update.
2692 * objfiles.h (struct objfile_per_bfd_storage) <gdbarch>: New field,
2693 moved from...
2694 (struct objfile) <gdbarch>: ... here. Remove.
2695 * stap-probe.c (stap_can_evaluate_probe_arguments): Use
2696 get_objfile_arch.
2697 * symfile.c (init_entry_point_info): Use get_objfile_arch.
2698
2699 2013-08-20 Alan Modra <amodra@gmail.com>
2700
2701 * doublest.c (convert_floatformat_to_doublest): Use fmt->split_half
2702 for IBM long double nan and inf.
2703 (floatformat_is_negative, floatformat_classify,
2704 floatformat_mantissa): Similarly.
2705 (floatformat_ieee_single, floatformat_ieee_double,
2706 floatformat_ieee_quad, floatformat_arm_ext,
2707 floatformat_ia64_spill): Delete unused vars.
2708 (_initialize_doublest): Delete unused function.
2709 * gdbtypes.c (floatformats_ibm_long_double): Use new big- and
2710 little-endian variants of floatformat_ibm_long_double.
2711
2712 2013-08-19 Luis Machado <lgustavo@codesourcery.com>
2713
2714 * Makefile.in (SFILES): Remove common/target-common.c and
2715 add target/waitstatus.c.
2716 (HFILES_NO_SRCDIR): Remove common/target-common.h and add
2717 target/resume.h, target/wait.h and target/waitstatus.h.
2718 (COMMON_OBS): Remove target-common.o and add
2719 waitstatus.o.
2720 (target-common.o): Remove.
2721 (waitstatus.o): New target object file.
2722 * common/target-common.c: Move contents to
2723 target/waitstatus.c and remove.
2724 * common/target-common.h: Move contents to other files and
2725 remove.
2726 (enum resume_kind: Move to target/resume.h.
2727 (TARGET_WNOHANG): Move to target/wait.h.
2728 (enum target_waitkind): Move to target/waitstatus.h.
2729 (struct target_waitstatus): Likewise.
2730 * target.h: Do not include target-common.h and
2731 include target/resume.h, target/wait.h and
2732 target/waitstatus.h.
2733 * target/resume.h: New file.
2734 * target/wait.h: New file.
2735 * target/waitstatus.h: New file.
2736 * target/waitstatus.c: New file.
2737
2738 2013-08-19 Pedro Alves <palves@redhat.com>
2739
2740 * linux-nat.c (linux_test_for_tracefork)
2741 (linux_test_for_tracesysgood, linux_child_follow_fork)
2742 (lin_lwp_attach_lwp, linux_nat_resume): Don't block child signals.
2743 (linux_nat_wait_1): Extend comment.
2744 (linux_async_pipe): Add comment.
2745
2746 2013-08-15 Kevin Buettner <kevinb@redhat.com>
2747
2748 * rl78-tdep.c (RL78_RAW_PC_REGNUM): New enum.
2749 (RL78_PC_REGNUM): Move to list of pseudo-register enums.
2750 (rl78_register_type, rl78_register_name, rl78_register_reggroup_p):
2751 Update to account for fact that PC is now a pseudo-register.
2752 (rl78_pseudo_register_write, rl78_pseudo_register_read): Add
2753 cases for RL78_PC_REGNUM.
2754
2755 2013-08-15 Muhammad Bilal <mbilal@codesourcery.com>
2756
2757 PR cli/15841
2758 * top.c (quit_force): Skip writing history file
2759 if input is not from terminal.
2760
2761 2013-08-14 Tom Tromey <tromey@redhat.com>
2762
2763 * remote.c (struct remote_state) <echo_nextthread, nextthread,
2764 resultthreadlist>: New fields.
2765 (OPAQUETHREADBYTES, threadref, MAXTHREADLISTRESULTS): Move earlier.
2766 (remote_get_threadlist, remote_threadlist_iterator): Use
2767 new fields. Remove static variables.
2768
2769 2013-08-14 Tom Tromey <tromey@redhat.com>
2770
2771 * remote.c (struct remote_state) <remote_stopped_by_watchpoint_p,
2772 remote_watch_data_address>: New fields.
2773 (remote_stopped_by_watchpoint_p, remote_watch_data_address): Remove.
2774 (process_stop_reply, remote_wait_as)
2775 (remote_check_watch_resources, remote_stopped_data_address): Update.
2776
2777 2013-08-14 Tom Tromey <tromey@redhat.com>
2778
2779 * remote.c (struct remote_state) <async_client_callback,
2780 async_client_context>: New fields.
2781 (async_client_callback, async_client_context): Remove.
2782 (remote_async_serial_handler, remote_async): Update.
2783
2784 2013-08-14 Tom Tromey <tromey@redhat.com>
2785
2786 * remote.c (sizeof_pkt): Remove.
2787 (remote_trace_find): Use rs->buf_size, not sizeof_pkt.
2788
2789 2013-08-14 Tom Tromey <tromey@redhat.com>
2790
2791 * remote.c (struct remote_state) <use_threadinfo_query,
2792 use_threadextra_query>: New fields.
2793 (remote_threads_info, remote_threads_extra_info)
2794 (remote_open_1): Update.
2795
2796 2013-08-14 Tom Tromey <tromey@redhat.com>
2797
2798 * remote.c (struct remote_state) <finished_object,
2799 finished_annex, finished_offset>: New fields.
2800 (remote_read_qxfer): Use remote_state fields; remove static
2801 variables.
2802
2803 2013-08-14 Tom Tromey <tromey@redhat.com>
2804
2805 * remote.c (struct remote_state) <last_sent_step>:
2806 New field.
2807 (last_sent_step): Remove.
2808 (remote_resume, remote_wait_as): Update.
2809
2810 2013-08-14 Tom Tromey <tromey@redhat.com>
2811
2812 * remote.c (struct remote_state) <last_sent_signal>:
2813 New field.
2814 (last_sent_signal): Remove.
2815 (new_remote_state, remote_resume, remote_wait_as): Update.
2816
2817 2013-08-14 Tom Tromey <tromey@redhat.com>
2818
2819 * remote.c (struct remote_state) <last_program_signals_packet>:
2820 New field.
2821 (last_program_signals_packet): Remove.
2822 (remote_program_signals, remote_open_1): Update.
2823
2824 2013-08-14 Tom Tromey <tromey@redhat.com>
2825
2826 * remote.c (struct remote_state) <last_pass_packet>:
2827 New field.
2828 (last_pass_packet): Remove.
2829 (remote_pass_signals, remote_open_1): Update.
2830
2831 2013-08-14 Tom Tromey <tromey@redhat.com>
2832
2833 * remote.c (struct remote_state) <remote_traceframe_number>:
2834 New field.
2835 (remote_traceframe_number): Remove.
2836 (new_remote_state, remote_open_1, set_remote_traceframe)
2837 (remote_trace_find): Update.
2838
2839 2013-08-14 Tom Tromey <tromey@redhat.com>
2840
2841 * remote.c (struct remote_state) <general_thread, continue_thread>:
2842 New fields.
2843 (general_thread, continue_thread): Remove.
2844 (record_currthread, set_thread, set_general_process)
2845 (remote_open_1, extended_remote_attach_1, remote_wait_as)
2846 (extended_remote_mourn_1): Update.
2847
2848 2013-08-14 Tom Tromey <tromey@redhat.com>
2849
2850 * remote.c (struct remote_state) <remote_desc>: New field.
2851 (remote_desc): Remove.
2852 (remote_threads_info, remote_threads_extra_info, remote_close)
2853 (send_interrupt_sequence, remote_start_remote, remote_open_1)
2854 (readchar, remote_xfer_partial, remote_rcmd, packet_command)
2855 (remote_hostio_send_command, remote_file_put, remote_file_get)
2856 (remote_file_delete, remote_can_async_p, remote_is_async_p)
2857 (remote_async, remote_new_objfile, set_range_stepping): Update.
2858
2859 2013-08-14 Tom Tromey <tromey@redhat.com>
2860
2861 * remote.c (remote_state): Now a pointer.
2862 (get_remote_state_raw): Update.
2863 (new_remote_state): New function.
2864 (_initialize_remote): Use new_remote_state.
2865
2866 2013-08-14 Tom Tromey <tromey@redhat.com>
2867
2868 * remote.c (remote_protocol_features): Now const.
2869
2870 2013-08-14 Tom Tromey <tromey@redhat.com>
2871
2872 * remote.c (crc32_table, crc32): Remove.
2873 (remote_verify_memory): Use xcrc32.
2874
2875 2013-08-13 Sergio Durigan Junior <sergiodj@redhat.com>
2876
2877 * value.h (create_internalvar_type_lazy): Adjust prototype
2878 declaration.
2879
2880 2013-08-13 Andrew Burgess <aburgess@broadcom.com>
2881
2882 * common/format.c (parse_format_string): Don't allow '#' flag for
2883 pointer arguments in format string.
2884
2885 2013-08-13 Pierre Muller <muller@sourceware.org>
2886
2887 * utils.c (init_page_info): Only call tgetnum function
2888 if rl_get_screen_size did not return useful values.
2889
2890 2013-08-12 Ali Anwar <ali_anwar@codesourcery.com>
2891
2892 PR breakpoints/15117
2893 * linespec.c (linespec_parse_basic): Check for convenience
2894 variable or history value while parsing.
2895
2896 2013-08-12 Sergio Durigan Junior <sergiodj@redhat.com>
2897
2898 Revert implementation of gdbarch_gdb_signal_{to,from}_target for
2899 AVR.
2900 * avr-tdep.c: Remove include of "linux-tdep.h". Remove enum with
2901 different signals between the generic Linux kernel implementation
2902 and AVR's.
2903 (avr_linux_gdb_signal_from_target): Delete.
2904 (avr_linux_gdb_signal_to_target): Delete.
2905 (avr_gdbarch_init): Don't set gdbarch_gdb_signal_{to,from}_target.
2906
2907 2013-08-09 Doug Evans <dje@google.com>
2908
2909 * dwarf2read.c (create_addrmap_from_index): Ignore bad address table
2910 entries.
2911
2912 2013-08-09 Sergio Durigan Junior <sergiodj@redhat.com>
2913
2914 * linux-tdep.c: Define enum with generic signal numbers.
2915 (linux_gdb_signal_from_target): New function.
2916 (linux_gdb_signal_to_target): Likewise.
2917 (linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
2918 methods to the functions above.
2919 * linux-tdep.h (linux_gdb_signal_from_target): New prototype.
2920 (linux_gdb_signal_to_target): Likewise.
2921 * alpha-linux-tdep.c: Define new enum with signals different
2922 from generic Linux kernel.
2923 (alpha_linux_gdb_signal_from_target): New function.
2924 (alpha_linux_gdb_signal_to_target): Likewise.
2925 (alpha_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
2926 with the functions mentioned above.
2927 * avr-tdep.c: Define enum with differences between Linux kernel
2928 and AVR signals.
2929 (avr_linux_gdb_signal_from_target): New function.
2930 (avr_linux_gdb_signal_to_target): Likewise.
2931 (avr_gdbarch_init): Set gdbarch_gdb_signal_{to,from}_target to
2932 the functions mentioned above.
2933 * sparc-linux-tdep.c: Define enum with differences between SPARC
2934 and generic Linux kernel signal numbers.
2935 (sparc32_linux_gdb_signal_from_target): New function.
2936 (sparc32_linux_gdb_signal_to_target): Likewise.
2937 (sparc32_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
2938 to the functions defined above.
2939 * xtensa-linux-tdep.c: Define enum with differences between
2940 Xtensa and Linux kernel generic signals.
2941 (xtensa_linux_gdb_signal_from_target): New function.
2942 (xtensa_linux_gdb_signal_to_target): Likewise.
2943 (xtensa_linux_init_abi): Set gdbarch_gdb_signal_to_target
2944 to the functions defined above.
2945 * mips-linux-tdep.c: Define enum with differences between
2946 signals in MIPS and Linux kernel generic ones.
2947 (mips_gdb_signal_to_target): New function.
2948 (mips_gdb_signal_from_target): Redefine to use new enum, handle
2949 only different signals from the Linux kernel generic.
2950 (mips_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
2951 the functions defined above.
2952 * mips-linux-tdep.h (enum mips_signals): Remove.
2953
2954 2013-08-09 Pedro Alves <palves@redhat.com>
2955
2956 * avr-tdep.c (XMALLOC): Delete macro.
2957 * cli/cli-dump.c (XMALLOC): Delete macro.
2958
2959 2013-08-09 Pedro Alves <palves@redhat.com>
2960
2961 * cli/cli-dump.c: Don't include cli/cli-dump.h.
2962 (scan_expression_with_cleanup, scan_filename_with_cleanup)
2963 (fopen_with_cleanup, add_dump_command): Make static.
2964 * cli/cli-dump.h: Delete file.
2965 * Makefile.in (HFILES_NO_SRCDIR): Remove reference to
2966 cli/cli-dump.h.
2967
2968 2013-08-09 Pedro Alves <palves@redhat.com>
2969
2970 * tracepoint.c (tfile_start): Show tilde-expanded filename in
2971 error message.
2972
2973 2013-08-09 Pedro Alves <palves@redhat.com>
2974
2975 * breakpoint.c (save_breakpoints): Show tilde-expanded filename in
2976 error message.
2977
2978 2013-08-09 Pedro Alves <palves@redhat.com>
2979
2980 * gcore.c (create_gcore_bfd): Don't use tilde_expand here.
2981 (gcore_command): Use tilde_expand here, and when showing the
2982 filename to the user, show the expanded version.
2983
2984 2013-08-09 Yao Qi <yao@codesourcery.com>
2985
2986 * stack.c (read_frame_arg): Set 'entryval_error' to NULL if
2987 'entryval' is set.
2988
2989 2013-08-08 Azat Khuzhin <a3at.mail@gmail.com> (tiny change)
2990
2991 * gcore.c (create_gcore_bfd): Use tilde_expand.
2992
2993 2013-08-08 Yao Qi <yao@codesourcery.com>
2994
2995 * frame.h (read_frame_local): Declare.
2996 * mi/mi-cmd-stack.c (list_args_or_locals): Call
2997 read_frame_local.
2998 * stack.c (read_frame_local): New.
2999
3000 2013-08-08 Yao Qi <yao@codesourcery.com>
3001
3002 * mi/mi-cmd-stack.c: Update comments to function
3003 list_args_or_locals.
3004
3005 2013-08-07 Tom Tromey <tromey@redhat.com>
3006
3007 PR symtab/15028:
3008 * dwarf2read.c (struct process_psymtab_comp_unit_data): New.
3009 (process_psymtab_comp_unit_reader): Use it.
3010 (process_psymtab_comp_unit): Update. Add "pretend_language"
3011 argument.
3012 (dwarf2_build_psymtabs_hard): Update.
3013 (scan_partial_symbols): Pass CU's language to
3014 process_psymtab_comp_unit.
3015
3016 2013-08-07 Tom Tromey <tromey@redhat.com>
3017
3018 * dwarf2read.c (dw2_get_primary_filename_reader): Remove.
3019 (dwarf2_gdb_index_functions): Update.
3020 * psymtab.c (find_symbol_file_from_partial): Remove.
3021 (psym_functions): Update.
3022 * symfile.h (struct quick_symbol_functions) <find_symbol_file>:
3023 Remove.
3024
3025 2013-08-07 Tom Tromey <tromey@redhat.com>
3026
3027 * symfile.c (set_initial_language): Look up "main" symbol
3028 and use its language.
3029 * symtab.c (find_main_filename): Remove.
3030 * symtab.h (find_main_filename): Remove.
3031
3032 2013-08-07 Tom Tromey <tromey@redhat.com>
3033
3034 * dwarf2read.c (recursively_compute_inclusions): Add
3035 "immediate_parent" argument. Set symtab's "user" field
3036 if not set.
3037 (compute_symtab_includes): Update.
3038
3039 2013-08-07 Tom Tromey <tromey@redhat.com>
3040
3041 * linespec.c (convert_linespec_to_sals): Use maybe_add_address
3042 when adding label symbols.
3043
3044 2013-08-07 Raunaq Bathija <raunaq12@in.ibm.com>
3045 Ulrich Weigand <uweigand@de.ibm.com>
3046
3047 * configure.tgt (powerpc64-*-aix*): Match powerpc64 running aix.
3048 * configure.host (powerpc64-*-aix*): Likewise.
3049
3050 2013-08-07 Raunaq Bathija <raunaq12@in.ibm.com>
3051 Ulrich Weigand <uweigand@de.ibm.com>
3052
3053 * gdb_ptrace.h: Use ptrace64 instead of ptrace if HAVE_PTRACE64
3054 is defined.
3055 * rs6000-nat.c: Check for __ld_info64_ if compiling 64 BIT gdb.
3056 (rs6000_ptrace32): Call ptrace64 instead of ptrace if present.
3057 (rs6000_ptrace64): Call ptace64 instead of ptracex if present.
3058 * configure.ac: Check for ptrace64.
3059 * configure, config.in: Regenerate.
3060
3061 2013-08-07 Raunaq Bathija <raunaq12@in.ibm.com>
3062 Ulrich Weigand <uweigand@de.ibm.com>
3063
3064 * aixthread.c: Call ptrace64 instead of ptracex if defined.
3065 Call ptrace64 instead of ptrace if defined.
3066 Add macro addr_ptr to take care of ptrace address argument.
3067 (pdc_read_regs): Likewise.
3068 (pdc_write_regs): Likewise.
3069 (aix_thread_resume): Likewise.
3070 (fetch_regs_kernel_thread): Likewise.
3071 (store_regs_kernel_thread): Likewise.
3072
3073 2013-08-07 Anton Blanchard <anton@samba.org>
3074
3075 * MAINTAINERS: Add myself to Write After Approval.
3076
3077 2013-08-05 Tom Tromey <tromey@redhat.com>
3078
3079 * aix-thread.c (_initialize_aix_thread): Use
3080 complete_target_initialization.
3081 * bsd-uthread.c (_initialize_bsd_uthread): Use
3082 complete_target_initialization.
3083 * dec-thread.c (_initialize_dec_thread): Use
3084 complete_target_initialization.
3085 * ravenscar-thread.c (_initialize_ravenscar): Use
3086 complete_target_initialization.
3087 * sol-thread.c (_initialize_sol_thread): Use
3088 complete_target_initialization.
3089 * spu-multiarch.c (_initialize_spu_multiarch): Use
3090 complete_target_initialization.
3091
3092 2013-08-05 Tom Tromey <tromey@redhat.com>
3093
3094 * ada-exp.y (write_var_or_type): Use bound_minimal_symbol.
3095 * ada-lang.c (ada_lookup_simple_minsym): Return
3096 bound_minimal_symbol.
3097 * ada-lang.h (ada_lookup_simple_minsym): Update.
3098 * c-exp.y (variable): Use lookup_bound_minimal_symbol.
3099 * f-exp.y (variable): Use lookup_bound_minimal_symbol.
3100 * go-exp.y (variable): Use lookup_bound_minimal_symbol.
3101 * jv-exp.y (push_expression_name): Use lookup_bound_minimal_symbol.
3102 * m2-exp.y (variable): Use lookup_bound_minimal_symbol.
3103 * minsyms.c (msymbol_objfile): Remove.
3104 (lookup_minimal_symbol_internal): New function, from
3105 lookup_minimal_symbol.
3106 (lookup_minimal_symbol): Rewrite using
3107 lookup_minimal_symbol_internal.
3108 (lookup_bound_minimal_symbol): New function.
3109 * minsyms.h (msymbol_objfile): Remove.
3110 (lookup_bound_minimal_symbol): Declare.
3111 * p-exp.y (variable): Use lookup_bound_minimal_symbol.
3112 * parse.c (write_exp_msymbol): Change parameter to a
3113 bound_minimal_symbol.
3114 (write_dollar_variable): Use lookup_bound_minimal_symbol.
3115 * parser-defs.h (write_exp_msymbol): Update.
3116 * printcmd.c (address_info): Use lookup_bound_minimal_symbol.
3117 * symfile.c (simple_read_overlay_table): Use
3118 lookup_bound_minimal_symbol.
3119 * symtab.c (skip_prologue_sal): Don't use msymbol_objfile.
3120 (search_symbols): Likewise.
3121 (print_msymbol_info): Take a bound_minimal_symbol argument.
3122 (symtab_symbol_info, rbreak_command): Update.
3123 * symtab.h (struct symbol_search) <msymbol>: Change type
3124 to bound_minimal_symbol.
3125 * valops.c (find_function_in_inferior): Use
3126 lookup_bound_minimal_symbol.
3127 * value.c (value_fn_field): Use lookup_bound_minimal_symbol.
3128
3129 2013-08-05 Jan Kratochvil <jan.kratochvil@redhat.com>
3130
3131 Code cleanup.
3132 * remote.c (cleanup_sigint_signal_handler): Rename the declaration
3133 to ...
3134 (async_cleanup_sigint_signal_handler): ... this.
3135 (initialize_sigint_signal_handler): Remove declaration.
3136 (handle_remote_sigint): Rename the declaration to ...
3137 (async_handle_remote_sigint): ... this.
3138 (handle_remote_sigint_twice): Rename the declaration to ...
3139 (async_handle_remote_sigint_twice): ... this.
3140 (async_remote_interrupt, async_remote_interrupt_twice)
3141 (remote_interrupt): Remove the declarations.
3142 (remote_interrupt_twice): Rename the declaration ...
3143 (sync_remote_interrupt_twice): ... this.
3144 (sigint_remote_twice_token): Rename the variable to ...
3145 (async_sigint_remote_twice_token): ... this.
3146 (sigint_remote_token): Rename the variable to ...
3147 (async_sigint_remote_token): ... this.
3148 (initialize_sigint_signal_handler): Rename the function to ...
3149 (async_initialize_sigint_signal_handler): ... this. Update the name
3150 inside.
3151 (handle_remote_sigint): Rename the function to ...
3152 (async_handle_remote_sigint): ... this. Update the names inside.
3153 (handle_remote_sigint_twice): Rename the function to ...
3154 (async_handle_remote_sigint_twice): ... this. Update the names inside.
3155 (cleanup_sigint_signal_handler): Rename the function to ...
3156 (async_cleanup_sigint_signal_handler): ... this.
3157 (remote_interrupt): Rename the function to ...
3158 (sync_remote_interrupt): this. Update the names inside.
3159 (remote_interrupt_twice): Rename the function to ...
3160 (sync_remote_interrupt_twice): this. Update the names inside.
3161 (remote_terminal_inferior, remote_terminal_ours, remote_wait_as)
3162 (_initialize_remote): Update the names inside.
3163
3164 2013-08-02 Tom Tromey <tromey@redhat.com>
3165
3166 PR symtab/15719:
3167 * breakpoint.c (update_watchpoint, watchpoint_check)
3168 (watch_command_1): Update.
3169 * eval.c (fetch_subexp_value): Add "preserve_errors"
3170 parameter.
3171 * ppc-linux-nat.c (check_condition): Update.
3172 * value.h (fetch_subexp_value): Update.
3173
3174 2013-08-02 Andrew Burgess <aburgess@broadcom.com>
3175
3176 * mi/mi-interp.c (mi_interpreter_resume): Remove call to
3177 add_file_handler.
3178
3179 2013-08-01 Doug Evans <dje@google.com>
3180
3181 PR symtab/15691
3182 * dwarf2read.c (struct dwarf2_per_cu_data): New member tu_read.
3183 (fill_in_sig_entry_from_dwo_entry): Reorganize asserts.
3184 Add assert of sig_entry->dwo_unit == NULL.
3185 (lookup_dwo_signatured_type): Don't assign TU to a DWO if the TU
3186 had already been read.
3187 (read_signatured_type): Set per_cu.tu_read.
3188
3189 PR symtab/15695
3190 * valops.c (value_struct_elt): Add missing call to check_typedef.
3191 (value_find_oload_method_list): Ditto.
3192
3193 * symtab.c (do_free_search_symbols_cleanup): Change arg to,
3194 effectively, struct symbol_search **.
3195 (make_cleanup_free_search_symbols): Change arg to struct
3196 symbol_search **. All callers updated.
3197 (compare_search_syms): Compare symtab file name and block as well.
3198 (search_symbols_equal): New function.
3199 (sort_search_symbols_remove_dups): Renamed from sort_search_symbols.
3200 New args new_head, new_tail. Result is now void. Remove dups after
3201 sorting the symbols.
3202 (search_symbols): Sort all found symbols once, after all have been
3203 found, and remove duplicates. Simplify cleanup tracking of result.
3204 * symtab.h (make_cleanup_free_search_symbols): Update prototype.
3205
3206 Further workarounds for binutils/15021.
3207 * dwarf2read.c (recursively_compute_inclusions): Change type of result
3208 parameter to VEC (symtab_ptr) **. New parameter all_type_symtabs.
3209 Watch for duplicate symtabs coming from type units.
3210 (compute_symtab_includes): Update call to
3211 recursively_compute_inclusions. Build vector of included symtabs
3212 instead of per_cus.
3213 * symtab.h (symtab_ptr): New typedef.
3214 (DEF_VEC_P (symtab_ptr)): New VEC type.
3215 * linespec.c (symtab_p): Delete. All uses updated to use symtab_ptr
3216 instead.
3217
3218 2013-08-01 Andrew Burgess <aburgess@broadcom.com>
3219
3220 * cli/cli-script.c (script_from_file): Remove use of
3221 error_pre_print.
3222 * main.c (captured_main): Remove use of error_pre_print and
3223 quit_pre_print.
3224 * utils.c (error_pre_print, quit_pre_print): Remove.
3225 * utils.h (error_pre_print, quit_pre_print): Likewise.
3226
3227 2013-08-01 Yao Qi <yao@codesourcery.com>
3228
3229 * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Parse argv
3230 with mi_getopt.
3231 (mi_cmd_stack_list_variables): Likewise.
3232
3233 2013-07-31 Andrew Burgess <aburgess@broadcom.com>
3234
3235 * exceptions.c (deprecated_throw_reason): Remove.
3236 * exceptions.h (deprecated_throw_reason): Remove.
3237
3238 2013-07-31 Andrew Burgess <aburgess@broadcom.com>
3239
3240 * remote-mips.c (mips_error): Replace use of
3241 deprecated_throw_reason with throw_verror. Use the error message
3242 passed to mips_error as the error message for throw_verror.
3243
3244 2013-07-31 Andrew Burgess <aburgess@broadcom.com>
3245
3246 * monitor.c (monitor_interrupt_query): Replace use of
3247 deprecated_throw_reason with quit.
3248 * nto-procfs.c (interrupt_query): Likewise.
3249 * remote-fileio.c (remote_fileio_sig_exit): Likewise.
3250 * remote-mips.c (mips_kill): Likewise.
3251 * remote.c (interrupt_query): Likewise.
3252
3253 2013-07-31 Andrew Burgess <aburgess@broadcom.com>
3254
3255 * utils.c (internal_verror): Replace use of deprecated_throw_reason
3256 with call to fatal.
3257
3258 2013-07-31 Pedro Alves <pedro@codesourcery.com>
3259 Yao Qi <yao@codesourcery.com>
3260
3261 * tracepoint.c (trace_dump_command): Select the current frame.
3262
3263 2013-07-30 Doug Evans <dje@google.com>
3264
3265 * dwarf2read.c (process_queue): Add type signature to debug output.
3266
3267 2013-07-30 Andrew Burgess <aburgess@broadcom.com>
3268
3269 * value.c (value_fetch_lazy): Mark optimized out values as such
3270 rather than raising an error.
3271
3272 2013-07-30 Andrew Burgess <aburgess@broadcom.com>
3273
3274 * value.c (value_fetch_lazy): Ensure parent value is not lazy
3275 before checking which bits of the parent, not the child, value are
3276 valid.
3277
3278 2013-07-30 Muhammad Bilal <mbilal@codesorcery.com>
3279
3280 PR gdb/15715
3281 * top.c: Include "filenames.h".
3282 (set_history_filename): New function.
3283 (init_main): Install it as set hook of the "set history filename"
3284 command.
3285
3286 2013-07-30 Sanimir Agovic <sanimir.agovic@intel.com>
3287
3288 * dwarf2read.c (dwarf2_get_ref_die_offset): Constify struct
3289 attribute parameter.
3290 (dwarf2_const_value_data): Constify struct attribute parameter.
3291 (dwarf2_const_value): Constify struct attribute parameter.
3292 (dwarf2_const_value_attr): Constify struct attribute parameter.
3293 (lookup_die_type): Constify struct attribute parameter.
3294 (dwarf2_get_attr_constant_value): Constify struct attribute parameter.
3295 (follow_die_ref_or_sig): Constify struct attribute parameter.
3296 (follow_die_ref): Constify struct attribute parameter.
3297 (follow_die_sig): Constify struct attribute parameter.
3298 (get_DW_AT_signature_type): Constify struct attribute parameter.
3299 (get_type_unit_group): Constify struct attribute parameter.
3300 (fill_in_loclist_baton): Constify struct attribute parameter.
3301 (dwarf2_symbol_mark_computed): Constify struct attribute parameter.
3302 (type_unit_group): Constify struct attribute parameter.
3303
3304 2013-07-30 Sanimir Agovic <sanimir.agovic@intel.com>
3305
3306 * dwarf2read.c (attr_form_is_block): Make argument const.
3307 (attr_form_is_section_offset): Make argument const.
3308 (attr_form_is_constant): Make argument const.
3309 (attr_form_is_ref): Make argument const.
3310
3311 2013-07-30 Sanimir Agovic <sanimir.agovic@intel.com>
3312
3313 * dwarf2read.c (attr_is_ref): Rename to attr_form_is_ref.
3314 All uses updated.
3315 (attr_form_is_ref): Moved below attr_form_is_constant.
3316
3317 2013-07-29 Doug Evans <dje@google.com>
3318
3319 * main.c (captured_command_loop): Tweak comment.
3320
3321 * target.c (target_async_permitted_1): Fix comment.
3322
3323 * symtab.c (iterate_over_some_symtabs): Add comment.
3324
3325 * symtab.c (iterate_over_some_symtabs): Fix indentation.
3326
3327 2013-07-27 Yao Qi <yao@codesourcery.com>
3328
3329 * NEWS: Mention that GDBserver now supports hardware
3330 watchpoints on the MIPS GNU/Linux target.
3331
3332 2013-07-27 Yao Qi <yao@codesourcery.com>
3333
3334 * Makefile.in (HFILES_NO_SRCDIR): Add
3335 common/mips-linux-watch.h.
3336 (mips-linux-watch.o): New rule.
3337 * common/mips-linux-watch.c: New.
3338 * common/mips-linux-watch.h: New.
3339 * config/mips/linux.mh (NATDEPFILES): Add mips-linux-watch.o
3340 * mips-linux-nat.c: Include mips-linux-watch.h.
3341 (W_BIT, R_BIT, I_BIT, W_MASK, R_MASK, I_MASK, IRW_MASK): Move
3342 to common/mips-linux-watch.h.
3343 (MAX_DEBUG_REGISTER): Likewise.
3344 (enum pt_watch_style): Likewise.
3345 (struct mips32_watch_regs): Likewise.
3346 (struct mips64_watch_regs): Likewise.
3347 (struct pt_watch_regs): Likewise.
3348 (struct mips_watchpoint): Likewise.
3349 (mips_linux_watch_get_irw_mask): Move to
3350 common/mips-linux-watch.c.
3351 (get_reg_mask, mips_linux_watch_get_num_valid): Likewise.
3352 (mips_linux_watch_get_watchlo): Likewise.
3353 (mips_linux_watch_set_watchlo): Likewise.
3354 (mips_linux_watch_get_watchhi): Likewise.
3355 (mips_linux_watch_set_watchhi): Likewise.
3356 (mips_linux_read_watch_registers): Likewise.
3357 (mips_linux_watch_type_to_irw): Likewise.
3358 (mips_linux_stopped_data_address, fill_mask): Likewise.
3359 (mips_linux_watch_try_one_watch): Likewise.
3360 (mips_linux_watch_populate_regs): Likewise.
3361
3362 2013-07-27 Yao Qi <yao@codesourcery.com>
3363
3364 * mips-linux-nat.c (get_irw_mask): Rename to ...
3365 (mips_linux_watch_get_irw_mask): ... this. Rename parameter
3366 'set' to 'n'. Update function comment. All callers changed.
3367 (get_reg_mask): Rename parameter 'set' to 'n'. Update
3368 function comment. All callers changed.
3369 (get_num_valid): Rename to ...
3370 (mips_linux_watch_get_num_valid): ... this. Rename parameter
3371 'set' to 'n'. Update function comment. All callers changed.
3372 (get_watchlo): Rename to ...
3373 (mips_linux_watch_get_watchlo): ... this. Rename parameter
3374 'set' to 'n'. Update function comment. All callers changed.
3375 (set_watchlo): Rename to ...
3376 (mips_linux_watch_set_watchlo): ... this. Rename parameter
3377 'set' to 'n'. Update function comment. All callers changed.
3378 (get_watchhi): Rename to ...
3379 (mips_linux_watch_get_watchhi): ... this. Update function
3380 comment. All callers changed.
3381 (set_watchhi): Rename to ...
3382 (mips_linux_watch_set_watchhi): ... this. Update function
3383 comment. All callers changed.
3384 (mips_linux_read_watch_registers): Update function comment.
3385 Add new parameters 'lwpid', 'watch_readback', and
3386 'watch_readback_valid'. Update.
3387 (type_to_irw): Rename to ...
3388 (mips_linux_watch_type_to_irw): ... this. Update function
3389 comment. All callers changed.
3390 (fill_mask): Update function comment.
3391 (try_one_watch): Rename to ...
3392 (mips_linux_watch_try_one_watch): ... this. Change the type
3393 of parameter 'irw' from 'unsigned' to 'uint32_t'.
3394 (populate_regs_from_watches): Rename to ...
3395 (mips_linux_watch_populate_regs): ... this. Add parameter
3396 'current_watches'. All callers changed.
3397
3398 2013-07-27 Yao Qi <yao@codesourcery.com>
3399
3400 * mips-linux-nat.c (MAX_DEBUG_REGISTER): Move it earlier in
3401 the code.
3402 (PTRACE_SET_WATCH_REGS, enum pt_watch_style): Remove.
3403 (struct mips32_watch_regs, struct mips64_watch_regs): Remove.
3404 (struct pt_watch_regs): Likewise.
3405 [!PTRACE_GET_WATCH_REGS] (PTRACE_SET_WATCH_REGS): New macro.
3406 [!PTRACE_GET_WATCH_REGS] (enum pt_watch_style): New.
3407 [!PTRACE_GET_WATCH_REGS] (struct mips32_watch_regs): New.
3408 [!PTRACE_GET_WATCH_REGS] (struct mips64_watch_regs): New.
3409 [!PTRACE_GET_WATCH_REGS] (struct pt_watch_regs): New.
3410
3411 2013-07-27 Yao Qi <yao@codesourcery.com>
3412
3413 * breakpoint.h: Include break-common.h.
3414 (enum target_hw_bp_type): Move to ...
3415 * common/break-common.h: ... here. New.
3416
3417 2013-07-26 Cyril Nikolaev <cyril@nichtverstehen.de>
3418
3419 * inflow.c (terminal_init_inferior_with_pgrp): Save inferior
3420 process group regardless of having tty on stdin.
3421
3422 2013-07-25 Doug Evans <dje@google.com>
3423
3424 * linux-fork.h (detach_fork): Delete.
3425
3426 2013-07-25 Tom Tromey <tromey@redhat.com>
3427
3428 PR remote/15256, PR remote/15266:
3429 * bfd-target.c (target_bfd_reopen): Initialize to_magic.
3430 * monitor.c (monitor_detach): Use unpush_target.
3431 * remote-m32r-sdi.c (m32r_detach): Use unpush_target.
3432 * remote-mips.c (mips_detach): Use unpush_target. Don't
3433 call mips_close.
3434 * remote-sim.c (gdbsim_detach): Use unpush_target.
3435 * target.c (pop_target): Remove.
3436 (pop_all_targets_above): Don't call target_close.
3437 (target_close): Assert that the target is unpushed.
3438 * target.h (pop_target): Don't declare.
3439 * tracepoint.c (tfile_open): Use unpush_target.
3440
3441 2013-07-25 Tom Tromey <tromey@redhat.com>
3442
3443 * linux-thread-db.c (init_thread_db_ops): Call
3444 complete_target_initialization.
3445 (_initialize_thread_db): Don't call add_target.
3446 * target.c (complete_target_initialization): New function.
3447 (add_target_with_completer): Call it.
3448 * target.h (complete_target_initialization): Declare.
3449
3450 2013-07-25 Mark Kettenis <kettenis@gnu.org>
3451
3452 * hppa-tdep.h (enum hppa_regnum): Add members for all space registers.
3453 * hppaobsd-tdep.c (HPPAOBSD_SIZEOF_GREGS): Add comment.
3454 (HPPANBSD_SIZEOF_GREGS): New define.
3455 (hppaobsd_supply_gregset): Handle additional registers.
3456 * hppabsd-nat.c (hppabsd_gregset_supplies_p): Adjust to indicate
3457 we provide more registers now.
3458 (hppabsd_supply_gregset): Supply additional registers.
3459 (hppabsd_collect_gregset): Collect additional registers.
3460
3461 2013-07-25 Mark Kettenis <kettenis@gnu.org>
3462
3463 * hppabsd-tdep.c: Include "dwarf2-frame.h".
3464 (hppabsd_dwarf2_frame_init_reg): New function.
3465 (hppabsd_init_abi): Hook in the DWARF CFI frame unwinder.
3466
3467 2013-07-25 Andrew Burgess <aburgess@broadcom.com>
3468
3469 * mi/mi-main.c (output_register): Make MI 'r' format use standard
3470 'z' format code. Remove error for optimized out values, standard
3471 code will handle these fine.
3472
3473 2013-07-25 Andrew Burgess <aburgess@broadcom.com>
3474
3475 * NEWS: Mention new 'z' formatter.
3476 * printcmd.c (print_scalar_formatted): Add new 'z' formatter.
3477 (_initialize_printcmd): Mention 'z' formatter in help text of the
3478 'x' command.
3479
3480 2013-07-24 Maciej W. Rozycki <macro@codesourcery.com>
3481
3482 * mips-tdep.c (micromips_deal_with_atomic_sequence): Correct
3483 formatting.
3484
3485 2013-07-24 Sergio Durigan Junior <sergiodj@redhat.com>
3486
3487 * breakpoint.c (create_longjmp_master_breakpoint): Check if probe
3488 interface can evaluate arguments. Fallback to the old mode if it
3489 cannot.
3490 (create_exception_master_breakpoint): Likewise.
3491 * elfread.c (elf_can_evaluate_probe_arguments): New function.
3492 (struct sym_probe_fns elf_probe_fns): Export function above to the
3493 probe interface.
3494 * probe.c (can_evaluate_probe_arguments): New function.
3495 * probe.h (struct probe_ops) <can_evaluate_probe_arguments>: New
3496 function pointer.
3497 (can_evaluate_probe_arguments): New function prototype.
3498 * solib-svr4.c (svr4_create_solib_event_breakpoints): Check if
3499 probe interface can evaluate arguments. Fallback to the old mode
3500 if it cannot.
3501 * stap-probe.c (stap_get_probe_argument_count): Check if probe
3502 interface can evaluate arguments. Warning the user if it cannot.
3503 (stap_can_evaluate_probe_arguments): New function.
3504 (struct probe_ops stap_probe_ops): Export function above to the
3505 probe interface.
3506 * symfile.h (struct sym_probe_fns) <can_evaluate_probe_arguments>:
3507 New function pointer.
3508
3509 2013-07-24 Luis Machado <lgustavo@codesourcery.com>
3510
3511 * Makefile.in (SFILES): Add common/target-common.c.
3512 Add common/target-common.h to headers.
3513 (COMMON_OBS): Add target-common.o.
3514 (target-common.o): New target.
3515 * linux-nat.h (resume_kind): Move to common/target-common.h.
3516 * target.c (target_waitstatus_to_string): Move to
3517 common/target-common.c.
3518 * target.h: Include target-common.h.
3519 (target_waitkind): Move to common/target-common.h.
3520 (target_waitstatus): Likewise.
3521 (TARGET_WNOHANG): Likewise.
3522 * common/target-common.c: New file.
3523 * common/target-common.h: New file.
3524
3525 2013-07-24 Doug Evans <dje@google.com>
3526
3527 * dwarf2read.c (lookup_dwo_cutu): Change missing DWO complaint to
3528 a warning.
3529
3530 2013-07-23 Yao Qi <yao@codesourcery.com>
3531
3532 * i386-tdep.c (i386_in_stack_tramp_p): Remove unused
3533 parameter 'gdbarch'.
3534 (i386_stack_tramp_frame_sniffer): Caller update.
3535 * i386-linux-tdep.c (i386_linux_core_read_xcr0): Remove
3536 parameter 'gdbarch' and 'target'.
3537 (i386_linux_core_read_description): Caller update.
3538 * amd64-linux-tdep.c (amd64_linux_core_read_description):
3539 Likewise.
3540 * i386-linux-tdep.h (i386_linux_core_read_xcr0): Update
3541 declaration.
3542
3543 2013-07-23 Tom Tromey <tromey@redhat.com>
3544
3545 * dwarf2read.c (init_cutu_and_read_dies): Revert patch from
3546 2013-07-22.
3547
3548 2013-07-22 Doug Evans <dje@google.com>
3549
3550 * exec.h (remove_target_sections): Delete arg abfd.
3551 * exec.c (exec_close): Update call to remove_target_sections.
3552 (remove_target_sections): Delete arg abfd.
3553 * solib.c (update_solib_list): Ditto.
3554 (reload_shared_libraries_1): Ditto.
3555 (clear_solib): Ditto, and unconditionally call remove_target_sections.
3556 * target.h (struct target_section): Rename key to owner.
3557 All uses updated.
3558
3559 2013-07-22 Tom Tromey <tromey@redhat.com>
3560
3561 * solib-som.c (som_open_symbol_file_object): Call do_cleanups.
3562
3563 2013-07-22 Tom Tromey <tromey@redhat.com>
3564
3565 * dwarf2read.c (init_cutu_and_read_dies): Remove 'free_cu_cleanup'.
3566 Simplify cleanup handling.
3567
3568 2013-07-22 Tom Tromey <tromey@redhat.com>
3569
3570 * dwarf2read.c (dwarf_decode_line_header): Call do_cleanups
3571 on all return paths.
3572
3573 2013-07-22 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
3574
3575 * ppc-linux-nat.c (PPC_DEBUG_FEATURE_DATA_BP_DAWR): New define.
3576 (ppc_linux_region_ok_for_hw_watchpoint): Add checking to use the new
3577 DAWR interface for longer ranges hardware watchpoint (up to 512 bytes).
3578
3579 2013-07-22 Phil Muldoon <pmuldoon@redhat.com>
3580
3581 * top.c (print_gdb_version): Add help, apropos description and
3582 url to online documentation.
3583
3584 2013-07-19 Hui Zhu <hui@codesourcery.com>
3585
3586 PR gdb/15692
3587 * mi/mi-cmd-break.c (mi_argv_to_format): Handle double quotes.
3588
3589 2013-07-19 Yao Qi <yao@codesourcery.com>
3590
3591 * target.c (update_current_target): Change the default action
3592 of 'to_traceframe_info' from tcomplain to return_zero.
3593 * target.h (struct target_ops) <to_traceframe_info>: Add more
3594 comments.
3595 * valops.c (read_value_memory): Call
3596 traceframe_available_memory unconditionally.
3597
3598 2013-07-18 Yao Qi <yao@codesourcery.com>
3599
3600 * coffread.c (coff_symfile_read): Iterate over minimal symbols,
3601 if the name is prefixed by "__imp_" or "_imp_", look for minimal
3602 symbol without prefix. If found, set its type to
3603 'mst_solib_trampoline'.
3604
3605 2013-07-17 Doug Evans <dje@google.com>
3606
3607 * NEWS: Mention "set print raw frame-arguments".
3608 * gdbcmd.h (setprintrawlist, showprintrawlist): Declare.
3609 * stack.c (print_raw_frame_arguments): New static global.
3610 (print_frame_arg): Set opts.raw from print_raw_frame_arguments.
3611 (_initialize_stack): New command "set/show print raw frame-arguments".
3612 * valprint.c (setprintrawlist, showprintrawlist): New globals.
3613 (set_print_raw, show_print_raw): New functions.
3614 (_initialize_valprint): New prefix command "set/show print raw".
3615 * valprint.h (value_print_options): Improve comments.
3616
3617 * cli/cli-cmds.c (init_cmd_lists): Delete unnecessary initialization
3618 of all *list variables.
3619
3620 * gdbcmd.h (togglelist): Delete.
3621 * cli/cli-cmds.c (togglelist): Delete.
3622 (init_cmd_lists): Update.
3623 * cli/cli-cmds.h (togglelist): Delete.
3624
3625 2013-07-17 Tom Tromey <tromey@redhat.com>
3626
3627 * dwarf2read.c (dwarf2_per_objfile_free): Clear
3628 dwarf2_per_objfile.
3629
3630 2013-07-16 Doug Evans <dje@google.com>
3631
3632 * nto-tdep.c (nto_relocate_section_addresses): Update,
3633 target_section.bfd deleted.
3634 * ppc64-tdep.c (ppc64_convert_from_func_ptr_addr): Ditto.
3635 * s390-tdep.c (s390_load): Ditto.
3636 * solib-aix.c (solib_aix_relocate_section_addresses): Ditto.
3637
3638 2013-07-16 Andrew Burgess <aburgess@broadcom.com>
3639
3640 * common/format.c (parse_format_string): Add checks for NULL
3641 character before calling strchr.
3642
3643 2013-07-16 Doug Evans <dje@google.com>
3644
3645 * solist.h (target_so_ops.find_and_open_solib): Clarify usage of
3646 temp_pathname argument.
3647 * nto-tdep.c (nto_find_and_open_solib): Fix setting of temp_pathname
3648 when opening the file fails.
3649
3650 * target.h (struct target_section): Delete member bfd.
3651 All users updated to use the_bfd_section->owner instead.
3652 * exec.c (add_to_section_table): Assert bfd is expected value.
3653 Remove initialization of target_section.bfd.
3654 (remove_target_sections): Update.
3655 (section_table_available_memory): Update.
3656 (section_table_xfer_memory_partial): Update.
3657 (print_section_info): Update.
3658 (exec_set_section_address): Update.
3659 * record-full.c (record_full_core_xfer_partial): Update.
3660 * solib-svr4.c (svr4_relocate_section_addresses): Update.
3661 * solib-target.c (solib_target_relocate_section_addresses): Update.
3662 * symfile.c (build_section_addr_info_from_section_table): Update.
3663 * target.c (memory_xfer_live_readonly_partial): Update.
3664 (memory_xfer_partial_1): Update.
3665
3666 2013-07-15 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
3667
3668 * ppc-linux-nat.c: Since the new PowerPC specific ptrace interface is
3669 now available for embedded (BookE) and server (BookS) processors,
3670 correct mentions of 'booke' and adjust comments accordingly in order to
3671 avoid confusion. Rename struct 'booke_debug_info' to 'hwdebug_info'.
3672 (have_ptrace_booke_interface): Rename function and variable
3673 'have_ptrace_booke_interface' to 'have_ptrace_hwdebug_interface'.
3674 Rename struct 'booke_debug_info' to 'hwdebug_info'. Update all uses.
3675 (booke_cmp_hw_point): Rename function 'booke_cmp_hw_point' to
3676 'hwdebug_point_cmp'. Update all uses.
3677 (booke_find_thread_points_by_tid): Rename function
3678 'booke_find_thread_points_by_tid' to
3679 'hwdebug_find_thread_points_by_tid'. Update all uses.
3680 (booke_insert_point): Rename function 'booke_insert_point' to
3681 'hwdebug_insert_point'. Update all uses.
3682 (booke_remove_point): Rename function 'booke_remove_point' to
3683 'hwdebug_remove_point'. Update all uses.
3684
3685 2013-07-15 Maciej W. Rozycki <macro@codesourcery.com>
3686
3687 * mips-tdep.c (mips_gdbarch_init): Replace hardcoded magic
3688 numbers with enum values.
3689
3690 2013-07-15 Ali Anwar <ali_anwar@codesourcery.com>
3691
3692 PR threads/13217
3693 * thread.c (thread_apply_all_command): Check for valid threads
3694 and thread count.
3695 (thread_array_cleanup): New struct.
3696 (set_thread_refcount): New function.
3697
3698 2013-07-11 Andrew Burgess <aburgess@broadcom.com>
3699
3700 * infcmd.c (default_print_one_register_info): Reuse function
3701 print_hex_chars.
3702
3703 2013-07-10 Tom Tromey <tromey@redhat.com>
3704
3705 * Makefile.in (GDB_WARN_CFLAGS_NO_DEFS, ADA_EXP_C): New macros.
3706 (ada-exp.o): New target.
3707
3708 2013-07-10 Sergio Durigan Junior <sergiodj@redhat.com>
3709
3710 * mt-tdep.c (mt_registers_info): Call
3711 get_no_prettyformat_print_options instead of
3712 get_raw_print_options (regression by last patch from Doug
3713 Evans).
3714
3715 2013-07-09 Pedro Alves <palves@redhat.com>
3716
3717 Checked in by Joel Brobecker <brobecker@adacore.com>.
3718 * ada-lang.c (coerce_unspec_val_to_type): Use
3719 value_optimized_out_const.
3720 * value.c (value_optimized_out_const): New function.
3721 * value.h (value_optimized_out_const): New declaration.
3722
3723 2013-07-09 Doug Evans <dje@google.com>
3724
3725 * defs.h (enum val_prettyformat): Renamed from val_prettyprint.
3726 Enum values rename as well. All uses updated.
3727 * valprint.h (value_print_options): Rename member pretty to
3728 pretty format. Rename member prettyprint_arrays to
3729 prettyformat_arrays. Rename member prettyprint_structs to
3730 prettyformat_structs. All uses updated.
3731 (get_no_prettyformat_print_options): Renamed from
3732 get_raw_print_options.
3733 * valprint.c (get_no_prettyformat_print_options): Renamed from
3734 get_raw_print_options. All callers updated.
3735 (show_prettyformat_structs): Renamed from show_prettyprint_structs.
3736 All callers updated.
3737 (show_prettyformat_arrays): Renamed from show_prettyprint_arrays.
3738 All callers updated.
3739 (_initialize_valprint): Improve help text for "set print pretty" and
3740 "set print arrays".
3741
3742 2013-07-09 Andrew Burgess <aburgess@broadcom.com>
3743
3744 * value.c (value_bits_valid): Revert previous change, and change
3745 by Pedro on 2013-07-04, due to regressions in
3746 gdb.dwarf2/implptr.exp and gdb.dwarf2/pieces.exp.
3747
3748 2013-07-08 Andrew Burgess <aburgess@broadcom.com>
3749 Pedro Alves <palves@redhat.com>
3750
3751 * value.c (value_bits_valid): If the value is not lval_computed
3752 or has no check validity handler then the answer is the
3753 optimized_out flag, otherwise defer to the handler.
3754
3755 2013-07-06 Eli Zaretskii <eliz@gnu.org>
3756
3757 * top.c (print_gdb_configuration): Explain in output of
3758 --configuration what does "relocatable" mean.
3759
3760 * main.c (print_gdb_help): Regroup options in the --help text.
3761 See http://sourceware.org/ml/gdb-patches/2013-04/msg00362.html for
3762 the relevant discussions.
3763
3764 2013-07-06 Yao Qi <yao@codesourcery.com>
3765
3766 * breakpoint.h (struct breakpoint_ops) <create_breakpoints_sal>:
3767 Remove parameter 'lsal'.
3768 * breakpoint.c (create_breakpoint): Move local variable 'lsal'
3769 to inner block. Caller update.
3770 (base_breakpoint_create_breakpoints_sal): Update.
3771 (bkpt_create_breakpoints_sal): Likewise.
3772 (tracepoint_create_breakpoints_sal): Likewise.
3773 (strace_marker_create_breakpoints_sal): Get 'lsal' from the
3774 element 0 of vector 'canonical->sals'.
3775
3776 2013-07-05 Luis Machado <lgustavo@codesourcery.com>
3777
3778 * rs6000-tdep.c (rs6000_stab_reg_to_regnum): Return the real
3779 register number instead of the pseudo register one.
3780 (rs6000_dwarf2_reg_to_regnum): Likewise.
3781
3782 2013-07-04 Pedro Alves <palves@redhat.com>
3783
3784 * findvar.c (value_of_register): Use allocate_optimized_out_value
3785 if the register has been optimized out, instead of
3786 set_value_optimized_out.
3787 * frame-unwind.c (frame_unwind_got_optimized): Use
3788 allocate_optimized_out_value.
3789
3790 2013-07-04 Pedro Alves <palves@redhat.com>
3791
3792 * value.c (value_bits_valid): If the value is not lval_computed,
3793 or doesn't have a check_validity hook, assume the value is entirely
3794 valid.
3795
3796 2013-07-04 Andrew Burgess <aburgess@broadcom.com>
3797
3798 * stack.c (read_frame_arg): No longer fetch lazy values.
3799 * value.c (value_optimized_out): If the value is not already
3800 marked optimized out, and is lazy then fetch it.
3801 (value_primitive_field): Move optimized out check to later in the
3802 function, after we have loaded any lazy values.
3803 (value_fetch_lazy): Use optimized out flag directly rather than
3804 calling optimized_out method.
3805
3806 2013-07-04 Andrew Burgess <aburgess@broadcom.com>
3807
3808 * valops.c: Don't include "user-regs.h".
3809 (value_fetch_lazy): Moved to value.c.
3810 * value.c: Include "user-regs.h".
3811 (value_fetch_lazy): Moved from valops.c.
3812
3813 2013-07-04 Yao Qi <yao@codesourcery.com>
3814
3815 Revert:
3816 2013-06-27 Yao Qi <yao@codesourcery.com>
3817
3818 * common/create-version.sh: Update comments. Handle the case
3819 that TARGET_ALIAS is empty.
3820
3821 2013-07-03 Pedro Alves <palves@redhat.com>
3822
3823 * Makefile.in (config.status): Depend on development.sh.
3824 (aclocal_m4_deps): Add libmcheck.m4.
3825 * acinclude.m4: Include libmcheck.m4.
3826 * configure.ac: Source development.sh instead of setting
3827 'development' here. --enable-libmcheck/--disable-libmcheck code
3828 factored out to GDB_AC_LIBMCHECK. Run it.
3829 * development.sh: New file.
3830 * libmcheck.m4: New file.
3831 * configure: Regenerate.
3832
3833 2013-07-02 Tom Tromey <tromey@redhat.com>
3834
3835 * contrib/ari/update-web-ari.sh: Update for version.in change.
3836
3837 2013-07-02 Tom Tromey <tromey@redhat.com>
3838
3839 * common/ptid.h: Comment fixes.
3840
3841 2013-07-01 Tom Tromey <tromey@redhat.com>
3842
3843 * dwarf2read.c (dwarf2_get_dwz_file): Return NULL if
3844 .gnu_debugaltlink not found. Use bfd_get_alt_debug_link_info.
3845 (dwarf2_read_index, create_all_comp_units): Update.
3846
3847 2013-07-01 Tom Tromey <tromey@redhat.com>
3848
3849 * configure.ac (build_warnings): Add -Wold-style-definition.
3850 * configure: Rebuild.
3851 * machoread.c (_initialize_machoread): Use "(void)".
3852 * macrocmd.c (macro_inform_no_debuginfo): Fix formatting;
3853 use "(void)".
3854
3855 2013-07-01 Tom Tromey <tromey@redhat.com>
3856
3857 * configure.ac (build_warnings): Add -Wold-style-declaration.
3858 * configure: Rebuild.
3859 * dsrec.c (make_srec): Use "static const", not "const static".
3860 * h8300-tdep.c (h8300_breakpoint_from_pc): Use "static const",
3861 not "const static".
3862 * mi/mi-parse.c (mi_no_values, mi_simple_values, mi_all_values):
3863 Use "static const", not "const static".
3864 * mn10300-tdep.c (mn10300_breakpoint_from_pc): Use "static const",
3865 not "const static".
3866 * moxie-tdep.c (moxie_breakpoint_from_pc): Use "static const",
3867 not "const static".
3868 * rs6000-tdep.c (rs6000_breakpoint_from_pc): Use "static const",
3869 not "const static".
3870 * v850-tdep.c (v850_breakpoint_from_pc): Use "static const",
3871 not "const static".
3872 (v850_dbtrap_breakpoint_from_pc): Likewise.
3873 * xstormy16-tdep.c (xstormy16_breakpoint_from_pc): Use "static const",
3874 not "const static".
3875
3876 2013-07-01 Tom Tromey <tromey@redhat.com>
3877
3878 * configure.ac (build_warnings): Add -Wmissing-parameter-type.
3879 * configure: Rebuild.
3880
3881 2013-07-01 Pedro Alves <palves@redhat.com>
3882
3883 * defs.h: Include "pathmax.h".
3884 * utils.c: Don't include sys/param.h.
3885 (gdb_realpath): Remove code that checks for MAXPATHLEN.
3886 * solib-ia64-hpux.c (ia64_hpux_handle_load_event): Use PATH_MAX
3887 instead of MAXPATHLEN.
3888 * solib-sunos.c: Don't include sys/param.h.
3889 * xcoffread.c: Don't include sys/param.h.
3890 * bsd-kvm.c: Don't include sys/param.h.
3891 * darwin-nat.c: Don't include sys/param.h.
3892 (darwin_pid_to_exec_file): Use PATH_MAX instead of MAXPATHLEN.
3893 * darwin-nat-info.c: Don't include sys/param.h.
3894 * fbsd-nat.c (fbsd_pid_to_exec_file): Use PATH_MAX instead of
3895 MAXPATHLEN.
3896 * i386obsd-nat.c: Don't include sys/param.h.
3897 * inf-child.c: Don't include sys/param.h.
3898 (inf_child_fileio_readlink): Use PATH_MAX instead of MAXPATHLEN.
3899 * linux-fork.c: Don't include sys/param.h.
3900 (fork_save_infrun_state): Use PATH_MAX instead of MAXPATHLEN.
3901 * linux-nat.c: Don't include sys/param.h.
3902 (linux_child_pid_to_exec_file, linux_proc_pending_signals)
3903 (linux_proc_pending_signals): Use PATH_MAX instead of MAXPATHLEN.
3904 * m68klinux-nat.c: Don't include sys/param.h.
3905 * nbsd-nat.c: Don't include sys/param.h.
3906 (nbsd_pid_to_exec_file): Use PATH_MAX instead of MAXPATHLEN.
3907 * ppc-linux-nat.c: Don't include sys/param.h.
3908 * rs6000-nat.c: Don't include sys/param.h.
3909 * spu-linux-nat.c. Don't include sys/param.h.
3910 * windows-nat.c: Don't include sys/param.h.
3911 * xtensa-linux-nat.c: Don't include sys/param.h.
3912 * config/i386/nm-fbsd.h: Don't include sys/param.h.
3913
3914 2013-07-01 Pedro Alves <palves@redhat.com>
3915
3916 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add pathmax.
3917 * gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/pathmax.m4.
3918 * gnulib/aclocal.m4: Regenerate.
3919 * gnulib/config.in: Regenerate.
3920 * gnulib/configure: Regenerate.
3921 * gnulib/import/pathmax.h: New file.
3922 * gnulib/import/Makefile.am: Regenerate.
3923 * gnulib/import/Makefile.in: Regenerate.
3924 * gnulib/import/m4/gnulib-cache.m4: Regenerate.
3925 * gnulib/import/m4/gnulib-comp.m4: Regenerate.
3926 * gnulib/import/m4/pathmax.m4: New file.
3927
3928 2013-07-01 Pedro Alves <palves@redhat.com>
3929
3930 * configure.ac (GDBINIT): Define, depending on host.
3931 * go32-nat.c (init_go32_ops): Don't override gdbinit here.
3932 * top.c (PATH_MAX): Delete fallback definition.
3933 (GDBINIT_FILENAME): Delete.
3934 (gdbinit): Reimplement as const char array set to the GDBINIT
3935 string constant.
3936 * top.h (gdbinit): Make const.
3937 * configure, config.in: Regenerate.
3938
3939 2013-07-01 Pedro Alves <palves@redhat.com>
3940
3941 * cli/cli-cmds.c (source_script): Make 'file' parameter const.
3942 * cli/cli-cmds.h (source_script): Likewise.
3943 * exceptions.c (catch_command_errors_const): New function.
3944 * exceptions.h (catch_command_errors_const): Declare.
3945 * main.c (get_init_files): Make parameters const, and adjust.
3946 (captured_main): Make 'system_gdbinit', 'home_gdbinit' and
3947 'local_gdbinit' locals const. Adjust to use
3948 catch_command_errors_const.
3949 (print_gdb_help): Make 'system_gdbinit', 'home_gdbinit' and
3950 'local_gdbinit' locals const.
3951
3952 2013-07-01 Pedro Alves <palves@redhat.com>
3953
3954 * defs.h: Don't check HAVE_UNISTD_H before including <unistd.h>.
3955 (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO): Delete.
3956 * tracepoint.c: Don't check HAVE_UNISTD_H before including
3957 <unistd.h>.
3958
3959 2013-07-01 Pedro Alves <palves@redhat.com>
3960
3961 Import the "unistd" gnulib module.
3962 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add "unistd".
3963 * gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/off_t.m4,
3964 import/m4/ssize_t.m4, import/m4/sys_types_h.m4 and
3965 import/m4/unistd_h.m4.
3966 * gnulib/aclocal.m4: Renenerate.
3967 * gnulib/config.in: Renenerate.
3968 * gnulib/configure: Renenerate.
3969 * gnulib/import/Makefile.am: Renenerate.
3970 * gnulib/import/Makefile.in: Renenerate.
3971 * gnulib/import/m4/gnulib-cache.m4: Renenerate.
3972 * gnulib/import/m4/gnulib-comp.m4: Renenerate.
3973 * gnulib/import/m4/off_t.m4: New file.
3974 * gnulib/import/m4/ssize_t.m4: New file.
3975 * gnulib/import/m4/sys_types_h.m4: New file.
3976 * gnulib/import/m4/unistd_h.m4: New file.
3977 * gnulib/import/sys_types.in.h: New file.
3978 * gnulib/import/unistd.c: New file.
3979 * gnulib/import/unistd.in.h: New file.
3980
3981 2013-07-01 Pedro Alves <palves@redhat.com>
3982
3983 * utils.c <pathconf/_PC_PATH_MAX use>: Check if _PC_PATH_MAX is
3984 defined instead of checking HAVE_UNISTD_H.
3985
3986 2013-07-01 Pedro Alves <palves@redhat.com>
3987
3988 Reimport gnulib from scratch.
3989 * gnulib/Makefile.in (aclocal_m4_deps): Remove reference to
3990 import/m4/onceonly.m4.
3991 * gnulib/aclocal.m4: Renegerate.
3992 * gnulib/config.in: Renegerate.
3993 * gnulib/configure: Renegerate.
3994 * gnulib/import/Makefile.in: Renegerate.
3995 * gnulib/import/extra/update-copyright: Renegerate.
3996 * gnulib/import/m4/onceonly.m4: Delete.
3997
3998 2013-07-01 Pedro Alves <palves@redhat.com>
3999
4000 * tui/tui-regs.c (pagination_enabled): Delete declaration.
4001
4002 2013-06-30 Jan Kratochvil <jan.kratochvil@redhat.com>
4003
4004 Code cleanup.
4005 * remote.c (async_remote_interrupt_twice): Make it static.
4006 * remote.h (async_remote_interrupt_twice): Remove the declaration.
4007
4008 2013-06-29 Sergio Durigan Junior <sergiodj@redhat.com>
4009
4010 * ia64-linux-tdep.c: Include <ctype.h>.
4011 (ia64_linux_stap_is_single_operand): New function.
4012 (ia64_linux_init_abi): Initialize SystemTap related attributes.
4013
4014 2013-06-28 Tom Tromey <tromey@redhat.com>
4015
4016 * Makefile.in (version.c): Use version.in, not
4017 common/version.in.
4018 * common/create-version.sh: Likewise.
4019 * common/version.in: Move...
4020 * version.in: ...here.
4021
4022 2013-06-28 Pedro Alves <palves@redhat.com>
4023
4024 * infrun.c (set_observer_mode): Don't declare pagination_enabled
4025 here.
4026 * utils.h (pagination_enabled): Declare.
4027
4028 2013-06-28 Pedro Alves <palves@redhat.com>
4029
4030 * infrun.c (non_stop, non_stop_1, set_non_stop, show_non_stop):
4031 Move higher up in file.
4032
4033 2013-06-28 Tom Tromey <tromey@redhat.com>
4034
4035 * tracepoint.c (deprecated_readline_begin_hook)
4036 (deprecated_readline_hook, deprecated_readline_end_hook): Don't
4037 declare.
4038
4039 2013-06-28 Pedro Alves <palves@redhat.com>
4040
4041 PR tui/14880
4042 * tui/tui-regs.c (tui_get_register): Fetch value contents before
4043 checking if they're available.
4044 * value.c (value_available_contents_eq): Change comment.
4045 * value.h (value_available_contents_eq): Expand comment.
4046
4047 2013-06-27 Tom Tromey <tromey@redhat.com>
4048
4049 * target.c (find_run_target): Remove.
4050 * target.h (find_run_target): Remove.
4051
4052 2013-06-27 Tom Tromey <tromey@redhat.com>
4053
4054 * corelow.c (core_gdbarch): Now static.
4055
4056 2013-06-27 Tom Tromey <tromey@redhat.com>
4057
4058 * target.c (target_struct_index): Remove.
4059
4060 2013-06-27 Pedro Alves <palves@redhat.com>
4061
4062 * infrun.c: Remove comment describing the 'stepping over runtime
4063 loader dynamic symbol resolution code' mechanism; moved to
4064 gdbint.texinfo.
4065
4066 2013-06-27 Pedro Alves <palves@redhat.com>
4067
4068 * exceptions.c (catch_command_errors): Remove spurious space.
4069 * exceptions.h (catch_command_errors): Second parameter is "arg",
4070 not "command".
4071
4072 2013-06-27 Yao Qi <yao@codesourcery.com>
4073
4074 * common/create-version.sh: Update comments. Handle the case
4075 that TARGET_ALIAS is empty.
4076
4077 2013-06-26 Pedro Alves <palves@redhat.com>
4078
4079 * infrun.c (SOLIB_IN_DYNAMIC_LINKER): Delete macro and describing
4080 comment.
4081
4082 2013-06-26 Pedro Alves <palves@redhat.com>
4083
4084 * infrun.c: Update comments on stepping over runtime loader
4085 dynamic symbol resolution code.
4086
4087 2013-06-26 Sergio Durigan Junior <sergiodj@redhat.com>
4088
4089 * ax-gdb.h (union exp_element): Forward declare.
4090 * parser-defs.h: Include expression.h.
4091
4092 2013-06-26 Maciej W. Rozycki <macro@codesourcery.com>
4093
4094 * mips-tdep.c (fetch_mips_16): Use unmake_compact_addr.
4095
4096 2013-06-26 Dmitry Kozlov <ddk@codesourcery.com>
4097
4098 * tracepoint.c (trace_save): Extend tsave to save starttime, stoptime.
4099
4100 2013-06-26 Dmitry Kozlov <ddk@codesourcery.com>
4101
4102 Fix trace-status to output proper start-time and stop-time.
4103 * tracepoint.c (trace_status_command): Fix type of printf arg to
4104 prevent improper type conversion.
4105 (trace_status_mi): Likewise.
4106
4107 2013-06-26 Maciej W. Rozycki <macro@codesourcery.com>
4108
4109 * mips-tdep.c (mips_next_pc): Fix a typo.
4110
4111 2013-06-26 Maciej W. Rozycki <macro@codesourcery.com>
4112
4113 * mips-tdep.c (micromips_scan_prologue): Fix a typo.
4114
4115 2013-06-26 Pedro Alves <pedro@codesourcery.com>
4116 Yao Qi <yao@codesourcery.com>
4117
4118 * mi/mi-cmds.c (mi_cmds): Register -trace-frame-collected.
4119 * mi/mi-cmds.h (mi_cmd_trace_frame_collected): Declare.
4120 * mi/mi-main.c (print_variable_or_computed): New function.
4121 (mi_cmd_trace_frame_collected): New function.
4122 * tracepoint.c (find_trace_state_variable_by_number): New.
4123 (struct traceframe_info): Move to tracepoint.h
4124 (struct collection_list): Likewise.
4125 (do_collect_symbol): Include locals and arguments in the
4126 collected variables list.
4127 (clear_collection_list): Clear wholly collected variables list
4128 and computed variables list.
4129 (append_exp): New function.
4130 (encode_actions_1): Include variables in the wholly
4131 collected variables list. Include memory ranges and
4132 full-fledged expressions in the computed expressions list.
4133 (encode_actions): Move some code to ...
4134 Return the cleanup chain.
4135 (encode_actions_rsp): ... here. New function.
4136 (get_traceframe_location, get_traceframe_info): Remove static.
4137 * tracepoint.h (struct memrange): Moved from tracepoint.c.
4138 (struct collection_list): Moved from tracepoint.c. Add two
4139 new fields 'wholly_collected' and 'computed'.
4140 (find_trace_state_variable_by_number): Declare.
4141 (encode_actions): Adjust declaration.
4142 (encode_actions_rsp): Declare.
4143 (get_traceframe_info, get_traceframe_location): Declare.
4144
4145 * NEWS: Mention new MI command -trace-frame-collected.
4146
4147 2013-06-26 Pedro Alves <pedro@codesourcery.com>
4148 Yao Qi <yao@codesourcery.com>
4149
4150 * ctf.c (ctf_traceframe_info): Push trace state variables
4151 present in the trace data into the traceframe info object.
4152 * breakpoint.c (DEF_VEC_I): Remove.
4153 * common/filestuff.c (DEF_VEC_I): Likewise.
4154 * dwarf2loc.c (DEF_VEC_I): Likewise.
4155 * mi/mi-main.c (DEF_VEC_I): Likewise.
4156 * common/gdb_vecs.h (DEF_VEC_I): Define vector for int.
4157 * features/traceframe-info.dtd: Add tvar element and its
4158 attributes.
4159 * tracepoint.c (free_traceframe_info): Free vector 'tvars'.
4160 (build_traceframe_info): Push trace state variables present in
4161 the trace data into the traceframe info object.
4162 (traceframe_info_start_tvar): New function.
4163 (tvar_attributes): New.
4164 (traceframe_info_children): Add "tvar" element.
4165 * tracepoint.h (struct traceframe_info) <tvars>: New field.
4166
4167 * NEWS: Mention the change in GDB and GDBserver.
4168
4169 2013-06-26 Pedro Alves <pedro@codesourcery.com>
4170 Yao Qi <yao@codesourcery.com>
4171
4172 * tracepoint.c (trace_dump_command): Move code to ...
4173 (get_traceframe_location): ... here. New.
4174
4175 2013-06-26 Pedro Alves <pedro@codesourcery.com>
4176 Yao Qi <yao@codesourcery.com>
4177
4178 * tracepoint.c (trace_dump_command): GDB emits an error
4179 instead of a warning when a traceframe is not selected.
4180
4181 2013-06-26 Pedro Alves <pedro@codesourcery.com>
4182 Yao Qi <yao@codesourcery.com>
4183
4184 * tracepoint.c (tracepoint_list, stepping_list): Remove.
4185 (clear_collection_list): Free fields 'aexpre_list' and 'list'
4186 in collection_list.
4187 (do_clear_collection_list, init_collection_list): New.
4188 (encode_actions): Add local variables 'tracepoint_list' and
4189 'stepping_list'. Call init_collection_list and make cleanup
4190 which calls do_clear_collection_list. Don't call
4191 clear_collection_list.
4192 (_initialize_tracepoint): Delete references to
4193 'tracepoint_list' and 'stepping_list'.
4194
4195 2013-06-25 Tom Tromey <tromey@redhat.com>
4196
4197 * common/create-version.sh (date): Use "$", not "$$" in sed
4198 expression.
4199
4200 2013-06-25 Kevin Buettner <kevinb@redhat.com>
4201
4202 * NEWS (New targets): Add entry for TI MSP430.
4203
4204 2013-06-25 Yao Qi <yao@codesourcery.com>
4205
4206 * remote.c (remote_start_remote): Move code to upload tsv
4207 earlier.
4208
4209 2013-06-25 Yao Qi <yao@codesourcery.com>
4210 Hui Zhu <hui@codesourcery.com>
4211 Pedro Alves <palves@redhat.com>
4212
4213 PR breakpoints/15075
4214 PR breakpoints/15434
4215 * breakpoint.c (bpstat_stop_status): Call
4216 b->ops->after_condition_true.
4217 (update_dprintf_command_list): Don't append "continue" command
4218 to the command list of dprintf breakpoint.
4219 (base_breakpoint_after_condition_true): New function.
4220 (base_breakpoint_ops): Add base_breakpoint_after_condition_true.
4221 (dprintf_after_condition_true): New function.
4222 (initialize_breakpoint_ops): Set dprintf_after_condition_true.
4223 * breakpoint.h (breakpoint_ops): Add after_condition_true.
4224
4225 2013-06-24 Kevin Buettner <kevinb@redhat.com>
4226
4227 * Makefile.in (ALL_TARGET_OBS): Add msp430-tdep.o.
4228 (ALLDEPFILES): Add msp430-tdep.c.
4229 * configure.tgt (msp430*-*-elf): New target.
4230 * msp430-tdep.c: New file.
4231
4232 2013-06-24 Maciej W. Rozycki <macro@codesourcery.com>
4233
4234 * mips-tdep.c (mips_elf_make_msymbol_special): Handle MIPS16 and
4235 microMIPS synthetic symbols.
4236
4237 2013-06-24 Maciej W. Rozycki <macro@codesourcery.com>
4238
4239 * objfiles.h (pc_in_section): New prototype.
4240 (in_plt_section): Remove name argument, replace prototype with
4241 static inline function.
4242 * mips-tdep.h: Include "objfiles.h".
4243 (in_mips_stubs_section): New function.
4244 * hppa-tdep.h (gdbarch_tdep): Remove name argument of
4245 in_solib_call_trampoline member.
4246 (hppa_in_solib_call_trampoline): Remove name argument.
4247 * objfiles.c (pc_in_section): New function.
4248 (in_plt_section): Remove function.
4249 * mips-linux-tdep.c: Include "objfiles.h".
4250 (mips_linux_in_dynsym_stub): Call in_mips_stubs_section. Remove
4251 name argument. Return 1 rather than the low 16-bit halfword of
4252 any instruction examined.
4253 (mips_linux_in_dynsym_resolve_code): Update
4254 mips_linux_in_dynsym_stub call accordingly.
4255 * mips-tdep.c (mips_stub_frame_sniffer): Use in_mips_stubs_section
4256 rather than an equivalent hand-coded sequence.
4257 * hppa-hpux-tdep.c (in_opd_section): Remove function.
4258 (hppa32_hpux_in_solib_call_trampoline): Remove name argument.
4259 (hppa64_hpux_in_solib_call_trampoline): Likewise.
4260 (hppa64_hpux_find_global_pointer): Use pc_in_section rather than
4261 in_opd_section.
4262 * hppa-tdep.c (hppa_stub_unwind_sniffer): Remove name argument
4263 on call to tdep->in_solib_call_trampoline.
4264 (hppa_in_solib_call_trampoline): Remove name argument, update
4265 according to in_plt_section change.
4266 (hppa_skip_trampoline_code): Update according to in_plt_section
4267 change.
4268 * aarch64-tdep.c (aarch64_stub_unwind_sniffer): Likewise.
4269 * arm-symbian-tdep.c (arm_symbian_skip_trampoline_code):
4270 Likewise.
4271 * arm-tdep.c (arm_stub_unwind_sniffer): Likewise.
4272 * hppa-linux-tdep.c (hppa_linux_find_global_pointer): Likewise.
4273 * hppabsd-tdep.c (hppabsd_find_global_pointer): Likewise.
4274 * nios2-tdep.c (nios2_stub_frame_sniffer): Likewise.
4275 * nto-tdep.c (nto_relocate_section_addresses): Likewise.
4276 * s390-tdep.c (s390_stub_frame_sniffer): Likewise.
4277 * sh-tdep.c (sh_stub_unwind_sniffer): Likewise.
4278 * solib-dsbt.c (dsbt_in_dynsym_resolve_code): Likewise.
4279 * solib-frv.c (frv_in_dynsym_resolve_code): Likewise.
4280 * solib-svr4.c (svr4_in_dynsym_resolve_code): Likewise.
4281 * solib-target.c (solib_target_in_dynsym_resolve_code): Likewise.
4282 * sparc-tdep.c (sparc_analyze_prologue): Likewise.
4283 * tic6x-tdep.c (tic6x_stub_unwind_sniffer): Likewise.
4284
4285 2013-06-24 Joel Brobecker <brobecker@adacore.com>
4286
4287 * common/create-version.sh: Fix expansion of $host_alias
4288 and $target_alias in generation of HOST_NAME and TARGET_NAME
4289 (resp.).
4290
4291 2013-06-24 Tom Tromey <tromey@redhat.com>
4292
4293 * common/create-version.sh: New file.
4294 * Makefile.in (version.c): Use bfd/version.h, common/version.in,
4295 create-version.sh.
4296 (HFILES_NO_SRCDIR): Use common/version.h.
4297 * version.in: Move to ...
4298 * common/version.in: ... here. Replace date with "DATE".
4299 * version.h: Move to ...
4300 * common/version.h: ... here.
4301
4302 2013-06-21 Joel Brobecker <brobecker@adacore.com>
4303
4304 * gdb/gnulib/Makefile.in: Update date in copyright header.
4305 * gdb/gnulib/configure.ac: Ditto.
4306 * gdb/gnulib/update-gnulib.sh: Ditto.
4307
4308 2013-06-21 Joel Brobecker <brobecker@adacore.com>
4309
4310 * copyright.py (EXCLUDE_LIST): Replace "gdb/gnulib" by
4311 "gdb/gnulib/import".
4312
4313 2013-06-21 Will Newton <will.newton@linaro.org>
4314
4315 * doublest.c (ldfrexp): Remove function.
4316 (convert_doublest_to_floatformat): Call frexpl instead of
4317 ldfrexp.
4318
4319 2013-06-21 Will Newton <will.newton@linaro.org>
4320
4321 * gnulib/update-gnulib.sh(IMPORTED_GNULIB_MODULES): Add frexpl.
4322 * gnulib/aclocal.m4: Regenerate.
4323 * gnulib/config.in: Regenerate.
4324 * gnulib/configure: Regenerate.
4325 * gnulib/import/Makefile.am: Update.
4326 * gnulib/import/Makefile.in: Update.
4327 * gnulib/import/m4/gnulib-cache.m4: Update.
4328 * gnulib/import/m4/gnulib-comp.m4: Update.
4329 * gnulib/import/float+.h: Import.
4330 * gnulib/import/float.c: Import.
4331 * gnulib/import/float.in.h: Import.
4332 * gnulib/import/fpucw.h: Import.
4333 * gnulib/import/frexp.c: Import.
4334 * gnulib/import/frexpl.c: Import.
4335 * gnulib/import/isnan.c: Import.
4336 * gnulib/import/isnand-nolibm.h: Import.
4337 * gnulib/import/isnand.c: Import.
4338 * gnulib/import/isnanl-nolibm.h: Import.
4339 * gnulib/import/isnanl.c: Import.
4340 * gnulib/import/itold.c: Import.
4341 * gnulib/import/m4/exponentd.m4: Import.
4342 * gnulib/import/m4/exponentl.m4: Import.
4343 * gnulib/import/m4/float_h.m4: Import.
4344 * gnulib/import/m4/fpieee.m4: Import.
4345 * gnulib/import/m4/frexp.m4: Import.
4346 * gnulib/import/m4/frexpl.m4: Import.
4347 * gnulib/import/m4/isnand.m4: Import.
4348 * gnulib/import/m4/isnanl.m4: Import.
4349 * gnulib/import/m4/math_h.m4: Import.
4350 * gnulib/import/math.c: Import.
4351 * gnulib/import/math.in.h: Import.
4352
4353 2013-06-21 Jan Kratochvil <jan.kratochvil@redhat.com>
4354
4355 * common/linux-btrace.c (cpu_supports_btrace): Remove variable vendor,
4356 replace strcmp with signature_INTEL_ebx, signature_INTEL_ecx and
4357 signature_INTEL_edx comparisons.
4358
4359 2013-06-20 Doug Evans <dje@google.com>
4360
4361 symtab/15652
4362 * dwarf2read.c (try_open_dwop_file): New arg search_cwd.
4363 All callers updated.
4364 (open_dwp_file): If we can't find the dwp file, search the basename
4365 in debug-file-directory.
4366
4367 * dwarf2read.c (struct dwp_file): Fix comment.
4368 (open_and_init_dwp_file): Set dwp_file->name to bfd's file name.
4369
4370 * source.c (openp): Document OPF_TRY_CWD_FIRST+OPF_SEARCH_IN_PATH
4371 better.
4372
4373 2013-06-20 Yao Qi <yao@codesourcery.com>
4374
4375 * breakpoint.c (create_breakpoint): Fix code indentation.
4376
4377 2013-06-20 Yao Qi <yao@codesourcery.com>
4378
4379 * breakpoint.c (create_breakpoints_sal_default): Remove
4380 parameter 'lsal'. Update declaration.
4381 (bkpt_create_breakpoints_sal): Caller update.
4382 (tracepoint_create_breakpoints_sal): Likewise.
4383
4384 2013-06-20 Pedro Alves <pedro@codesourcery.com>
4385 Yao Qi <yao@codesourcery.com>
4386
4387 * NEWS: Mention the new option '--skip-unavailable' of command
4388 -data-list-register-values.
4389 * mi/mi-main.c (mi_cmd_data_list_register_values): Accept the
4390 --skip-unavailable option. Adjust to use output_register.
4391 (output_register): Add new 'skip_unavailable' parameter.
4392 Handle it.
4393
4394 2013-06-19 Mike Frysinger <vapier@gentoo.org>
4395
4396 * Makefile.in (HFILES_NO_SRCDIR): Add common/i386-cpuid.h and
4397 common/i386-gcc-cpuid.h.
4398 * common/i386-cpuid.h: New wrapper header around i386-gcc-cpuid.h.
4399 * common/i386-gcc-cpuid.h: Rename from testsuite/gdb.arch/i386-cpuid.h.
4400 Copy the latest version from upstream gcc.
4401 * common/linux-btrace.c: Include i386-cpuid.h.
4402 (intel_supports_btrace): Delete x86 ifdefs and replace inline asm with
4403 call to i386_cpuid.
4404 (cpu_supports_btrace): Likewise.
4405 * go32-nat.c: Include i386-cpuid.h.
4406 (go32_sysinfo): Add (disabled) calls to i386_cpuid with comments.
4407
4408 2013-06-19 Doug Evans <dje@google.com>
4409
4410 * symfile.c (symfile_bfd_open): Delete unnecessary declaration.
4411 (get_section_index): Ditto.
4412
4413 2013-06-19 Tom Tromey <tromey@redhat.com>
4414
4415 * breakpoint.c (_initialize_breakpoint): Remove trailing \n from
4416 "dprintf" help.
4417
4418 2013-06-18 Doug Evans <dje@google.com>
4419
4420 * dwarf2read.c (dw2_symtab_iter_next): Check value of cu_index
4421 before using it.
4422 (dw2_expand_symtabs_matching): Fix symbol kind validity check.
4423 Move test of cu_index closer to use. Print complaint if cu_index
4424 is bad.
4425
4426 2013-06-18 Joel Brobecker <brobecker@adacore.com>
4427
4428 * machoread.c (oso_vector): Delete this global.
4429 (macho_register_oso): Add new parameter "oso_vector_ptr".
4430 Use it instead of the "oso_vector" global.
4431 (macho_symtab_read, macho_symfile_read_all_oso): Likewise.
4432 (macho_symfile_read): Use a local oso_vector, to be free'ed
4433 at the end of this function, in place of the old "oso_vector"
4434 global. Update various function calls accordingly. Use one
4435 single cleanup chain for the entire function.
4436
4437 2013-06-18 Joel Brobecker <brobecker@adacore.com>
4438
4439 * dwarf2read.c (dwarf2_per_objfile_free): Replace uses of
4440 DWARF2_PER_OBJFILE by uses of DATA instead.
4441
4442 2013-06-18 Tom Tromey <tromey@redhat.com>
4443
4444 * break-catch-sig.c (signal_catchpoint_explains_signal): Add 'sig'
4445 argument.
4446 * breakpoint.c (bpstat_explains_signal): Add 'sig' argument.
4447 Special case signals other than GDB_SIGNAL_TRAP.
4448 (explains_signal_watchpoint): New function.
4449 (base_breakpoint_explains_signal): Add 'sig' argument.
4450 (initialize_breakpoint_ops): Set 'explains_signal' method for
4451 watchpoints.
4452 * breakpoint.h (struct breakpoint_ops) <explains_signal>: Add
4453 signal argument.
4454 (bpstat_explains_signal): Likewise.
4455 * infrun.c (handle_syscall_event, handle_inferior_event): Update.
4456
4457 2013-06-18 Tom Tromey <tromey@redhat.com>
4458
4459 * python/py-inferior.c (gdbpy_selected_inferior): Don't incref.
4460
4461 2013-06-18 Tom Tromey <tromey@redhat.com>
4462
4463 * python/python.c (finish_python_initialization): Decref
4464 'pythondir' on failure path as well.
4465
4466 2013-06-18 Tom Tromey <tromey@redhat.com>
4467
4468 PR symtab/15391:
4469 * dwarf2loc.c (read_pieced_value): Truncate this_size_bits
4470 after taking bits_to_skip into account. Sign extend byte_offset.
4471 * utils.h (gdb_sign_extend): Declare.
4472 * utils.c (gdb_sign_extend): New function.
4473
4474 2013-06-18 Jan Kratochvil <jan.kratochvil@redhat.com>
4475
4476 * dwarf2read.c (write_psymtabs_to_index): Ignore NULL PSYMTAB.
4477
4478 2013-06-17 Pierre Muller <muller@sourceware.org>
4479
4480 * corelow.c (core_open): Print GDB signal name instead of target
4481 signal number.
4482
4483 2013-06-17 Mike Frysinger <vapier@gentoo.org>
4484
4485 * .gitignore: Add /gcore.
4486
4487 2013-06-13 Doug Evans <dje@google.com>
4488
4489 * dwarf2read.c (try_open_dwop_file): Work around behaviour of
4490 OPF_TRY_CWD_FIRST to not search path if the file contains a '/'.
4491
4492 2013-06-12 Phil Muldoon <pmuldoon@redhat.com>
4493
4494 * stack.c (backtrace_command_1): Fix indentation.
4495
4496 2013-06-11 Joel Brobecker <brobecker@adacore.com>
4497
4498 * window-nat.c (thread_rec): Add missing empty line after
4499 local variable declaration.
4500
4501 2013-06-11 Joel Brobecker <brobecker@adacore.com>
4502
4503 * windows-nat.c (thread_rec): Revert format used to print
4504 error code returned by SuspendThread from %d back to %u.
4505
4506 2013-06-11 Joel Brobecker <brobecker@adacore.com>
4507
4508 * windows-nat.c (windows_continue): Add "0x" prefix for thread
4509 ID in debug trace.
4510 (get_windows_debug_event): Likewise, for all debug traces.
4511
4512 2013-06-11 Joel Brobecker <brobecker@adacore.com>
4513
4514 * window-nat.c (thread_rec): Add thread ID in SuspendThread
4515 warning message.
4516
4517 2013-06-08 Pedro Alves <pedro@codesourcery.com>
4518 Yao Qi <yao@codesourcery.com>
4519
4520 * mi/mi-main.c (get_register): Remove declaration.
4521 (output_register): Declare.
4522 (mi_cmd_data_list_register_values): Remove local variable
4523 'tuple_cleanup'. Move some code into output_register.
4524 (get_register): Renamed to ...
4525 (output_register): ... this. Output the register's
4526 "number" ui_out tuple here.
4527
4528 2013-06-07 Pedro Alves <palves@redhat.com>
4529
4530 * darwin-nat.c: Fix formating in copyright header.
4531 * darwin-nat.h: Likewise.
4532 * gnu-nat.c: Likewise.
4533 * machoread.c: Likewise.
4534
4535 2013-06-07 Pedro Alves <palves@redhat.com>
4536
4537 PR server/14823
4538 * regformats/regdat.sh: Output #include tdesc.h. Make globals
4539 static. Output a global target description pointer.
4540 (init_registers_${name}): Adjust to initialize a
4541 target description structure.
4542
4543 2013-06-07 Will Newton <will.newton@linaro.org>
4544
4545 * printcmd.c (build_address_symbolic): Call
4546 gdbarch_addr_bits_remove for text minimal symbols.
4547
4548 2013-06-07 Will Newton <will.newton@linaro.org>
4549
4550 * MAINTAINERS: Add myself to Write After Approval.
4551
4552 2013-06-07 Yao Qi <yao@codesourcery.com>
4553
4554 * tracepoint.c (start_tracing): Move code to ...
4555 (trace_reset_local_state): ... here. New.
4556 (disconnect_tracing): Don't call set_current_traceframe,
4557 set_tracepoint_num, and set_traceframe_context. Call
4558 trace_reset_local_state instead.
4559 (tfile_close): Call trace_reset_local_state.
4560 * ctf.c (ctf_close): Likewise.
4561 * remote.c (remote_close): Likewise.
4562 * tracepoint.h (trace_reset_local_state): Declare.
4563
4564 2013-06-06 Doug Evans <dje@google.com>
4565
4566 * dwarf2read.c: Whitespace fixes for DWP file format documentation,
4567 and fix header docs.
4568
4569 2013-06-05 Doug Evans <dje@google.com>
4570 Keith Seitz <keiths@redhat.com>
4571
4572 PR 15519
4573 * cp-namespace.c (find_symbol_in_baseclass): Call
4574 cp_lookup_symbol_in_namespace instead of cp_lookup_symbol_namespace.
4575 Check result of call to lookup_symbol_static.
4576 Call lookup_static_symbol_aux unconditionally.
4577 Call check_typedef on base types before accessing them.
4578 (cp_lookup_nested_symbol): Fix comment.
4579
4580 2013-06-05 Luis Machado <lgustavo@codesourcery.com>
4581
4582 * gnu-v3-abi.c (gnuv3_skip_trampoline): Handle thunk
4583 minimal symbols pointing to function descriptors.
4584
4585 2013-06-05 Tom Tromey <tromey@redhat.com>
4586
4587 * python/py-utils.c (gdb_pymodule_addobject): Cast away const.
4588
4589 2013-06-04 Sergio Durigan Junior <sergiodj@redhat.com>
4590 Pedro Alves <palves@redhat.com>
4591
4592 * remote.c (remote_wait_as): Restore signal handler before returning
4593 when GDB gets a notification.
4594
4595 2013-06-04 Gary Benson <gbenson@redhat.com>
4596
4597 PR 2328
4598 * breakpoint.h (handle_solib_event): Moved function declaration
4599 to solib.h.
4600 * breakpoint.c (handle_solib_event): Moved function to solib.c.
4601 (bpstat_stop_status): Pass new argument to handle_solib_event.
4602 * solib.h (update_solib_breakpoints): New function declaration.
4603 (handle_solib_event): Moved function declaration from
4604 breakpoint.h.
4605 * solib.c (update_solib_breakpoints): New function.
4606 (handle_solib_event): Moved function from breakpoint.c.
4607 Updated to call solib_ops->handle_event if not NULL.
4608 * solist.h (target_so_ops): New fields "update_breakpoints" and
4609 "handle_event".
4610 * infrun.c (set_stop_on_solib_events): New function.
4611 (_initialize_infrun): Use the above for "set
4612 stop-on-solib-events".
4613 (handle_inferior_event): Pass new argument to handle_solib_event.
4614 * solib-svr4.c (probe.h): New include.
4615 (svr4_free_library_list): New forward declaration.
4616 (probe_action): New enum.
4617 (probe_info): New struct.
4618 (probe_info): New static variable.
4619 (NUM_PROBES): New definition.
4620 (svr4_info): New fields "using_xfer", "probes_table" and
4621 "solib_list".
4622 (free_probes_table): New function.
4623 (free_solib_list): New function.
4624 (svr4_pspace_data_cleanup): Free probes table and solib list.
4625 (svr4_copy_library_list): New function.
4626 (svr4_current_sos_via_xfer_libraries): New parameter "annex".
4627 (svr4_read_so_list): New parameter "prev_lm".
4628 (svr4_current_sos_direct): Renamed from "svr4_current_sos".
4629 (svr4_current_sos): New function.
4630 (probe_and_action): New struct.
4631 (hash_probe_and_action): New function.
4632 (equal_probe_and_action): Likewise.
4633 (register_solib_event_probe): Likewise.
4634 (solib_event_probe_at): Likewise.
4635 (solib_event_probe_action): Likewise.
4636 (solist_update_full): Likewise.
4637 (solist_update_incremental): Likewise.
4638 (disable_probes_interface_cleanup): Likewise.
4639 (svr4_handle_solib_event): Likewise.
4640 (svr4_update_solib_event_breakpoint): Likewise.
4641 (svr4_update_solib_event_breakpoints): Likewise.
4642 (svr4_create_solib_event_breakpoints): Likewise.
4643 (enable_break): Free probes table before creating breakpoints.
4644 Use svr4_create_solib_event_breakpoints to create breakpoints.
4645 (svr4_solib_create_inferior_hook): Free the solib list.
4646 (_initialize_svr4_solib): Initialise
4647 svr4_so_ops.handle_solib_event and svr4_so_ops.update_breakpoints.
4648
4649 2013-06-04 Gary Benson <gbenson@redhat.com>
4650
4651 * target.h (target_ops): New field
4652 "to_augmented_libraries_svr4_read".
4653 (target_augmented_libraries_svr4_read): New macro.
4654 * target.c (update_current_target): Handle
4655 to_augmented_libraries_svr4_read.
4656 * remote.c (remote_state): New field
4657 "augmented_libraries_svr4_read".
4658 (remote_augmented_libraries_svr4_read_feature): New function.
4659 (remote_protocol_features): Add entry for
4660 "augmented-libraries-svr4-read".
4661 (remote_augmented_libraries_svr4_read): New function.
4662 (init_remote_ops): Initialize
4663 remote_ops.to_augmented_libraries_svr4_read.
4664
4665 2013-06-04 Gary Benson <gbenson@redhat.com>
4666
4667 * NEWS: Update.
4668
4669 2013-06-04 Gary Benson <gbenson@redhat.com>
4670
4671 * objfiles.h (inhibit_section_map_updates): New function
4672 declaration.
4673 (resume_section_map_updates): Likewise.
4674 (resume_section_map_updates_cleanup): Likewise.
4675 * objfiles.c (objfile_pspace_info): Removed field
4676 "objfiles_changed_p". New fields "new_objfiles_available",
4677 "section_map_dirty" and "inhibit_updates".
4678 (allocate_objfile): Set new_objfiles_available.
4679 (free_objfile): Set section_map_dirty.
4680 (objfile_relocate1): Likewise.
4681 (in_plt_section): Likewise.
4682 (find_pc_section): Update the conditions under which the
4683 section map will be updated.
4684 (inhibit_section_map_updates): New function.
4685 (resume_section_map_updates): Likewise.
4686 (resume_section_map_updates_cleanup): Likewise.
4687
4688 2013-06-04 Gary Benson <gbenson@redhat.com>
4689
4690 * probe.h (get_probe_argument_count): New declaration.
4691 (evaluate_probe_argument): Likewise.
4692 * probe.c (get_probe_argument_count): New function.
4693 (evaluate_probe_argument): Likewise.
4694 (probe_safe_evaluate_at_pc): Use the above new functions.
4695
4696 2013-06-04 Alan Modra <amodra@gmail.com>
4697
4698 * ppc-tdep.h (ppc_insns_match_pattern): Update prototype.
4699 * rs6000-tdep.c (read_insn): Add frame param, don't assume big-endian.
4700 (ppc_insns_match_pattern): Add frame param. Avoid multiple
4701 target mem reads on optional insns.
4702 * ppc-linux-tdep.c (ppc_skip_trampoline_code): Update
4703 ppc_insns_match_pattern calls.
4704 * ppc64-tdep.c (ppc64_standard_linkage2, ppc64_standard_linkage3):
4705 Add match for power7 thread safety insns, and new order of
4706 std 2,40(1) insn. Correct code shown for _dl_runtime_resolve
4707 invocation in comment, and update rest of comment.
4708 (PPC64_STANDARD_LINKAGE1_LEN, PPC64_STANDARD_LINKAGE2_LEN,
4709 PPC64_STANDARD_LINKAGE3_LEN): Delete.
4710 (ppc64_standard_linkage2_target): Update insn offsets.
4711 (ppc64_skip_trampoline_code): Use a single insn buffer. Match newer
4712 stubs first. Update calls.
4713
4714 2013-06-04 Yao Qi <yao@codesourcery.com>
4715
4716 * solib.c (solib_find): Don't need dir separator if path has
4717 drive spec.
4718
4719 2013-06-03 Joel Brobecker <brobecker@adacore.com>
4720
4721 Revert (indirectly causes a SIGSEGV):
4722 * machoread.c (macho_symfile_read): Assign first cleanup to
4723 'back_to'.
4724
4725 2013-06-03 Yao Qi <yao@codesourcery.com>
4726
4727 * mi/mi-cmd-var.c (mi_no_values, mi_simple_values): Move to
4728 mi-parse.c. Make them static.
4729 (mi_all_values): Likewise.
4730 (mi_parse_values_option): Move to mi-parse.c. Rename it to
4731 mi_parse_print_values. Make it external.
4732 * mi/mi-cmds.h (mi_no_values, mi_simple_values, mi_all_values):
4733 Remove the declarations.
4734 * mi/mi-parse.c (mi_parse_print_values): Moved from mi-cmd-var.c.
4735 * mi/mi-parse.h (mi_parse_print_values): Declare.
4736 * mi/mi-cmd-stack.c: Include mi-parse.h.
4737 (parse_print_values): Remove
4738 (mi_cmd_stack_list_locals): Call mi_parse_print_values instead
4739 of parse_print_values.
4740 (mi_cmd_stack_list_args, mi_cmd_stack_list_variables): Likewise.
4741
4742 2013-05-31 Pedro Alves <pedro@codesourcery.com>
4743 Yao Qi <yao@codesourcery.com>
4744
4745 * tracepoint.c (all_tracepoint_actions_and_cleanup): Declare.
4746 (encode_actions): Move code to ...
4747 (all_tracepoint_actions_and_cleanup): ... here. New.
4748 (trace_dump_command): Likewise.
4749
4750 2013-05-30 Tom Tromey <tromey@redhat.com>
4751
4752 * symmisc.c (maintenance_expand_symtabs): Call do_cleanups.
4753
4754 2013-05-30 Tom Tromey <tromey@redhat.com>
4755
4756 * xml-support.c (gdb_xml_create_parser_and_cleanup): Rename from
4757 gdb_xml_create_parser_and_cleanup_1. Return a cleanup. Remove
4758 'old_chain' argument. Add 'parser_result' argument.
4759 (gdb_xml_create_parser_and_cleanup): Remove old version.
4760 (gdb_xml_parse_quick): Update.
4761 (xml_process_xincludes): Update.
4762 * xml-support.h (gdb_xml_create_parser_and_cleanup): Don't
4763 declare.
4764
4765 2013-05-30 Tom Tromey <tromey@redhat.com>
4766
4767 * probe.c (collect_probes): Check arguments for NULL before
4768 calling compile_rx_or_error.
4769 * utils.c (compile_rx_or_error): Require 'rx' to be non-NULL.
4770 Remove NULL return.
4771
4772 2013-05-30 Tom Tromey <tromey@redhat.com>
4773
4774 * infrun.c (adjust_pc_after_break): Introduce an outer null
4775 cleanup.
4776
4777 2013-05-30 Tom Tromey <tromey@redhat.com>
4778
4779 * mi/mi-cmd-var.c (varobj_update_one): Add an outer null cleanup.
4780
4781 2013-05-30 Tom Tromey <tromey@redhat.com>
4782
4783 * cli/cli-script.c (read_command_lines_1): Use a null cleanup
4784 for 'old_chain'. Do not check 'head' before processing
4785 cleanups.
4786
4787 2013-05-30 Tom Tromey <tromey@redhat.com>
4788
4789 * mi/mi-cmd-stack.c (list_arg_or_local): Remove
4790 "cleanup_tuple".
4791
4792 2013-05-30 Tom Tromey <tromey@redhat.com>
4793
4794 * dbxread.c (dbx_read_symtab): Declare 'back_to' in a more
4795 inner scope. Unconditionally call do_cleanups.
4796
4797 2013-05-30 Tom Tromey <tromey@redhat.com>
4798
4799 * source.c (find_and_open_source): Call do_cleanups.
4800
4801 2013-05-30 Tom Tromey <tromey@redhat.com>
4802
4803 * linux-thread-db.c (thread_db_load_search): Unconditionally
4804 call do_cleanups.
4805
4806 2013-05-30 Tom Tromey <tromey@redhat.com>
4807
4808 * solib-aix.c (solib_aix_bfd_open): Don't use a null cleanup
4809 for 'cleanup'; instead use a later one.
4810
4811 2013-05-30 Tom Tromey <tromey@redhat.com>
4812
4813 * python/py-breakpoint.c (bppy_get_commands): Use
4814 explicit, unconditional return.
4815 * python/py-frame.c (frapy_read_var): Likewise.
4816 * python/python.c (gdbpy_decode_line): Likewise.
4817
4818 2013-05-30 Tom Tromey <tromey@redhat.com>
4819
4820 * cp-namespace.c (cp_lookup_symbol_imports_or_template): Call
4821 do_cleanups on all return paths.
4822
4823 2013-05-30 Tom Tromey <tromey@redhat.com>
4824
4825 * top.c (execute_command): Discard 'cleanup_if_error' cleanups.
4826
4827 2013-05-30 Tom Tromey <tromey@redhat.com>
4828
4829 * stabsread.c (read_struct_type): Call do_cleanups along
4830 all return paths.
4831
4832 2013-05-30 Maciej W. Rozycki <macro@codesourcery.com>
4833
4834 * mips-linux-tdep.c: Adjust formatting throughout.
4835
4836 2013-05-30 Tom Tromey <tromey@redhat.com>
4837
4838 * mipsread.c (read_alphacoff_dynamic_symtab): Call do_cleanups
4839 along all return paths.
4840
4841 2013-05-30 Tom Tromey <tromey@redhat.com>
4842
4843 * symfile.c (find_separate_debug_file): Call do_cleanups
4844 along all return paths.
4845
4846 2013-05-30 Tom Tromey <tromey@redhat.com>
4847
4848 * symtab.c (search_symbols): Introduce a null cleanup for
4849 'retval_chain'.
4850
4851 2013-05-30 Tom Tromey <tromey@redhat.com>
4852
4853 * python/py-value.c (valpy_binop): Call do_cleanups before
4854 exiting loop.
4855
4856 2013-05-30 Tom Tromey <tromey@redhat.com>
4857
4858 * python/py-prettyprint.c (print_children): Remove extra
4859 do_cleanups call.
4860
4861 2013-05-30 Tom Tromey <tromey@redhat.com>
4862
4863 * python/py-frame.c (frapy_read_var): Call do_cleanups along
4864 all return paths.
4865
4866 2013-05-30 Tom Tromey <tromey@redhat.com>
4867
4868 * python/py-breakpoint.c (bppy_get_commands): Call do_cleanups
4869 along all return paths.
4870
4871 2013-05-30 Tom Tromey <tromey@redhat.com>
4872
4873 * cli/cli-logging.c (set_logging_redirect): Unconditionally
4874 call do_cleanups.
4875
4876 2013-05-30 Tom Tromey <tromey@redhat.com>
4877
4878 * varobj.c (c_value_of_root): Call do_cleanups along all
4879 return paths.
4880
4881 2013-05-30 Tom Tromey <tromey@redhat.com>
4882
4883 * tracepoint.c (trace_dump_command): Unconditionally call
4884 do_cleanups.
4885
4886 2013-05-30 Tom Tromey <tromey@redhat.com>
4887
4888 * breakpoint.c (output_thread_groups, parse_cmd_to_aexpr): Call
4889 do_cleanups earlier.
4890
4891 2013-05-30 Tom Tromey <tromey@redhat.com>
4892
4893 * machoread.c (macho_symfile_read): Assign first cleanup to
4894 'back_to'.
4895
4896 2013-05-30 Tom Tromey <tromey@redhat.com>
4897
4898 * m32r-rom.c (m32r_load): Call do_cleanups at all returns.
4899
4900 2013-05-30 Tom Tromey <tromey@redhat.com>
4901
4902 * mi/mi-main.c (list_available_thread_groups): Call do_cleanups.
4903
4904 2013-05-30 Tom Tromey <tromey@redhat.com>
4905
4906 * inf-ptrace.c (inf_ptrace_create_inferior): Unconditionally
4907 call discard_cleanups.
4908 (inf_ptrace_attach): Likewise.
4909
4910 2013-05-30 Tom Tromey <tromey@redhat.com>
4911
4912 * remote-mips.c (mips_exit_debug): Call do_cleanups on all
4913 return paths.
4914 (mips_initialize): Likewise.
4915 (common_open): Call do_cleanups.
4916
4917 2013-05-30 Tom Tromey <tromey@redhat.com>
4918
4919 * utils.c (internal_vproblem): Call do_cleanups.
4920
4921 2013-05-30 Tom Tromey <tromey@redhat.com>
4922
4923 * linespec.c (find_linespec_symbols): Don't reassign to 'cleanup'.
4924
4925 2013-05-30 Tom Tromey <tromey@redhat.com>
4926
4927 * cli/cli-script.c (setup_user_args): Don't return after error.
4928
4929 2013-05-30 Tom Tromey <tromey@redhat.com>
4930
4931 * somread.c (som_symtab_read): Call do_cleanups.
4932
4933 2013-05-30 Tom Tromey <tromey@redhat.com>
4934
4935 * printcmd.c (print_command_1): Unconditionally call do_cleanups.
4936
4937 2013-05-30 Tom Tromey <tromey@redhat.com>
4938
4939 * cli/cli-cmds.c (cd_command, alias_command): Call do_cleanups.
4940 * cli/cli-dump.c (restore_binary_file): Call do_cleanups.
4941 * interps.c (interpreter_exec_cmd): Call do_cleanups.
4942 * source.c (show_substitute_path_command): Call do_cleanups.
4943 (unset_substitute_path_command, set_substitute_path_command):
4944 Likewise.
4945 * symfile.c (load_command): Call do_cleanups.
4946
4947 2013-05-30 Tom Tromey <tromey@redhat.com>
4948
4949 * contrib/cleanup_check.py: New file.
4950 * contrib/gcc-with-excheck: Add option parsing.
4951
4952 2013-05-30 Joel Brobecker <brobecker@adacore.com>
4953
4954 * windows-nat.c (windows_delete_thread): Add missing space
4955 in cast expression.
4956
4957 2013-05-30 Hafiz Abid Qadeer <abidh@codesourcery.com>
4958
4959 * inferior.c (top level): Include tilde.h.
4960 (add_inferior_command): Call tilde_expand on the value of 'exec'
4961 argument.
4962
4963 2013-05-30 Pedro Alves <pedro@codesourcery.com>
4964 Yao Qi <yao@codesourcery.com>
4965
4966 * tracepoint.c (encode_actions_1): Remove parameter 't'.
4967 Caller update.
4968 (encode_actions): Likewise.
4969 * remote.c (remote_download_tracepoint): Caller update.
4970 * tracepoint.h (encode_actions): Update declaration.
4971
4972 2013-05-30 Pedro Alves <palves@redhat.com>
4973
4974 * python/python-internal.h (gdb_Py_DECREF): Cast OP to PyObject
4975 pointer.
4976
4977 2013-05-30 Yao Qi <yao@codesourcery.com>
4978
4979 * remote.c (remote_check_symbols): Remove unused parameter
4980 'objfile'.
4981 Declaration update.
4982 (remote_start_remote, remote_new_objfile): Caller update.
4983
4984 2013-05-30 Yao Qi <yao@codesourcery.com>
4985
4986 * mi/mi-cmds.c (mi_cmds): Define MI command
4987 '-exec-arguments' by macro DEF_MI_CMD_CLI_1 instead of
4988 DEF_MI_CMD_CLI.
4989
4990 2013-05-29 Pedro Alves <palves@redhat.com>
4991
4992 * remote.c (remote_insert_breakpoint, remote_remove_breakpoint)
4993 (remote_insert_watchpoint, remote_remove_watchpoint)
4994 (remote_insert_hw_breakpoint, remote_remove_hw_breakpoint)
4995 (remote_verify_memory, compare_sections_command)
4996 (remote_search_memory): Set the general process/thread on the
4997 remote side.
4998
4999 2013-05-29 Pedro Alves <palves@redhat.com>
5000
5001 * aarch64-tdep.c: Don't include "features/aarch64-without-fpu.c".
5002 (_initialize_aarch64_tdep): Don't call
5003 initialize_tdesc_aarch64_without_fpu.
5004 * features/Makefile (WHICH): Remove reference to
5005 aarch64-without-fpu.
5006 * features/aarch64-without-fpu.c: Delete file.
5007 * regformats/aarch64-without-fpu.dat: Delete file.
5008
5009 2013-05-28 Yao Qi <yao@codesourcery.com>
5010
5011 * tracepoint.c (stringify_collection_list): Remove parameter
5012 'string'.
5013 (encode_actions): Caller update. Remove local variables.
5014
5015 2013-05-24 Yao Qi <yao@codesourcery.com>
5016
5017 * tracepoint.c (TFILE_PID): Remove.
5018 (tfile_open): Don't add thread and inferior.
5019 (tfile_close): Don't set 'inferior_ptid'. Don't call
5020 exit_inferior_silent.
5021 (tfile_thread_alive): Remove.
5022 (init_tfile_ops): Don't set field 'to_thread_alive' of
5023 tfile_ops.
5024
5025 2013-05-23 Doug Evans <dje@google.com>
5026
5027 * contrib/cc-with-tweaks.sh (-p): Handle no dwo files.
5028
5029 2013-05-23 Pedro Alves <palves@redhat.com>
5030
5031 * common/filestuff.c [USE_WIN32API]: Define HAVE_SOCKETS.
5032 [HAVE_SYS_SOCKET_H]: Define HAVE_SOCKETS.
5033 (socket_mark_cloexec, gdb_socketpair_cloexec, gdb_socket_cloexec):
5034 Only define if HAVE_SOCKETS is defined.
5035 * configure.ac: Check for sys/socket.h.
5036 * config.in, configure: Regenerate.
5037
5038 2013-05-23 Pedro Alves <palves@redhat.com>
5039
5040 * dwarf2read.c (create_dwp_hash_table, create_dwo_in_dwp)
5041 (open_and_init_dwp_file): Use %s/pulongest instead of %u for
5042 printing uint32_t variables.
5043
5044 2013-05-23 Pedro Alves <palves@redhat.com>
5045
5046 * NEWS: Mention GDBserver range stepping support.
5047
5048 2013-05-23 Yao Qi <yao@codesourcery.com>
5049 Pedro Alves <palves@redhat.com>
5050
5051 * gdbthread.h (struct thread_control_state) <may_range_step>: New
5052 field.
5053 * infcmd.c (step_once, until_next_command): Enable range stepping.
5054 * infrun.c (displaced_step_prepare): Disable range stepping.
5055 (resume): Disable range stepping if stepping over a breakpoint or
5056 we have software watchpoints. If range stepping is enabled,
5057 assert the thread is in the stepping range.
5058 (clear_proceed_status_thread): Clear may_range_step.
5059 (handle_inferior_event): Disable range stepping as soon as we know
5060 the thread that hit the event. Re-enable it whenever we're going
5061 to step with a step range.
5062 * remote.c (struct vCont_action_support) <r>: New field.
5063 (use_range_stepping): New global.
5064 (remote_vcont_probe): Handle 'r' action.
5065 (append_resumption): Append an 'r' action if the thread may range
5066 step.
5067 (show_range_stepping): New function.
5068 (set_range_stepping): New function.
5069 (_initialize_remote): Call add_setshow_boolean_cmd to register the
5070 'set range-stepping' and 'show range-stepping' commands.
5071 * NEWS: Mention range stepping, the new vCont;r action, and the
5072 new "set/show range-stepping" commands.
5073
5074 2013-05-23 Yao Qi <yao@codesourcery.com>
5075 Pedro Alves <palves@redhat.com>
5076
5077 * remote.c (struct vCont_action_support): New struct.
5078 (struct remote_state) <support_vCont_t>: Remove field.
5079 <vCont_actions_support>: New field.
5080 (remote_vcont_probe, remote_stop_ns): Update.
5081
5082 2013-05-23 Yao Qi <yao@codesourcery.com>
5083 Pedro Alves <palves@redhat.com>
5084
5085 * gdbthread.h (pc_in_thread_step_range): New declaration.
5086 * thread.c (pc_in_thread_step_range): New function.
5087 * infrun.c (handle_inferior_event): Use it.
5088
5089 2013-05-23 Joel Brobecker <brobecker@adacore.com>
5090
5091 * mi/mi-cmd-break.c (mi_argv_to_format): Use xsnprintf instead
5092 of sprintf.
5093
5094 2013-05-22 Keith Seitz <keiths@redhat.com>
5095
5096 * ada-lang.c (is_known_support_routine): Add explicit free of
5097 'func_name' from find_frame_funname.
5098 (ada_unhandled_exception_name_addr_from_raise): Add cleanups
5099 for func_name from find_frame_funname.
5100 * python/py-frame.c (frapy_name): Add explicit free of
5101 'name' from find_frame_funname.
5102 * stack.c (find_frame_funname): Add comment explaining that
5103 funcp must be freed by the caller.
5104 Return copy of symbol names instead of pointers.
5105 (print_frame): Add a cleanup for 'funname' from
5106 find_frame_funname.
5107 * stack.h (find_frame_funname): Remove "const" from
5108 'funname' parameter.
5109
5110 2013-05-22 Tom Tromey <tromey@redhat.com>
5111
5112 PR c++/15401:
5113 * c-valprint.c (c_value_print): Use value_addr for
5114 references. Convert back to reference type with value_ref.
5115
5116 2013-05-22 Eli Zaretskii <eliz@gnu.org>
5117
5118 * windows-nat.c (handle_unload_dll): Don't call solib_add for the
5119 unloaded DLL, it will be done by handle_solib_event. See
5120 http://sourceware.org/ml/gdb-patches/2013-05/msg00713.html for the
5121 details.
5122
5123 2013-05-22 Phil Muldoon <pmuldoon@redhat.com>
5124
5125 * ui-out.c: Create typedef ui_out_level_p and define vector
5126 operations for that type.
5127 (struct ui_out): Use a vector instead of an array.
5128 (current_level): Return level from a vector.
5129 (push_level): Create a level in a vector.
5130 (pop_level): Delete a level in a vector.
5131 (ui_out_new): Create initial level zero level, and store in a
5132 vector.
5133 (ui_out_destroy): Add vector cleanup.
5134
5135 2013-05-22 Pedro Alves <palves@redhat.com>
5136
5137 * python/python-internal.h (gdb_Py_DECREF): Tag with
5138 "ARI: editCase function".
5139
5140 2013-05-21 Paul Pluzhnikov <ppluzhnikov@google.com>
5141
5142 * solib-svr4.c (svr4_free_so): Protect against NULL dereference.
5143
5144 2013-05-21 Pedro Alves <palves@redhat.com>
5145
5146 * python/py-prettyprint.c (apply_val_pretty_printer): Check
5147 whether PRINTER is NULL before installing a Py_DECREF cleanup.
5148 * python/py-utils.c (py_decref): Don't check for NULL before
5149 calling Py_DECREF.
5150
5151 2013-05-21 Pedro Alves <palves@redhat.com>
5152
5153 * python/py-utils.c (py_decref): Remove extra braces.
5154 (gdb_pymodule_addobject): Remove extra braces.
5155 * python-internal.h (gdb_Py_DECREF): New static inline function.
5156 (Py_DECREF): Redefine as calling gdb_Py_DECREF.
5157
5158 2013-05-21 Philippe Waroquiers <philippe.waroquiers@skynet.be>
5159
5160 * breakpoints.c (detach_breakpoints): Do not
5161 detach breakpoints locations with loc_type bp_loc_other.
5162
5163 2013-05-21 Jan Kratochvil <jan.kratochvil@redhat.com>
5164
5165 Workaround Python 2.6.
5166 * python/py-utils.c (gdb_pymodule_addobject): Wrap Py_DECREF into
5167 a block.
5168
5169 2013-05-21 Jan Kratochvil <jan.kratochvil@redhat.com>
5170
5171 Code cleanup: constification.
5172 * solib.c (solib_ops): Make return type and ops variable type const.
5173 (set_solib_ops): Make the new_ops parameter and ops variable const.
5174 (solib_find, solib_map_sections, clear_so, free_so, update_solib_list)
5175 (solib_add, solib_keep_data_in_core, clear_solib)
5176 (solib_create_inferior_hook, in_solib_dynsym_resolve_code)
5177 (reload_shared_libraries, solib_global_lookup): Make the ops variable
5178 const.
5179 * solib.h (set_solib_ops): Make the new_ops parameter const.
5180
5181 2013-05-21 Joel Brobecker <brobecker@adacore.com>
5182
5183 * data-directory/Makefile.in (SYSTEM_GDBINIT_SRCDIR): New
5184 variable.
5185 (VPATH): Add SYSTEM_GDBINIT_SRCDIR.
5186 (SYSTEM_GDBINIT_DIR, SYSTEM_GDBINIT_INSTALL_DIR)
5187 (SYSTEM_GDBINIT_FILES): New variables.
5188 (all): Add stamp-system-gdbinit.
5189 (stamp-system-gdbinit): New rule.
5190 (clean-system-gdbinit, install-system-gdbinit)
5191 (uninstall-system-gdbinit): New rules. Make them .PHONY.
5192 (install-only): Add dependency on install-system-gdbinit.
5193 (uninstall): Add dependency on uninstall-system-gdbinit.
5194 (clean): Add dependency on clean-system-gdbinit.
5195 * system-gdbinit/elinos.py: New file.
5196 * system-gdbinit/wrs-linux.py: New file.
5197
5198 2013-05-21 Joel Brobecker <brobecker@adacore.com>
5199
5200 * ada-lang.c (old_renaming_is_invisible): Fix cleanup leak.
5201
5202 2013-05-21 Hui Zhu <hui@codesourcery.com>
5203
5204 * breakpoint.c (dprintf_breakpoint_ops): Remove its static.
5205 * breakpoint.h (dprintf_breakpoint_ops): Add extern.
5206 * mi/mi-cmd-break.c (ctype.h): New include.
5207 (gdb_obstack.h): New include.
5208 (mi_argv_to_format, mi_cmd_break_insert_1): New.
5209 (mi_cmd_break_insert): Call mi_cmd_break_insert_1.
5210 (mi_cmd_dprintf_insert): New.
5211 * mi/mi-cmds.c (mi_cmds): Add "dprintf-insert".
5212 * mi/mi-cmds.h (mi_cmd_dprintf_insert): New extern.
5213
5214 2013-05-20 Tom Tromey <tromey@redhat.com>
5215
5216 * python/py-prettyprint.c (search_pp_list): Decref 'attr'.
5217
5218 2013-05-20 Tom Tromey <tromey@redhat.com>
5219
5220 * python/py-value.c (valpy_get_dynamic_type): Simplify
5221 dynamic_type assignment. Use Py_XINCREF.
5222
5223 2013-05-20 Tom Tromey <tromey@redhat.com>
5224
5225 * python/py-type.c (typy_fields): Unconditionally decref 'r'.
5226
5227 2013-05-20 Tom Tromey <tromey@redhat.com>
5228
5229 * python/py-frame.c (frapy_older, frapy_newer, gdbpy_newest_frame)
5230 (gdbpy_selected_frame): Move object-construction code
5231 out of TRY_CATCH.
5232
5233 2013-05-20 Tom Tromey <tromey@redhat.com>
5234
5235 * python/py-arch.c (gdbpy_initialize_arch): Use
5236 gdb_pymodule_addobject.
5237 * python/py-block.c (gdbpy_initialize_blocks): Use
5238 gdb_pymodule_addobject.
5239 * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Use
5240 gdb_pymodule_addobject.
5241 * python/py-cmd.c (gdbpy_initialize_breakpoints): Use
5242 gdb_pymodule_addobject.
5243 * python/py-event.c (gdbpy_initialize_event_generic): Use
5244 gdb_pymodule_addobject.
5245 * python/py-evtregistry.c (gdbpy_initialize_eventregistry): Use
5246 gdb_pymodule_addobject.
5247 * python/py-evts.c (add_new_registry): Use
5248 gdb_pymodule_addobject.
5249 (gdbpy_initialize_py_events): Likewise.
5250 * python/py-finishbreakpoint.c
5251 (gdbpy_initialize_finishbreakpoints): Use
5252 gdb_pymodule_addobject.
5253 * python/py-frame.c (gdbpy_initialize_frames): Use
5254 gdb_pymodule_addobject.
5255 * python/py-function.c (gdbpy_initialize_functions): Use
5256 gdb_pymodule_addobject.
5257 * python/py-inferior.c (gdbpy_initialize_inferior): Use
5258 gdb_pymodule_addobject.
5259 * python/py-infthread.c (gdbpy_initialize_thread): Use
5260 gdb_pymodule_addobject.
5261 * python/py-objfile.c (gdbpy_initialize_objfile): Use
5262 gdb_pymodule_addobject.
5263 * python/py-param.c (gdbpy_initialize_parameters): Use
5264 gdb_pymodule_addobject.
5265 * python/py-progspace.c (gdbpy_initialize_pspace): Use
5266 gdb_pymodule_addobject.
5267 * python/py-symbol.c (gdbpy_initialize_symbols): Use
5268 gdb_pymodule_addobject.
5269 * python/py-symtab.c (gdbpy_initialize_symtabs): Use
5270 gdb_pymodule_addobject.
5271 * python/py-type.c (gdbpy_initialize_types): Use
5272 gdb_pymodule_addobject.
5273 * python/py-utils.c (gdb_pymodule_addobject): New function.
5274 * python/py-value.c (gdbpy_initialize_values): Use
5275 gdb_pymodule_addobject.
5276 * python/python-internal.h (gdb_pymodule_addobject): Declare.
5277 * python/python.c (_initialize_python): Use
5278 gdb_pymodule_addobject.
5279
5280 2013-05-20 Tom Tromey <tromey@redhat.com>
5281
5282 * python/py-cmd.c (cmdpy_completer): Use explicit decref.
5283 * python/py-param.c (get_set_value, get_show_value): Use
5284 explicit decrefs.
5285 * python/python.c (start_type_printers, apply_type_printers):
5286 Use explicit decrefs.
5287
5288 2013-05-20 Tom Tromey <tromey@redhat.com>
5289
5290 * python/py-evts.c (gdbpy_initialize_py_events): Don't
5291 incref the module.
5292
5293 2013-05-20 Tom Tromey <tromey@redhat.com>
5294
5295 * python/python.c (gdbpy_run_events): Decref the result
5296 of PyObject_CallObject.
5297
5298 2013-05-20 Tom Tromey <tromey@redhat.com>
5299
5300 * python/py-symtab.c (set_sal): Use
5301 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION. Return -1 on error.
5302 (symtab_and_line_to_sal_object): Update.
5303
5304 2013-05-20 Tom Tromey <tromey@redhat.com>
5305
5306 * python/py-param.c (compute_enum_values): Decref 'item'.
5307
5308 2013-05-20 Tom Tromey <tromey@redhat.com>
5309
5310 * mi/mi-main.c: Include python-internal.h.
5311 (mi_cmd_list_features): Check gdb_python_initialized.
5312 * python/py-inferior.c (python_on_normal_stop, python_on_resume)
5313 (python_inferior_exit, python_new_objfile, add_thread_object)
5314 (delete_thread_object, py_free_inferior): Check
5315 gdb_python_initialized.
5316 * python/py-prettyprint.c (apply_val_pretty_printer): Check
5317 gdb_python_initialized.
5318 * python/py-type.c (save_objfile_types): Check
5319 gdb_python_initialized.
5320 * python/python-internal.h (gdb_python_initialized): Declare.
5321 * python/python.c (ensure_python_env): Throw exception if
5322 Python not initialized.
5323 (before_prompt_hook, source_python_script_for_objfile)
5324 (start_type_printers, apply_type_printers,
5325 free_type_printers): Check gdb_python_initialized.
5326 * varobj.c (varobj_get_display_hint)
5327 (dynamic_varobj_has_child_method, update_dynamic_varobj_children)
5328 (install_new_value_visualizer, varobj_set_visualizer)
5329 (value_get_print_value): Check gdb_python_initialized.
5330
5331 2013-05-20 Tom Tromey <tromey@redhat.com>
5332
5333 * python/py-arch.c (gdbpy_initialize_arch): Return 'int'.
5334 Check errors.
5335 * python/py-auto-load.c (gdbpy_initialize_auto_load): Return 'int'.
5336 * python/py-block.c (gdbpy_initialize_blocks): Return 'int'.
5337 Check errors.
5338 * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Return 'int'.
5339 Check errors.
5340 * python/py-cmd.c (gdbpy_initialize_commands): Return 'int'.
5341 Check errors.
5342 * python/py-event.c (gdbpy_initialize_event): Return 'int'.
5343 Check errors.
5344 * python/py-event.h (GDBPY_NEW_EVENT_TYPE): Change generated
5345 init function to return 'int'.
5346 * python/py-evtregistry.c (gdbpy_initialize_eventregistry):
5347 Return 'int'. Check errors.
5348 * python/py-evts.c (gdbpy_initialize_py_events): Return 'int'.
5349 Check errors.
5350 * python/py-finishbreakpoint.c (gdbpy_initialize_finishbreakpoints):
5351 Return 'int'. Check errors.
5352 * python/py-frame.c (gdbpy_initialize_frames): Return 'int'.
5353 Check errors.
5354 * python/py-function.c (gdbpy_initialize_functions): Return 'int'.
5355 Check errors.
5356 * python/py-gdb-readline.c (gdbpy_initialize_gdb_readline):
5357 Check errors.
5358 * python/py-inferior.c (gdbpy_initialize_inferior): Return 'int'.
5359 Check errors.
5360 * python/py-infthread.c (gdbpy_initialize_thread): Return 'int'.
5361 Check errors.
5362 * python/py-lazy-string.c (gdbpy_initialize_lazy_string): Return 'int'.
5363 Check errors.
5364 * python/py-objfile.c (gdbpy_initialize_objfile): Return 'int'.
5365 Check errors.
5366 * python/py-param.c (gdbpy_initialize_parameters): Return 'int'.
5367 Check errors.
5368 * python/py-progspace.c (gdbpy_initialize_pspace): Return 'int'.
5369 Check errors.
5370 * python/py-symbol.c (gdbpy_initialize_symbols): Return 'int'.
5371 Check errors.
5372 * python/py-symtab.c (gdbpy_initialize_symtabs): Return 'int'.
5373 Check errors.
5374 * python/py-type.c (gdbpy_initialize_types): Return 'int'.
5375 Check errors.
5376 * python/py-value.c (gdbpy_initialize_values): Return 'int'.
5377 Check errors.
5378 * python/python-internal.h (gdbpy_initialize_auto_load,
5379 gdbpy_initialize_values, gdbpy_initialize_frames,
5380 gdbpy_initialize_symtabs, gdbpy_initialize_commands,
5381 gdbpy_initialize_symbols, gdbpy_initialize_symtabs,
5382 gdbpy_initialize_blocks, gdbpy_initialize_types,
5383 gdbpy_initialize_functions, gdbpy_initialize_pspace,
5384 gdbpy_initialize_objfile, gdbpy_initialize_breakpoints,
5385 gdbpy_initialize_finishbreakpoints,
5386 gdbpy_initialize_lazy_string, gdbpy_initialize_parameters,
5387 gdbpy_initialize_thread, gdbpy_initialize_inferior,
5388 gdbpy_initialize_eventregistry, gdbpy_initialize_event,
5389 gdbpy_initialize_py_events, gdbpy_initialize_stop_event,
5390 gdbpy_initialize_signal_event,
5391 gdbpy_initialize_breakpoint_event,
5392 gdbpy_initialize_continue_event,
5393 gdbpy_initialize_exited_event, gdbpy_initialize_thread_event,
5394 gdbpy_initialize_new_objfile_event, gdbpy_initialize_arch):
5395 Update. Use CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
5396 * python/python.c (gdb_python_initialized): New global.
5397 (gdbpy_initialize_events): Return 'int'. Check errors.
5398 (_initialize_python): Check errors. Set
5399 gdb_python_initialized.
5400
5401 2013-05-20 Tom Tromey <tromey@redhat.com>
5402
5403 * python/py-finishbreakpoint.c (bpfinishpy_out_of_scope):
5404 Decref the reslut of PyObject_CallMethod.
5405
5406 2013-05-20 Tom Tromey <tromey@redhat.com>
5407
5408 * python/py-event.c (gdbpy_initialize_event_generic): Return
5409 early if PyType_Ready fails.
5410
5411 2013-05-20 Tom Tromey <tromey@redhat.com>
5412
5413 * python/py-type.c (make_fielditem): Add gdb_assert_not_reached
5414 as 'default' in the switch.
5415
5416 2013-05-20 Tom Tromey <tromey@redhat.com>
5417
5418 * python/py-inferior.c (gdbpy_inferiors): Update. Hoist
5419 get_addr_from_python calls out of TRY_CATCH.
5420 (infpy_write_memory, infpy_search_memory): Likewise.
5421 * python/py-utils.c (get_addr_from_python): Return negative
5422 value on error. Use TRY_CATCH.
5423 * python/python-internal.h (get_addr_from_python): Use
5424 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
5425
5426 2013-05-20 Tom Tromey <tromey@redhat.com>
5427
5428 * python/py-event.c (evpy_emit_event): Decref the
5429 result of PyObject_CallFunctionObjArgs.
5430
5431 2013-05-20 Tom Tromey <tromey@redhat.com>
5432
5433 * python/py-cmd.c (cmdpy_completer): Use iterator protocol.
5434 Correctly decref.
5435
5436 2013-05-20 Tom Tromey <tromey@redhat.com>
5437
5438 * python/py-cmd.c (cmdpy_init): Decref 'ds_obj'.
5439
5440 2013-05-20 Tom Tromey <tromey@redhat.com>
5441
5442 * python/py-event.h (gdbpy_initialize_event_generic): Use
5443 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
5444 * python/py-evts.c (add_new_registry): Use
5445 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
5446 * python/python-internal.h
5447 (CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION): New macro.
5448
5449 2013-05-20 Tom Tromey <tromey@redhat.com>
5450
5451 * python/py-arch.c (archpy_disassemble): Update.
5452 * python/py-type.c (typy_get_composite, typy_lookup_typename)
5453 (typy_lookup_type): Use GDB_PY_HANDLE_EXCEPTION.
5454 * python/py-utils.c (gdbpy_convert_exception): Return 'void'.
5455 * python/python-internal.h (CPYCHECKER_SETS_EXCEPTION): New
5456 macro.
5457 (GDB_PY_HANDLE_EXCEPTION): Update.
5458 (gdbpy_convert_exception): Update. Use CPYCHECKER_SETS_EXCEPTION.
5459
5460 2013-05-20 Tom Tromey <tromey@redhat.com>
5461
5462 * python/python-internal.h (events_object_type): Remove.
5463
5464 2013-05-20 Tom Tromey <tromey@redhat.com>
5465
5466 * python/py-event.h (evpy_emit_event): Use
5467 CPYCHECKER_STEALS_REFERENCE_TO_ARG.
5468 * python/python-internal.h (CPYCHECKER_STEALS_REFERENCE_TO_ARG):
5469 New macro.
5470
5471 2013-05-20 Tom Tromey <tromey@redhat.com>
5472
5473 * py-evtregistry.c (create_event_object): Decref
5474 eventregistry_object if PyList_New fails.
5475
5476 2013-05-20 Tom Tromey <tromey@redhat.com>
5477
5478 * py-cmd.c (gdbpy_string_to_argv): Check result of
5479 PyList_New.
5480
5481 2013-05-20 Tom Tromey <tromey@redhat.com>
5482
5483 * python/python.c (before_prompt_hook): Add cleanup to
5484 decref 'hook'.
5485
5486 2013-05-20 Tom Tromey <tromey@redhat.com>
5487
5488 * python/py-function.c (fnpy_init): Decref result of
5489 PyObject_GetAttrString.
5490
5491 2013-05-20 Tom Tromey <tromey@redhat.com>
5492
5493 * python/py-threadevent.c (get_event_thread): Use
5494 CPYCHECKER_RETURNS_BORROWED_REF.
5495 * python/python-internal.h (CPYCHECKER_RETURNS_BORROWED_REF):
5496 New define.
5497 (pspace_to_pspace_object, objfile_to_objfile_object)
5498 (find_thread_object): Use it.
5499
5500 2013-05-20 Tom Tromey <tromey@redhat.com>
5501
5502 * python/py-arch.c (arch_object_type): Use
5503 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5504 * python/py-block.c (block_syms_iterator_object_type):
5505 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5506 * python/py-bpevent.c (breakpoint_event_object_type):
5507 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5508 * python/py-cmd.c (cmdpy_object_type): Use
5509 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5510 * python/py-continueevent.c (continue_event_object_type):
5511 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5512 * python/py-event.h (GDBPY_NEW_EVENT_TYPE):
5513 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5514 * python/py-events.h (thread_event_object_type):
5515 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5516 * python/py-evtregistry.c (eventregistry_object_type): Use
5517 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5518 * python/py-exitedevent.c (exited_event_object_type):
5519 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5520 * python/py-finishbreakpoint.c (finish_breakpoint_object_type):
5521 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5522 * python/py-function.c (fnpy_object_type): Use
5523 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5524 * python/py-inferior.c (inferior_object_type, membuf_object_type):
5525 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5526 * python/py-infthread.c (thread_object_type): Use
5527 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5528 * python/py-lazy-string.c (lazy_string_object_type):
5529 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5530 * python/py-newobjfileevent.c (new_objfile_event_object_type):
5531 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5532 * python/py-objfile.c (objfile_object_type): Use
5533 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5534 * python/py-param.c (parmpy_object_type):
5535 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5536 * python/py-progspace.c (pspace_object_type):
5537 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5538 * python/py-signalevent.c (signal_event_object_type):
5539 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5540 * python/py-symtab.c (symtab_object_type, sal_object_type): Use
5541 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5542 * python/py-type.c (type_object_type, field_object_type)
5543 (type_iterator_object_type): Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5544 * python/py-internal.h (CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF): New
5545 define.
5546 (value_object_type, block_object_type, symbol_object_type)
5547 (event_object_type, stop_event_object_type, breakpoint_object_type)
5548 (frame_object_type): Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5549
5550 2013-05-20 Andreas Tobler <andreas@fgznet.ch>
5551
5552 * Makefile.in (ALL_TARGET_OBS): Add ppcfbsd-tdep.o.
5553 (ALLDEPFILES): Add ppcfbsd-nat.c and ppcfbsd-tdep.c.
5554
5555 2013-05-20 Doug Evans <dje@google.com>
5556
5557 When reading CU, stay in DWO. Be more tolerent of bad debug info.
5558 For Fission.
5559 * dwarf2read.c (struct dwarf2_per_cu_data): New member
5560 reading_dwo_directly.
5561 (struct signatured_type): New member dwo_unit.
5562 (struct die_reader_specs): New member comp_dir.
5563 (create_signatured_type_table_from_index): Use malloc for
5564 all_type_units instead of objfile's obstack.
5565 (create_all_type_units): Ditto.
5566 (fill_in_sig_entry_from_dwo_entry): New function.
5567 (add_type_unit): New function.
5568 (lookup_dwo_signatured_type): New function.
5569 (lookup_dwp_signatured_type): New function.
5570 (lookup_signatured_type): New arg cu. All callers updated.
5571 (init_cu_die_reader): Initialize comp_dir.
5572 (read_cutu_die_from_dwo): New arg stub_comp_dir. All callers updated.
5573 Change assert of matching type signatures to call error on mismatch.
5574 (lookup_dwo_unit): Add assert.
5575 (init_tu_and_read_dwo_dies): New function.
5576 (init_cutu_and_read_dies): Call it.
5577 (build_type_unit_groups): Handle case of no type unit groups created.
5578 (hash_dwo_file, eq_dwo_file): Handle missing comp_dir.
5579 (lookup_dwo_cutu): Tweak complaint.
5580 (dwarf2_free_abbrev_table): Check for NULL abbrev_table.
5581 (dwarf2_per_objfile_free): Free all_type_units.
5582
5583 2013-05-20 Joel Brobecker <brobecker@adacore.com>
5584
5585 * windows-nat.c (handle_unload_dll): Add missing empty line.
5586
5587 2013-05-20 Joel Brobecker <brobecker@adacore.com>
5588
5589 * dwarf2read.c (prototyped_function_p): New function.
5590 (read_subroutine_type): Use it.
5591
5592 2013-05-20 Joel Brobecker <brobecker@adacore.com>
5593
5594 * rs6000-aix-tdep.c: De-indent some example code provided
5595 as a comment.
5596
5597 2013-05-17 Edjunior Machado <emachado@linux.vnet.ibm.com>
5598
5599 * ppc-linux-nat.c (ppc_linux_region_ok_for_hw_watchpoint): Check if the
5600 region is ok for a hardware watchpoint using the new ptrace interface
5601 on Power servers.
5602
5603 2013-05-17 Doug Evans <dje@google.com>
5604
5605 * NEWS: Mention new maintenance commands check-symtabs, and
5606 expand-symtabs, and renamed check-psymtabs.
5607 * psymtab.c (maintenance_check_psymtabs): Renamed from
5608 maintenance_check_symtabs. Only process already-expanded symbol
5609 tables.
5610 (_initialize_psymtab): Update.
5611 * symmisc.c (maintenance_check_symtabs): New function.
5612 (maintenance_expand_name_matcher): New function
5613 (maintenance_expand_file_matcher): New function
5614 (maintenance_expand_symtabs): New function.
5615 (_initialize_symmisc): Add "mt check-symtabs" and "mt expand-symtabs"
5616 commands.
5617
5618 2013-05-17 Tom Tromey <tromey@redhat.com>
5619
5620 * python/py-inferior.c (infpy_read_memory): Don't call
5621 PyErr_SetString if PyObject_New fails.
5622 * python/py-frame.c (frame_info_to_frame_object): Don't call
5623 PyErr_SetString if PyObject_New fails.
5624
5625 2013-05-17 Pavel Chupin <pavel.v.chupin@intel.com>
5626
5627 * acinclude.m4: Add check for dlopen in libdl.
5628 * configure.ac: Ditto.
5629 * configure: Regenerate.
5630
5631 2013-05-17 Phil Muldoon <pmuldoon@redhat.com>
5632
5633 * frame.c (frame_stash): Convert to htab.
5634 (frame_addr_hash): New function.
5635 (frame_addr_hash_eq): New function.
5636 (frame_stash_create): Convert function to create
5637 a hash table.
5638 (frame_stash_add): Convert function to add an entry to a hash
5639 table.
5640 (frame_stash_find): Convert function to search the hash table.
5641 (frame_stash_invalidate): Convert function to empty the hash
5642 table.
5643 (get_frame_id): Only add to stash if a frame_id is created.
5644 (_initialize_frame): Call frame_stash_create.
5645
5646 2013-05-16 Yue Lu <hacklu.newborn@gmail.com> (tiny change)
5647
5648 * configure.ac: Ensure MIG is available when building for GNU Hurd
5649 hosts.
5650 * configure: Regenerate.
5651
5652 2013-05-16 Joel Brobecker <brobecker@adacore.com>
5653
5654 * dwarf2read.c (set_cu_language): Add DW_LANG_UPC handling.
5655
5656 2013-05-16 Joel Brobecker <brobecker@adacore.com>
5657
5658 * ada-lang.c (ada_make_symbol_completion_list): Make sure
5659 all cleanups are done before returning from this function.
5660
5661 2013-05-15 Joel Brobecker <brobecker@adacore.com>
5662
5663 * utils.h: #include "exceptions.h".
5664 (enum errors): Remove partial declaration.
5665
5666 2013-05-15 Joel Brobecker <brobecker@adacore.com>
5667
5668 * gdbarch.sh (core_xfer_shared_libraries_aix): New method.
5669 * gdbarch.h, gdbarch.c: Regenerate.
5670 * corelow.c (core_xfer_partial): Add TARGET_OBJECT_LIBRARIES_AIX
5671 handling.
5672
5673 * rs6000-aix-tdep.h: New file.
5674 * Makefile.in (HFILES_NO_SRCDIR): Add rs6000-aix-tdep.h.
5675 * rs6000-aix-tdep.c: Include "rs6000-aix-tdep.h" and
5676 "xml-utils.h".
5677 (struct field_info, struct ld_info_desc): New types.
5678 (ld_info32_desc, ld_info64_desc): New static constants.
5679 (struct ld_info): New type.
5680 (rs6000_aix_extract_ld_info): New function.
5681 (rs6000_aix_shared_library_to_xml): Likewise.
5682 (rs6000_aix_ld_info_to_xml): Likewise.
5683 (rs6000_aix_core_xfer_shared_libraries_aix): Likewise.
5684 (rs6000_aix_init_osabi): Add call to
5685 set_gdbarch_core_xfer_shared_libraries_aix.
5686 * rs6000-nat.c: Add "rs6000-aix-tdep.h" include.
5687 Remove "xml-utils.h" include.
5688 (LdInfo): Delete typedef.
5689 (ARCH64_DECL, LDI_FIELD, LDI_NEXT, LDI_FD, LDI_FILENAME):
5690 Delete macros.
5691 (rs6000_ptrace_ldinfo): Change return type to gdb_byte *.
5692 Adjust code accordingly.
5693 (rs6000_core_ldinfo): Delete, folded into
5694 rs6000_aix_core_xfer_shared_libraries_aix.
5695 (rs6000_xfer_shared_library): Delete.
5696 (rs6000_xfer_shared_libraries): Reimplement.
5697
5698 2013-05-15 Markus Metzger <markus.t.metzger@intel.com>
5699
5700 * record.c (record_goto_cmdlist): New.
5701 (cmd_record_goto): Split into this ...
5702 (cmd_record_goto_begin): ... this
5703 (cmd_record_goto_end): ... and this.
5704 (_initialize_record): Change "record goto" to prefix command.
5705 Add commands for "record goto begin" and "record goto end".
5706 Add an alias for "record goto start" to "record goto begin".
5707
5708 2013-05-14 Jan Kratochvil <jan.kratochvil@redhat.com>
5709
5710 * linespec.c (convert_linespec_to_sals): New comment for
5711 SOURCE_FILENAME assignment.
5712
5713 2013-05-14 Jan Kratochvil <jan.kratochvil@redhat.com>
5714
5715 * cleanups.c (restore_my_cleanups): Replace gdb_assert by
5716 internal_warning.
5717
5718 2013-05-14 Tom Tromey <tromey@redhat.com>
5719
5720 * eval.c (parse_and_eval_long): Make 'exp' const.
5721 * value.h (parse_and_eval_long): Update.
5722
5723 2013-05-14 Tom Tromey <tromey@redhat.com>
5724
5725 * ui-file.c (gdb_fopen): Make arguments const.
5726 * ui-file.h (gdb_fopen): Make arguments const.
5727
5728 2013-05-14 Tom Tromey <tromey@redhat.com>
5729
5730 * remote.c (remote_set_trace_notes): Make arguments const.
5731 * target.c (update_current_target): Update cast.
5732 * target.h (to_set_trace_notes): Make arguments const.
5733
5734 2013-05-14 Tom Tromey <tromey@redhat.com>
5735
5736 * go32-nat.c (go32_terminal_info): Make 'args' const.
5737 * inferior.h (child_terminal_info): Update.
5738 * inflow.c (child_terminal_info): Make 'args' const.
5739 * target.c (default_terminal_info): Make 'args' const.
5740 (debug_to_terminal_save_ours): Likewise.
5741 * target.h (struct target_ops) <to_terminal_info>: Make argument
5742 const.
5743
5744 2013-05-13 Tom Tromey <tromey@redhat.com>
5745
5746 * gcore.c (create_gcore_bfd): Make 'filename' const.
5747 * gcore.h (create_gcore_bfd): Make 'filename' const.
5748 * record-full.c (record_full_save): Make 'recfilename' const.
5749 * target.c (target_save_record): Make 'filename' const.
5750 * target.h (struct target_ops) <to_save_record>: Make 'filename'
5751 const.
5752 (target_save_record): Likewise.
5753
5754 2013-05-13 Tom Tromey <tromey@redhat.com>
5755
5756 PR gdb/15338:
5757 * dwarf2read.c (dwarf2_record_block_ranges): Ensure that the
5758 ranges section has been read.
5759
5760 2013-05-13 Tom Tromey <tromey@redhat.com>
5761
5762 PR exp/15364:
5763 * eval.c (evaluate_subexp_standard) <STRUCTOP_STRUCT,
5764 STRUCTOP_PTR>: Return a not_lval value for
5765 EVAL_AVOID_SIDE_EFFECTS.
5766 * opencl-lang.c (evaluate_subexp_opencl): Return a not_lval value
5767 for EVAL_AVOID_SIDE_EFFECTS.
5768
5769 2013-05-13 Joel Brobecker <brobecker@adacore.com>
5770
5771 * rs6000-aix-tdep.c (rs6000_push_dummy_call): Convert
5772 floating point registers to register type before storing
5773 value.
5774 * rs6000-lynx178-tdep.c (rs6000_lynx178_push_dummy_call):
5775 Likewise.
5776
5777 2013-05-10 Joel Brobecker <brobecker@adacore.com>
5778 Tom Tromey <tromey@redhat.com>
5779
5780 * common/filestuff.c (mark_fd_no_cloexec, unmark_fd_no_cloexec):
5781 New functions.
5782 * common/filestuff.c (mark_fd_no_cloexec, unmark_fd_no_cloexec):
5783 Declare.
5784 * darwin-nat.c (darwin_pre_ptrace): Use mark_fd_no_cloexec.
5785 (darwin_ptrace_him): Use unmark_fd_no_cloexec.
5786 * inf-ttrace.c (do_cleanup_pfds): Use unmark_fd_no_cloexec.
5787 (inf_ttrace_prepare): Use mark_fd_no_cloexec.
5788
5789 2013-05-10 Freddie Chopin <freddie_chopin@op.pl>
5790 Tom Tromey <tromey@redhat.com>
5791
5792 PR build/15414:
5793 * configure: Rebuild.
5794 * configure.ac (build_warnings): Do not use -Wformat-nonliteral
5795 with -Wno-format.
5796
5797 2013-05-10 Pedro Alves <palves@redhat.com>
5798
5799 * remote.c (_initialize_remote): Fix spelling of
5800 qXfer:traceframe-info:read packet in packet config command.
5801
5802 2013-05-10 David Taylor <dtaylor@emc.com>
5803
5804 PR remote/15455
5805
5806 * remote.c (remote_trace_set_readonly_regions): Do not overwrite
5807 "QTro" at start of packet.
5808
5809 2013-05-10 Joel Brobecker <brobecker@adacore.com>
5810
5811 * solib-aix.c (solib_aix_relocate_section_addresses):
5812 For the .bss section action, apply the same offset as
5813 the .data section.
5814
5815 2013-05-10 Joel Brobecker <brobecker@adacore.com>
5816
5817 * solib-aix.c (solib_aix_relocate_section_addresses):
5818 Remove FIXME comment.
5819
5820 2013-05-10 Joel Brobecker <brobecker@adacore.com>
5821
5822 PR tdep/15420:
5823 * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
5824 New functions, directly copied from sparc-sol-thread.c.
5825 * sparc-sol-thread.c: Delete.
5826 * configure.ac: Remove code handling sparc-solaris-thread.c.
5827 * configure: Regenerate.
5828
5829 2013-05-10 Phil Muldoon <pmuldoon@redhat.com>
5830
5831 * stack.c (backtrace_command_1): Add "no-filters", and Python frame
5832 filter logic.
5833 (backtrace_command): Add "no-filters" option parsing.
5834 (_initialize_stack): Alter help to reflect "no-filters" option.
5835 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-framefilter.o
5836 (SUBDIR_PYTHON_SRCS): Add py-framefilter.c
5837 (py-frame.o): Add target
5838 * data-directory/Makefile.in (PYTHON_DIR): Add Python frame
5839 filter files.
5840 * python/python.h: Add new frame filter constants, and flag enum.
5841 (apply_frame_filter): Add definition.
5842 * python/python.c (apply_frame_filter): New non-Python
5843 enabled function.
5844 * python/py-utils.c (py_xdecref): New function.
5845 (make_cleanup_py_xdecref): Ditto.
5846 * python/py-objfile.c: Declare frame_filters dictionary.
5847 (objfpy_dealloc): Add frame_filters dealloc.
5848 (objfpy_new): Initialize frame_filters attribute.
5849 (objfile_to_objfile_object): Ditto.
5850 (objfpy_get_frame_filters): New function.
5851 (objfpy_set_frame_filters): New function.
5852 * python/py-progspace.c: Declare frame_filters dictionary.
5853 (pspy_dealloc): Add frame_filters dealloc.
5854 (pspy_new): Initialize frame_filters attribute.
5855 (pspacee_to_pspace_object): Ditto.
5856 (pspy_get_frame_filters): New function.
5857 (pspy_set_frame_filters): New function.
5858 * python/py-framefilter.c: New file.
5859 * python/lib/gdb/command/frame_filters.py: New file.
5860 * python/lib/gdb/frames.py: New file.
5861 * python/lib/gdb/__init__.py: Initialize global frame_filters
5862 dictionary
5863 * python/lib/gdb/FrameDecorator.py: New file.
5864 * python/lib/gdb/FrameIterator.py: New file.
5865 * mi/mi-cmds.c (mi_cmds): Add frame filters command.
5866 * mi/mi-cmds.h: Declare.
5867 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames): Add
5868 --no-frame-filter logic, and Python frame filter logic.
5869 (stack_enable_frame_filters): New function.
5870 (parse_no_frame_option): Ditto.
5871 (mi_cmd_stack_list_frames): Add --no-frame-filter and Python frame
5872 filter logic.
5873 (mi_cmd_stack_list_locals): Ditto.
5874 (mi_cmd_stack_list_args): Ditto.
5875 (mi_cmd_stack_list_variables): Ditto.
5876 * NEWS: Add frame filter note.
5877
5878 2013-05-09 Doug Evans <dje@google.com>
5879
5880 * symfile.c (syms_from_objfile_1): Delete args offsets, num_offsets.
5881 All callers updated.
5882 (syms_from_objfile): Ditto. Make static.
5883 (symbol_file_add_with_addrs): Renamed from
5884 symbol_file_add_with_addrs_or_offsets. Delete args offsets,
5885 num_offsets. All callers updated.
5886 * symfile.h (syms_from_objfile): Delete.
5887
5888 * symfile.c (decrement_reading_symtab): Add assert.
5889 (increment_reading_symtab): Ditto.
5890
5891 2013-05-09 Joel Brobecker <brobecker@adacore.com>
5892
5893 * source.c (forward_search_command): Replace call to getc
5894 by call to fgetc.
5895 (reverse_search_command): Likewise.
5896
5897 2013-05-08 Doug Evans <dje@google.com>
5898
5899 * psymtab.c (expand_symtabs_matching_via_partial): Fix file name
5900 matching test.
5901
5902 2013-05-08 Joel Brobecker <brobecker@adacore.com>
5903
5904 * sol-thread.c (info_cb): Factorize the code a little.
5905
5906 2013-05-08 Joel Brobecker <brobecker@adacore.com>
5907
5908 * sol-thread.c (info_cb): Rework the output of the "maintenance
5909 info sol-threads" command a bit.
5910
5911 2013-05-08 Joel Brobecker <brobecker@adacore.com>
5912
5913 * sol-thread.c (info_cb) [ti.ti_state == TD_THR_SLEEP]:
5914 Replace ti.ti_startfunc by ti.ti_pc.
5915
5916 2013-05-08 Joel Brobecker <brobecker@adacore.com>
5917
5918 * solib-aix.c (solib_aix_free_library_list): New function
5919 for the case where HAVE_LIBEXPAT is not defined.
5920
5921 2013-05-07 Sergio Durigan Junior <sergiodj@redhat.com>
5922
5923 PR breakpoints/15413:
5924 * breakpoint.c (condition_completer): Simplify the code to
5925 disconsider multiple locations of breakpoints when completing the
5926 "condition" command.
5927
5928 2013-05-07 Pierre Muller <muller@sourceware.org>
5929
5930 * common/linux-btrace.c: ARI fix: Include "gdb_wait.h"
5931 instead of <sys/wait.h>.
5932
5933 2013-05-07 Pierre Muller <muller@sourceware.org>
5934
5935 * nios2-tdep.c (nios2_dwarf_reg_to_regnum): ARI fix: remove
5936 trailing new line from warning message.
5937
5938 2013-05-07 Pierre Muller <muller@sourceware.org>
5939
5940 * contrib/ari/gdb_ari.sh (SOLIB_ADD, SOLIB_CREATE_INFERIOR_HOOK)
5941 (PC_SOLIB): Change type from ari_deprecate to ari_regression.
5942
5943 2013-05-07 Joel Brobecker <brobecker@adacore.com>
5944
5945 * rs6000-nat.c (rs6000_core_ldinfo): Remove '\n' at end of
5946 error message (ARI fix).
5947
5948 2013-05-07 Joel Brobecker <brobecker@adacore.com>
5949
5950 * features/library-list-aix.dtd: Replace library-list by
5951 library-list-aix.
5952 * rs6000-nat.c: Replace library-list by library-list-aix
5953 throughout.
5954 * solib-aix.c: Likewise.
5955
5956 2013-05-07 Joel Brobecker <brobecker@adacore.com>
5957
5958 * target.h (enum target_object) [TARGET_OBJECT_LIBRARIES_AIX]:
5959 Renames TARGET_OBJECT_AIX_LIBRARIES.
5960 * rs6000-nat.c: Replace TARGET_OBJECT_AIX_LIBRARIES with
5961 TARGET_OBJECT_LIBRARIES_AIX throughout.
5962 * solib-aix.c: Likwise.
5963
5964 2013-05-07 Yao Qi <yao@codesourcery.com>
5965
5966 * solib-dsbt.c (struct dsbt_info) <enable_break2_done>: Remove.
5967 (get_dsbt_info, enable_break, dsbt_clear_solib): Update.
5968
5969 2013-05-07 Yao Qi <yao@codesourcery.com>
5970
5971 * solib-dsbt.c (enable_break): Declare.
5972 (dsbt_current_sos): Remove call to enable_break2.
5973 (enable_break2): Rename to enable_break. Set solib breakpoint
5974 on '_dl_debug_state'.
5975 (enable_break): Remove.
5976
5977 2013-05-07 Luis Machado <lgustavo@codesourcery.com>
5978
5979 * ppc-linux-nat.c (ppc_linux_new_thread): Clear the new thread's
5980 debug state prior to replicating existing hardware watchpoints or
5981 breakpoints.
5982
5983 2013-05-07 Jan Kratochvil <jan.kratochvil@redhat.com>
5984
5985 * gcore.c (gcore_create_callback): Ignore sections with
5986 separate_debug_objfile_backlink != NULL.
5987
5988 2013-05-06 Sandra Loosemore <sandra@codesourcery.com>
5989 Andrew Jenner <andrew@codesourcery.com>
5990 Chung-Lin Tang <cltang@codesourcery.com>
5991 Julian Brown <julian@codesourcery.com>
5992
5993 Based on the nios2-elf port from Altera Corporation.
5994
5995 * Makefile.in (ALL_TARGET_OBS): Add nios2-tdep.o and
5996 nios2-linux-tdep.o.
5997 (HFILES_NO_SRCDIR): Add nios2-tdep.h.
5998 (ALLDEPFILES): Add nios2-tdep.c and nios2-linux-tdep.c.
5999 * configure.tgt: Add nios2*-*-linux* and nios2*-*-* targets.
6000 * nios2-tdep.h: New.
6001 * nios2-tdep.c: New.
6002 * nios2-linux-tdep.c: New.
6003 * features/Makefile (WHICH): Add nios2-linux.
6004 (nios2-linux-expedite): Set.
6005 * features/nios2-cpu.xml: New.
6006 * features/nios2.xml: New.
6007 * features/nios2-linux.xml: New.
6008 * features/nios2.c: New (autogenerated).
6009 * features/nios2-linux.c: New (autogenerated).
6010 * regformats/nios2-linux.dat: New (autogenerated).
6011 * NEWS (Changes since GDB 7.6): Add new Nios II targets
6012 and commands.
6013
6014 2013-05-06 Doug Evans <dje@google.com>
6015
6016 * symfile.c: Whitespace cleanup.
6017
6018 * solist.h (struct target_so_ops): New member clear_so.
6019 * solib-svr4.c (svr4_clear_so): New function.
6020 (_initialize_svr4_solib): Set svr4_so_ops.clear_so.
6021 * solib.c (clear_so): Renamed from free_so_symbols.
6022 All callers updated. Call target clear_so if it exists.
6023
6024 2013-05-06 Tom Tromey <tromey@redhat.com>
6025
6026 * ada-lang.c (ada_value_primitive_packed_val): Don't
6027 call value_incref.
6028 * value.c (set_value_parent): Incref the new parent and decref
6029 the old parent.
6030 (value_copy, value_primitive_field): Use set_value_parent.
6031
6032 2013-05-06 Tom Tromey <tromey@redhat.com>
6033
6034 * dwarf2loc.c (invalid_synthetic_pointer): Move earlier.
6035 (indirect_pieced_value): Call dwarf2_fetch_constant_bytes
6036 if needed.
6037 * dwarf2loc.h (dwarf2_fetch_constant_bytes): Declare.
6038 * dwarf2read.c (write_constant_as_bytes)
6039 (dwarf2_fetch_constant_bytes): New functions.
6040
6041 2013-05-06 Tom Tromey <tromey@redhat.com>
6042
6043 * dwarf2read.c (dwarf2_const_value_data): Remove unused
6044 parameters.
6045 (dwarf2_const_value_attr): Update.
6046
6047 2013-05-06 Tom Tromey <tromey@redhat.com>
6048
6049 * somread.c (som_symfile_offsets): Add 'const' to addrs.
6050 * machoread.c (macho_symfile_offsets): Add 'const' to addrs.
6051 * xcoffread.c (xcoff_symfile_offsets): Add 'const' to addrs.
6052 Remove declaration.
6053
6054 2013-05-06 Tom Tromey <tromey@redhat.com>
6055
6056 * dwarf2read.c (dwarf2_const_value_attr): Use 'obstack', not
6057 objfile's obstack.
6058
6059 2013-05-06 Doug Evans <dje@google.com>
6060
6061 * dbxread.c (process_one_symbol): Constify section_offsets parameter.
6062 * stabsread.h (process_one_symbol): Update declaration.
6063 * dwarf2read.c (dw2_relocate): Constify new_offsets, delta parameters.
6064 * elfread.c (elf_symfile_relocate_probe): Ditto.
6065 * psymtab.c (relocate_psymtabs): Ditto.
6066 * objfiles.c (objfile_relocate1): Constify new_offsets parameter.
6067 (objfile_relocate): Ditto.
6068 * objfiles.h (objfile_relocate): Update declaration.
6069 * symfile.c (relative_addr_info_to_section_offsets): Constify
6070 addrs parameter.
6071 (default_symfile_offsets): Ditto.
6072 (syms_from_objfile_1): Constify offsets parameter.
6073 (syms_from_objfile): Ditto.
6074 (symbol_file_add_with_addrs_or_offsets): Ditto.
6075 (symfile_map_offsets_to_segments): Constify data parameter.
6076 * symfile.h (struct quick_symbol_functions): Constify new_offsets,
6077 delta parameters of member relocate.
6078 (struct sym_probe_fns): Constify new_offsets,
6079 delta parameters of member sym_relocate_probe.
6080 (struct sym_fns): Constify section_addr_info parameter of member
6081 sym_offsets.
6082 (relative_addr_info_to_section_offsets): Update declaration.
6083 (default_symfile_offsets): Ditto.
6084 (syms_from_objfile): Ditto.
6085 (symfile_map_offsets_to_segments): Ditto.
6086
6087 * symfile.c (syms_from_objfile_1): Use correct section count when
6088 objfile->sf == NULL.
6089
6090 2013-05-06 Mike Frysinger <vapier@gentoo.org>
6091
6092 * common/linux-btrace.c (intel_supports_btrace): Fix indentation.
6093
6094 2013-05-06 Doug Evans <dje@google.com>
6095
6096 * psympriv.h (struct partial_symtab): Augment comment for member
6097 section_offsets.
6098
6099 2013-05-06 Joel Brobecker <brobecker@adacore.com>
6100
6101 Reimplement shared library support on ppc-aix...
6102 * target.h (TARGET_OBJECT_AIX_LIBRARIES): New target_object enum.
6103 * features/library-list-aix.dtd: New file.
6104 * solib-aix.h, solib-aix.c: New file.
6105 * rs6000-aix-tdep.c: #include "solib.h" and "solib-aix.h".
6106 (rs6000_find_toc_address_hook): Delete.
6107 (rs6000_push_dummy_call): Rewrite code setting the TOC value.
6108 (rs6000_aix_init_osabi): Register solib_aix_so_ops.
6109 * rs6000-nat.c: Remove "xcoffsolib.h" include. Include
6110 "xml-utils.h".
6111 (map_vmap, vmap_exec, vmap_ldinfo, add_vmap, objfile_symbol_add)
6112 (vmap_symtab, fixup_breakpoints): Delete.
6113 (rs6000_xfer_shared_libraries): New function.
6114 (rs6000_xfer_partial): Add TARGET_OBJECT_AIX_LIBRARIES handling.
6115 (vmap_secs, bss_data_overlap, vmap_add_symbols): Delete.
6116 (xcoff_relocate_symtab, xcoff_relocate_core): Delete.
6117 (rs6000_ptrace_ldinfo, rs6000_core_ldinfo)
6118 (rs6000_xfer_shared_library): New function.
6119 (find_toc_address): Delete.
6120 (_initialize_rs6000_nat): Do not set rs6000_find_toc_address_hook.
6121 * rs6000-tdep.h (rs6000_find_toc_address_hook): Remove.
6122 * xcoffread.c (record_minimal_symbol): Reloate symbol address
6123 before creating minimal symbol. Adjust function description
6124 accordingly.
6125 (scan_xcoff_symtab): Replace call to
6126 prim_record_minimal_symbol_and_info by call to
6127 record_minimal_symbol.
6128 (xcoff_symfile_offsets): Reimplement mostly as a wrapper
6129 around default_symfile_offsets.
6130 * configure.tgt: Add solib-aix.o to gdb_target_obs for
6131 powerpc-aix targets.
6132 * config/rs6000/nm-rs6000.h: Delete.
6133 * config/powerpc/aix.mh (NAT_FILE): Delete.
6134 (NATDEPFILES): Remove xcoffsolib.o.
6135 * Makefile.in (XMLFILES): Add library-list-aix.dtd.
6136 (ALL_TARGET_OBS): Add solib-aix.o.
6137 (HFILES_NO_SRCDIR): Remove xcoffsolib.h and
6138 config/rs6000/nm-rs6000.h. Add solib-aix.h.
6139 (ALLDEPFILES): Add solib-aix.c. Remove xcoffsolib.c.
6140 * xcoffsolib.h, xcoffsolib.c: Delete.
6141
6142 * solib.c (reload_shared_libraries): Remove reference to
6143 SOLIB_CREATE_INFERIOR_HOOK.
6144 * breakpoint.c (handle_solib_event): Remove reference to SOLIB_ADD.
6145 (disable_breakpoints_in_shlibs): Remove reference to PC_SOLIB.
6146 (momentary_bkpt_re_set): Replace SOLIB_ADD by solib_add in
6147 comment.
6148 * corelow.c (deprecated_core_resize_section_table): Delete.
6149 * exec.c: Remove include of xcoffsolib.h".
6150 (map_vmap, vmap): Delete.
6151 (exec_close_1): Remove references to vmap.
6152 (exec_file_attach): Remove vmap handling code, and reference
6153 to DEPRECATED_IBM6000_TARGET.
6154 (bfdsec_to_vmap): Delete.
6155 (exec_files_info): Remove block of code handling VMAP.
6156 * infcmd.c (post_create_inferior): Remove reference to
6157 SOLIB_CREATE_INFERIOR_HOOK and SOLIB_ADD.
6158 * infrun.c (follow_exec): Remove reference to
6159 SOLIB_CREATE_INFERIOR_HOOK.
6160 * stack.c (print_frame): Remove reference to PC_SOLIB.
6161 * solib-dsbt.c (dsbt_current_sos): Adjust comment.
6162 (dsbt_relocate_main_executable): Likewise.
6163 * solib-frv.c (frv_current_sos): Likewise.
6164
6165 2013-05-06 Joel Brobecker <brobecker@adacore.com>
6166
6167 * sol-thread.c (rw_common): Cast BUF to "gdb_byte *" in calls
6168 to target_write_memory and target_read_memory.
6169
6170 2013-05-06 Joel Brobecker <brobecker@adacore.com>
6171
6172 * darwin-nat.c (darwin_setup_fake_stop_event): New function.
6173 (darwin_attach): Adjust using darwin_setup_fake_stop_event.
6174
6175 2013-05-06 Joel Brobecker <brobecker@adacore.com>
6176
6177 * darwin-nat.c: Replace all "%x" instances in format strings
6178 into "0x%x" throughout.
6179
6180 2013-05-06 Joel Brobecker <brobecker@adacore.com>
6181
6182 * darwin-nat.c (darwin_mourn_inferior): Replace call to
6183 gdb_assert by call to MACH_CHECK_ERROR.
6184 (darwin_attach_pid): Raise an error rather than a failed
6185 assertion when various system calls failed. Report a warning
6186 instead of raising a failed assertion when PREV_NOT is not NULL
6187 after call to mach_port_request_notification.
6188 (darwin_ptrace_me): Raise an error rather than a failed
6189 assertion when read returns nonzero.
6190
6191 2013-05-06 Joel Brobecker <brobecker@adacore.com>
6192
6193 * amd64-darwin-tdep.c: Remove #include "gdb_assert.h".
6194
6195 2013-05-05 Jan Kratochvil <jan.kratochvil@redhat.com>
6196
6197 * cleanups.c (restore_my_cleanups): New gdb_assert for SENTINEL_CLEANUP.
6198
6199 2013-05-05 Jan Kratochvil <jan.kratochvil@redhat.com>
6200
6201 * event-top.c (display_gdb_prompt): Call missing do_cleanups.
6202 * infcmd.c (get_return_value) <!stop_regs>: Do not overwrite CLEANUP.
6203 * symfile.c (symfile_bfd_open): New variable back_to. Do not leave
6204 a stale cleanup. Fix double free of NAME.
6205
6206 2013-05-04 Eli Zaretskii <eliz@gnu.org>
6207
6208 * windows-nat.c (windows_delete_thread): Accept an additional
6209 argument, the thread's exit code, and announce thread death when
6210 print_thread_events is non-zero and we are deleting a thread that
6211 is not the main thread.
6212 (get_windows_debug_event): Pass thread exit code to
6213 windows_delete_thread.
6214
6215 2013-05-03 Kevin Buettner <kevinb@redhat.com>
6216
6217 * v850-tdep.c (elf-bfd.h, elf/v850.h): Include.
6218 (R_149_REGNUM, E_NUM_OF_V850E2_REGS, E_SELID_1_R0_REGNUM)
6219 (E_SELID_1_R31_REGNUM, E_SELID_2_R0_REGNUM, E_SELID_2_R31_REGNUM)
6220 (E_SELID_3_R0_REGNUM, E_SELID_3_R31_REGNUM, E_SELID_4_R0_REGNUM)
6221 (E_SELID_4_R31_REGNUM, E_SELID_5_R0_REGNUM, E_SELID_5_R31_REGNUM)
6222 (E_SELID_6_R0_REGNUM, E_SELID_6_R31_REGNUM, E_SELID_7_R0_REGNUM, E_SELID_7_R31_REGNUM)
6223 (E_VR0_REGNUM, E_VR31_REGNUM, E_NUM_OF_V850E3V5_REGS): Define.
6224 (v850_abi, V850_ABI_GCC, V850_ABI_RH850): New enum and constants.
6225 (gdbarch_tdep): New struct.
6226 (v850e2_register_name): Use E_NUM_OF_V850E2_REGS instead of
6227 E_NUM_REGS.
6228 (v850e3v5_register_name): New function.
6229 (v850_register_type): v850e3v5 vector registers are 64-bits wide.
6230 (v850_use_struct_convention): Add `gdbarch' parameter. Add new
6231 code handling the struct return conventions for the RH850 ABI.
6232 Update all callers.
6233 (v850_eight_byte_align_p): New function.
6234 (v850_push_call_dummy): Push structs by value, not by reference
6235 for the RH850 ABI. Add support for eight byte alignment.
6236 (v850_dbtrap_breakpoint_from_pc): New function.
6237 (v850_gdbarch_init): Add ABI detection code. Register
6238 v850e3v5_register_name for the v850e3v5 architecture. Set the
6239 number of registers for v850e3v5. Register
6240 v850_dbtrap_breakpoint_from_pc as appropriate.
6241 (_initialize_gdbarch_init): Registration bfd_arch_v850_rh850.
6242
6243 2013-05-03 Doug Evans <dje@google.com>
6244
6245 * objfiles.c (objfile_relocate): Use gdb_bfd_count_sections instead
6246 of bfd_count_sections.
6247 * solib-target.c (solib_target_relocate_section_addresses): Ditto.
6248 * symfile.c (default_symfile_offsets): Ditto.
6249 (syms_from_objfile_1): Ditto. Make dummy addrs list an array of
6250 one entry, not bfd_count_sections entries.
6251
6252 2013-05-03 Kevin Buettner <kevinb@redhat.com>
6253
6254 * rl78-tdep.c (rl78_register_reggroup_p): Include SP in the
6255 `save' and `restore' register groups. Don't include SPL
6256 or SPH in these groups.
6257 (rl78_dwarf_reg_to_regnum): Adjust mapping for
6258 RL78_PC_REGNUM. Add mappings for RL78_PSW_REGNUM,
6259 RL78_ES_REGNUM, and RL78_CS_REGNUM.
6260 (rl78_gdbarch_init): Set `dwarf2_addr_size' to 4. Invoke
6261 dwarf2_append_unwinders().
6262
6263 2013-05-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
6264
6265 * break-catch-sig.c (signal_catchpoint_breakpoint_hit): Do not
6266 ignore SIGINT and SIGTRAP in case these internal signals are
6267 caught explicitely.
6268
6269 2013-05-01 Joel Brobecker <brobecker@adacore.com>
6270
6271 * darwin-nat.c (darwin_read_write_inferior): Change types
6272 of parameters rdaddr and wraddr to "gdb_byte *". Change type
6273 of copy_count to "mach_msg_type_number_t".
6274 (darwin_read_dyld_info): Change type of parameter
6275 rdaddr to "gdb_byte *".
6276
6277 2013-05-01 Joel Brobecker <brobecker@adacore.com>
6278
6279 * solib-ia64-hpux.c (ia64_hpux_read_dynamic_info): Change cast
6280 of &info->load_map from "char *" to "gdb_byte *".
6281
6282 2013-05-01 Joel Brobecker <brobecker@adacore.com>
6283
6284 * ia64-tdep.c (ia64_access_fpreg): Change cast of val
6285 from "char *" to "gdb_byte *".
6286 (ia64_access_rse_fpreg, ia64_access_mem): Likewise.
6287
6288 2013-04-30 Doug Evans <dje@google.com>
6289
6290 * dwarf2read.c (lookup_dwo_unit): Return NULL if DWO not found.
6291 (init_cutu_and_read_dies): Flag a complaint, not error, for bad
6292 DWO stub. If DWO isn't found, just use stub.
6293 (lookup_dwo_cutu): Don't try DWO if there's a DWP file.
6294
6295 * dwarf2read.c (dw2_find_symbol_file): Initialize filename before
6296 calling init_cutu_and_read_dies.
6297
6298 2013-03-27 Walfred Tedeschi <walfred.tedeschi@intel.com>
6299
6300 * target-descriptions.c (maint_print_c_tdesc_cmd):
6301 Add case to parse structures as register types and
6302 bitfields.
6303
6304 2013-04-30 Walfred Tedeschi <walfred.tedeschi@intel.com>
6305
6306 * MAINTAINERS (Write After Approval): Add myself to the list.
6307
6308 2013-04-30 Joel Brobecker <brobecker@adacore.com>
6309
6310 * sol-thread.c (rw_common): Change type of parameter "buf"
6311 to "gdb_byte *".
6312 (ps_pdwrite, ps_ptwrite): Cast parameter "buf" in call to
6313 rw_common to "gdb_byte *" instead of "char *".
6314
6315 2013-04-30 Joel Brobecker <brobecker@adacore.com>
6316
6317 * sol-thread.c (info_cb) [ti.ti_startfunc != 0]: Change type
6318 of local variable msym to const struct bound_minimal_symbol.
6319 Adjust use accordingly.
6320 [ti.ti_state == TD_THR_SLEEP]: Likewise.
6321
6322 2013-04-30 Samuel Thibault <samuel.thibault@gnu.org>
6323
6324 * i386gnu-nat.c (CREG_OFFSET): New macro.
6325 (creg_offset): New array.
6326 (CREG_ADDR): Use creg_offset instead of reg_offset.
6327
6328 2013-04-30 Joel Brobecker <brobecker@adacore.com>
6329
6330 * mep-tdep.c (mep_write_pc): Delete.
6331 (mep_gdbarch_init): Remove call to set_gdbarch_write_pc.
6332 Add call to set_gdbarch_pc_regnum.
6333
6334 2013-04-30 Joel Brobecker <brobecker@adacore.com>
6335
6336 * common/filestuff.c: Replace #include <dirent.h> by
6337 #include "gdb_dirent.h".
6338
6339 2013-04-30 Joel Brobecker <brobecker@adacore.com>
6340
6341 * common/filestuff.c: Replace #include <sys/stat.h> by
6342 #include "gdb_stat.h".
6343
6344 2013-04-29 Pierre Muller <muller@sourceware.org>
6345
6346 * dwarf2read.c (handle_DW_AT_stmt_list): Avoid ARI warning for
6347 editCase function rule.
6348 (get_DW_AT_signature_type): Likewise.
6349
6350 2013-04-29 Joel Brobecker <brobecker@adacore.com>
6351
6352 * m32r-tdep.c (m32r_write_pc): Delete.
6353 (m32r_gdbarch_init): Remove call to set_gdbarch_write_pc.
6354 Add call to set_gdbarch_pc_regnum.
6355
6356 2013-04-29 Pierre Muller <muller@sourceware.org>
6357
6358 * ./contrib/ari/gdb_ari.sh (editCase rule): Fix spelling error.
6359
6360 2013-04-29 Joel Brobecker <brobecker@adacore.com>
6361
6362 * dwarf2read.c (get_DW_AT_signature_type): Add ARI marker.
6363
6364 2013-04-28 Yao Qi <yao@codesourcery.com>
6365
6366 * solib-dsbt.c (fetch_loadmap): Re-indent.
6367 (displacement_from_map, enable_break2): Likewise.
6368 (dsbt_relocate_section_addresses): Likewise.
6369
6370 2013-04-26 Joel Brobecker <brobecker@adacore.com>
6371
6372 GDB 7.6 released.
6373
6374 2013-04-25 Andreas Kaufmann <Andreas.Kaufmann@synopsys.com>
6375
6376 PR corefiles/14983:
6377 * dwarf2read.c (process_full_comp_unit): Always create a static
6378 block.
6379
6380 2013-04-25 Hui Zhu <hui@codesourcery.com>
6381
6382 * breakpoint.c (build_target_command_list): Change loc->cond_bytecode
6383 to loc->cmd_bytecode.
6384
6385 2013-04-24 Doug Evans <dje@google.com>
6386
6387 * dwarf2read.c (setup_type_unit_groups): Fix comment.
6388
6389 2013-04-22 Keith Seitz <keiths@redhat.com>
6390
6391 * tracepoint.c (trace_save): Call the writer's start method.
6392
6393 2013-04-24 Muhammad Bilal <mbilal@codesourcery.com>
6394
6395 PR gdb/10462
6396 * cli/cli-decode.c (lookup_command): Show an error if there is no space
6397 before argument.
6398
6399 2013-04-23 Tom Tromey <tromey@redhat.com>
6400
6401 * common/filestuff.c: Check USE_WIN32API before including
6402 sys/socket.h.
6403 (HAVE_F_GETFD): New define.
6404 (mark_cloexec): Check HAVE_F_GETFD.
6405 (gdb_open_cloexec): Change 'mode' to unsigned long.
6406 (gdb_socketpair_cloexec): Check HAVE_SOCKETPAIR.
6407 (gdb_pipe_cloexec): Check HAVE_PIPE.
6408 * common/filestuff.h (gdb_open_cloexec): Change 'mode' to unsigned
6409 long.
6410
6411 2013-04-23 Hui Zhu <hui@codesourcery.com>
6412
6413 PR gdb/15293
6414 * breakpoint.c (bpstat_what): Add BPSTAT_WHAT_SINGLE to bp_dprintf.
6415
6416 2013-04-23 Hui Zhu <hui@codesourcery.com>
6417
6418 PR gdb/15165
6419 * breakpoint.c (dprintf_print_recreate): New.
6420 (save_breakpoints): Let it not save dprintf commands.
6421 (initialize_breakpoint_ops): Set dprintf_print_recreate.
6422
6423 2013-04-22 Tom Tromey <tromey@redhat.com>
6424
6425 PR gdb/7912:
6426 * Makefile.in (SFILES): Add filestuff.c
6427 (COMMON_OBS): Add filestuff.o.
6428 (filestuff.o): New target.
6429 * auto-load.c (auto_load_objfile_script_1): Use
6430 gdb_fopen_cloexec.
6431 * auxv.c (procfs_xfer_auxv): Use gdb_open_cloexec.
6432 * cli/cli-cmds.c (shell_escape): Call close_most_fds.
6433 * cli/cli-dump.c (fopen_with_cleanup): Use gdb_fopen_cloexec.
6434 * common/agent.c (gdb_connect_sync_socket): Use
6435 gdb_socket_cloexec.
6436 * common/filestuff.c: New file.
6437 * common/filestuff.h: New file.
6438 * common/linux-osdata.c (linux_common_core_of_thread)
6439 (command_from_pid, commandline_from_pid, print_source_lines)
6440 (linux_xfer_osdata_shm, linux_xfer_osdata_sem)
6441 (linux_xfer_osdata_msg, linux_xfer_osdata_modules): Use
6442 gdb_fopen_cloexec.
6443 * common/linux-procfs.c (linux_proc_get_int)
6444 (linux_proc_pid_has_state): Use gdb_fopen_cloexec.
6445 * config.in, configure: Rebuild.
6446 * configure.ac: Don't check for sys/socket.h. Check for
6447 fdwalk, pipe2.
6448 * corelow.c (core_open): Use gdb_open_cloexec.
6449 * dwarf2read.c (write_psymtabs_to_index): Use gdb_fopen_cloexec.
6450 * fork-child.c (fork_inferior): Call close_most_fds.
6451 * gdb_bfd.c (gdb_bfd_open): Use gdb_open_cloexec.
6452 * inf-child.c (inf_child_fileio_readlink): Use gdb_open_cloexec.
6453 * linux-nat.c (linux_nat_thread_name, linux_proc_pending_signals):
6454 Use gdb_fopen_cloexec.
6455 (linux_proc_xfer_partial, linux_proc_xfer_spu): Use
6456 gdb_open_cloexec.
6457 (linux_async_pipe): Use gdb_pipe_cloexec.
6458 * remote-fileio.c (remote_fileio_func_open): Use
6459 gdb_open_cloexec.
6460 * remote.c (remote_file_put, remote_file_get): Use
6461 gdb_fopen_cloexec.
6462 * ser-pipe.c (pipe_open): Use gdb_socketpair_cloexec,
6463 close_most_fds.
6464 * ser-tcp.c (net_open): Use gdb_socket_cloexec.
6465 * ser-unix.c (hardwire_open): Use gdb_open_cloexec.
6466 * solib.c (solib_find): Use gdb_open_cloexec.
6467 * source.c (openp, find_and_open_source): Use gdb_open_cloexec.
6468 * tracepoint.c (tfile_start): Use gdb_fopen_cloexec.
6469 (tfile_open): Use gdb_open_cloexec.
6470 * tui/tui-io.c (tui_initialize_io): Use gdb_pipe_cloexec.
6471 * ui-file.c (gdb_fopen): Use gdb_fopen_cloexec.
6472 * xml-support.c (xml_fetch_content_from_file): Use
6473 gdb_fopen_cloexec.
6474 * main.c (captured_main): Call notice_open_fds.
6475
6476 2013-04-22 Edjunior Machado <emachado@linux.vnet.ibm.com>
6477
6478 * remote-sim.c (dump_mem): Change the type of 'buf' parameter from
6479 'char *' to 'gdb_byte *'.
6480 (gdbsim_store_register): Change the type of 'tmp' from 'char' to
6481 'gdb_byte'.
6482
6483 2013-04-22 Yao Qi <yao@codesourcery.com>
6484
6485 * infrun.c: Fix typo in comment.
6486
6487 2013-04-22 Andrew Haley <aph@redhat.com>
6488
6489 * arm-tdep.c (BranchDest): Cast result as "unsigned long",
6490 instead of "long".
6491
6492 2013-04-20 Yao Qi <yao@codesourcery.com>
6493
6494 * ctf.c (ctf_fetch_registers): Change the type of 'regs' from
6495 'char *' to 'gdb_byte *'. Cast the return value of
6496 'bt_ctf_get_char_array' to 'gdb_byte *'.
6497
6498 2013-04-19 Pedro Alves <palves@redhat.com>
6499
6500 * configure.ac (build_warnings): Replace -Wno-pointer-sign with
6501 -Wpointer-sign.
6502 * configure: Regenerate.
6503
6504 2013-04-19 Pedro Alves <palves@redhat.com>
6505
6506 * ser-tcp.c (net_read_prim): Cast second argument to recv to
6507 'void *'.
6508
6509 2013-04-19 Pedro Alves <palves@redhat.com>
6510
6511 * monitor.c (monitor_write_memory, monitor_write_memory_bytes):
6512 Change type of 'myaddr' parameter to gdb_byte pointer.
6513 (monitor_write_memory_longlongs): Likewise. Cast 'myaddr' pointer
6514 to 'long long' pointer instead of to 'unsigned long long'.
6515 (monitor_write_memory_block, monitor_read_memory_single)
6516 (monitor_read_memory): Change type of 'myaddr' parameter to
6517 gdb_byte pointer.
6518
6519 2013-04-19 Pedro Alves <palves@redhat.com>
6520
6521 * record.c (validate_history_size): Make parameter 'setting'
6522 unsigned.
6523
6524 2013-04-19 Pedro Alves <palves@redhat.com>
6525
6526 * ctf.c (ctf_write_uploaded_tsv, ctf_write_uploaded_tp): Add casts
6527 to 'gdb_byte *'.
6528
6529 2013-04-19 Pedro Alves <palves@redhat.com>
6530
6531 * cp-valprint.c (cp_print_class_member): Change type of 'fieldno'
6532 local to int.
6533
6534 2013-04-19 Pedro Alves <palves@redhat.com>
6535
6536 * ada-lang.c (print_it_exception): Add cast to gdb_byte *.
6537 * ada-tasks.c (read_fat_string_value): Likewise.
6538
6539 2013-04-19 Pedro Alves <palves@redhat.com>
6540
6541 * dwarf2-frame.c (execute_cfa_program): Make 'bytes_read' local
6542 unsigned. Pass 'tmp' to safe_read_uleb128 instead of the signed
6543 'offset', and adjust.
6544
6545 2013-04-19 Pedro Alves <palves@redhat.com>
6546
6547 * dwarf2read.c (dwarf2_get_dwz_file): Add cast to const char *.
6548 (read_index_from_section): Add cast to 'char *'.
6549
6550 2013-04-19 Pedro Alves <palves@redhat.com>
6551
6552 * xcoffread.c (xcoff_initial_scan): Add cast to 'char *'.
6553
6554 2013-04-19 Pedro Alves <palves@redhat.com>
6555
6556 * coff-pe-read.c (read_pe_exported_syms): Handle strings as char.
6557
6558 2013-04-19 Pedro Alves <palves@redhat.com>
6559
6560 * record-full.c (record_full_get_bookmark): Change local 'ret'
6561 type to char * and add cast to gdb_byte *.
6562 (record_full_goto_bookmark): Handle 'bookmark' argument as a
6563 string.
6564 * reverse.c (goto_bookmark_command): Add casts to gdb_byte *.
6565
6566 2013-04-19 Pedro Alves <palves@redhat.com>
6567
6568 * python/py-inferior.c (infpy_write_memory): Add cast to gdb_byte
6569 * python/py-prettyprint.c (print_string_repr): Change type of
6570 'output' local to char *. Add cast to gdb_byte * in
6571 LA_PRINT_STRING call.
6572 (print_children): Change type of 'output' local to char *.
6573 * python/py-value.c (valpy_string): Add cast to const char * in
6574 PyUnicode_Decode call.
6575
6576 2013-04-19 Pedro Alves <palves@redhat.com>
6577
6578 * remote-mips.c (mips_cksum): Rename 'data' parameter to 'datastr'
6579 and change its type to 'const char *'. Adjust.
6580 (mips_send_packet): Add cast to 'char *', and remove cast to
6581 'unsigned char *'.
6582 (mips_receive_packet): Remove cast to 'unsigned char *'.
6583 (mips_load_srec): Use bfd_byte.
6584 (pmon_makeb64, pmon_zeroset): Make 'chksum' parameter unsigned.
6585 (pmon_checkset): Make 'value' parameter unsigned.
6586
6587 2013-04-19 Pedro Alves <palves@redhat.com>
6588
6589 * common/agent.c (agent_run_command): Add cast to gdb_byte *.
6590
6591 2013-04-19 Pedro Alves <palves@redhat.com>
6592
6593 * remote.c (remote_write_bytes_aux, compare_sections_command)
6594 (remote_read_qxfer)
6595 (remote_search_memory, remote_hostio_pwrite, remote_hostio_pread)
6596 (remote_hostio_readlink, remote_bfd_iovec_pread)
6597 (remote_set_trace_notes): Use gdb_byte when RSP buffer is used as
6598 binary buffer, and char when buffer is used as string.
6599 * tracepoint.c (encode_source_string, tfile_write_uploaded_tp)
6600 (trace_save, tfile_open, traceframe_walk_blocks)
6601 (tfile_fetch_registers): Likewise.
6602
6603 2013-04-19 Pedro Alves <palves@redhat.com>
6604
6605 * ser-base.c (ser_base_write): Change prototype -- take 'void *'
6606 buffer and size_t size. Adjust.
6607 * ser-base.h (ser_base_write): Adjust.
6608 * ser-go32.c (cnts): Change type to size_t.
6609 (dos_write): Change prototype -- take 'void *'
6610 buffer and size_t size. Adjust.
6611 (dos_info): Print elements of 'cnts' as unsigned long.
6612 * serial.c (serial_write): Likewise.
6613 * serial.h (serial_write): Adjust.
6614 (struct serial_ops) <write>: Change prototype -- take 'void *'
6615 buffer and size_t size. Adjust.
6616
6617 2013-04-19 Pedro Alves <palves@redhat.com>
6618
6619 * c-lang.c (evaluate_subexp_c): Cast result of obstack_base to
6620 gdb_byte *.
6621 * linux-tdep.c (linux_make_mappings_corefile_notes): Likewise.
6622
6623 2013-04-19 Pedro Alves <palves@redhat.com>
6624
6625 * alpha-tdep.c (alpha_extract_return_value): Use
6626 regcache_cooked_read_unsigned to read 'v0'.
6627
6628 2013-04-19 Pedro Alves <palves@redhat.com>
6629
6630 * xtensa-tdep.c (execute_l32e, execute_s32e): Change type of
6631 parameters 'at', 'as' and 'offset' to uint32_t.
6632
6633 2013-04-19 Pedro Alves <palves@redhat.com>
6634
6635 * aarch64-tdep.c (aarch64_analyze_prologue): Change type of local
6636 'is64' to signed 'int'.
6637
6638 2013-04-19 Pedro Alves <palves@redhat.com>
6639
6640 * s390-tdep.c (is_rs, is_rsy, is_rx, is_rxy): Change type of 'd2'
6641 parameter to int *.
6642
6643 2013-04-19 Pedro Alves <palves@redhat.com>
6644
6645 * ppc-linux-tdep.c (ppc_skip_trampoline_code): Change local
6646 'insnbuf' buffer type to unsigned int[].
6647
6648 2013-04-19 Pedro Alves <palves@redhat.com>
6649
6650 * mips-tdep.c (mips_read_pc): Change local 'pc' type to LONGEST.
6651
6652 2013-04-19 Pedro Alves <palves@redhat.com>
6653
6654 * mep-tdep.c (mep_get_insn): Change 'insn' parameter type to
6655 unsigned long *.
6656
6657 2013-04-19 Pedro Alves <palves@redhat.com>
6658
6659 * alpha-tdep.c (heuristic_fence_post): Change type to int.
6660 (alpha_heuristic_proc_start): Adjust to check -1 instead of
6661 UINT_MAX.
6662 * mips-tdep.c (heuristic_fence_post): Change type to int.
6663 (heuristic_proc_start): Adjust to check -1 instead of UINT_MAX.
6664
6665 2013-04-19 Pedro Alves <palves@redhat.com>
6666
6667 * cris-tdep.c (usr_cmd_cris_version): Make unsigned.
6668 (struct gdbarch_tdep) <cris_version>: Make unsigned.
6669 (cris_spec_reg_applicable, cris_gdbarch_init): Adjust locals.
6670
6671 2013-04-19 Pedro Alves <palves@redhat.com>
6672
6673 * avr-tdep.c (avr_io_reg_read_command): New local 'bufstr'. Use
6674 it to get a string view of the byte buffer.
6675 * i386-cygwin-tdep.c (core_process_module_section): Change local 'buf'
6676 type to gdb_byte *. Adjust.
6677 * linux-tdep.c (linux_info_proc, linux_find_memory_regions_full):
6678 Change local to char *.
6679 * solib-darwin.c (find_program_interpreter): Change return type to
6680 char *. Adjust.
6681 (darwin_solib_get_all_image_info_addr_at_init): Adjust.
6682 * solib-dsbt.c (enable_break2): Change local 'buf' to char *.
6683 * solib-frv.c (enable_break2): Change local 'buf' to char *.
6684 * solib-spu.c (spu_current_sos): Add gdb_byte * cast.
6685 * solib-svr4.c (find_program_interpreter): Change return type to
6686 char *. Adjust.
6687 (enable_break): Change local 'interp_name' to char *.
6688 * spu-multiarch.c (spu_xfer_partial): Add cast to 'char *'.
6689 * spu-tdep.c (spu_pseudo_register_read_spu): Add cast to 'char *'.
6690 (spu_pseudo_register_write_spu): Use char for string buffer.
6691 Adjust.
6692 (info_spu_event_command, info_spu_signal_command): Add casts to
6693 'char *'.
6694
6695 2013-04-19 Pedro Alves <palves@redhat.com>
6696
6697 * aarch64-tdep.c (aarch64_default_breakpoint): Change type to
6698 gdb_byte[].
6699 (aarch64_breakpoint_from_pc): Change return type to gdb_byte *.
6700 * ada-lang.c (ada_value_assign): Use gdb_byte.
6701 * alphanbsd-tdep.c (sigtramp_retcode): Change type to gdb_byte[].
6702 (alphanbsd_sigtramp_offset): Use gdb_byte.
6703 * arm-linux-tdep.c (arm_linux_arm_le_breakpoint)
6704 (arm_linux_arm_be_breakpoint, eabi_linux_arm_le_breakpoint)
6705 (eabi_linux_arm_be_breakpoint, arm_linux_thumb_be_breakpoint)
6706 (arm_linux_thumb_le_breakpoint, arm_linux_thumb2_be_breakpoint)
6707 (arm_linux_thumb2_le_breakpoint): Change type to gdb_byte[].
6708 * arm-tdep.c (arm_stub_unwind_sniffer)
6709 (arm_displaced_init_closure): Use gdb_byte.
6710 (arm_default_arm_le_breakpoint, arm_default_arm_be_breakpoint)
6711 (arm_default_thumb_le_breakpoint)
6712 (arm_default_thumb_be_breakpoint): Change type to gdb_byte[].
6713 * arm-tdep.h (struct gdbarch_tdep) <arm_breakpoint,
6714 thumb_breakpoint, thumb2_breakpoint>: Change type to gdb_byte *.
6715 * arm-wince-tdep.c (arm_wince_le_breakpoint)
6716 (arm_wince_thumb_le_breakpoint): Change type to gdb_byte[].
6717 * armnbsd-tdep.c (arm_nbsd_arm_le_breakpoint)
6718 (arm_nbsd_arm_be_breakpoint, arm_nbsd_thumb_le_breakpoint)
6719 (arm_nbsd_thumb_be_breakpoint): Change type to gdb_byte[].
6720 * armobsd-tdep.c (arm_obsd_thumb_le_breakpoint)
6721 (arm_obsd_thumb_be_breakpoint): Change type to gdb_byte[].
6722 * cris-tdep.c (push_stack_item, cris_push_dummy_call)
6723 (cris_store_return_value, cris_extract_return_value): Use
6724 gdb_byte.
6725 (constraint): Change type of parameter to char * from signed
6726 char*. Use gdb_byte.
6727 * dwarf2loc.c (read_pieced_value, write_pieced_value): Change type
6728 of local buffer to gdb_byte *.
6729 * dwarf2read.c (read_index_from_section): Use gdb_byte.
6730 (create_dwp_hash_table): Change type of locals to gdb_byte *.
6731 (add_address_entry): Change type of local buffer to gdb_byte[].
6732 * frv-tdep.c (frv_adjust_breakpoint_address, find_func_descr)
6733 (frv_push_dummy_call): Use gdb_byte.
6734 * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code)
6735 (hppa_hpux_supply_ss_fpblock, hppa_hpux_supply_ss_wide)
6736 (hppa_hpux_supply_save_state): Use gdb_byte.
6737 * hppa-tdep.c (hppa32_push_dummy_call)
6738 (hppa64_convert_code_addr_to_fptr): Use gdb_byte.
6739 * ia64-tdep.c (extract_bit_field, replace_bit_field)
6740 (slotN_contents, replace_slotN_contents): Change type of parameter
6741 to gdb_byte *.
6742 (fetch_instruction, ia64_pseudo_register_write)
6743 (ia64_register_to_value, ia64_value_to_register)
6744 (ia64_extract_return_value, ia64_store_return_value)
6745 (ia64_push_dummy_call): Use gdb_byte.
6746 * m32c-tdep.c (m32c_return_value): Remove cast.
6747 * m68hc11-tdep.c (m68hc11_pseudo_register_write)
6748 (m68hc11_push_dummy_call, m68hc11_store_return_value): Use
6749 gdb_byte.
6750 * mipsnbsd-tdep.c (mipsnbsd_get_longjmp_target): Use gdb_byte.
6751 * mn10300-tdep.c (mn10300_store_return_value)
6752 (mn10300_breakpoint_from_pc, mn10300_push_dummy_call): Use
6753 gdb_byte.
6754 * moxie-tdep.c (moxie_process_readu): Use gdb_byte.
6755 (moxie_process_record): Remove casts.
6756 * ppc-ravenscar-thread.c (supply_register_at_address)
6757 (ppc_ravenscar_generic_store_registers): Use gdb_byte.
6758 * ravenscar-thread.c (get_running_thread_id): Use gdb_byte.
6759 * remote-m32r-sdi.c (m32r_fetch_register): Use gdb_byte.
6760 * remote-mips.c (mips_xfer_memory): Use gdb_byte.
6761 * remote.c (compare_sections_command): Use gdb_byte.
6762 * score-tdep.c (score7_free_memblock): Change type of parameter to
6763 gdb_byte *.
6764 * sh-tdep.c (sh_justify_value_in_reg): Change return type to
6765 gdb_byte *. Use gdb_byte.
6766 (sh_push_dummy_call_fpu): Use gdb_byte.
6767 (sh_extract_return_value_nofpu, sh_extract_return_value_fpu)
6768 (sh_store_return_value_nofpu, sh_store_return_value_fpu)
6769 (sh_register_convert_to_virtual, sh_register_convert_to_raw):
6770 Change parameter type to 'gdb_byte *'. Use gdb_byte.
6771 (sh_pseudo_register_read, sh_pseudo_register_write): Use gdb_byte.
6772 * sh64-tdep.c (sh64_push_dummy_call): Use gdb_byte.
6773 (sh64_store_return_value, sh64_register_convert_to_virtual):
6774 Change parameter type to 'gdb_byte *'. Use gdb_byte.
6775 (sh64_pseudo_register_write): Use gdb_byte.
6776 * solib-darwin.c (darwin_current_sos): Add casts to 'gdb_byte *'.
6777 * solib-irix.c (fetch_lm_info): Likewise. Use gdb_byte for byte
6778 buffer.
6779 (irix_current_sos): Use gdb_byte.
6780 * solib-som.c (som_current_sos): Use gdb_byte.
6781 * sparc-ravenscar-thread.c (supply_register_at_address)
6782 (sparc_ravenscar_generic_store_registers): Use gdb_byte.
6783 * spu-multiarch.c (spu_xfer_partial): Add cast to 'char *'.
6784 * spu-tdep.c (spu_get_overlay_table): Use gdb_byte.
6785 * tic6x-tdep.c (tic6x_breakpoint_from_pc): Change return type to
6786 'gdb_byte *'.
6787 * tic6x-tdep.h (struct gdbarch_tdep) <breakpoint>: Change type to
6788 'gdb_byte *'.
6789 * tracepoint.c (tfile_fetch_registers): Use gdb_byte.
6790 * xstormy16-tdep.c (xstormy16_extract_return_value)
6791 (xstormy16_store_return_value): Change parameter type to
6792 'gdb_byte *'. Adjust.
6793 (xstormy16_push_dummy_call): Use gdb_byte.
6794 * xtensa-tdep.c (xtensa_scan_prologue, call0_ret)
6795 (call0_analyze_prologue, execute_code): Use gdb_byte.
6796
6797 2013-04-19 Vladimir Kargov <kargov@gmail.com>
6798 Pedro Alves <palves@redhat.com>
6799
6800 * i387-tdep.c (i387_print_float_info): Use gdb_byte for pointer to
6801 value contents.
6802
6803 2013-04-17 Doug Evans <dje@google.com>
6804
6805 * dwarf2read.c (struct signatured_type): New member type.
6806 (struct attribute): Replace member signatured_type with signature.
6807 (DW_SIGNATURE): Replaces DW_SIGNATURE_TYPE.
6808 (read_call_site_scope): Call follow_die_ref instead of
6809 follow_die_ref_or_sig.
6810 (read_structure_type): Rewrite handling of signatured types.
6811 (read_enumeration_type): Ditto.
6812 (read_attribute_value): Update.
6813 (build_error_marker_type): New function.
6814 (lookup_die_type): Add assert. Rewrite handling of signatured types.
6815 Don't call error for bad types, just build an error marker type.
6816 (dump_die_shallow): Update.
6817 (follow_die_sig_1): Renamed from follow_die_sig.
6818 Don't call error for bad types, instead return NULL.
6819 (follow_die_sig): New function.
6820 (get_signatured_type, get_DW_AT_signature_type): New functions.
6821
6822 2013-04-17 Yufeng Zhang <yufeng.zhang@arm.com>
6823
6824 * aarch64-tdep.c (aarch64_write_pc): Removed.
6825 (aarch64_gdbarch_init): Remove set_gdbarch_write_pc of the above
6826 function.
6827
6828 2013-04-17 Yao Qi <yao@codesourcery.com>
6829
6830 * top.c (print_gdb_configuration): Print configure-time
6831 parameter on using libbabeltrace or not.
6832
6833 2013-04-16 Pedro Alves <palves@redhat.com>
6834
6835 * copyright.py (EXCLUDE_LIST): Add gdb/common/glibc_thread_db.h.
6836
6837 2013-04-16 Pedro Alves <palves@redhat.com>
6838
6839 * common/glibc_thread_db.h: Update from upstream glibc
6840 (git 568035b7874a099087b77f7bba3e36a1173787b0).
6841
6842 2013-04-16 Pedro Alves <palves@redhat.com>
6843
6844 * common/gdb_thread_db.h [!HAVE_THREAD_DB_H]: Factor out to ...
6845 * common/glibc_thread_db.h: ... this new file ...
6846 * common/gdb_thread_db.h [!HAVE_THREAD_DB_H]: ... and include it.
6847
6848 2013-04-16 Will Newton <will.newton@gmail.com>
6849 Pedro Alves <palves@redhat.com>
6850
6851 PR build/11881
6852
6853 * common/gdb_thread_db.h (LIBTHREAD_DB_SO)
6854 (LIBTHREAD_DB_SEARCH_PATH): Move outside of #ifdef
6855 HAVE_THREAD_DB_H.
6856
6857 2013-04-16 Pedro Alves <palves@redhat.com>
6858 Eli Zaretskii <eliz@gnu.org>
6859
6860 * NEWS: Mention "set foo unlimited".
6861
6862 2013-04-15 Doug Evans <dje@google.com>
6863
6864 * dwarf2read.c (struct dwo_file): Replace member "cus" with "cu".
6865 (struct create_dwo_cu_data): Renamed from create_dwo_info_table_data.
6866 (create_dwo_cu_reader): Renamed from
6867 create_dwo_debug_info_hash_table_reader.
6868 (create_dwo_cu): Renamed from create_dwo_debug_info_hash_table.
6869 Remove support for multiple CUs in a DWO file.
6870 (open_and_init_dwo_file, lookup_dwo_cutu): Update.
6871
6872 * dwarf2read.c (create_debug_types_hash_table): Use hex_string
6873 instead of phex.
6874 (lookup_dwo_unit, create_dwo_debug_info_hash_table_reader): Ditto.
6875 (create_dwo_in_dwp): Ditto.
6876
6877 2013-04-15 Tom Tromey <tromey@redhat.com>
6878
6879 * NEWS: Move recent entries into "since 7.6" section.
6880
6881 2013-04-15 Tom Tromey <tromey@redhat.com>
6882
6883 PR c++/13588:
6884 * NEWS: Update.
6885 * break-catch-throw.c (struct exception_catchpoint)
6886 <exception_rx, pattern>: New fields.
6887 (fetch_probe_arguments, dtor_exception_catchpoint)
6888 (check_status_exception_catchpoint)
6889 (print_one_detail_exception_catchpoint): New functions.
6890 (handle_gnu_v3_exceptions): Add "except_rx" argument.
6891 Compile regular expression if needed.
6892 (extract_exception_regexp): New function.
6893 (catch_exception_command_1): Use extract_exception_regexp.
6894 (compute_exception): Use fetch_probe_arguments.
6895 (initialize_throw_catchpoint_ops): Set dtor, print_one_detail,
6896 and check_status fields.
6897 * cp-abi.c (cplus_typename_from_type_info): New function.
6898 * cp-abi.h (cplus_typename_from_type_info): Declare.
6899 (struct cp_abi_ops) <get_typename_from_type_info>: New field.
6900 * gdb_regex.h (compile_rx_or_error): Declare.
6901 * gnu-v3-abi.c (gnuv3_get_typename_from_type_info): Update
6902 comment.
6903 (init_gnuv3_ops): Set get_type_from_type_info field.
6904 * probe.c (compile_rx_or_error): Move...
6905 * utils.c (compile_rx_or_error): ... here.
6906
6907 2013-04-15 Tom Tromey <tromey@redhat.com>
6908
6909 PR c++/15176:
6910 * NEWS: Update.
6911 * break-catch-throw.c (compute_exception): New function.
6912 (exception_funcs): New global.
6913 (_initialize_break_catch_throw): Create $_exception.
6914 * cp-abi.c (cplus_type_from_type_info): New function.
6915 * cp-abi.h (cplus_type_from_type_info): Declare.
6916 (struct cp_abi_ops) <get_type_from_type_info>: New field.
6917 * gnu-v3-abi.c (gnuv3_get_typename_from_type_info)
6918 (gnuv3_get_type_from_type_info): New functions.
6919 (init_gnuv3_ops): Set get_type_from_type_info ABI field.
6920
6921 2013-04-15 Tom Tromey <tromey@redhat.com>
6922
6923 * break-catch-throw.c (struct exception_names): New.
6924 (exception_functions): Change type.
6925 (re_set_exception_catchpoint): Look for SDT probes.
6926
6927 2013-04-15 Tom Tromey <tromey@redhat.com>
6928
6929 PR c++/10119:
6930 * break-catch-throw.c (exception_functions): New global.
6931 (gnu_v3_exception_catchpoint_ops): Move earlier.
6932 (struct exception_catchpoint): New.
6933 (classify_exception_breakpoint): Rewrite.
6934 (re_set_exception_catchpoint): New function.
6935 (handle_gnu_v3_exceptions): Return void. Use init_catchpoint.
6936 Allocate a struct exception_catchpoint.
6937 (catch_exception_command_1): Update.
6938 (initialize_throw_catchpoint_ops): Set 're_set' method.
6939
6940 2013-04-15 Tom Tromey <tromey@redhat.com>
6941
6942 * Makefile.in (SFILES): Add break-catch-throw.c
6943 (COMMON_OBS): Add break-catch-throw.o.
6944 * break-catch-throw.c: New file.
6945 * breakpoint.c: Move exception-catching code to new file.
6946 (ep_parse_optional_if_clause): No longer static.
6947 * breakpoint.h (ep_parse_optional_if_clause): Declare.
6948
6949 2013-04-15 Tom Tromey <tromey@redhat.com>
6950
6951 PR c++/9065:
6952 * NEWS: Update.
6953 * breakpoint.c (watchpoint_exp_is_const): Add OP_TYPEID.
6954 * c-exp.y (TYPEID): New token.
6955 (exp): Add new TYPEID productions.
6956 (ident_tokens): Add "typeid".
6957 * cp-abi.c (cplus_typeid, cplus_typeid_type): New functions.
6958 * cp-abi.h (cplus_typeid, cplus_typeid_type): Declare.
6959 (struct cp_abi_ops) <get_typeid, get_typeid_type>: New fields.
6960 * eval.c (evaluate_subexp_standard) <OP_TYPEID>: New case.
6961 * expprint.c (dump_subexp_body_standard) <OP_TYPEID>: New
6962 case.
6963 * gnu-v3-abi.c (std_type_info_gdbarch_data): New global.
6964 (build_std_type_info_type, gnuv3_get_typeid_type)
6965 (gnuv3_get_typeid): New functions.
6966 (init_gnuv3_ops): Initialize std_type_info_gdbarch_data. Set
6967 new fields on ABI object.
6968 * parse.c (operator_length_standard) <OP_TYPEID>: New case.
6969 * std-operator.def (OP_TYPEID): New.
6970
6971 2013-04-15 Tom Tromey <tromey@redhat.com>
6972
6973 * elfread.c (elf_symtab_read): Install versioned symbol under
6974 unversioned name as well.
6975
6976 2013-04-15 Tom Tromey <tromey@redhat.com>
6977
6978 PR c++/11990:
6979 * c-lang.c (cplus_language_defn): Use gdb_demangle.
6980 * c-typeprint.c (c_type_print_base): Use gdb_demangle.
6981 * cp-support.c (mangled_name_to_comp): Use gdb_demangle.
6982 (gdb_demangle): New function.
6983 * cp-support.h (gdb_demangle): Declare.
6984 * dwarf2read.c (dwarf2_physname, fixup_partial_die)
6985 (dwarf2_name): Use gdb_demangle.
6986 * gdbtypes.c (check_stub_method): Use gdb_demangle.
6987 * gnu-v3-abi.c (gnuv3_rtti_type): Strip @plt and version
6988 suffixes from name.
6989 (gnuv3_print_method_ptr): Use gdb_demangle.
6990 * jv-lang.c (java_demangle): Use gdb_demangle.
6991 * jv-typeprint.c (java_type_print_base): Use gdb_demangle.
6992 * language.c (unk_lang_demangle): Use gdb_demangle.
6993 * symtab.c (symbol_find_demangled_name)
6994 (demangle_for_lookup): Use gdb_demangle.
6995
6996 2013-04-15 Tom Tromey <tromey@redhat.com>
6997
6998 PR c++/12824:
6999 * NEWS: Update.
7000 * breakpoint.c (enum exception_event_kind) <EX_EVENT_RETHROW>:
7001 New constant.
7002 (classify_exception_breakpoint): New function.
7003 (print_it_exception_catchpoint, print_one_exception_catchpoint)
7004 (print_mention_exception_catchpoint)
7005 (print_recreate_exception_catchpoint, handle_gnu_v3_exceptions)
7006 (catch_exception_command_1): Handle "rethrow" catchpoint.
7007 (catch_rethrow_command): New function.
7008 (_initialize_breakpoint): Add "catch rethrow" command.
7009
7010 2013-04-15 Pierre Muller <muller@sourceware.org>
7011
7012 * contrib/ari/gdb_ari.sh (write_pc rule): Do not consider
7013 set_gdbarch_write_pc as deprecated anymore.
7014
7015 2013-04-15 Joel Brobecker <brobecker@adacore.com>
7016
7017 * spu-tdep.c (spu_write_pc): Add empty line after local variable
7018 declarations.
7019
7020 2013-04-13 Yao Qi <yao@codesourcery.com>
7021
7022 * ctf.c (_initialize_ctf): Include "completer.h".
7023 Call add_target_with_completer instead of add_target.
7024
7025 2013-04-12 Jan Kratochvil <jan.kratochvil@redhat.com>
7026
7027 Fix GDB regression related to PR binutils/14813.
7028 * jit.c (mem_bfd_iovec_close): Return 0 for success.
7029 * minidebug.c (lzma_close): Add return value comment.
7030 * remote.c (remote_bfd_iovec_close): Return 0 for success.
7031 * solib-spu.c (spu_bfd_iovec_close): Likewise.
7032 * spu-linux-nat.c (spu_bfd_iovec_close): Likewise.
7033
7034 2013-04-12 Jan Kratochvil <jan.kratochvil@redhat.com>
7035
7036 * config.in: Regenerate.
7037
7038 2013-04-12 Tom Tromey <tromey@redhat.com>
7039
7040 * dwarf2-frame.c (struct comp_unit) <dwarf_frame_buffer>: Now
7041 const.
7042 * dwarf2read.c (struct dwarf2_section_info) <buffer>: Now const.
7043 (struct die_reader_specs) <buffer>: Likewise.
7044 (die_reader_func_ftype): Make 'info_ptr' const.
7045 (struct line_header) <include_dirs, statement_program_start,
7046 statement_program_end>: Now const.
7047 (struct file_entry) <name>: Likewise.
7048 (struct partial_die_info) <sibling>: Likewise.
7049 (struct dwarf_block) <data>: Likewise.
7050 (dwarf2_read_section): Remove cast.
7051 (dwarf2_get_section_info): Make 'bufp' const.
7052 (read_index_from_section): Constify.
7053 (dw2_get_file_names_reader): Make 'info_ptr' const.
7054 (dw2_get_primary_filename_reader): Likewise.
7055 (read_comp_unit_head): Make 'info_ptr' and return type const.
7056 (read_and_check_comp_unit_head, read_and_check_type_unit_head):
7057 Likewise.
7058 (read_abbrev_offset): Constify.
7059 (dwarf2_create_include_psymtab): Make 'name' const.
7060 (create_debug_types_hash_table): Update.
7061 (read_cutu_die_from_dwo): Make 'result_info_ptr' const.
7062 (init_cutu_and_read_dies, init_cutu_and_read_dies_no_follow):
7063 Constify.
7064 (process_psymtab_comp_unit_reader, build_type_psymtabs_reader)
7065 (load_partial_comp_unit_reader): Make 'info_ptr' const.
7066 (read_comp_units_from_section): Constify.
7067 (peek_abbrev_code, peek_die_abbrev, skip_children, skip_one_die)
7068 (locate_pdi_sibling, load_full_comp_unit_reader): Make 'info_ptr'
7069 const.
7070 (dwarf2_compute_name, setup_type_unit_groups): Constify.
7071 (create_dwo_debug_info_hash_table): Make 'info_ptr' const.
7072 (create_dwp_hash_table, dwarf2_ranges_read)
7073 (dwarf2_record_block_ranges): Constify.
7074 (read_die_and_children, read_die_and_siblings_1)
7075 (read_die_and_siblings): Make 'info_ptr' and 'new_info_ptr'
7076 const.
7077 (read_full_die_1, read_full_die): Make 'info_ptr' const.
7078 (abbrev_table_read_table): Constify.
7079 (load_partial_dies): Make 'info_ptr' const.
7080 (read_partial_die, read_attribute_value, read_attribute): Make
7081 'info_ptr' and return type const.
7082 (read_address, read_initial_length)
7083 (read_checked_initial_length_and_offset, read_offset)
7084 (read_offset_1, read_n_bytes, read_direct_string): Make 'buf'
7085 const.
7086 (read_direct_string): Make 'buf' and return type const.
7087 (read_indirect_string_at_offset, read_indirect_string_from_dwz)
7088 (read_indirect_string): Make return type const.
7089 (read_unsigned_leb128, read_signed_leb128): Make 'buf' const.
7090 (read_addr_index_from_leb128, dwarf2_read_addr_index_reader): Make
7091 'info_ptr' const.
7092 (read_str_index): Make return type const.
7093 (add_include_dir): Make 'include_dir' const.
7094 (add_file_name): Make 'name' const.
7095 (dwarf_decode_line_header): Constify.
7096 (psymtab_include_file_name): Make return type const.
7097 (dwarf_decode_lines_1, dwarf_decode_lines): Constify.
7098 (dwarf2_start_subfile): Make 'filename' const.
7099 (dwarf2_const_value_attr): Make 'bytes' const.
7100 (read_signatured_type_reader): Make 'info_ptr' const.
7101 (decode_locdesc): Constify.
7102 (skip_form_bytes): Make 'bytes', 'buffer_end', and return type
7103 const.
7104 (skip_unknown_opcode): Make 'opcode_definitions', 'mac_ptr',
7105 'mac_end', and return type const.
7106 (dwarf_parse_macro_header): Make 'mac_ptr' and return type const.
7107 (dwarf_decode_macro_bytes): Make 'mac_ptr', 'mac_end', and return
7108 type const.
7109 (per_cu_header_read_in): Constify.
7110 * symfile.h (dwarf2_get_section_info): Update.
7111
7112 2013-04-12 Tom Tromey <tromey@redhat.com>
7113
7114 * symtab.h (struct general_symbol_info) <value.bytes>: Make const.
7115
7116 2013-04-12 Eli Zaretskii <eliz@gnu.org>
7117
7118 * NEWS: Mention "show configuration", --configuration.
7119 * top.c (print_gdb_configuration): New function, displays the
7120 details about GDB configure-time parameters.
7121 (print_gdb_version): Mention "show configuration".
7122 * cli/cli-cmds.c (show_configuration): New function.
7123 (_initialize_cli_cmds): Add the "show configuration" command.
7124 * main.c (captured_main) <print_configuration>: New static var.
7125 <long_options>: Use it.
7126 If --configuration was given, call print_gdb_configuration.
7127
7128 2013-04-11 Jan Kratochvil <jan.kratochvil@redhat.com>
7129 Pedro Alves <palves@redhat.com>
7130
7131 * Makefile.in (HAVE_NATIVE_GCORE_TARGET): New.
7132 (generated_files): Add gcore.
7133 (install-only, uninstall): Add gcore if HAVE_NATIVE_GCORE_TARGET or
7134 HAVE_NATIVE_GCORE_HOST.
7135 (gcore): New.
7136 * NEWS (Changes since GDB 7.6): Mention newly installed gcore.
7137 * config/alpha/alpha-osf3.mh, config/i386/fbsd.mh,
7138 config/i386/fbsd64.mh, config/i386/i386gnu.mh, config/i386/i386sol2.mh,
7139 config/i386/sol2-64.mh, config/mips/irix5.mh, config/mips/irix6.mh,
7140 config/powerpc/fbsd.mh, config/sparc/fbsd.mh, config/sparc/sol2.mh:
7141 Add HAVE_NATIVE_GCORE_HOST.
7142 * configure: Regenerate.
7143 * configure.ac (HAVE_NATIVE_GCORE_TARGET): New, set it, AC_SUBST it.
7144 New AC_SUBST fir GDB_TRANSFORM_NAME and GCORE_TRANSFORM_NAME. New
7145 AC_CONFIG_FILES for gcore.
7146 * configure.tgt: Add gdb_have_gcore to the initial comment. Set
7147 gdb_have_gcore.
7148 * gdb_gcore.sh: Rename to ...
7149 * gcore.in: ... here. Remove gcore.sh comment. Use GDB_TRANSFORM_NAME
7150 and GCORE_TRANSFORM_NAME substitutions.
7151
7152 Fix parsing tabs in ${gdb_target_obs}.
7153 * configure.tgt (gdb_have_gcore): Replace case with for and if.
7154
7155 2013-04-11 Jan Kratochvil <jan.kratochvil@redhat.com>
7156
7157 * remote.c (unpush_and_perror): Add output message final dot.
7158
7159 2013-04-11 Yao Qi <yao@codesourcery.com>
7160
7161 * tracepoint.c (tfile_interp_line): Fit parameters line and
7162 utpp in one line.
7163
7164 2013-04-10 Joel Brobecker <brobecker@adacore.com>
7165
7166 * solib.c (solib_map_sections): Remove code overwriting
7167 SO->SO_NAME with the bfd's filename.
7168
7169 2013-04-10 Pedro Alves <palves@redhat.com>
7170
7171 * cli/cli-decode.c (integer_unlimited_completer): New function.
7172 (add_setshow_integer_cmd, add_setshow_uinteger_cmd)
7173 (add_setshow_zuinteger_unlimited_cmd): Install the "unlimited"
7174 completer.
7175 * cli/cli-setshow.c: Include "cli/cli-utils.h".
7176 (is_unlimited_literal): New function.
7177 (do_set_command): Handle literal "unlimited" arguments.
7178 * frame.c (_initialize_frame) <set backtrace limit>: Document
7179 "unlimited".
7180 * printcmd.c (_initialize_printcmd) <set print
7181 max-symbolic-offset>: Add help text.
7182 * record-full.c (_initialize_record_full) <set record full
7183 insn-number-max>: Likewise.
7184 * record.c (_initialize_record) <set record
7185 instruction-history-size, set record function-call-history-size>:
7186 Add help text.
7187 * ser-tcp.c (_initialize_ser_tcp) <set tcp connect-timeout>: Add
7188 help text.
7189 * tracepoint.c (_initialize_tracepoint) <set trace-buffer-size>:
7190 Likewise.
7191 * source.c (_initialize_source) <set listsize>: Add help text.
7192 * utils.c (initialize_utils) <set height, set width>: Likewise.
7193 <set pagination>: Mention "set height unlimited".
7194 * valprint.c (_initialize_valprint) <set print elements, set print
7195 repeats>: Document "unlimited".
7196
7197 2013-04-10 Pedro Alves <palves@redhat.com>
7198
7199 * cli/cli-cmds.c (quit_command): Call query_if_trace_running
7200 instead of disconnect_tracing.
7201 * infcmd.c (detach_command, disconnect_command): Call
7202 query_if_trace_running. Adjust.
7203 * top.c: Include "tracepoint.h".
7204 (quit_target): Delete. Contents moved ...
7205 (quit_force): ... here. Wrap each stage of teardown in
7206 TRY_CATCH. Call disconnect_tracing before detaching.
7207
7208 2013-04-10 Hui Zhu <hui@codesourcery.com>
7209 Yao Qi <yao@codesourcery.com>
7210
7211 * configure.ac: Check libbabeltrace is installed.
7212 * config.in: Regenerate.
7213 * configure: Regenerate.
7214 * Makefile.in (LIBBABELTRACE): New.
7215 (CLIBS): Add LIBBABELTRACE.
7216 * ctf.c: Include "exec.h".
7217 (CTF_EVENT_ID_STATUS, CTF_EVENT_ID_TSV_DEF): New macros.
7218 (CTF_EVENT_ID_TP_DEF, ctf_save_write_int32): New macros.
7219 (ctf_save_metadata_header): Define new type aliases in
7220 metadata.
7221 (ctf_write_header): Define event type "tsv_def" and "tp_def"
7222 in metadata. Start a new faked packet for trace status.
7223 (ctf_write_status): Write trace status to CTF.
7224 (ctf_write_uploaded_tsv): Write TSV to CTF.
7225 (ctf_write_uploaded_tp): Write tracepoint definition to CTF.
7226 (ctf_write_definition_end): End the faked packet.
7227
7228 (ctx, ctf_iter, trace_dirname): New.
7229 (start_pos): New variable.
7230 (ctf_destroy, ctf_open_dir, ctf_open): New.
7231 (SET_INT32_FIELD, SET_ARRAY_FIELD, SET_STRING_FIELD): New
7232 macros.
7233 (ctf_read_tsv, ctf_read_tp, ctf_close, ctf_files_info): New.
7234 (ctf_fetch_registers, ctf_xfer_partial): New.
7235 (ctf_get_trace_state_variable_value): New.
7236 (ctf_get_tpnum_from_frame_event): New.
7237 (ctf_get_traceframe_address): New.
7238 (ctf_trace_find, ctf_has_stack): New.
7239 (ctf_has_registers, ctf_traceframe_info, init_ctf_ops): New.
7240 (ctf_get_trace_status, ctf_read_status): New.
7241 (_initialize_ctf): New.
7242 * tracepoint.c (get_tracepoint_number): New
7243 (get_uploaded_tsv): Remove 'static'.
7244 (struct traceframe_info, trace_regblock_size): Move it to ...
7245 * tracepoint.h: ... here.
7246 (get_tracepoint_number): Declare it.
7247 (get_uploaded_tsv): Declare it.
7248
7249 * NEWS: Mention new configure option.
7250
7251 2013-04-10 Pedro Alves <palves@redhat.com>
7252 Hui Zhu <hui@codesourcery.com>
7253
7254 * breakpoint.c (dprintf_re_set): New.
7255 (initialize_breakpoint_ops): Set dprintf_breakpoint_ops re_set
7256 to dprintf_re_set.
7257
7258 2013-04-09 Joel Brobecker <brobecker@adacore.com>
7259
7260 * configure.tgt (gdb_target_obs) <powerpc-*-aix* | rs6000-*-*>:
7261 Remove solib-svr4.o from the list.
7262
7263 2013-04-09 Joel Brobecker <brobecker@adacore.com>
7264
7265 * varobj.c (update_dynamic_varobj_children) [!HAVE_PYTHON]:
7266 Use gdb_assert_not_reached instead of invalid boolean expression.
7267
7268 2013-04-09 Pedro Alves <palves@redhat.com>
7269
7270 * remote.c (unpush_and_perror): New function.
7271 (readchar, remote_serial_write): Use it.
7272
7273 2013-04-09 Markus Metzger <markus.t.metzger@intel.com>
7274
7275 * NEWS: Mention new btrace RSP packets.
7276
7277 2013-04-08 Tom Tromey <tromey@redhat.com>
7278
7279 * symmisc.c (dump_msymbols): Cast fprintf_filtered argument to
7280 long.
7281
7282 2013-04-08 Tom Tromey <tromey@redhat.com>
7283
7284 * maint.c (print_bfd_section_info): Print the section index.
7285 * symmisc.c (dump_msymbols): Print the section index.
7286
7287 2013-04-08 Tom Tromey <tromey@redhat.com>
7288
7289 PR symtab/8424:
7290 * blockframe.c (find_pc_partial_function_gnu_ifunc): Check
7291 SYMBOL_SECTION, not SYMBOL_OBJ_SECTION.
7292 * breakpoint.c (resolve_sal_pc): Update.
7293 * elfread.c (elf_gnu_ifunc_record_cache): Update.
7294 * findvar.c (struct minsym_lookup_data) <objfile>: New field.
7295 (minsym_lookup_iterator_cb): Use it.
7296 (default_read_var_value): Update.
7297 * hppa-hpux-tdep.c (hppa64_hpux_in_solib_call_trampoline):
7298 Update.
7299 * infcmd.c (jump_command): Update.
7300 * linespec.c (minsym_found): Update.
7301 * maint.c (maintenance_translate_address): Update.
7302 * minsyms.c (lookup_minimal_symbol_by_pc_section_1): Update.
7303 (prim_record_minimal_symbol_full): Don't set SYMBOL_OBJ_SECTION.
7304 * parse.c (write_exp_msymbol): Update.
7305 * printcmd.c (address_info): Update.
7306 * psymtab.c (find_pc_sect_psymbol): Update.
7307 (fixup_psymbol_section): Check SYMBOL_SECTION, not
7308 SYMBOL_OBJ_SECTION.
7309 (add_psymbol_to_bcache): Correctly initialize SYMBOL_SECTION.
7310 Don't initialize SYMBOL_OBJ_SECTION.
7311 * spu-tdep.c (spu_catch_start): Update.
7312 * stabsread.c (define_symbol): Don't set SYMBOL_SECTION.
7313 * symmisc.c (dump_msymbols, print_symbol): Update.
7314 * symtab.c (fixup_section): Don't set 'obj_section'. Change
7315 how fallback section is computed.
7316 (fixup_symbol_section): Update.
7317 (find_pc_sect_symtab, find_function_start_sal, skip_prologue_sal):
7318 Update.
7319 (allocate_symbol, initialize_symbol, allocate_template_symbol):
7320 Initialize SYMBOL_SECTION.
7321 * symtab.h (struct general_symbol_info) <section>: Update comment.
7322 <obj_section>: Remove.
7323 (SYMBOL_OBJ_SECTION): Add 'objfile' argument. Rewrite.
7324 (SYMBOL_OBJFILE): New macro.
7325
7326 2013-04-08 Tom Tromey <tromey@redhat.com>
7327
7328 * coffread.c (record_minimal_symbol): Update.
7329 * dbxread.c (record_minimal_symbol): Update.
7330 * elfread.c (record_minimal_symbol): Update.
7331 * machoread.c (macho_symtab_add_minsym): Update.
7332 * mdebugread.c (record_minimal_symbol, parse_partial_symbols):
7333 Update.
7334 * minsyms.c (prim_record_minimal_symbol): Update.
7335 (prim_record_minimal_symbol_full): Remove 'bfd_section'
7336 argument.
7337 (prim_record_minimal_symbol_and_info): Likewise.
7338 * minsyms.h (prim_record_minimal_symbol_full)
7339 (prim_record_minimal_symbol_and_info): Update.
7340 * symtab.c (allocate_symbol, initialize_symbol)
7341 (allocate_template_symbol): Initialize SYMBOL_SECTION.
7342 * xcoffread.c (record_minimal_symbol, scan_xcoff_symtab):
7343 Update.
7344
7345 2013-04-08 Tom Tromey <tromey@redhat.com>
7346
7347 PR symtab/8423:
7348 * solib-som.c (som_solib_section_offsets): Use BFD section
7349 indices. Set offsets for all sections.
7350 * somread.c (som_symtab_read): Compute BFD section for
7351 symbol. Use prim_record_minimal_symbol_and_info.
7352 (som_symfile_read): Fix comment.
7353 (struct find_section_offset_arg): New.
7354 (find_section_offset, set_section_index): New functions.
7355 (som_symfile_offsets): Use set_section_index to compute
7356 section indices.
7357
7358 2013-04-08 Tom Tromey <tromey@redhat.com>
7359
7360 * coffread.c (cs_to_section): Use gdb_bfd_section_index.
7361 * elfread.c (record_minimal_symbol, elf_symtab_read): Use
7362 gdb_bfd_section_index.
7363 * gdb_bfd.c (gdb_bfd_section_index, gdb_bfd_count_sections):
7364 New functions.
7365 * gdb_bfd.h (gdb_bfd_section_index, gdb_bfd_count_sections):
7366 Declare.
7367 * machoread.c (macho_symtab_add_minsym, macho_symfile_offsets):
7368 Update.
7369 * objfiles.c (add_to_objfile_sections_full): New function.
7370 (add_to_objfile_sections): Use it.
7371 (build_section_table): Rewrite.
7372 (objfile_relocate1): Use gdb_bfd_section_index. Update.
7373 * objfiles.h (obj_section_offset): Use gdb_bfd_section_index.
7374 (struct objfile) <sections>: Update comment.
7375 (ALL_OBJFILE_OSECTIONS): Skip sections where the_bfd_section
7376 is NULL.
7377 (ALL_OBJSECTIONS): Use it.
7378 * solib-dsbt.c (dsbt_relocate_main_executable): Update.
7379 * solib-frv.c (frv_relocate_main_executable): Update.
7380 * solib-target.c (solib_target_relocate_section_addresses):
7381 Use gdb_bfd_section_index.
7382 * symfile.c (build_section_addr_info_from_section_table):
7383 Use gdb_bfd_section_index.
7384 (build_section_addr_info_from_bfd, place_section): Likewise.
7385 * symtab.c (fixup_section): Update.
7386 * xcoffread.c (find_targ_sec): Use gdb_bfd_section_index.
7387
7388 2013-04-08 Tom Tromey <tromey@redhat.com>
7389
7390 * minsyms.h (struct bound_minimal_symbol): New.
7391 (lookup_minimal_symbol_and_objfile): Return bound_minimal_symbol.
7392 Remove objfile argument.
7393 (lookup_minimal_symbol_by_pc_section, lookup_minimal_symbol_by_pc):
7394 Return bound_minimal_symbol.
7395 * minsyms.c (lookup_minimal_symbol_by_pc_1)
7396 (lookup_minimal_symbol_by_pc_section, lookup_minimal_symbol_by_pc):
7397 Return bound_minimal_symbol.
7398 (in_gnu_ifunc_stub): Update.
7399 (lookup_minimal_symbol_and_objfile): Return bound_minimal_symbol.
7400 Remove 'objfile_p' argument.
7401 (lookup_solib_trampoline_symbol_by_pc): Update.
7402 * ada-tasks.c, amd64-windows-tdep.c, arm-tdep.c,
7403 arm-wince-tdep.c, block.c, blockframe.c, breakpoint.c, btrace.c,
7404 c-valprint.c, dwarf2loc.c, elfread.c, frame.c, frv-tdep.c,
7405 glibc-tdep.c, gnu-v2-abi.c, gnu-v3-abi.c, hppa-hpux-tdep.c,
7406 i386-tdep.c, ia64-tdep.c, infcall.c, infcmd.c, jit.c,
7407 linux-fork.c, m32c-tdep.c, m68hc11-tdep.c, maint.c,
7408 mips-tdep.c, p-valprint.c, parse.c, ppc-linux-tdep.c,
7409 ppc-sysv-tdep.c, printcmd.c, rs6000-tdep.c, sh64-tdep.c,
7410 stack.c, symtab.c, tui/tui-disasm.c: Update.
7411
7412 2013-04-08 Tom Tromey <tromey@redhat.com>
7413
7414 * ada-lang.c (ada_decode_symbol): Check and set 'ada_mangled'.
7415 Use symbol's obstack, not an objfile.
7416 * coffread.c (process_coff_symbol): Update.
7417 * dwarf2read.c (fixup_go_packaging, new_symbol_full): Update.
7418 * jv-lang.c (add_class_symbol): Update.
7419 * mdebugread.c (new_symbol): Update.
7420 * minsyms.c (prim_record_minimal_symbol_full)
7421 (terminate_minimal_symbol_table): Update.
7422 * psymtab.c (add_psymbol_to_bcache): Clear entire symbol. Update.
7423 * stabsread.c (define_symbol, read_enum_type): Update.
7424 * symtab.c (symbol_set_demangled_name, symbol_get_demangled_name):
7425 Handle Ada specially.
7426 (symbol_set_language): Add 'obstack' argument.
7427 (symbol_set_names): Update.
7428 (symbol_natural_name, symbol_demangled_name): Always use
7429 ada_decode_symbol.
7430 * symtab.h (struct general_symbol_info)
7431 <language_specific::obstack>: New field.
7432 <ada_mangled>: New field.
7433 (SYMBOL_SET_LANGUAGE): Add 'obstack' argument.
7434 (symbol_set_language): Update.
7435
7436 2013-04-08 Tom Tromey <tromey@redhat.com>
7437
7438 * symtab.c (symbol_init_cplus_specific, symbol_set_demangled_name):
7439 Take an obstack, not an objfile.
7440 (symbol_set_names): Update.
7441 * symtab.h (symbol_set_demangled_name): Update.
7442
7443 2013-04-08 Tom Tromey <tromey@redhat.com>
7444
7445 * coffread.c (process_coff_symbol, coff_read_enum_type): Call
7446 allocate_symbol.
7447 * dwarf2read.c (fixup_go_packaging): Call allocate_symbol.
7448 (read_func_scope): Call allocate_template_symbol.
7449 (new_symbol_full): Call allocate_symbol.
7450 * jit.c (finalize_symtab): Call allocate_symbol.
7451 * jv-lang.c (add_class_symbol): Call allocate_symbol.
7452 * mdebugread.c (parse_symbol, new_block): Call allocate_symbol.
7453 * stabsread.c (patch_block_stabs, define_symbol, read_enum_type)
7454 (common_block_end): Call allocate_symbol.
7455 * symtab.c (allocate_symbol, initialize_symbol)
7456 (allocate_template_symbol): New functions.
7457 * symtab.c (allocate_symbol, initialize_symbol)
7458 (allocate_template_symbol): Declare.
7459 * xcoffread.c (process_xcoff_symbol): Call initialize_symbol.
7460
7461 2013-04-08 Pedro Alves <palves@redhat.com>
7462 Keith Seitz <keiths@redhat.com>
7463
7464 * breakpoint.c (create_breakpoint): Rename
7465 "parse_condition_and_thread" parameter to "parse_arg". Update
7466 describing comment. If !PARSE_ARG, then error out if ARG is not
7467 the empty string after extracting the location.
7468 * breakpoint.h (create_breakpoint): Rename
7469 "parse_condition_and_thread" parameter to "parse_arg".
7470
7471 2013-04-08 Aleksandar Ristovski <aristovski@qnx.com
7472
7473 * solib-svr4.c (lm_addr_check): Add const qualifier to 'so' arg.
7474
7475 2013-04-07 Yao Qi <yao@codesourcery.com>
7476
7477 * remote.c (remote_trace_find): Change type of parameters 'addr1'
7478 and 'addr2' to CORE_ADDR.
7479 * target.c (update_current_target): Update.
7480 * target.h (struct target_ops) <to_trace_find>: Change parameter
7481 type to CORE_ADDR.
7482 * tracepoint.c (tfind_1): Change type of parameters 'addr1' and
7483 'addr2' to CORE_ADDR.
7484 (tfile_trace_find): Likewise.
7485 (tfile_get_traceframe_address): Change return type to CORE_ADDR.
7486 Change local variable 'addr' to type CORE_ADDR.
7487 * tracepoint.h (tfind_1): Update declaration.
7488
7489 2013-04-06 Eli Zaretskii <eliz@gnu.org>
7490
7491 * windows-nat.c (windows_get_absolute_argv0): Move from here...
7492 * mingw-hdep.c (windows_get_absolute_argv0): ...to here.
7493 Include main.h.
7494
7495 * windows-nat.h (windows_get_absolute_argv0): Move prototype from
7496 here...
7497 * main.h (windows_get_absolute_argv0): ...to here.
7498
7499 2013-04-05 Doug Evans <dje@google.com>
7500
7501 * dwarf2read.c (struct dwarf2_per_objfile): Tweak comment.
7502 (read_cutu_die_from_dwo): Add comments.
7503 (read_structure_type): Update comment.
7504 (read_enumeration_type, read_namespace_type): Update comment.
7505 (read_die_type, get_die_type_at_offset, get_die_type): Update comment.
7506
7507 2013-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
7508
7509 Convert man pages to texinfo, new gdbinit.5 texinfo page.
7510 * Makefile.in (gdb.z): Remove.
7511 (install-only): Remove $(man1dir) and gdb.1 installation.
7512 * gdb.1: Remove.
7513
7514 2013-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
7515
7516 Fix compatibility with Linux kernel 3.8.3.
7517 * linux-tdep.c (linux_find_memory_regions_full): Move variable number
7518 to more inner block. Remove parsing of NUMBER from outer block.
7519 Parse NUMBER only if KEYWORD has been identified.
7520
7521 2013-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
7522
7523 Fix variable name shadowing.
7524 * linux-tdep.c (linux_find_memory_regions_full): Rename outer variable
7525 filename to mapsfilename and update its uses.
7526
7527 2013-04-05 Eli Zaretskii <eliz@gnu.org>
7528
7529 * Makefile.in (TAGS): Avoid warning from etags when $GDB_NM_FILE is
7530 empty. See http://sourceware.org/ml/gdb-patches/2012-08/msg00504.html
7531 and http://sourceware.org/ml/gdb-patches/2013-04/msg00055.html for
7532 details of the problem.
7533
7534 2013-04-04 Pedro Alves <palves@redhat.com>
7535 Hui Zhu <hui@codesourcery.com>
7536
7537 * breakpoint.c (validate_commands_for_breakpoint): If validating a
7538 tracepoint, reset its STEP_COUNT and call validate_actionline.
7539
7540 2013-04-03 Doug Evans <dje@google.com>
7541
7542 * dwarf2read.c (read_die_and_siblings_1): Renamed from
7543 read_die_and_siblings.
7544 (read_die_and_siblings): New function.
7545 (read_cutu_die_from_dwo): Dump die if requested.
7546 (read_die_and_children): Call read_full_die_1 and
7547 read_die_and_siblings_1.
7548 (read_full_die): Dump die if requested.
7549
7550 * dwarf2read.c (read_comp_units_from_section): Add debugging printf.
7551
7552 * dwarf2read.c (struct dwo_file): New member comp_dir.
7553 Rename member name to dwo_name. All uses updated.
7554 (hash_dwo_file): Include comp_dir in computation.
7555 (eq_dwo_file): Ditto.
7556 (lookup_dwo_file_slot): New arg comp_dir. All callers updated.
7557 (create_dwo_in_dwp, lookup_dwo_in_dwp, open_and_init_dwo_file): Ditto.
7558
7559 * psymtab.c (read_psymtabs_with_fullname): Don't call
7560 psymtab_to_fullname if the basenames are different.
7561
7562 2013-04-03 Jan Kratochvil <jan.kratochvil@redhat.com>
7563
7564 * NEWS (Changes in GDB 7.6): Update the data-disassemble for "fullname".
7565 New entry about "fullname" presence.
7566
7567 2013-04-03 Pedro Alves <palves@redhat.com>
7568
7569 * NEWS: Mention x86_64/Cygwin as new native configuration.
7570
7571 2013-04-02 Doug Evans <dje@google.com>
7572
7573 * dwarf2read.c (read_structure_type): Fix typo in comment.
7574
7575 2013-04-02 Pedro Alves <palves@redhat.com>
7576
7577 * NEWS: Mention "set/show debug aarch64", "set/show debug
7578 coff-pe-read" and "set/show debug mach-o".
7579
7580 2013-04-02 Pedro Alves <palves@redhat.com>
7581
7582 * NEWS: Mention "set/show remote trace-buffer-size-packet".
7583
7584 2013-04-02 Eli Zaretskii <eliz@gnu.org>
7585
7586 * Makefile.in (HFILES_NO_SRCDIR): Remove call-cmds.h.
7587 gdb_string.h is now in common/.
7588
7589 2013-04-02 Pedro Alves <palves@redhat.com>
7590
7591 * NEWS: Move "set debug notification" and "set trace-buffer-size"
7592 under "New options".
7593
7594 2013-04-02 Jan Kratochvil <jan.kratochvil@redhat.com>
7595
7596 Revert this patch:
7597 PR gdb/15275
7598 * remote.c (remote_get_trace_status): Include putpkt in TRY_CATCH.
7599
7600 2013-04-02 Pedro Alves <palves@redhat.com>
7601
7602 PR gdb/15275
7603
7604 * remote.c (send_interrupt_sequence): Use remote_serial_write.
7605 (remote_serial_write): New function.
7606 (putpkt_binary, getpkt_or_notif_sane_1): Use remote_serial_write.
7607
7608 2013-04-01 Jiong Wang <jiwang@tilera.com>
7609
7610 * NEWS: Mention TILE-Gx in "New native configurations" and
7611 "New targets" sections.
7612
7613 2013-04-01 Doug Evans <dje@google.com>
7614
7615 * dwarf2read.c (lookup_signatured_type_at_offset): Delete.
7616 (process_enumeration_scope): Simplify.
7617
7618 * dwarf2read.c (struct dwarf2_per_cu_data): Move member
7619 type_unit_group ...
7620 (struct signatured_type): ... to here.
7621 (sig_type_ptr): New typedef.
7622 (type_unit_group): Delete member 't.first_cu'. Move member 'tus'
7623 out of union 't'. All uses updated.
7624 (dw2_get_file_names_reader): Assert not called for a type unit.
7625 (dw2_get_file_names): Assert not called for a type unit or type
7626 unit group.
7627 (build_type_psymtabs_reader): Assert called for a type unit.
7628 (build_type_psymtab_dependencies): Assert called for a type unit group.
7629
7630 * dwarf2read.c (free_dwo_file): Add comment.
7631 (dwarf2_per_objfile_free): Unref dwp bfd.
7632
7633 2013-04-01 Aleksandar Ristovski <aristovski@qnx.com>
7634
7635 * coff-pe-read.c (add_pe_exported_sym): Remove unused 'dll_name_len'.
7636 (add_pe_forwarded_sym): Remove unused 'section', 'dll_name_len'.
7637 (read_pe_exported_syms): Remove unused 'exportix'.
7638 (pe_text_section_offset): Remove unused 'opthdr_ofs', 'num_entries',
7639 'export_rva', 'export_size', 'expptr', 'exp_funcbase', 'expdata',
7640 'erva', 'name_rvas', 'ordinals', 'nexp', 'ordbase', 'dll_name'.
7641
7642 2013-04-01 Aleksandar Ristovski <aristovski@qnx.com>
7643
7644 * breakpoint.c (parse_cond_to_aexpr): Remove unused 'old_chain'.
7645 (print_it_watchpoint): Remove unused 'bl'.
7646 (say_where): Remove unused 'uiout'.
7647 (bpstat_remove_breakpoint_callback): Remove unused 'uiout'.
7648 (bkpt_breakpoint_hit): Remove unused 'b'.
7649 (internal_bkpt_print_it): Remove unused 'uiout'.
7650 * buildsym.c (augment_type_symtab): Remove unused 'i'.
7651
7652 2013-03-31 Tiago Stürmer Daitx <tdaitx@linux.vnet.ibm.com>
7653
7654 * ppc-sysv-tdep.c (ppc64_sysv_abi_push_float): New function.
7655 (ppc64_sysv_abi_push_dummy_call): Handle complex arguments.
7656
7657 2013-03-29 Doug Evans <dje@google.com>
7658
7659 * dwarf2read.c (open_dwo_file): Renamed from open_dwop_file.
7660 Delete arg is_dwp. All callers updated.
7661 (open_dwp_file): New function.
7662 (open_and_init_dwp_file): Call it.
7663 (get_dwp_file): New function.
7664 (lookup_dwo_cutu): Call it.
7665
7666 * dwarf2read.c (open_and_init_dwp_file): Remove incorrect, and
7667 unnecessary, cleanup.
7668
7669 * dwarf2read.c (lookup_dwo_cutu): Improve complaint text.
7670
7671 * dwarf2read.c (read_cutu_die_from_dwo): New function.
7672 (lookup_dwo_unit): New function.
7673 (init_cutu_and_read_dies): Move DWO handling to new functions.
7674
7675 * dwarf2read.c (struct signatured_type): Tweak comment.
7676 (struct dwo_unit): Tweak comment.
7677 (create_debug_types_hash_table): Tweak comment. Reformat long line.
7678 (create_dwo_debug_info_hash_table): Tweak comment.
7679 (dwarf2_per_cu_offset_and_type): Tweak comment.
7680
7681 * dwarf2read.c (lookup_signatured_type): Remove complaint about
7682 missing .debug_types section.
7683
7684 2013-03-29 Yao Qi <yao@codesourcery.com>
7685
7686 * corelow.c: Include "completer.h".
7687 (_initialize_corelow): Call add_target_with_completer with
7688 argument 'filename_completer'.
7689 * tracepoint.c: Likewise.
7690 * exec.c (_initialize_exec): Likewise.
7691 * target.c (add_target): Rename to ...
7692 (add_target_with_completer): ... this. Call set_cmd_completer
7693 if parameter completer is not NULL.
7694 (add_target): New.
7695 * target.h: Include "command.h".
7696 (add_target_with_completer): Declare it.
7697
7698 2013-03-28 Joel Brobecker <brobecker@adacore.com>
7699
7700 * coffread.c (is_import_fixup_symbol): New function.
7701 (record_minimal_symbol): Use is_import_fixup_symbol to
7702 detect import fixup symbols, and discard them.
7703
7704 2013-03-28 Doug Evans <dje@google.com>
7705
7706 * dwarf2read.c (create_debug_types_hash_table): Don't allocate the
7707 types hash table until we know we need it.
7708
7709 * dwarf2read.c (create_addrmap_from_index): Complain about bad CU
7710 index numbers.
7711
7712 * dwarf2read.c (dw2_get_file_names): Delete arg "objfile".
7713 All callers updated.
7714 (dw2_print_stats): Print #read CUs too.
7715 (dump_die_shallow): Print signatured types better.
7716
7717 * dwarf2read.c (struct dwarf2_per_cu_data): Rename member
7718 info_or_types_section to section. All uses updated.
7719 (struct dwo_unit): Ditto.
7720
7721 2013-03-28 Pedro Alves <palves@redhat.com>
7722
7723 * NEWS (New options): New section.
7724 (New options): Mention set/show remote trace-status-packet.
7725 * remote.c (PACKET_qTStatus): New enumeration value.
7726 (remote_get_trace_status): Skip sending qTStatus if the packet is
7727 disabled. Use packet_ok.
7728 (_initialize_remote): Register a configuration command for
7729 qTStatus packet.
7730
7731 2013-03-28 Doug Evans <dje@google.com>
7732
7733 * symfile.c (find_separate_debug_file): Add comment.
7734 (terminate_after_last_dir_separator): Tweak comment.
7735
7736 * dwarf2read.c (create_partial_symtab): Add forward decl.
7737 (create_partial_symtab): Move to be closer to other psymtab functions.
7738 (process_psymtab_comp_unit_reader, process_psymtab_comp_unit): Ditto.
7739
7740 * dwarf2read.c (dwarf2_physname): Move declaration to better spot.
7741 (compute_symtab_includes): Remove unnecessary forward declaration.
7742 (die_needs_namespace): Add comment marking group of functions for
7743 dwarf2 name computation.
7744
7745 * typeprint.c (_initialize_typeprint): Improve type help text.
7746
7747 * python/python.c (finish_python_initialization): Provide suggestion
7748 for how to tell gdb to find its python files.
7749
7750 2013-03-28 Pedro Alves <palves@redhat.com>
7751
7752 PR gdb/15294
7753
7754 * source.c (_initialize_source): Change back "set listsize" to an
7755 integer command.
7756
7757 2013-03-27 Gareth McMullin <gareth@blacksphere.co.nz>
7758
7759 PR gdb/15275
7760 * remote.c (remote_get_trace_status): Include putpkt in TRY_CATCH.
7761
7762 2013-03-27 Pedro Alves <palves@redhat.com>
7763
7764 * top.c (history_size): Rename to ...
7765 (history_size_setshow_var): ... this. Add comment.
7766 (show_commands): Use readline's 'history_length' instead of
7767 computing the history length by calling history_get in a loop.
7768 (set_history_size_command): Error out for sizes over INT_MAX.
7769 Restore previous history size on invalid size.
7770 (init_history): If HISTSIZE is negative, leave the history size as
7771 zero. Add comments.
7772 (init_main): Adjust.
7773
7774 2013-03-27 Pedro Alves <palves@redhat.com>
7775
7776 * coff-pe-read.c (_initialize_coff_pe_read): Rename "set debug
7777 coff_pe_read" command to "set debug coff-pe-read".
7778
7779 2013-03-27 Markus Metzger <markus.t.metzger@intel.com>
7780
7781 * record.c (command_size_to_target_size): Fix size comparison.
7782 Change parameter type from pointer to integer to integer.
7783 Update all users.
7784
7785 2013-03-27 Pierre Muller <muller@sourceware.org>
7786
7787 * windows-nat.c (handle_output_debug_string): Avoid typecast
7788 from integer of different size warning.
7789
7790 2013-03-26 Joel Brobecker <brobecker@adacore.com>
7791
7792 * windows-nat.c (handle_output_debug_string): Add empty line
7793 after local block variable definition.
7794
7795 2013-03-26 Pedro Alves <palves@redhat.com>
7796
7797 * ser-tcp.c (wait_for_connect): Make 'polls' parameter unsigned.
7798 (net_open): Make 'polls' local unsigned.
7799
7800 2013-03-26 Pedro Alves <palves@redhat.com>
7801
7802 * remote.c (_initialize_remote): Make "set remoteaddresssize"
7803 a zuinteger command instead of uinteger.
7804
7805 2013-03-26 Pedro Alves <palves@redhat.com>
7806
7807 * record-full.c (record_full_insn_num): Make it unsigned.
7808 (record_full_check_insn_num, record_full_message)
7809 (record_full_registers_change, record_full_xfer_partial): Remove
7810 record_full_insn_max_num check (it's always != 0).
7811 (record_full_info, record_full_restore): Use %u as format string.
7812 (): Use %u as format string.
7813 (set_record_full_insn_max_num): Remove record_full_insn_max_num
7814 check (it's always != 0).
7815
7816 2013-03-26 Pedro Alves <palves@redhat.com>
7817
7818 * dcache.c (_initialize_dcache): Make the "set dcache line-size"
7819 and "set dcache size" commands zuinteger instead of uinteger.
7820
7821 2013-03-26 Pedro Alves <palves@redhat.com>
7822
7823 * cris-tdep.c (_initialize_cris_tdep): Make the "set cris-version"
7824 command zuinteger instead of uinteger.
7825
7826 2013-03-26 Pedro Alves <palves@redhat.com>
7827
7828 * coff-pe-read.c (_initialize_coff_pe_read): Make the command
7829 zuinteger instead of uinteger.
7830
7831 2013-03-26 Pedro Alves <palves@redhat.com>
7832
7833 * record.c (record_insn_history_size_setshow_var)
7834 (record_call_history_size_setshow_var): New globals.
7835 (command_size_to_target_size): New function.
7836 (cmd_record_insn_history, cmd_record_call_history): Use
7837 command_size_to_target_size instead of cast.
7838 (validate_history_size, set_record_insn_history_size)
7839 (set_record_call_history_size): New functions.
7840 (_initialize_record): Install set_record_insn_history_size and
7841 set_record_call_history_size as "set" hooks of "set record
7842 instruction-history-size" and "set record
7843 function-call-history-size".
7844
7845 2013-03-26 Pedro Alves <palves@redhat.com>
7846
7847 * top.c (gdb_rl_operate_and_get_next): Replace max_input_history
7848 use with history_max_entries use. Remove FIXME note.
7849
7850 2013-03-26 Markus Metzger <markus.t.metzger@intel.com>
7851
7852 * record-btrace.c (record_btrace_close): Call
7853 record_btrace_auto_disable.
7854
7855 2013-03-25 Joel Brobecker <brobecker@adacore.com>
7856
7857 * rs6000-nat.c (fixup_breakpoints): Delete declaration.
7858
7859 2013-03-25 Doug Evans <dje@google.com>
7860
7861 * contrib/cc-with-tweaks.sh: Check exit code of dwp.
7862
7863 2013-03-25 Tom Tromey <tromey@redhat.com>
7864
7865 PR symtab/11462:
7866 * c-exp.y (exp): Add new productions for destructors after '.' and
7867 '->'.
7868 (write_destructor_name): New function.
7869
7870 2013-03-25 Tom Tromey <tromey@redhat.com>
7871
7872 PR c++/9197:
7873 * opencl-lang.c (evaluate_subexp_opencl) <STRUCTOP_STRUCT>: Use
7874 value_struct_elt, not lookup_struct_elt_type.
7875 * eval.c (evaluate_subexp_standard) <STRUCTOP_STRUCT,
7876 STRUCTOP_PTR>: Use value_struct_elt, not lookup_struct_elt_type.
7877 * expression.h (EVAL_AVOID_SIDE_EFFECTS): Update comment.
7878
7879 2013-03-25 Yao Qi <yao@codesourcery.com>
7880
7881 * ctf.c [USE_WIN32API]: Undef 'mkdir' and use 'mkdir'
7882 instead of '_mkdir'.
7883
7884 2013-03-23 Eli Zaretskii <eliz@gnu.org>
7885
7886 * windows-nat.c (windows_get_absolute_argv0): New function.
7887 * windows-nat.h: Add its prototype.
7888
7889 * main.c (get_init_files): Use filename_ncmp instead of strncmp.
7890 Use IS_DIR_SEPARATOR instead of looking for a character inside
7891 SLASH_STRING. Include filenames.h.
7892 (captured_main) [__MINGW32__]: Make argv[0] absolute, so that
7893 relocate_gdb_directory works when passed gdb_program_name.
7894 Include windows-nat.h.
7895
7896 2013-03-22 Jan Kratochvil <jan.kratochvil@redhat.com>
7897
7898 * exceptions.h (enum errors): New entry TARGET_CLOSE_ERROR.
7899 * remote.c (trace_error): Remove the special handling of '2'.
7900 (readchar) <SERIAL_EOF>
7901 (readchar) <SERIAL_ERROR>
7902 (getpkt_or_notif_sane_1): Use TARGET_CLOSE_ERROR for them.
7903 (remote_get_trace_status): Call throw_exception if EX is
7904 TARGET_CLOSE_ERROR.
7905 * utils.c (perror_with_name): Rename to ...
7906 (throw_perror_with_name): ... here. New parameter errcode, describe it
7907 in the function comment.
7908 (perror_with_name): New function wrapper.
7909 * utils.h (enum errors): New stub declaration.
7910 (throw_perror_with_name): New declaration.
7911
7912 2013-03-22 Pedro Alves <palves@redhat.com>
7913 Yao Qi <yao@codesourcery.com>
7914 Mark Kettenis <kettenis@gnu.org>
7915
7916 * cli/cli-setshow.c (do_set_command) <var_uinteger>:
7917 Don't let the user set the value to UINT_MAX directly.
7918 <var_integer>: Don't let the user set the value to INT_MAX
7919 directly.
7920
7921 2013-03-22 Jan Kratochvil <jan.kratochvil@redhat.com>
7922
7923 * remote.c (remote_unpush_target): New function.
7924 (remote_open_1): Remove two pop_target calls, update one comment, add
7925 comment to target_preopen call. Replace pop_target call by
7926 remote_unpush_target call.
7927 (interrupt_query, readchar, getpkt_or_notif_sane_1): Replace
7928 pop_target calls by remote_unpush_target calls.
7929
7930 2013-03-22 Pedro Alves <palves@redhat.com>
7931
7932 * linux-nat.c (linux_child_follow_fork): Don't call
7933 linux_enable_event_reporting.
7934 (linux_handle_extended_wait): Don't call
7935 linux_enable_event_reporting.
7936
7937 2013-03-22 Pedro Alves <palves@redhat.com>
7938
7939 * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code): Define INSN macro,
7940 use it to rewrite the trampoline buffers with type gdb_byte[], and
7941 undefine the macro. Remove char* cast.
7942
7943 2013-03-21 Doug Evans <dje@google.com>
7944
7945 New commands "mt set per-command {space,time,symtab} {on,off}".
7946 * NEWS: Add entry.
7947 * event-top.c: #include "maint.h".
7948 * main.c: #include "maint.h".
7949 * maint.c: #include <sys/time.h>, <time.h>, block.h, top.h,
7950 timeval-utils.h, maint.h, cli/cli-setshow.h.
7951 (per_command_time, per_command_space): New static globals.
7952 (per_command_symtab): New static global.
7953 (per_command_setlist, per_command_showlist): New static globals.
7954 (struct cmd_stats): Move here from utils.c.
7955 (set_per_command_time): Renamed from set_display_time in utils.c
7956 and moved here. All callers updated.
7957 (set_per_command_space): Renamed from set_display_space in utils.c
7958 and moved here. All callers updated.
7959 (count_symtabs_and_blocks): New function.
7960 (report_command_stats): Moved here from utils.c. Add support for
7961 printing symtab stats. Only print data if enabled before command
7962 executed.
7963 (make_command_stats_cleanup): Ditto.
7964 (sert_per_command_cmd, show_per_command_cmd): New functions.
7965 (_initialize_maint_cmds): Add new commands
7966 mt set per-command {space,time,symtab} {on,off}.
7967 * maint.h: New file.
7968 * top.c: #include "maint.h".
7969 * utils.c (reset_prompt_for_continue_wait_time): New function.
7970 (get_prompt_for_continue_wait_time): New function.
7971 * utils.h (reset_prompt_for_continue_wait_time): Declare
7972 (get_prompt_for_continue_wait_time): Declare.
7973 (make_command_stats_cleanup): Moved to maint.h.
7974 (set_display_time, set_display_space): Moved to maint.h and renamed
7975 to set_per_command_time, set_per_command_space.
7976 * cli/cli-setshow.c (parse_cli_boolean_value): Renamed from
7977 parse_binary_operation and made non-static. Don't call error,
7978 just return an error marker. All callers updated.
7979 * cli/cli-setshow.h (parse_cli_boolean_value): Declare.
7980
7981 2013-03-21 Tom Tromey <tromey@redhat.com>
7982
7983 * symfile.c (alloc_section_addr_info): Update header. Don't set
7984 'num_sections' field.
7985 (build_section_addr_info_from_section_table): Set 'num_sections'.
7986 (build_section_addr_info_from_bfd): Likewise.
7987 (build_section_addr_info_from_objfile): Remove dead loop
7988 condition.
7989 (free_section_addr_info): Unconditionally call xfree.
7990 (relative_addr_info_to_section_offsets, addrs_section_sort)
7991 (addr_info_make_relative, syms_from_objfile_1): Remove dead loop
7992 condition.
7993 (syms_from_objfile_1): Remove dead 'if' condition. Check
7994 'num_sections'.
7995 (add_symbol_file_command): Set 'num_sections'.
7996 * symfile-mem.c (symbol_file_add_from_memory): Set
7997 'num_sections'.
7998 * somread.c (som_symfile_offsets): Remove dead loop condition.
7999 * machoread.c (macho_symfile_offsets): Remove dead 'if'.
8000 * jit.c (jit_bfd_try_read_symtab): Set 'num_sections'.
8001
8002 2013-03-21 Tom Tromey <tromey@redhat.com>
8003
8004 * tracepoint.h (decode_agent_options): Add 'trace_string'
8005 argument.
8006 * tracepoint.c (decode_agent_options): Add 'trace_string'
8007 argument.
8008 (validate_actionline): Update.
8009 (collect_symbol): Add 'trace_string' argument.
8010 (struct add_local_symbols_data) <trace_string>: New field.
8011 (do_collect_symbol): Update.
8012 (add_local_symbols): Add 'trace_string' argument.
8013 (encode_actions_1): Update.
8014 (trace_dump_actions): Update.
8015 * dwarf2loc.c (access_memory): Update.
8016 * ax.h (struct agent_expr) <tracing, trace_string>: New fields.
8017 * ax-general.c (new_agent_expr): Update.
8018 * ax-gdb.h (gen_trace_for_expr, gen_trace_for_var)
8019 (gen_trace_for_return_address): Add argument.
8020 (trace_kludge, trace_string_kludge): Remove.
8021 * ax-gdb.c (trace_kludge, trace_string_kludge): Remove.
8022 (gen_traced_pop, gen_fetch, gen_bitfield_ref, gen_expr): Update.
8023 (gen_trace_for_var): Add 'trace_string' argument.
8024 (gen_trace_for_expr, gen_trace_for_return_address): Likewise.
8025 (gen_printf, agent_eval_command_one): Update.
8026
8027 2013-03-21 Tom Tromey <tromey@redhat.com>
8028
8029 PR exp/15109:
8030 * c-exp.y (yylex): Rewrite to push all tokens onto the FIFO.
8031 Handle FILENAME token.
8032
8033 2013-03-21 Tom Tromey <tromey@redhat.com>
8034
8035 * c-exp.y (YYPRINT): Define.
8036 (c_print_token): New function.
8037
8038 2013-03-21 Tom Tromey <tromey@redhat.com>
8039
8040 * c-exp.y (%union) <sym, ivar, ivec>: Remove.
8041
8042 2013-03-21 Yao Qi <yao@codesourcery.com>
8043
8044 * ctf.c: Include "gdb_stat.h".
8045 [USE_WIN32API]: New macro 'mkdir'.
8046 (ctf_start): Use permission bits macros if they are defined.
8047
8048 2013-03-20 Keith Seitz <keiths@redhat.com>
8049
8050 * breakpoint.h (struct breakpoint): Add comment to
8051 extra_string indicating that this member is mallod'd.
8052 * breakpoint.c (base_breakpoint_dtor): Free extra_string.
8053
8054 2013-03-20 Pedro Alves <palves@redhat.com>
8055
8056 PR gdb/15289
8057
8058 * cli/cli-setshow.c (do_set_command)
8059 <var_uinteger, var_zuinteger>: Use LONGEST for variable holding
8060 the result of parsing the command argument. Throw error if the
8061 value is greater than UINT_MAX. Print the invalid value with
8062 plongest.
8063 <var_integer, var_zinteger>: Use LONGEST for variable holding the
8064 result of parsing the command argument. Throw error if the value
8065 is greater than INT_MAX, not greater or equal. Also throw error
8066 if the value is less than INT_MIN. Print the invalid value with
8067 plongest.
8068 <var_zuinteger_unlimited>: Throw error if the value is greater
8069 than INT_MAX, not greater or equal.
8070 (do_show_command) <var_integer, var_zinteger,
8071 var_zuinteger_unlimited>: Use %d for printing int, not %u.
8072
8073 2013-03-20 Tom Tromey <tromey@redhat.com>
8074
8075 * ax-gdb.c (gen_var_ref): Unconditionally call via computed ops,
8076 if possible.
8077 * dwarf2read.c (read_func_scope): Remove old FIXME.
8078 * eval.c (evaluate_subexp_standard): Check SYMBOL_COMPUTED_OPS,
8079 not LOC_COMPUTED.
8080 * findvar.c (symbol_read_needs_frame, default_read_var_value):
8081 Unconditionally call via computed ops, if possible.
8082 * printcmd.c (address_info): Unconditionally call via computed ops,
8083 if possible.
8084 * stack.c (read_frame_arg): Unconditionally call via computed ops,
8085 if possible.
8086 * symtab.c (register_symbol_computed_impl): Sanity check 'ops'.
8087 * tracepoint.c (scope_info): Unconditionally call via computed ops,
8088 if possible.
8089
8090 2013-03-20 Jan Kratochvil <jan.kratochvil@redhat.com>
8091 Tom Tromey <tromey@redhat.com>
8092
8093 PR symtab/8421:
8094 * coffread.c (coff_register_index): New global.
8095 (process_coff_symbol, coff_read_enum_type): Set
8096 SYMBOL_ACLASS_INDEX.
8097 (_initialize_coffread): Initialize new global.
8098 * dwarf2loc.c (locexpr_find_frame_base_location)
8099 (dwarf2_block_frame_base_locexpr_funcs)
8100 (loclist_find_frame_base_location)
8101 (dwarf2_block_frame_base_loclist_funcs): New.
8102 (dwarf_expr_frame_base_1): Call SYMBOL_BLOCK_OPS, remove internal_error.
8103 (dwarf2_locexpr_funcs, dwarf2_loclist_funcs): Add location_has_loclist.
8104 * dwarf2loc.h (dwarf2_block_frame_base_locexpr_funcs)
8105 (dwarf2_block_frame_base_loclist_funcs): New.
8106 * dwarf2read.c (dwarf2_locexpr_index, dwarf2_loclist_index)
8107 (dwarf2_locexpr_block_index, dwarf2_loclist_block_index): New
8108 globals.
8109 (read_func_scope): Update.
8110 (fixup_go_packaging, mark_common_block_symbol_computed)
8111 (var_decode_location, new_symbol_full, dwarf2_const_value):
8112 Set SYMBOL_ACLASS_INDEX.
8113 (dwarf2_symbol_mark_computed): Likewise. Add 'is_block' argument.
8114 (_initialize_dwarf2_read): Initialize new globals.
8115 * jit.c (finalize_symtab): Set SYMBOL_ACLASS_INDEX.
8116 * jv-lang.c (add_class_symbol): Set SYMBOL_ACLASS_INDEX.
8117 * mdebugread.c (mdebug_register_index, mdebug_regparm_index): New
8118 globals.
8119 (parse_symbol, psymtab_to_symtab_1): Set SYMBOL_ACLASS_INDEX.
8120 (_initialize_mdebugread): Initialize new globals.
8121 * psympriv.h (struct partial_symbol) <aclass>: Update comment.
8122 * stabsread.c (patch_block_stabs): Set SYMBOL_ACLASS_INDEX.
8123 (stab_register_index, stab_regparm_index): New globals.
8124 (define_symbol, read_enum_type, common_block_end): Set
8125 SYMBOL_ACLASS_INDEX.
8126 (_initialize_stabsread): Initialize new globals.
8127 * symtab.c (next_aclass_value, symbol_impl, symbol_impls): New
8128 globals.
8129 (MAX_SYMBOL_IMPLS): New define.
8130 (register_symbol_computed_impl, register_symbol_block_impl)
8131 (register_symbol_register_impl)
8132 (initialize_ordinary_address_classes): New functions.
8133 (_initialize_symtab): Call initialize_ordinary_address_classes.
8134 * symtab.h (enum address_class) <LOC_FINAL_VALUE>: New constant.
8135 (struct symbol_impl): New.
8136 (SYMBOL_ACLASS_BITS): New define.
8137 (struct symbol) <aclass, ops>: Remove fields.
8138 <aclass_index>: New field.
8139 (symbol_impls): Declare.
8140 (SYMBOL_CLASS, SYMBOL_COMPUTED_OPS, SYMBOL_REGISTER_OPS): Redefine.
8141 (SYMBOL_IMPL, SYMBOL_ACLASS_INDEX): New defines.
8142 (register_symbol_computed_impl, register_symbol_block_impl)
8143 (register_symbol_register_impl): Declare.
8144 (struct symbol_computed_ops): Add location_has_loclist.
8145 (struct symbol_block_ops): New.
8146 (SYMBOL_BLOCK_OPS): New.
8147 * xcoffread.c (process_xcoff_symbol): Set SYMBOL_ACLASS_INDEX.
8148
8149 2013-03-20 Tom Tromey <tromey@redhat.com>
8150
8151 * psymtab.c (find_pc_sect_psymbol, fixup_psymbol_section)
8152 (print_partial_symbols, recursively_search_psymtabs): Use
8153 PSYMBOL_CLASS.
8154
8155 2013-03-20 Pierre Muller <muller@sourceware.org>
8156
8157 * contrib/ari/gdb_ari.sh (OP eol rule): Also check
8158 addtion, subtraction, multiplication and division binary operator.
8159
8160 2013-03-20 Jan Kratochvil <jan.kratochvil@redhat.com>
8161
8162 Code cleanup.
8163 * bfd-target.c (target_bfd_xclose): Remove parameter quitting.
8164 * bsd-kvm.c (bsd_kvm_close): Likewise.
8165 * bsd-uthread.c (bsd_uthread_close): Likewise.
8166 * corelow.c (core_close): Likewise.
8167 (core_close_cleanup): Remove parameter quitting from a caller.
8168 * event-top.c (async_disconnect): Likewise.
8169 * exec.c (exec_close_1): Remove parameter quitting.
8170 * go32-nat.c (go32_close): Likewise.
8171 * linux-nat.c (linux_nat_close): Remove parameter quitting. Remove
8172 parameter quitting from a caller.
8173 * mips-linux-nat.c (super_close): Remove parameter quitting from the
8174 variable.
8175 (mips_linux_close): Remove parameter quitting. Remove parameter
8176 quitting from a caller.
8177 * monitor.c (monitor_close): Remove parameter quitting.
8178 * monitor.h (monitor_close): Likewise.
8179 * record-btrace.c (record_btrace_close): Likewise.
8180 * record-full.c (record_full_close): Likewise.
8181 * remote-m32r-sdi.c (m32r_close): Remove parameter quitting and remove
8182 it also from fprintf_unfiltered.
8183 * remote-mips.c (mips_close): Remove parameter quitting.
8184 (mips_detach): Remove parameter quitting from a caller.
8185 * remote-sim.c (gdbsim_close): Remove parameter quitting.
8186 (gdbsim_close): Remove duplicate function comment. Remove parameter
8187 quitting and remove it also from printf_filtered.
8188 * remote.c (remote_close): Remove parameter quitting.
8189 * solib-svr4.c (enable_break): Remove parameter quitting from a caller.
8190 * target.c (update_current_target): Remove parameter int from to_close
8191 de_fault.
8192 (push_target, unpush_target, pop_target): Remove parameter quitting from
8193 a caller.
8194 (pop_all_targets_above, pop_all_targets): Remove parameter quitting.
8195 Remove parameter quitting from a caller.
8196 (target_preopen): Remove parameter quitting from a caller.
8197 (target_close): Remove parameter quitting. Remove parameter quitting
8198 from a caller two times. Remove parameter quitting also from
8199 fprintf_unfiltered.
8200 * target.h (struct target_ops): Remove parameter quitting and as int
8201 from fields to_xclose and to_close.
8202 (extern struct target_ops current_target):
8203 (target_close, pop_all_targets): Remove parameter quitting. Update the
8204 comment.
8205 (pop_all_targets_above): Remove parameter quitting.
8206 * top.c (quit_target): Remove parameter quitting from a caller.
8207 * tracepoint.c (tfile_close): Remove parameter quitting.
8208 * windows-nat.c (windows_close): Remove parameter quitting.
8209
8210 2013-03-20 Corinna Vinschen <vinschen@redhat.com>
8211
8212 * windows-nat.c (handle_output_debug_string): Replace call
8213 to string_to_core_addr with call to strtoull.
8214
8215 2013-03-20 Yao Qi <yao@codesourcery.com>
8216
8217 * ctf.c (ctf_save_metadata_header): Define macro HOST_ENDIANNESS
8218 and write it to CTF metadata.
8219
8220 2013-03-19 Corinna Vinschen <vinschen@redhat.com>
8221
8222 * windows-nat.c (handle_output_debug_string): Change type of n to
8223 SIZE_T to avoid crash on 64 bit systems.
8224
8225 2013-03-17 Eli Zaretskii <eliz@gnu.org>
8226
8227 * python/python-internal.h (HAVE_SNPRINTF)
8228 [_WIN32 && HAVE_DECL_SNPRINTF]: Define, to avoid compiler warnings
8229 about redefinition of snprintf by pyerrors.h.
8230
8231 2013-03-15 Steve Ellcey <sellcey@mips.com>
8232
8233 * remote-sim.c (sim_command_completer): Make char arguments const.
8234
8235 2013-03-15 Tom Tromey <tromey@redhat.com>
8236
8237 PR c++/15116:
8238 * gdbtypes.c (types_equal): Handle TYPE_CODE_FUNC.
8239
8240 2013-03-14 Tom Tromey <tromey@redhat.com>
8241
8242 * gdb_bfd.c (struct gdb_bfd_data) <crc_computed, crc>:
8243 New fields.
8244 (get_file_crc): Move from symfile.c.
8245 (gdb_bfd_crc): New function.
8246 * gdb_bfd.h (gdb_bfd_crc): Declare.
8247 * objfiles.h (struct objfile) <crc32, crc32_p>: Remove.
8248 * symfile.c (get_file_crc): Move to gdb_bfd.c.
8249 (separate_debug_file_exists): Use gdb_bfd_crc.
8250
8251 2013-03-14 Tom Tromey <tromey@redhat.com>
8252
8253 * symfile.c (get_debug_link_info): Remove.
8254 (find_separate_debug_file_by_debuglink): Use
8255 bfd_get_debug_link_info.
8256
8257 2013-03-14 Tom Tromey <tromey@redhat.com>
8258
8259 * symtab.c (error_in_psymtab_expansion): New function.
8260 (lookup_symbol_aux_quick)
8261 (basic_lookup_transparent_type_quick): Remove "last resort"
8262 code. Use error_in_psymtab_expansion.
8263
8264 2013-03-14 Doug Evans <dje@google.com>
8265 Jan Kratochvil <jan.kratochvil@redhat.com>
8266
8267 * dwarf2read.c (dw2_map_symtabs_matching_filename): Put continue after
8268 any successful compare_filenames_for_search or FILENAME_CMP.
8269 * psymtab.c (partial_map_symtabs_matching_filename): Likewise.
8270 * symtab.c (iterate_over_some_symtabs): Likewise.
8271
8272 2013-03-14 Jan Kratochvil <jan.kratochvil@redhat.com>
8273
8274 * source.c (print_source_lines_base): Make a local copy of
8275 symtab_to_fullname.
8276
8277 2013-03-14 Hui Zhu <hui_zhu@mentor.com>
8278 Jan Kratochvil <jan.kratochvil@redhat.com>
8279
8280 * source.c (print_source_lines_base): Suppress "file" for TUI.
8281
8282 2013-03-14 Keith Seitz <keiths@redhat.com>
8283 Alan Matsuoka <alanm@redhat.com>
8284
8285 PR c++/15203
8286 PR c++/15210
8287 * cp-namespace.c (cp_lookup_nested_symbol): Handle TYPE_CODE_FUNC and
8288 TYPE_CODE_METHOD.
8289 * elfread.c (elf_symtab_read): Handle BSF_GNU_UNIQUE for certain
8290 symbols.
8291
8292 2013-03-14 Yao Qi <yao@codesourcery.com>
8293
8294 * tracepoint.c (tfile_write_status): Write 'stop_desc' of trace
8295 status to tfile if trace is stopped by command 'tstop'.
8296
8297 2013-03-14 Yao Qi <yao@codesourcery.com>
8298
8299 * tracepoint.c (tfile_write_status): Write trace notes and user
8300 name into tfile if they are not NULL.
8301
8302 2013-03-14 Hui Zhu <hui@codesourcery.com>
8303 Yao Qi <yao@codesourcery.com>
8304
8305 * Makefile.in (REMOTE_OBS): Add ctf.o.
8306 (SFILES): Add ctf.c.
8307 (HFILES_NO_SRCDIR): Add ctf.h.
8308 * ctf.c, ctf.h: New files.
8309 * tracepoint.c: Include 'ctf.h'.
8310 (collect_pseudocommand): Remove static.
8311 (trace_save_command): Parse option "-ctf".
8312 Produce different trace file writers per option.
8313 Adjust output message.
8314 (trace_save_tfile, trace_save_ctf): New.
8315 * tracepoint.h (trace_save_tfile, trace_save_ctf): Declare.
8316 * mi/mi-main.c: Include 'ctf.h'.
8317 (mi_cmd_trace_save): Handle option '-ctf'. Call either
8318 trace_save_tfile or trace_save_ctf.
8319 * NEWS: Mention these changes.
8320
8321 2013-03-14 Yao Qi <yao@codesourcery.com>
8322
8323 * tracepoint.c (trace_file_writer_xfree): New.
8324 (struct tfile_writer_data): New.
8325 (tfile_dtor, tfile_can_target_save, tfile_start): New.
8326 (tfile_write_header, tfile_write_regblock_type): New.
8327 (tfile_write_status, tfile_write_uploaded_tsv): New.
8328 (tfile_write_uploaded_tp, tfile_write_definition_end): New.
8329 (tfile_write_raw_data, (tfile_end): New.
8330 (tfile_write_ops): New global variable.
8331 (TRACE_WRITE_R_BLOCK): New macro.
8332 (TRACE_WRITE_M_BLOCK_HEADER): New macro.
8333 (TRACE_WRITE_M_BLOCK_MEMORY): New macro.
8334 (TRACE_WRITE_V_BLOCK): New macro.
8335 (trace_save): Add extra one parameter WRITER. Make it static.
8336 Use WRITER to writer trace.
8337 (tfile_trace_file_writer_new): New.
8338 (trace_save_command): Caller update.
8339 (trace_save_tfile): Write trace data in TFILE format.
8340 * tracepoint.h (struct trace_frame_write_ops): New.
8341 (struct trace_file_write_ops): New.
8342 (struct trace_file_writer): New.
8343 (trace_save): Remove its declaration.
8344 (trace_save_tfile): Declare it.
8345 * mi/mi-main.c (mi_cmd_trace_save): Call trace_save_tfile
8346 instead of trace_save.
8347
8348 2013-03-13 Pedro Alves <palves@redhat.com>
8349
8350 * hppa-hpux-nat.c (hppa_hpux_save_state_offset): Make static.
8351
8352 2013-03-13 Pedro Alves <palves@redhat.com>
8353
8354 * dbxread.c (read_ofile_symtab, process_one_symbol): Remove
8355 commented out code.
8356 * demangle.c (current_demangling_style_string): Make it const.
8357 (set_demangling_command): Assert the demangling style is known.
8358 Remove all handling of unknown styles. Set
8359 'current_demangling_style_string' to an element of the
8360 demangling_style_names array.
8361 (set_demangling_style): Delete.
8362 (_initialize_demangler): Set current_demangling_style_string to the
8363 element of the demangling_style_names array that corresponds to
8364 the default demangling style. Remove FIXME note. Don't call
8365 set_demangling_style.
8366 * gdb-demangle.h (set_demangling_style): Remove declaration.
8367
8368 2013-03-13 Pedro Alves <palves@redhat.com>
8369
8370 * ada-lang.c (struct add_partial_datum) <text, text0, word>: Make
8371 fields const.
8372 (ada_make_symbol_completion_list): Make "text0" parameter const.
8373 * ax-gdb.c (agent_eval_command_one): Make "exp" parameter const.
8374 * breakpoint.c (condition_completer): Make "text" and "word"
8375 parameters const. Adjust.
8376 (check_tracepoint_command): Adjust to validate_actionline
8377 prototype change.
8378 (catch_syscall_completer): Make "text" and "word" parameters
8379 const.
8380 * cli/cli-cmds.c (show_user): Make "comname" local const.
8381 (valid_command_p): Make "command" parameter const.
8382 (alias_command): Make "alias_prefix" and "command_prefix" locals
8383 const.
8384 * cli/cli-decode.c (add_cmd): Make "name" parameter const.
8385 (add_alias_cmd): Make "name" and "oldname" parameters const.
8386 Adjust. No longer make copy of OLDNAME.
8387 (add_prefix_cmd, add_abbrev_prefix_cmd, add_set_or_show_cmd)
8388 (add_setshow_cmd_full, add_setshow_enum_cmd)
8389 (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
8390 (add_setshow_filename_cmd, add_setshow_string_cmd)
8391 (add_setshow_string_noescape_cmd)
8392 (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
8393 (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
8394 (add_setshow_zuinteger_unlimited_cmd, add_setshow_zuinteger_cmd)
8395 (delete_cmd, add_info, add_info_alias, add_com, add_com_alias):
8396 Make "name" parameter const.
8397 (help_cmd): Rename "command" parameter to "arg". New const local
8398 "command".
8399 (find_cmd): Make "command" parameter const.
8400 (lookup_cmd_1): Make "text" parameter pointer to const. Adjust to
8401 deprecated_cmd_warning prototype change.
8402 (undef_cmd_error): Make "cmdtype" parameter const.
8403 (lookup_cmd): Make "line" parameter const.
8404 (deprecated_cmd_warning): Change type of "text" parameter to
8405 pointer to const char, from pointer to pointer to char. Adjust.
8406 (lookup_cmd_composition): Make "text" parameter const.
8407 (complete_on_cmdlist, complete_on_enum): Make "text" and "word"
8408 parameters const.
8409 * cli/cli-decode.h (struct cmd_list_element) <name>: Make field
8410 const.
8411 * cli/cli-script.c (validate_comname): Make "tem" local const.
8412 (define_command): New const local "tem_c". Use it in calls to
8413 lookup_cmd.
8414 (document_command): Make "tem" and "comfull" locals const.
8415 (show_user_1): Make "prefix" and "name" parameters const.
8416 * cli-script.h (show_user_1): Make "prefix" and "name" parameters
8417 const.
8418 * command.h (add_cmd, add_alias_cmd, add_prefix_cmd)
8419 (add_abbrev_prefix_cmd, completer_ftype, lookup_cmd, lookup_cmd_1)
8420 (deprecated_cmd_warning, lookup_cmd_composition, add_com)
8421 (add_com_alias, add_info, add_info_alias, complete_on_cmdlist)
8422 (complete_on_enum, add_setshow_enum_cmd)
8423 (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
8424 (add_setshow_filename_cmd, add_setshow_string_cmd)
8425 (add_setshow_string_noescape_cmd)
8426 (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
8427 (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
8428 (add_setshow_zuinteger_cmd, add_setshow_zuinteger_unlimited_cmd):
8429 Change prototypes, constifying strings.
8430 * completer.c (noop_completer, filename_completer): Make "text"
8431 and "prefix" parameters const.
8432 (location_completer, expression_completer)
8433 (complete_line_internal): Make "text" and "prefix" parameters
8434 const and adjust.
8435 (command_completer, signal_completer): Make "text" and "prefix"
8436 parameters const.
8437 * completer.h (noop_completer, filename_completer)
8438 (expression_completer, location_completer, command_completer)
8439 (signal_completer): Change prototypes.
8440 * corefile.c (complete_set_gnutarget): Make "text" and "word"
8441 parameters const.
8442 * cp-abi.c (cp_abi_completer): Likewise.
8443 * expression.h (parse_expression_for_completion): Change
8444 prototype.
8445 * f-lang.c (f_make_symbol_completion_list): Make "text" and "word"
8446 parameters const.
8447 * infcmd.c (_initialize_infcmd): Make "cmd_name" local const.
8448 * infrun.c (handle_completer): Make "text" and "word" parameters
8449 const.
8450 * interps.c (interpreter_completer): Make "text" and "word"
8451 parameters const.
8452 * language.h (struct language_defn)
8453 <la_make_symbol_completion_list>: Make "text" and "word"
8454 parameters const.
8455 * parse.c (parse_exp_1): Move const hack to parse_exp_in_context.
8456 (parse_exp_in_context): Rename to ...
8457 (parse_exp_in_context_1): ... this.
8458 (parse_exp_in_context): Reimplement, with const hack from
8459 parse_exp_1.
8460 (parse_expression_for_completion): Make "string" parameter const.
8461 * printcmd.c (decode_format): Make "string_ptr" parameter pointer
8462 to pointer to const char. Adjust.
8463 (print_command_1): Make "exp" parameter const.
8464 (output_command): Rename to ...
8465 (output_command_const): ... this. Make "exp" parameter const.
8466 (output_command): Reimplement.
8467 (x_command): Adjust.
8468 (display_command): Rename "exp" parameter to "arg". New "exp"
8469 local, const version of "arg".
8470 * python/py-auto-load.c (gdbpy_initialize_auto_load): Make
8471 "cmd_name" local const.
8472 * python/py-cmd.c (cmdpy_destroyer): Cast const away in xfree
8473 call.
8474 (cmdpy_completer): Make "text" and "word" parameters const.
8475 (gdbpy_parse_command_name): Make "prefix_text2" local const.
8476 * python/py-param.c (add_setshow_generic): Make "tmp_name" local
8477 const.
8478 * remote.c (_initialize_remote): Make "cmd_name" local const.
8479 * symtab.c (language_search_unquoted_string): Make "text" and "p"
8480 parameters const. Adjust.
8481 (completion_list_add_fields): Make "sym_text", "text" and "word"
8482 parameters const.
8483 (struct add_name_data) <sym_text, text, word>: Make fields const.
8484 (default_make_symbol_completion_list_break_on): Make "text" and
8485 "word" parameters const. Adjust locals.
8486 (default_make_symbol_completion_list)
8487 (make_symbol_completion_list, make_symbol_completion_type)
8488 (make_symbol_completion_list_fn): Make "text" and "word"
8489 parameters const.
8490 (make_file_symbol_completion_list): Make "text", "word" and
8491 "srcfile" parameters const. Adjust locals.
8492 (add_filename_to_list): Make "text" and "word" parameters const.
8493 (struct add_partial_filename_data) <text, word>: Make fields
8494 const.
8495 (make_source_files_completion_list): Make "text" and "word"
8496 parameters const.
8497 * symtab.h (default_make_symbol_completion_list_break_on)
8498 (default_make_symbol_completion_list, make_symbol_completion_list)
8499 (make_symbol_completion_type enum type_code)
8500 (make_symbol_completion_list_fn make_file_symbol_completion_list)
8501 (make_source_files_completion_list): Change prototype.
8502 * top.c (execute_command): Adjust to pass pointer to pointer to
8503 const char to lookup_cmd, and to deprecated_cmd_warning prototype
8504 change.
8505 (set_verbose): Make "cmdname" local const.
8506 * tracepoint.c (decode_agent_options): Make "exp" parameter const,
8507 and adjust.
8508 (validate_actionline): Make "line" parameter a pointer to const
8509 char, and adjust.
8510 (encode_actions_1): Make "action_exp" local const, and adjust.
8511 (encode_actions): Adjust.
8512 (replace_comma): Delete.
8513 (trace_dump_actions): Make "action_exp" and "next_comma" locals
8514 const, and adjust. Don't frob the action string while splitting
8515 it at commas. Instead, make a copy of each split substring in
8516 turn.
8517 (trace_dump_command): Adjust to validate_actionline prototype
8518 change.
8519 * tracepoint.h (decode_agent_options, decode_agent_options)
8520 (encode_actions, validate_actionline): Change prototypes.
8521 * valprint.h (output_command): Delete declaration.
8522 (output_command_const): Declare.
8523 * value.c (function_destroyer): Cast const away in xfree call.
8524
8525 2013-03-13 Pedro Alves <palves@redhat.com>
8526
8527 * ada-lang.c (ada_decode_symbol): Cast away constness of GSYMBOL
8528 rather than casting 'const char * const *' to 'const char **'.
8529 * ada-lex.l (processInt): Make "trailer" local const. Remove
8530 'const char **' cast.
8531 * arm-linux-tdep.c (arm_stap_parse_special_token): Add 'char *'
8532 locals, and use those as strtol output pointer, instead than doing
8533 invalid casts to from 'const char **' to 'char **'.
8534 (_initialize_demangle): Remove cast.
8535 * i386-tdep.c (i386_stap_parse_special_token): : Add 'char *'
8536 locals, and use those as strtol output pointer, instead than doing
8537 invalid casts to from 'const char **' to 'char **'.
8538 * solib-dsbt.c (dsbt_get_initial_loadmaps): Remove 'gdb_byte**'
8539 casts.
8540 * stap-probe.c (stap_parse_register_operand)
8541 (stap_parse_single_operand): Likewise.
8542
8543 2013-03-13 Yao Qi <yao@codesourcery.com>
8544
8545 * tracepoint.c (tfile_get_trace_state_variable_value): Look for
8546 the last matched 'V' blcok in trace frame.
8547
8548 2013-03-12 Joel Brobecker <brobecker@adacore.com>
8549
8550 * NEWS: Create a new section for the next release branch.
8551 Rename the section of the current branch, now that it has
8552 been cut.
8553
8554 2013-03-12 Joel Brobecker <brobecker@adacore.com>
8555
8556 GDB 7.6 branch created (branch timestamp: 2013-03-12 22:15 UTC)
8557 * version.in: Bump version to 7.6.50.20130312-cvs.
8558
8559 2013-03-12 Keith Seitz <keiths@redhat.com>
8560
8561 * mi/mi-cmds.h (mi_execute_command): Make "cmd" const.
8562 * mi/mi-interp.c (mi_interpreter_exec): Make "command" const.
8563 Remove temporary copy of input string.
8564 (mi_execute_command_wrapper): Make "cmd" const.
8565 * mi/mi-main.c (mi_execute_command): Make "string_ptr" const.
8566 * mi/mi-parse.c (mi_parse_argv): Make "args" const.
8567 Use const strings.
8568 (mi_parse): Make "cmd" const.
8569 Use const strings.
8570 * mi/mi-parse.h (mi_parse): Make "cmd" const.
8571
8572 2013-03-12 Keith Seitz <keiths@redhat.com>
8573
8574 * ada-lang.c (ada_read_renaming_var_value): Pass const
8575 pointer to expression string to parse_exp_1.
8576 (create_excep_cond_exprs): Likewise.
8577 * ax-gdb.c (agent_eval_command_one): Likewise.
8578 (maint_agent_printf_command): Likewise.
8579 Constify much of the string handling/parsing.
8580 * breakpoint.c (set_breakpoint_condition): Pass const
8581 pointer to expression string to parse_exp_1.
8582 (update_watchpoint): Likewise.
8583 (parse_cmd_to_aexpr): Constify string handling.
8584 Pass const pointer to parse_exp_1.
8585 (init_breakpoint_sal): Pass const pointer to parse_exp_1.
8586 (find_condition_and_thread): Likewise.
8587 Make TOK const.
8588 (watch_command_1): Make "arg" const.
8589 Constify string handling.
8590 Copy the expression string instead of changing the input
8591 string.
8592 (update_breakpoint_location): Pass const pointer to
8593 parse_exp_1.
8594 * eval.c (parse_and_eval_address): Make "exp" const.
8595 (parse_to_comma_and_eval): Make "expp" const.
8596 (parse_and_eval): Make "exp" const.
8597 * expression.h (parse_expression): Make argument const.
8598 (parse_exp_1): Make first argument const.
8599 * findcmd.c (parse_find_args): Treat "args" as const.
8600 * linespec.c (parse_linespec): Pass const pointer to
8601 linespec_expression_to_pc.
8602 (linespec_expression_to_pc): Make "exp_ptr" const.
8603 * parse.c (parse_exp_1): Make "stringptr" const.
8604 Make a copy of the expression to pass to parse_exp_in_context until
8605 this whole interface can be constified.
8606 (parse_expression): Make "string" const.
8607 * printcmd.c (ui_printf): Treat "arg" as const.
8608 Handle const strings.
8609 * tracepoint.c (validate_actionline): Pass const pointer to
8610 all calls to parse_exp_1.
8611 (encode_actions_1): Likewise.
8612 * value.h (parse_to_comma_and_eval): Make argument const.
8613 (parse_and_eval_address): Likewise.
8614 (parse_and_eval): Likewise.
8615 * varobj.c (varobj_create): Pass const pointer to parse_exp_1.
8616 (varobj_set_value): Likewise.
8617 * cli/cli-cmds.c (disassemble_command): Treat "arg" as const and
8618 constify string handling.
8619 Pass const pointers to parse_and_eval_address and
8620 parse_to_comman_and_eval.
8621 * cli/cli-utils.c (skip_to_space): Rename to ...
8622 (skip_to_space_const): ... this. Handle const strings.
8623 * cli/cli-utils.h (skip_to_space): Turn into macro which invokes
8624 skip_to_space_const.
8625 (skip_to_space_const): Declare.
8626 * common/format.c (parse_format_string): Make "arg" const.
8627 Handle const strings.
8628 * common/format.h (parse_format_string): Make "arg" const.
8629 * gdbserver/ax.c (ax_printf): Make "format" const.
8630 * python/python.c (gdbpy_parse_and_eval): Do not make a copy
8631 of the expression string.
8632
8633 2013-03-12 Hui Zhu <hui@codesourcery.com>
8634
8635 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Update error message.
8636
8637 2013-03-12 Yao Qi <yao@codesourcery.com>
8638 Hui Zhu <hui@codesourcery.com>
8639
8640 * dwarf2loc.c (access_memory): Change nbits to nbytes in gdb_assert.
8641 (dwarf2_compile_expr_to_ax): Call access_memory in DW_OP_deref and
8642 DW_OP_deref_size.
8643
8644 2013-03-12 Paul Hilfinger <hilfingr@adacore.com>
8645
8646 * ada-lex.l (rules): Only recognize 'thread' as a
8647 delimiter when followed by numerals, as for c-exp.y.
8648 Use new rewind_to_char function to rewind the input for
8649 expression-delimiting tokens.
8650 (rewind_to_char): New function.
8651
8652 2013-03-11 Pedro Alves <palves@redhat.com>
8653 Jan Kratochvil <jan.kratochvil@redhat.com>
8654
8655 * configure: Regenerate.
8656 * configure.ac (check dynamic export flag): Link python test with
8657 $PYTHON_LIBS.
8658
8659 2013-03-11 Doug Evans <dje@google.com>
8660 Keith Seitz <keiths@redhat.com>
8661
8662 * linespec.c (find_linespec_symbols): Call find_function_symbols
8663 first, and then call lookup_prefix_sym/find_method.
8664
8665 2013-03-11 Pedro Alves <palves@redhat.com>
8666
8667 * charset.c (convert_between_encodings): Don't cast between
8668 different pointer to pointer types. Instead, make the 'inp' local
8669 be of the type iconv expects.
8670 (wchar_iterate): Don't cast between different pointer to pointer
8671 types. Instead, use new pointer local of the type iconv expects.
8672 * target.c (target_read_stralloc, target_fileio_read_stralloc):
8673 Add new local of type char pointer, and use it to get a
8674 char/string view of the byte buffer, instead of casting between
8675 pointer to pointer types.
8676
8677 2013-03-11 Hafiz Abid Qadeer <abidh@codesourcery.com>
8678
8679 * remote.c (remote_set_trace_buffer_size): Move != operator
8680 to the start of next line to fix an ARI warning.
8681
8682 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8683
8684 * NEWS: Add record changes.
8685
8686 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8687
8688 * record-btrace.c (btrace_insn_history): Omit the pc prefix in
8689 the instruction history disassembly.
8690 * disasm.c (dump_insns): Omit the pc prefix, if requested.
8691 * disasm.h (DISASSEMBLY_OMIT_PC): New.
8692
8693 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8694
8695 * Makefile.in (SFILES): Add record-btrace.c
8696 (COMMON_OBS): Add record-btrace.o
8697 * record-btrace.c: New.
8698 * objfiles.c: Include btrace.h.
8699 (free_objfile): call btrace_free_objfile.
8700
8701 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8702
8703 * target.c (target_call_history, target_call_history_from,
8704 target_call_history_range): New.
8705 * target.h (target_ops) <to_call_history, to_call_history_from,
8706 to_call_history_range>: New fields.
8707 (target_call_history, target_call_history_from,
8708 target_call_history_range): New declaration.
8709 * record.c (get_call_history_modifiers, cmd_record_call_history,
8710 record_call_history_size): New.
8711 (_initialize_record): Add the "record function-call-history" command.
8712 Add "set/show record function-call-history-size" commands.
8713 * record.h (record_print_flag): New.
8714
8715 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8716
8717 * target.h (target_ops) <to_insn_history, to_insn_history_from,
8718 to_insn_history_range>: New fields.
8719 (target_insn_history): New.
8720 (target_insn_history_from): New.
8721 (target_insn_history_range): New.
8722 * target.c (target_insn_history): New.
8723 (target_insn_history_from): New.
8724 (target_insn_history_range): New.
8725 * record.c: Include cli/cli-utils.h, disasm.h, ctype.h.
8726 (record_insn_history_size): New.
8727 (get_insn_number): New.
8728 (get_context_size): New.
8729 (no_chunk): New.
8730 (get_insn_history_modifiers): New.
8731 (cmd_record_insn_history): New.
8732 (_initialize_record): Add "set/show record instruction-history-size"
8733 command. Add "record instruction-history" command.
8734
8735 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8736
8737 * record.h (record_disconnect): New.
8738 (record_detach): New.
8739 (record_mourn_inferior): New.
8740 (record_kill): New.
8741 * record-full.c (record_disconnect, record_detach,
8742 record_mourn_inferior, record_kill): Move to...
8743 * record.c: ...here.
8744 (DEBUG): New.
8745 (record_stop): New.
8746 (record_unpush): New.
8747 (cmd_record_stop): Call record_stop. Replace unpush_target
8748 call with record_unpush call.
8749 (record_disconnect, record_detach): Assert that the target
8750 is of record stratum. Call record_unpush, record_stop, and
8751 DEBUG.
8752 (record_mourn_inferior, record_kill): Assert that the target
8753 is of record stratum. Call record_unpush and DEBUG.
8754
8755 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8756
8757 * record-full.h, record-full.c (record_memory_query): Rename
8758 to ...
8759 (record_full_memory_query): ...this. Update all users.
8760 (record_arch_list_add_reg): Rename to ...
8761 (record_full_arch_list_add_reg): ...this. Update all users.
8762 (record_arch_list_add_mem): Rename to ...
8763 (record_full_arch_list_add_mem): ...this. Update all users.
8764 (record_arch_list_add_end): Rename to ...
8765 (record_full_arch_list_add_end): ...this. Update all users.
8766 (record_gdb_operation_disable_set): Rename to ...
8767 (record_full_gdb_operation_disable_set): ...this.
8768 Update all users.
8769
8770 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8771
8772 * record-full.c (DEFAULT_RECORD_INSN_MAX_NUM): Renamed to ...
8773 (DEFAULT_RECORD_FULL_INSN_MAX_NUM): ... this. Updated all users.
8774 (RECORD_IS_REPLAY): Renamed to ...
8775 (RECORD_FULL_IS_REPLAY): ... this. Updated all users.
8776 (RECORD_FILE_MAGIC): Renamed to ...
8777 (RECORD_FULL_FILE_MAGIC): ... this. Updated all users.
8778 (record_mem_entry): Renamed to ...
8779 (record_full_mem_entry): ... this. Updated all users.
8780 (record_reg_entry): Renamed to ...
8781 (record_full_reg_entry): ... this. Updated all users.
8782 (record_end_entry): Renamed to ...
8783 (record_full_end_entry): ... this. Updated all users.
8784 (record_type) <record_end, record_reg, record_mem>: Renamed
8785 to ...
8786 (record_full_type) <record_full_end, record_full_reg,
8787 record_full_mem>: ... this. Updated all users.
8788 (record_entry): Renamed to ...
8789 (record_full_entry): ... this. Updated all users.
8790 (record_core_buf_entry): Renamed to ...
8791 (record_full_core_buf_entry): ... this. Updated all users.
8792 (record_core_regbuf): Renamed to ...
8793 (record_full_core_regbuf): ... this. Updated all users.
8794 (record_core_start): Renamed to ...
8795 (record_full_core_start): ... this. Updated all users.
8796 (record_core_end): Renamed to ...
8797 (record_full_core_end): ... this. Updated all users.
8798 (record_core_buf_list): Renamed to ...
8799 (record_full_core_buf_list): ... this. Updated all users.
8800 (record_first): Renamed to ...
8801 (record_full_first): ... this. Updated all users.
8802 (record_list): Renamed to ...
8803 (record_full_list): ... this. Updated all users.
8804 (record_arch_list_head): Renamed to ...
8805 (record_full_arch_list_head): ... this. Updated all users.
8806 (record_arch_list_tail): Renamed to ...
8807 (record_full_arch_list_tail): ... this. Updated all users.
8808 (record_stop_at_limit): Renamed to ...
8809 (record_full_stop_at_limit): ... this. Updated all users.
8810 (record_insn_max_num): Renamed to ...
8811 (record_full_insn_max_num): ... this. Updated all users.
8812 (record_insn_num): Renamed to ...
8813 (record_full_insn_num): ... this. Updated all users.
8814 (record_insn_count): Renamed to ...
8815 (record_full_insn_count): ... this. Updated all users.
8816 (record_ops): Renamed to ...
8817 (record_full_ops): ... this. Updated all users.
8818 (record_core_ops): Renamed to ...
8819 (record_full_core_ops): ... this. Updated all users.
8820 (set_record_cmdlist): Renamed to ...
8821 (set_record_full_cmdlist): ... this. Updated all users.
8822 (show_record_cmdlist): Renamed to ...
8823 (show_record_full_cmdlist): ... this. Updated all users.
8824 (record_cmdlist): Renamed to ...
8825 (record_full_cmdlist): ... this. Updated all users.
8826 (record_beneath_to_resume_ops): Renamed to ...
8827 (record_full_beneath_to_resume_ops): ... this. Updated all users.
8828 (record_beneath_to_resume): Renamed to ...
8829 (record_full_beneath_to_resume): ... this. Updated all users.
8830 (record_beneath_to_wait_ops): Renamed to ...
8831 (record_full_beneath_to_wait_ops): ... this. Updated all users.
8832 (record_beneath_to_wait): Renamed to ...
8833 (record_full_beneath_to_wait): ... this. Updated all users.
8834 (record_beneath_to_store_registers_ops): Renamed to ...
8835 (record_full_beneath_to_store_registers_ops): ... this.
8836 Updated all users.
8837 (record_beneath_to_store_registers): Renamed to ...
8838 (record_full_beneath_to_store_registers): ... this.
8839 Updated all users.
8840 (record_beneath_to_xfer_partial_ops): Renamed to ...
8841 (record_full_beneath_to_xfer_partial_ops): ... this.
8842 Updated all users.
8843 (record_beneath_to_xfer_partial): Renamed to ...
8844 (record_full_beneath_to_xfer_partial): ... this.
8845 Updated all users.
8846 (record_beneath_to_insert_breakpoint): Renamed to ...
8847 (record_full_beneath_to_insert_breakpoint): ... this.
8848 Updated all users.
8849 (record_beneath_to_stopped_by_watchpoint): Renamed to ...
8850 (record_full_beneath_to_stopped_by_watchpoint): ... this.
8851 Updated all users.
8852 (record_beneath_to_stopped_data_address): Renamed to ...
8853 (record_full_beneath_to_stopped_data_address): ... this.
8854 Updated all users.
8855 (record_beneath_to_async): Renamed to ...
8856 (record_full_beneath_to_async): ... this. Updated all users.
8857 (record_goto_insn): Renamed to ...
8858 (record_full_goto_insn): ... this. Updated all users.
8859 (record_save): Renamed to ...
8860 (record_full_save): ... this. Updated all users.
8861 (record_reg_alloc): Renamed to ...
8862 (record_full_reg_alloc): ... this. Updated all users.
8863 (record_reg_release): Renamed to ...
8864 (record_full_reg_release): ... this. Updated all users.
8865 (record_mem_alloc): Renamed to ...
8866 (record_full_mem_alloc): ... this. Updated all users.
8867 (record_mem_release): Renamed to ...
8868 (record_full_mem_release): ... this. Updated all users.
8869 (record_end_alloc): Renamed to ...
8870 (record_full_end_alloc): ... this. Updated all users.
8871 (record_end_release): Renamed to ...
8872 (record_full_end_release): ... this. Updated all users.
8873 (record_entry_release): Renamed to ...
8874 (record_full_entry_release): ... this. Updated all users.
8875 (record_list_release): Renamed to ...
8876 (record_full_list_release): ... this. Updated all users.
8877 (record_list_release_following): Renamed to ...
8878 (record_full_list_release_following): ... this.
8879 Updated all users.
8880 (record_list_release_first): Renamed to ...
8881 (record_full_list_release_first): ... this. Updated all users.
8882 (record_arch_list_add): Renamed to ...
8883 (record_full_arch_list_add): ... this. Updated all users.
8884 (record_get_loc): Renamed to ...
8885 (record_full_get_loc): ... this. Updated all users.
8886 (record_check_insn_num): Renamed to ...
8887 (record_full_check_insn_num): ... this. Updated all users.
8888 (record_arch_list_cleanups): Renamed to ...
8889 (record_full_arch_list_cleanups): ... this. Updated all users.
8890 (record_message): Renamed to ...
8891 (record_full_message): ... this. Updated all users.
8892 (record_message_wrapper): Renamed to ...
8893 (record_full_message_wrapper): ... this. Updated all users.
8894 (record_message_wrapper_safe): Renamed to ...
8895 (record_full_message_wrapper_safe): ... this. Updated all users.
8896 (record_gdb_operation_disable): Renamed to ...
8897 (record_full_gdb_operation_disable): ... this. Updated all users.
8898 (record_hw_watchpoint): Renamed to ...
8899 (record_full_hw_watchpoint): ... this. Updated all users.
8900 (record_exec_insn): Renamed to ...
8901 (record_full_exec_insn): ... this. Updated all users.
8902 (record_restore): Renamed to ...
8903 (record_full_restore): ... this. Updated all users.
8904 (record_async_inferior_event_token): Renamed to ...
8905 (record_full_async_inferior_event_token): ... this.
8906 Updated all users.
8907 (record_async_inferior_event_handler): Renamed to ...
8908 (record_full_async_inferior_event_handler): ... this.
8909 Updated all users.
8910 (record_core_open_1): Renamed to ...
8911 (record_full_core_open_1): ... this. Updated all users.
8912 (record_open_1): Renamed to ...
8913 (record_full_open_1): ... this. Updated all users.
8914 (record_open): Renamed to ...
8915 (record_full_open): ... this. Updated all users.
8916 (record_close): Renamed to ...
8917 (record_full_close): ... this. Updated all users.
8918 (record_resume_step): Renamed to ...
8919 (record_full_resume_step): ... this. Updated all users.
8920 (record_resumed): Renamed to ...
8921 (record_full_resumed): ... this. Updated all users.
8922 (record_execution_dir): Renamed to ...
8923 (record_full_execution_dir): ... this. Updated all users.
8924 (record_resume): Renamed to ...
8925 (record_full_resume): ... this. Updated all users.
8926 (record_get_sig): Renamed to ...
8927 (record_full_get_sig): ... this. Updated all users.
8928 (record_sig_handler): Renamed to ...
8929 (record_full_sig_handler): ... this. Updated all users.
8930 (record_wait_cleanups): Renamed to ...
8931 (record_full_wait_cleanups): ... this. Updated all users.
8932 (record_wait_1): Renamed to ...
8933 (record_full_wait_1): ... this. Updated all users.
8934 (record_wait): Renamed to ...
8935 (record_full_wait): ... this. Updated all users.
8936 (record_stopped_by_watchpoint): Renamed to ...
8937 (record_full_stopped_by_watchpoint): ... this. Updated all users.
8938 (record_disconnect): Renamed to ...
8939 (record_full_disconnect): ... this. Updated all users.
8940 (record_detach): Renamed to ...
8941 (record_full_detach): ... this. Updated all users.
8942 (record_mourn_inferior): Renamed to ...
8943 (record_full_mourn_inferior): ... this. Updated all users.
8944 (record_kill): Renamed to ...
8945 (record_full_kill): ... this. Updated all users.
8946 (record_stopped_data_address): Renamed to ...
8947 (record_full_stopped_data_address): ... this. Updated all users.
8948 (record_registers_change): Renamed to ...
8949 (record_full_registers_change): ... this. Updated all users.
8950 (record_store_registers): Renamed to ...
8951 (record_full_store_registers): ... this. Updated all users.
8952 (record_xfer_partial): Renamed to ...
8953 (record_full_xfer_partial): ... this. Updated all users.
8954 (record_breakpoint): Renamed to ...
8955 (record_full_breakpoint): ... this. Updated all users.
8956 (record_breakpoint_p): Renamed to ...
8957 (record_full_breakpoint_p): ... this. Updated all users.
8958 (record_breakpoints): Renamed to ...
8959 (record_full_breakpoints): ... this. Updated all users.
8960 (record_sync_record_breakpoints): Renamed to ...
8961 (record_full_sync_record_breakpoints): ... this.
8962 Updated all users.
8963 (record_init_record_breakpoints): Renamed to ...
8964 (record_full_init_record_breakpoints): ... this.
8965 Updated all users.
8966 (record_insert_breakpoint): Renamed to ...
8967 (record_full_insert_breakpoint): ... this. Updated all users.
8968 (record_remove_breakpoint): Renamed to ...
8969 (record_full_remove_breakpoint): ... this. Updated all users.
8970 (record_can_execute_reverse): Renamed to ...
8971 (record_full_can_execute_reverse): ... this. Updated all users.
8972 (record_get_bookmark): Renamed to ...
8973 (record_full_get_bookmark): ... this. Updated all users.
8974 (record_goto_bookmark): Renamed to ...
8975 (record_full_goto_bookmark): ... this. Updated all users.
8976 (record_async): Renamed to ...
8977 (record_full_async): ... this. Updated all users.
8978 (record_can_async_p): Renamed to ...
8979 (record_full_can_async_p): ... this. Updated all users.
8980 (record_is_async_p): Renamed to ...
8981 (record_full_is_async_p): ... this. Updated all users.
8982 (record_execution_direction): Renamed to ...
8983 (record_full_execution_direction): ... this. Updated all users.
8984 (record_info): Renamed to ...
8985 (record_full_info): ... this. Updated all users.
8986 (record_delete): Renamed to ...
8987 (record_full_delete): ... this. Updated all users.
8988 (record_is_replaying): Renamed to ...
8989 (record_full_is_replaying): ... this. Updated all users.
8990 (record_goto_entry): Renamed to ...
8991 (record_full_goto_entry): ... this. Updated all users.
8992 (record_goto_begin): Renamed to ...
8993 (record_full_goto_begin): ... this. Updated all users.
8994 (record_goto_end): Renamed to ...
8995 (record_full_goto_end): ... this. Updated all users.
8996 (record_goto): Renamed to ...
8997 (record_full_goto): ... this. Updated all users.
8998 (init_record_ops): Renamed to ...
8999 (init_record_full_ops): ... this. Updated all users.
9000 (record_core_resume): Renamed to ...
9001 (record_full_core_resume): ... this. Updated all users.
9002 (record_core_kill): Renamed to ...
9003 (record_full_core_kill): ... this. Updated all users.
9004 (record_core_fetch_registers): Renamed to ...
9005 (record_full_core_fetch_registers): ... this. Updated all users.
9006 (record_core_prepare_to_store): Renamed to ...
9007 (record_full_core_prepare_to_store): ... this. Updated all users.
9008 (record_core_store_registers): Renamed to ...
9009 (record_full_core_store_registers): ... this. Updated all users.
9010 (record_core_xfer_partial): Renamed to ...
9011 (record_full_core_xfer_partial): ... this. Updated all users.
9012 (record_core_insert_breakpoint): Renamed to ...
9013 (record_full_core_insert_breakpoint): ... this. Updated all users.
9014 (record_core_remove_breakpoint): Renamed to ...
9015 (record_full_core_remove_breakpoint): ... this. Updated all users.
9016 (record_core_has_execution): Renamed to ...
9017 (record_full_core_has_execution): ... this. Updated all users.
9018 (init_record_core_ops): Renamed to ...
9019 (init_record_full_core_ops): ... this. Updated all users.
9020 (cmd_record_restore): Renamed to ...
9021 (cmd_record_full_restore): ... this. Updated all users.
9022 (record_save_cleanups): Renamed to ...
9023 (record_full_save_cleanups): ... this. Updated all users.
9024 (cmd_record_start): Renamed to ...
9025 (cmd_record_full_start): ... this. Updated all users.
9026 (set_record_insn_max_num): Renamed to ...
9027 (set_record_full_insn_max_num): ... this. Updated all users.
9028 (set_record_command): Renamed to ...
9029 (set_record_full_command): ... this. Updated all users.
9030 (show_record_command): Renamed to ...
9031 (show_record_full_command): ... this. Updated all users.
9032 (_initialize_record): Renamed to ...
9033 (_initialize_record_full): ... this. Updated all users.
9034
9035 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
9036
9037 * record.h: Split into this and ...
9038 * record-full.h: ... this.
9039 * record.c: Split into this and ...
9040 * record-full.c: ... this.
9041 * target.h (target_ops): Add new fields to_info_record,
9042 to_save_record, to_delete_record, to_record_is_replaying,
9043 to_goto_record_begin, to_goto_record_end, to_goto_record.
9044 (target_info_record): New.
9045 (target_save_record): New.
9046 (target_supports_delete_record): New.
9047 (target_delete_record): New.
9048 (target_record_is_replaying): New.
9049 (target_goto_record_begin): New.
9050 (target_goto_record_end): New.
9051 (target_goto_record): New.
9052 * target.c (target_info_record): New.
9053 (target_save_record): New.
9054 (target_supports_delete_record): New.
9055 (target_delete_record): New.
9056 (target_record_is_replaying): New.
9057 (target_goto_record_begin): New.
9058 (target_goto_record_end): New.
9059 (target_goto_record): New.
9060 * record.h: Declare struct cmd_list_element.
9061 (record_cmdlist): New declaration.
9062 (set_record_cmdlist): New declaration.
9063 (show_record_cmdlist): New declaration.
9064 (info_record_cmdlist): New declaration.
9065 (cmd_record_goto): New declaration.
9066 * record.c: Remove unnecessary includes.
9067 Include inferior.h.
9068 (cmd_record_goto): Remove declaration.
9069 (record_cmdlist): Now extern. Initialize.
9070 (set_record_cmdlist): Now extern. Initialize.
9071 (show_record_cmdlist): Now extern. Initialize.
9072 (info_record_cmdlist): Now extern. Initialize.
9073 (find_record_target): New.
9074 (require_record_target): New.
9075 (cmd_record_start): Update.
9076 (cmd_record_delete): Remove target-specific code.
9077 Call target_delete_record.
9078 (cmd_record_stop): Unpush any record target.
9079 (set_record_insn_max_num): Move to record-full.c
9080 (set_record_command): Add comment.
9081 (show_record_command): Add comment.
9082 (info_record_command): Update comment.
9083 Remove target-specific code.
9084 Call the record target's to_info_record.
9085 (cmd_record_start): New.
9086 (cmd_record_goto): Now extern.
9087 Remove target-specific code.
9088 Call target_goto_begin, target_goto_end, or target_goto.
9089 (_initialize_record): Move record target ops initialization to
9090 record-full.c.
9091 Change "record" command help text.
9092 Move "record restore", "record set", and "record show" commands to
9093 record-full.c.
9094 * Makefile.in (SFILES): Add record-full.c.
9095 (HFILES_NO_SRCDIR): Add record-full.h.
9096 (COMMON_OBS): Add record-full.o.
9097 * amd64-linux-tdep.c: Include record-full.h instead of record.h.
9098 * arm-tdep.c: Include record-full.h.
9099 * i386-linux-tdep.c: Include record-full.h instead of record.h.
9100 * i386-tdep.c: Include record-full.h.
9101 * infrun.c: Include record-full.h.
9102 * linux-record.c: Include record-full.h.
9103 * moxie-tdep.c: Include record-full.h.
9104 * record-full.c: Include record-full.h.
9105 Change module comment.
9106 (set_record_full_cmdlist): New.
9107 (show_record_full_cmdlist): New.
9108 (record_full_cmdlist): New.
9109 (record_goto_insn): New declaration.
9110 (record_save): New declaration.
9111 (record_check_insn_num): Change query string.
9112 (record_info): New.
9113 (record_delete): New.
9114 (record_is_replaying): New.
9115 (record_goto_entry): New.
9116 (record_goto_begin): New.
9117 (record_goto_end): New.
9118 (record_goto): New.
9119 (init_record_ops): Update.
9120 (init_record_core_ops): Update.
9121 (cmd_record_save): Rename to record_save. Remove target and arg checks.
9122 (cmd_record_start): New.
9123 (set_record_insn_max_num): Moved from record.c
9124 (set_record_full_command): New.
9125 (show_record_full_command): New.
9126 (_initialize_record_full): New.
9127
9128 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
9129
9130 * target.h (add_deprecated_target_alias): New.
9131 * target.c (add_deprecated_target_alias): New.
9132
9133 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
9134
9135 * common/linux-btrace.c: Include sys/ptrace, sys/types, sys/wait.h,
9136 and signal.h.
9137 (linux_supports_btrace): Add kernel and
9138 cpuid check.
9139 (kernel_supports_btrace): New function.
9140 (cpu_supports_btrace): New function.
9141 (intel_supports_btrace): New function.
9142
9143 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
9144
9145 * target.h (enum target_object): Add TARGET_OBJECT_BTRACE.
9146 * remote.c: Include btrace.h.
9147 (struct btrace_target_info): New struct.
9148 (remote_supports_btrace): New function.
9149 (send_Qbtrace): New function.
9150 (remote_enable_btrace): New function.
9151 (remote_disable_btrace): New function.
9152 (remote_teardown_btrace): New function.
9153 (remote_read_btrace): New function.
9154 (init_remote_ops): Add btrace ops.
9155 (enum <unnamed>): Add btrace packets.
9156 (struct protocol_feature remote_protocol_features[]): Add btrace packets.
9157 (_initialize_remote): Add packet configuration for branch tracing.
9158
9159 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
9160
9161 * features/btrace.dtd: New file.
9162 * Makefile.in (XMLFILES): Add btrace.dtd.
9163 * btrace.h (parse_xml_btrace): New declaration.
9164 * btrace.c: Include xml-support.h.
9165 (parse_xml_btrace): New function.
9166 (parse_xml_btrace_block): New function.
9167 (block_attributes): New struct.
9168 (btrace_attributes): New struct.
9169 (btrace_children): New struct.
9170 (btrace_elements): New struct.
9171
9172 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
9173
9174 * amd64-linux-nat.c: Include btrace.h and linux-btrace.h.
9175 (amd64_linux_enable_btrace): New.
9176 (amd64_linux_disable_btrace): New.
9177 (amd64_linux_teardown_btrace): New.
9178 (_initialize_amd64_linux_nat): Initialize btrace ops.
9179 * i386-linux.nat.c: Include btrace.h and linux-btrace.h.
9180 (i386_linux_enable_btrace): New.
9181 (i386_linux_disable_btrace): New.
9182 (i386_linux_teardown_btrace): New.
9183 (_initialize_i386_linux_nat): Initialize btrace ops.
9184 * config/i386/linux.mh: Add linux-btrace.o.
9185 * config/i386/linux64.mh: Add linux-btrace.o.
9186
9187 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
9188
9189 * common/linux_btrace.h: New file.
9190 * common/linux_btrace.c: New file.
9191 * Makefile.in (SFILES): Add btrace.c.
9192 (HFILES_NO_SRCDIR): Add common/linux-btrace.h.
9193 (COMMON_OBS): Add btrace.o.
9194 (linux-btrace.o): New rule.
9195
9196 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
9197
9198 * target.h: Include btrace.h.
9199 (struct target_ops) <to_supports_btrace, to_enable_btrace,
9200 to_disable_btrace, to_teardown_btrace, to_read_btrace>: New.
9201 * target.c (target_supports_btrace): New function.
9202 (target_enable_btrace): New function.
9203 (target_disable_btrace): New function.
9204 (target_teardown_btrace): New function.
9205 (target_read_btrace): New function.
9206 * btrace.h: New file.
9207 * btrace.c: New file.
9208 * Makefile.in: Add btrace.c.
9209 * gdbthread.h: Include btrace.h.
9210 (struct thread_info): Add btrace field.
9211 * thread.c: Include btrace.h.
9212 (clear_thread_inferior_resources): Call target_teardown_btrace.
9213 * common/btrace-common.h: New file.
9214
9215 2013-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
9216
9217 * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Call also kill
9218 for CHILD, ignore PTRACE_KILL errors, move the inner block variable
9219 kill_status to outer block.
9220
9221 2013-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
9222
9223 Fix entry-values if the callee called a noreturn function.
9224 * dwarf2-frame-tailcall.c (dwarf2_tailcall_sniffer_first): Use
9225 get_frame_address_in_block. Add new comment.
9226
9227 2013-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
9228
9229 Fix entry-values in C++ across CUs.
9230 * dwarf2loc.c (call_site_to_target_addr) <FIELD_LOC_KIND_PHYSNAME>: Use
9231 lookup_minimal_symbol. Add a comment.
9232 * dwarf2read.c
9233 (read_call_site_scope) <is_ref_attr> <die_is_declaration>: Prefer
9234 DW_AT_linkage_name.
9235
9236 2013-03-08 Yao Qi <yao@codesourcery.com>
9237
9238 * tracepoint.c (_initialize_tracepoint): Indent the code.
9239
9240 2013-03-08 Pedro Alves <palves@redhat.com>
9241
9242 * findcmd.c (put_bits): Change type of parameter to 'gdb_byte *'.
9243 (parse_find_args, find_command): Change type of pattern buffer
9244 locals to 'gdb_byte *'.
9245
9246 2013-03-08 Stan Shebs <stan@codesourcery.com>
9247 Hafiz Abid Qadeer <abidh@codesourcery.com>
9248
9249 * NEWS: Mention set and show trace-buffer-size commands.
9250 Mention new packet.
9251 * target.h (struct target_ops): New method
9252 to_set_trace_buffer_size.
9253 (target_set_trace_buffer_size): New macro.
9254 * target.c (update_current_target): Set up new method.
9255 * tracepoint.c (trace_buffer_size): New global.
9256 (start_tracing): Send it to the target.
9257 (set_trace_buffer_size): New function.
9258 (_initialize_tracepoint): Add new setshow for trace-buffer-size.
9259 * remote.c (remote_set_trace_buffer_size): New function.
9260 (_initialize_remote): Use it.
9261 (QTBuffer:size) New remote command.
9262 (PACKET_QTBuffer_size): New enum.
9263 (remote_protocol_features): Add an entry for
9264 PACKET_QTBuffer_size.
9265
9266 2013-03-08 Tom Tromey <tromey@redhat.com>
9267
9268 * remote-m32r-sdi.c (m32r_load): Call skip_spaces on correct
9269 variable.
9270
9271 2013-03-07 Pedro Alves <palves@redhat.com>
9272
9273 * target.c (target_read_stralloc, target_fileio_read_alloc):
9274 *Cast pointer to 'gdb_byte *' in target call.
9275
9276 2013-03-07 Pedro Alves <palves@redhat.com>
9277
9278 * corefile.c (read_memory_string): Cast pointer to gdb_byte* in
9279 call.
9280
9281 2013-03-07 Keith Seitz <keiths@redhat.com>
9282
9283 * breakpoint.c (catch_syscall_split_args): Use skip_spaces.
9284 (trace_pass_command): Likewise.
9285 * cli/cli-cmds.c: Include cli/cli-utils.h.
9286 (source_command): Use skip-spaces.
9287 (disassemble_command): Likewise.
9288 * findcmd.c: Include cli/cli-utils.h.
9289 (parse_find_args): Use skip_spaces.
9290 * go32-nat.c: Include cli/cli-utils.h.
9291 (go32_sldt): Use skip_spaces.
9292 (go32_sgdt): Likewise.
9293 (go32_sidt): Likewise.
9294 (go32_pde): Likewise.
9295 (go32_pte): Likewise.
9296 (go32_pte_for_address): Likewise.
9297 * infcmd.c: Include cli/cli-utils.h.
9298 (registers_info): Use skip_spaces.
9299 * linux-tdep.c (read_mapping): Use skip_spaces_const.
9300 (linux_info_proc): Likewise.
9301 * linux-thread-db.c: Include cli/cli-utils.h.
9302 (info_auto_load_libthread_db): Use skip_spaces_const.
9303 * m32r-rom.c: Include cli/cli-utils.h.
9304 (m32r_upload_command): Use skip_spaces.
9305 * maint.c: Include cli/cli-utils.h.
9306 (maintenance_translate_address): Use skip_spaces.
9307 * mi/mi-parse.c: Include cli/cli-utils.h.
9308 (mi_parse_argv): Use skip_spaces.
9309 (mi_parse): Likewise.
9310 * minsyms.c: Include cli/cli-utils.h.
9311 (msymbol_hash_iw): Use skip_spaces_const.
9312 * objc-lang.c: Include cli/cli-utils.h.
9313 (parse_selector): Use skip_spaces.
9314 (parse_method): Likewise.
9315 * python/python.c: Include cli/cli-utils.h.
9316 (python_interactive_command)[HAVE_PYTHON]: Use skip_spaces.
9317 (python_command)[HAVE_PYTHON]: Likewise.
9318 (python_interactive_command)[!HAVE_PYTHON]: Likewise.
9319 * remote-m32r-sdi.c: Include cli/cli-utils.h.
9320 (m32r_load): Use skip_spaces.
9321 * serial.c: Include cli/cli-utils.h.
9322 (serial_open): Use skip_spaces_const.
9323 * stack.c: Include cli/cli-utils.h.
9324 (parse_frame_specification_1): Use skip_spaces_const.
9325 * symfile.c: Include cli/cli-utils.h.
9326 (set_ext_lang_command): Use skip_spaces.
9327 * symtab.c: Include cli/cli-utils.h.
9328 (rbreak_command): Use skip_spaces.
9329 * thread.c (thread_name_command): Use skip_spaces.
9330 * tracepoint.c (validate_actionline): Use skip_spaces.
9331 (encode_actions_1): Likewise.
9332 (trace_find_range_command): Likewise.
9333 (trace_find_outside_command): Likewise.
9334 (trace_dump_actions): Likewise.
9335
9336 2013-03-07 Pedro Alves <palves@redhat.com>
9337
9338 * c-lang.c (parse_one_string): Cast argument to gdb_byte *.
9339 * expprint.c (print_subexp_standard): Likewise.
9340 * utils.c (host_char_to_target): Likewise.
9341 * valprint.c (generic_emit_char, generic_printstr): Likewise.
9342 * varobj.c (value_get_print_value): Change type of local to char*.
9343 Cast it gdb_byte * in call to language printer.
9344
9345 2013-03-07 Pedro Alves <palves@redhat.com>
9346
9347 * charset.c (struct wchar_iterator) <input>: Change type to 'const
9348 gdb_byte *'.
9349 (make_wchar_iterator): Remove cast to char*.
9350 (wchar_iterate): Change type of local.
9351
9352 2013-03-07 Pedro Alves <palves@redhat.com>
9353
9354 * regcache.c (regcache_xmalloc_1): Call XCALLOC with signed char
9355 for 'regcache->register_status'.
9356
9357 2013-03-07 Pedro Alves <palves@redhat.com>
9358
9359 * breakpoint.c (breakpoint_xfer_memory): Change type of local to
9360 int.
9361
9362 2013-03-07 Pedro Alves <palves@redhat.com>
9363
9364 * stap-probe.c (handle_stap_probe): Add cast to char*.
9365
9366 2013-03-07 Pedro Alves <palves@redhat.com>
9367
9368 * linux-record.c (record_linux_system_call) <gdb_sys_msgrcv,
9369 RECORD_MSGRCV>: Pass a signed variable to
9370 regcache_raw_read_signed, instead of an unsigned one.
9371
9372 2013-03-07 Pedro Alves <palves@redhat.com>
9373
9374 * remote-notif.c (notif_debug): Change type to int.
9375 * remote-notif.h (notif_debug): Likewise.
9376
9377 2013-03-07 Pedro Alves <palves@redhat.com>
9378
9379 * ser-tcp.c (tcp_retry_limit): Change type to unsigned int.
9380
9381 2013-03-07 Pedro Alves <palves@redhat.com>
9382
9383 * remote.c (hex2bin, bin2hex): Move extern declarations to ...
9384 * remote.h (hex2bin, bin2hex): ... here.
9385 * tracepoint.c (hex2bin, bin2hex): Remove extern declarations.
9386
9387 2013-03-07 Eli Zaretskii <eliz@gnu.org>
9388
9389 * utils.c (initialize_utils): Improve doc strings of "set/show
9390 width", "set/show height", and "set/show pagination".
9391
9392 2013-03-06 Keith Seitz <keiths@redhat.com>
9393
9394 * ax-gdb.c (gen_printf): Make FORMAT const.
9395 * ax-gdb.h (gen_printf): Likewise.
9396 * ax-general.c (ax_string): Make STR const.
9397 * ax.h (ax_string): Likewise.
9398
9399 2013-03-06 Doug Evans <dje@google.com>
9400
9401 * elfread.c (elf_symfile_read): Move debugging printf to more
9402 logical location.
9403
9404 2013-03-06 Pedro Alves <palves@redhat.com>
9405
9406 * python/py-utils.c (target_string_to_unicode): Delete function.
9407 * python/python-internal.h (target_string_to_unicode): Delete
9408 declaration.
9409
9410 2013-03-06 Pierre Muller <muller@sourceware.org>
9411
9412 * linespec.c (get_current_search_block): ARI fix, use (void)
9413 for empty parameter list.
9414
9415 2013-03-05 Doug Evans <dje@google.com>
9416
9417 * ada-lang.c (ada_lookup_symbol_list_worker): New function, contents
9418 of old ada_lookup_symbol_list. In !full_search case, don't
9419 search superblocks.
9420 (ada_lookup_symbol_list): Delete arg full_search, all callers
9421 updated. Call ada_lookup_symbol_list_worker.
9422 (ada_iterate_over_symbols): Call ada_lookup_symbol_list_worker.
9423 * ada-lang.h (ada_lookup_symbol_list): Update.
9424 * language.h (language_defn): Update comment for
9425 la_iterate_over_symbols.
9426 * linespec.c (iterate_over_file_blocks): New function.
9427 (iterate_over_all_matching_symtabs): Call it.
9428 (lookup_prefix_sym): Ditto.
9429 (get_current_search_block): New function.
9430 (get_search_block): Delete.
9431 (find_label_symbols): Call get_current_search_block.
9432 (add_matching_symbols_to_info): Call iterate_over_file_blocks.
9433 * symtab.c (iterate_over_symbols): Don't search superblocks.
9434
9435 2013-03-05 Yao Qi <yao@codesourcery.com>
9436
9437 * cli/cli-decode.c (add_setshow_zuinteger_unlimited_cmd): Change
9438 parameter VAR's type from "unsigned int" to "int".
9439 * command.h (var_zuinteger_unlimited): Update its comments.
9440 (add_setshow_zuinteger_unlimited_cmd): Update the declaration.
9441
9442 2013-03-05 Corinna Vinschen <vinschen@redhat.de>
9443
9444 * NEWS: Mention new target x86_64-*-cygwin*.
9445
9446 2013-03-05 Corinna Vinschen <vinschen@redhat.de>
9447
9448 * configure.host: Add x86_64-*-cygwin* as host.
9449 * configure.tgt: Add x86_64-*-cygwin* as target.
9450 * config/i386/cygwin64.mh: New file.
9451
9452 2013-03-04 Jan Kratochvil <jan.kratochvil@redhat.com>
9453
9454 * linespec.c (decode_line_2): Fix duplicate request off by two message.
9455
9456 2013-03-04 Jan Kratochvil <jan.kratochvil@redhat.com>
9457
9458 * linespec.c (struct linespec_canonical_name): New.
9459 (struct linespec_state): Change canonical_names type to it.
9460 (add_sal_to_sals): Change variable canonical_name to canonical. Change
9461 xrealloc element size. Initialize the different CANONICAL fields.
9462 (canonical_to_fullform): New.
9463 (filter_results): Use it. Add variables canonical, fullform and
9464 cleanup.
9465 (struct decode_line_2_item, decode_line_2_compare_items): New.
9466 (decode_line_2): Remove variables iter and item_names, add variables
9467 items and items_count. Modify the code for these new variables.
9468
9469 2013-03-04 Corinna Vinschen <vinschen@redhat.com>
9470
9471 * coff-pe-read.c (read_pe_exported_syms): Don't return without
9472 calling do_cleanup.
9473
9474 2013-03-04 Luis Machado <lgustavo@codesourcery.com>
9475
9476 * tracepoint.c (build_traceframe_info): Add code for byte order.
9477
9478 2013-03-02 Kevin Buettner <kevinb@redhat.com>
9479
9480 * v850-tdep.c: (v850e2_register_name): Revise system register
9481 names to match current V850E2M architecture specifications.
9482 Update register number enum comments too.
9483
9484 2013-03-01 Jiong Wang <jiwang@tilera.com>
9485 Pedro Alves <palves@redhat.com>
9486
9487 * tilegx-tdep.c (tilegx_analyze_prologue): Limit bundle reading
9488 to END_ADDR.
9489 (tilegx_skip_prologue): Limit prologue analysis to section end.
9490
9491 2013-03-01 Jan Kratochvil <jan.kratochvil@redhat.com>
9492
9493 * dwarf2loc.c (call_site_find_chain_1): New variable save_callee_pc,
9494 use it.
9495
9496 2013-03-01 Pedro Alves <palves@redhat.com>
9497
9498 Use gdb_byte for bytes from the program being debugged.
9499
9500 * arm-tdep.c (arm_store_return_value, arm_get_longjmp_target):
9501 Change type of local 'buf' to gdb_byte.
9502 * avr-tdep.c (avr_frame_prev_register, avr_push_dummy_call): Likewise.
9503 * bfin-tdep.c (bfin_push_dummy_call): Likewise.
9504 * cris-tdep.c (cris_sigcontext_addr)
9505 (cris_sigtramp_frame_unwind_cache): Likewise.
9506 * frv-linux-tdep.c (frv_linux_pc_in_sigtramp)
9507 (frv_linux_sigcontext_reg_addr, frv_linux_sigtramp_frame_cache):
9508 Likewise.
9509 * frv-tdep.c (frv_pseudo_register_write, frv_analyze_prologue): Likewise.
9510 * hppa-hpux-tdep.c (hppa32_hpux_find_global_pointer)
9511 (hppa32_hpux_search_dummy_call_sequence)
9512 (hppa_hpux_supply_save_state): Likewise.
9513 * hppa-linux-tdep.c (insns_match_pattern)
9514 (hppa_linux_find_global_pointer): Likewise.
9515 * hppa-tdep.c (hppa_in_function_epilogue_p)
9516 (skip_prologue_hard_way, hppa_frame_cache): Likewise.
9517 * i386-nto-tdep.c (i386nto_sigcontext_addr): Likewise.
9518 * i386fbsd-tdep.c (i386fbsd_supply_uthread)
9519 (i386fbsd_collect_uthread): Likewise.
9520 * ia64-hpux-tdep.c (ia64_hpux_push_dummy_code): Likewise.
9521 * ia64-linux-tdep.c (ia64_linux_sigcontext_register_address): Likewise.
9522 * ia64-tdep.c (examine_prologue, ia64_frame_cache)
9523 (ia64_frame_prev_register, ia64_sigtramp_frame_cache)
9524 (ia64_sigtramp_frame_prev_register, ia64_access_reg)
9525 (ia64_access_rse_reg, ia64_libunwind_frame_this_id)
9526 (ia64_libunwind_frame_prev_register)
9527 (ia64_libunwind_sigtramp_frame_this_id)
9528 (ia64_find_global_pointer_from_dynamic_section)
9529 (find_extant_func_descr, find_func_descr, ia64_dummy_id)
9530 (ia64_unwind_pc): Likewise.
9531 * iq2000-tdep.c (iq2000_store_return_value): Likewise.
9532 * m68hc11-tdep.c (m68hc11_push_dummy_call)
9533 (m68hc11_extract_return_value): Likewise.
9534 * m68klinux-nat.c (fetch_register, store_register): Likewise.
9535 * mep-tdep.c (mep_pseudo_cr32_read, mep_pseudo_cr32_write)
9536 (mep_get_insn, mep_push_dummy_call): Likewise.
9537 * mips-linux-tdep.c (mips_linux_get_longjmp_target)
9538 (mips_linux_in_dynsym_stub): Likewise.
9539 * mn10300-tdep.c (mep_pseudo_cr32_write): Likewise.
9540 * ppc-linux-nat.c (fetch_register, store_register): Likewise.
9541 * regcache.c (dump_endian_bytes): Change type of parameter 'buf'
9542 to gdb_byte.
9543 * remote-mips.c (mips_set_register): Likewise.
9544 * remote-sim.c (gdbsim_fetch_register): Likewise.
9545 * score-tdep.c (score7_fetch_inst): Change type of parameter
9546 'memblock' and local 'buf' to gdb_byte.
9547 (score7_malloc_and_get_memblock): Change return type to gdb_byte.
9548 Change type of local 'buf' to gdb_byte. Adjust.
9549 (score7_adjust_memblock_ptr): Change type of parameter 'memblock'
9550 to gdb_byte**.
9551 (score7_analyze_prologue): Change type of 'memblock' and
9552 'memblock_ptr' locals to gdb_byte*.
9553 * sh64-tdep.c (sh64_extract_return_value)
9554 (sh64_store_return_value): Change type of local 'buf' to gdb_byte.
9555 * solib-darwin.c (darwin_current_sos, darwin_read_exec_load_addr):
9556 * solib-pa64.c (pa64_solib_create_inferior_hook)
9557 (pa64_open_symbol_file_object): Remove local 'buf'.
9558 * solib-som.c (som_solib_create_inferior_hook, link_map_start)
9559 (som_open_symbol_file_object): Likewise.
9560 * solib-spu.c (spu_current_sos): Likewise.
9561 * spu-linux-nat.c (spu_fetch_inferior_registers): Likewise.
9562 * spu-multiarch.c (parse_spufs_run, spu_fetch_registers)
9563 (spu_store_registers): Likewise.
9564 * target.c (debug_print_register): Likewise.
9565 * tic6x-tdep.c (tic6x_get_longjmp_target): Likewise.
9566 * xstormy16-tdep.c (xstormy16_store_return_value)
9567 (xstormy16_push_dummy_call, xstormy16_resolve_jmp_table_entry)
9568 (xstormy16_find_jmp_table_entry): Likewise.
9569
9570 2013-03-01 Jiong Wang <jiwang@tilera.com>
9571
9572 * tilegx-tdep.c (tilegx_get_longjmp_target): New function.
9573 (tilegx_gdbarch_init): Install it.
9574
9575 2013-02-28 Tom Tromey <tromey@redhat.com>
9576
9577 * python/py-arch.c (archpy_disassemble): Use PyInt_Check and
9578 PyLong_Check.
9579
9580 2013-02-28 Doug Evans <dje@google.com>
9581
9582 * python/py-finishbreakpoint.c (bpfinishpy_init): gcc -Wall lint.
9583 * python/python.c (gdbpy_find_pc_line): Ditto.
9584
9585 2013-02-28 Tom Tromey <tromey@redhat.com>
9586
9587 * contrib/excheck.py: New file.
9588 * contrib/exsummary.py: New file.
9589 * contrib/gcc-with-excheck: New file.
9590
9591 2013-02-28 Tom Tromey <tromey@redhat.com>
9592
9593 * python/python.c (gdbpy_print_stack): Call begin_line and
9594 fprintf_filtered inside TRY_CATCH.
9595
9596 2013-02-28 Tom Tromey <tromey@redhat.com>
9597
9598 * python/python.c (gdbpy_find_pc_line): Call find_pc_line
9599 inside TRY_CATCH.
9600
9601 2013-02-28 Tom Tromey <tromey@redhat.com>
9602
9603 * py-finishbreakpoint.c (bpfinishpy_init): Reorganize to call
9604 frame_object_to_frame_info inside TRY_CATCH.
9605
9606 2013-02-28 Tom Tromey <tromey@redhat.com>
9607
9608 * py-block.c (gdbpy_block_for_pc): Call block_for_pc inside
9609 TRY_CATCH.
9610
9611 2013-02-28 Tom Tromey <tromey@redhat.com>
9612
9613 * objfiles.h (ALL_PSPACE_OBJFILES): Remove trailing backlash.
9614
9615 2013-02-27 Corinna Vinschen <vinschen@redhat.com>
9616
9617 * windows-nat.c: Throughout, fix format strings and casts of
9618 printf-like functions to avoid type related warnings on all
9619 platforms.
9620 (handle_output_debug_string): Fetch context information address
9621 from debug string using string_to_core_addr.
9622
9623 2013-02-27 Jiong Wang <jiwang@tilera.com>
9624
9625 * regformats/reg-tilegx.dat (name): Change abi name to "tilegx".
9626 * regformats/reg-tilegx32.dat: New.
9627
9628 2013-02-27 Jiong Wang <jiwang@tilera.com>
9629
9630 * configure.tgt (tilegx-*-linux*): Enable gdbserver.
9631
9632 2013-02-27 Jiong Wang <jiwang@tilera.com>
9633
9634 * configure.tgt (tilegx-*-linux*): Replace whitespace with tab.
9635
9636 2013-02-27 Yao Qi <yao@codesourcery.com>
9637 Pedro Alves <palves@redhat.com>
9638
9639 * tracepoint.c (tfile_trace_find): For tfind
9640 pc/tp/range/outside, look for the next trace frame instead of
9641 always starting from frame 0.
9642
9643 2013-02-26 Anthony Green <green@moxielogic.com>
9644
9645 * configure.tgt: Add support for moxie-*-rtems* target.
9646
9647 2013-02-25 Pedro Alves <palves@redhat.com>
9648
9649 * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Change
9650 warning text.
9651
9652 2013-02-24 Maciej W. Rozycki <macro@codesourcery.com>
9653
9654 * mips-tdep.c (mips32_scan_prologue): Reset frame_offset to zero
9655 if $fp is used as the virtual frame pointer.
9656
9657 2013-02-23 Alan Modra <amodra@gmail.com>
9658
9659 * elfread.c (elf_symtab_read): Do not use udata.p here to find
9660 symbol size.
9661 * ppc64-tdep.c (ppc64_elf_make_msymbol_special): New function.
9662 * ppc64-tdep.h (ppc64_elf_make_msymbol_special): Declare.
9663 * ppc-linux-tdep.c (ppc_linux_init_abi): Set up to use the above.
9664 * ppcfbsd-tdep.c (ppcfbsd_init_abi): Likewise.
9665
9666 2013-02-22 Jan Kratochvil <jan.kratochvil@redhat.com>
9667
9668 Code cleanup.
9669 * elfread.c (build_id_bfd_get): Make the return type const.
9670 (build_id_verify): Make the check parameter const.
9671 (build_id_to_debug_filename): Make the build_id parameter and variable
9672 data const.
9673 (find_separate_debug_file_by_buildid): Make the variable build_id const.
9674
9675 2013-02-21 Alan Modra <amodra@gmail.com>
9676
9677 * elfread.c (build_id_bfd_get): Adjust for elf_tdata changes.
9678
9679 2013-02-20 Siva Chandra Reddy <sivachandra@google.com>
9680
9681 Add a new method 'disassemble' to gdb.Architecture class.
9682 * python/py-arch.c (archpy_disassmble): Implementation of the
9683 new method gdb.Architecture.disassemble.
9684 (arch_object_methods): Add entry for the new method.
9685
9686 2013-02-20 Jiong Wang <jiwang@tilera.com>
9687
9688 * MAINTAINERS (Write After Approval): Add myself to the list.
9689
9690 2013-02-19 Pedro Alves <palves@redhat.com>
9691
9692 Garbage collect 'struct monitor_ops'::load_routine.
9693
9694 * monitor.h (struct monitor_ops) <load_routine>: Remove field.
9695 * monitor.c (monitor_load): No longer call
9696 current_monitor->load_routine.
9697 * dbug-rom.c (init_dbug_cmds): Don't set 'load_routine'.
9698 * m32r-rom.c (init_m32r_cmds): Don't set 'load_routine'.
9699 * ppcbug-rom.c (init_ppc_cmds): Don't set 'load_routine'.
9700
9701 2013-02-19 Pedro Alves <palves@redhat.com>
9702
9703 PR gdb/15161
9704
9705 Harmonize with generic_load.
9706
9707 * monitor.c: Include "readline/readline.h".
9708 (monitor_load): Rename parameter 'file' to 'args'. Use build_argv
9709 instead of sscanf. Use CORE_ADDR/strtoulst instead of unsigned
9710 long/strtol for the 'load_offset' local. Error out if no argument
9711 is given or if too many arguments are given. Tilde expand the
9712 passed in file name.
9713
9714 2013-02-19 Kai Tietz <ktietz@redhat.com>
9715
9716 PR gdb/15161
9717 * symfile.c (load_section_data): Change type of load_offset
9718 to CORE_ADDR.
9719 (generic_load): User strtoulst instead of strtoul for conversion
9720 of load_offset.
9721
9722 2013-02-19 Jiong Wang <jiwang@tilera.com>
9723
9724 * tilegx-tdep.c (tilegx_analyze_prologue): add check for
9725 for return address, "lr" register, saved on stack.
9726 * tilegx-tdep.c (tilegx_frame_cache): update "PC" reg
9727 after we invoke tilegx_analyze_prologue.
9728
9729 2013-02-19 Jiong Wang <jiwang@tilera.com>
9730
9731 * tilegx-tdep.c (itilegx_gdbarch_init): char type should be signed.
9732
9733 2013-02-19 Jiong Wang <jiwang@tilera.com>
9734
9735 * tilegx-tdep.c (tilegx_skip_prologue): Use skip_prologue_using_sal.
9736
9737 2013-02-19 Jiong Wang <jiwang@tilera.com>
9738
9739 * tilegx-tdep.c (INT_SWINT_1_SIGRETURN): New macro.
9740 (tilegx_write_pc): New function.
9741 (tilegx_cannot_reference_register): Return zero if REGNO
9742 is TILEGX_FAULTNUM_REGNUM.
9743 (tilegx_gdbarch_init): Add call to set_gdbarch_write_pc.
9744 (tilegx_register_name): Add handling of "faultnum" register.
9745 * tilegx-tdep.h (enum tilegx_regnum): Add TILEGX_FAULTNUM_REGNUM.
9746 * tilegx-linux-tdep.c (tilegx_linux_supply_regset): Add
9747 handling of TILEGX_FAULTNUM_REGNUM.
9748 * tilegx-linux-nat.c (regmap): Add entry for TILEGX_FAULTNUM_REGNUM.
9749
9750 2013-02-19 Jiong Wang <jiwang@tilera.com>
9751
9752 * tilegx-tdep.c (tilegx_push_dummy_call): args pushed on stack
9753 should be aligned to 64bit.
9754
9755 2013-02-19 Kai Tietz <ktietz@redhat.com>
9756
9757 * windows-nat.c (windows_xfer_memory): Fix debug-output
9758 for LLP64.
9759
9760 2013-02-19 Lei Liu <lei.liu2@windriver.com>
9761
9762 * mips-linux-nat.c (mips64_linux_regsets_store_registers):
9763 Don't check DSP register number if HAVE_DSP is not set.
9764
9765 2013-02-19 Alan Modra <amodra@gmail.com>
9766
9767 * elfread.c (struct build_id): Delete. Use struct elf_build_id
9768 throughout file instead.
9769 (build_id_bfd_get): Update to use new elf_tdata build_id field.
9770 Don't xmalloc return value.
9771 (build_id_verify): Similarly. Don't xfree.
9772 (build_id_to_debug_filename): Update.
9773 (find_separate_debug_file_by_buildid): Update, don't xfree.
9774
9775 2013-02-18 Tom Tromey <tromey@redhat.com>
9776
9777 PR gdb/15102:
9778 * dwarf2read.c (read_subrange_type): Use result of
9779 'check_typedef'.
9780
9781 2013-02-16 Yuanhui Zhang <asmwarrior@gmail.com>
9782
9783 * frame.c: Remove one extra white space after #include
9784 directive.
9785
9786 2013-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
9787
9788 * contrib/cc-with-tweaks.sh: Extend the comment for -p option.
9789
9790 2013-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
9791
9792 * gdb-gdb.gdb.in: Wrap set complaints, b internal_error, b info_command
9793 and dir commands into an if block.
9794
9795 2013-02-15 Sanimir Agovic <sanimir.agovic@intel.com>
9796
9797 * python/py-breakpoint (struct pybp_code): Use int instead of
9798 enum type_code.
9799
9800 2013-02-15 Pedro Alves <pedro@codesourcery.com>
9801 Hafiz Abid Qadeer <abidh@codesourcery.com>
9802
9803 * NEWS: Mention new field "trace-file".
9804 * tracepoint.c (trace_status_mi): Output "trace-file" field.
9805 (tfile_open): Record the trace file's filename in the trace
9806 status.
9807 (tfile_files_info): Mention the name of the trace file.
9808 Check the "filename" field explicitely.
9809 (trace_status_command): Explicitely check "filename" field.
9810 (trace_find_command): Ditto.
9811 (trace_find_pc_command): Ditto.
9812 (trace_find_tracepoint_command): Ditto.
9813 (trace_find_line_command): Ditto.
9814 (trace_find_range_command): Ditto.
9815 (trace_find_outside_command): Ditto.
9816 * tracepoint.h (struct trace_status) <from_file>: Rename it
9817 to "filename" and make it hold the trace file's filename
9818 instead of a boolean.
9819 * remote.c (remote_get_trace_status): Initialize "filename"
9820 field with NULL instead of 0.
9821
9822 2013-02-15 Yao Qi <yao@codesourcery.com>
9823
9824 * remote.c: Fix a typo.
9825
9826 2013-02-14 Pierre Muller <muller@sourceware.org>
9827
9828 * contrib/ari/gdb_ari.sh (GNU/Linux rule): Remove.
9829
9830 2013-02-14 Pedro Alves <palves@redhat.com>
9831
9832 * utils.c (savestring): Don't #undef it. Move function to
9833 common/common-utils.c.
9834 * common/common-utils.c: Include gdb_string.h.
9835 (savestring): Move here from utils.c.
9836 * common/common-utils.h (savestring): Declare.
9837
9838 2013-02-14 Pedro Alves <palves@redhat.com>
9839
9840 * utils.c (savestring): Rename parameter 'size' to 'len'.
9841
9842 2013-02-14 Pedro Alves <palves@redhat.com>
9843 Yufeng Zhang <yufeng.zhang@arm.com>
9844
9845 * aarch64-linux-nat.c (aarch64_init_debug_reg_state): Delete.
9846 (aarch64_inferior_data, struct aarch64_inferior_data):
9847 Delete.
9848 (struct aarch64_process_info): New.
9849 (aarch64_process_list): New global.
9850 (aarch64_find_process_pid, aarch64_add_process)
9851 (aarch64_process_info_get): New functions.
9852 (aarch64_inferior_data_get): Delete.
9853 (aarch64_process_info_get): New function.
9854 (aarch64_forget_process): New function.
9855 (aarch64_get_debug_reg_state): New parameter 'pid'. Reimplement.
9856 (aarch64_linux_prepare_to_resume): Pass the lwp's pid to
9857 aarch64_get_debug_reg_state.
9858 (aarch64_notify_debug_reg_change): Use iterate_over_lwps
9859 instead of linux_nat_iterate_watchpoint_lwps.
9860 (aarch64_linux_new_fork): New function.
9861 (aarch64_linux_child_post_startup_inferior): Use
9862 aarch64_forget_process instead of aarch64_init_debug_reg_state.
9863 (aarch64_handle_breakpoint, aarch64_linux_insert_hw_breakpoint)
9864 (aarch64_linux_remove_hw_breakpoint)
9865 (aarch64_handle_aligned_watchpoint)
9866 (aarch64_handle_unaligned_watchpoint)
9867 (aarch64_linux_insert_watchpoint)
9868 (aarch64_linux_remove_watchpoint)
9869 (aarch64_linux_stopped_data_address): Adjust to pass the current
9870 process id to aarch64_debug_reg_state.
9871 (_initialize_aarch64_linux_nat): Install aarch64_linux_new_fork as
9872 linux_nat_new_fork hook, and aarch64_forget_process as
9873 linux_nat_forget_process hook; remove the call to
9874 register_inferior_data_with_cleanup.
9875
9876 2013-02-14 Pedro Alves <palves@redhat.com>
9877
9878 * eval.c (evaluate_subexp_for_address) <default_case_after_eval,
9879 EVAL_AVOID_SIDE_EFFECTS>: Swap and handle TYPE_CODE_REF before
9880 lval_memory.
9881
9882 2013-02-14 Pedro Alves <pedro@codesourcery.com>
9883 Hafiz Abid Qadeer <abidh@codesourcery.com>
9884
9885 * tracepoint.h (validate_trace_state_variable_name): Declare.
9886 * tracepoint.c (validate_trace_state_variable_name): New.
9887 (trace_variable_command): Parse the trace state variable's name
9888 without using parse_expression. Do several validations.
9889 * mi/mi-main.c (mi_cmd_trace_define_variable): Don't parse the
9890 trace state variable's name with parse_expression. Validate it.
9891
9892 2013-02-14 Yao Qi <yao@codesourcery.com>
9893
9894 * infcmd.c (breakpoint_proceeded): Remove it.
9895
9896 2013-02-14 Yao Qi <yao@codesourcery.com>
9897
9898 * tracepoint.c (end_actions_pseudocommand): Make it static.
9899 (while_stepping_pseudocommand): Likewise.
9900 * tracepoint.h (end_actions_pseudocommand): Remove the
9901 declaration.
9902 (while_stepping_pseudocommand): Likewise.
9903
9904 2013-02-14 Yao Qi <yao@codesourcery.com>
9905
9906 * cli/cli-decode.c (help_cmd): Remove the declaration of
9907 "cmdlist".
9908 (help_all): Likewise.
9909
9910 2013-02-13 Pedro Alves <palves@redhat.com>
9911
9912 * amd64-linux-nat.c (update_debug_registers_callback):
9913 Update comment.
9914 (amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use
9915 iterate_over_lwps.
9916 (amd64_linux_prepare_to_resume): Pass the lwp's pid to
9917 i386_debug_reg_state.
9918 (amd64_linux_new_fork): New function.
9919 (_initialize_amd64_linux_nat): Install amd64_linux_new_fork as
9920 linux_nat_new_fork hook, and i386_forget_process as
9921 linux_nat_forget_process hook.
9922 * i386-linux-nat.c (update_debug_registers_callback):
9923 Update comment.
9924 (i386_linux_dr_set_control, i386_linux_dr_set_addr): Use
9925 iterate_over_lwps.
9926 (i386_linux_prepare_to_resume): Pass the lwp's pid to
9927 i386_debug_reg_state.
9928 (i386_linux_new_fork): New function.
9929 (_initialize_i386_linux_nat): Install i386_linux_new_fork as
9930 linux_nat_new_fork hook, and i386_forget_process as
9931 linux_nat_forget_process hook.
9932 * i386-nat.c (i386_init_dregs): Delete.
9933 (i386_inferior_data, struct i386_inferior_data):
9934 Delete.
9935 (struct i386_process_info): New.
9936 (i386_process_list): New global.
9937 (i386_find_process_pid, i386_add_process, i386_process_info_get):
9938 New functions.
9939 (i386_inferior_data_get): Delete.
9940 (i386_process_info_get): New function.
9941 (i386_debug_reg_state): New parameter 'pid'. Reimplement.
9942 (i386_forget_process): New function.
9943 (i386_cleanup_dregs): Rewrite.
9944 (i386_update_inferior_debug_regs, i386_insert_watchpoint)
9945 (i386_remove_watchpoint, i386_region_ok_for_watchpoint)
9946 (i386_stopped_data_address, i386_insert_hw_breakpoint)
9947 (i386_remove_hw_breakpoint): Adjust to pass the current process id
9948 to i386_debug_reg_state.
9949 (i386_use_watchpoints): Don't register inferior data.
9950 * i386-nat.h (i386_debug_reg_state): Add new 'pid' parameter, and
9951 adjust comment.
9952 (i386_forget_process): Declare.
9953 * linux-fork.c (delete_fork): Call linux_nat_forget_process.
9954 * linux-nat.c (linux_nat_new_fork, linux_nat_forget_process_hook):
9955 New static globals.
9956 (linux_child_follow_fork): Don't call linux_nat_new_thread here.
9957 (add_initial_lwp): New, factored out from ...
9958 (add_lwp): ... this. Don't check the number of lwps before
9959 calling linux_nat_new_thread.
9960 (linux_nat_iterate_watchpoint_lwps): Delete.
9961 (linux_nat_attach): Use add_initial_lwp instead of add_lwp.
9962 (linux_handle_extended_wait): Call the linux_nat_new_fork hook on
9963 forks and vforks.
9964 (linux_nat_wait_1): Use add_initial_lwp instead of add_lwp for the
9965 initial lwp.
9966 (linux_nat_kill, linux_nat_mourn_inferior): Call
9967 linux_nat_forget_process.
9968 (linux_nat_set_new_fork, linux_nat_set_forget_process)
9969 (linux_nat_forget_process): New functions.
9970 * linux-nat.h (linux_nat_iterate_watchpoint_lwps_ftype): Delete
9971 type.
9972 (linux_nat_iterate_watchpoint_lwps): Delete declaration.
9973 (linux_nat_new_fork_ftype, linux_nat_forget_process_ftype): New
9974 types.
9975 (linux_nat_set_new_fork, linux_nat_set_forget_process)
9976 (linux_nat_forget_process): New declarations.
9977
9978 * amd64fbsd-nat.c (super_mourn_inferior): New global.
9979 (amd64fbsd_mourn_inferior): New function.
9980 (_initialize_amd64fbsd_nat): Override to_mourn_inferior.
9981 * windows-nat.c (windows_detach): Call i386_cleanup_dregs.
9982
9983 2013-02-13 Marcus Shawcroft <marcus.shawcroft@arm.com>
9984
9985 * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity):
9986 Adding _().
9987
9988 2013-02-13 Marcus Shawcroft <marcus.shawcroft@arm.com>
9989
9990 * aarch64-linux-nat.c (debug_reg_change_callback)
9991 (aarch64_linux_get_debug_reg_capacity): ARI fix: Replace %llx with
9992 %s and phex().
9993
9994 2013-02-13 Marcus Shawcroft <marcus.shawcroft@arm.com>
9995
9996 * aarch64-linux-nat.c (dr_changed_t): ARI fix: Replace long long
9997 with LONGEST.
9998
9999 2013-02-13 Pedro Alves <palves@redhat.com>
10000 Hafiz Abid Qadeer <abidh@codesourcery.com>
10001
10002 * c-lang.c (c_op_print_tab): Add entry for UNOP_PLUS.
10003
10004 2013-02-12 Tom Tromey <tromey@redhat.com>
10005
10006 PR symtab/11464:
10007 * c-exp.y (lex_one_token): Initialize other fields of yylval on
10008 NAME return.
10009 (classify_inner_name): Remove 'first_name' argument, add
10010 'context'. Remove unused variable.
10011 (yylex): Explicitly maintain the context type. Exit loop earlier
10012 if NAME result is seen.
10013
10014 2013-02-12 Pedro Alves <palves@redhat.com>
10015
10016 * amd64-darwin-tdep.c: Add (C) after Copyright.
10017 * cli/cli-cmds.h: Ditto.
10018 * cli/cli-decode.c: Ditto.
10019 * cli/cli-decode.h: Ditto.
10020 * cli/cli-dump.c: Ditto.
10021 * cli/cli-dump.h: Ditto.
10022 * cli/cli-interp.c: Ditto.
10023 * cli/cli-logging.c: Ditto.
10024 * cli/cli-script.c: Ditto.
10025 * cli/cli-script.h: Ditto.
10026 * cli/cli-setshow.c: Ditto.
10027 * cli/cli-setshow.h: Ditto.
10028 * cli/cli-utils.c: Ditto.
10029 * cli/cli-utils.h: Ditto.
10030 * config/alpha/nm-osf3.h: Ditto.
10031 * config/djgpp/djconfig.sh: Ditto.
10032 * config/i386/nm-fbsd.h: Ditto.
10033 * config/i386/nm-i386gnu.h: Ditto.
10034 * config/nm-linux.h: Ditto.
10035 * config/nm-nto.h: Ditto.
10036 * config/rs6000/nm-rs6000.h: Ditto.
10037 * config/sparc/nm-sol2.h: Ditto.
10038 * darwin-nat-info.c: Ditto.
10039 * dfp.c: Ditto.
10040 * dfp.h: Ditto.
10041 * gdb-demangle.h: Ditto.
10042 * i386-darwin-nat.c: Ditto.
10043 * i386-darwin-tdep.c: Ditto.
10044 * linux-fork.h: Ditto.
10045 * m32c-tdep.c: Ditto.
10046 * microblaze-linux-tdep.c: Ditto.
10047 * microblaze-rom.c: Ditto.
10048 * microblaze-tdep.c: Ditto.
10049 * microblaze-tdep.h: Ditto.
10050 * mips-linux-tdep.h: Ditto.
10051 * ppc-ravenscar-thread.c: Ditto.
10052 * ppc-ravenscar-thread.h: Ditto.
10053 * prologue-value.c: Ditto.
10054 * prologue-value.h: Ditto.
10055 * ravenscar-thread.c: Ditto.
10056 * ravenscar-thread.h: Ditto.
10057 * sparc-ravenscar-thread.c: Ditto.
10058 * sparc-ravenscar-thread.h: Ditto.
10059 * tilegx-linux-tdep.c: Ditto.
10060 * unwind_stop_reasons.def: Ditto.
10061 * windows-nat.h: Ditto.
10062 * xtensa-linux-tdep.c: Ditto.
10063 * xtensa-xtregs.c: Ditto.
10064 * regformats/regdat.sh: Ditto.
10065 * regformats/regdef.h: Ditto.
10066
10067 2013-02-12 Pedro Alves <palves@redhat.com>
10068
10069 * break-catch-sig.c: Update copyright years.
10070
10071 2013-02-11 Siva Chandra Reddy <sivachandra@google.com>
10072
10073 Add support for a destructor for ui_out data and use it to
10074 provide a ui_out destructor.
10075 * ui-out.h: Declare the new ui_out destructor.
10076 (ui_out_impl): Add a field for data destructor in ui_out_impl.
10077 * ui-out.c (default_data_destroy): Add a default data destructor
10078 which does nothing.
10079 (default_ui_out_impl): Set the new data_destroy field to
10080 default_data_destroy
10081 (uo_data_destroy): Local function which invokes the data
10082 destructor if present.
10083 (clear_table): Local function which clears the table data of a
10084 ui_out object.
10085 (ui_out_destroy): Public function which frees a ui_out object.
10086 (ui_out_table_end): Use the new clear_table function.
10087 * cli-out.c (cli_ui_out_impl): Set the new data_destroy field to
10088 NULL.
10089 * mi/mi-out.c (mi_ui_out_impl): Set the new data_destroy field
10090 to NULL.
10091
10092 2013-02-11 Doug Evans <dje@google.com>
10093
10094 * printcmd.c (printf_c_string,printf_wide_c_string): New functions.
10095 (printf_decfloat): New function. Broken out from ui_printf.
10096 Remove unnecessary code to shift the entire format string down.
10097 (printf_pointer): New function.
10098 (ui_printf): Code to print C strings, wide C strings, decfloats,
10099 and pointers moved to separate functions.
10100
10101 2013-02-11 Sergio Durigan Junior <sergiodj@redhat.com>
10102
10103 * valops.c (value_assign): Handling bitfield offset in
10104 `lval_internalvar_component' case.
10105
10106 2013-02-08 Doug Evans <dje@google.com>
10107
10108 * common/format.c (parse_format_string): Fix whitespace.
10109
10110 2013-02-08 Matthew Gretton-Dann <matthew.gretton-dann@linaro.org>
10111
10112 * stack.c (return_command): Work around uninitialized variable
10113 warning.
10114
10115 2013-02-08 Yufeng Zhang <yufeng.zhang@arm.com>
10116
10117 * aarch64-linux-tdep.c (AARCH64_LINUX_SIZEOF_GREGSET): Change the
10118 number of the registers from 36 to 34.
10119
10120 2013-02-08 Marcus Shawcroft <marcus.shawcroft@arm.com>
10121
10122 * NEWS: Mention new AArch64 native and target support.
10123
10124 2013-02-08 Marcus Shawcroft <marcus.shawcroft@arm.com>
10125
10126 * MAINTAINERS (Write After Approval): Add myself.
10127
10128 2013-02-08 Jim MacArthur <jim.macarthur@arm.com>
10129 Marcus Shawcroft <marcus.shawcroft@arm.com>
10130 Nigel Stephens <nigel.stephens@arm.com>
10131 Yufeng Zhang <yufeng.zhang@arm.com>
10132
10133 * aarch64-linux-nat.c: New file.
10134 * config/aarch64/linux.mh: New file.
10135 * configure.host: Add AArch64.
10136 * Makefile.in (ALLDEPFILES): Add aarch64-linux-nat.c.
10137
10138 2013-02-07 Doug Evans <dje@google.com>
10139
10140 * cli/cli-cmds.c (_initialize_cli_cmds): Clarify argument to
10141 disassemble command.
10142
10143 2013-02-07 Marcus Shawcroft <marcus.shawcroft@arm.com>
10144
10145 * aarch64-linux-tdep.c (aarch64_linux_init_abi): Call
10146 set_gdbarch_fetch_tls_load_module_address.
10147
10148 2013-02-06 David S. Miller <davem@davemloft.net>
10149
10150 * sparc-tdep.c (sparc32_return_value): Handle writing return value when
10151 using RETURN_VALUE_ABI_PRESERVES_ADDRESS.
10152 * value.c (struct_return_convention): New function.
10153 (using_struct_return): Implement in terms of struct_return_convention.
10154 * value.h (struct_return_convention): Declare.
10155 * stack.c (return_command): Allow successful overriding of the return
10156 value when RETURN_VALUE_ABI_PRESERVES_ADDRESS.
10157
10158 2013-02-06 Tom Tromey <tromey@redhat.com>
10159
10160 * python/py-type.c (typy_strip_typedefs): Don't call check_typedef
10161 outside of TRY_CATCH.
10162
10163 2013-02-06 Yao Qi <yao@codesourcery.com>
10164
10165 * mi/mi-interp.c: Include "tracepoint.h".
10166 (mi_tsv_modified): Declare.
10167 (mi_tsv_created, mi_tsv_deleted): Update declaration.
10168 (mi_interpreter_init): Call observer_attach_tsv_modified.
10169 (mi_tsv_modified): New.
10170 (mi_tsv_created, mi_tsv_deleted): Update.
10171 * tracepoint.c (trace_variable_command): Call
10172 observer_notify_tsv_modified if the initial value of tsv is
10173 changed.
10174 (delete_trace_state_variable): Call
10175 observer_notify_tsv_deleted earlier.
10176 (trace_variable_command): Caller update.
10177 (create_tsv_from_upload): Likewise.
10178 * observer.sh: Declare "struct trace_state_variable".
10179
10180 * NEWS: Mention the new MI notification "=tsv-modified".
10181
10182 2013-02-05 Doug Evans <dje@google.com>
10183
10184 * completer.c (location_completer): Fix typo in comment.
10185
10186 2013-02-05 Jan Kratochvil <jan.kratochvil@redhat.com>
10187
10188 * breakpoint.c (add_location_to_breakpoint): Insert the location with
10189 ADDRESS sorted.
10190
10191 2013-02-05 Marcus Shawcroft <marcus.shawcroft@arm.com>
10192
10193 * aarch64-tdep.c (aarch64_analyze_prologue): ARI fix:
10194 Refactor if statement to avoid trailing || operator.
10195
10196 2013-02-05 Andreas Tobler <andreast@fgznet.ch>
10197
10198 * NEWS: Add PowerPC FreeBSD as a new native configuration.
10199
10200 2013-02-04 Andreas Tobler <andreast@fgznet.ch>
10201
10202 * Makefile.in (ALL_TARGET_OBS): Add powerpc FreeBSD files.
10203 * configure.host: Add powerpc*-*-freebsd* target.
10204 * configure.tgt: Add target info for powerpc*-*-freebsd*.
10205 * ppcfbsd-nat.c, ppcfbsd-tdep.h, ppcfbsd-tdep.c: New files.
10206 * config/powerpc/fbsd.mh: New file.
10207
10208 2013-02-04 Sergio Durigan Junior <sergiodj@redhat.com>
10209 Denys Vlasenko <dvlasenk@redhat.com>
10210 Pedro Alves <palves@redhat.com>
10211
10212 * gdbarch.sh (elfcore_write_linux_prpsinfo): New F hook.
10213 (struct elf_internal_linux_prpsinfo): Forward declare.
10214 * gdbarch.h, gdbarch.c: Regenerate.
10215 * linux-tdep.c: Include `cli/cli-utils.h'.
10216 (linux_fill_prpsinfo): New function.
10217 (linux_make_corefile_notes): Use linux_fill_prpsinfo. If there's
10218 an elfcore_write_linux_prpsinfo hook, use it, otherwise, use
10219 elfcore_write_linux_prpsinfo32 or elfcore_write_linux_prpsinfo64
10220 depending on gdbarch pointer bitness.
10221 * ppc-linux-tdep.c: Include elf-bfd.h.
10222 (ppc_linux_init_abi): Hook in elfcore_write_ppc_linux_prpsinfo32
10223 on 32-bit.
10224
10225 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
10226 Marcus Shawcroft <marcus.shawcroft@arm.com>
10227 Nigel Stephens <nigel.stephens@arm.com>
10228 Yufeng Zhang <yufeng.zhang@arm.com>
10229
10230 * configure.tgt (aarch64*-*-linux*): Set build_gdbserver=yes.
10231
10232 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
10233 Marcus Shawcroft <marcus.shawcroft@arm.com>
10234 Nigel Stephens <nigel.stephens@arm.com>
10235 Yufeng Zhang <yufeng.zhang@arm.com>
10236
10237 * aarch64-newlib-tdep.c: New file.
10238 * configure.tgt: Add aarch64-newlib-tdep.o to gdb_target_obs of
10239 aarch64*-*-elf.
10240 * defs.h (enum gdb_osabi): Add GDB_OSABI_NEWLIB.
10241 * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-newlib-tdep.o.
10242 (ALLDEPFILES): Add aarch64-newlib-tdep.c.
10243 * osabi.c (gdb_osabi_names): Add "Newlib".
10244
10245 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
10246 Marcus Shawcroft <marcus.shawcroft@arm.com>
10247 Nigel Stephens <nigel.stephens@arm.com>
10248 Yufeng Zhang <yufeng.zhang@arm.com>
10249
10250 * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-linux-tdep.o.
10251 (ALLDEPFILES): Add aarch64-linux-tdep.c.
10252 * aarch64-linux-tdep.c: New file.
10253 * aarch64-linux-tdep.h: New file.
10254 * aarch64-tdep.h (gdbarch_tdep): Define gregset and fpregset.
10255 * configure.tgt: Add aarch64-none-linux-gnu.
10256
10257 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
10258 Marcus Shawcroft <marcus.shawcroft@arm.com>
10259 Nigel Stephens <nigel.stephens@arm.com>
10260 Yufeng Zhang <yufeng.zhang@arm.com>
10261
10262 * Makefile.in (ALL_64_TARGET_OBS): Add arch64-tdep.o.
10263 (HFILES_NO_SRCDIR): Add aarch64-tdep.h.
10264 (ALLDEPFILES): Add aarch64-tdep.c.
10265 * aarch64-tdep.c: New file.
10266 * aarch64-tdep.h: New file.
10267 * configure.tgt: Add AArch64.
10268 * features/Makefile (WHICH): Add aarch64 and aarch64-without-fpu.
10269 (aarch64-expedite): New definition.
10270 * features/aarch64-core.xml: New file.
10271 * features/aarch64-fpu.xml: New file.
10272 * features/aarch64-without-fpu.c: New file (generated).
10273 * features/aarch64-without-fpu.xml: New file.
10274 * features/aarch64.c: New file (generated).
10275 * features/aarch64.xml: New file.
10276 * regformats/aarch64-without-fpu.dat: New file (generated).
10277 * regformats/aarch64.dat: New file (generated).
10278
10279 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10280
10281 * contrib/expect-read1.c: New file.
10282 * contrib/expect-read1.sh: New file.
10283
10284 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10285
10286 * dwarf2read.c (file_file_name): New function with code from
10287 file_full_name.
10288 (file_full_name): Move most of the code to file_file_name.
10289 (macro_start_file): Rename variable full_name to file_name and use
10290 file_file_name for it. Add comp_dir parameter to new_macro_table.
10291 * macrocmd.c (show_pp_source_pos): New variable fullname. Replace any
10292 macro_source_file->filename access by macro_source_fullname call.
10293 * macroscope.c (_initialize_macroscope): Update the new_macro_table
10294 caller.
10295 * macrotab.c (struct macro_table): New field comp_dir.
10296 (macro_include): New variables link_fullname and source_fullname.
10297 Replace any macro_source_file->filename access by macro_source_fullname
10298 call.
10299 (macro_lookup_inclusion): Remove the partial filenames checking code.
10300 (check_for_redefinition): New variables source_fullname and
10301 found_key_fullname. Replace any macro_source_file->filename access by
10302 macro_source_fullname call.
10303 (macro_undef): New variables source_fullname and key_fullname. Replace
10304 any macro_source_file->filename access by macro_source_fullname call.
10305 (macro_lookup_definition): New variables retval and source_fullname.
10306 Replace any macro_source_file->filename access by macro_source_fullname
10307 call.
10308 (foreach_macro): New variable key_fullname. Replace any
10309 macro_source_file->filename access by macro_source_fullname call.
10310 (foreach_macro_in_scope): New variable datum_fullname. Replace any
10311 macro_source_file->filename access by macro_source_fullname call.
10312 (new_macro_table): Add parameter comp_dir. Initialize T with it.
10313 (macro_source_fullname): New function.
10314 * macrotab.h (struct macro_source_file): Extent the filename field
10315 comment.
10316 (new_macro_table): New parameter comp_dir, add a comment for it.
10317 (macro_source_fullname): new declaration.
10318
10319 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10320
10321 * dwarf2read.c (dw2_map_symtabs_matching_filename): Move variable
10322 this_real_name to outer block. Use it also for
10323 compare_filenames_for_search.
10324 (dw2_expand_symtabs_matching): New variable this_real_name. Use it
10325 with dw2_get_real_path for file_matcher, considering also
10326 BASENAMES_MAY_DIFFER.
10327 (file_full_name): Prepend COMP_DIR even for relative lh->INCLUDE_DIRS.
10328
10329 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10330
10331 * dwarf2read.c (dw2_expand_symtabs_matching): Add basenames parameter
10332 to the file_matcher parameter. Pass 0 to it.
10333 (dwarf2_create_include_psymtab): Copy also DIRNAME.
10334 * psymtab.c (partial_map_symtabs_matching_filename): Drop handling of
10335 NULL psymtab_to_fullname result.
10336 (psymtab_to_fullname): Remove variable r. Never return NULL, assemble
10337 an expected filename instead.
10338 (expand_symtabs_matching_via_partial): Add basenames parameter to the
10339 file_matcher parameter. Call also psymtab_to_fullname, after newly
10340 considering BASENAMES_MAY_DIFFER.
10341 * source.c (rewrite_source_path): Remove static.
10342 * source.h (rewrite_source_path): New declaration.
10343 * symfile.h (struct quick_symbol_functions): Add basenames parameter to
10344 the expand_symtabs_matching field. Comment it.
10345 * symtab.c (file_matches): New function comment. Add parameter
10346 basenames, implement it.
10347 (search_symbols_file_matches): Add basenames parameter. Update the
10348 file_matches caller.
10349 (search_symbols): Match FILES also against symtab_to_fullname.
10350 Optimize it for BASENAMES_MAY_DIFFER.
10351
10352 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10353
10354 * source.c (print_source_lines_base): Print for TUI also "fullname".
10355 * tui/tui-data.c (init_content_element): Change tui_locator_element
10356 field to full_name.
10357 * tui/tui-data.h (struct tui_locator_element): Likewise.
10358 * tui/tui-disasm.c (tui_show_disassem_and_update_source): Rename
10359 tui_update_locator_filename calls to tui_update_locator_fullname.
10360 Replace symtab->filename refererence by symtab_to_fullname call.
10361 * tui/tui-out.c (tui_field_string): Check for "fullname" now.
10362 * tui/tui-source.c (tui_set_source_content): Change tui_locator_element
10363 field to full_name. Replace symtab->filename refererence by
10364 symtab_to_fullname call.
10365 (tui_show_symtab_source): Rename parameter to fullname. Change
10366 tui_locator_element field to full_name.
10367 * tui/tui-stack.c: Include source.h.
10368 (tui_set_locator_filename): Rename the declaration to ...
10369 (tui_set_locator_fullname): ... here. Rename its parameter to
10370 fullname, updates its comment.
10371 (tui_set_locator_info): Rename its parameter to fullname.
10372 (tui_set_locator_filename): Rename the definition to ...
10373 (tui_set_locator_fullname): ... here. Rename its parameter to
10374 fullname, updates its comment. Change tui_locator_element field to
10375 full_name.
10376 (tui_set_locator_info): Rename its parameter to fullname.
10377 (tui_set_locator_info): Rename callee to tui_set_locator_fullname.
10378 (tui_update_locator_filename): Rename to ...
10379 (tui_update_locator_fullname): ... here. Rename callee to
10380 tui_set_locator_fullname.
10381 (tui_show_frame_info): Replace symtab->filename refererence by
10382 symtab_to_fullname call.
10383 * tui/tui-stack.h (tui_update_locator_filename): Rename to ...
10384 (tui_update_locator_fullname): ... here.
10385 * tui/tui-winsource.c (tui_display_main): Rename the callee to
10386 tui_update_locator_fullname. Replace symtab->filename refererence by
10387 symtab_to_fullname call.
10388 * tui/tui.c (tui_show_source): Rename its parameter to fullname.
10389 Rename the callee to tui_update_locator_fullname.
10390 * tui/tui.h (tui_show_source): Rename its parameter to fullname.
10391
10392 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10393
10394 * ada-lang.c (user_select_syms): Replace symtab->filename refererences
10395 by symtab_to_filename_for_display calls.
10396 * breakpoint.c (print_breakpoint_location, resolve_sal_pc): Likewise.
10397 (clear_command): New variable sal_fullname, initialize it. Replace
10398 compare_filenames_for_search by filename_cmp with sal_fullname.
10399 (say_where, update_static_tracepoint): Replace symtab->filename
10400 refererences by symtab_to_filename_for_display calls.
10401 * cli/cli-cmds.c (edit_command, list_command, ambiguous_line_spec):
10402 Likewise.
10403 * dwarf2read.c: Include source.h.
10404 (fixup_go_packaging): Replace symtab->filename refererences by
10405 symtab_to_filename_for_display calls.
10406 * linespec.c (add_sal_to_sals): Rename variable filename to fullname.
10407 Replace symtab->filename refererences by symtab_to_filename_for_display
10408 calls.
10409 (create_sals_line_offset, convert_linespec_to_sals): New variable
10410 fullname, initialize it, replace symtab->filename reference by the
10411 variable.
10412 * linux-fork.c: Include source.h.
10413 (info_checkpoints_command): Replace symtab->filename refererences by
10414 symtab_to_filename_for_display calls.
10415 * macroscope.c (sal_macro_scope): Replace symtab->filename refererences
10416 by symtab_to_filename_for_display calls.
10417 * mdebugread.c: Include source.h.
10418 (psymtab_to_symtab_1): Replace symtab->filename refererences by
10419 symtab_to_filename_for_display calls.
10420 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file)
10421 (mi_cmd_file_list_exec_source_files): Likewise.
10422 * printcmd.c: Include source.h.
10423 (build_address_symbolic): Replace symtab->filename refererences by
10424 symtab_to_filename_for_display calls.
10425 * psymtab.c (partial_map_symtabs_matching_filename)
10426 (read_psymtabs_with_fullname): Call compare_filenames_for_search also
10427 with psymtab_to_fullname.
10428 * python/py-symtab.c (stpy_str): Replace symtab->filename refererences
10429 by symtab_to_filename_for_display calls.
10430 (stpy_get_filename): New variable filename, initialize it, use instead
10431 of symtab->filename refererences.
10432 (salpy_str): Make variable filename const char *. Replace
10433 symtab->filename refererences by symtab_to_filename_for_display calls.
10434 * skip.c: Include source.h and filenames.h.
10435 (skip_file_command): Remove const from the symtab variable. Replace
10436 symtab->filename refererences by symtab_to_fullname call.
10437 (function_name_is_marked_for_skip): New variables searched_for_fullname
10438 and fullname. Use them to search also with symtab's fullname.
10439 * source.c (find_source_lines): Replace symtab->filename refererences
10440 by symtab_to_filename_for_display calls.
10441 (print_source_lines_base): New variable filename, use it instead of
10442 symtab->filename. Replace symtab->filename refererences by
10443 symtab_to_filename_for_display calls.
10444 (line_info, forward_search_command): Replace symtab->filename
10445 refererences by symtab_to_filename_for_display calls.
10446 (reverse_search_command): Replace symtab->filename refererences by
10447 symtab_to_filename_for_display calls. New variable filename for it.
10448 * stack.c (frame_info): Likewise.
10449 * symmisc.c: Include source.h.
10450 (dump_objfile, dump_symtab_1, maintenance_print_symbols)
10451 (maintenance_info_symtabs): Replace symtab->filename refererences by
10452 symtab_to_filename_for_display calls.
10453 * symtab.c (iterate_over_some_symtabs): Call
10454 compare_filenames_for_search also with symtab_to_fullname.
10455 (lookup_symbol_aux_quick, basic_lookup_transparent_type_quick): Replace
10456 symtab->filename refererences by symtab_to_filename_for_display calls.
10457 (find_line_symtab): Replace symtab->filename refererences by
10458 symtab_to_filename_for_display calls.
10459 (file_matches): Replace filename_cmp by compare_filenames_for_search.
10460 (print_symbol_info): Make the last parameter const char *. New
10461 variable s_filename. Use it in the function.
10462 (symtab_symbol_info): Make the last_filename variable const char *.
10463 Replace symtab->filename refererences by symtab_to_filename_for_display
10464 calls.
10465 (rbreak_command): New variable fullname. Use it. Replace
10466 symtab->filename refererence by symtab_to_filename_for_display call.
10467 * tracepoint.c (set_traceframe_context, trace_find_line_command)
10468 (print_one_static_tracepoint_marker): Replace symtab->filename
10469 refererences by symtab_to_filename_for_display calls.
10470 * tui/tui-source.c (tui_set_source_content): New variables filename and
10471 s_filename. Replace symtab->filename refererences by this variable.
10472 Replace other symtab->filename refererences by
10473 symtab_to_filename_for_display calls.
10474
10475 2013-02-03 Eldar Gaynetdinov <hal9000ed2k@gmail.com>
10476 Jan Kratochvil <jan.kratochvil@redhat.com>
10477
10478 Add a new variable that controls a way in which filenames are
10479 displayed.
10480 * NEWS (set filename-display): New entry.
10481 * source.c (filename_display_basename, filename_display_relative)
10482 (filename_display_absolute, filename_display_kind_names)
10483 (filename_display_string, show_filename_display_string)
10484 (symtab_to_filename_for_display): New.
10485 (_initialize_source): Added initialization of 'filename-display'
10486 variable.
10487 * source.h (symtab_to_filename_for_display): Added declaration.
10488 * stack.c (print_frame): Added new variable and calling of a new
10489 function and condition with this variable. Changed third argument of
10490 calling of a function.
10491
10492 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10493
10494 * tui/tui-data.c (init_win_info, tui_del_window, tui_free_window):
10495 Rename field reference filename to fullname.
10496 * tui/tui-data.h (struct tui_source_info): Rename field filename to
10497 fullname. New comment for it.
10498 * tui/tui-source.c (tui_set_source_content): Rename field reference
10499 filename to fullname. Initialize field by symtab_to_fullname now.
10500 * tui/tui-winsource.c (tui_update_breakpoint_info): Rename field
10501 reference filename to fullname. Use symtab_to_fullname during
10502 comparison.
10503
10504 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10505
10506 Code cleanup.
10507 * dwarf2read.c (dw2_expand_symtabs_with_filename): Rename to ...
10508 (dw2_expand_symtabs_with_fullname): ... here. Rename parameter
10509 filename to fullname. Rename variable this_name to this_fullname.
10510 Lowercase FILENAME_CMP call.
10511 (dw2_find_symbol_file): New comment for the returned string.
10512 (dwarf2_gdb_index_functions): Rename the function to
10513 dw2_expand_symtabs_with_fullname.
10514 * psymtab.c (read_psymtabs_with_filename): Rename to ...
10515 (read_psymtabs_with_fullname): ... here. Rename parameter filename to
10516 fullname.
10517 (psym_functions): Rename the function to read_psymtabs_with_fullname.
10518 * symfile.h (struct quick_symbol_functions): Rename field
10519 expand_symtabs_with_filename to expand_symtabs_with_fullname and its
10520 parameter filename to fullname. Document returned string meaning for
10521 find_symbol_file.
10522 * symtab.c (find_line_symtab): Rename the called function to
10523 expand_symtabs_with_fullname.
10524
10525 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10526
10527 Code cleanup.
10528 * breakpoint.c (clear_command): Remove variable is_abs, unify the
10529 call of filename_cmp with compare_filenames_for_search.
10530 * dwarf2read.c (dw2_map_symtabs_matching_filename): Remove variable
10531 is_abs, unify the call of FILENAME_CMP with
10532 compare_filenames_for_search. New gdb_asserts for real_path and name.
10533 Unify the call of compare_filenames_for_search with FILENAME_CMP.
10534 * psymtab.c (partial_map_symtabs_matching_filename): Likewise.
10535 * symfile.h (struct quick_symbol_functions): Extend the comment for
10536 map_symtabs_matching_filename.
10537 * symtab.c (compare_filenames_for_search): Remove the function comment
10538 relative path requirement. Handle absolute filenames, with a comment.
10539 (iterate_over_some_symtabs): Remove variable is_abs, unify the call of
10540 FILENAME_CMP with compare_filenames_for_search. New gdb_asserts for
10541 real_path and name. Unify the call of compare_filenames_for_search
10542 with FILENAME_CMP.
10543 (iterate_over_symtabs): New gdb_assert on REAL_PATH.
10544
10545 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10546
10547 Code cleanup.
10548 * breakpoint.c (print_breakpoint_location): Replace bp_location field
10549 source_file references by symtab field references. Remove variables
10550 sal and fullname.
10551 (momentary_breakpoint_from_master, add_location_to_breakpoint):
10552 (clear_command, say_where): Replace bp_location field source_file
10553 references by symtab field references.
10554 (bp_location_dtor): Remove the source_file reference.
10555 (update_static_tracepoint): Replace bp_location field source_file
10556 references by symtab field references.
10557 (breakpoint_free_objfile): New function.
10558 * breakpoint.h (struct bp_location): Extend the comment for line_number.
10559 Replace the field source_file by field symtab, extend its comment.
10560 (breakpoint_free_objfile): New declaration.
10561 * objfiles.c (free_objfile): Call breakpoint_free_objfile.
10562 * tui/tui-winsource.c (tui_update_breakpoint_info): Replace bp_location
10563 field source_file references by symtab field references.
10564
10565 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10566
10567 Replace xfullpath calls by gdb_realpath calls.
10568 * cli/cli-cmds.c (find_and_open_script): Remove xfullpath from the
10569 function comment.
10570 * dwarf2read.c (dw2_map_expand_apply): Remove parameter full_path.
10571 Remove it from the iterate_over_some_symtabs call.
10572 (dw2_map_symtabs_matching_filename): Remove parameter full_path.
10573 Remove it from the dw2_map_expand_apply calls, remove a block handling
10574 it.
10575 * psymtab.c (partial_map_expand_apply): Remove parameter full_path.
10576 Remove it from the iterate_over_some_symtabs call.
10577 (partial_map_symtabs_matching_filename): Remove parameter full_path.
10578 Remove it from the partial_map_expand_apply calls, remove a block
10579 handling it. Drop gdb_realpath call and cleanups from the real_path
10580 handling.
10581 * source.c (openp): Drop the comment part about xfullpath. Replace
10582 xfullpath calls by gdb_realpath calls.
10583 (find_and_open_source): Replace xfullpath call by gdb_realpath call.
10584 * symfile.h (struct quick_symbol_functions): Remove parameter full_path
10585 from method map_symtabs_matching_filename and its comment.
10586 * symmisc.c (maintenance_print_msymbols): Replace xfullpath call by
10587 gdb_realpath call.
10588 * symtab.c (iterate_over_some_symtabs): Remove parameter full_path,
10589 remove it also from the function comment, remove a block handling it.
10590 Drop gdb_realpath call and cleanups from the real_path handling.
10591 (iterate_over_symtabs): Drop variable full_path and its use.
10592 * symtab.h (iterate_over_some_symtabs): Remove parameter full_path.
10593 * utils.c (xfullpath): Remove.
10594 * utils.h (xfullpath): Remove.
10595
10596 2013-02-01 Andreas Tobler <andreast@fgznet.ch>
10597
10598 * Makefile.in (ALL_TARGET_OBS): Add ppc64-tdep.o.
10599 (HFILES_NO_SRCDIR): Add ppc64-tdep.h.
10600 (ALLDEPFILES): Add ppc64-tdep.c.
10601 * configure.tgt (powerpc-*-linux* | powerpc64-*-linux*): Add
10602 ppc64-tdep.o to gdb_target_obs.
10603 * ppc64-tdep.h: New file.
10604 * ppc64-tdep.c: New file.
10605 (insn_d, insn_ds, insn_xfx, ppc64_desc_entry_point): Move from
10606 ppc-linux-tdep.c to here.
10607 (PPC64_STANDARD_LINKAGE1_LEN, PPC64_STANDARD_LINKAGE2_LEN)
10608 (PPC64_STANDARD_LINKAGE2_LEN): Likewise and use ARRAY_SIZE macro.
10609 (ppc64_standard_linkage1_target, ppc64_standard_linkage2_target)
10610 (ppc64_standard_linkage3_target, ppc64_skip_trampoline_code): Move
10611 from ppc-linux-tdep.c to here.
10612 (ppc64_convert_from_func_ptr_addr): Rename from
10613 ppc64_linux_convert_from_func_ptr_addr to
10614 ppc64_convert_from_func_ptr_addr and move from ppc-linux-tdep.c to
10615 here.
10616 * rs6000-tdep.c:
10617 (read_insn): Move from ppc-linux-tdep.c to here.
10618 (insns_match_pattern, insn_d_field, insn_ds_field): Move
10619 from ppc-linux-tdep.c to here and rename them with the ppc_ prefix.
10620 * ppc-linux-tdep.c: Include ppc64-tdep.h.
10621 Removed above functions.
10622 (ppc_linux_init_abi): Adjust.
10623
10624 2013-02-01 Aleksandar Ristovski <aristovski@qnx.com>
10625
10626 * ada-valprint.c (ada_print_floating): Remove unused 'len'.
10627
10628 2013-02-01 Aleksandar Ristovski <aristovski@qnx.com>
10629
10630 * ada-lang.c (assign_aggregate): Remove unused 'is_array_aggregate'.
10631
10632 2013-02-01 Pedro Alves <palves@redhat.com>
10633
10634 * dummy-frame.c (deprecated_pc_in_call_dummy): Delete function.
10635 * frame.h (deprecated_pc_in_call_dummy): Delete declaration.
10636
10637 2013-02-01 Jan Kratochvil <jan.kratochvil@redhat.com>
10638
10639 * elfread.c (elf_symfile_read): Limit separate debug info additions to
10640 files with no separate debug info.
10641 * objfiles.c (add_separate_debug_objfile): Add gdb_assert calls.
10642 * symfile.c (read_symbols): Call find_separate_debug_file_in_section
10643 only for files with no separate debug info.
10644
10645 2013-01-31 Tom Tromey <tromey@redhat.com>
10646
10647 * jit.c (jit_program_space_data): Rename from jit_inferior_data;
10648 change type.
10649 (struct jit_program_space_data): Rename from jit_inferior_data.
10650 Update comments.
10651 (get_jit_program_space_data): Rename from get_jit_inferior_data.
10652 Change return type. Attach data to program space.
10653 (jit_program_space_data_cleanup): Rename from
10654 jit_inferior_data_cleanup; change argument type.
10655 (jit_read_descriptor): Change 'inf_data' argument to 'ps_data',
10656 change type.
10657 (jit_register_code): Update.
10658 (jit_update_inferior_cache): Remove.
10659 (jit_breakpoint_deleted): Get jit data from the location's program
10660 space.
10661 (jit_breakpoint_re_set_internal): Rename 'inf_data' argument to
10662 'ps_data', change type.
10663 (jit_inferior_init, jit_breakpoint_re_set_internal)
10664 (jit_event_handler): Update.
10665 (free_objfile_data): Get data from objfile's program space.
10666 (_initialize_jit): Update.
10667
10668 2013-01-31 Tom Tromey <tromey@redhat.com>
10669
10670 PR gdb/13987:
10671 * jit.c (struct jit_inferior_data) <cached_code_address,
10672 jit_breakpoint>: New fields.
10673 (jit_breakpoint_re_set_internal): Fix logging. Only create
10674 breakpoint if cached address has changed.
10675 (jit_update_inferior_cache, jit_breakpoint_deleted): New
10676 functions.
10677 (_initialize_jit): Register breakpoint deleted observer.
10678
10679 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
10680
10681 * infrun.c (handle_syscall_event): Remove unused gdbarch.
10682 (save_infcall_suspend_state): Ifdef out unused inf.
10683 (restore_infcall_suspend_state): Ifdef out unused inf.
10684 * jit.c (jit_register_code): Remove unused i, b, inf_data.
10685 (jit_frame_sniffer): Remove unused inf_data.
10686
10687 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
10688
10689 * c-exp.y (classify_inner_name): Remove unused type.
10690 * c-lang.c (c_printstr): Remove unused byte_order, i, things_printed,
10691 in_quotes, need_comma, wchar_buf, output, cleanup, iter, finished,
10692 need_escape.
10693 (c_get_string): Remove unused kind.
10694 * c-typeprint.c (c_type_print_args): Remove unused i, len, args, table2.
10695
10696 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
10697
10698 * charset.c (intermediate_encoding): Remove unused i.
10699 * completer.c (signal_completer): Remove unused i.
10700 * continuations.c (discard_my_continuations_1): Remove unused
10701 continuation_ptr.
10702 * corelow.c (core_close): Remove unuseD name.
10703 (get_core_siginfo): Remove unused pid.
10704 * cp-namespace.c (cp_lookup_symbol_imports_or_template): Remove unused
10705 i, cps.
10706 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Remove unused base_offset.
10707 (loclist_describe_location): Remove unused first.
10708 * event-top.c (command_line_handler): Remove unused got_eof.
10709 * exec.c (exec_close_1): Remove unused need_symtab_cleanup.
10710 (resize_section_table): Remove unused old_value.
10711 * gdb_bfd.c (gdb_bfd_map_section): Remove unused header.
10712 * gnu-v3-abi.c (compute_vtable_size): Remove unused addr.
10713 * i386-tdep.c (i386_process_record): Remove unused rex.
10714 * infcmd.c (get_return_value): Remove unused uiout.
10715 * jv-lang.c (type_from_class): Remove unused is_array.
10716 * jv-valprint.c (java_val_print): Remove unused i.
10717 * linux-nat.c (linux_nat_stop_lwp): Remove unused ptid.
10718 * linux-thread-db.c (thread_db_find_new_threads_2): Remove unuseD pid.
10719 * m2-typeprint.c (m2_print_type): Remove unused code.
10720 * macroexp.c (get_character_constant): Remove unused body_start.
10721 (macro_stringify): Remove unused result.
10722 * objc-lang.c (find_methods): Remove unused gdbarch.
10723 * objfiles.c (filter_overlapping_sections): Remove unused abfd1, abfd2.
10724 * regcache.c (regcache_cooked_read): Remove unused gdbarch.
10725 * stack.c (print_frame_args): Remove unused summary.
10726 * thread.c (thread_apply_command): Remove unused p.
10727 * valarith.c (value_x_unop): Remove unused mangle_ptr.
10728 * valops.c (search_struct_method): Remove unused skip.
10729 * valprint.c (generic_val_print): Remove unused byte_order.
10730 * varobj.c (varobj_update): Remove unused changed.
10731 * cli/cli-cmds.c (complete_command): Remove unused next_item.
10732 (alias_command): Remove unused c.
10733 * mi/mi-cmd-catch.c (mi_catch_load_unload): Remove unused c.
10734 * mi/mi-main.c (mi_cmd_data_write_register_values): Remove unused
10735 format.
10736 (mi_cmd_data_write_memory): Remove unused word_format.
10737 (mi_cmd_data_write_memory_bytes): Remove unused r.
10738 * python/py-gdb-readline.c (gdbpy_readline_wrapper): Remove unused
10739 p_start, p_end.
10740 * python/python.c (_initialize_python): Remove unused cmd_name, cmd.
10741 * tui/tui-disasm.c (tui_set_disassem_content): Remove unused
10742 line_width.
10743
10744 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
10745
10746 * dwarf2-frame.c (dwarf2_compile_cfa_to_ax): Remove unused num_regs.
10747 * symtab.c (iterate_over_symtabs): Remove unused s.
10748 (find_pc_sect_symtab): Remove unused pspAce.
10749 (find_pc_sect_line): Remove unused alt_symtab.
10750 (find_pcs_for_symtab_line): Remove unused ix, previous_function.
10751 (completion_list_add_name): Remove unused newsize.
10752
10753 2013-01-31 Tom Tromey <tromey@redhat.com>
10754
10755 PR c++/14998:
10756 * dwarf2read.c (read_tag_ptr_to_member_type): Handle
10757 TYPE_CODE_FUNC.
10758
10759 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
10760
10761 * target.c (target_read_string): Remove unused origlen.
10762
10763 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
10764
10765 * auto-load.c (auto_load_expand_dir_vars): Remove unused dir_vec.
10766 * ax-gdb.c (gen_printf): Remove unused expr, i, bot, fr, flen, fmt.
10767 * ax-general.c (ax_print): Remove unused is_float.
10768 * blockframe.c (block_innermost_frame): Remove unused start, end.
10769 * break-catch-sig.c (catch_signal_command): Remove unused gdbarch.
10770
10771 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
10772
10773 * solib-svr4.c (svr4_keep_data_in_core): Remove unused lmo.
10774 (svr4_read_so_list): Remove unused lmo.
10775 * solib-target.c (solib_target_relocate_section_addresses): Remove
10776 unused flags.
10777
10778 2013-01-30 Tom Tromey <tromey@redhat.com>
10779
10780 * hppa-tdep.c (read_unwind_info): Use SECT_OFF_TEXT, not "0".
10781
10782 2013-01-30 Tom Tromey <tromey@redhat.com>
10783
10784 * symfile.c (get_file_crc): Use bfd_calc_gnu_debuglink_crc32.
10785 * utils.c (gnu_debuglink_crc32): Remove.
10786 * utils.h (gnu_debuglink_crc32): Don't declare.
10787
10788 2013-01-30 Tom Tromey <tromey@redhat.com>
10789
10790 * dwarf2read.c (compute_delayed_physnames, read_call_site_scope)
10791 (read_structure_type, read_enumeration_type): Remove cast.
10792
10793 2013-01-30 Tom Tromey <tromey@redhat.com>
10794
10795 * dwarf2read.c (read_namespace_type): Remove cast.
10796 (read_typedef): Likewise.
10797
10798 2013-01-29 Tom Tromey <tromey@redhat.com>
10799
10800 * dwarf2read.c (free_dwo_file): Remove assert.
10801
10802 2013-01-29 Tom Tromey <tromey@redhat.com>
10803
10804 * value.c (deprecated_set_value_modifiable): Remove.
10805 * value.h (deprecated_set_value_modifiable): Remove.
10806
10807 2013-01-28 Doug Evans <dje@google.com>
10808
10809 * dwarf2loc.c (dwarf2_find_location_expression): Don't add base address
10810 to addresses from dwo files.
10811
10812 2013-01-25 Siva Chandra Reddy <sivachandra@google.com>
10813
10814 * valops.c (find_overload_match): Remove unused argument 'lax'.
10815 * value.h: Remove unused argument 'lax' from the declaration of
10816 find_overload_match.
10817 * eval.c (value_subexp_standard): Do not pass a 'lax' argument
10818 to find_overload_match.
10819 * valarith.c (value_user_defined_cpp_op): Do not pass a 'lax'
10820 argument to find_overload_match.
10821
10822 2013-01-25 Tom Tromey <tromey@redhat.com>
10823
10824 * dwarf2read.c (processing_has_namespace_info): Remove.
10825 (struct dwarf2_cu) <processing_has_namespace_info>: New field.
10826 (process_die, read_func_scope, dwarf2_start_symtab)
10827 (new_symbol_full): Update.
10828
10829 2013-01-25 Tom Tromey <tromey@redhat.com>
10830
10831 * cp-namespace.c (cp_set_block_scope): Remove.
10832 * cp-support.h (cp_set_block_scope): Remove.
10833 * dbxread.c: Include block.h.
10834 (cp_set_block_scope): New function.
10835 (process_one_symbol): Update.
10836 * dwarf2read.c (read_func_scope): Use block_set_scope.
10837
10838 2013-01-25 Pedro Alves <palves@redhat.com>
10839
10840 * remote.c (add_current_inferior_and_thread): Tweak comment.
10841
10842 2013-01-25 Tom Tromey <tromey@redhat.com>
10843
10844 * cp-namespace.c (cp_scan_for_anonymous_namespaces): Update.
10845 (cp_add_using_directive): Add 'copy_names' argument.
10846 * cp-support.h (cp_add_using_directive): Update.
10847 (struct using_direct) <import_src, import_dest, alias,
10848 declaration>: Now const.
10849 * dwarf2read.c (read_import_statement): Use obconcat.
10850 Don't copy names passed to cp_add_using_directive.
10851
10852 2013-01-25 Tom Tromey <tromey@redhat.com>
10853
10854 * c-exp.y (qualified_name): Use TYPE_SAFE_NAME.
10855
10856 2013-01-25 Pedro Alves <palves@redhat.com>
10857
10858 * remote.c (stop_reply_extract_thread): New.
10859 (add_current_inferior_and_thread): New parameter 'wait_status'.
10860 Handle it.
10861 (remote_start_remote): Pass wait status to
10862 add_current_inferior_and_thread.
10863 (extended_remote_run): Update comment.
10864 (extended_remote_create_inferior_1): Pass wait status to
10865 add_current_inferior_and_thread.
10866
10867 2013-01-25 Andrew Burgess <aburgess@broadcom.com>
10868 Ulrich Weigand <uweigand@de.ibm.com>
10869
10870 * valarith.c (value_vector_widen): New function for replicating a
10871 scalar into a vector.
10872 (value_binop): Use value_vector_widen to widen scalar to vector
10873 rather than casting, this better matches gcc C behaviour.
10874 * valops.c (value_casst): Update logic for casting between vector
10875 types, and for casting from scalar to vector, try to match gcc C
10876 behaviour.
10877 * value.h (value_vector_widen): Declare.
10878 * opencl-lang.c (opencl_value_cast): New opencl specific casting
10879 function, handle special case for casting scalar to vector.
10880 (opencl_relop): Use opencl_value_cast.
10881 (evaluate_subexp_opencl): Use opencl_value_cast instead of
10882 value_cast, and handle BINOP_ASSIGN, UNOP_CAST, and UNOP_CAST_TYPE
10883 in order to use opencl_value_cast.
10884
10885 2013-01-25 Yao Qi <yao@codesourcery.com>
10886
10887 * event-loop.c: Include "queue.h".
10888 (gdb_event_p): New typedef.
10889 (DECLARE_QUEUE_P): Use.
10890 (DEFINE_QUEUE_P): Use.
10891 (async_queue_event): Remove.
10892 (gdb_event_xfree): New.
10893 (initialize_event_loop): New.
10894 (process_event): Use QUEUE macros.
10895 (event_queue): Remove.
10896 (gdb_wait_for_event): Caller update.
10897 (check_async_event_handlers): Likewise.
10898 (poll_timers): Likewise.
10899 * event-loop.h (initialize_event_loop): Declare.
10900 * event-loop.c (gdb_event_xfree): New.
10901 * top.c (gdb_init): Call initialize_event_loop.
10902
10903 2013-01-25 Yao Qi <yao@codesourcery.com>
10904
10905 * event-loop.c (async_queue_event): Remove one parameter
10906 'position'. Remove code handling 'position' == TAIL.
10907 (gdb_wait_for_event): Caller update.
10908 (check_async_event_handlers): Caller update.
10909 (poll_timers): Caller update.
10910 * event-loop.h (enum queue_position): Remove.
10911
10912 2013-01-25 Maxim Kuvyrkov <maxim@kugelworks.com>
10913
10914 * MAINTAINERS: Update my email.
10915
10916 2013-01-25 Yao Qi <yao@codesourcery.com>
10917
10918 * main.c (print_gdb_help): Remove "--epoch" from the help
10919 message.
10920
10921 2013-01-24 Ulrich Weigand  <uweigand@de.ibm.com>
10922
10923 * symtab.c (skip_prologue_using_sal): Consider a file
10924 change the same as an increased line number
10925
10926 2013-01-24 Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
10927
10928 * MAINTAINERS (Write After Approval): Add myself to the list.
10929
10930 2013-01-24 Tom Tromey <tromey@redhat.com>
10931
10932 * ada-lang.h (ada_decode_symbol): Make return type const.
10933 * ada-lang.c (ada_decode_symbol): Likewise.
10934
10935 2013-01-23 Doug Evans <dje@google.com>
10936
10937 * linespec.c (find_linespec_symbols): Make static.
10938
10939 2013-01-23 Tiago Stürmer Daitx <tdaitx@linux.vnet.ibm.com>
10940
10941 * ppc-sysv-tdep.c (ppc64_sysv_abi_return_value): Set correct
10942 type on float conversion for complex type.
10943
10944 2013-01-23 Siva Chandra Reddy <sivachandra@google.com>
10945
10946 Add a new class gdb.Architecture which exposes GDB's
10947 internal representation of architecture via GDB Python API.
10948 * Makefile.in: Add entries corresponding to the new file
10949 python/py-arch.c.
10950 * NEWS (Python Scripting): Add entries for the new class
10951 gdb.Architecture and the new method gdb.Frame.architecture.
10952 * python/py-arch.c: Implement gdb.Architecture class.
10953 * python/py-frame.c (frapy_arch): Implement the method
10954 gdb.Frame.architecture().
10955 (frame_object_methods): Add 'architecture' to the method table.
10956 * python/python-internal.h: Add declarations of new utility
10957 functions.
10958 * python/python.c (_initialize_python): Initialize
10959 gdb.Architecture class.
10960
10961 2013-01-23 Doug Evans <dje@google.com>
10962
10963 Work around binutils/15021.
10964 * dwarf2read.c (dwarf2_per_cu_data): Split imported_symtabs and
10965 type_unit_group out of union s. All uses updated.
10966 (read_index_from_section): Watch for index version 8.
10967 (follow_die_sig): If using .gdb_index version <= 7, record the TU as
10968 an imported symtab.
10969 (write_psymtabs_to_index): Increment version number to 8.
10970
10971 2013-01-22 Pedro Alves <palves@redhat.com>
10972
10973 * annotate.c (breakpoint_changed): Skip if breakpoint is not
10974 user-visible.
10975
10976 2013-01-22 Pedro Alves <palves@redhat.com>
10977
10978 * annotate.c (annotate_breakpoints_changed): Rename to ...
10979 (annotate_breakpoints_invalid): ... this. Make static.
10980 (breakpoint_changed): Adjust.
10981 (_initialize_annotate): Always install the observers. Install a
10982 "breakpoint_created" observer.
10983 * annotate.h (annotate_breakpoints_changed): Delete declaration.
10984 * breakpoint.c (set_breakpoint_condition)
10985 (breakpoint_set_commands, do_map_commands_command)
10986 (init_raw_breakpoint, clear_command, set_ignore_count)
10987 (enable_breakpoint_disp): No longer call
10988 annotate_breakpoints_changed.
10989
10990 2013-01-22 Pedro Alves <palves@redhat.com>
10991
10992 * annotate.c: Include "inferior.h".
10993 (frames_invalid_emitted)
10994 (breakpoints_invalid_emitted): New globals.
10995 (async_background_execution_p): New function.
10996 (annotate_breakpoints_changed, annotate_frames_invalid): Skip
10997 emitting the annotation if it has already been emitted.
10998 (annotate_display_prompt): New function.
10999 * annotate.h (annotate_display_prompt): New declaration.
11000 * event-top.c: Include annotate.h.
11001 (display_gdb_prompt): Call annotate_display_prompt.
11002
11003 2013-01-22 Pedro Alves <palves@redhat.com>
11004
11005 * annotate.c (ignore_count_changed): Delete.
11006 (annotate_breakpoints_changed): Don't clear ignore_count_changed.
11007 (annotate_ignore_count_change): Delete.
11008 (annotate_stopped): Don't emit a delayed breakpoints-changed
11009 annotation.
11010 * annotate.h (annotate_ignore_count_change): Delete.
11011 * breakpoint.c (bpstat_check_breakpoint_conditions): Don't call
11012 annotate_ignore_count_change.
11013
11014 2013-01-22 Tom Tromey <tromey@redhat.com>
11015
11016 * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>: Only
11017 require_rvalue for a register location.
11018
11019 2013-01-21 Marc Khouzam <marc.khouzam@ericsson.com>
11020
11021 * breakpoint.c (print_one_breakpoint_location): Add MI
11022 field 'thread-groups' when printing a breakpoint.
11023 (output_thread_groups): New function.
11024
11025 2013-01-21 Siva Chandra Reddy <sivachandra@google.com>
11026
11027 * python/lib/gdb/commands/explore.py
11028 (CompoundExplorer.explore_expr): Correct the name of a method
11029 being invoked.
11030 (ExploreTypeCommand.invoke): Add a missing 'return'.
11031
11032 2013-01-21 Tom Tromey <tromey@redhat.com>
11033
11034 * gdb_obstack.h (obconcat): Move declaration here, from...
11035 * symfile.h (obconcat): ... here.
11036 * gdb_obstack.c: New file.
11037 (obconcat): Move from...
11038 * symfile.c (obconcat): ... here.
11039 * Makefile.in (SFILES): Add gdb_obstack.c.
11040 (COMMON_OBS): Add gdb_obstack.o.
11041
11042 2013-01-21 Tom Tromey <tromey@redhat.com>
11043
11044 * symfile.h (obsavestring): Don't declare.
11045 * symfile.c (obsavestring): Remove.
11046 * ada-exp.y: Use obstack_copy0, not obsavestring.
11047 * ada-lang.c: Use obstack_copy0, not obsavestring.
11048 * coffread.c: Use obstack_copy0, not obsavestring.
11049 * cp-namespace.c: Use obstack_copy0, not obsavestring.
11050 * dbxread.c: Use obstack_copy0, not obsavestring.
11051 * dwarf2read.c: Use obstack_copy0, not obsavestring.
11052 * jit.c: Use obstack_copy0, not obsavestring.
11053 * mdebugread.c: Use obstack_copy0, not obsavestring.
11054 * psymtab.c: Use obstack_copy0, not obsavestring.
11055 * stabsread.c: Use obstack_copy0, not obsavestring.
11056 * xcoffread.c: Use obstack_copy0, not obsavestring.
11057
11058 2013-01-21 Tom Tromey <tromey@redhat.com>
11059
11060 * dwarf2read.c (fixup_go_packaging): Save package name
11061 on objfile obstack.
11062 * gdbtypes.c (init_type): Don't copy name.
11063
11064 2013-01-21 Tom Tromey <tromey@redhat.com>
11065
11066 * dwarf2read.c (struct partial_die_info) <name, scope>: Now
11067 const.
11068 (struct attribute) <u.str>: Now const.
11069 (struct fnfieldlist) <name>: Now const.
11070 (dw2_get_file_names_reader, init_cutu_and_read_dies): Update.
11071 (partial_die_parent_scope): Make return type const.
11072 (partial_die_full_name, add_partial_symbol): Update.
11073 (dwarf2_compute_name, dwarf2_full_name, dwarf2_physname): Make
11074 'name' const.
11075 (find_file_and_directory): Make 'name' and 'comp_dir' const.
11076 (read_file_scope, read_func_scope, dwarf2_add_field)
11077 (dwarf2_add_member_fn, read_structure_type)
11078 (process_enumeration_scope, read_array_type, read_module_type)
11079 (read_base_type, read_subrange_type): Update.
11080 (dwarf2_start_symtab): Make 'name' and 'comp_dir' const.
11081 (new_symbol_full, guess_full_die_structure_name): Update.
11082 (dwarf2_canonicalize_name): Return const type. Make 'name' const.
11083 (dwarf2_name): Return const type.
11084 (dwarf_decode_macro_bytes, dwarf_decode_macros): Make 'comp_dir'
11085 const.
11086
11087 2013-01-21 Tom Tromey <tromey@redhat.com>
11088
11089 * gdbtypes.c (init_type): Make 'name' const.
11090 * gdbtypes.h (init_type): Update.
11091
11092 2013-01-21 Tom Tromey <tromey@redhat.com>
11093
11094 * buildsym.c (patch_subfile_names): Use set_last_source_file.
11095 (start_symtab): Make 'name' and 'dirname' const. Use
11096 set_last_source_file.
11097 (restart_symtab, reset_symtab_globals): Use set_last_source_file.
11098 (last_source_file): Define. Now static.
11099 (set_last_source_file, get_last_source_file): New functions.
11100 * buildsym.h (last_source_file): Don't declare.
11101 (start_symtab): Update.
11102 (set_last_source_file, get_last_source_file): Declare.
11103 * coffread.c (complete_symtab): Use set_last_source_file.
11104 (coff_end_symtab): Likewise.
11105 (coff_symtab_read): Use set_last_source_file, get_last_source_file.
11106 * dbxread.c (read_dbx_symtab, read_ofile_symtab): Use
11107 set_last_source_file.
11108 (process_one_symbol): Use get_last_source_file.
11109 * mdebugread.c (parse_partial_symbols): Use set_last_source_file.
11110 (psymtab_to_symtab_1): Use get_last_source_file.
11111 * xcoffread.c (process_linenos): Use get_last_source_file.
11112 (complete_symtab): Use set_last_source_file.
11113 (read_xcoff_symtab): Use set_last_source_file, get_last_source_file.
11114 (scan_xcoff_symtab): Use set_last_source_file.
11115
11116 2013-01-21 Tom Tromey <tromey@redhat.com>
11117
11118 * symtab.c (struct demangled_name_entry) <mangled>: Now const.
11119 (symbol_set_names): Remove casts. Handle field const-ness.
11120
11121 2013-01-21 Tom Tromey <tromey@redhat.com>
11122
11123 * dwarf2read.c (new_symbol_full): Remove cast.
11124 * symtab.c (symbol_set_demangled_name): Make 'name' const.
11125 * symtab.h (symbol_set_demangled_name): Update.
11126
11127 2013-01-21 Tom Tromey <tromey@redhat.com>
11128
11129 * main.c (captured_main): Call bfd_init.
11130
11131 2013-01-21 Tom Tromey <tromey@redhat.com>
11132
11133 * gnu-v2-abi.c (_initialize_gnu_v2_abi): Don't set default ABI.
11134 * gnu-v3-abi.c (_initialize_gnu_v3_abi): Set default ABI.
11135 * minsyms.c (install_minimal_symbols): Don't check for _Z symbols.
11136 * NEWS: Update.
11137
11138 2013-01-21 Jan Kratochvil <jan.kratochvil@redhat.com>
11139
11140 * symmisc.c (maintenance_print_msymbols): Check also ST_DEV.
11141
11142 2013-01-21 Jan Kratochvil <jan.kratochvil@redhat.com>
11143
11144 Fix gdb.fortran/common-block.exp crash in PIE mode.
11145 * dwarf2read.c (new_symbol_full) <DW_TAG_common_block>: Use
11146 LOC_COMMON_BLOCK.
11147 * f-valprint.c (info_common_command_for_block): Expect
11148 LOC_COMMON_BLOCK in gdb_assert.
11149 * symtab.h (struct general_symbol_info): Update comment for the
11150 common_block member.
11151 (domain_enum): Extend comment for the COMMON_BLOCK_DOMAIN member.
11152 (enum address_class): New member LOC_COMMON_BLOCK.
11153
11154 2013-01-18 David Blaikie <dblaikie@gmail.com>
11155
11156 * MAINTAINERS (Write After Approval): Add "David Blaikie".
11157
11158 2013-01-18 Tom Tromey <tromey@redhat.com>
11159
11160 PR c++/14999:
11161 * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>:
11162 Call require_rvalue.
11163
11164 2013-01-18 Yao Qi <yao@codesourcery.com>
11165
11166 * dbxread.c (dbx_psymtab_to_symtab): Delete the declaration.
11167 (dbx_read_symtab): New declaration.
11168 (dbx_psymtab_to_symtab): Delete.
11169 (dbx_read_symtab): Rename from dbx_psymtab_to_symtab.
11170 Rename parameter PST to SELF. Exchanged two parameters.
11171 (start_psymtab): Caller update.
11172 * dwarf2read.c (dwarf2_psymtab_to_symtab): Delete the declaration.
11173 (dwarf2_read_symtab): New declaration.
11174 (dwarf2_psymtab_to_symtab): Delete.
11175 (dwarf2_read_symtab): Rename from dwarf2_psymtab_to_symtab.
11176 Rename parameter PST to SELF. Exchanged two parameters.
11177 (create_partial_symtab): Caller update.
11178 * mdebugread.c (mdebug_psymtab_to_symtab): Delete.
11179 (mdebug_read_symtab): Rename from mdebug_psymtab_to_symtab.
11180 Rename parameter PST to SELF. Exchanged two parameters.
11181 (parse_partial_symbols, new_psymtab): Caller update.
11182 * psympriv.h (struct partial_symtab) <read_symtab>: Exchange
11183 two parameters.
11184 * psymtab.c (psymtab_to_symtab): Caller update.
11185 * xcoffread.c (xcoff_psymtab_to_symtab): Delete.
11186 (xcoff_read_symtab): Rename from xcoff_psymtab_to_symtab.
11187 Rename parameter PST to SELF. Exchanged two parameters.
11188 (xcoff_start_psymtab): Caller update.
11189
11190 2013-01-18 Yao Qi <yao@codesourcery.com>
11191
11192 * infrun.c (proceed): Rename local variable 'oneproc' to
11193 'force_step'.
11194
11195 2013-01-17 Doug Evans <dje@google.com>
11196
11197 * dwarf2read.c (dw2_build_type_unit_groups_reader): Delete.
11198 (dw2_build_type_unit_groups): Delete. All uses updated.
11199
11200 * symtab.h (struct symbol_search): Add comment.
11201
11202 2013-01-17 Jan Kratochvil <jan.kratochvil@redhat.com>
11203
11204 * symtab.c (compare_filenames_for_search): New comment for
11205 HAS_DRIVE_SPEC.
11206
11207 2013-01-17 Tom Tromey <tromey@redhat.com>
11208
11209 * cp-abi.c (cp_abi_completer): Fix typo in assignment.
11210
11211 2013-01-17 Jan Kratochvil <jan.kratochvil@redhat.com>
11212
11213 * symtab.c (iterate_over_some_symtabs): New variable cleanups,
11214 initialize it by existing make_cleanup. Call new do_cleanups.
11215
11216 2013-01-17 Tom Tromey <tromey@redhat.com>
11217
11218 * cp-abi.c (cp_abi_completer): New function.
11219 (_initialize_cp_abi): Set completer for "set cp-abi".
11220
11221 2013-01-17 Tom Tromey <tromey@redhat.com>
11222
11223 * mem-break.c: Remove obsolete comment.
11224 * bfin-tdep.c (bfin_breakpoint_from_pc): Fix comment.
11225
11226 2012-01-17 Sanjoy Das <sanjoy@playingwithpointers.com>
11227
11228 * jit.c (jit_reader_load_command): Interpret the jit reader name
11229 as an absolute path if it begins with a forward slash.
11230
11231 2012-01-17 Sanjoy Das <sanjoy@playingwithpointers.com>
11232
11233 PR gdb/14550
11234
11235 * jit.c (finalize_symtab): Ensure that only the global block has a
11236 NULL superblock.
11237
11238 2013-01-17 Pedro Alves <palves@redhat.com>
11239
11240 * acinclude.m4: Include ../config/plugins.m4,
11241 ../config/largefile.m4 and ../config/lead-dot.m4. Add comments.
11242 * Makefile.in (aclocal_m4_deps): Update.
11243 * aclocal.m4: Renegerate.
11244
11245 2013-01-16 Doug Evans <dje@google.com>
11246
11247 * contrib/cc-with-tweaks.sh: Add references to Fission docs.
11248
11249 2013-01-16 Pedro Alves <palves@redhat.com>
11250 Tom Tromey <tromey@redhat.com>
11251
11252 PR cli/7221:
11253 * NEWS: Add "catch signal".
11254 * breakpoint.c (base_breakpoint_ops): No longer static.
11255 (bpstat_explains_signal): New function.
11256 (init_catchpoint): No longer static.
11257 (base_breakpoint_explains_signal): New function.
11258 (base_breakpoint_ops): Initialize new field.
11259 * breakpoint.h (enum bpstat_signal_value): New.
11260 (struct breakpoint_ops) <explains_signal>: New field.
11261 (bpstat_explains_signal): Remove macro, declare as function.
11262 (base_breakpoint_ops, init_catchpoint): Declare.
11263 * break-catch-sig.c: New file.
11264 * inferior.h (signal_catch_update): Declare.
11265 * infrun.c (signal_catch): New global.
11266 (handle_syscall_event): Update for change to
11267 bpstat_explains_signal.
11268 (handle_inferior_event): Likewise. Always handle random signals
11269 via bpstats.
11270 (signal_cache_update): Check signal_catch.
11271 (signal_catch_update): New function.
11272 (_initialize_infrun): Initialize signal_catch.
11273 * Makefile.in (SFILES): Add break-catch-sig.c.
11274 (COMMON_OBS): Add break-catch-sig.o.
11275
11276 2013-01-16 Tom Tromey <tromey@redhat.com>
11277
11278 * breakpoint.c (print_one_catch_fork, print_one_catch_vfork)
11279 (print_one_catch_solib, print_one_catch_syscall)
11280 (print_one_catch_exec, print_one_exception_catchpoint): Emit
11281 "catch-type".
11282
11283 2013-01-16 Yao Qi <yao@codesourcery.com>
11284
11285 * printcmd.c (current_display_number): Make it static.
11286
11287 2013-01-16 Yao Qi <yao@codesourcery.com>
11288
11289 * infcmd.c (step_once): Don't check '!single_inst' as it was
11290 checked before.
11291
11292 2013-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
11293
11294 * dwarf2read.c (psymtab_include_file_name): Extend the function comment.
11295
11296 2013-01-14 Tom Tromey <tromey@redhat.com>
11297
11298 * cli/cli-decode.c (add_setshow_string_noescape_cmd): Return the
11299 set command.
11300 * command.h (add_setshow_string_noescape_cmd): Update.
11301 * corefile.c (set_gnutarget_command): Remove trailing whitespace.
11302 (complete_set_gnutarget): New function.
11303 (_initialize_core): Set the "set gnutarget" completer.
11304
11305 2013-01-14 Tom Tromey <tromey@redhat.com>
11306
11307 PR symtab/14442:
11308 * c-typeprint.c (cp_type_print_method_args): Handle 'restrict'.
11309 (c_type_print_modifier): Likewise.
11310 * dwarf2read.c (read_tag_restrict_type): New function.
11311 (read_type_die_1): Handle DW_TAG_restrict_type.
11312 * gdbtypes.c (make_restrict_type): New function.
11313 (recursive_dump_type): Handle TYPE_RESTRICT.
11314 * gdbtypes.h (enum type_flag_values): Renumber.
11315 (enum type_instance_flag_value): Add
11316 TYPE_INSTANCE_FLAG_RESTRICT.
11317 (TYPE_RESTRICT): New macro.
11318 (make_restrict_type): Declare.
11319
11320 2013-01-14 Tom Tromey <tromey@redhat.com>
11321
11322 PR symtab/14931:
11323 * psymtab.c (struct psymtab_state): New.
11324 (discard_psymtabs_upto, make_cleanup_discard_psymtabs): New
11325 functions.
11326 * psympriv.h (make_cleanup_discard_psymtabs): Declare.
11327 * dwarf2read.c (dwarf2_build_psymtabs): Catch exceptions.
11328
11329 2013-01-14 Richard Sharman <richard_sharman@mitel.com>
11330 Pedro Alves <palves@redhat.com>
11331
11332 PR remote/14786
11333
11334 * remote.c (remote_threads_info): Make a copy of the reply from
11335 qfThreadInfo and use that instead of rs->buf.
11336
11337 2013-01-14 Yao Qi <yao@codesourcery.com>
11338
11339 * dbxread.c (dbx_psymtab_to_symtab_1): Don't check PST is NULL.
11340 (dbx_psymtab_to_symtab): Likewise.
11341 * dwarf2read.c (dwarf2_psymtab_to_symtab): Likewise.
11342 * mdebugread.c (mdebug_psymtab_to_symtab): Likewise.
11343 * xcoffread.c (xcoff_psymtab_to_symtab_1): Likewise.
11344
11345 2013-01-13 Jan Kratochvil <jan.kratochvil@redhat.com>
11346
11347 * parse.c (parse_exp_in_context): New variable inner_chain. Call
11348 make_cleanup_restore_current_language. Call set_language. Move
11349 OLD_CHAIN and INNER_CHAIN cleanups.
11350 * utils.c (do_restore_current_language)
11351 (make_cleanup_restore_current_language): New functions.
11352 * utils.h (make_cleanup_restore_current_language): New declaration.
11353
11354 2013-01-13 Jan Kratochvil <jan.kratochvil@redhat.com>
11355
11356 * source.c (symtab_to_fullname): Apply rewrite_source_path also for
11357 non-existing files.
11358
11359 * source.c (symtab_to_fullname): Do not prepend DIRNAME for
11360 non-existing files if FILENAME is already absolute.
11361
11362 2013-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
11363
11364 * macrocmd.c (macro_inform_no_debuginfo): Use puts_filtered instead of
11365 fputs_filtered. Append trailing newline.
11366
11367 2013-01-11 Yao Qi <yao@codesourcery.com>
11368 Stan Shebs <stan@codesourcery.com>
11369
11370 * psymtab.c (init_psymbol_list): Clarify the comment.
11371
11372 2013-01-11 Yao Qi <yao@codesourcery.com>
11373
11374 * breakpoint.c (print_one_breakpoint_location): Remove dead code.
11375 (update_dprintf_command_list): Assert that 'printf_line' is
11376 non-null. Remove condition check.
11377
11378 2013-01-10 Jan Kratochvil <jan.kratochvil@redhat.com>
11379
11380 Code cleanup.
11381 * psymtab.c (psymtab_to_fullname, psymtab_to_fullname): Make the return
11382 type const char *.
11383 * tui/tui-source.c (tui_source_is_displayed): Make the parameter fname
11384 const char *.
11385 * tui/tui-source.h (tui_source_is_displayed): Likewise.
11386
11387 2013-01-09 Anthony Green <green@moxielogic.com>
11388
11389 * cp-abi.c (cplus_print_vtable): Don't return value from void
11390 function.
11391 * ada-lang.c (re_set_catch_assert): Ditto.
11392
11393 2013-01-09 Doug Evans <dje@google.com>
11394
11395 * symfile.h (quick_symbol_functions): Delete member
11396 pre_expand_symtabs_matching. All uses removed.
11397 * dwarf2read.c (dw2_lookup_symbol): Implement.
11398 (dw2_do_expand_symtabs_matching): Delete.
11399 (dw2_pre_expand_symtabs_matching): Delete.
11400 (struct dw2_symtab_iterator): New type.
11401 (dw2_symtab_iter_init, dw2_symtab_iter_next): New functions.
11402 (dw2_expand_symtabs_for_function): Rewrite.
11403 (dwarf2_gdb_index_functions): Update.
11404 * psymtab.c (pre_expand_symtabs_matching_psymtabs): Delete.
11405 (psym_functions): Update.
11406
11407 2013-01-09 Tom Tromey <tromey@redhat.com>
11408
11409 * config/pa/hpux.mh (NATDEPFILES): Remove somread.o.
11410 * configure: Rebuild.
11411 * configure.ac: Add somread.o to the build if BFD has SOM
11412 support.
11413 * somread.c: Include som/aout.h, not syms.h.
11414 (som_symtab_read): Use som_external_symbol_dictionary_record.
11415 Unpack records manually.
11416 (_initialize_somread): Declare.
11417
11418 2012-01-08 Mike Frysinger <vapier@gentoo.org>
11419
11420 * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx) [__x86_64__]:
11421 Cast return_address to 64bits.
11422
11423 2013-01-08 Hui Zhu <hui_zhu@mentor.com>
11424
11425 * printcmd.c: Remove define of function output_command.
11426 * tracepoint.c: Remove extern of function output_command.
11427 * valprint.h: (output_command): New extern.
11428
11429 2013-01-07 Tom Tromey <tromey@redhat.com>
11430
11431 * objc-lang.c (objc_emit_char, objc_printchar, objc_printstr):
11432 Remove.
11433 (objc_language_defn): Use c_printchar, c_printstr,
11434 c_emit_char.
11435
11436 2013-01-07 Tom Tromey <tromey@redhat.com>
11437
11438 PR cli/7719:
11439 * NEWS: Update.
11440 * ada-valprint.c (printstr, print_field_values): Remove
11441 "inspect_it" code.
11442 * cp-valprint.c (cp_print_value_fields): Remove "inspect_it"
11443 code.
11444 * jv-valprint.c (java_print_value_fields): Remove "inspect_it"
11445 code.
11446 * m2-lang.c (m2_printstr): Remove "inspect_it" code.
11447 * main.c (captured_main): Remove "epoch" argument.
11448 * objc-lang.c (objc_printstr): Remove "inspect_it" code.
11449 * p-lang.c (pascal_printstr): Remove "inspect_it" code.
11450 * p-valprint.c (pascal_object_print_value_fields): Remove
11451 "inspect_it" code.
11452 * printcmd.c (print_command_1): Remove 'inspect' argument.
11453 (print_command, call_command): Update.
11454 (inspect_command): Remove.
11455 (_initialize_printcmd): Make "inspect" an alias for "print".
11456 * top.c (epoch_interface): Remove.
11457 * top.h (epoch_interface): Remove.
11458 * valprint.c (user_print_options): Update.
11459 (print_converted_chars_to_obstack): Remove "inspect_it" code.
11460 * valprint.h (struct value_print_options) <inspect_it>: Remove
11461 field.
11462
11463 2013-01-04 Tom Tromey <tromey@redhat.com>
11464
11465 * valprint.h (read_string): Add 'extern'.
11466
11467 2013-01-07 Joel Brobecker <brobecker@adacore.com>
11468
11469 * darwin-nat.c: Fix typo in TASK_DYLD_INFO_COUNT macro test
11470 used to decide whether to define darwin_read_dyld_info or not.
11471
11472 2013-01-03 Pierre Muller <muller@sourceware.org>
11473
11474 * main.c (relocate_gdb_directory): Avoid calling stat function
11475 if DIR is empty.
11476
11477 2013-01-03 Yao Qi <yao@codesourcery.com>
11478
11479 * psymtab.c (fixup_psymbol_section): Update declaration.
11480 (fixup_psymbol_section): Remove code returning value.
11481
11482 2013-01-03 Yao Qi <yao@codesourcery.com>
11483
11484 * symtab.h: Remove some out of date comments.
11485 (enum exception_event_kind): Move it ...
11486 * breakpoint.c: ... here.
11487
11488 2013-01-02 Iain Sandoe <developer@sandoe-acoustics.co.uk>
11489
11490 PR gdb/14405
11491 * darwin-nat.c (darwin_read_dyld_info): Only build if
11492 TASK_DYLD_INFO_COUNT is defined.
11493 (darwin_xfer_partial): Call darwin_read_dyld_info only if
11494 TASK_DYLD_INFO_COUNT is defined.
11495
11496 2013-01-02 Tom Tromey <tromey@redhat.com>
11497
11498 * symfile.h (struct ecoff_debug_hack): Remove.
11499 * objfiles.c: Don't include mdebugread.h.
11500
11501 2013-01-02 Tom Tromey <tromey@redhat.com>
11502
11503 * config/i386/darwin.mh (NATDEPFILES): Remove machoread.o.
11504 * configure.ac: Check for Mach-O support in BFD. Update
11505 CONFIG_OBS.
11506 * configure: Rebuild.
11507
11508 2013-01-02 Tom Tromey <tromey@redhat.com>
11509
11510 * acinclude.m4 (GDB_AC_CHECK_BFD): New macro.
11511 * configure.ac: Use GDB_AC_CHECK_BFD.
11512 * configure: Rebuild.
11513
11514 2013-01-01 Maxim Kuvyrkov <maxim.kuvyrkov@gmail.com>
11515
11516 * MAINTAINERS: Update my email.
11517
11518 2013-01-01 Joel Brobecker <brobecker@adacore.com>
11519
11520 * cli/cli-script.h (make_cleanup_free_command_lines): Make extern.
11521
11522 2013-01-01 Joel Brobecker <brobecker@adacore.com>
11523
11524 * rs6000-nat.c (bss_data_overlap): New function.
11525 (vmap_symtab): Use it to adjust the .bss section's offset.
11526
11527 2013-01-01 Joel Brobecker <brobecker@adacore.com>
11528
11529 Update year range in copyright notice of all files.
11530
11531 2013-01-01, 13 Joel Brobecker <brobecker@adacore.com>
11532
11533 * top.c (print_gdb_version): Update copyright year.
11534
11535 For older changes see ChangeLog-2012.
11536 \f
11537 Local Variables:
11538 mode: change-log
11539 left-margin: 8
11540 fill-column: 74
11541 version-control: never
11542 coding: utf-8
11543 End:
This page took 0.252346 seconds and 3 git commands to generate.