fix some "exec" tests
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2013-11-04 Anton Blanchard <anton@samba.org>
2
3 * target.c (memory_xfer_partial): Cap write to 4KB.
4
5 2013-11-01 Tiago Stürmer Daitx <tdaitx@linux.vnet.ibm.com>
6
7 * breakpoint.c (create_longjmp_master_breakpoint): Allow libc
8 probe scan even when the arch provides no get_longjmp_target.
9
10 2013-10-31 Pedro Alves <palves@redhat.com>
11
12 * infrun.c (handle_syscall_event): Don't set or clear stop_signal.
13 (handle_inferior_event) <TARGET_WAITKIND_FORKED,
14 TARGET_WAITKIND_VFORKED>: Don't set stop_signal to
15 GDB_SIGNAL_TRAP, or clear it. Pass GDB_SIGNAL_0 to
16 bpstat_explains signal, instead of GDB_SIGNAL_TRAP.
17 <bpstat handling>: If the bpstat chain wants the signal to be
18 hidden, then set stop_signal to GDB_SIGNAL_0 instead of
19 GDB_SIGNAL_TRAP.
20
21 2013-10-31 Andrew Burgess <aburgess@broadcom.com>
22
23 * breakpoint.c (update_watchpoint): Update error message and add
24 an additional error message.
25
26 2013-10-30 Andreas Arnez <arnez@linux.vnet.ibm.com>
27
28 * s390-tdep.h: Rename to...
29 * s390-linux-tdep.h: ...here.
30 * s390-tdep.c: Rename to...
31 * s390-linux-tdep.c: ...here. Adjust #include.
32 * s390-nat.c: Rename to...
33 * s390-linux-nat.c: ...here. Adjust #include.
34 * config/s390/s390.mh: Rename to...
35 * config/s390/linux.mh: ...here. Reflect rename s390-nat.o ->
36 s390-linux-nat.o.
37 * configure.host: Reflect host rename "s390" -> "linux".
38 * configure.tgt: Reflect rename s390-tdep.o -> s390-linux-tdep.o.
39 * Makefile.in (ALL_TARGET_OBS): Likewise.
40 (HFILES_NO_SRCDIR): Reflect rename s390-tdep.h ->
41 s390-linux-tdep.h.
42 (ALLDEPFILES): Reflect rename of .c files.
43
44 2013-10-30 Andreas Arnez <arnez@linux.vnet.ibm.com>
45
46 * s390-nat.c: Whitespace cleanup.
47 * s390-tdep.c: Likewise.
48 * s390-tdep.h: Remove empty line at end of file.
49
50 2013-10-30 Maciej W. Rozycki <macro@codesourcery.com>
51
52 * linux-tdep.c (linux_corefile_thread_callback): Preinitialize
53 siginfo_size.
54
55 2013-10-29 Tom Tromey <tromey@redhat.com>
56
57 * utils.c (reg): Move undefinition...
58 * gdb_curses.h: ... here. Update comment to mention AIX.
59
60 2013-10-29 Nicolas Blanc <nicolas.blanc@intel.com>
61
62 * exec.h (add_target_sections_of_objfile): New declaration.
63 * exec.c (add_target_sections_of_objfile): New function.
64 * symfile.c (add_symbol_file_command): Update current target sections.
65 (remove_symbol_file_command): New command.
66 (symfile_free_objfile): New function.
67 (_initialize_symfile): Register observer for free_objfile events.
68 * NEWS: Add description of the remove-symbol-file command.
69 * breakpoint.c (disable_breakpoints_in_freed_objfile): New function.
70 * objfiles.c (free_objfile): Notify free_objfile.
71 (is_addr_in_objfile): New function.
72 * objfiles.h (is_addr_in_objfile): New declaration.
73 * printcmd.c (clear_dangling_display_expressions): Act upon free_objfile
74 events instead of solib_unloaded events.
75 (_initialize_printcmd): Register observer for free_objfile instead
76 of solib_unloaded notifications.
77 * solib.c (remove_user_added_objfile): New function.
78 (_initialize_symfile): Add remove-symbol-file.
79
80 2013-10-29 Andrew Burgess <aburgess@broadcom.com>
81
82 * infcmd.c (default_print_one_register_info): Use val_print to
83 print all values even optimized out or unavailable ones. Don't
84 try to print a raw form of optimized out or unavailable values.
85
86 2013-10-29 Yao Qi <yao@codesourcery.com>
87
88 * auto-load.c (auto_load_pspace_data_cleanup): Get data from
89 parameter 'arg' instead of from program_space_data.
90 * objfiles.c (objfiles_pspace_data_cleanup): Likewise.
91 * solib-darwin.c (darwin_pspace_data_cleanup): Likewise.
92 * solib-dsbt.c (dsbt_pspace_data_cleanup): Likewise.
93 * solib-svr4.c (svr4_pspace_data_cleanup): Likewise.
94 * inflow.c (inflow_inferior_data_cleanup): Get data from
95 parameter 'arg' instead of inferior_data.
96 * registry.h: Add comments.
97
98 2013-10-28 Pedro Alves <palves@redhat.com>
99
100 * breakpoint.c (watchpoints_triggered)
101 <!target_stopped_data_address>: Hardcode return 1.
102
103 2013-10-28 Pedro Alves <palves@redhat.com>
104
105 * infrun.c (process_event_stop_test): Remove unnecessary scoping
106 level and reindent.
107
108 2013-10-28 Pedro Alves <palves@redhat.com>
109
110 * infrun.c (process_event_stop_test): New function, factored out
111 from handle_inferior_event.
112 (handle_inferior_event): 'process_event_stop_test' is now a
113 function instead of a goto label -- adjust.
114
115 2013-10-28 Pedro Alves <palves@redhat.com>
116
117 * infrun.c (handle_inferior_event): Move process_event_stop_test
118 goto label to the else branch of the ecs->random_signal check,
119 along with FRAME and GDBARCH re-fetching.
120
121 2013-10-28 Pedro Alves <palves@redhat.com>
122
123 * infrun.c (switch_back_to_stepped_thread): New function, factored
124 out from handle_inferior_event.
125 (handle_inferior_event): Adjust to call
126 switch_back_to_stepped_thread. Call it also at the tail of the
127 random signal handling, and return, instead of also handling
128 random signals just before the stepping tests.
129
130 2013-10-28 Pedro Alves <palves@redhat.com>
131
132 * infrun.c (clear_stop_func): Delete.
133 (handle_inferior_event): Don't call clear_stop_func and don't
134 clear 'ecs->random_signal'.
135
136 2013-10-27 Yao Qi <yao@codesourcery.com>
137
138 * varobj.c (struct varobj_root) <lang>: Rename to 'lang_ops'.
139 (varobj_create, varobj_get_path_expr): Update.
140 (varobj_value_has_mutated, varobj_update): Likewise.
141 (create_child_with_value, new_root_variable): Likewise.
142 (number_of_children, name_of_variable): Likewise.
143 (value_of_child, my_value_of_variable): Likewise.
144 (varobj_value_is_changeable_p): Likewise.
145
146 2013-10-25 Yao Qi <yao@codesourcery.com>
147
148 * language.h (struct lang_varobj_ops): Declare.
149 (struct language_defn) <la_varobj_ops>: New field.
150 * ada-lang.c: Include "varobj.h"
151 (defn ada_language_defn): Initialize field 'la_varobj_ops' with
152 ada_varobj_ops.
153 * c-lang.c: Include "varobj.h"
154 (c_language_defn): Initialize field 'la_varobj_ops' with
155 c_varobj_ops.
156 (cplus_language_defn): Initialize field 'la_varobj_ops' with
157 cplus_varobj_ops.
158 (asm_language_defn): Initialize field 'la_varobj_ops' with
159 default_varobj_ops.
160 (minimal_language_defn): Likewise.
161 * d-lang.c (d_language_defn): Likewise.
162 * f-lang.c (f_language_defn): Likewise.
163 * go-lang.c (go_language_defn): Likewise.
164 * m2-lang.c (m2_language_defn): Likewise.
165 * objc-lang.c (objc_language_defn): Likewise.
166 * opencl-lang.c (opencl_language_defn): Likewise.
167 * p-lang.c (pascal_language_defn): Likewise.
168 * language.c (unknown_language_defn): Likewise.
169 (auto_language_defn): Likewise.
170 (local_language_defn): Likewise.
171 * jv-lang.c (java_language_defn): Initialize field
172 'la_varobj_ops' with java_varobj_ops.
173 * varobj.c (varobj_create): Update.
174 * varobj.h (default_varobj_ops): Define macro.
175
176 2013-10-25 Pedro Alves <palves@redhat.com>
177
178 * cp-valprint.c (cp_print_value_fields): No longer handle a NULL
179 static field value.
180 (cp_print_static_field): If the value is entirely optimized out,
181 print <optimized out> here.
182 * jv-valprint.c (java_print_value_fields): No longer handle a NULL
183 static field value.
184 * p-valprint.c (pascal_object_print_static_field): If the value is
185 entirely optimized out, print <optimized out> here.
186 * valops.c (do_search_struct_field)
187 (value_struct_elt_for_reference): No longer handle a NULL static
188 field value.
189 * value.c (value_static_field): Return an optimized out value
190 instead of NULL.
191
192 2013-10-25 Yao Qi <yao@codesourcery.com>
193
194 * remote.c (remote_traceframe_info): Return early if
195 traceframe is not selected.
196
197 2013-10-25 Yao Qi <yao@codesourcery.com>
198
199 * tracepoint.c (traceframe_fun): Remove.
200 (traceframe_sal): Remove.
201 (set_traceframe_context): Add local variables.
202
203 2013-10-25 Joel Brobecker <brobecker@adacore.com>
204
205 * varobj.h (struct lang_varobj_ops): Remove spaces between '*'
206 and parameter name.
207
208 2013-10-24 Maciej W. Rozycki <macro@codesourcery.com>
209
210 * linux-tdep.c (linux_corefile_thread_callback): Propagate any
211 failure from register information collection.
212
213 2013-10-24 Maciej W. Rozycki <macro@codesourcery.com>
214
215 * linux-tdep.c (linux_corefile_thread_data): Remove `num_notes'
216 member.
217 (linux_corefile_thread_callback): Update accordingly.
218 (linux_make_corefile_notes): Likewise.
219
220 2013-10-24 Pedro Alves <palves@redhat.com>
221
222 * NEWS (New options): Mention set/show startup-with-shell.
223 * config/alpha/nm-osf3.h (START_INFERIOR_TRAPS_EXPECTED): Set to 2
224 instead of 3.
225 * fork-child.c (fork_inferior, startup_inferior): Handle 'set
226 startup-with-shell'.
227 (show_startup_with_shell): New function.
228 (_initialize_fork_child): Register the set/show startup-with-shell
229 commands.
230 * inf-ptrace.c (inf_ptrace_create_inferior): Remove comment.
231 * inf-ttrace.c (inf_ttrace_him): Remove comment.
232 * procfs.c (procfs_init_inferior): Remove comment.
233 * infcmd.c (startup_with_shell): New global.
234 * inferior.h (startup_with_shell): Declare global.
235 (STARTUP_WITH_SHELL): Delete.
236 (START_INFERIOR_TRAPS_EXPECTED): Set to 1 by default instead of 2.
237
238 2013-10-23 Pedro Alves <palves@redhat.com>
239
240 * common/gdb_signals.h (gdb_signal_to_symbol_string): Declare.
241 * common/signals.c: Include "gdb_assert.h".
242 (signals): New field 'symbol'.
243 (SET): Use the 'symbol' parameter.
244 (gdb_signal_to_symbol_string): New function.
245 * infrun.c (handle_inferior_event) <random signal>: In debug
246 output, print the random signal enum as string in addition to its
247 number.
248 * target/waitstatus.c (target_waitstatus_to_string): Print the
249 signal's enum value as string instead of the (POSIX) signal name.
250
251 2013-10-23 Gary Benson <gbenson@redhat.com>
252
253 PR 16013
254 * common/linux-osdata.c (command_from_pid): Reduced size of cmd
255 from 32 to 18. Adjusted fscanf format string accordingly.
256 (Avoids leaving cmd unterminated.)
257 (print_sockets): Do not parse tlen, inode, sl, timeout, txq, rxq,
258 trun, retn or extra. (Avoids leaving extra unterminated.) Check
259 that local_address and remote_address will not overflow.
260 (linux_xfer_osdata_modules): Parse lines using strtok to avoid
261 leaving dependencies unterminated. Parse size as "%u" to match
262 definition.
263
264 2013-10-22 Pedro Alves <palves@redhat.com>
265
266 * infrun.c (handle_inferior_event) <thread hop>: Don't clear or
267 set ecs->random signal.
268
269 2013-10-22 Pedro Alves <palves@redhat.com>
270
271 * infrun.c (keep_going): Update comments.
272
273 2013-10-22 Pedro Alves <palves@redhat.com>
274
275 * remote.c (remote_parse_stop_reply) <'T'/'S'/'X' replies>: Map
276 invalid signal numbers to GDB_SIGNAL_UNKNOWN.
277
278 2013-10-22 Pedro Alves <palves@redhat.com>
279
280 * include/gdb/signals.def (TARGET_EXC_BAD_ACCESS): Rename to
281 GDB_EXC_BAD_ACCESS.
282 (TARGET_EXC_BAD_INSTRUCTION): Rename to GDB_EXC_BAD_INSTRUCTION.
283 (TARGET_EXC_ARITHMETIC): Rename to GDB_EXC_ARITHMETIC.
284 (TARGET_EXC_EMULATION): Rename to GDB_EXC_EMULATION.
285 (TARGET_EXC_SOFTWARE): Rename to GDB_EXC_SOFTWARE.
286 (TARGET_EXC_BREAKPOINT): Rename to GDB_EXC_BREAKPOINT.
287 (GDB_SIGNAL_LAST): Change description string.
288 * common/signals.c (gdb_signal_from_host, do_gdb_signal_to_host):
289 Adjust to signal renaming.
290 * darwin-nat.c (darwin_decode_message): Likewise.
291
292 2013-10-22 Jose E. Marchesi <jose.marchesi@oracle.com>
293
294 * MAINTAINERS (Write After Approval): Add myself to the list.
295
296 2013-10-18 Andrew Burgess <aburgess@broadcom.com>
297
298 * breakpoint.c (update_watchpoint): If hardware watchpoints are
299 forced off, downgrade them to software watchpoints if possible,
300 and error out if not possible.
301 (watch_command_1): Move watchpoint type selection closer to
302 watchpoint creation, and extend the comments.
303
304 2013-10-18 Pedro Alves <palves@redhat.com>
305
306 PR gdb/16062
307 * infrun.c (handle_inferior_event): Keep going if we got a random
308 signal we should not stop for, instead of falling through to the
309 step tests.
310
311 2013-10-18 Yao Qi <yao@codesourcery.com>
312
313 * c-varobj.c (cplus_number_of_children): Fix indentation.
314
315 2013-10-17 Tom Tromey <tromey@redhat.com>
316
317 PR gdb/15995:
318 * printcmd.c (printcmd): Call gdb_flush.
319
320 2013-10-17 Tom Tromey <tromey@redhat.com>
321
322 * elfread.c (struct elfinfo) <stabindexsect>: Remove.
323 (elf_locate_sections): Update.
324
325 2013-10-17 Yao Qi <yao@codesourcery.com>
326
327 * Makefile.in (HFILES_NO_SRCDIR): Remove ada-varobj.h.
328 * ada-varobj.c: Remove the include of ada-varobj.h.
329 (ada_varobj_get_number_of_children): Declare.
330 (ada_varobj_get_name_of_child): Make it static.
331 (ada_varobj_get_path_expr_of_child): Likewise.
332 (ada_varobj_get_value_of_child): Likewise.
333 (ada_varobj_get_type_of_child): Likewise.
334 (ada_varobj_get_value_of_array_variable): Likewise.
335 * ada-varobj.h: Remove.
336
337 2013-10-17 Yao Qi <yao@codesourcery.com>
338
339 * Makefile.in (SFILES): Add c-varobj.c and jv-varobj.c.
340 (COMMON_OBS): Add c-varobj.o and jv-varobj.o.
341 * ada-varobj.c: Include "varobj.h".
342 (ada_number_of_children): New. Moved from varobj.c.
343 (ada_name_of_variable, ada_name_of_child): Likewise.
344 (ada_path_expr_of_child, ada_value_of_child): Likewise.
345 (ada_type_of_child, ada_value_of_variable): Likewise.
346 (ada_value_is_changeable_p, ada_value_has_mutated): Likewise.
347 (ada_varobj_ops): New.
348 * c-varobj.c, jv-varobj.c: New file. Moved from varobj.c.
349 * gdbtypes.c (get_target_type): New. Moved from varobj.c.
350 * gdbtypes.h (get_target_type): Declare.
351 * varobj.c: Remove the inclusion of "ada-varobj.h" and
352 "ada-lang.h".
353 (ANONYMOUS_STRUCT_NAME): Move it to c-varobj.c.
354 (ANONYMOUS_UNION_NAME): Likewise.
355 (get_type, get_value_type, get_target_type): Remove declarations.
356 (value_get_print_value, varobj_value_get_print_value): Likewise.
357 (c_number_of_children, c_name_of_variable): Likewise.
358 (c_name_of_child, c_path_expr_of_child): Likewise.
359 (c_value_of_child, c_type_of_child): Likewise.
360 (c_value_of_variable, cplus_number_of_children): Likewise.
361 (cplus_class_num_children, cplus_name_of_variable): Likewise.
362 (cplus_name_of_child, cplus_path_expr_of_child): Likewise.
363 (cplus_value_of_child, cplus_type_of_child): Likewise.
364 (cplus_value_of_variable, java_number_of_children): Likewise.
365 (java_name_of_variable, java_name_of_child): Likewise.
366 (java_path_expr_of_child, java_value_of_child): Likewise.
367 (java_type_of_child, java_value_of_variable): Likewise.
368 (ada_number_of_children, ada_name_of_variable): Likewise.
369 (ada_name_of_child, ada_path_expr_of_child): Likewise.
370 (ada_value_of_child, ada_type_of_child): Likewise.
371 (ada_value_of_variable, ada_value_is_changeable_p): Likewise.
372 (ada_value_has_mutated): Likewise.
373 (struct language_specific): Move it to varobj.h.
374 (CPLUS_FAKE_CHILD): Move it to varobj.h.
375 (restrict_range): Rename it varobj_restrict_range. Make it extern.
376 Callers update.
377 (get_path_expr_parent): Rename it to varobj_get_path_expr_parent.
378 Make it extern.
379 (is_anonymous_child): Move it to c-varobj.c and rename to
380 varobj_is_anonymous_child. Caller update.
381 (get_type): Move it to c-varobj.c.
382 (get_value_type): Rename it varobj_get_value_type. Make it
383 extern.
384 (get_target_type): Move it gdbtypes.c.
385 (varobj_formatted_print_options): New function.
386 (value_get_print_value): Rename it to
387 varobj_value_get_print_value and make it extern.
388 (varobj_value_is_changeable_p): Make it extern.
389 (adjust_value_for_child_access): Move it to c-varobj.c.
390 (default_value_is_changeable_p): Rename it to
391 varobj_default_value_is_changeable_p. Make it extern.
392 (c_number_of_children, c_name_of_variable): Move it to c-varobj.c
393 (c_name_of_child, c_path_expr_of_child): Likewise.
394 (c_value_of_child, c_type_of_child): Likewise.
395 (c_value_of_variable, cplus_number_of_children): Likewise.
396 (cplus_class_num_children, cplus_name_of_variable): Likewise.
397 (cplus_name_of_child, cplus_path_expr_of_child): Likewise.
398 (cplus_value_of_child, cplus_type_of_child): Likewise.
399 (cplus_value_of_variable): Likewise.
400 (java_number_of_children, java_name_of_variable): Move it to jv-varobj.c.
401 (java_name_of_child, java_path_expr_of_child): Likewise.
402 (java_value_of_child, java_type_of_child): Likewise.
403 (java_value_of_variable): Likewise.
404 (ada_number_of_children, ada_name_of_variable): Move it to ada-varobj.c.
405 (ada_name_of_child, ada_path_expr_of_child): Likewise.
406 (ada_value_of_child, ada_type_of_child): Likewise.
407 (ada_value_of_variable, ada_value_is_changeable_p): Likewise.
408 (ada_value_has_mutated): Likewise.
409 * varobj.h (CPLUS_FAKE_CHILD): New macro, moved from varobj.c.
410 (struct lang_varobj_ops): New. Renamed by 'struct language_specific'.
411 (c_varobj_ops, cplus_varobj_ops): Declare.
412 (java_varobj_ops, ada_varobj_ops): Declare.
413 (varobj_default_value_is_changeable_p): Declare.
414 (varobj_value_is_changeable_p): Declare.
415 (varobj_get_value_type, varobj_is_anonymous_child): Declare.
416 (varobj_get_path_expr_parent): Declare.
417 (varobj_value_get_print_value): Declare.
418 (varobj_formatted_print_options): Declare.
419 (varobj_restrict_range): Declare.
420
421 2013-10-17 Luis Machado <lgustavo@codesourcery.com>
422
423 * target/waitstatus.h (target_waitkind): Remove spurious
424 character from the comments.
425
426 2013-10-17 Joel Brobecker <brobecker@adacore.com>
427
428 * gdbarch.sh (get_longjmp_target): Add method documentation.
429 * gdbarch.h: Regenerate.
430
431 2013-10-16 Tom Tromey <tromey@redhat.com>
432
433 * dbxread.c (read_dbx_symtab) <bss_ext_symbol>: Remove unused
434 label.
435
436 2013-10-16 Luis Machado <lgustavo@codesourcery.com>
437
438 * gcore.in: Call GDB using the full path to the gcore script.
439 Error out if the GDB binary is not found.
440
441 2013-10-16 Sergio Durigan Junior <sergiodj@redhat.com>
442
443 PR gdb/16014
444 * dwarf2read.c (dw2_get_real_path): Remove unnecessary call to
445 sizeof.
446
447 2013-10-16 Sergio Durigan Junior <sergiodj@redhat.com>
448
449 PR gdb/16042
450 * target.c (target_disable_btrace): Fix invalid return value for
451 void function.
452 (target_teardown_btrace): Likewise.
453
454 2013-10-14 Yao Qi <yao@codesourcery.com>
455
456 * varobj.c (struct varobj): Move most of the fields to
457 varobj.h.
458 (struct varobj_dynamic): New struct.
459 (varobj_get_display_hint) [HAVE_PYTHON]: Adjust.
460 (varobj_has_more): Likewise.
461 (dynamic_varobj_has_child_method): Likewise.
462 (update_dynamic_varobj_children): Likewise.
463 (varobj_get_num_children): Likewise.
464 (varobj_list_children, varobj_pretty_printed_p): Likewise.
465 (install_new_value_visualizer): Likewise.
466 (install_new_value_visualizer, install_new_value): Likewise.
467 (varobj_update, new_variable, free_variable): Likewise.
468 (my_value_of_variable, value_get_print_value): Likewise.
469 (install_visualizer): Change the type of parameter 'var' to
470 'struct varobjd_dynamic *'. Callers update.
471 * varobj.h (struct varobj): Moved from varobj.c.
472 (struct varobj) <dynamic>: New field.
473
474 2013-10-13 Sandra Loosemore <sandra@codesourcery.com>
475
476 * nios2-tdep.c (nios2_reg_names): Use "sstatus" rather than "ba"
477 as the preferred name of r30.
478 * nios2-linux-tdep.c (reg_offsets): Likewise.
479 * features/nios2-cpu.xml: Likewise.
480 * features/nios2-linux.c: Regenerated.
481 * features/nios2.c: Regenerated.
482 * regformats/nios2-linux.dat: Regenerated.
483
484 2013-10-13 Jan Kratochvil <jan.kratochvil@redhat.com>
485
486 Canonicalize directories for EXEC_FILENAME.
487 * exec.c (exec_file_attach): Use gdb_realpath_keepfile for
488 exec_filename.
489 * utils.c (gdb_realpath_keepfile): New function.
490 * utils.h (gdb_realpath_keepfile): New declaration.
491
492 2013-10-11 Doug Evans <dje@google.com>
493
494 * Makefile.in (GDBFLAGS): New variable.
495 (run): New rule.
496
497 2013-10-11 Joel Brobecker <brobecker@adacore.com>
498
499 * NEWS: Add entry documenting the new "-catch-assert" and
500 "-catch-exception" GDB/MI commands.
501
502 2013-10-11 Joel Brobecker <brobecker@adacore.com>
503
504 * breakpoint.h (init_ada_exception_breakpoint): Add parameter
505 "enabled".
506 * breakpoint.c (init_ada_exception_breakpoint): Add parameter
507 "enabled". Set B->ENABLE_STATE accordingly.
508 * ada-lang.h (ada_exception_catchpoint_kind): Move here from
509 ada-lang.c.
510 (create_ada_exception_catchpoint): Add declaration.
511 * ada-lang.c (ada_exception_catchpoint_kind): Move to ada-lang.h.
512 (create_ada_exception_catchpoint): Make non-static. Add new
513 parameter "disabled". Use it in call to
514 init_ada_exception_breakpoint.
515 (catch_ada_exception_command): Add parameter "enabled" in call
516 to create_ada_exception_catchpoint.
517 (catch_assert_command): Likewise.
518
519 * mi/mi-cmds.h (mi_cmd_catch_assert, mi_cmd_catch_exception):
520 Add declarations.
521 * mi/mi-cmds.c (mi_cmds): Add the "catch-assert" and
522 "catch-exception" commands.
523 * mi/mi-cmd-catch.c: Add #include "ada-lang.h".
524 (mi_cmd_catch_assert, mi_cmd_catch_exception): New functions.
525
526 2013-10-11 Joel Brobecker <brobecker@adacore.com>
527
528 * ada-lang.c (enum ada_exception_catchpoint_kind): Renames
529 "enum exception_catchpoint_kind". Replace the "ex_" prefix
530 of all its enumerates with "ada_". Update the rest of this
531 file throughout.
532
533 2013-10-11 Joel Brobecker <brobecker@adacore.com>
534
535 * ada-lang.c (ada_decode_exception_location): Delete.
536 (create_ada_exception_catchpoint): Remove arguments "sal",
537 "addr_string" and "ops". Add argument "ex_kind" instead.
538 Adjust implementation accordingly, calling ada_exception_sal
539 to get the entities it no longer gets passed as arguments.
540 Document the function's arguments.
541 (catch_ada_exception_command): Use catch_ada_exception_command_split
542 instead of ada_decode_exception_location, and update call to
543 create_ada_exception_catchpoint.
544 (catch_ada_assert_command_split): Renames
545 ada_decode_assert_location. Remove parameters "addr_string" and
546 "ops", and now returns void. Adjust implementation accordingly.
547 Update the function documentation.
548 (catch_assert_command): Use catch_ada_assert_command_split
549 instead of ada_decode_assert_location. Update call to
550 create_ada_exception_catchpoint.
551
552 2013-10-11 Joel Brobecker <brobecker@adacore.com>
553
554 * utils.h (perror_warning_with_name): Add declaration.
555 * utils.c (perror_warning_with_name): New function.
556 * cli/cli-cmds.c (source_script_with_search): Add call to
557 perror_warning_with_name if from_tty is nul.
558
559 2013-10-11 Joel Brobecker <brobecker@adacore.com>
560
561 * utils.c (perror_string): New function, extracted out of
562 throw_perror_with_name.
563 (throw_perror_with_name): Rework to use perror_string.
564
565 2013-10-11 Yao Qi <yao@codesourcery.com>
566
567 * remote.c (discard_pending_stop_replies_in_queue): Update
568 declaration.
569 (struct stop_reply) <rs>: New field.
570 (remove_stop_reply_of_remote_state): New function.
571 (discard_pending_stop_replies_in_queue): Add parameter 'rs'.
572 Callers update. Pass remove_stop_reply_of_remote_state to
573 QUEUE_iterate.
574 (remote_parse_stop_reply): Initialize field 'rs'.
575
576 2013-10-10 Will Newton <will.newton@linaro.org>
577
578 * aarch64-linux-tdep.c (aarch64_linux_init_abi): Call
579 linux_init_abi.
580
581 2013-10-10 Joel Brobecker <brobecker@adacore.com>
582
583 * cli/cli-cmds.c (show_baud_rate): Moved to serial.c as
584 serial_baud_show_cmd.
585 (_initialize_cli_cmds): Delete the code creating the
586 "set/show remotebaud" commands.
587 * serial.c (baud_rate): Move here from top.c.
588 (serial_baud_show_cmd): Move here from cli/cli-cmds.c.
589 (_initialize_serial): Create "set/show serial baud" commands.
590 Add "set/show remotebaud" command aliases.
591 * top.c (baud_rate): Moved to serial.c.
592 * NEWS: Document the new "set/show serial baud" commands,
593 replacing "set/show remotebaud".
594
595 2013-10-09 Pedro Alves <palves@redhat.com>
596
597 * breakpoint.c (insert_bp_location): Use memory_error_message to
598 build the memory error string.
599 * c-lang.c: Include "gdbcore.h".
600 (c_get_string): Use memory_error to throw error.
601 (target_xfer_memory_error): Delete.
602 (memory_error_message): New, factored out from
603 target_xfer_memory_error.
604 (memory_error): Change parameter type to target_xfer_error.
605 Rewrite.
606 (read_memory): Use memory_error instead of
607 target_xfer_memory_error.
608 * gdbcore.h: Include "target.h".
609 (memory_error): Change parameter type to target_xfer_error.
610 (memory_error_message): Declare function.
611 * target.c (target_read_memory, target_read_stack)
612 (target_write_memory, target_write_raw_memory): Return
613 TARGET_XFER_E_IO on error. Adjust comments.
614 (get_target_memory): Pass TARGET_XFER_E_IO to memory_error,
615 instead of EIO.
616 * target.h (target_read, target_insert_breakpoint)
617 (target_remove_breakpoint): Adjust comments.
618 * valprint.c (partial_memory_read): Rename parameter, and adjust
619 comment.
620 (val_print_string): Use memory_error_message to build the memory
621 error string.
622
623 2013-10-09 Jan Kratochvil <jan.kratochvil@redhat.com>
624
625 * common/filestuff.c (gdb_fopen_cloexec): Remove initialization of
626 result variable. Rename variable fopen_e_ever_failed to
627 fopen_e_ever_failed_einval. Retry fopen only for errno EINVAL.
628
629 2013-10-09 Pedro Alves <palves@redhat.com>
630
631 * monitor.c (monitor_write_memory, monitor_write_memory_bytes)
632 (monitor_write_memory_longlongs, monitor_write_memory_block):
633 Constify 'myaddr' parameter.
634 (monitor_xfer_memory): Adjust interface as monitor_xfer_partial
635 helper.
636 (monitor_xfer_partial): New function.
637 (init_base_monitor_ops): Don't install a deprecated_xfer_memory
638 hook. Install a to_xfer_partial hook.
639
640 2013-10-09 Tom Tromey <tromey@redhat.com>
641
642 * dwarf2read.c (dwarf2_get_dwz_file): Update for type change in
643 bfd_get_alt_debug_link_info.
644
645 2013-10-09 Jan Kratochvil <jan.kratochvil@redhat.com>
646
647 New flag OBJF_NOT_FILENAME.
648 * auto-load.c (auto_load_objfile_script): Check also OBJF_NOT_FILENAME.
649 * jit.c (jit_object_close_impl): Use OBJF_NOT_FILENAME for
650 allocate_objfile.
651 (jit_bfd_try_read_symtab): Use OBJF_NOT_FILENAME for
652 symbol_file_add_from_bfd.
653 * jv-lang.c (get_dynamics_objfile): Use OBJF_NOT_FILENAME for
654 allocate_objfile.
655 * objfiles.c (allocate_objfile): Assert OBJF_NOT_FILENAME if NAME is
656 NULL.
657 * objfiles.h (OBJF_NOT_FILENAME): New.
658
659 2013-10-08 Tom Tromey <tromey@redhat.com>
660
661 * Makefile.in (SFILES): Add build-id.c.
662 (HFILES_NO_SRCDIR): Add build-id.h.
663 * build-id.c: New file, largely from elfread.c. Modified
664 most functions.
665 * build-id.h: New file.
666 * dwarf2read.c (dwarf2_get_dwz_file): Update for change to
667 bfd_get_alt_debug_link_info. Verify dwz file's build-id.
668 Search for dwz file using build-id.
669 * elfread.c (build_id_bfd_get, build_id_verify)
670 (build_id_to_debug_filename, find_separate_debug_file): Remove.
671
672 2013-10-08 Joel Brobecker <brobecker@adacore.com>
673
674 * ada-lang.c (compare_names_with_case): Renamed from
675 compare_names, adding a new parameter "casing" and its handling.
676 New function documentation.
677 (compare_names): New function, implemented using
678 compare_names_with_case.
679
680 2013-10-08 Joel Brobecker <brobecker@adacore.com>
681
682 * ada-lang.c (ada_exception_sal): Remove advance declaration.
683
684 2013-10-07 Tom Tromey <tromey@redhat.com>
685
686 * objfiles.c (free_objfile_per_bfd_storage): Delete the
687 demangled_names_hash.
688 (free_objfile): Don't delete the demangled_names_hash.
689 * objfiles.h (struct objfile_per_bfd_storage)
690 <demangled_names_hash>: New field.
691 (struct objfile) <demangled_names_hash>: Move to
692 objfile_per_bfd_storage.
693 * symfile.c (reread_symbols): Don't delete the
694 demangled_names_hash.
695 * symtab.c (create_demangled_names_hash): Update.
696 (symbol_set_names): Update.
697
698 2013-10-07 Tom Tromey <tromey@redhat.com>
699
700 * gdb_bfd.c (struct gdb_bfd_data) <relocation_computed,
701 needs_relocations>: New fields.
702 (gdb_bfd_requires_relocations): New function.
703 * gdb_bfd.h (gdb_bfd_requires_relocations): Declare.
704 * objfiles.c (get_objfile_bfd_data): Disallow sharing if
705 the BFD needs relocations applied.
706
707 2013-10-07 Pedro Alves <palves@redhat.com>
708
709 PR breakpoints/11568
710 * breakpoint.c (remove_threaded_breakpoints): Say "no longer in
711 the thread list" instead of "gone".
712
713 2013-10-06 Sergio Durigan Junior <sergiodj@redhat.com>
714
715 * NEWS: Mention new convenience variable $_exitsignal.
716 * corelow.c (core_open): Reset exit convenience variables. Set
717 $_exitsignal to the uncaught signal which generated the corefile.
718 * infrun.c (handle_inferior_event): Reset exit convenience
719 variables. Set $_exitsignal for TARGET_WAITKIND_SIGNALLED.
720 (clear_exit_convenience_vars): New function.
721 * inferior.h (clear_exit_convenience_vars): New prototype.
722
723 2013-10-06 Yao Qi <yao@codesourcery.com>
724
725 * varobj.h: Add comments to enum varobj_languages.
726
727 2013-10-04 Doug Evans <dje@google.com>
728
729 Add support for DWP file format version 2.
730 * NEWS: Mention support for DWP file format version 2.
731 * dwarf2read.c (dwarf2_section_info): Convert asection field to a
732 union of asection, containing_section. New fields virtual_offset
733 and is_virtual. Change type of readin filed from int to char.
734 (dwo_sections, dwo_file): Tweak comments.
735 (dwp_v2_section_ids): New enum.
736 (dwp_sections): New fields abbrev, info, line, loc, macinfo, macro,
737 str_offsets, types.
738 (virtual_v1_dwo_sections): Renamed from virtual_dwo_sections.
739 All uses updated.
740 (virtual_v2_dwo_sections): New struct.
741 (dwp_hash_table): New fields version, nr_columns. Change type of
742 section_pool field to a union.
743 (dwp_file): New field version.
744 (dwarf2_has_info): Check for virtual sections.
745 (get_containing_section): New function.
746 (get_section_bfd_owner, get_section_bfd_section): Call it.
747 (dwarf2_locate_sections): Update.
748 (dwarf2_section_empty_p): Update.
749 (dwarf2_read_section): Handle virtual sections.
750 (locate_dwz_sections): Update.
751 (create_dwp_hash_table): Document and handle V2 format.
752 (locate_v1_virtual_dwo_sections): Renamed from
753 locate_virtual_dwo_sections and update. All callers updated.
754 (create_dwo_unit_in_dwp_v1): Renamed from create_dwo_in_dwp.
755 Delete arg htab. Rename arg section_index to unit_index.
756 All callers updated.
757 (MAX_NR_V1_DWO_SECTIONS): Renamed from MAX_NR_DWO_SECTIONS.
758 All uses updated.
759 (create_dwp_v2_section, create_dwo_unit_in_dwp_v2): New functions.
760 (lookup_dwo_unit_in_dwp): Add V2 support.
761 (dwarf2_locate_dwo_sections): Update.
762 (dwarf2_locate_common_dwp_sections): Renamed from
763 dwarf2_locate_dwp_sections and update. All callers updated.
764 (dwarf2_locate_v2_dwp_sections): New function.
765 (open_and_init_dwp_file): Add V2 support.
766 (read_str_index): New locals str_section, str_offsets_section.
767
768 2013-10-04 Pedro Alves <palves@redhat.com>
769
770 * common/ptid.c (null_ptid, minus_one_ptid, ptid_build)
771 (pid_to_ptid, ptid_get_pid, ptid_get_lwp, ptid_get_tid)
772 (ptid_equal, ptid_is_pid, ptid_lwp_p, ptid_tid_p): Replace
773 describing comments with references to ptid.h.
774 * common/ptid.h: Remove intro description of constructors,
775 accessors and predicates.
776 (struct ptid): Reformat.
777 (minus_one_ptid, ptid_build, pid_to_ptid, ptid_get_pid)
778 (ptid_get_lwp, ptid_get_tid, ptid_equal, ptid_is_pid): Change
779 describing comments.
780
781 2013-10-04 Joel Brobecker <brobecker@adacore.com>
782
783 * aix-thread.c (sync_threadlists): Add missing ')' in call
784 to ptid_build.
785
786 2013-10-04 Joel Brobecker <brobecker@adacore.com>
787
788 * procfs.c (procfs_init_inferior): Fix typo causing the build
789 to fail.
790
791 2013-10-04 Joel Brobecker <brobecker@adacore.com>
792
793 * aix-thread.c (ptrace32): Remove cast to addr_ptr.
794
795 2013-10-04 Joel Brobecker <brobecker@adacore.com>
796
797 * mi/mi-main.c (run_one_inferior): Add function description.
798 Make ARG a pointer to an integer whose value determines whether
799 we should "run" or "start" the program.
800 (mi_cmd_exec_run): Add handling of the "--start" option.
801 Reject all other command-line options.
802 * NEWS: Add entry for "-exec-run"'s new "--start" option.
803
804 2013-10-04 Yao Qi <yao@codesourcery.com>
805
806 * remote-notif.h (REMOTE_NOTIF_ID): New enum.
807 (struct notif_client) <pending_event>: Moved
808 to struct remote_notif_state.
809 <id>: New field.
810 (struct remote_notif_state) <pending_event>: New field.
811 (notif_event_xfree): Declare.
812 * remote-notif.c (handle_notification): Adjust.
813 (notif_event_xfree): New function.
814 (do_notif_event_xfree): Call notif_event_xfree.
815 (remote_notif_state_xfree): Call notif_event_xfree to free
816 each element in field pending_event.
817 * remote.c (discard_pending_stop_replies): Remove declaration.
818 (discard_pending_stop_replies_in_queue): Declare.
819 (remote_close): Call discard_pending_stop_replies_in_queue
820 instead of discard_pending_stop_replies.
821 (remote_start_remote): Adjust.
822 (stop_reply_xfree): Call notif_event_xfree.
823 (notif_client_stop): Adjust initialization.
824 (remote_notif_remove_all): Rename it to ...
825 (remove_stop_reply_for_inferior): ... this. Update comments.
826 Don't check INF is NULL.
827 (discard_pending_stop_replies): Return early if notif_state is
828 NULL. Adjust. Don't check INF is NULL.
829 (remote_notif_get_pending_events): Adjust.
830 (discard_pending_stop_replies_in_queue): New function.
831 (remote_wait_ns): Likewise.
832
833 2013-10-04 Yao Qi <yao@codesourcery.com>
834
835 * remote-notif.c (DECLARE_QUEUE_P): Remove.
836 (notif_queue): Remove.
837 (remote_notif_process): Add one parameter 'notif_queue'.
838 Update comments. Callers update.
839 (remote_async_get_pending_events_token): Remove.
840 (remote_notif_register_async_event_handler): Remove.
841 (remote_notif_unregister_async_event_handler): Remove.
842 (handle_notification): Add parameter 'notif_queue'. Update
843 comments. Callers update.
844 (notif_xfree): Remove.
845 (remote_notif_state_allocate): New function.
846 (remote_notif_state_xfree): New function.
847 (_initialize_notif): Remove code to allocate queue.
848 * remote-notif.h (DECLARE_QUEUE_P): Moved from remote-notif.c.
849 (struct remote_notif_state): New.
850 (handle_notification): Update declaration.
851 (remote_notif_process): Likewise.
852 (remote_notif_register_async_event_handler): Remove.
853 (remote_notif_unregister_async_event_handler): Remove.
854 (remote_notif_state_allocate): Declare.
855 (remote_notif_state_xfree): Declare.
856 * remote.c (struct remote_state) <notif_state>: New field.
857 (remote_close): Don't call
858 remote_notif_unregister_async_event_handler. Call
859 remote_notif_state_xfree.
860 (remote_open_1): Don't call
861 remote_notif_register_async_event_handler. Call
862 remote_notif_state_allocate.
863
864 2013-10-04 Yao Qi <yao@codesourcery.com>
865
866 * varobj.c (create_child_with_value): Remove 'const' from the
867 type of parameter 'name'.
868 (varobj_add_child): Likewise.
869 (install_dynamic_child): Remove 'const' from the type of
870 parameter 'name'.
871 (varobj_add_child): Likewise.
872 (create_child_with_value): Likewise. Update comments. Don't
873 duplicate 'name'.
874 (update_dynamic_varobj_children): Duplicate 'name'
875 and pass it to install_dynamic_child.
876
877 2013-10-03 Phil Muldoon <pmuldoon@redhat.com>
878
879 * python/py-value.c (convert_value_from_python): Move PyInt_Check
880 conversion logic to occur after PyLong_Check. Comment on order
881 change significance.
882 * python/py-arch.c (archpy_disassemble): Comment on order of
883 conversion for integers and longs.
884
885 2013-10-03 Pedro Alves <palves@redhat.com>
886
887 * common/linux-ptrace.c (linux_check_ptrace_features): Factor out
888 the PTRACE_O_TRACESYSGOOD and PTRACE_O_TRACEFORK to separate
889 functions. Always test for PTRACE_O_TRACESYSGOOD even if
890 PTRACE_O_TRACEFORK is not supported.
891 (linux_test_for_tracesysgood): New function.
892 (linux_test_for_tracefork): New function, factored out from
893 linux_check_ptrace_features, and also don't kill child_pid here.
894
895 2013-10-03 Tristan Gingold <gingold@adacore.com>
896
897 * i386-darwin-nat.c (i386_darwin_dr_set): Fix argument type.
898 Remove verbose error reporting. Use detected state to
899 thread_set_state call.
900 (i386_darwin_dr_get): Fix return type. Remove verbose error
901 report.
902 Remove trailing spaces.
903
904 2013-10-02 Pedro Alves <palves@redhat.com>
905
906 * cp-valprint.c (cp_print_value_fields): Adjust calls to
907 val_print_optimized_out.
908 * jv-valprint.c (java_print_value_fields): Likewise.
909 * p-valprint.c (pascal_object_print_value_fields): Likewise.
910 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full)
911 <DWARF_VALUE_REGISTER>: If the register was not saved, return a
912 new optimized out value.
913 * findvar.c (address_from_register): Likewise.
914 * frame.c (put_frame_register): Tweak error string to say the
915 register was not saved, rather than optimized out.
916 * infcmd.c (default_print_one_register_info): Adjust call to
917 val_print_optimized_out. Use value_of_register instead of
918 get_frame_register_value.
919 * mi/mi-main.c (output_register): Use value_of_register instead of
920 get_frame_register_value.
921 * valprint.c (valprint_check_validity): Likewise.
922 (val_print_optimized_out): New value parameter. If the value is
923 lval_register, print <not saved> instead.
924 (value_check_printable, val_print_scalar_formatted): Adjust calls
925 to val_print_optimized_out.
926 * valprint.h (val_print_optimized_out): New value parameter.
927 * value.c (struct value) <optimized_out>: Extend comment.
928 (error_value_optimized_out): New function.
929 (require_not_optimized_out): Use it. Use a different string for
930 lval_register values.
931 * value.h (error_value_optimized_out): New declaration.
932 * NEWS: Mention <not saved>.
933
934 2013-10-02 Joel Brobecker <brobecker@adacore.com>
935
936 * symtab.c (compare_search_syms): Use FILENAME_CMP instead of
937 strcmp to compare two symtab filenames.
938
939 2013-10-02 Joel Brobecker <brobecker@adacore.com>
940
941 * symtab.c (search_symbols_equal): Delete.
942 (sort_search_symbols_remove_dups): Replace call to
943 search_symbols_equal by call to compare_search_syms,
944 adjusting as necessary.
945
946 2013-10-02 Phil Muldoon <pmuldoon@redhat.com>
947
948 PR python/15579
949
950 * python/python.c: Document gdb.execute command in Python help.
951
952 2013-10-02 Phil Muldoon <pmuldoon@redhat.com>
953
954 * python/py-frame.c (frame_info_to_frame_object): Use
955 gdbpy_convert_exception. Clean up Python object on failure.
956
957 2013-10-02 Phil Muldoon <pmuldoon@redhat.com>
958
959 * python/lib/gdb/command/frame_filters.py
960 (InfoFrameFilter.list_frame_filters): Retrieve exception manually.
961 (ShowFrameFilterPriority.invoke): Ditto.
962
963 2013-10-01 Keith Seitz <keiths@redhat.com>
964
965 * linespec.c (struct ls_parser): Make 'saved_arg' const.
966 (parse_linespec): Make 'argptr' const.
967 Remove temporary cast of 'argptr' to const char **.
968 (decode_line_full): Pass const pointer to parse_linespec.
969 (decode_line_1): Likewise.
970 (decode_objc): Make local variable 'new_argptr' const.
971 (find_function_symbols): Remove temporary cast to char *
972 to find_imps.
973 * objc-lang.c (find_imps): Make argument 'method' const.
974 Return const.
975 * objc-lang.h (find_imps): Likewise.
976
977 2013-10-01 Keith Seitz <keiths@redhat.com>
978
979 * completer.c (skip_quoted_chars): Make all arguments const.
980 Return const.
981 (skip_quoted): Likewise.
982 * completer.h (skip_quoted_chars): Likewise.
983 (skip_quoted): Likewise.
984 * defs.h (skip_quoted): Remove duplicate declaration.
985 * jv-exp.y: Include completer.h.
986 (yylex): Remove unneccessary cast to char * fro skip_quoted.
987 * p-exp.y: Include completer.h.
988
989 2013-10-01 Keith Seitz <keiths@redhat.com>
990
991 * c-exp.y (parse_number): Make first argument const.
992 Make a copy of the input to manipulate.
993 (c_parse_escape): Make first argument const.
994 Make local variable 'tokptr' const.
995 (parse_string_or_char): Make first two arguments const.
996 (macro_original_text): Make const.
997 (lex_one_token): Make local variable 'tokstart' const.
998 Likewise for local variables named 'p'.
999 Cast away const for struct stoken (temporary).
1000 * c-lang.h (c_parse_escpae): Make first argument const.
1001 * cli/cli-cmds.c (echo_command): Make local variable 'p'
1002 const.
1003 * cli/cli-setshow.c (do_set_command): Likewise for 'p' in
1004 var_string case.
1005 * f-exp.y (parse_number): Make first argument const.
1006 (match_string_literal): Make local variable 'tokstart'
1007 const.
1008 (yylex): Make local variable 'p' const.
1009 Cast away const for struct stoken (temporary).
1010 * go-exp.y (parse_number): Make first argument const.
1011 (parse_string_or_char): Likewise.
1012 Make local variable 'tokstart' const.
1013 (lex_one_token): Likewise for numerous locals called 'p'.
1014 Cast away const for struct stoken (temporary).
1015 * jv-exp.y (parse_number): Make first argument const.
1016 Make local variables 'tokstart' and 'tokptr' const.
1017 Cast away const for call to skip_quoted (temporary).
1018 (yylex): Make local variable 'p' const.
1019 Cast away const for struct stoken (temporary).
1020 * m2-exp.y (parse_number): Make local variable 'p' const.
1021 (yylex): Likewise for 'tokstart'.
1022 Cast away const for struct stoken (temporary).
1023 Make local variable 'p' const.
1024 * macroexp.c (get_character_constant): Pass a const string
1025 to c_parse_escape.
1026 (get_string_literal): Likewise.
1027 (macro_expand_next): Make first argument const.
1028 Cast away const for init_shared_buffer.
1029 * macroexp.h (macro_expand_next): Make first argument const.
1030 * p-exp.y (yylex): Make a local copy of 'lexptr'.
1031 Pass a const string to c_parse_escape.
1032 Make local variables 'p' and 'namestart' const.
1033 * parse.c (lexptr): Make const.
1034 (prev_lexptr): Likewise.
1035 (find_template_name_end): Return const.
1036 Make argument const, too.
1037 (parse_exp_in_context): Make first argument const.
1038 Remove the entire const_hack.
1039 (parse_exp_in_context_1): Make first argument const.
1040 * parser-defs.h (find_template_name_end): Return const.
1041 Make argument const, too.
1042 (lexptr): Make const.
1043 (prev_lexptr): Likewise.
1044 * utils.c (parse_escape): Make second argument const.
1045 * utils.h (parse_escape): Likewise.
1046
1047 2013-10-01 Keith Seitz <keiths@redhat.com>
1048
1049 * ada-exp.y (write_object_renaming): Update: struct stoken.ptr
1050 is now const.
1051 (block_lookup): Make 'raw_name' and 'name' const.
1052 * ada-lex.l (processString): Update for struct stoken.ptr.
1053 * c-exp.y (qualified_name : TYPENAME COLONCOLON '~' name): Likewise.
1054 (operator_stoken): Likewise.
1055 (lex_one_token): Remove temporary cast to char * for
1056 'yylval.sval.ptr'.
1057 * f-exp.y (yylex): Likewise.
1058 * gdb-types.c (lookup_struct_elt_type): Make argument 'name' const.
1059 * gdbtypes.h (lookup_struct_elt_type): Likewisee.
1060 * go-exp.y (lex_one_token): Remove temporary cast to char * for
1061 'yylval.sval.ptr'.
1062 * jv-exp.y (QualifiedName): Update for struct stoken.ptr.
1063 (yylex): Remove temporary cast to char * for 'yylval.sval.ptr'.
1064 * linespec.c (struct ls_parser): Make 'stream' const.
1065 (find_parameter_list_end): Make argument 'input' and local
1066 variable 'p' const.
1067 (linespec_lexer_lex_string): Make local variables 'start' and
1068 'p' const.
1069 Use skip_spaces_const instead of skip_spaces.
1070 (linespec_lexer_peek_token): Make local variable 'saved_stream'
1071 const.
1072 (parse_linespec): Temporarily cast 'argptr' to const for
1073 'parser->lexer.stream'.
1074 * m2-exp.y (yylex): Remove temporary cast to char * for
1075 'yylval.sval.ptr'.
1076 * objc-lang.c (add_msglist): Make local variable 'p' const.
1077 * p-exp.y (exp : exp '['): Update for struct stoken.ptr.
1078 (exp : STRING): Make 'sp' const.
1079 (parse_number): Make argument 'p' const.
1080 * parser-defs.h (struct stoken): Make 'ptr' const.
1081
1082 2013-10-01 Doug Evans <dje@google.com>
1083
1084 * cli/cli-decode.c: Remove unnecessary inclusion of tui/tui.h.
1085
1086 2013-10-01 Yao Qi <yao@codesourcery.com>
1087
1088 * varobj.c (c_value_of_root): Remove declaration.
1089 (cplus_value_of_root, java_value_of_root): Likewise.
1090 (ada_value_of_root): Likewise.
1091 (struct language_specific) <value_of_root>: Remove.
1092 (languages): Update initialization.
1093 (check_scope): Move earlier.
1094 (c_value_of_root): Move earlier and rename to ...
1095 (value_of_root_1): ... this.
1096 (value_of_root): Caller update.
1097 (cplus_value_of_root, java_value_of_root): Remove.
1098 (ada_value_of_root): Remove.
1099
1100 2013-10-01 Yao Qi <yao@codesourcery.com>
1101
1102 * varobj.c (varobj_format_string): Remove "unknown".
1103 (languages): Remove the first element.
1104 * varobj.h (enum varobj_languages): Remove vlang_c.
1105
1106 2013-10-01 Yao Qi <yao@codesourcery.com>
1107
1108 * varobj.c (struct language_specific) <language>: Remove.
1109 (languages): Update the initialization.
1110
1111 2013-10-01 Yao Qi <yao@codesourcery.com>
1112
1113 * arm-wince-tdep.c: Remove inclusion of "solib.h" and
1114 "solib-target.h". Include "windows-tdep.h".
1115 (arm_wince_init_abi): Call windows_init_abi. Remove call to
1116 set_solib_ops and set_gdbarch_has_dos_based_file_system.
1117 * configure.tgt (arm*-wince-pe | arm*-*-mingw32ce*): Append
1118 windows-tdep.o to gdb_target_obs.
1119
1120 2013-10-01 Yao Qi <yao@codesourcery.com>
1121
1122 * amd64-windows-tdep.c: Remove inclusion of "solib.h" and
1123 "solib-target.h".
1124 (amd64_windows_init_abi): Don't call set_solib_ops and
1125 set_gdbarch_iterate_over_objfiles_in_search_order. Call
1126 windows_init_abi instead.
1127 * i386-cygwin-tdep.c: Remove inclusion of "solib.h" and
1128 "solib-target.h".
1129 (i386_cygwin_init_abi): Don't call set_solib_ops,
1130 set_gdbarch_has_dos_based_file_system and
1131 set_gdbarch_iterate_over_objfiles_in_search_order. Call
1132 windows_init_abi instead.
1133 * windows-tdep.c: Include "solib.h" and "solib-target.h".
1134 (windows_init_abi): New function.
1135 (windows_iterate_over_objfiles_in_search_order): Make it
1136 static.
1137 * windows-tdep.h (windows_init_abi): Declare.
1138 (windows_iterate_over_objfiles_in_search_order): Remove
1139 declaration.
1140
1141 2013-10-01 Jerome Guitton <guitton@adacore.com>
1142
1143 Checked in by Joel Brobecker <brobecker@adacore.com>
1144 * system-gdbinit/elinos.py (get_elinos_environment): Return an
1145 incomplete dictionnary instead of None in case of missing
1146 environment variables.
1147 (elinos_init): in case of an incomplete environment, best
1148 effort to load system libraries instead of abort.
1149
1150 2013-10-01 Joel Brobecker <brobecker@adacore.com>
1151
1152 * ada-lang.c (ada_has_this_exception_support): Ignore
1153 mst_solib_trampoline minimal symbols.
1154
1155 2013-09-30 Tristan Gingold <gingold@adacore.com>
1156
1157 * i386-darwin-nat.c (darwin_complete_target): Install methods for
1158 hardware watchpoint.
1159 (i386_darwin_dr_set): Support 32 and 64 bit states.
1160 (i386_darwin_dr_get): Likewise.
1161 (i386_darwin_dr_set_control): Make static.
1162 (i386_darwin_dr_set_addr, i386_darwin_dr_get_addr)
1163 (i386_darwin_dr_get_status, i386_darwin_dr_get_control): Likewise.
1164
1165 2013-09-30 Luis Machado <lgustavo@codesourcery.com>
1166
1167 * aarch64-linux-nat.c: Replace PIDGET with ptid_get_pid.
1168 Replace TIDGET with ptid_get_lwp.
1169 Replace GET_LWP with ptid_get_lwp.
1170 * aix-thread.c (BUILD_THREAD, BUILD_LWP): Remove.
1171 Replace BUILD_THREAD with ptid_build.
1172 Replace BUILD_LWP with ptid_build.
1173 Replace PIDGET with ptid_get_pid.
1174 Replace TIDGET with ptid_get_lwp.
1175 * alphabsd-nat.c: Replace PIDGET with ptid_get_pid.
1176 * amd64-linux-nat.c: Replace PIDGET with ptid_get_pid.
1177 Replace TIDGET with ptid_get_lwp.
1178 * amd64bsd-nat.c: Replace PIDGET with ptid_get_pid.
1179 * arm-linux-nat.c: Replace PIDGET with ptid_get_pid.
1180 Replace TIDGET with ptid_get_lwp.
1181 Replace GET_LWP with ptid_get_lwp.
1182 * armnbsd-nat.c: Replace PIDGET with ptid_get_pid.
1183 * auxv.c: Likewise.
1184 * breakpoint.c: Likewise.
1185 * common/ptid.c (ptid_is_pid): Condense check for
1186 null_ptid and minus_one_ptid.
1187 (ptid_lwp_p): New function.
1188 (ptid_tid_p): New function.
1189 * common/ptid.h: Update comments for accessors.
1190 (ptid_lwp_p): New prototype.
1191 (ptid_tid_p): New prototype.
1192 * defs.h (PIDGET, TIDGET, MERGEPID): Do not define.
1193 * gcore.c: Replace PIDGET with ptid_get_pid.
1194 * gdbthread.h: Likewise.
1195 * gnu-nat.c: Likewise.
1196 * hppa-linux-nat.c: Replace PIDGET with ptid_get_pid.
1197 Replace TIDGET with ptid_get_lwp.
1198 * hppabsd-nat.c: Replace PIDGET with ptid_get_pid.
1199 * hppanbsd-nat.c: Likewise.
1200 * i386-linux-nat.c: Replace PIDGET with ptid_get_pid.
1201 Replace TIDGET with ptid_get_lwp.
1202 * i386bsd-nat.c: Replace PIDGET with ptid_get_pid.
1203 * ia64-linux-nat.c: Replace PIDGET with ptid_get_pid.
1204 * infcmd.c: Likewise.
1205 * inferior.h: Likewise.
1206 * inflow.c: Likewise.
1207 * infrun.c: Likewise.
1208 * linux-fork.c: Likewise.
1209 * linux-nat.c: Replace PIDGET with ptid_get_pid.
1210 Replace GET_PID with ptid_get_pid.
1211 Replace is_lwp with ptid_lwp_p.
1212 Replace GET_LWP with ptid_get_lwp.
1213 Replace BUILD_LWP with ptid_build.
1214
1215 2013-09-28 Mike Frysinger <vapier@gentoo.org>
1216
1217 * common/linux-btrace.c: Move sys/syscall.h out of the
1218 HAVE_LINUX_PERF_EVENT_H check and wrap it in HAVE_SYS_SYSCALL_H.
1219 Also check for SYS_perf_event_open before attempting to buid.
1220
1221 2013-09-27 Doug Evans <dje@google.com>
1222
1223 * dwarf2read.c (dwarf2_section_info): Add comment.
1224 (dwp_file): Split loaded_cutus into loaded_cus, loaded_tus.
1225 All uses updated.
1226 (dwarf2_section_empty_p): Rename arg from "info" to "section".
1227 (dwarf2_read_section): Delete unused local "header". Add section
1228 name to error message.
1229 (create_dwo_in_dwp): Tweak comment.
1230 (MAX_NR_DWO_SECTIONS): Combine count of .debug_macro + .debug_macinfo.
1231
1232 * dwarf2read.c (die_reader_specs): Tweak comment.
1233 (get_section_bfd_owner, get_section_bfd_section): New functions.
1234 (get_section_name, get_section_file_name): New functions.
1235 (get_section_id, get_section_flags): New functions.
1236 (*): Use new functions to access section fields.
1237
1238 * dwarf2read.c (struct dwo_file): Add/tweak comments.
1239 (lookup_dwo_unit_in_dwp): Renamed from lookup_dwo_in_dwp. Remove
1240 arg "htab". All callers updated.
1241 (create_debug_types_hash_table): Remove redundant copy of
1242 abbrev_section.
1243 (create_dwo_in_dwp): Tweak comments.
1244 (read_str_index): Tweak comment. Record dwarf form name in static
1245 local.
1246
1247 2013-09-27 Pedro Alves <palves@redhat.com>
1248
1249 * remote.h (REMOTE_SYSROOT_PREFIX): New define.
1250 (remote_filename_p): Add comment.
1251 * remote.c (remote_filename_p): Adjust to use
1252 REMOTE_SYSROOT_PREFIX.
1253 * solib.c (solib_find): When deciding whether we need to add a
1254 directory separator, check whether the sysroot is "remote:"
1255 instead of checking whether the patch has a drive spec. Add
1256 comments.
1257
1258 2013-09-27 Pedro Alves <palves@redhat.com>
1259
1260 * remote.c (struct stop_reply) <solibs_changed, replay_event>:
1261 Delete fields.
1262 (remote_parse_stop_reply): Adjust, setting event->ws.kind
1263 directly.
1264
1265 2013-09-26 Jan Kratochvil <jan.kratochvil@redhat.com>
1266
1267 Fix set debug frame output.
1268 * frame.c (fprint_frame_type): Add TAILCALL_FRAME entry. Move
1269 SENTINEL_FRAME entry lower to match enum frame_type order.
1270
1271 2013-09-26 Pierre Muller <muller@sourceware.org>
1272
1273 Replace constant values 8 to 15 by AMD64_R8_REGNUM to
1274 AMD64_R15_REGNUM when a register index is expected.
1275 * amd64-windows-tdep.c (amd64_windows_dummy_call_integer_regs):
1276 Substitute in array.
1277 * amd64-tdep.c (amd64_dwarf_regmap): Ditto.
1278 (amd64_push_arguments): Substitute in integer_regnum array.
1279
1280 2013-09-25 Doug Evans <dje@google.com>
1281
1282 * objfiles.c (allocate_objfile): Move comment to better place.
1283
1284 New option "set debug symfile on".
1285 * NEWS: Mention "set debug symfile".
1286 * Makefile.in (SFILES): Add symfile-debug.c.
1287 (COMMON_OBS): Add symfile-debug.o.
1288 * elfread.c (elf_symfile_read): Use objfile_set_sym_fns to set the
1289 objfile's symbol functions.
1290 * objfiles.h (objfile_set_sym_fns): Declare.
1291 * symfile-debug.c: New file.
1292 * symfile.c (syms_from_objfile_1): Use objfile_set_sym_fns to set the
1293 objfile's symbol functions.
1294 (reread_symbols): Ditto.
1295
1296 * symfile.h (struct sym_fns): Delete member "sym_flavour".
1297 All uses updated.
1298 (add_symtab_fns): Update prototype.
1299 * symfile.c (sym_fns_ptr): Delete. Replace with ...
1300 (registered_sym_fns): ... this.
1301 (symtab_fns): Update.
1302 (add_symtab_fns): New arg "flavour". All callers updated.
1303 (find_sym_fns): Rewrite to use new sym_fns registry.
1304
1305 * symfile.h (struct sym_fns): Add "objfile" argument to
1306 sym_read_linetable. All uses updated.
1307
1308 * symtab.c (domain_name, search_domain_name): New functions.
1309 * symtab.h (domain_name, search_domain_name): Declare.
1310
1311 * symfile.h (struct quick_symbol_functions): Reorg arg list of
1312 map_matching_symbols so objfile is first. All uses updated.
1313 * dwarf2read.c (dw2_map_matching_symbols): Update signature.
1314 * psymtab.c (map_matching_symbols_psymtab): Update signature.
1315
1316 2013-09-25 Andreas Arnez <arnez@linux.vnet.ibm.com>
1317
1318 PR shlibs/8882
1319 * solib-svr4.c (svr4_read_so_list): Skip the vDSO when reading
1320 link map entries.
1321
1322 2013-09-24 Doug Evans <dje@google.com>
1323
1324 * objfiles.c (free_objfile): Move comment.
1325
1326 2013-09-24 Joel Brobecker <brobecker@adacore.com>
1327
1328 * ada-exp.y (string_to_operator): Delete.
1329 (dummy_string_to_ada_operator): Delete.
1330
1331 2013-09-24 Joel Brobecker <brobecker@adacore.com>
1332
1333 Revert:
1334 * i386-tdep.h (enum amd64_reg_class): New, moved here from
1335 amd64-tdep.c.
1336 (struct gdbarch_tdep): Add fields call_dummy_num_integer_regs,
1337 call_dummy_integer_regs, and classify.
1338 * amd64-tdep.h (amd64_classify): Add declaration.
1339 * amd64-tdep.c (amd64_dummy_call_integer_regs): New static constant.
1340 (amd64_reg_class): Delete, moved to i386-tdep.h.
1341 (amd64_classify): Make non-static. Move declaration to amd64-tdep.h.
1342 Replace call to amd64_classify by call to tdep->classify.
1343 (amd64_push_arguments): Get the list of registers to use for
1344 passing integer parameters from the gdbarch tdep structure,
1345 rather than using a hardcoded one. Replace calls to amd64_classify
1346 by calls to tdep->classify.
1347 (amd64_push_dummy_call): Get the register number used for
1348 the "hidden" argument from tdep->call_dummy_integer_regs.
1349 (amd64_init_abi): Initialize tdep->call_dummy_num_integer_regs
1350 and tdep->call_dummy_integer_regs. Set tdep->classify.
1351
1352 2013-09-24 Joel Brobecker <brobecker@adacore.com>
1353
1354 Revert:
1355 * i386-tdep.h (gdbarch_tdep): Add field memory_args_by_pointer.
1356 * amd64-tdep.c (amd64_push_arguments): Add handling of architectures
1357 where tdep->memory_args_by_pointer is non-zero.
1358
1359 2013-09-24 Joel Brobecker <brobecker@adacore.com>
1360
1361 Revert:
1362 * i386-tdep.h (struct gdbarch_tdep): Add new field
1363 integer_param_regs_saved_in_caller_frame.
1364 * amd64-tdep.c (amd64_push_dummy_call): Allocate some memory on
1365 stack if tdep->integer_param_regs_saved_in_caller_frame is set.
1366
1367 2013-09-24 Joel Brobecker <brobecker@adacore.com>
1368
1369 * amd64-windows-tdep.c: #include "value.h"
1370 (amd64_windows_classify): Delete.
1371 (amd64_windows_passed_by_integer_register)
1372 (amd64_windows_passed_by_xmm_register)
1373 (amd64_windows_passed_by_pointer)
1374 (amd64_windows_adjust_args_passed_by_pointer)
1375 (amd64_windows_store_arg_in_reg, amd64_windows_push_arguments)
1376 (amd64_windows_push_dummy_call): New functions.
1377 (amd64_windows_init_abi): Remove setting of
1378 tdep->call_dummy_num_integer_regs, tdep->call_dummy_integer_regs,
1379 tdep->classify, tdep->memory_args_by_pointer and
1380 tdep->integer_param_regs_saved_in_caller_frame.
1381 Add call to set_gdbarch_push_dummy_call.
1382
1383 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1384
1385 * dwarf2read.c (open_and_init_dwp_file): Try open_dwp_file also with
1386 objfile->original_name.
1387
1388 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1389
1390 Pass down original filename for objfile.
1391 * coffread.c (coff_symfile_read): Update symbol_file_add_separate call.
1392 * elfread.c (elf_symfile_read): Likewise.
1393 * jit.c (jit_object_close_impl): Update allocate_objfile call, no
1394 longer set ORIGINAL_NAME.
1395 (jit_bfd_try_read_symtab): Update symbol_file_add_from_bfd call.
1396 * jv-lang.c (get_dynamics_objfile): Update allocate_objfile call.
1397 * machoread.c (macho_add_oso_symfile): Add parameter name. Update
1398 symbol_file_add_from_bfd call.
1399 (macho_symfile_read_all_oso): Update two macho_add_oso_symfile calls.
1400 (macho_check_dsym): Add parameter filenamep. Change function comment.
1401 Set *filenamep.
1402 (macho_symfile_read): New variable dsym_filename. Update
1403 macho_check_dsym call. Use it for symbol_file_add_separate.
1404 * objfiles.c (allocate_objfile): Add parameter name. New comment for
1405 it. Use it for objfile->original_name.
1406 (objfile_name): Return OBFD's filename, if available.
1407 * objfiles.h (allocate_objfile): Add new parameter name.
1408 * solib.c (solib_read_symbols): Update symbol_file_add_from_bfd call.
1409 * symfile-mem.c (symbol_file_add_from_memory): Update
1410 symbol_file_add_from_bfd call.
1411 * symfile.c (read_symbols): Update symbol_file_add_separate call, new
1412 comment for it.
1413 (symbol_file_add_with_addrs): New parameter name, add function comment
1414 for it. Remove variable name. Update allocate_objfile call.
1415 (symbol_file_add_separate): New parameter name, add function comment
1416 for it. Update symbol_file_add_with_addrs call.
1417 (symbol_file_add_from_bfd): New parameter name. Update
1418 symbol_file_add_with_addrs call.
1419 (symbol_file_add): Update symbol_file_add_from_bfd call.
1420 (reread_symbols): New variable original_name. Save
1421 objfile->original_name by it.
1422 * symfile.h (symbol_file_add_from_bfd, symbol_file_add_separate): Add
1423 second parameter.
1424
1425 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1426
1427 Code cleanup: Add objfile_name accessor function.
1428 * ada-lang.c (is_known_support_routine): Use objfile_name.
1429 * auto-load.c (source_gdb_script_for_objfile)
1430 (auto_load_objfile_script): Likewise.
1431 * coffread.c (coff_symtab_read, read_one_sym): Likewise.
1432 * dbxread.c (dbx_symfile_read): Likewise.
1433 * dwarf2-frame.c (dwarf2_build_frame_info): Likewise.
1434 * dwarf2loc.c (locexpr_describe_location_piece): Likewise.
1435 * dwarf2read.c (dwarf2_get_dwz_file, dwarf2_read_index)
1436 (dw2_symtab_iter_next, dw2_expand_symtabs_matching)
1437 (lookup_dwp_signatured_type, lookup_dwo_unit)
1438 (dwarf2_build_psymtabs_hard, scan_partial_symbols, process_queue)
1439 (fixup_go_packaging, process_imported_unit_die, dwarf2_physname)
1440 (read_import_statement, create_dwo_cu, open_and_init_dwp_file)
1441 (lookup_dwo_cutu, read_call_site_scope, dwarf2_ranges_read)
1442 (dwarf2_record_block_ranges, read_common_block, read_typedef)
1443 (read_subrange_type, load_partial_dies, read_partial_die)
1444 (read_addr_index_1, read_str_index, dwarf_decode_lines_1)
1445 (die_containing_type, build_error_marker_type, lookup_die_type)
1446 (follow_die_ref_or_sig, follow_die_ref, dwarf2_fetch_die_loc_sect_off)
1447 (dwarf2_fetch_constant_bytes, follow_die_sig, get_signatured_type)
1448 (get_DW_AT_signature_type, write_psymtabs_to_index)
1449 (save_gdb_index_command): Likewise.
1450 * elfread.c (find_separate_debug_file_by_buildid, elf_symfile_read):
1451 Likewise.
1452 * expprint.c (dump_subexp_body_standard): Likewise.
1453 * gdbtypes.c (type_name_no_tag_or_error): Likewise.
1454 * jit.c (jit_object_close_impl): Use the objfile field name renamed to
1455 original_name.
1456 * linux-thread-db.c (try_thread_db_load_from_pdir_1): New variable
1457 obj_name, use objfile_name for it, use the variable.
1458 (try_thread_db_load_from_pdir, has_libpthread, thread_db_new_objfile):
1459 Use objfile_name.
1460 * machoread.c (macho_symtab_read, macho_check_dsym)
1461 (macho_symfile_relocate): Likewise.
1462 * maint.c (maintenance_translate_address): Likewise.
1463 * minidebug.c (find_separate_debug_file_in_section): Likewise.
1464 * minsyms.c (install_minimal_symbols): Likewise.
1465 * objfiles.c (allocate_objfile): Use the objfile field name renamed to
1466 original_name.
1467 (filter_overlapping_sections): Use objfile_name.
1468 (objfile_name): New function.
1469 * objfiles.h (struct objfile): Rename field name to original_name.
1470 (objfile_name): New prototype.
1471 * printcmd.c (sym_info, address_info): Use objfile_name.
1472 * probe.c (parse_probes, collect_probes, compare_probes)
1473 (info_probes_for_ops): Likewise.
1474 * progspace.c (clone_program_space): Likewise.
1475 * psymtab.c (require_partial_symbols, dump_psymtab, allocate_psymtab)
1476 (maintenance_info_psymtabs): Likewise.
1477 * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile)
1478 (source_section_scripts): Likewise.
1479 * python/py-objfile.c (objfpy_get_filename): Likewise.
1480 * python/py-progspace.c (pspy_get_filename): Likewise.
1481 * solib-aix.c (solib_aix_get_toc_value): Likewise.
1482 * solib-som.c (match_main, som_solib_section_offsets): Likewise.
1483 * solib.c (solib_read_symbols): Likewise.
1484 * stabsread.c (scan_file_globals): Likewise.
1485 * stap-probe.c (handle_stap_probe): Likewise.
1486 * symfile.c (symbol_file_clear, separate_debug_file_exists)
1487 (find_separate_debug_file_by_debuglink): Likewise.
1488 (reread_symbols): Likewise. Use the objfile field name renamed to
1489 original_name.
1490 (allocate_symtab): Use objfile_name.
1491 * symmisc.c (print_symbol_bcache_statistics, print_objfile_statistics)
1492 (dump_objfile, dump_msymbols, dump_symtab_1)
1493 (maintenance_print_msymbols, maintenance_print_objfiles)
1494 (maintenance_info_symtabs, maintenance_check_symtabs): Likewise.
1495 * target.c (target_translate_tls_address, target_info): Likewise.
1496 * xcoffread.c (xcoff_initial_scan): Make variable name const. Use
1497 objfile_name.
1498
1499 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1500
1501 Code cleanup.
1502 * probe.c (parse_probes): Rename variable objfile_name to
1503 objfile_namestr.
1504
1505 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1506
1507 Remove solib-sunos.c.
1508 * Makefile.in (ALLDEPFILES): Remove solib-sunos.c.
1509 * config/m68k/obsd.mh (NATDEPFILES): Remove solib-sunos.o.
1510 * objfiles.c (rt_common_objfile): Remove.
1511 (free_objfile): Remove rt_common_objfile comparison.
1512 * objfiles.h (rt_common_objfile): Remove.
1513 * solib-sunos.c: Remove.
1514 * symfile.c (reread_symbols): Remove solib-sunos.c comment.
1515
1516 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1517
1518 Remove a.out NetBSD and OpenBSD hosts.
1519 * NEWS (Removed native configurations): New.
1520 * config/arm/nbsdaout.mh: Remove.
1521 * config/i386/nbsdaout.mh: Remove.
1522 * config/i386/obsdaout.mh: Remove.
1523 * config/m68k/nbsdaout.mh: Remove.
1524 * config/sparc/nbsdaout.mh: Remove.
1525 * config/vax/nbsdaout.mh: Remove.
1526 * configure.host (arm*-*-netbsd*, i[34567]86-*-netbsd*)
1527 (i[34567]86-*-openbsd[0-2].*, i[34567]86-*-openbsd3.[0-3])
1528 (m68*-*-netbsd*, sparc-*-netbsd*, vax-*-netbsd*): Add them to obsolete
1529 error.
1530 (arm*-*-netbsd*, i[34567]86-*-netbsd*, i[34567]86-*-openbsd[0-2].*)
1531 (i[34567]86-*-openbsd3.[0-3], m68*-*-netbsd*, sparc-*-netbsdaout*)
1532 (sparc-*-netbsd*, vax-*-netbsd*): Remove.
1533
1534 2013-09-23 Tom Tromey <tromey@redhat.com>
1535
1536 * linespec.c (struct minsym_and_objfile): Remove.
1537 (minsym_and_objfile_d): Remove.
1538 (struct linespec, struct collect_info, linespec_parse_basic)
1539 (convert_linespec_to_sals, linespec_parser_delete, decode_objc)
1540 (compare_msymbols, find_method, find_function_symbols)
1541 (find_linespec_symbols, struct collect_minsyms, compare_msyms)
1542 (add_minsym, search_minsyms_for_name): Update.
1543
1544 2013-09-23 Andrew Burgess <aburgess@broadcom.com>
1545
1546 * regcache.c: Add include of valprint.h.
1547 (dump_endian_bytes): Delete.
1548 (regcache_dump): Use print_hex_chars not dump_endian_bytes.
1549
1550 2013-09-23 Andrew Burgess <aburgess@broadcom.com>
1551
1552 * sh64-tdep.c (sh64_do_fp_register): Use print_hex_chars.
1553
1554 2013-09-19 Pedro Alves <palves@redhat.com>
1555
1556 * breakpoint.c (remove_threaded_breakpoints): Skip non-user
1557 breakpoints.
1558
1559 2013-09-19 Pedro Alves <palves@redhat.com>
1560 Thomas Schwinge <thomas@codesourcery.com>
1561 Yue Lu <hacklu.newborn@gmail.com>
1562
1563 * gnu-nat.c (gnu_read_inferior, gnu_write_inferior): Make static.
1564 Take a gdb_byte pointer instead of a char pointer.
1565
1566 * gnu-nat.c (gnu_xfer_memory): Adjust interface as
1567 gnu_xfer_partial helper.
1568 (gnu_xfer_partial): New function.
1569 (gnu_target): Don't install a deprecated_xfer_memory hook.
1570 Install a to_xfer_partial hook.
1571
1572 2013-09-19 Jan Kratochvil <jan.kratochvil@redhat.com>
1573
1574 Constification.
1575 * main.c (captured_main): Replace catch_command_errors by
1576 catch_command_errors_const. Twice.
1577 * symfile.c (symbol_file_add_main_1): Make args parameter const.
1578 (symbol_file_add): Make name parameter const.
1579 (symbol_file_add_main, symbol_file_add_main_1): Make args parameter const.
1580 (symfile_bfd_open): Make name parameter const, rename it to cname. Add
1581 variable name. Change their usage accordingly.
1582 * symfile.h (symbol_file_add, symfile_bfd_open): Make first parameter
1583 const.
1584 (symbol_file_add_main): Make args parameter const.
1585
1586 2013-09-18 Raunaq Bathija <raunaq12@in.ibm.com>
1587 Ulrich Weigand <uweigand@de.ibm.com>
1588
1589 * xcoffread.c (struct coff_symbol): Use CORE_ADDR as type
1590 of c_value member.
1591 (read_xcoff_symtab): Use CORE_ADDR as type of fcn_start_addr.
1592
1593 2013-09-18 Pedro Alves <palves@redhat.com>
1594 Yue Lu <hacklu.newborn@gmail.com>
1595
1596 * gnu-nat.c (inf_validate_procs, gnu_wait, gnu_resume)
1597 (gnu_create_inferior)
1598 (gnu_attach, gnu_thread_alive, gnu_pid_to_str, cur_thread)
1599 (set_sig_thread_cmd): Use the lwpid field of ptids to
1600 store/extract thread ids instead of the tid field.
1601 * i386gnu-nat.c (gnu_fetch_registers): Adjust.
1602
1603 2013-09-18 Andrew Burgess <aburgess@broadcom.com>
1604
1605 * infcmd.c (default_print_one_register_info): Add detection of
1606 optimized out values.
1607 (default_print_registers_info): Switch to using
1608 get_frame_register_value.
1609
1610 2013-09-18 Markus Metzger <markus.t.metzger@intel.com>
1611
1612 * infrun.c (handle_inferior_event): Check if we know the
1613 function start address before setting a resume breakpoint.
1614
1615 2013-09-18 Pedro Alves <palves@redhat.com>
1616
1617 * gnu-nat.c (set_sig_thread_cmd): Compare the thread's ptid to
1618 minus_one_ptid instead of looking at the ptid's tid field and
1619 comparing that to -1.
1620
1621 2013-09-18 Andrew Burgess <aburgess@broadcom.com>
1622
1623 * main.h (get_gdb_program_name): Remove extra whitespace.
1624
1625 2013-09-18 Andrew Burgess <aburgess@broadcom.com>
1626
1627 * main.h (get_gdb_program_name): Add declaration.
1628 * main.c (get_gdb_program_name): Add definition.
1629
1630 2013-09-17 Doug Evans <dje@google.com>
1631
1632 * dwarf2read.c: Move definitions of complaint functions to after
1633 forward declarations of local functions.
1634
1635 2013-09-17 Muhammad Waqas <mwaqas@codesourcery.com>
1636 Pedro Alves <palves@redhat.com>
1637
1638 PR gdb/11568
1639 * breakpoint.c (remove_threaded_breakpoints): New function.
1640 (_initialize_breakpoint): Attach remove_threaded_breakpoints
1641 as thread_exit observer.
1642
1643 2013-09-17 Pedro Alves <palves@redhat.com>
1644
1645 PR gdb/15911
1646 * ada-tasks.c (task_command_1): Adjust call to print_stack_frame.
1647 * bsd-kvm.c (bsd_kvm_open, bsd_kvm_proc_cmd, bsd_kvm_pcb_cmd):
1648 * corelow.c (core_open):
1649 * frame.h (print_stack_frame, print_frame_info): New
1650 'set_current_sal' parameter.
1651 * infcmd.c (finish_command, kill_command): Adjust call to
1652 print_stack_frame.
1653 * inferior.c (inferior_command): Likewise.
1654 * infrun.c (normal_stop): Likewise.
1655 * linux-fork.c (linux_fork_context): Likewise.
1656 * record-full.c (record_full_goto_entry, record_full_restore):
1657 Likewise.
1658 * remote-mips.c (common_open): Likewise.
1659 * stack.c (print_stack_frame): New 'set_current_sal' parameter.
1660 Use it.
1661 (print_frame_info): New 'set_current_sal' parameter. Set the last
1662 displayed sal depending on the new paremeter instead of looking at
1663 print_what.
1664 (backtrace_command_1, select_and_print_frame, frame_command)
1665 (current_frame_command, up_command, down_command): Adjust call to
1666 print_stack_frame.
1667 * thread.c (print_thread_info, restore_selected_frame)
1668 (do_captured_thread_select): Adjust call to print_stack_frame.
1669 * tracepoint.c (tfind_1): Likewise.
1670 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames)
1671 (mi_cmd_stack_info_frame): Likewise.
1672 * mi/mi-interp.c (mi_on_normal_stop): Likewise.
1673 * mi/mi-main.c (mi_cmd_exec_return, mi_cmd_trace_find): Likewise.
1674
1675 2013-09-16 Sergio Durigan Junior <sergiodj@redhat.com>
1676
1677 * value.c (isvoid_internal_fn): Replace "parameter" with
1678 "argument".
1679
1680 2013-09-16 Stan Shebs <stan@codesourcery.com>
1681
1682 * README: Update references to writing code for GDB.
1683 * configure.ac (build_warnings): Remove obsolete comment.
1684 * configure: Regenerate.
1685 * gdbarch.sh: Remove references to gdbint.texinfo.
1686 * gdbarch.h: Regenerate.
1687 * gdbtypes.c (objfile_type): Remove comments referencing internals
1688 manual and D10V.
1689
1690 2013-09-16 Sergio Durigan Junior <sergiodj@redhat.com>
1691
1692 * NEWS: Mention new convenience function $_isvoid.
1693 * value.c (isvoid_internal_fn): New function.
1694 (_initialize_values): Add new convenience function $_isvoid.
1695
1696 2013-09-16 Pierre Muller <muller@sourceware.org>
1697
1698 * arm-linux-tdep.c: Add "elf/common.h" header.
1699 Remove AT_HWCAP macro definintion as it is provided in
1700 added include file.
1701 * s390-tdep.c: Remove system header <elf.h>
1702 Add "elf/common.h" header for AT_HWCAP definition.
1703 (s390_core_read_description): Use correct CORE_ADDR
1704 for hwcap local variable used as third parameter
1705 of function target_auxv_search.
1706
1707 2013-09-14 Pierre Muller <muller@sourceware.org>
1708 Tom Tromey <tromey@redhat.com>
1709 Pedro Alves <palves@redhat.com>
1710
1711 * common/filestuff.c (gdb_fopen_cloexec): Do not try to use "e"
1712 mode if operating system doesn't know O_CLOEXEC.
1713
1714 2013-09-13 Jan Kratochvil <jan.kratochvil@redhat.com>
1715
1716 Code cleanup.
1717 * symfile.c (reread_symbols): Move variable obfd_filename to a more
1718 inner block.
1719
1720 2013-09-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
1721
1722 * NEWS: Mention TDB support.
1723 * features/s390-tdb.xml: New file.
1724 * features/s390-te-linux64.xml: New file.
1725 * features/s390x-te-linux64.xml: New file.
1726 * features/Makefile (WHICH): Add new tdescs above.
1727 (s390-te-linux64-expedite): Set.
1728 (s390x-te-linux64-expedite): Set.
1729 * features/s390-te-linux64.c: New file (generated).
1730 * features/s390x-te-linux64.c: New file (generated).
1731 * regformats/s390-te-linux64.dat: New file (generated).
1732 * regformats/s390x-te-linux64.dat: New file (generated).
1733 * s390-tdep.h (HWCAP_S390_HIGH_GPRS): Define.
1734 (HWCAP_S390_TE): Likewise.
1735 (S390_TDB_DWORD0_REGNUM): Likewise.
1736 (S390_TDB_DWORD0_REGNUM): Likewise.
1737 (S390_TDB_ABORT_CODE_REGNUM): Likewise.
1738 (S390_TDB_CONFLICT_TOKEN_REGNUM): Likewise.
1739 (S390_TDB_ATIA_REGNUM): Likewise.
1740 (S390_TDB_R0_REGNUM): Likewise.
1741 (S390_TDB_R1_REGNUM): Likewise.
1742 (S390_TDB_R2_REGNUM): Likewise.
1743 (S390_TDB_R3_REGNUM): Likewise.
1744 (S390_TDB_R4_REGNUM): Likewise.
1745 (S390_TDB_R5_REGNUM): Likewise.
1746 (S390_TDB_R6_REGNUM): Likewise.
1747 (S390_TDB_R7_REGNUM): Likewise.
1748 (S390_TDB_R8_REGNUM): Likewise.
1749 (S390_TDB_R9_REGNUM): Likewise.
1750 (S390_TDB_R10_REGNUM): Likewise.
1751 (S390_TDB_R11_REGNUM): Likewise.
1752 (S390_TDB_R12_REGNUM): Likewise.
1753 (S390_TDB_R13_REGNUM): Likewise.
1754 (S390_TDB_R14_REGNUM): Likewise.
1755 (S390_TDB_R15_REGNUM): Likewise.
1756 (S390_NUM_REGS): Increase.
1757 (S390_IS_TDBREGSET_REGNUM): New macro.
1758 (s390_regmap_tdb): Declare.
1759 (s390_sizeof_tdbregset): Define.
1760 (tdesc_s390_te_linux64): Declare.
1761 (tdesc_s390x_te_linux64): Likewise.
1762 * s390-tdep.c: Add includes for "auxv.h", <elf.h>,
1763 "features/s390-te-linux64.c", and "features/s390x-te-linux64.c".
1764 (s390_regmap_tdb): New regmap.
1765 (s390_supply_tdb_regset): New function.
1766 (s390_tdb_regset): New regset.
1767 (s390_linux64v2_regset_sections): Add TDB regset to list.
1768 (s390x_linux64v2_regset_sections): Likewise.
1769 (s390_regset_from_core_section): Recognize TDB core note section.
1770 (s390_core_read_description): If HWCAP indicates TE support,
1771 select tdesc_s390_te_linux64 or tdesc_s390_s390x_te_linux64.
1772 (s390_gdbarch_init): Handle TDB regset.
1773 (_initialize_s390_tdep): Initialize new tdescs.
1774 * s390-nat.c (HWCAP_S390_HIGH_GPRS): Remove define.
1775 (have_regset_tdb): New variable.
1776 (s390_native_supply): Support register invalidation.
1777 (fetch_regset): Invalidate registers if ptrace yields ENODATA.
1778 (check_regset): Treat ENODATA as "regset exists".
1779 (s390_linux_fetch_inferior_registers): Add TDB.
1780 (s390_read_description): Check for TDB existence and select
1781 appropriate tdesc.
1782 * gdbserver/Makefile.in (clean): Add removal of new makefile
1783 targets.
1784 (s390-te-linux64.c): New makefile target.
1785 (s390x-te-linux64.c): Likewise.
1786 * gdbserver/configure.srv (srv_regobj): Append new objects
1787 s390-te-linux64.o and s390x-te-linux64.o.
1788 (srv_xmlfiles): Append new files s390-te-linux64.xml,
1789 s390x-te-linux64.xml, and s390-tdb.xml.
1790 * gdbserver/linux-s390-low.c (init_registers_s390_te_linux64): New
1791 declaration.
1792 (tdesc_s390_te_linux64): Likewise.
1793 (init_registers_s390x_te_linux64): Likewise.
1794 (tdesc_s390x_te_linux64): Likewise.
1795 (s390_check_regset): Treat ENODATA as "regset exists".
1796 (s390_arch_setup): Add TDB regset support.
1797 (initialize_low_arch): Initialize registers for new tdescs.
1798
1799 2013-09-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
1800
1801 * s390-tdep.h (S390_IS_GREGSET_REGNUM): New macro.
1802 (S390_IS_FPREGSET_REGNUM): New macro.
1803 * s390-tdep.c (s390_dwarf_regmap): Make const.
1804 (regnum_is_gpr_full): New function for replacing repeated code.
1805 (s390_pseudo_register_name): Use it.
1806 (s390_pseudo_register_type): Likewise.
1807 (s390_pseudo_register_read): Likewise.
1808 (s390_pseudo_register_write): Likewise.
1809 (s390_unwind_pseudo_register): Likewise.
1810 (s390_regmap_gregset): New format for regmap.
1811 (s390x_regmap_gregset): Likewise.
1812 (s390_regmap_fpregset): Likewise.
1813 (s390_regmap_upper): Likewise.
1814 (s390_regmap_last_break): Likewise.
1815 (s390_regmap_system_call): Likewise.
1816 (s390_supply_regset): Adjust to new regmap format.
1817 (s390_collect_regset): Likewise.
1818 * s390-nat.c (s390_native_supply): Adjust to new regmap format.
1819 (s390_native_collect): Likewise.
1820 (supply_gregset): Likewise.
1821 (fill_gregset): Likewise.
1822 (supply_fpregset): Likewise.
1823 (fill_fpregset): Likewise.
1824 (fetch_regset): Likewise.
1825 (store_regset): Likewise.
1826 (s390_linux_fetch_inferior_registers): Likewise.
1827 (s390_linux_fetch_inferior_registers): Likewise.
1828
1829 2013-09-12 Andrew Pinski <apinski@cavium.com>
1830
1831 * aarch64-linux-nat.c (aarch64_linux_set_debug_regs): Zero out regs.
1832
1833 2013-09-10 Andreas Arnez <arnez@linux.vnet.ibm.com>
1834
1835 * config/s390/s390.mh (NATDEPFILES): Add linux-waitpid.o.
1836
1837 2013-09-09 Andrew Burgess <aburgess@broadcom.com>
1838
1839 * top.c (quit_confirm): Remove use of deprecated_init_ui_hook.
1840
1841 2013-09-06 Pedro Alves <palves@redhat.com>
1842
1843 * remote-sim.c (dump_mem, gdbsim_fetch_register)
1844 (gdbsim_store_register, gdbsim_kill, gdbsim_load)
1845 (gdbsim_create_inferior, gdbsim_open, gdbsim_close)
1846 (gdbsim_detach, gdbsim_resume_inferior, gdbsim_wait)
1847 (gdbsim_files_info, gdbsim_mourn_inferior): Send debug output to
1848 gdb_stdlog.
1849
1850 2013-09-06 Pedro Alves <palves@redhat.com>
1851
1852 * remote-sim.c (dump_mem): Constify buf parameter.
1853 gdbsim_xfer_inferior_memory): Rename to ...
1854 (gdbsim_xfer_memory): ... this. Adjust interface as
1855 target_xfer_partial helper.
1856 (gdbsim_xfer_partial): New function.
1857 (init_gdbsim_ops): Don't install a deprecated_xfer_memory hook.
1858 Install a to_xfer_partial hook. Send output to gdb_stdlog.
1859
1860 2013-09-06 Pedro Alves <palves@redhat.com>
1861
1862 * remote-sim.c (gdbsim_xfer_inferior_memory): Use
1863 host_address_to_string, and send debug output to gdb_stdlog.
1864
1865 2013-09-06 Ricard Wanderlof <ricardw@axis.com>
1866
1867 * Makefile.in (ALL_TARGET_OBS): Add cris-linux-tdep.o.
1868 * configure.tgt: Add cris-linux-tdep.o and linux-tdep.o to
1869 gdb_target_obs for cris target.
1870 * cris-tdep.c (struct gdbarch_tdep): Move to cris-tdep.h.
1871 (cris_gdbarch_init): Move calls to
1872 set_gdbarch_fetch_tls_load_module_address and
1873 set_solib_svr4_fetch_link_map_offsets to cris-linux-tdep.c.
1874 Add call to gdbarch_init_osabi.
1875 * cris-linux-tdep.c: New file.
1876 * cris-tdep.h: New file.
1877
1878 2013-09-06 Andrew Burgess <aburgess@broadcom.com>
1879
1880 * tui/tui-io.c (tui_initialize_io): Remove legacy comment referring
1881 to deprecated_init_ui_hook.
1882
1883 2013-09-06 Andrew Burgess <aburgess@broadcom.com>
1884
1885 * cli/cli-interp.c (_initialize_cli_interp): Add a
1886 command_loop_proc to interp_procs.
1887 * event-top.c (cli_command_loop): Change signature to match
1888 interp_command_loop_ftype.
1889 * event-top.h (cli_command_loop): Same.
1890 * interps.c (interp_new): Require every interpreter to have a
1891 command_loop_proc.
1892 (current_interp_command_loop): Just call the command_loop_proc on
1893 the current interpreter.
1894 * tui/tui-interp.c (_initialize_tui_interp): Add a
1895 command_loop_proc to interp_procs.
1896
1897 2013-09-06 Ricard Wanderlof <ricardw@axis.com>
1898
1899 * cris-tdep.c (cris_gdbarch_init): Add call to
1900 get_gdbarch_fetch_tls_load_module_address.
1901
1902 2013-09-06 Ricard Wanderlof <ricardw@axis.com>
1903
1904 * cris-tdep.c (cris_elf_greg_t): Rename from elf_greg_t.
1905 (cris_elf_gregset_t): Rename from elf_gregset_t.
1906 (crisv32_elf_gregset_t): Adjust.
1907 (cris_supply_gregset, fetch_core_registers): Adjust.
1908
1909 2013-09-06 Ricard Wanderlof <ricardw@axis.com>
1910
1911 * cris-tdep.c (elf_greg_t): Change typedef to unsigned char[4]
1912
1913 2013-09-05 Andrew Burgess <aburgess@broadcom.com>
1914
1915 * defs.h (deprecated_command_loop_hook): Remove, including
1916 references in comments.
1917 * interps.c (current_interp_command_loop): No longer use
1918 deprecated_command_loop_hook.
1919 (clear_interpreter_hooks): Remove deprecated_command_loop_hook
1920 setup.
1921 * top.c (deprecated_command_loop_hook): Remove.
1922
1923 2013-09-05 Pedro Alves <palves@redhat.com>
1924
1925 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): 'dwarf_regnum'
1926 local is now int instead of ULONGEST. Print it with %d
1927 instead of paddress.
1928
1929 2013-09-05 Tristan Gingold <gingold@adacore.com>
1930
1931 * MAINTAINERS: Remove avr maintainership.
1932
1933 2013-09-05 Pedro Alves <palves@redhat.com>
1934
1935 * findvar.c (value_of_register): Rework in terms of
1936 value_of_register_lazy.
1937
1938 2013-09-05 Muhammad Bilal <mbilal@codesourcery.com>
1939
1940 * symfile.c (add_symbol_file_command): Remove trailing
1941 whitespaces and blank line after comment.
1942
1943 2013-09-05 Pedro Alves <palves@redhat.com>
1944
1945 * tui/tui-regs.c (tui_register_format): Don't look at the
1946 register's name here. Return string representing register
1947 value instead of storing it in the data element.
1948 (tui_get_register): Compare register string representations
1949 instead of register value states and contents.
1950
1951 2013-09-05 Pedro Alves <palves@redhat.com>
1952
1953 PR tui/15933
1954 * tui/tui-regs.c (tui_show_registers): Show registers of the
1955 selected frame, not the current frame.
1956
1957 2013-09-05 Ricard Wanderlof <ricardw@axis.com>
1958
1959 * MAINTAINERS (Write After Approval): Add myself to the list.
1960
1961 2013-09-04 Doug Evans <dje@google.com>
1962
1963 * dwarf2read.c (queue_and_load_all_dwo_tus): New function.
1964 (queue_and_load_dwo_tu): New function.
1965 (lookup_dwo_signatured_type): Set per_cu.tu_read.
1966 (maybe_queue_comp_unit): Rename this_cu argument to dependent_cu.
1967 Make dependent_cu optional.
1968 (dw2_do_instantiate_symtab): If we just loaded a CU from a DWO,
1969 and an older .gdb_index is in use, queue and load all its TUs too.
1970
1971 2013-09-04 Jan Kratochvil <jan.kratochvil@redhat.com>
1972
1973 Code cleanup: Change OPF_DISABLE_REALPATH to OPF_RETURN_REALPATH.
1974 * cli/cli-cmds.c (find_and_open_script): Add OPF_RETURN_REALPATH to
1975 variable search_flags.
1976 * defs.h (OPF_DISABLE_REALPATH): Rename to ...
1977 (OPF_RETURN_REALPATH): ... here.
1978 * dwarf2read.c (try_open_dwop_file): Set OPF_RETURN_REALPATH for flags.
1979 * exec.c (exec_file_attach): Remove OPF_DISABLE_REALPATH from openp
1980 call. Twice.
1981 * nto-tdep.c (nto_find_and_open_solib): Add OPF_RETURN_REALPATH for
1982 openp call.
1983 * solib.c (solib_find): Likewise. Four times.
1984 * source.c (openp): Change OPF_DISABLE_REALPATH to OPF_RETURN_REALPATH
1985 in the function comment and for the realpath_fptr variable.
1986 (source_full_path_of): Add OPF_RETURN_REALPATH for openp call.
1987 (find_and_open_source): Likewise. Twice.
1988 * symfile.c (symfile_bfd_open): Likewise, also twice.
1989
1990 2013-09-04 Doug Evans <dje@google.com>
1991
1992 * progspace.c (save_current_space_and_thread): Remove unnecessary
1993 call to save_current_inferior.
1994
1995 2013-09-04 Andrew Burgess <aburgess@broadcom.com>
1996
1997 * sh64-tdep.c (sh64_do_register): Return after printing message
1998 about unavailable register contents.
1999
2000 2013-09-04 Muhammad Bilal <mbilal@codesourcery.com>
2001 Pedro Alves <palves@redhat.com>
2002
2003 * symfile.c (add_symbol_file_command): Error out on unknown
2004 option. Handle EXPECTING_SEC_ADDR/EXPECTING_SEC_NAME before '-'
2005 options and collapse into single conditional branch.
2006
2007 2013-09-03 Luis Machado <lgustavo@codesourcery.com>
2008
2009 * inf-child.c (inf_child_follow_fork): New parameter
2010 detach_fork.
2011 * inf-ptrace.c (inf_ptrace_follow_fork): Likewise.
2012 * inf-ttrace.c (inf_ttrace_follow_fork): Likewise.
2013 * inferior.h (detach_fork): Remove.
2014 * infrun.c (detach_fork): Adjust comment and make it
2015 static.
2016 (follow_fork): Pass detach_fork parameter to
2017 target_follow_fork.
2018 * linux-nat.c (linux_child_follow_fork): New parameter
2019 detach_fork.
2020 * target.c (target_follow_fork): New parameter detach_fork.
2021 Pass detach_fork as parameter and print its value.
2022 * target.h (struct target_ops) <to_follow_fork>: New int
2023 parameter.
2024 (target_follow_fork): New parameter detach_fork.
2025
2026 2013-09-03 Joel Brobecker <brobecker@adacore.com>
2027
2028 * solib-ia64-hpux.c (ia64_hpux_relocate_section_addresses):
2029 Replace sec->bfd by sec->the_bfd_section->owner.
2030
2031 2013-09-03 Yao Qi <yao@codesourcery.com>
2032
2033 * linux-tdep.c (linux_is_uclinux): New function. Code moved
2034 from linux_has_shared_address_space.
2035 (linux_has_shared_address_space): Call linux_is_uclinux.
2036 * linux-tdep.h (linux_is_uclinux): Declare.
2037 * m68klinux-tdep.c (m68k_linux_get_sigtramp_info): Call
2038 linux_is_uclinux.
2039
2040 2013-09-03 Yao Qi <yao@codesourcery.com>
2041
2042 * config/djgpp/fnchange.lst: Remove entry of
2043 i386-interix-nat.c and i386-interix-tdep.c.
2044 * configure.ac: Remove '*-*-interix*'.
2045 * configure: Re-generated.
2046 * defs.h (enum gdb_osabi): Remove GDB_OSABI_INTERIX.
2047 * i386-cygwin-tdep.c (i386_cygwin_osabi_sniffer): Remove
2048 obsolete comments.
2049 * osabi.c (gdb_osabi_names): Remove "Interix".
2050
2051 2013-09-03 Yao Qi <yao@codesourcery.com>
2052
2053 * arch-utils.c: Fix typo in the comment to gdbarch_update_p.
2054
2055 2013-09-02 Markus Metzger <markus.t.metzger@intel.com>
2056
2057 * record.h (record_print_flag) <record_print_src_line,
2058 record_print_insn_range>: Rename into ...
2059 (record_print_flag) <record_print_src_line,
2060 record_print_insn_range>: ... this. Update all users.
2061
2062 2013-09-02 Pierre Muller <muller@sourceware.org>
2063
2064 * windows-nat.c (windows_xfer_memory): Handle ERROR_PARTIAL_COPY
2065 error code.
2066
2067 2013-09-02 Pierre Muller <muller@sourceware.org>
2068
2069 * windows-nat.c (windows_xfer_memory): Fix compilation failure
2070 by use of plongest function.
2071
2072 2013-09-02 Tristan Gingold <gingold@adacore.com>
2073
2074 * NEWS: Add entry mentioning support for native Windows x64
2075 SEH data.
2076
2077 * amd64-windows-tdep.c: #include "objfiles.h", "frame-unwind.h",
2078 "coff/internal.h", "coff/i386.h", "coff/pe.h" and "libcoff.h".
2079 (struct amd64_windows_frame_cache): New struct.
2080 (amd64_windows_w2gdb_regnum): New global.
2081 (pc_in_range, amd64_windows_frame_decode_epilogue)
2082 (amd64_windows_frame_decode_insns, amd64_windows_find_unwind_info)
2083 (amd64_windows_frame_cache, amd64_windows_frame_prev_register)
2084 (amd64_windows_frame_this_id): New functions.
2085 (amd64_windows_frame_unwind): New static global.
2086 (amd64_windows_skip_prologue): New function.
2087 (amd64_windows_init_abi): Call frame_unwind_prepend_unwinder
2088 with amd64_windows_frame_unwind. Call set_gdbarch_skip_prologue
2089 with amd64_windows_skip_prologue.
2090
2091 2013-08-30 Joel Brobecker <brobecker@adacore.com>
2092
2093 GDB 7.6.1 released.
2094
2095 2013-08-30 Pedro Alves <palves@redhat.com>
2096
2097 * mi/mi-main.c (mi_cmd_trace_find): Use LOC_AND_ADDRESS instead of
2098 SRC_AND_LOC.
2099
2100 2013-08-30 Pedro Alves <palves@redhat.com>
2101
2102 * thread.c (restore_selected_frame): Use SRC_AND_LOC, and change
2103 warning text.
2104
2105 2013-08-30 Pedro Alves <palves@redhat.com>
2106
2107 * bsd-kvm.c (bsd_kvm_open, bsd_kvm_proc_cmd, bsd_kvm_pcb_cmd):
2108 Adjust arguments to print_stack_frame.
2109
2110 2013-08-30 Pedro Alves <palves@redhat.com>
2111
2112 * ada-tasks.c (task_command_1): Write SRC_AND_LOC instead '1'.
2113
2114 2013-08-30 Pedro Alves <palves@redhat.com>
2115
2116 * frame.h (show_and_print_stack_frame): Delete declaration.
2117
2118 2013-08-30 Phil Muldoon <pmuldoon@redhat.com>
2119
2120 PR python/15461
2121
2122 * python/py-arch.c (ARCHPY_REQUIRE_VALID): New macro.
2123 (archpy_name): Check for valid architecture.
2124 (archpy_disassemble): Ditto.
2125
2126 2013-08-29 Joel Brobecker <brobecker@adacore.com>
2127
2128 * rs6000-nat.c (rs6000_ptrace32): Cast "addr" to "uintptr_t"
2129 instead of "long long" in call to ptrace64.
2130
2131 2013-08-29 Andrew Burgess <aburgess@broadcom.com>
2132
2133 * mi/mi-interp.c (mi_command_loop): Change signature to match
2134 interp_command_loop_ftype.
2135 (mi1_command_loop): Remove.
2136 (mi2_command_loop): Remove.
2137 (mi3_command_loop): Remove.
2138 (mi_interpreter_resume): Remove setting of
2139 deprecated_command_loop_hook.
2140 (_initialize_mi_interp): Set mi_command_loop as the command loop
2141 callback.
2142
2143 2013-08-29 Sanimir Agovic <sanimir.agovic@intel.com>
2144
2145 * valops.c (do_search_struct_field): Pass v2 instead of base_type to
2146 value_type.
2147
2148 2013-08-29 Sanimir Agovic <sanimir.agovic@intel.com>
2149
2150 * value.c (allocate_value_contents): Make static.
2151 * value.h (allocate_value_contents): Remove prototype.
2152
2153 2013-08-29 Sanimir Agovic <sanimir.agovic@intel.com>
2154
2155 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Use value_at_lazy instead
2156 of assembling value via allocate_value_lazy and attribute setter.
2157 * findvar.c (default_read_var_value): Use value_at_lazy instead of
2158 assembling value via allocate_value_lazy and attribute setter.
2159 * valops.c (do_search_struct_field): Use value_at_lazy instead of
2160 assembling value via allocate_value_lazy and attribute setter.
2161
2162 2013-08-29 Sanimir Agovic <sanimir.agovic@intel.com>
2163
2164 * value.c (value_from_contents_and_address): Replace allocate_value and
2165 memcpy with value_from_contents.
2166
2167 2013-08-29 Phil Muldoon <pmuldoon@redhat.com>
2168
2169 * python/py-framefilter.c (py_print_frame): Remove usage of
2170 PyString_AsString. Use python_string_to_host_string instead.
2171 Refactor function to work with a string as a new allocation
2172 instead of a pointer.
2173 (py_print_frame): Ditto.
2174 * python/lib/gdb/frames.py (return_list): Cain iterators together
2175 instead of adding them as a list.
2176 (_sort_list): Call return_list, and remove duplicate code.
2177 (execute_frame_filters): Convert iterator to a list with list().
2178 * python/lib/gdb/command/frame_filters.py
2179 (SetFrameFilterPriority._set_filter_priority): Convert priority
2180 attribute to an integer.
2181 * python/lib/gdb/FrameIterator.py (FrameIterator.next): Define
2182 wrapper function __next__.
2183 * python/lib/gdb/FrameDecorator.py: If basestring not defined,
2184 define as "str".
2185
2186 2013-08-29 Phil Muldoon <pmuldoon@redhat.com>
2187
2188 PR python/15752
2189 * python/py-framefilter.c (apply_frame_filter): Check
2190 gdb_python_initialized. Exit if the Python frame-filter code
2191 cannot be initialized.
2192
2193 2013-08-29 Phil Muldoon <pmuldoon@redhat.com>
2194
2195 PR cli/15842
2196 * top.c (print_gdb_version): Remove erroneous newline after help
2197 text.
2198
2199 2013-08-29 Yao Qi <yao@codesourcery.com>
2200
2201 * varobj.c (install_dynamic_child): Remove trailing space.
2202 Add one blank line after variable declaration.
2203
2204 2013-08-28 Jan Kratochvil <jan.kratochvil@redhat.com>
2205
2206 PR gdb/15415
2207 * corefile.c (get_exec_file): Use exec_filename.
2208 * defs.h (OPF_DISABLE_REALPATH): New definition. Add new comment.
2209 * exec.c (exec_close): Free EXEC_FILENAME.
2210 (exec_file_attach): New variable canonical_pathname. Use
2211 OPF_DISABLE_REALPATH. Call gdb_realpath explicitly. Set
2212 EXEC_FILENAME.
2213 * exec.h (exec_filename): New.
2214 * inferior.c (print_inferior, inferior_command): Use
2215 PSPACE_EXEC_FILENAME.
2216 * mi/mi-main.c (print_one_inferior): Likewise.
2217 * progspace.c (clone_program_space, print_program_space): Likewise.
2218 * progspace.h (struct program_space): New field pspace_exec_filename.
2219 * source.c (openp): Describe OPF_DISABLE_REALPATH. New variable
2220 realpath_fptr, initialize it from OPF_DISABLE_REALPATH, use it.
2221
2222 2013-08-28 Will Newton <will.newton@linaro.org>
2223
2224 * common/linux-ptrace.c: Include stdint.h unconditionally.
2225
2226 2013-08-28 Jan Kratochvil <jan.kratochvil@redhat.com>
2227
2228 Code cleanup.
2229 * nto-tdep.c (nto_find_and_open_solib): Use OPF_TRY_CWD_FIRST.
2230
2231 2013-08-28 Yao Qi <yao@codesourcery.com>
2232 Pedro Alves <palves@redhat.com>
2233
2234 * event-top.c (gdb_setup_readline): Call stderr_fileopen
2235 instead of stdio_fileopen.
2236 * main.c (captured_main) [__MINGW32__]: Set stderr unbuffered.
2237 .Call stderr_fileopen instead of stdio_fileopen.
2238 * ui-file.c [__MINGW32__] (stderr_file_write): New function.
2239 [__MINGW32__] (stderr_file_fputs): New function.
2240 (stderr_fileopen): New function.
2241 * ui-file.h (stderr_fileopen): Declare.
2242
2243 2013-08-27 Doug Evans <dje@google.com>
2244
2245 * dwarf2read.c (struct dwarf2_cu): Tweak comment.
2246 (struct dwarf2_per_cu_data): Ditto.
2247 (maybe_queue_comp_unit): Delete forward decl. Add comment.
2248 (process_imported_unit_die): Ditto.
2249 (follow_die_sig_1): Simplify assert.
2250
2251 2013-08-27 Pedro Alves <palves@redhat.com>
2252
2253 * windows-nat.c (windows_xfer_memory): Adjust prototype to follow
2254 xfer_partial's interface. Return TARGET_XFER_E_IO on error.
2255 (windows_xfer_partial): Defer TARGET_OBJECT_MEMORY handling to
2256 windows_xfer_memory directly.
2257 (init_windows_ops): Don't install a deprecated_xfer_memory method.
2258
2259 2013-08-27 Pedro Alves <palves@redhat.com>
2260
2261 * darwin-nat.c (darwin_xfer_memory): Delete.
2262 (_initialize_darwin_inferior): Don't install a
2263 deprecated_xfer_memory method.
2264
2265 2013-08-27 Pedro Alves <pedro@codesourcery.com>
2266 Yao Qi <yao@codesourcery.com>
2267
2268 * mi/mi-cmd-stack.c (list_args_or_locals): Adjust prototype.
2269 (parse_no_frames_option): Remove.
2270 (mi_cmd_stack_list_locals): Handle --skip-unavailable.
2271 (mi_cmd_stack_list_args): Adjust.
2272 (mi_cmd_stack_list_variables): Handle --skip-unavailable.
2273 (list_arg_or_local): Add new parameter 'skip_unavailable'. Return
2274 early if SKIP_UNAVAILABLE is true and ARG->val is unavailable.
2275 Caller update.
2276 (list_args_or_locals): New parameter 'skip_unavailable'.
2277 Handle it.
2278 * valprint.c (scalar_type_p): Rename to ...
2279 (val_print_scalar_type_p): ... this. Make extern.
2280 (val_print, value_check_printable): Adjust.
2281 * valprint.h (val_print_scalar_type_p): Declare.
2282 * value.c (value_entirely_unavailable): New function.
2283 * value.h (value_entirely_unavailable): Declare.
2284
2285 * NEWS: Mention the new option "--skip-unavailable" to MI
2286 commands '-stack-list-locals', '-stack-list-arguments' and
2287 '-stack-list-variables'.
2288
2289 2013-08-27 Yao Qi <yao@codesourcery.com>
2290
2291 * mi/mi-cmd-stack.c (parse_no_frames_option): Remove.
2292 (mi_cmd_stack_list_args): Use mi_getopt_silent to handle
2293 options.
2294 * mi/mi-getopt.c (mi_getopt): Remove.
2295 (mi_getopt_1): Renamed from mi_getopt. Add one parameter
2296 'error_on_unknown'.
2297 (mi_getopt): Call mi_getopt_1.
2298 (mi_getopt_silent): New.
2299 * mi/mi-getopt.h (mi_getopt_silent): Declare.
2300
2301 2013-08-26 Doug Evans <dje@google.com>
2302
2303 PR symtab/15885
2304 * dwarf2read.c (dw2_dump): Print some minimal information indicating
2305 .gdb_index is in use.
2306 * symfile.c (reread_symbols): Reset objfile->sf.
2307
2308 * NEWS: Document "mt print objfiles" now takes optional regexp.
2309 * symmisc.c (maintenance_print_objfiles): Argument is now an optional
2310 regexp of objfiles to print.
2311 (_initialize_symmisc): Update doc string for "mt print objfiles".
2312
2313 * dwarf2read.c (write_psymtabs_to_index): Move error checks ahead of
2314 missing debug info checks.
2315
2316 2013-08-26 Raunaq Bathija <raunaq12@in.ibm.com>
2317 Ulrich Weigand <uweigand@de.ibm.com>
2318
2319 * xcoffread.c (arrange_linetable): Add fix to correctly handle
2320 line tables generated by XLC compiled binaries.
2321
2322 2013-08-23 Doug Evans <dje@google.com>
2323
2324 * symmisc.c (dump_symtab): Delete prototype.
2325 (dump_msymbols, dump_objfile): Ditto.
2326 (maintenance_info_symtabs): Mark as dont_repeat.
2327 (_initialize_symmisc): Improve doc string for "mt info symtabs".
2328
2329 * elfread.c (elf_symfile_read): Move "Done reading minimal symbols"
2330 debugging printf to better location.
2331
2332 2013-08-23 Pedro Alves <palves@redhat.com>
2333
2334 * target.c (target_read_live_memory): Change type of 'ret' local
2335 to LONGEST.
2336
2337 2013-08-23 Pedro Alves <palves@redhat.com>
2338
2339 * remote.c (remote_write_bytes_aux, remote_write_bytes)
2340 (remote_read_bytes): Change return type to LONGEST, and adjust to
2341 return a target_xfer_error on error.
2342 (remote_xfer_memory): Delete.
2343 (remote_flash_write): Change type of 'ret' local to LONGEST.
2344 (remote_xfer_partial, remote_xfer_partial): Adjust.
2345 (init_remote_ops): Don't install a deprecated_xfer_memory hook.
2346
2347 2013-08-23 Pierre Muller <muller@sourceware.org>
2348
2349 ARI fix: Push # directives to start of line.
2350 * rs6000-nat.c (rs6000_ptrace32, rs6000_ptrace64): Rule applied.
2351
2352 2013-08-12 Muhammad Waqas <mwaqas@codesourcery.com>
2353
2354 PR gdb/15501
2355 * breakpoint.c (enable_command, disable_command): Iterate over
2356 all specified breakpoint locations.
2357
2358 2013-08-22 Luis Machado <lgustavo@codesourcery.com>
2359
2360 * common/linux-ptrace.c (linux_fork_to_function): Push #
2361 directives to the start of the line.
2362 (linux_check_ptrace_features): Fix warning message to use
2363 the "_" markup.
2364
2365 2013-08-22 Luis Machado <lgustavo@codesourcery.com>
2366
2367 * Makefile.in (HFILES_NO_SRCDIR): Add nat/linux-nat.h and
2368 nat/linux-waitpid.h.
2369 (linux-waitpid.o): New object file rule.
2370 * common/linux-ptrace.c: Include nat/linux-waitpid.h.
2371 (current_ptrace_options): Moved from linux-nat.c.
2372 (linux_ptrace_test_ret_to_nx): Use type casts for ptrace
2373 parameters.
2374 (linux_fork_to_function): New function.
2375 (linux_grandchild_function): Likewise.
2376 (linux_child_function): Likewise.
2377 (linux_check_ptrace_features): New function, heavily
2378 based on linux-nat.c:linux_test_for_tracefork.
2379 (linux_enable_event_reporting): New function.
2380 (ptrace_supports_feature): Likewise.
2381 (linux_supports_tracefork): Likewise.
2382 (linux_supports_traceclone): Likewise.
2383 (linux_supports_tracevforkdone): Likewise.
2384 (linux_supports_tracesysgood): Likewise.
2385 * common/linux-ptrace.h (HAS_NOMMU): Moved from
2386 gdbserver/linux-low.c.
2387 (linux_enable_event_reporting): New declaration.
2388 (linux_supports_tracefork): Likewise.
2389 (linux_supports_traceclone): Likewise.
2390 (linux_supports_tracevforkdone): Likewise.
2391 (linux_supports_tracesysgood): Likewise.
2392 * config.in (PTRACE_TYPE_ARG4): Regenerate.
2393 * config/aarch64/linux.mh (NATDEPFILES): Add linux-waitpid.o.
2394 * config/alpha/alpha-linux.mh (NATDEPFILES): Likewise.
2395 * config/arm/linux.mh (NATDEPFILES): Likewise.
2396 * config/i386/linux.mh (NATDEPFILES): Likewise.
2397 * config/i386/linux64.mh (NATDEPFILES): Likewise.
2398 * config/ia64/linux.mh (NATDEPFILES): Likewise.
2399 * config/m32r/linux.mh (NATDEPFILES): Likewise.
2400 * config/m68k/linux.mh (NATDEPFILES): Likewise.
2401 * config/mips/linux.mh (NATDEPFILES): Likewise.
2402 * config/pa/linux.mh (NATDEPFILES): Likewise..
2403 * config/powerpc/linux.mh (NATDEPFILES): Likewise..
2404 * config/powerpc/ppc64-linux.mh (NATDEPFILES): Likewise.
2405 * config/powerpc/spu-linux.mh (NATDEPFILES): Likewise.
2406 * config/sparc/linux.mh (NATDEPFILES): Likewise.
2407 * config/sparc/linux64.mh (NATDEPFILES): Likewise.
2408 * config/tilegx/linux.mh (NATDEPFILES): Likewise.
2409 * config/xtensa/linux.mh (NATDEPFILES): Likewise.
2410 * configure.ac (AC_CACHE_CHECK): Add void * to the list of
2411 ptrace's 4th argument's types.
2412 Check the type of PTRACE_TYPE_ARG4.
2413 * configure: Regenerate.
2414 * linux-nat.c: Include nat/linux-nat.h and nat/linux-waitpid.h.
2415 (SYSCALL_SIGTRAP): Moved to nat/linux-nat.h.
2416 (linux_supports_tracefork_flag): Remove.
2417 (linux_supports_tracesysgood_flag): Likewise.
2418 (linux_supports_tracevforkdone_flag): Likewise.
2419 (current_ptrace_options): Moved to
2420 common/linux-ptrace.c.
2421 (linux_tracefork_child): Remove.
2422 (my_waitpid): Remove.
2423 (linux_test_for_tracefork): Renamed to
2424 linux_check_ptrace_features and moved to common/linux-ptrace.c.
2425 (linux_test_for_tracesysgood): Remove.
2426 (linux_supports_tracesysgood): Remove.
2427 (linux_supports_tracefork): Remove.
2428 (linux_supports_tracevforkdone): Remove.
2429 (linux_enable_tracesysgood): Remove.
2430 (linux_enable_event_reporting): Remove.
2431 (linux_init_ptrace): New function.
2432 (linux_child_post_attach): Call linux_init_ptrace.
2433 (linux_child_post_startup_inferior): Call linux_init_ptrace.
2434 (linux_child_follow_fork): Call linux_supports_tracefork
2435 and linux_supports_tracevforkdone.
2436 (linux_child_insert_fork_catchpoint): Call
2437 linux_supports_tracefork.
2438 (linux_child_insert_vfork_catchpoint): Likewise.
2439 (linux_child_set_syscall_catchpoint): Call
2440 linux_supports_tracesysgood.
2441 (lin_lwp_attach_lwp): Call linux_supports_tracefork.
2442 * nat/linux-nat.h: New file.
2443 * nat/linux-waitpid.c: New file.
2444 * nat/linux-waitpid.h: New file.
2445
2446 2013-08-22 Samuel Bronson <naesten@gmail.com>
2447
2448 ARM Linux support for `catch syscall'.
2449 * syscalls/arm-linux.py: New file.
2450 * syscalls/arm-linux.xml: Likewise.
2451 * arm-linux-tdep.c (arm_linux_get_syscall_number): New function.
2452 (arm_linux_init_abi): Register the new function and syscall xml file.
2453 * data-directory/Makefile.in: Install the new syscall xml file.
2454 * NEWS: Brag about this.
2455
2456 2013-08-22 Pedro Alves <palves@redhat.com>
2457
2458 PR gdb/15871
2459 * corefile.c (target_xfer_memory_error): New function.
2460 (memory_error): Defer EIO to target_memory_error.
2461 (read_memory): Use target_xfer_partial, and handle finer-grained
2462 target xfer errors.
2463 * target.c (target_xfer_error_to_string): New function.
2464 (memory_xfer_partial_1): If memory is known to be
2465 unavailable, return TARGET_XFER_E_UNAVAILABLE instead of -1.
2466 (target_xfer_partial): Make extern.
2467 * target.h (enum target_xfer_error): New enum.
2468 (target_xfer_error_to_string): Declare function.
2469 (target_xfer_partial): Declare function.
2470 (struct target_ops) <xfer_partial>: Adjust describing comment.
2471
2472 2013-08-22 Alan Modra <amodra@gmail.com>
2473
2474 * configure.host: Support powerpc64le-linux and powerpcle-linux hosts.
2475 * configure.tgt: Likewise as targets.
2476
2477 2013-08-20 Doug Evans <dje@google.com>
2478
2479 * buildsym.c (subfile_stack): Move here from buildsym.h.
2480 (pending_macros): Ditto.
2481 (get_macro_table): New function.
2482 (buildsym_init): Initialize subfile_stack.
2483 * coffread.c (type_vector,type_vector_length): Moved here from
2484 buildsym.h.
2485 (INITIAL_TYPE_VECTOR_LENGTH): Ditto.
2486 (coff_symtab_read): Use it.
2487 * dbxread.c (read_ofile_symtab): Delete init of subfile_stack.
2488 * dwarf2read.c (macro_start_file): Replace uses of pending_macros
2489 with call to get_macro_table.
2490 * stabsread.c (type_vector,type_vector_length): Moved here from
2491 buildsym.h.
2492 (INITIAL_TYPE_VECTOR_LENGTH): Ditto.
2493 * buildsym.h (get_macro_table): Declare.
2494
2495 2013-08-20 Tom Tromey <tromey@redhat.com>
2496
2497 * dbxread.c (record_minimal_symbol): Make 'name' argument const.
2498 Update.
2499 (read_dbx_dynamic_symtab): Make 'name' const. Remove casts.
2500
2501 2013-08-20 Doug Evans <dje@google.com>
2502
2503 * blockframe.c: Remove #include "psymtab.h".
2504 * cp-support.c: Ditto.
2505 * source.c: Ditto.
2506 * stack.c: Ditto.
2507
2508 2013-08-20 Tom Tromey <tromey@redhat.com>
2509
2510 PR python/15816:
2511 * exceptions.h (return_mask): Now an enum.
2512 (RETURN_MASK_QUIT, RETURN_MASK_ERROR, RETURN_MASK_ALL): Now
2513 enum constants.
2514
2515 2013-08-20 Tom Tromey <tromey@redhat.com>
2516
2517 * cp-namespace.c (cp_lookup_symbol_imports_or_template): Use
2518 get_objfile_arch.
2519 * elfread.c (elf_rel_plt_read, elf_gnu_ifunc_record_cache)
2520 (elf_gnu_ifunc_resolve_by_got): Use get_objfile_arch.
2521 * jit.c (jit_object_close_impl): Update.
2522 * jv-lang.c (get_dynamics_objfile): Update.
2523 * linespec.c (add_minsym): Use get_dynamics_objfile.
2524 * objfiles.c (get_objfile_bfd_data): Initialize 'gdbarch' field.
2525 (allocate_objfile): Don't initialize 'gdbarch' field.
2526 (get_objfile_arch): Update.
2527 * objfiles.h (struct objfile_per_bfd_storage) <gdbarch>: New field,
2528 moved from...
2529 (struct objfile) <gdbarch>: ... here. Remove.
2530 * stap-probe.c (stap_can_evaluate_probe_arguments): Use
2531 get_objfile_arch.
2532 * symfile.c (init_entry_point_info): Use get_objfile_arch.
2533
2534 2013-08-20 Alan Modra <amodra@gmail.com>
2535
2536 * doublest.c (convert_floatformat_to_doublest): Use fmt->split_half
2537 for IBM long double nan and inf.
2538 (floatformat_is_negative, floatformat_classify,
2539 floatformat_mantissa): Similarly.
2540 (floatformat_ieee_single, floatformat_ieee_double,
2541 floatformat_ieee_quad, floatformat_arm_ext,
2542 floatformat_ia64_spill): Delete unused vars.
2543 (_initialize_doublest): Delete unused function.
2544 * gdbtypes.c (floatformats_ibm_long_double): Use new big- and
2545 little-endian variants of floatformat_ibm_long_double.
2546
2547 2013-08-19 Luis Machado <lgustavo@codesourcery.com>
2548
2549 * Makefile.in (SFILES): Remove common/target-common.c and
2550 add target/waitstatus.c.
2551 (HFILES_NO_SRCDIR): Remove common/target-common.h and add
2552 target/resume.h, target/wait.h and target/waitstatus.h.
2553 (COMMON_OBS): Remove target-common.o and add
2554 waitstatus.o.
2555 (target-common.o): Remove.
2556 (waitstatus.o): New target object file.
2557 * common/target-common.c: Move contents to
2558 target/waitstatus.c and remove.
2559 * common/target-common.h: Move contents to other files and
2560 remove.
2561 (enum resume_kind: Move to target/resume.h.
2562 (TARGET_WNOHANG): Move to target/wait.h.
2563 (enum target_waitkind): Move to target/waitstatus.h.
2564 (struct target_waitstatus): Likewise.
2565 * target.h: Do not include target-common.h and
2566 include target/resume.h, target/wait.h and
2567 target/waitstatus.h.
2568 * target/resume.h: New file.
2569 * target/wait.h: New file.
2570 * target/waitstatus.h: New file.
2571 * target/waitstatus.c: New file.
2572
2573 2013-08-19 Pedro Alves <palves@redhat.com>
2574
2575 * linux-nat.c (linux_test_for_tracefork)
2576 (linux_test_for_tracesysgood, linux_child_follow_fork)
2577 (lin_lwp_attach_lwp, linux_nat_resume): Don't block child signals.
2578 (linux_nat_wait_1): Extend comment.
2579 (linux_async_pipe): Add comment.
2580
2581 2013-08-15 Kevin Buettner <kevinb@redhat.com>
2582
2583 * rl78-tdep.c (RL78_RAW_PC_REGNUM): New enum.
2584 (RL78_PC_REGNUM): Move to list of pseudo-register enums.
2585 (rl78_register_type, rl78_register_name, rl78_register_reggroup_p):
2586 Update to account for fact that PC is now a pseudo-register.
2587 (rl78_pseudo_register_write, rl78_pseudo_register_read): Add
2588 cases for RL78_PC_REGNUM.
2589
2590 2013-08-15 Muhammad Bilal <mbilal@codesourcery.com>
2591
2592 PR cli/15841
2593 * top.c (quit_force): Skip writing history file
2594 if input is not from terminal.
2595
2596 2013-08-14 Tom Tromey <tromey@redhat.com>
2597
2598 * remote.c (struct remote_state) <echo_nextthread, nextthread,
2599 resultthreadlist>: New fields.
2600 (OPAQUETHREADBYTES, threadref, MAXTHREADLISTRESULTS): Move earlier.
2601 (remote_get_threadlist, remote_threadlist_iterator): Use
2602 new fields. Remove static variables.
2603
2604 2013-08-14 Tom Tromey <tromey@redhat.com>
2605
2606 * remote.c (struct remote_state) <remote_stopped_by_watchpoint_p,
2607 remote_watch_data_address>: New fields.
2608 (remote_stopped_by_watchpoint_p, remote_watch_data_address): Remove.
2609 (process_stop_reply, remote_wait_as)
2610 (remote_check_watch_resources, remote_stopped_data_address): Update.
2611
2612 2013-08-14 Tom Tromey <tromey@redhat.com>
2613
2614 * remote.c (struct remote_state) <async_client_callback,
2615 async_client_context>: New fields.
2616 (async_client_callback, async_client_context): Remove.
2617 (remote_async_serial_handler, remote_async): Update.
2618
2619 2013-08-14 Tom Tromey <tromey@redhat.com>
2620
2621 * remote.c (sizeof_pkt): Remove.
2622 (remote_trace_find): Use rs->buf_size, not sizeof_pkt.
2623
2624 2013-08-14 Tom Tromey <tromey@redhat.com>
2625
2626 * remote.c (struct remote_state) <use_threadinfo_query,
2627 use_threadextra_query>: New fields.
2628 (remote_threads_info, remote_threads_extra_info)
2629 (remote_open_1): Update.
2630
2631 2013-08-14 Tom Tromey <tromey@redhat.com>
2632
2633 * remote.c (struct remote_state) <finished_object,
2634 finished_annex, finished_offset>: New fields.
2635 (remote_read_qxfer): Use remote_state fields; remove static
2636 variables.
2637
2638 2013-08-14 Tom Tromey <tromey@redhat.com>
2639
2640 * remote.c (struct remote_state) <last_sent_step>:
2641 New field.
2642 (last_sent_step): Remove.
2643 (remote_resume, remote_wait_as): Update.
2644
2645 2013-08-14 Tom Tromey <tromey@redhat.com>
2646
2647 * remote.c (struct remote_state) <last_sent_signal>:
2648 New field.
2649 (last_sent_signal): Remove.
2650 (new_remote_state, remote_resume, remote_wait_as): Update.
2651
2652 2013-08-14 Tom Tromey <tromey@redhat.com>
2653
2654 * remote.c (struct remote_state) <last_program_signals_packet>:
2655 New field.
2656 (last_program_signals_packet): Remove.
2657 (remote_program_signals, remote_open_1): Update.
2658
2659 2013-08-14 Tom Tromey <tromey@redhat.com>
2660
2661 * remote.c (struct remote_state) <last_pass_packet>:
2662 New field.
2663 (last_pass_packet): Remove.
2664 (remote_pass_signals, remote_open_1): Update.
2665
2666 2013-08-14 Tom Tromey <tromey@redhat.com>
2667
2668 * remote.c (struct remote_state) <remote_traceframe_number>:
2669 New field.
2670 (remote_traceframe_number): Remove.
2671 (new_remote_state, remote_open_1, set_remote_traceframe)
2672 (remote_trace_find): Update.
2673
2674 2013-08-14 Tom Tromey <tromey@redhat.com>
2675
2676 * remote.c (struct remote_state) <general_thread, continue_thread>:
2677 New fields.
2678 (general_thread, continue_thread): Remove.
2679 (record_currthread, set_thread, set_general_process)
2680 (remote_open_1, extended_remote_attach_1, remote_wait_as)
2681 (extended_remote_mourn_1): Update.
2682
2683 2013-08-14 Tom Tromey <tromey@redhat.com>
2684
2685 * remote.c (struct remote_state) <remote_desc>: New field.
2686 (remote_desc): Remove.
2687 (remote_threads_info, remote_threads_extra_info, remote_close)
2688 (send_interrupt_sequence, remote_start_remote, remote_open_1)
2689 (readchar, remote_xfer_partial, remote_rcmd, packet_command)
2690 (remote_hostio_send_command, remote_file_put, remote_file_get)
2691 (remote_file_delete, remote_can_async_p, remote_is_async_p)
2692 (remote_async, remote_new_objfile, set_range_stepping): Update.
2693
2694 2013-08-14 Tom Tromey <tromey@redhat.com>
2695
2696 * remote.c (remote_state): Now a pointer.
2697 (get_remote_state_raw): Update.
2698 (new_remote_state): New function.
2699 (_initialize_remote): Use new_remote_state.
2700
2701 2013-08-14 Tom Tromey <tromey@redhat.com>
2702
2703 * remote.c (remote_protocol_features): Now const.
2704
2705 2013-08-14 Tom Tromey <tromey@redhat.com>
2706
2707 * remote.c (crc32_table, crc32): Remove.
2708 (remote_verify_memory): Use xcrc32.
2709
2710 2013-08-13 Sergio Durigan Junior <sergiodj@redhat.com>
2711
2712 * value.h (create_internalvar_type_lazy): Adjust prototype
2713 declaration.
2714
2715 2013-08-13 Andrew Burgess <aburgess@broadcom.com>
2716
2717 * common/format.c (parse_format_string): Don't allow '#' flag for
2718 pointer arguments in format string.
2719
2720 2013-08-13 Pierre Muller <muller@sourceware.org>
2721
2722 * utils.c (init_page_info): Only call tgetnum function
2723 if rl_get_screen_size did not return useful values.
2724
2725 2013-08-12 Ali Anwar <ali_anwar@codesourcery.com>
2726
2727 PR breakpoints/15117
2728 * linespec.c (linespec_parse_basic): Check for convenience
2729 variable or history value while parsing.
2730
2731 2013-08-12 Sergio Durigan Junior <sergiodj@redhat.com>
2732
2733 Revert implementation of gdbarch_gdb_signal_{to,from}_target for
2734 AVR.
2735 * avr-tdep.c: Remove include of "linux-tdep.h". Remove enum with
2736 different signals between the generic Linux kernel implementation
2737 and AVR's.
2738 (avr_linux_gdb_signal_from_target): Delete.
2739 (avr_linux_gdb_signal_to_target): Delete.
2740 (avr_gdbarch_init): Don't set gdbarch_gdb_signal_{to,from}_target.
2741
2742 2013-08-09 Doug Evans <dje@google.com>
2743
2744 * dwarf2read.c (create_addrmap_from_index): Ignore bad address table
2745 entries.
2746
2747 2013-08-09 Sergio Durigan Junior <sergiodj@redhat.com>
2748
2749 * linux-tdep.c: Define enum with generic signal numbers.
2750 (linux_gdb_signal_from_target): New function.
2751 (linux_gdb_signal_to_target): Likewise.
2752 (linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
2753 methods to the functions above.
2754 * linux-tdep.h (linux_gdb_signal_from_target): New prototype.
2755 (linux_gdb_signal_to_target): Likewise.
2756 * alpha-linux-tdep.c: Define new enum with signals different
2757 from generic Linux kernel.
2758 (alpha_linux_gdb_signal_from_target): New function.
2759 (alpha_linux_gdb_signal_to_target): Likewise.
2760 (alpha_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
2761 with the functions mentioned above.
2762 * avr-tdep.c: Define enum with differences between Linux kernel
2763 and AVR signals.
2764 (avr_linux_gdb_signal_from_target): New function.
2765 (avr_linux_gdb_signal_to_target): Likewise.
2766 (avr_gdbarch_init): Set gdbarch_gdb_signal_{to,from}_target to
2767 the functions mentioned above.
2768 * sparc-linux-tdep.c: Define enum with differences between SPARC
2769 and generic Linux kernel signal numbers.
2770 (sparc32_linux_gdb_signal_from_target): New function.
2771 (sparc32_linux_gdb_signal_to_target): Likewise.
2772 (sparc32_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
2773 to the functions defined above.
2774 * xtensa-linux-tdep.c: Define enum with differences between
2775 Xtensa and Linux kernel generic signals.
2776 (xtensa_linux_gdb_signal_from_target): New function.
2777 (xtensa_linux_gdb_signal_to_target): Likewise.
2778 (xtensa_linux_init_abi): Set gdbarch_gdb_signal_to_target
2779 to the functions defined above.
2780 * mips-linux-tdep.c: Define enum with differences between
2781 signals in MIPS and Linux kernel generic ones.
2782 (mips_gdb_signal_to_target): New function.
2783 (mips_gdb_signal_from_target): Redefine to use new enum, handle
2784 only different signals from the Linux kernel generic.
2785 (mips_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
2786 the functions defined above.
2787 * mips-linux-tdep.h (enum mips_signals): Remove.
2788
2789 2013-08-09 Pedro Alves <palves@redhat.com>
2790
2791 * avr-tdep.c (XMALLOC): Delete macro.
2792 * cli/cli-dump.c (XMALLOC): Delete macro.
2793
2794 2013-08-09 Pedro Alves <palves@redhat.com>
2795
2796 * cli/cli-dump.c: Don't include cli/cli-dump.h.
2797 (scan_expression_with_cleanup, scan_filename_with_cleanup)
2798 (fopen_with_cleanup, add_dump_command): Make static.
2799 * cli/cli-dump.h: Delete file.
2800 * Makefile.in (HFILES_NO_SRCDIR): Remove reference to
2801 cli/cli-dump.h.
2802
2803 2013-08-09 Pedro Alves <palves@redhat.com>
2804
2805 * tracepoint.c (tfile_start): Show tilde-expanded filename in
2806 error message.
2807
2808 2013-08-09 Pedro Alves <palves@redhat.com>
2809
2810 * breakpoint.c (save_breakpoints): Show tilde-expanded filename in
2811 error message.
2812
2813 2013-08-09 Pedro Alves <palves@redhat.com>
2814
2815 * gcore.c (create_gcore_bfd): Don't use tilde_expand here.
2816 (gcore_command): Use tilde_expand here, and when showing the
2817 filename to the user, show the expanded version.
2818
2819 2013-08-09 Yao Qi <yao@codesourcery.com>
2820
2821 * stack.c (read_frame_arg): Set 'entryval_error' to NULL if
2822 'entryval' is set.
2823
2824 2013-08-08 Azat Khuzhin <a3at.mail@gmail.com> (tiny change)
2825
2826 * gcore.c (create_gcore_bfd): Use tilde_expand.
2827
2828 2013-08-08 Yao Qi <yao@codesourcery.com>
2829
2830 * frame.h (read_frame_local): Declare.
2831 * mi/mi-cmd-stack.c (list_args_or_locals): Call
2832 read_frame_local.
2833 * stack.c (read_frame_local): New.
2834
2835 2013-08-08 Yao Qi <yao@codesourcery.com>
2836
2837 * mi/mi-cmd-stack.c: Update comments to function
2838 list_args_or_locals.
2839
2840 2013-08-07 Tom Tromey <tromey@redhat.com>
2841
2842 PR symtab/15028:
2843 * dwarf2read.c (struct process_psymtab_comp_unit_data): New.
2844 (process_psymtab_comp_unit_reader): Use it.
2845 (process_psymtab_comp_unit): Update. Add "pretend_language"
2846 argument.
2847 (dwarf2_build_psymtabs_hard): Update.
2848 (scan_partial_symbols): Pass CU's language to
2849 process_psymtab_comp_unit.
2850
2851 2013-08-07 Tom Tromey <tromey@redhat.com>
2852
2853 * dwarf2read.c (dw2_get_primary_filename_reader): Remove.
2854 (dwarf2_gdb_index_functions): Update.
2855 * psymtab.c (find_symbol_file_from_partial): Remove.
2856 (psym_functions): Update.
2857 * symfile.h (struct quick_symbol_functions) <find_symbol_file>:
2858 Remove.
2859
2860 2013-08-07 Tom Tromey <tromey@redhat.com>
2861
2862 * symfile.c (set_initial_language): Look up "main" symbol
2863 and use its language.
2864 * symtab.c (find_main_filename): Remove.
2865 * symtab.h (find_main_filename): Remove.
2866
2867 2013-08-07 Tom Tromey <tromey@redhat.com>
2868
2869 * dwarf2read.c (recursively_compute_inclusions): Add
2870 "immediate_parent" argument. Set symtab's "user" field
2871 if not set.
2872 (compute_symtab_includes): Update.
2873
2874 2013-08-07 Tom Tromey <tromey@redhat.com>
2875
2876 * linespec.c (convert_linespec_to_sals): Use maybe_add_address
2877 when adding label symbols.
2878
2879 2013-08-07 Raunaq Bathija <raunaq12@in.ibm.com>
2880 Ulrich Weigand <uweigand@de.ibm.com>
2881
2882 * configure.tgt (powerpc64-*-aix*): Match powerpc64 running aix.
2883 * configure.host (powerpc64-*-aix*): Likewise.
2884
2885 2013-08-07 Raunaq Bathija <raunaq12@in.ibm.com>
2886 Ulrich Weigand <uweigand@de.ibm.com>
2887
2888 * gdb_ptrace.h: Use ptrace64 instead of ptrace if HAVE_PTRACE64
2889 is defined.
2890 * rs6000-nat.c: Check for __ld_info64_ if compiling 64 BIT gdb.
2891 (rs6000_ptrace32): Call ptrace64 instead of ptrace if present.
2892 (rs6000_ptrace64): Call ptace64 instead of ptracex if present.
2893 * configure.ac: Check for ptrace64.
2894 * configure, config.in: Regenerate.
2895
2896 2013-08-07 Raunaq Bathija <raunaq12@in.ibm.com>
2897 Ulrich Weigand <uweigand@de.ibm.com>
2898
2899 * aixthread.c: Call ptrace64 instead of ptracex if defined.
2900 Call ptrace64 instead of ptrace if defined.
2901 Add macro addr_ptr to take care of ptrace address argument.
2902 (pdc_read_regs): Likewise.
2903 (pdc_write_regs): Likewise.
2904 (aix_thread_resume): Likewise.
2905 (fetch_regs_kernel_thread): Likewise.
2906 (store_regs_kernel_thread): Likewise.
2907
2908 2013-08-07 Anton Blanchard <anton@samba.org>
2909
2910 * MAINTAINERS: Add myself to Write After Approval.
2911
2912 2013-08-05 Tom Tromey <tromey@redhat.com>
2913
2914 * aix-thread.c (_initialize_aix_thread): Use
2915 complete_target_initialization.
2916 * bsd-uthread.c (_initialize_bsd_uthread): Use
2917 complete_target_initialization.
2918 * dec-thread.c (_initialize_dec_thread): Use
2919 complete_target_initialization.
2920 * ravenscar-thread.c (_initialize_ravenscar): Use
2921 complete_target_initialization.
2922 * sol-thread.c (_initialize_sol_thread): Use
2923 complete_target_initialization.
2924 * spu-multiarch.c (_initialize_spu_multiarch): Use
2925 complete_target_initialization.
2926
2927 2013-08-05 Tom Tromey <tromey@redhat.com>
2928
2929 * ada-exp.y (write_var_or_type): Use bound_minimal_symbol.
2930 * ada-lang.c (ada_lookup_simple_minsym): Return
2931 bound_minimal_symbol.
2932 * ada-lang.h (ada_lookup_simple_minsym): Update.
2933 * c-exp.y (variable): Use lookup_bound_minimal_symbol.
2934 * f-exp.y (variable): Use lookup_bound_minimal_symbol.
2935 * go-exp.y (variable): Use lookup_bound_minimal_symbol.
2936 * jv-exp.y (push_expression_name): Use lookup_bound_minimal_symbol.
2937 * m2-exp.y (variable): Use lookup_bound_minimal_symbol.
2938 * minsyms.c (msymbol_objfile): Remove.
2939 (lookup_minimal_symbol_internal): New function, from
2940 lookup_minimal_symbol.
2941 (lookup_minimal_symbol): Rewrite using
2942 lookup_minimal_symbol_internal.
2943 (lookup_bound_minimal_symbol): New function.
2944 * minsyms.h (msymbol_objfile): Remove.
2945 (lookup_bound_minimal_symbol): Declare.
2946 * p-exp.y (variable): Use lookup_bound_minimal_symbol.
2947 * parse.c (write_exp_msymbol): Change parameter to a
2948 bound_minimal_symbol.
2949 (write_dollar_variable): Use lookup_bound_minimal_symbol.
2950 * parser-defs.h (write_exp_msymbol): Update.
2951 * printcmd.c (address_info): Use lookup_bound_minimal_symbol.
2952 * symfile.c (simple_read_overlay_table): Use
2953 lookup_bound_minimal_symbol.
2954 * symtab.c (skip_prologue_sal): Don't use msymbol_objfile.
2955 (search_symbols): Likewise.
2956 (print_msymbol_info): Take a bound_minimal_symbol argument.
2957 (symtab_symbol_info, rbreak_command): Update.
2958 * symtab.h (struct symbol_search) <msymbol>: Change type
2959 to bound_minimal_symbol.
2960 * valops.c (find_function_in_inferior): Use
2961 lookup_bound_minimal_symbol.
2962 * value.c (value_fn_field): Use lookup_bound_minimal_symbol.
2963
2964 2013-08-05 Jan Kratochvil <jan.kratochvil@redhat.com>
2965
2966 Code cleanup.
2967 * remote.c (cleanup_sigint_signal_handler): Rename the declaration
2968 to ...
2969 (async_cleanup_sigint_signal_handler): ... this.
2970 (initialize_sigint_signal_handler): Remove declaration.
2971 (handle_remote_sigint): Rename the declaration to ...
2972 (async_handle_remote_sigint): ... this.
2973 (handle_remote_sigint_twice): Rename the declaration to ...
2974 (async_handle_remote_sigint_twice): ... this.
2975 (async_remote_interrupt, async_remote_interrupt_twice)
2976 (remote_interrupt): Remove the declarations.
2977 (remote_interrupt_twice): Rename the declaration ...
2978 (sync_remote_interrupt_twice): ... this.
2979 (sigint_remote_twice_token): Rename the variable to ...
2980 (async_sigint_remote_twice_token): ... this.
2981 (sigint_remote_token): Rename the variable to ...
2982 (async_sigint_remote_token): ... this.
2983 (initialize_sigint_signal_handler): Rename the function to ...
2984 (async_initialize_sigint_signal_handler): ... this. Update the name
2985 inside.
2986 (handle_remote_sigint): Rename the function to ...
2987 (async_handle_remote_sigint): ... this. Update the names inside.
2988 (handle_remote_sigint_twice): Rename the function to ...
2989 (async_handle_remote_sigint_twice): ... this. Update the names inside.
2990 (cleanup_sigint_signal_handler): Rename the function to ...
2991 (async_cleanup_sigint_signal_handler): ... this.
2992 (remote_interrupt): Rename the function to ...
2993 (sync_remote_interrupt): this. Update the names inside.
2994 (remote_interrupt_twice): Rename the function to ...
2995 (sync_remote_interrupt_twice): this. Update the names inside.
2996 (remote_terminal_inferior, remote_terminal_ours, remote_wait_as)
2997 (_initialize_remote): Update the names inside.
2998
2999 2013-08-02 Tom Tromey <tromey@redhat.com>
3000
3001 PR symtab/15719:
3002 * breakpoint.c (update_watchpoint, watchpoint_check)
3003 (watch_command_1): Update.
3004 * eval.c (fetch_subexp_value): Add "preserve_errors"
3005 parameter.
3006 * ppc-linux-nat.c (check_condition): Update.
3007 * value.h (fetch_subexp_value): Update.
3008
3009 2013-08-02 Andrew Burgess <aburgess@broadcom.com>
3010
3011 * mi/mi-interp.c (mi_interpreter_resume): Remove call to
3012 add_file_handler.
3013
3014 2013-08-01 Doug Evans <dje@google.com>
3015
3016 PR symtab/15691
3017 * dwarf2read.c (struct dwarf2_per_cu_data): New member tu_read.
3018 (fill_in_sig_entry_from_dwo_entry): Reorganize asserts.
3019 Add assert of sig_entry->dwo_unit == NULL.
3020 (lookup_dwo_signatured_type): Don't assign TU to a DWO if the TU
3021 had already been read.
3022 (read_signatured_type): Set per_cu.tu_read.
3023
3024 PR symtab/15695
3025 * valops.c (value_struct_elt): Add missing call to check_typedef.
3026 (value_find_oload_method_list): Ditto.
3027
3028 * symtab.c (do_free_search_symbols_cleanup): Change arg to,
3029 effectively, struct symbol_search **.
3030 (make_cleanup_free_search_symbols): Change arg to struct
3031 symbol_search **. All callers updated.
3032 (compare_search_syms): Compare symtab file name and block as well.
3033 (search_symbols_equal): New function.
3034 (sort_search_symbols_remove_dups): Renamed from sort_search_symbols.
3035 New args new_head, new_tail. Result is now void. Remove dups after
3036 sorting the symbols.
3037 (search_symbols): Sort all found symbols once, after all have been
3038 found, and remove duplicates. Simplify cleanup tracking of result.
3039 * symtab.h (make_cleanup_free_search_symbols): Update prototype.
3040
3041 Further workarounds for binutils/15021.
3042 * dwarf2read.c (recursively_compute_inclusions): Change type of result
3043 parameter to VEC (symtab_ptr) **. New parameter all_type_symtabs.
3044 Watch for duplicate symtabs coming from type units.
3045 (compute_symtab_includes): Update call to
3046 recursively_compute_inclusions. Build vector of included symtabs
3047 instead of per_cus.
3048 * symtab.h (symtab_ptr): New typedef.
3049 (DEF_VEC_P (symtab_ptr)): New VEC type.
3050 * linespec.c (symtab_p): Delete. All uses updated to use symtab_ptr
3051 instead.
3052
3053 2013-08-01 Andrew Burgess <aburgess@broadcom.com>
3054
3055 * cli/cli-script.c (script_from_file): Remove use of
3056 error_pre_print.
3057 * main.c (captured_main): Remove use of error_pre_print and
3058 quit_pre_print.
3059 * utils.c (error_pre_print, quit_pre_print): Remove.
3060 * utils.h (error_pre_print, quit_pre_print): Likewise.
3061
3062 2013-08-01 Yao Qi <yao@codesourcery.com>
3063
3064 * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Parse argv
3065 with mi_getopt.
3066 (mi_cmd_stack_list_variables): Likewise.
3067
3068 2013-07-31 Andrew Burgess <aburgess@broadcom.com>
3069
3070 * exceptions.c (deprecated_throw_reason): Remove.
3071 * exceptions.h (deprecated_throw_reason): Remove.
3072
3073 2013-07-31 Andrew Burgess <aburgess@broadcom.com>
3074
3075 * remote-mips.c (mips_error): Replace use of
3076 deprecated_throw_reason with throw_verror. Use the error message
3077 passed to mips_error as the error message for throw_verror.
3078
3079 2013-07-31 Andrew Burgess <aburgess@broadcom.com>
3080
3081 * monitor.c (monitor_interrupt_query): Replace use of
3082 deprecated_throw_reason with quit.
3083 * nto-procfs.c (interrupt_query): Likewise.
3084 * remote-fileio.c (remote_fileio_sig_exit): Likewise.
3085 * remote-mips.c (mips_kill): Likewise.
3086 * remote.c (interrupt_query): Likewise.
3087
3088 2013-07-31 Andrew Burgess <aburgess@broadcom.com>
3089
3090 * utils.c (internal_verror): Replace use of deprecated_throw_reason
3091 with call to fatal.
3092
3093 2013-07-31 Pedro Alves <pedro@codesourcery.com>
3094 Yao Qi <yao@codesourcery.com>
3095
3096 * tracepoint.c (trace_dump_command): Select the current frame.
3097
3098 2013-07-30 Doug Evans <dje@google.com>
3099
3100 * dwarf2read.c (process_queue): Add type signature to debug output.
3101
3102 2013-07-30 Andrew Burgess <aburgess@broadcom.com>
3103
3104 * value.c (value_fetch_lazy): Mark optimized out values as such
3105 rather than raising an error.
3106
3107 2013-07-30 Andrew Burgess <aburgess@broadcom.com>
3108
3109 * value.c (value_fetch_lazy): Ensure parent value is not lazy
3110 before checking which bits of the parent, not the child, value are
3111 valid.
3112
3113 2013-07-30 Muhammad Bilal <mbilal@codesorcery.com>
3114
3115 PR gdb/15715
3116 * top.c: Include "filenames.h".
3117 (set_history_filename): New function.
3118 (init_main): Install it as set hook of the "set history filename"
3119 command.
3120
3121 2013-07-30 Sanimir Agovic <sanimir.agovic@intel.com>
3122
3123 * dwarf2read.c (dwarf2_get_ref_die_offset): Constify struct
3124 attribute parameter.
3125 (dwarf2_const_value_data): Constify struct attribute parameter.
3126 (dwarf2_const_value): Constify struct attribute parameter.
3127 (dwarf2_const_value_attr): Constify struct attribute parameter.
3128 (lookup_die_type): Constify struct attribute parameter.
3129 (dwarf2_get_attr_constant_value): Constify struct attribute parameter.
3130 (follow_die_ref_or_sig): Constify struct attribute parameter.
3131 (follow_die_ref): Constify struct attribute parameter.
3132 (follow_die_sig): Constify struct attribute parameter.
3133 (get_DW_AT_signature_type): Constify struct attribute parameter.
3134 (get_type_unit_group): Constify struct attribute parameter.
3135 (fill_in_loclist_baton): Constify struct attribute parameter.
3136 (dwarf2_symbol_mark_computed): Constify struct attribute parameter.
3137 (type_unit_group): Constify struct attribute parameter.
3138
3139 2013-07-30 Sanimir Agovic <sanimir.agovic@intel.com>
3140
3141 * dwarf2read.c (attr_form_is_block): Make argument const.
3142 (attr_form_is_section_offset): Make argument const.
3143 (attr_form_is_constant): Make argument const.
3144 (attr_form_is_ref): Make argument const.
3145
3146 2013-07-30 Sanimir Agovic <sanimir.agovic@intel.com>
3147
3148 * dwarf2read.c (attr_is_ref): Rename to attr_form_is_ref.
3149 All uses updated.
3150 (attr_form_is_ref): Moved below attr_form_is_constant.
3151
3152 2013-07-29 Doug Evans <dje@google.com>
3153
3154 * main.c (captured_command_loop): Tweak comment.
3155
3156 * target.c (target_async_permitted_1): Fix comment.
3157
3158 * symtab.c (iterate_over_some_symtabs): Add comment.
3159
3160 * symtab.c (iterate_over_some_symtabs): Fix indentation.
3161
3162 2013-07-27 Yao Qi <yao@codesourcery.com>
3163
3164 * NEWS: Mention that GDBserver now supports hardware
3165 watchpoints on the MIPS GNU/Linux target.
3166
3167 2013-07-27 Yao Qi <yao@codesourcery.com>
3168
3169 * Makefile.in (HFILES_NO_SRCDIR): Add
3170 common/mips-linux-watch.h.
3171 (mips-linux-watch.o): New rule.
3172 * common/mips-linux-watch.c: New.
3173 * common/mips-linux-watch.h: New.
3174 * config/mips/linux.mh (NATDEPFILES): Add mips-linux-watch.o
3175 * mips-linux-nat.c: Include mips-linux-watch.h.
3176 (W_BIT, R_BIT, I_BIT, W_MASK, R_MASK, I_MASK, IRW_MASK): Move
3177 to common/mips-linux-watch.h.
3178 (MAX_DEBUG_REGISTER): Likewise.
3179 (enum pt_watch_style): Likewise.
3180 (struct mips32_watch_regs): Likewise.
3181 (struct mips64_watch_regs): Likewise.
3182 (struct pt_watch_regs): Likewise.
3183 (struct mips_watchpoint): Likewise.
3184 (mips_linux_watch_get_irw_mask): Move to
3185 common/mips-linux-watch.c.
3186 (get_reg_mask, mips_linux_watch_get_num_valid): Likewise.
3187 (mips_linux_watch_get_watchlo): Likewise.
3188 (mips_linux_watch_set_watchlo): Likewise.
3189 (mips_linux_watch_get_watchhi): Likewise.
3190 (mips_linux_watch_set_watchhi): Likewise.
3191 (mips_linux_read_watch_registers): Likewise.
3192 (mips_linux_watch_type_to_irw): Likewise.
3193 (mips_linux_stopped_data_address, fill_mask): Likewise.
3194 (mips_linux_watch_try_one_watch): Likewise.
3195 (mips_linux_watch_populate_regs): Likewise.
3196
3197 2013-07-27 Yao Qi <yao@codesourcery.com>
3198
3199 * mips-linux-nat.c (get_irw_mask): Rename to ...
3200 (mips_linux_watch_get_irw_mask): ... this. Rename parameter
3201 'set' to 'n'. Update function comment. All callers changed.
3202 (get_reg_mask): Rename parameter 'set' to 'n'. Update
3203 function comment. All callers changed.
3204 (get_num_valid): Rename to ...
3205 (mips_linux_watch_get_num_valid): ... this. Rename parameter
3206 'set' to 'n'. Update function comment. All callers changed.
3207 (get_watchlo): Rename to ...
3208 (mips_linux_watch_get_watchlo): ... this. Rename parameter
3209 'set' to 'n'. Update function comment. All callers changed.
3210 (set_watchlo): Rename to ...
3211 (mips_linux_watch_set_watchlo): ... this. Rename parameter
3212 'set' to 'n'. Update function comment. All callers changed.
3213 (get_watchhi): Rename to ...
3214 (mips_linux_watch_get_watchhi): ... this. Update function
3215 comment. All callers changed.
3216 (set_watchhi): Rename to ...
3217 (mips_linux_watch_set_watchhi): ... this. Update function
3218 comment. All callers changed.
3219 (mips_linux_read_watch_registers): Update function comment.
3220 Add new parameters 'lwpid', 'watch_readback', and
3221 'watch_readback_valid'. Update.
3222 (type_to_irw): Rename to ...
3223 (mips_linux_watch_type_to_irw): ... this. Update function
3224 comment. All callers changed.
3225 (fill_mask): Update function comment.
3226 (try_one_watch): Rename to ...
3227 (mips_linux_watch_try_one_watch): ... this. Change the type
3228 of parameter 'irw' from 'unsigned' to 'uint32_t'.
3229 (populate_regs_from_watches): Rename to ...
3230 (mips_linux_watch_populate_regs): ... this. Add parameter
3231 'current_watches'. All callers changed.
3232
3233 2013-07-27 Yao Qi <yao@codesourcery.com>
3234
3235 * mips-linux-nat.c (MAX_DEBUG_REGISTER): Move it earlier in
3236 the code.
3237 (PTRACE_SET_WATCH_REGS, enum pt_watch_style): Remove.
3238 (struct mips32_watch_regs, struct mips64_watch_regs): Remove.
3239 (struct pt_watch_regs): Likewise.
3240 [!PTRACE_GET_WATCH_REGS] (PTRACE_SET_WATCH_REGS): New macro.
3241 [!PTRACE_GET_WATCH_REGS] (enum pt_watch_style): New.
3242 [!PTRACE_GET_WATCH_REGS] (struct mips32_watch_regs): New.
3243 [!PTRACE_GET_WATCH_REGS] (struct mips64_watch_regs): New.
3244 [!PTRACE_GET_WATCH_REGS] (struct pt_watch_regs): New.
3245
3246 2013-07-27 Yao Qi <yao@codesourcery.com>
3247
3248 * breakpoint.h: Include break-common.h.
3249 (enum target_hw_bp_type): Move to ...
3250 * common/break-common.h: ... here. New.
3251
3252 2013-07-26 Cyril Nikolaev <cyril@nichtverstehen.de>
3253
3254 * inflow.c (terminal_init_inferior_with_pgrp): Save inferior
3255 process group regardless of having tty on stdin.
3256
3257 2013-07-25 Doug Evans <dje@google.com>
3258
3259 * linux-fork.h (detach_fork): Delete.
3260
3261 2013-07-25 Tom Tromey <tromey@redhat.com>
3262
3263 PR remote/15256, PR remote/15266:
3264 * bfd-target.c (target_bfd_reopen): Initialize to_magic.
3265 * monitor.c (monitor_detach): Use unpush_target.
3266 * remote-m32r-sdi.c (m32r_detach): Use unpush_target.
3267 * remote-mips.c (mips_detach): Use unpush_target. Don't
3268 call mips_close.
3269 * remote-sim.c (gdbsim_detach): Use unpush_target.
3270 * target.c (pop_target): Remove.
3271 (pop_all_targets_above): Don't call target_close.
3272 (target_close): Assert that the target is unpushed.
3273 * target.h (pop_target): Don't declare.
3274 * tracepoint.c (tfile_open): Use unpush_target.
3275
3276 2013-07-25 Tom Tromey <tromey@redhat.com>
3277
3278 * linux-thread-db.c (init_thread_db_ops): Call
3279 complete_target_initialization.
3280 (_initialize_thread_db): Don't call add_target.
3281 * target.c (complete_target_initialization): New function.
3282 (add_target_with_completer): Call it.
3283 * target.h (complete_target_initialization): Declare.
3284
3285 2013-07-25 Mark Kettenis <kettenis@gnu.org>
3286
3287 * hppa-tdep.h (enum hppa_regnum): Add members for all space registers.
3288 * hppaobsd-tdep.c (HPPAOBSD_SIZEOF_GREGS): Add comment.
3289 (HPPANBSD_SIZEOF_GREGS): New define.
3290 (hppaobsd_supply_gregset): Handle additional registers.
3291 * hppabsd-nat.c (hppabsd_gregset_supplies_p): Adjust to indicate
3292 we provide more registers now.
3293 (hppabsd_supply_gregset): Supply additional registers.
3294 (hppabsd_collect_gregset): Collect additional registers.
3295
3296 2013-07-25 Mark Kettenis <kettenis@gnu.org>
3297
3298 * hppabsd-tdep.c: Include "dwarf2-frame.h".
3299 (hppabsd_dwarf2_frame_init_reg): New function.
3300 (hppabsd_init_abi): Hook in the DWARF CFI frame unwinder.
3301
3302 2013-07-25 Andrew Burgess <aburgess@broadcom.com>
3303
3304 * mi/mi-main.c (output_register): Make MI 'r' format use standard
3305 'z' format code. Remove error for optimized out values, standard
3306 code will handle these fine.
3307
3308 2013-07-25 Andrew Burgess <aburgess@broadcom.com>
3309
3310 * NEWS: Mention new 'z' formatter.
3311 * printcmd.c (print_scalar_formatted): Add new 'z' formatter.
3312 (_initialize_printcmd): Mention 'z' formatter in help text of the
3313 'x' command.
3314
3315 2013-07-24 Maciej W. Rozycki <macro@codesourcery.com>
3316
3317 * mips-tdep.c (micromips_deal_with_atomic_sequence): Correct
3318 formatting.
3319
3320 2013-07-24 Sergio Durigan Junior <sergiodj@redhat.com>
3321
3322 * breakpoint.c (create_longjmp_master_breakpoint): Check if probe
3323 interface can evaluate arguments. Fallback to the old mode if it
3324 cannot.
3325 (create_exception_master_breakpoint): Likewise.
3326 * elfread.c (elf_can_evaluate_probe_arguments): New function.
3327 (struct sym_probe_fns elf_probe_fns): Export function above to the
3328 probe interface.
3329 * probe.c (can_evaluate_probe_arguments): New function.
3330 * probe.h (struct probe_ops) <can_evaluate_probe_arguments>: New
3331 function pointer.
3332 (can_evaluate_probe_arguments): New function prototype.
3333 * solib-svr4.c (svr4_create_solib_event_breakpoints): Check if
3334 probe interface can evaluate arguments. Fallback to the old mode
3335 if it cannot.
3336 * stap-probe.c (stap_get_probe_argument_count): Check if probe
3337 interface can evaluate arguments. Warning the user if it cannot.
3338 (stap_can_evaluate_probe_arguments): New function.
3339 (struct probe_ops stap_probe_ops): Export function above to the
3340 probe interface.
3341 * symfile.h (struct sym_probe_fns) <can_evaluate_probe_arguments>:
3342 New function pointer.
3343
3344 2013-07-24 Luis Machado <lgustavo@codesourcery.com>
3345
3346 * Makefile.in (SFILES): Add common/target-common.c.
3347 Add common/target-common.h to headers.
3348 (COMMON_OBS): Add target-common.o.
3349 (target-common.o): New target.
3350 * linux-nat.h (resume_kind): Move to common/target-common.h.
3351 * target.c (target_waitstatus_to_string): Move to
3352 common/target-common.c.
3353 * target.h: Include target-common.h.
3354 (target_waitkind): Move to common/target-common.h.
3355 (target_waitstatus): Likewise.
3356 (TARGET_WNOHANG): Likewise.
3357 * common/target-common.c: New file.
3358 * common/target-common.h: New file.
3359
3360 2013-07-24 Doug Evans <dje@google.com>
3361
3362 * dwarf2read.c (lookup_dwo_cutu): Change missing DWO complaint to
3363 a warning.
3364
3365 2013-07-23 Yao Qi <yao@codesourcery.com>
3366
3367 * i386-tdep.c (i386_in_stack_tramp_p): Remove unused
3368 parameter 'gdbarch'.
3369 (i386_stack_tramp_frame_sniffer): Caller update.
3370 * i386-linux-tdep.c (i386_linux_core_read_xcr0): Remove
3371 parameter 'gdbarch' and 'target'.
3372 (i386_linux_core_read_description): Caller update.
3373 * amd64-linux-tdep.c (amd64_linux_core_read_description):
3374 Likewise.
3375 * i386-linux-tdep.h (i386_linux_core_read_xcr0): Update
3376 declaration.
3377
3378 2013-07-23 Tom Tromey <tromey@redhat.com>
3379
3380 * dwarf2read.c (init_cutu_and_read_dies): Revert patch from
3381 2013-07-22.
3382
3383 2013-07-22 Doug Evans <dje@google.com>
3384
3385 * exec.h (remove_target_sections): Delete arg abfd.
3386 * exec.c (exec_close): Update call to remove_target_sections.
3387 (remove_target_sections): Delete arg abfd.
3388 * solib.c (update_solib_list): Ditto.
3389 (reload_shared_libraries_1): Ditto.
3390 (clear_solib): Ditto, and unconditionally call remove_target_sections.
3391 * target.h (struct target_section): Rename key to owner.
3392 All uses updated.
3393
3394 2013-07-22 Tom Tromey <tromey@redhat.com>
3395
3396 * solib-som.c (som_open_symbol_file_object): Call do_cleanups.
3397
3398 2013-07-22 Tom Tromey <tromey@redhat.com>
3399
3400 * dwarf2read.c (init_cutu_and_read_dies): Remove 'free_cu_cleanup'.
3401 Simplify cleanup handling.
3402
3403 2013-07-22 Tom Tromey <tromey@redhat.com>
3404
3405 * dwarf2read.c (dwarf_decode_line_header): Call do_cleanups
3406 on all return paths.
3407
3408 2013-07-22 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
3409
3410 * ppc-linux-nat.c (PPC_DEBUG_FEATURE_DATA_BP_DAWR): New define.
3411 (ppc_linux_region_ok_for_hw_watchpoint): Add checking to use the new
3412 DAWR interface for longer ranges hardware watchpoint (up to 512 bytes).
3413
3414 2013-07-22 Phil Muldoon <pmuldoon@redhat.com>
3415
3416 * top.c (print_gdb_version): Add help, apropos description and
3417 url to online documentation.
3418
3419 2013-07-19 Hui Zhu <hui@codesourcery.com>
3420
3421 PR gdb/15692
3422 * mi/mi-cmd-break.c (mi_argv_to_format): Handle double quotes.
3423
3424 2013-07-19 Yao Qi <yao@codesourcery.com>
3425
3426 * target.c (update_current_target): Change the default action
3427 of 'to_traceframe_info' from tcomplain to return_zero.
3428 * target.h (struct target_ops) <to_traceframe_info>: Add more
3429 comments.
3430 * valops.c (read_value_memory): Call
3431 traceframe_available_memory unconditionally.
3432
3433 2013-07-18 Yao Qi <yao@codesourcery.com>
3434
3435 * coffread.c (coff_symfile_read): Iterate over minimal symbols,
3436 if the name is prefixed by "__imp_" or "_imp_", look for minimal
3437 symbol without prefix. If found, set its type to
3438 'mst_solib_trampoline'.
3439
3440 2013-07-17 Doug Evans <dje@google.com>
3441
3442 * NEWS: Mention "set print raw frame-arguments".
3443 * gdbcmd.h (setprintrawlist, showprintrawlist): Declare.
3444 * stack.c (print_raw_frame_arguments): New static global.
3445 (print_frame_arg): Set opts.raw from print_raw_frame_arguments.
3446 (_initialize_stack): New command "set/show print raw frame-arguments".
3447 * valprint.c (setprintrawlist, showprintrawlist): New globals.
3448 (set_print_raw, show_print_raw): New functions.
3449 (_initialize_valprint): New prefix command "set/show print raw".
3450 * valprint.h (value_print_options): Improve comments.
3451
3452 * cli/cli-cmds.c (init_cmd_lists): Delete unnecessary initialization
3453 of all *list variables.
3454
3455 * gdbcmd.h (togglelist): Delete.
3456 * cli/cli-cmds.c (togglelist): Delete.
3457 (init_cmd_lists): Update.
3458 * cli/cli-cmds.h (togglelist): Delete.
3459
3460 2013-07-17 Tom Tromey <tromey@redhat.com>
3461
3462 * dwarf2read.c (dwarf2_per_objfile_free): Clear
3463 dwarf2_per_objfile.
3464
3465 2013-07-16 Doug Evans <dje@google.com>
3466
3467 * nto-tdep.c (nto_relocate_section_addresses): Update,
3468 target_section.bfd deleted.
3469 * ppc64-tdep.c (ppc64_convert_from_func_ptr_addr): Ditto.
3470 * s390-tdep.c (s390_load): Ditto.
3471 * solib-aix.c (solib_aix_relocate_section_addresses): Ditto.
3472
3473 2013-07-16 Andrew Burgess <aburgess@broadcom.com>
3474
3475 * common/format.c (parse_format_string): Add checks for NULL
3476 character before calling strchr.
3477
3478 2013-07-16 Doug Evans <dje@google.com>
3479
3480 * solist.h (target_so_ops.find_and_open_solib): Clarify usage of
3481 temp_pathname argument.
3482 * nto-tdep.c (nto_find_and_open_solib): Fix setting of temp_pathname
3483 when opening the file fails.
3484
3485 * target.h (struct target_section): Delete member bfd.
3486 All users updated to use the_bfd_section->owner instead.
3487 * exec.c (add_to_section_table): Assert bfd is expected value.
3488 Remove initialization of target_section.bfd.
3489 (remove_target_sections): Update.
3490 (section_table_available_memory): Update.
3491 (section_table_xfer_memory_partial): Update.
3492 (print_section_info): Update.
3493 (exec_set_section_address): Update.
3494 * record-full.c (record_full_core_xfer_partial): Update.
3495 * solib-svr4.c (svr4_relocate_section_addresses): Update.
3496 * solib-target.c (solib_target_relocate_section_addresses): Update.
3497 * symfile.c (build_section_addr_info_from_section_table): Update.
3498 * target.c (memory_xfer_live_readonly_partial): Update.
3499 (memory_xfer_partial_1): Update.
3500
3501 2013-07-15 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
3502
3503 * ppc-linux-nat.c: Since the new PowerPC specific ptrace interface is
3504 now available for embedded (BookE) and server (BookS) processors,
3505 correct mentions of 'booke' and adjust comments accordingly in order to
3506 avoid confusion. Rename struct 'booke_debug_info' to 'hwdebug_info'.
3507 (have_ptrace_booke_interface): Rename function and variable
3508 'have_ptrace_booke_interface' to 'have_ptrace_hwdebug_interface'.
3509 Rename struct 'booke_debug_info' to 'hwdebug_info'. Update all uses.
3510 (booke_cmp_hw_point): Rename function 'booke_cmp_hw_point' to
3511 'hwdebug_point_cmp'. Update all uses.
3512 (booke_find_thread_points_by_tid): Rename function
3513 'booke_find_thread_points_by_tid' to
3514 'hwdebug_find_thread_points_by_tid'. Update all uses.
3515 (booke_insert_point): Rename function 'booke_insert_point' to
3516 'hwdebug_insert_point'. Update all uses.
3517 (booke_remove_point): Rename function 'booke_remove_point' to
3518 'hwdebug_remove_point'. Update all uses.
3519
3520 2013-07-15 Maciej W. Rozycki <macro@codesourcery.com>
3521
3522 * mips-tdep.c (mips_gdbarch_init): Replace hardcoded magic
3523 numbers with enum values.
3524
3525 2013-07-15 Ali Anwar <ali_anwar@codesourcery.com>
3526
3527 PR threads/13217
3528 * thread.c (thread_apply_all_command): Check for valid threads
3529 and thread count.
3530 (thread_array_cleanup): New struct.
3531 (set_thread_refcount): New function.
3532
3533 2013-07-11 Andrew Burgess <aburgess@broadcom.com>
3534
3535 * infcmd.c (default_print_one_register_info): Reuse function
3536 print_hex_chars.
3537
3538 2013-07-10 Tom Tromey <tromey@redhat.com>
3539
3540 * Makefile.in (GDB_WARN_CFLAGS_NO_DEFS, ADA_EXP_C): New macros.
3541 (ada-exp.o): New target.
3542
3543 2013-07-10 Sergio Durigan Junior <sergiodj@redhat.com>
3544
3545 * mt-tdep.c (mt_registers_info): Call
3546 get_no_prettyformat_print_options instead of
3547 get_raw_print_options (regression by last patch from Doug
3548 Evans).
3549
3550 2013-07-09 Pedro Alves <palves@redhat.com>
3551
3552 Checked in by Joel Brobecker <brobecker@adacore.com>.
3553 * ada-lang.c (coerce_unspec_val_to_type): Use
3554 value_optimized_out_const.
3555 * value.c (value_optimized_out_const): New function.
3556 * value.h (value_optimized_out_const): New declaration.
3557
3558 2013-07-09 Doug Evans <dje@google.com>
3559
3560 * defs.h (enum val_prettyformat): Renamed from val_prettyprint.
3561 Enum values rename as well. All uses updated.
3562 * valprint.h (value_print_options): Rename member pretty to
3563 pretty format. Rename member prettyprint_arrays to
3564 prettyformat_arrays. Rename member prettyprint_structs to
3565 prettyformat_structs. All uses updated.
3566 (get_no_prettyformat_print_options): Renamed from
3567 get_raw_print_options.
3568 * valprint.c (get_no_prettyformat_print_options): Renamed from
3569 get_raw_print_options. All callers updated.
3570 (show_prettyformat_structs): Renamed from show_prettyprint_structs.
3571 All callers updated.
3572 (show_prettyformat_arrays): Renamed from show_prettyprint_arrays.
3573 All callers updated.
3574 (_initialize_valprint): Improve help text for "set print pretty" and
3575 "set print arrays".
3576
3577 2013-07-09 Andrew Burgess <aburgess@broadcom.com>
3578
3579 * value.c (value_bits_valid): Revert previous change, and change
3580 by Pedro on 2013-07-04, due to regressions in
3581 gdb.dwarf2/implptr.exp and gdb.dwarf2/pieces.exp.
3582
3583 2013-07-08 Andrew Burgess <aburgess@broadcom.com>
3584 Pedro Alves <palves@redhat.com>
3585
3586 * value.c (value_bits_valid): If the value is not lval_computed
3587 or has no check validity handler then the answer is the
3588 optimized_out flag, otherwise defer to the handler.
3589
3590 2013-07-06 Eli Zaretskii <eliz@gnu.org>
3591
3592 * top.c (print_gdb_configuration): Explain in output of
3593 --configuration what does "relocatable" mean.
3594
3595 * main.c (print_gdb_help): Regroup options in the --help text.
3596 See http://sourceware.org/ml/gdb-patches/2013-04/msg00362.html for
3597 the relevant discussions.
3598
3599 2013-07-06 Yao Qi <yao@codesourcery.com>
3600
3601 * breakpoint.h (struct breakpoint_ops) <create_breakpoints_sal>:
3602 Remove parameter 'lsal'.
3603 * breakpoint.c (create_breakpoint): Move local variable 'lsal'
3604 to inner block. Caller update.
3605 (base_breakpoint_create_breakpoints_sal): Update.
3606 (bkpt_create_breakpoints_sal): Likewise.
3607 (tracepoint_create_breakpoints_sal): Likewise.
3608 (strace_marker_create_breakpoints_sal): Get 'lsal' from the
3609 element 0 of vector 'canonical->sals'.
3610
3611 2013-07-05 Luis Machado <lgustavo@codesourcery.com>
3612
3613 * rs6000-tdep.c (rs6000_stab_reg_to_regnum): Return the real
3614 register number instead of the pseudo register one.
3615 (rs6000_dwarf2_reg_to_regnum): Likewise.
3616
3617 2013-07-04 Pedro Alves <palves@redhat.com>
3618
3619 * findvar.c (value_of_register): Use allocate_optimized_out_value
3620 if the register has been optimized out, instead of
3621 set_value_optimized_out.
3622 * frame-unwind.c (frame_unwind_got_optimized): Use
3623 allocate_optimized_out_value.
3624
3625 2013-07-04 Pedro Alves <palves@redhat.com>
3626
3627 * value.c (value_bits_valid): If the value is not lval_computed,
3628 or doesn't have a check_validity hook, assume the value is entirely
3629 valid.
3630
3631 2013-07-04 Andrew Burgess <aburgess@broadcom.com>
3632
3633 * stack.c (read_frame_arg): No longer fetch lazy values.
3634 * value.c (value_optimized_out): If the value is not already
3635 marked optimized out, and is lazy then fetch it.
3636 (value_primitive_field): Move optimized out check to later in the
3637 function, after we have loaded any lazy values.
3638 (value_fetch_lazy): Use optimized out flag directly rather than
3639 calling optimized_out method.
3640
3641 2013-07-04 Andrew Burgess <aburgess@broadcom.com>
3642
3643 * valops.c: Don't include "user-regs.h".
3644 (value_fetch_lazy): Moved to value.c.
3645 * value.c: Include "user-regs.h".
3646 (value_fetch_lazy): Moved from valops.c.
3647
3648 2013-07-04 Yao Qi <yao@codesourcery.com>
3649
3650 Revert:
3651 2013-06-27 Yao Qi <yao@codesourcery.com>
3652
3653 * common/create-version.sh: Update comments. Handle the case
3654 that TARGET_ALIAS is empty.
3655
3656 2013-07-03 Pedro Alves <palves@redhat.com>
3657
3658 * Makefile.in (config.status): Depend on development.sh.
3659 (aclocal_m4_deps): Add libmcheck.m4.
3660 * acinclude.m4: Include libmcheck.m4.
3661 * configure.ac: Source development.sh instead of setting
3662 'development' here. --enable-libmcheck/--disable-libmcheck code
3663 factored out to GDB_AC_LIBMCHECK. Run it.
3664 * development.sh: New file.
3665 * libmcheck.m4: New file.
3666 * configure: Regenerate.
3667
3668 2013-07-02 Tom Tromey <tromey@redhat.com>
3669
3670 * contrib/ari/update-web-ari.sh: Update for version.in change.
3671
3672 2013-07-02 Tom Tromey <tromey@redhat.com>
3673
3674 * common/ptid.h: Comment fixes.
3675
3676 2013-07-01 Tom Tromey <tromey@redhat.com>
3677
3678 * dwarf2read.c (dwarf2_get_dwz_file): Return NULL if
3679 .gnu_debugaltlink not found. Use bfd_get_alt_debug_link_info.
3680 (dwarf2_read_index, create_all_comp_units): Update.
3681
3682 2013-07-01 Tom Tromey <tromey@redhat.com>
3683
3684 * configure.ac (build_warnings): Add -Wold-style-definition.
3685 * configure: Rebuild.
3686 * machoread.c (_initialize_machoread): Use "(void)".
3687 * macrocmd.c (macro_inform_no_debuginfo): Fix formatting;
3688 use "(void)".
3689
3690 2013-07-01 Tom Tromey <tromey@redhat.com>
3691
3692 * configure.ac (build_warnings): Add -Wold-style-declaration.
3693 * configure: Rebuild.
3694 * dsrec.c (make_srec): Use "static const", not "const static".
3695 * h8300-tdep.c (h8300_breakpoint_from_pc): Use "static const",
3696 not "const static".
3697 * mi/mi-parse.c (mi_no_values, mi_simple_values, mi_all_values):
3698 Use "static const", not "const static".
3699 * mn10300-tdep.c (mn10300_breakpoint_from_pc): Use "static const",
3700 not "const static".
3701 * moxie-tdep.c (moxie_breakpoint_from_pc): Use "static const",
3702 not "const static".
3703 * rs6000-tdep.c (rs6000_breakpoint_from_pc): Use "static const",
3704 not "const static".
3705 * v850-tdep.c (v850_breakpoint_from_pc): Use "static const",
3706 not "const static".
3707 (v850_dbtrap_breakpoint_from_pc): Likewise.
3708 * xstormy16-tdep.c (xstormy16_breakpoint_from_pc): Use "static const",
3709 not "const static".
3710
3711 2013-07-01 Tom Tromey <tromey@redhat.com>
3712
3713 * configure.ac (build_warnings): Add -Wmissing-parameter-type.
3714 * configure: Rebuild.
3715
3716 2013-07-01 Pedro Alves <palves@redhat.com>
3717
3718 * defs.h: Include "pathmax.h".
3719 * utils.c: Don't include sys/param.h.
3720 (gdb_realpath): Remove code that checks for MAXPATHLEN.
3721 * solib-ia64-hpux.c (ia64_hpux_handle_load_event): Use PATH_MAX
3722 instead of MAXPATHLEN.
3723 * solib-sunos.c: Don't include sys/param.h.
3724 * xcoffread.c: Don't include sys/param.h.
3725 * bsd-kvm.c: Don't include sys/param.h.
3726 * darwin-nat.c: Don't include sys/param.h.
3727 (darwin_pid_to_exec_file): Use PATH_MAX instead of MAXPATHLEN.
3728 * darwin-nat-info.c: Don't include sys/param.h.
3729 * fbsd-nat.c (fbsd_pid_to_exec_file): Use PATH_MAX instead of
3730 MAXPATHLEN.
3731 * i386obsd-nat.c: Don't include sys/param.h.
3732 * inf-child.c: Don't include sys/param.h.
3733 (inf_child_fileio_readlink): Use PATH_MAX instead of MAXPATHLEN.
3734 * linux-fork.c: Don't include sys/param.h.
3735 (fork_save_infrun_state): Use PATH_MAX instead of MAXPATHLEN.
3736 * linux-nat.c: Don't include sys/param.h.
3737 (linux_child_pid_to_exec_file, linux_proc_pending_signals)
3738 (linux_proc_pending_signals): Use PATH_MAX instead of MAXPATHLEN.
3739 * m68klinux-nat.c: Don't include sys/param.h.
3740 * nbsd-nat.c: Don't include sys/param.h.
3741 (nbsd_pid_to_exec_file): Use PATH_MAX instead of MAXPATHLEN.
3742 * ppc-linux-nat.c: Don't include sys/param.h.
3743 * rs6000-nat.c: Don't include sys/param.h.
3744 * spu-linux-nat.c. Don't include sys/param.h.
3745 * windows-nat.c: Don't include sys/param.h.
3746 * xtensa-linux-nat.c: Don't include sys/param.h.
3747 * config/i386/nm-fbsd.h: Don't include sys/param.h.
3748
3749 2013-07-01 Pedro Alves <palves@redhat.com>
3750
3751 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add pathmax.
3752 * gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/pathmax.m4.
3753 * gnulib/aclocal.m4: Regenerate.
3754 * gnulib/config.in: Regenerate.
3755 * gnulib/configure: Regenerate.
3756 * gnulib/import/pathmax.h: New file.
3757 * gnulib/import/Makefile.am: Regenerate.
3758 * gnulib/import/Makefile.in: Regenerate.
3759 * gnulib/import/m4/gnulib-cache.m4: Regenerate.
3760 * gnulib/import/m4/gnulib-comp.m4: Regenerate.
3761 * gnulib/import/m4/pathmax.m4: New file.
3762
3763 2013-07-01 Pedro Alves <palves@redhat.com>
3764
3765 * configure.ac (GDBINIT): Define, depending on host.
3766 * go32-nat.c (init_go32_ops): Don't override gdbinit here.
3767 * top.c (PATH_MAX): Delete fallback definition.
3768 (GDBINIT_FILENAME): Delete.
3769 (gdbinit): Reimplement as const char array set to the GDBINIT
3770 string constant.
3771 * top.h (gdbinit): Make const.
3772 * configure, config.in: Regenerate.
3773
3774 2013-07-01 Pedro Alves <palves@redhat.com>
3775
3776 * cli/cli-cmds.c (source_script): Make 'file' parameter const.
3777 * cli/cli-cmds.h (source_script): Likewise.
3778 * exceptions.c (catch_command_errors_const): New function.
3779 * exceptions.h (catch_command_errors_const): Declare.
3780 * main.c (get_init_files): Make parameters const, and adjust.
3781 (captured_main): Make 'system_gdbinit', 'home_gdbinit' and
3782 'local_gdbinit' locals const. Adjust to use
3783 catch_command_errors_const.
3784 (print_gdb_help): Make 'system_gdbinit', 'home_gdbinit' and
3785 'local_gdbinit' locals const.
3786
3787 2013-07-01 Pedro Alves <palves@redhat.com>
3788
3789 * defs.h: Don't check HAVE_UNISTD_H before including <unistd.h>.
3790 (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO): Delete.
3791 * tracepoint.c: Don't check HAVE_UNISTD_H before including
3792 <unistd.h>.
3793
3794 2013-07-01 Pedro Alves <palves@redhat.com>
3795
3796 Import the "unistd" gnulib module.
3797 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add "unistd".
3798 * gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/off_t.m4,
3799 import/m4/ssize_t.m4, import/m4/sys_types_h.m4 and
3800 import/m4/unistd_h.m4.
3801 * gnulib/aclocal.m4: Renenerate.
3802 * gnulib/config.in: Renenerate.
3803 * gnulib/configure: Renenerate.
3804 * gnulib/import/Makefile.am: Renenerate.
3805 * gnulib/import/Makefile.in: Renenerate.
3806 * gnulib/import/m4/gnulib-cache.m4: Renenerate.
3807 * gnulib/import/m4/gnulib-comp.m4: Renenerate.
3808 * gnulib/import/m4/off_t.m4: New file.
3809 * gnulib/import/m4/ssize_t.m4: New file.
3810 * gnulib/import/m4/sys_types_h.m4: New file.
3811 * gnulib/import/m4/unistd_h.m4: New file.
3812 * gnulib/import/sys_types.in.h: New file.
3813 * gnulib/import/unistd.c: New file.
3814 * gnulib/import/unistd.in.h: New file.
3815
3816 2013-07-01 Pedro Alves <palves@redhat.com>
3817
3818 * utils.c <pathconf/_PC_PATH_MAX use>: Check if _PC_PATH_MAX is
3819 defined instead of checking HAVE_UNISTD_H.
3820
3821 2013-07-01 Pedro Alves <palves@redhat.com>
3822
3823 Reimport gnulib from scratch.
3824 * gnulib/Makefile.in (aclocal_m4_deps): Remove reference to
3825 import/m4/onceonly.m4.
3826 * gnulib/aclocal.m4: Renegerate.
3827 * gnulib/config.in: Renegerate.
3828 * gnulib/configure: Renegerate.
3829 * gnulib/import/Makefile.in: Renegerate.
3830 * gnulib/import/extra/update-copyright: Renegerate.
3831 * gnulib/import/m4/onceonly.m4: Delete.
3832
3833 2013-07-01 Pedro Alves <palves@redhat.com>
3834
3835 * tui/tui-regs.c (pagination_enabled): Delete declaration.
3836
3837 2013-06-30 Jan Kratochvil <jan.kratochvil@redhat.com>
3838
3839 Code cleanup.
3840 * remote.c (async_remote_interrupt_twice): Make it static.
3841 * remote.h (async_remote_interrupt_twice): Remove the declaration.
3842
3843 2013-06-29 Sergio Durigan Junior <sergiodj@redhat.com>
3844
3845 * ia64-linux-tdep.c: Include <ctype.h>.
3846 (ia64_linux_stap_is_single_operand): New function.
3847 (ia64_linux_init_abi): Initialize SystemTap related attributes.
3848
3849 2013-06-28 Tom Tromey <tromey@redhat.com>
3850
3851 * Makefile.in (version.c): Use version.in, not
3852 common/version.in.
3853 * common/create-version.sh: Likewise.
3854 * common/version.in: Move...
3855 * version.in: ...here.
3856
3857 2013-06-28 Pedro Alves <palves@redhat.com>
3858
3859 * infrun.c (set_observer_mode): Don't declare pagination_enabled
3860 here.
3861 * utils.h (pagination_enabled): Declare.
3862
3863 2013-06-28 Pedro Alves <palves@redhat.com>
3864
3865 * infrun.c (non_stop, non_stop_1, set_non_stop, show_non_stop):
3866 Move higher up in file.
3867
3868 2013-06-28 Tom Tromey <tromey@redhat.com>
3869
3870 * tracepoint.c (deprecated_readline_begin_hook)
3871 (deprecated_readline_hook, deprecated_readline_end_hook): Don't
3872 declare.
3873
3874 2013-06-28 Pedro Alves <palves@redhat.com>
3875
3876 PR tui/14880
3877 * tui/tui-regs.c (tui_get_register): Fetch value contents before
3878 checking if they're available.
3879 * value.c (value_available_contents_eq): Change comment.
3880 * value.h (value_available_contents_eq): Expand comment.
3881
3882 2013-06-27 Tom Tromey <tromey@redhat.com>
3883
3884 * target.c (find_run_target): Remove.
3885 * target.h (find_run_target): Remove.
3886
3887 2013-06-27 Tom Tromey <tromey@redhat.com>
3888
3889 * corelow.c (core_gdbarch): Now static.
3890
3891 2013-06-27 Tom Tromey <tromey@redhat.com>
3892
3893 * target.c (target_struct_index): Remove.
3894
3895 2013-06-27 Pedro Alves <palves@redhat.com>
3896
3897 * infrun.c: Remove comment describing the 'stepping over runtime
3898 loader dynamic symbol resolution code' mechanism; moved to
3899 gdbint.texinfo.
3900
3901 2013-06-27 Pedro Alves <palves@redhat.com>
3902
3903 * exceptions.c (catch_command_errors): Remove spurious space.
3904 * exceptions.h (catch_command_errors): Second parameter is "arg",
3905 not "command".
3906
3907 2013-06-27 Yao Qi <yao@codesourcery.com>
3908
3909 * common/create-version.sh: Update comments. Handle the case
3910 that TARGET_ALIAS is empty.
3911
3912 2013-06-26 Pedro Alves <palves@redhat.com>
3913
3914 * infrun.c (SOLIB_IN_DYNAMIC_LINKER): Delete macro and describing
3915 comment.
3916
3917 2013-06-26 Pedro Alves <palves@redhat.com>
3918
3919 * infrun.c: Update comments on stepping over runtime loader
3920 dynamic symbol resolution code.
3921
3922 2013-06-26 Sergio Durigan Junior <sergiodj@redhat.com>
3923
3924 * ax-gdb.h (union exp_element): Forward declare.
3925 * parser-defs.h: Include expression.h.
3926
3927 2013-06-26 Maciej W. Rozycki <macro@codesourcery.com>
3928
3929 * mips-tdep.c (fetch_mips_16): Use unmake_compact_addr.
3930
3931 2013-06-26 Dmitry Kozlov <ddk@codesourcery.com>
3932
3933 * tracepoint.c (trace_save): Extend tsave to save starttime, stoptime.
3934
3935 2013-06-26 Dmitry Kozlov <ddk@codesourcery.com>
3936
3937 Fix trace-status to output proper start-time and stop-time.
3938 * tracepoint.c (trace_status_command): Fix type of printf arg to
3939 prevent improper type conversion.
3940 (trace_status_mi): Likewise.
3941
3942 2013-06-26 Maciej W. Rozycki <macro@codesourcery.com>
3943
3944 * mips-tdep.c (mips_next_pc): Fix a typo.
3945
3946 2013-06-26 Maciej W. Rozycki <macro@codesourcery.com>
3947
3948 * mips-tdep.c (micromips_scan_prologue): Fix a typo.
3949
3950 2013-06-26 Pedro Alves <pedro@codesourcery.com>
3951 Yao Qi <yao@codesourcery.com>
3952
3953 * mi/mi-cmds.c (mi_cmds): Register -trace-frame-collected.
3954 * mi/mi-cmds.h (mi_cmd_trace_frame_collected): Declare.
3955 * mi/mi-main.c (print_variable_or_computed): New function.
3956 (mi_cmd_trace_frame_collected): New function.
3957 * tracepoint.c (find_trace_state_variable_by_number): New.
3958 (struct traceframe_info): Move to tracepoint.h
3959 (struct collection_list): Likewise.
3960 (do_collect_symbol): Include locals and arguments in the
3961 collected variables list.
3962 (clear_collection_list): Clear wholly collected variables list
3963 and computed variables list.
3964 (append_exp): New function.
3965 (encode_actions_1): Include variables in the wholly
3966 collected variables list. Include memory ranges and
3967 full-fledged expressions in the computed expressions list.
3968 (encode_actions): Move some code to ...
3969 Return the cleanup chain.
3970 (encode_actions_rsp): ... here. New function.
3971 (get_traceframe_location, get_traceframe_info): Remove static.
3972 * tracepoint.h (struct memrange): Moved from tracepoint.c.
3973 (struct collection_list): Moved from tracepoint.c. Add two
3974 new fields 'wholly_collected' and 'computed'.
3975 (find_trace_state_variable_by_number): Declare.
3976 (encode_actions): Adjust declaration.
3977 (encode_actions_rsp): Declare.
3978 (get_traceframe_info, get_traceframe_location): Declare.
3979
3980 * NEWS: Mention new MI command -trace-frame-collected.
3981
3982 2013-06-26 Pedro Alves <pedro@codesourcery.com>
3983 Yao Qi <yao@codesourcery.com>
3984
3985 * ctf.c (ctf_traceframe_info): Push trace state variables
3986 present in the trace data into the traceframe info object.
3987 * breakpoint.c (DEF_VEC_I): Remove.
3988 * common/filestuff.c (DEF_VEC_I): Likewise.
3989 * dwarf2loc.c (DEF_VEC_I): Likewise.
3990 * mi/mi-main.c (DEF_VEC_I): Likewise.
3991 * common/gdb_vecs.h (DEF_VEC_I): Define vector for int.
3992 * features/traceframe-info.dtd: Add tvar element and its
3993 attributes.
3994 * tracepoint.c (free_traceframe_info): Free vector 'tvars'.
3995 (build_traceframe_info): Push trace state variables present in
3996 the trace data into the traceframe info object.
3997 (traceframe_info_start_tvar): New function.
3998 (tvar_attributes): New.
3999 (traceframe_info_children): Add "tvar" element.
4000 * tracepoint.h (struct traceframe_info) <tvars>: New field.
4001
4002 * NEWS: Mention the change in GDB and GDBserver.
4003
4004 2013-06-26 Pedro Alves <pedro@codesourcery.com>
4005 Yao Qi <yao@codesourcery.com>
4006
4007 * tracepoint.c (trace_dump_command): Move code to ...
4008 (get_traceframe_location): ... here. New.
4009
4010 2013-06-26 Pedro Alves <pedro@codesourcery.com>
4011 Yao Qi <yao@codesourcery.com>
4012
4013 * tracepoint.c (trace_dump_command): GDB emits an error
4014 instead of a warning when a traceframe is not selected.
4015
4016 2013-06-26 Pedro Alves <pedro@codesourcery.com>
4017 Yao Qi <yao@codesourcery.com>
4018
4019 * tracepoint.c (tracepoint_list, stepping_list): Remove.
4020 (clear_collection_list): Free fields 'aexpre_list' and 'list'
4021 in collection_list.
4022 (do_clear_collection_list, init_collection_list): New.
4023 (encode_actions): Add local variables 'tracepoint_list' and
4024 'stepping_list'. Call init_collection_list and make cleanup
4025 which calls do_clear_collection_list. Don't call
4026 clear_collection_list.
4027 (_initialize_tracepoint): Delete references to
4028 'tracepoint_list' and 'stepping_list'.
4029
4030 2013-06-25 Tom Tromey <tromey@redhat.com>
4031
4032 * common/create-version.sh (date): Use "$", not "$$" in sed
4033 expression.
4034
4035 2013-06-25 Kevin Buettner <kevinb@redhat.com>
4036
4037 * NEWS (New targets): Add entry for TI MSP430.
4038
4039 2013-06-25 Yao Qi <yao@codesourcery.com>
4040
4041 * remote.c (remote_start_remote): Move code to upload tsv
4042 earlier.
4043
4044 2013-06-25 Yao Qi <yao@codesourcery.com>
4045 Hui Zhu <hui@codesourcery.com>
4046 Pedro Alves <palves@redhat.com>
4047
4048 PR breakpoints/15075
4049 PR breakpoints/15434
4050 * breakpoint.c (bpstat_stop_status): Call
4051 b->ops->after_condition_true.
4052 (update_dprintf_command_list): Don't append "continue" command
4053 to the command list of dprintf breakpoint.
4054 (base_breakpoint_after_condition_true): New function.
4055 (base_breakpoint_ops): Add base_breakpoint_after_condition_true.
4056 (dprintf_after_condition_true): New function.
4057 (initialize_breakpoint_ops): Set dprintf_after_condition_true.
4058 * breakpoint.h (breakpoint_ops): Add after_condition_true.
4059
4060 2013-06-24 Kevin Buettner <kevinb@redhat.com>
4061
4062 * Makefile.in (ALL_TARGET_OBS): Add msp430-tdep.o.
4063 (ALLDEPFILES): Add msp430-tdep.c.
4064 * configure.tgt (msp430*-*-elf): New target.
4065 * msp430-tdep.c: New file.
4066
4067 2013-06-24 Maciej W. Rozycki <macro@codesourcery.com>
4068
4069 * mips-tdep.c (mips_elf_make_msymbol_special): Handle MIPS16 and
4070 microMIPS synthetic symbols.
4071
4072 2013-06-24 Maciej W. Rozycki <macro@codesourcery.com>
4073
4074 * objfiles.h (pc_in_section): New prototype.
4075 (in_plt_section): Remove name argument, replace prototype with
4076 static inline function.
4077 * mips-tdep.h: Include "objfiles.h".
4078 (in_mips_stubs_section): New function.
4079 * hppa-tdep.h (gdbarch_tdep): Remove name argument of
4080 in_solib_call_trampoline member.
4081 (hppa_in_solib_call_trampoline): Remove name argument.
4082 * objfiles.c (pc_in_section): New function.
4083 (in_plt_section): Remove function.
4084 * mips-linux-tdep.c: Include "objfiles.h".
4085 (mips_linux_in_dynsym_stub): Call in_mips_stubs_section. Remove
4086 name argument. Return 1 rather than the low 16-bit halfword of
4087 any instruction examined.
4088 (mips_linux_in_dynsym_resolve_code): Update
4089 mips_linux_in_dynsym_stub call accordingly.
4090 * mips-tdep.c (mips_stub_frame_sniffer): Use in_mips_stubs_section
4091 rather than an equivalent hand-coded sequence.
4092 * hppa-hpux-tdep.c (in_opd_section): Remove function.
4093 (hppa32_hpux_in_solib_call_trampoline): Remove name argument.
4094 (hppa64_hpux_in_solib_call_trampoline): Likewise.
4095 (hppa64_hpux_find_global_pointer): Use pc_in_section rather than
4096 in_opd_section.
4097 * hppa-tdep.c (hppa_stub_unwind_sniffer): Remove name argument
4098 on call to tdep->in_solib_call_trampoline.
4099 (hppa_in_solib_call_trampoline): Remove name argument, update
4100 according to in_plt_section change.
4101 (hppa_skip_trampoline_code): Update according to in_plt_section
4102 change.
4103 * aarch64-tdep.c (aarch64_stub_unwind_sniffer): Likewise.
4104 * arm-symbian-tdep.c (arm_symbian_skip_trampoline_code):
4105 Likewise.
4106 * arm-tdep.c (arm_stub_unwind_sniffer): Likewise.
4107 * hppa-linux-tdep.c (hppa_linux_find_global_pointer): Likewise.
4108 * hppabsd-tdep.c (hppabsd_find_global_pointer): Likewise.
4109 * nios2-tdep.c (nios2_stub_frame_sniffer): Likewise.
4110 * nto-tdep.c (nto_relocate_section_addresses): Likewise.
4111 * s390-tdep.c (s390_stub_frame_sniffer): Likewise.
4112 * sh-tdep.c (sh_stub_unwind_sniffer): Likewise.
4113 * solib-dsbt.c (dsbt_in_dynsym_resolve_code): Likewise.
4114 * solib-frv.c (frv_in_dynsym_resolve_code): Likewise.
4115 * solib-svr4.c (svr4_in_dynsym_resolve_code): Likewise.
4116 * solib-target.c (solib_target_in_dynsym_resolve_code): Likewise.
4117 * sparc-tdep.c (sparc_analyze_prologue): Likewise.
4118 * tic6x-tdep.c (tic6x_stub_unwind_sniffer): Likewise.
4119
4120 2013-06-24 Joel Brobecker <brobecker@adacore.com>
4121
4122 * common/create-version.sh: Fix expansion of $host_alias
4123 and $target_alias in generation of HOST_NAME and TARGET_NAME
4124 (resp.).
4125
4126 2013-06-24 Tom Tromey <tromey@redhat.com>
4127
4128 * common/create-version.sh: New file.
4129 * Makefile.in (version.c): Use bfd/version.h, common/version.in,
4130 create-version.sh.
4131 (HFILES_NO_SRCDIR): Use common/version.h.
4132 * version.in: Move to ...
4133 * common/version.in: ... here. Replace date with "DATE".
4134 * version.h: Move to ...
4135 * common/version.h: ... here.
4136
4137 2013-06-21 Joel Brobecker <brobecker@adacore.com>
4138
4139 * gdb/gnulib/Makefile.in: Update date in copyright header.
4140 * gdb/gnulib/configure.ac: Ditto.
4141 * gdb/gnulib/update-gnulib.sh: Ditto.
4142
4143 2013-06-21 Joel Brobecker <brobecker@adacore.com>
4144
4145 * copyright.py (EXCLUDE_LIST): Replace "gdb/gnulib" by
4146 "gdb/gnulib/import".
4147
4148 2013-06-21 Will Newton <will.newton@linaro.org>
4149
4150 * doublest.c (ldfrexp): Remove function.
4151 (convert_doublest_to_floatformat): Call frexpl instead of
4152 ldfrexp.
4153
4154 2013-06-21 Will Newton <will.newton@linaro.org>
4155
4156 * gnulib/update-gnulib.sh(IMPORTED_GNULIB_MODULES): Add frexpl.
4157 * gnulib/aclocal.m4: Regenerate.
4158 * gnulib/config.in: Regenerate.
4159 * gnulib/configure: Regenerate.
4160 * gnulib/import/Makefile.am: Update.
4161 * gnulib/import/Makefile.in: Update.
4162 * gnulib/import/m4/gnulib-cache.m4: Update.
4163 * gnulib/import/m4/gnulib-comp.m4: Update.
4164 * gnulib/import/float+.h: Import.
4165 * gnulib/import/float.c: Import.
4166 * gnulib/import/float.in.h: Import.
4167 * gnulib/import/fpucw.h: Import.
4168 * gnulib/import/frexp.c: Import.
4169 * gnulib/import/frexpl.c: Import.
4170 * gnulib/import/isnan.c: Import.
4171 * gnulib/import/isnand-nolibm.h: Import.
4172 * gnulib/import/isnand.c: Import.
4173 * gnulib/import/isnanl-nolibm.h: Import.
4174 * gnulib/import/isnanl.c: Import.
4175 * gnulib/import/itold.c: Import.
4176 * gnulib/import/m4/exponentd.m4: Import.
4177 * gnulib/import/m4/exponentl.m4: Import.
4178 * gnulib/import/m4/float_h.m4: Import.
4179 * gnulib/import/m4/fpieee.m4: Import.
4180 * gnulib/import/m4/frexp.m4: Import.
4181 * gnulib/import/m4/frexpl.m4: Import.
4182 * gnulib/import/m4/isnand.m4: Import.
4183 * gnulib/import/m4/isnanl.m4: Import.
4184 * gnulib/import/m4/math_h.m4: Import.
4185 * gnulib/import/math.c: Import.
4186 * gnulib/import/math.in.h: Import.
4187
4188 2013-06-21 Jan Kratochvil <jan.kratochvil@redhat.com>
4189
4190 * common/linux-btrace.c (cpu_supports_btrace): Remove variable vendor,
4191 replace strcmp with signature_INTEL_ebx, signature_INTEL_ecx and
4192 signature_INTEL_edx comparisons.
4193
4194 2013-06-20 Doug Evans <dje@google.com>
4195
4196 symtab/15652
4197 * dwarf2read.c (try_open_dwop_file): New arg search_cwd.
4198 All callers updated.
4199 (open_dwp_file): If we can't find the dwp file, search the basename
4200 in debug-file-directory.
4201
4202 * dwarf2read.c (struct dwp_file): Fix comment.
4203 (open_and_init_dwp_file): Set dwp_file->name to bfd's file name.
4204
4205 * source.c (openp): Document OPF_TRY_CWD_FIRST+OPF_SEARCH_IN_PATH
4206 better.
4207
4208 2013-06-20 Yao Qi <yao@codesourcery.com>
4209
4210 * breakpoint.c (create_breakpoint): Fix code indentation.
4211
4212 2013-06-20 Yao Qi <yao@codesourcery.com>
4213
4214 * breakpoint.c (create_breakpoints_sal_default): Remove
4215 parameter 'lsal'. Update declaration.
4216 (bkpt_create_breakpoints_sal): Caller update.
4217 (tracepoint_create_breakpoints_sal): Likewise.
4218
4219 2013-06-20 Pedro Alves <pedro@codesourcery.com>
4220 Yao Qi <yao@codesourcery.com>
4221
4222 * NEWS: Mention the new option '--skip-unavailable' of command
4223 -data-list-register-values.
4224 * mi/mi-main.c (mi_cmd_data_list_register_values): Accept the
4225 --skip-unavailable option. Adjust to use output_register.
4226 (output_register): Add new 'skip_unavailable' parameter.
4227 Handle it.
4228
4229 2013-06-19 Mike Frysinger <vapier@gentoo.org>
4230
4231 * Makefile.in (HFILES_NO_SRCDIR): Add common/i386-cpuid.h and
4232 common/i386-gcc-cpuid.h.
4233 * common/i386-cpuid.h: New wrapper header around i386-gcc-cpuid.h.
4234 * common/i386-gcc-cpuid.h: Rename from testsuite/gdb.arch/i386-cpuid.h.
4235 Copy the latest version from upstream gcc.
4236 * common/linux-btrace.c: Include i386-cpuid.h.
4237 (intel_supports_btrace): Delete x86 ifdefs and replace inline asm with
4238 call to i386_cpuid.
4239 (cpu_supports_btrace): Likewise.
4240 * go32-nat.c: Include i386-cpuid.h.
4241 (go32_sysinfo): Add (disabled) calls to i386_cpuid with comments.
4242
4243 2013-06-19 Doug Evans <dje@google.com>
4244
4245 * symfile.c (symfile_bfd_open): Delete unnecessary declaration.
4246 (get_section_index): Ditto.
4247
4248 2013-06-19 Tom Tromey <tromey@redhat.com>
4249
4250 * breakpoint.c (_initialize_breakpoint): Remove trailing \n from
4251 "dprintf" help.
4252
4253 2013-06-18 Doug Evans <dje@google.com>
4254
4255 * dwarf2read.c (dw2_symtab_iter_next): Check value of cu_index
4256 before using it.
4257 (dw2_expand_symtabs_matching): Fix symbol kind validity check.
4258 Move test of cu_index closer to use. Print complaint if cu_index
4259 is bad.
4260
4261 2013-06-18 Joel Brobecker <brobecker@adacore.com>
4262
4263 * machoread.c (oso_vector): Delete this global.
4264 (macho_register_oso): Add new parameter "oso_vector_ptr".
4265 Use it instead of the "oso_vector" global.
4266 (macho_symtab_read, macho_symfile_read_all_oso): Likewise.
4267 (macho_symfile_read): Use a local oso_vector, to be free'ed
4268 at the end of this function, in place of the old "oso_vector"
4269 global. Update various function calls accordingly. Use one
4270 single cleanup chain for the entire function.
4271
4272 2013-06-18 Joel Brobecker <brobecker@adacore.com>
4273
4274 * dwarf2read.c (dwarf2_per_objfile_free): Replace uses of
4275 DWARF2_PER_OBJFILE by uses of DATA instead.
4276
4277 2013-06-18 Tom Tromey <tromey@redhat.com>
4278
4279 * break-catch-sig.c (signal_catchpoint_explains_signal): Add 'sig'
4280 argument.
4281 * breakpoint.c (bpstat_explains_signal): Add 'sig' argument.
4282 Special case signals other than GDB_SIGNAL_TRAP.
4283 (explains_signal_watchpoint): New function.
4284 (base_breakpoint_explains_signal): Add 'sig' argument.
4285 (initialize_breakpoint_ops): Set 'explains_signal' method for
4286 watchpoints.
4287 * breakpoint.h (struct breakpoint_ops) <explains_signal>: Add
4288 signal argument.
4289 (bpstat_explains_signal): Likewise.
4290 * infrun.c (handle_syscall_event, handle_inferior_event): Update.
4291
4292 2013-06-18 Tom Tromey <tromey@redhat.com>
4293
4294 * python/py-inferior.c (gdbpy_selected_inferior): Don't incref.
4295
4296 2013-06-18 Tom Tromey <tromey@redhat.com>
4297
4298 * python/python.c (finish_python_initialization): Decref
4299 'pythondir' on failure path as well.
4300
4301 2013-06-18 Tom Tromey <tromey@redhat.com>
4302
4303 PR symtab/15391:
4304 * dwarf2loc.c (read_pieced_value): Truncate this_size_bits
4305 after taking bits_to_skip into account. Sign extend byte_offset.
4306 * utils.h (gdb_sign_extend): Declare.
4307 * utils.c (gdb_sign_extend): New function.
4308
4309 2013-06-18 Jan Kratochvil <jan.kratochvil@redhat.com>
4310
4311 * dwarf2read.c (write_psymtabs_to_index): Ignore NULL PSYMTAB.
4312
4313 2013-06-17 Pierre Muller <muller@sourceware.org>
4314
4315 * corelow.c (core_open): Print GDB signal name instead of target
4316 signal number.
4317
4318 2013-06-17 Mike Frysinger <vapier@gentoo.org>
4319
4320 * .gitignore: Add /gcore.
4321
4322 2013-06-13 Doug Evans <dje@google.com>
4323
4324 * dwarf2read.c (try_open_dwop_file): Work around behaviour of
4325 OPF_TRY_CWD_FIRST to not search path if the file contains a '/'.
4326
4327 2013-06-12 Phil Muldoon <pmuldoon@redhat.com>
4328
4329 * stack.c (backtrace_command_1): Fix indentation.
4330
4331 2013-06-11 Joel Brobecker <brobecker@adacore.com>
4332
4333 * window-nat.c (thread_rec): Add missing empty line after
4334 local variable declaration.
4335
4336 2013-06-11 Joel Brobecker <brobecker@adacore.com>
4337
4338 * windows-nat.c (thread_rec): Revert format used to print
4339 error code returned by SuspendThread from %d back to %u.
4340
4341 2013-06-11 Joel Brobecker <brobecker@adacore.com>
4342
4343 * windows-nat.c (windows_continue): Add "0x" prefix for thread
4344 ID in debug trace.
4345 (get_windows_debug_event): Likewise, for all debug traces.
4346
4347 2013-06-11 Joel Brobecker <brobecker@adacore.com>
4348
4349 * window-nat.c (thread_rec): Add thread ID in SuspendThread
4350 warning message.
4351
4352 2013-06-08 Pedro Alves <pedro@codesourcery.com>
4353 Yao Qi <yao@codesourcery.com>
4354
4355 * mi/mi-main.c (get_register): Remove declaration.
4356 (output_register): Declare.
4357 (mi_cmd_data_list_register_values): Remove local variable
4358 'tuple_cleanup'. Move some code into output_register.
4359 (get_register): Renamed to ...
4360 (output_register): ... this. Output the register's
4361 "number" ui_out tuple here.
4362
4363 2013-06-07 Pedro Alves <palves@redhat.com>
4364
4365 * darwin-nat.c: Fix formating in copyright header.
4366 * darwin-nat.h: Likewise.
4367 * gnu-nat.c: Likewise.
4368 * machoread.c: Likewise.
4369
4370 2013-06-07 Pedro Alves <palves@redhat.com>
4371
4372 PR server/14823
4373 * regformats/regdat.sh: Output #include tdesc.h. Make globals
4374 static. Output a global target description pointer.
4375 (init_registers_${name}): Adjust to initialize a
4376 target description structure.
4377
4378 2013-06-07 Will Newton <will.newton@linaro.org>
4379
4380 * printcmd.c (build_address_symbolic): Call
4381 gdbarch_addr_bits_remove for text minimal symbols.
4382
4383 2013-06-07 Will Newton <will.newton@linaro.org>
4384
4385 * MAINTAINERS: Add myself to Write After Approval.
4386
4387 2013-06-07 Yao Qi <yao@codesourcery.com>
4388
4389 * tracepoint.c (start_tracing): Move code to ...
4390 (trace_reset_local_state): ... here. New.
4391 (disconnect_tracing): Don't call set_current_traceframe,
4392 set_tracepoint_num, and set_traceframe_context. Call
4393 trace_reset_local_state instead.
4394 (tfile_close): Call trace_reset_local_state.
4395 * ctf.c (ctf_close): Likewise.
4396 * remote.c (remote_close): Likewise.
4397 * tracepoint.h (trace_reset_local_state): Declare.
4398
4399 2013-06-06 Doug Evans <dje@google.com>
4400
4401 * dwarf2read.c: Whitespace fixes for DWP file format documentation,
4402 and fix header docs.
4403
4404 2013-06-05 Doug Evans <dje@google.com>
4405 Keith Seitz <keiths@redhat.com>
4406
4407 PR 15519
4408 * cp-namespace.c (find_symbol_in_baseclass): Call
4409 cp_lookup_symbol_in_namespace instead of cp_lookup_symbol_namespace.
4410 Check result of call to lookup_symbol_static.
4411 Call lookup_static_symbol_aux unconditionally.
4412 Call check_typedef on base types before accessing them.
4413 (cp_lookup_nested_symbol): Fix comment.
4414
4415 2013-06-05 Luis Machado <lgustavo@codesourcery.com>
4416
4417 * gnu-v3-abi.c (gnuv3_skip_trampoline): Handle thunk
4418 minimal symbols pointing to function descriptors.
4419
4420 2013-06-05 Tom Tromey <tromey@redhat.com>
4421
4422 * python/py-utils.c (gdb_pymodule_addobject): Cast away const.
4423
4424 2013-06-04 Sergio Durigan Junior <sergiodj@redhat.com>
4425 Pedro Alves <palves@redhat.com>
4426
4427 * remote.c (remote_wait_as): Restore signal handler before returning
4428 when GDB gets a notification.
4429
4430 2013-06-04 Gary Benson <gbenson@redhat.com>
4431
4432 PR 2328
4433 * breakpoint.h (handle_solib_event): Moved function declaration
4434 to solib.h.
4435 * breakpoint.c (handle_solib_event): Moved function to solib.c.
4436 (bpstat_stop_status): Pass new argument to handle_solib_event.
4437 * solib.h (update_solib_breakpoints): New function declaration.
4438 (handle_solib_event): Moved function declaration from
4439 breakpoint.h.
4440 * solib.c (update_solib_breakpoints): New function.
4441 (handle_solib_event): Moved function from breakpoint.c.
4442 Updated to call solib_ops->handle_event if not NULL.
4443 * solist.h (target_so_ops): New fields "update_breakpoints" and
4444 "handle_event".
4445 * infrun.c (set_stop_on_solib_events): New function.
4446 (_initialize_infrun): Use the above for "set
4447 stop-on-solib-events".
4448 (handle_inferior_event): Pass new argument to handle_solib_event.
4449 * solib-svr4.c (probe.h): New include.
4450 (svr4_free_library_list): New forward declaration.
4451 (probe_action): New enum.
4452 (probe_info): New struct.
4453 (probe_info): New static variable.
4454 (NUM_PROBES): New definition.
4455 (svr4_info): New fields "using_xfer", "probes_table" and
4456 "solib_list".
4457 (free_probes_table): New function.
4458 (free_solib_list): New function.
4459 (svr4_pspace_data_cleanup): Free probes table and solib list.
4460 (svr4_copy_library_list): New function.
4461 (svr4_current_sos_via_xfer_libraries): New parameter "annex".
4462 (svr4_read_so_list): New parameter "prev_lm".
4463 (svr4_current_sos_direct): Renamed from "svr4_current_sos".
4464 (svr4_current_sos): New function.
4465 (probe_and_action): New struct.
4466 (hash_probe_and_action): New function.
4467 (equal_probe_and_action): Likewise.
4468 (register_solib_event_probe): Likewise.
4469 (solib_event_probe_at): Likewise.
4470 (solib_event_probe_action): Likewise.
4471 (solist_update_full): Likewise.
4472 (solist_update_incremental): Likewise.
4473 (disable_probes_interface_cleanup): Likewise.
4474 (svr4_handle_solib_event): Likewise.
4475 (svr4_update_solib_event_breakpoint): Likewise.
4476 (svr4_update_solib_event_breakpoints): Likewise.
4477 (svr4_create_solib_event_breakpoints): Likewise.
4478 (enable_break): Free probes table before creating breakpoints.
4479 Use svr4_create_solib_event_breakpoints to create breakpoints.
4480 (svr4_solib_create_inferior_hook): Free the solib list.
4481 (_initialize_svr4_solib): Initialise
4482 svr4_so_ops.handle_solib_event and svr4_so_ops.update_breakpoints.
4483
4484 2013-06-04 Gary Benson <gbenson@redhat.com>
4485
4486 * target.h (target_ops): New field
4487 "to_augmented_libraries_svr4_read".
4488 (target_augmented_libraries_svr4_read): New macro.
4489 * target.c (update_current_target): Handle
4490 to_augmented_libraries_svr4_read.
4491 * remote.c (remote_state): New field
4492 "augmented_libraries_svr4_read".
4493 (remote_augmented_libraries_svr4_read_feature): New function.
4494 (remote_protocol_features): Add entry for
4495 "augmented-libraries-svr4-read".
4496 (remote_augmented_libraries_svr4_read): New function.
4497 (init_remote_ops): Initialize
4498 remote_ops.to_augmented_libraries_svr4_read.
4499
4500 2013-06-04 Gary Benson <gbenson@redhat.com>
4501
4502 * NEWS: Update.
4503
4504 2013-06-04 Gary Benson <gbenson@redhat.com>
4505
4506 * objfiles.h (inhibit_section_map_updates): New function
4507 declaration.
4508 (resume_section_map_updates): Likewise.
4509 (resume_section_map_updates_cleanup): Likewise.
4510 * objfiles.c (objfile_pspace_info): Removed field
4511 "objfiles_changed_p". New fields "new_objfiles_available",
4512 "section_map_dirty" and "inhibit_updates".
4513 (allocate_objfile): Set new_objfiles_available.
4514 (free_objfile): Set section_map_dirty.
4515 (objfile_relocate1): Likewise.
4516 (in_plt_section): Likewise.
4517 (find_pc_section): Update the conditions under which the
4518 section map will be updated.
4519 (inhibit_section_map_updates): New function.
4520 (resume_section_map_updates): Likewise.
4521 (resume_section_map_updates_cleanup): Likewise.
4522
4523 2013-06-04 Gary Benson <gbenson@redhat.com>
4524
4525 * probe.h (get_probe_argument_count): New declaration.
4526 (evaluate_probe_argument): Likewise.
4527 * probe.c (get_probe_argument_count): New function.
4528 (evaluate_probe_argument): Likewise.
4529 (probe_safe_evaluate_at_pc): Use the above new functions.
4530
4531 2013-06-04 Alan Modra <amodra@gmail.com>
4532
4533 * ppc-tdep.h (ppc_insns_match_pattern): Update prototype.
4534 * rs6000-tdep.c (read_insn): Add frame param, don't assume big-endian.
4535 (ppc_insns_match_pattern): Add frame param. Avoid multiple
4536 target mem reads on optional insns.
4537 * ppc-linux-tdep.c (ppc_skip_trampoline_code): Update
4538 ppc_insns_match_pattern calls.
4539 * ppc64-tdep.c (ppc64_standard_linkage2, ppc64_standard_linkage3):
4540 Add match for power7 thread safety insns, and new order of
4541 std 2,40(1) insn. Correct code shown for _dl_runtime_resolve
4542 invocation in comment, and update rest of comment.
4543 (PPC64_STANDARD_LINKAGE1_LEN, PPC64_STANDARD_LINKAGE2_LEN,
4544 PPC64_STANDARD_LINKAGE3_LEN): Delete.
4545 (ppc64_standard_linkage2_target): Update insn offsets.
4546 (ppc64_skip_trampoline_code): Use a single insn buffer. Match newer
4547 stubs first. Update calls.
4548
4549 2013-06-04 Yao Qi <yao@codesourcery.com>
4550
4551 * solib.c (solib_find): Don't need dir separator if path has
4552 drive spec.
4553
4554 2013-06-03 Joel Brobecker <brobecker@adacore.com>
4555
4556 Revert (indirectly causes a SIGSEGV):
4557 * machoread.c (macho_symfile_read): Assign first cleanup to
4558 'back_to'.
4559
4560 2013-06-03 Yao Qi <yao@codesourcery.com>
4561
4562 * mi/mi-cmd-var.c (mi_no_values, mi_simple_values): Move to
4563 mi-parse.c. Make them static.
4564 (mi_all_values): Likewise.
4565 (mi_parse_values_option): Move to mi-parse.c. Rename it to
4566 mi_parse_print_values. Make it external.
4567 * mi/mi-cmds.h (mi_no_values, mi_simple_values, mi_all_values):
4568 Remove the declarations.
4569 * mi/mi-parse.c (mi_parse_print_values): Moved from mi-cmd-var.c.
4570 * mi/mi-parse.h (mi_parse_print_values): Declare.
4571 * mi/mi-cmd-stack.c: Include mi-parse.h.
4572 (parse_print_values): Remove
4573 (mi_cmd_stack_list_locals): Call mi_parse_print_values instead
4574 of parse_print_values.
4575 (mi_cmd_stack_list_args, mi_cmd_stack_list_variables): Likewise.
4576
4577 2013-05-31 Pedro Alves <pedro@codesourcery.com>
4578 Yao Qi <yao@codesourcery.com>
4579
4580 * tracepoint.c (all_tracepoint_actions_and_cleanup): Declare.
4581 (encode_actions): Move code to ...
4582 (all_tracepoint_actions_and_cleanup): ... here. New.
4583 (trace_dump_command): Likewise.
4584
4585 2013-05-30 Tom Tromey <tromey@redhat.com>
4586
4587 * symmisc.c (maintenance_expand_symtabs): Call do_cleanups.
4588
4589 2013-05-30 Tom Tromey <tromey@redhat.com>
4590
4591 * xml-support.c (gdb_xml_create_parser_and_cleanup): Rename from
4592 gdb_xml_create_parser_and_cleanup_1. Return a cleanup. Remove
4593 'old_chain' argument. Add 'parser_result' argument.
4594 (gdb_xml_create_parser_and_cleanup): Remove old version.
4595 (gdb_xml_parse_quick): Update.
4596 (xml_process_xincludes): Update.
4597 * xml-support.h (gdb_xml_create_parser_and_cleanup): Don't
4598 declare.
4599
4600 2013-05-30 Tom Tromey <tromey@redhat.com>
4601
4602 * probe.c (collect_probes): Check arguments for NULL before
4603 calling compile_rx_or_error.
4604 * utils.c (compile_rx_or_error): Require 'rx' to be non-NULL.
4605 Remove NULL return.
4606
4607 2013-05-30 Tom Tromey <tromey@redhat.com>
4608
4609 * infrun.c (adjust_pc_after_break): Introduce an outer null
4610 cleanup.
4611
4612 2013-05-30 Tom Tromey <tromey@redhat.com>
4613
4614 * mi/mi-cmd-var.c (varobj_update_one): Add an outer null cleanup.
4615
4616 2013-05-30 Tom Tromey <tromey@redhat.com>
4617
4618 * cli/cli-script.c (read_command_lines_1): Use a null cleanup
4619 for 'old_chain'. Do not check 'head' before processing
4620 cleanups.
4621
4622 2013-05-30 Tom Tromey <tromey@redhat.com>
4623
4624 * mi/mi-cmd-stack.c (list_arg_or_local): Remove
4625 "cleanup_tuple".
4626
4627 2013-05-30 Tom Tromey <tromey@redhat.com>
4628
4629 * dbxread.c (dbx_read_symtab): Declare 'back_to' in a more
4630 inner scope. Unconditionally call do_cleanups.
4631
4632 2013-05-30 Tom Tromey <tromey@redhat.com>
4633
4634 * source.c (find_and_open_source): Call do_cleanups.
4635
4636 2013-05-30 Tom Tromey <tromey@redhat.com>
4637
4638 * linux-thread-db.c (thread_db_load_search): Unconditionally
4639 call do_cleanups.
4640
4641 2013-05-30 Tom Tromey <tromey@redhat.com>
4642
4643 * solib-aix.c (solib_aix_bfd_open): Don't use a null cleanup
4644 for 'cleanup'; instead use a later one.
4645
4646 2013-05-30 Tom Tromey <tromey@redhat.com>
4647
4648 * python/py-breakpoint.c (bppy_get_commands): Use
4649 explicit, unconditional return.
4650 * python/py-frame.c (frapy_read_var): Likewise.
4651 * python/python.c (gdbpy_decode_line): Likewise.
4652
4653 2013-05-30 Tom Tromey <tromey@redhat.com>
4654
4655 * cp-namespace.c (cp_lookup_symbol_imports_or_template): Call
4656 do_cleanups on all return paths.
4657
4658 2013-05-30 Tom Tromey <tromey@redhat.com>
4659
4660 * top.c (execute_command): Discard 'cleanup_if_error' cleanups.
4661
4662 2013-05-30 Tom Tromey <tromey@redhat.com>
4663
4664 * stabsread.c (read_struct_type): Call do_cleanups along
4665 all return paths.
4666
4667 2013-05-30 Maciej W. Rozycki <macro@codesourcery.com>
4668
4669 * mips-linux-tdep.c: Adjust formatting throughout.
4670
4671 2013-05-30 Tom Tromey <tromey@redhat.com>
4672
4673 * mipsread.c (read_alphacoff_dynamic_symtab): Call do_cleanups
4674 along all return paths.
4675
4676 2013-05-30 Tom Tromey <tromey@redhat.com>
4677
4678 * symfile.c (find_separate_debug_file): Call do_cleanups
4679 along all return paths.
4680
4681 2013-05-30 Tom Tromey <tromey@redhat.com>
4682
4683 * symtab.c (search_symbols): Introduce a null cleanup for
4684 'retval_chain'.
4685
4686 2013-05-30 Tom Tromey <tromey@redhat.com>
4687
4688 * python/py-value.c (valpy_binop): Call do_cleanups before
4689 exiting loop.
4690
4691 2013-05-30 Tom Tromey <tromey@redhat.com>
4692
4693 * python/py-prettyprint.c (print_children): Remove extra
4694 do_cleanups call.
4695
4696 2013-05-30 Tom Tromey <tromey@redhat.com>
4697
4698 * python/py-frame.c (frapy_read_var): Call do_cleanups along
4699 all return paths.
4700
4701 2013-05-30 Tom Tromey <tromey@redhat.com>
4702
4703 * python/py-breakpoint.c (bppy_get_commands): Call do_cleanups
4704 along all return paths.
4705
4706 2013-05-30 Tom Tromey <tromey@redhat.com>
4707
4708 * cli/cli-logging.c (set_logging_redirect): Unconditionally
4709 call do_cleanups.
4710
4711 2013-05-30 Tom Tromey <tromey@redhat.com>
4712
4713 * varobj.c (c_value_of_root): Call do_cleanups along all
4714 return paths.
4715
4716 2013-05-30 Tom Tromey <tromey@redhat.com>
4717
4718 * tracepoint.c (trace_dump_command): Unconditionally call
4719 do_cleanups.
4720
4721 2013-05-30 Tom Tromey <tromey@redhat.com>
4722
4723 * breakpoint.c (output_thread_groups, parse_cmd_to_aexpr): Call
4724 do_cleanups earlier.
4725
4726 2013-05-30 Tom Tromey <tromey@redhat.com>
4727
4728 * machoread.c (macho_symfile_read): Assign first cleanup to
4729 'back_to'.
4730
4731 2013-05-30 Tom Tromey <tromey@redhat.com>
4732
4733 * m32r-rom.c (m32r_load): Call do_cleanups at all returns.
4734
4735 2013-05-30 Tom Tromey <tromey@redhat.com>
4736
4737 * mi/mi-main.c (list_available_thread_groups): Call do_cleanups.
4738
4739 2013-05-30 Tom Tromey <tromey@redhat.com>
4740
4741 * inf-ptrace.c (inf_ptrace_create_inferior): Unconditionally
4742 call discard_cleanups.
4743 (inf_ptrace_attach): Likewise.
4744
4745 2013-05-30 Tom Tromey <tromey@redhat.com>
4746
4747 * remote-mips.c (mips_exit_debug): Call do_cleanups on all
4748 return paths.
4749 (mips_initialize): Likewise.
4750 (common_open): Call do_cleanups.
4751
4752 2013-05-30 Tom Tromey <tromey@redhat.com>
4753
4754 * utils.c (internal_vproblem): Call do_cleanups.
4755
4756 2013-05-30 Tom Tromey <tromey@redhat.com>
4757
4758 * linespec.c (find_linespec_symbols): Don't reassign to 'cleanup'.
4759
4760 2013-05-30 Tom Tromey <tromey@redhat.com>
4761
4762 * cli/cli-script.c (setup_user_args): Don't return after error.
4763
4764 2013-05-30 Tom Tromey <tromey@redhat.com>
4765
4766 * somread.c (som_symtab_read): Call do_cleanups.
4767
4768 2013-05-30 Tom Tromey <tromey@redhat.com>
4769
4770 * printcmd.c (print_command_1): Unconditionally call do_cleanups.
4771
4772 2013-05-30 Tom Tromey <tromey@redhat.com>
4773
4774 * cli/cli-cmds.c (cd_command, alias_command): Call do_cleanups.
4775 * cli/cli-dump.c (restore_binary_file): Call do_cleanups.
4776 * interps.c (interpreter_exec_cmd): Call do_cleanups.
4777 * source.c (show_substitute_path_command): Call do_cleanups.
4778 (unset_substitute_path_command, set_substitute_path_command):
4779 Likewise.
4780 * symfile.c (load_command): Call do_cleanups.
4781
4782 2013-05-30 Tom Tromey <tromey@redhat.com>
4783
4784 * contrib/cleanup_check.py: New file.
4785 * contrib/gcc-with-excheck: Add option parsing.
4786
4787 2013-05-30 Joel Brobecker <brobecker@adacore.com>
4788
4789 * windows-nat.c (windows_delete_thread): Add missing space
4790 in cast expression.
4791
4792 2013-05-30 Hafiz Abid Qadeer <abidh@codesourcery.com>
4793
4794 * inferior.c (top level): Include tilde.h.
4795 (add_inferior_command): Call tilde_expand on the value of 'exec'
4796 argument.
4797
4798 2013-05-30 Pedro Alves <pedro@codesourcery.com>
4799 Yao Qi <yao@codesourcery.com>
4800
4801 * tracepoint.c (encode_actions_1): Remove parameter 't'.
4802 Caller update.
4803 (encode_actions): Likewise.
4804 * remote.c (remote_download_tracepoint): Caller update.
4805 * tracepoint.h (encode_actions): Update declaration.
4806
4807 2013-05-30 Pedro Alves <palves@redhat.com>
4808
4809 * python/python-internal.h (gdb_Py_DECREF): Cast OP to PyObject
4810 pointer.
4811
4812 2013-05-30 Yao Qi <yao@codesourcery.com>
4813
4814 * remote.c (remote_check_symbols): Remove unused parameter
4815 'objfile'.
4816 Declaration update.
4817 (remote_start_remote, remote_new_objfile): Caller update.
4818
4819 2013-05-30 Yao Qi <yao@codesourcery.com>
4820
4821 * mi/mi-cmds.c (mi_cmds): Define MI command
4822 '-exec-arguments' by macro DEF_MI_CMD_CLI_1 instead of
4823 DEF_MI_CMD_CLI.
4824
4825 2013-05-29 Pedro Alves <palves@redhat.com>
4826
4827 * remote.c (remote_insert_breakpoint, remote_remove_breakpoint)
4828 (remote_insert_watchpoint, remote_remove_watchpoint)
4829 (remote_insert_hw_breakpoint, remote_remove_hw_breakpoint)
4830 (remote_verify_memory, compare_sections_command)
4831 (remote_search_memory): Set the general process/thread on the
4832 remote side.
4833
4834 2013-05-29 Pedro Alves <palves@redhat.com>
4835
4836 * aarch64-tdep.c: Don't include "features/aarch64-without-fpu.c".
4837 (_initialize_aarch64_tdep): Don't call
4838 initialize_tdesc_aarch64_without_fpu.
4839 * features/Makefile (WHICH): Remove reference to
4840 aarch64-without-fpu.
4841 * features/aarch64-without-fpu.c: Delete file.
4842 * regformats/aarch64-without-fpu.dat: Delete file.
4843
4844 2013-05-28 Yao Qi <yao@codesourcery.com>
4845
4846 * tracepoint.c (stringify_collection_list): Remove parameter
4847 'string'.
4848 (encode_actions): Caller update. Remove local variables.
4849
4850 2013-05-24 Yao Qi <yao@codesourcery.com>
4851
4852 * tracepoint.c (TFILE_PID): Remove.
4853 (tfile_open): Don't add thread and inferior.
4854 (tfile_close): Don't set 'inferior_ptid'. Don't call
4855 exit_inferior_silent.
4856 (tfile_thread_alive): Remove.
4857 (init_tfile_ops): Don't set field 'to_thread_alive' of
4858 tfile_ops.
4859
4860 2013-05-23 Doug Evans <dje@google.com>
4861
4862 * contrib/cc-with-tweaks.sh (-p): Handle no dwo files.
4863
4864 2013-05-23 Pedro Alves <palves@redhat.com>
4865
4866 * common/filestuff.c [USE_WIN32API]: Define HAVE_SOCKETS.
4867 [HAVE_SYS_SOCKET_H]: Define HAVE_SOCKETS.
4868 (socket_mark_cloexec, gdb_socketpair_cloexec, gdb_socket_cloexec):
4869 Only define if HAVE_SOCKETS is defined.
4870 * configure.ac: Check for sys/socket.h.
4871 * config.in, configure: Regenerate.
4872
4873 2013-05-23 Pedro Alves <palves@redhat.com>
4874
4875 * dwarf2read.c (create_dwp_hash_table, create_dwo_in_dwp)
4876 (open_and_init_dwp_file): Use %s/pulongest instead of %u for
4877 printing uint32_t variables.
4878
4879 2013-05-23 Pedro Alves <palves@redhat.com>
4880
4881 * NEWS: Mention GDBserver range stepping support.
4882
4883 2013-05-23 Yao Qi <yao@codesourcery.com>
4884 Pedro Alves <palves@redhat.com>
4885
4886 * gdbthread.h (struct thread_control_state) <may_range_step>: New
4887 field.
4888 * infcmd.c (step_once, until_next_command): Enable range stepping.
4889 * infrun.c (displaced_step_prepare): Disable range stepping.
4890 (resume): Disable range stepping if stepping over a breakpoint or
4891 we have software watchpoints. If range stepping is enabled,
4892 assert the thread is in the stepping range.
4893 (clear_proceed_status_thread): Clear may_range_step.
4894 (handle_inferior_event): Disable range stepping as soon as we know
4895 the thread that hit the event. Re-enable it whenever we're going
4896 to step with a step range.
4897 * remote.c (struct vCont_action_support) <r>: New field.
4898 (use_range_stepping): New global.
4899 (remote_vcont_probe): Handle 'r' action.
4900 (append_resumption): Append an 'r' action if the thread may range
4901 step.
4902 (show_range_stepping): New function.
4903 (set_range_stepping): New function.
4904 (_initialize_remote): Call add_setshow_boolean_cmd to register the
4905 'set range-stepping' and 'show range-stepping' commands.
4906 * NEWS: Mention range stepping, the new vCont;r action, and the
4907 new "set/show range-stepping" commands.
4908
4909 2013-05-23 Yao Qi <yao@codesourcery.com>
4910 Pedro Alves <palves@redhat.com>
4911
4912 * remote.c (struct vCont_action_support): New struct.
4913 (struct remote_state) <support_vCont_t>: Remove field.
4914 <vCont_actions_support>: New field.
4915 (remote_vcont_probe, remote_stop_ns): Update.
4916
4917 2013-05-23 Yao Qi <yao@codesourcery.com>
4918 Pedro Alves <palves@redhat.com>
4919
4920 * gdbthread.h (pc_in_thread_step_range): New declaration.
4921 * thread.c (pc_in_thread_step_range): New function.
4922 * infrun.c (handle_inferior_event): Use it.
4923
4924 2013-05-23 Joel Brobecker <brobecker@adacore.com>
4925
4926 * mi/mi-cmd-break.c (mi_argv_to_format): Use xsnprintf instead
4927 of sprintf.
4928
4929 2013-05-22 Keith Seitz <keiths@redhat.com>
4930
4931 * ada-lang.c (is_known_support_routine): Add explicit free of
4932 'func_name' from find_frame_funname.
4933 (ada_unhandled_exception_name_addr_from_raise): Add cleanups
4934 for func_name from find_frame_funname.
4935 * python/py-frame.c (frapy_name): Add explicit free of
4936 'name' from find_frame_funname.
4937 * stack.c (find_frame_funname): Add comment explaining that
4938 funcp must be freed by the caller.
4939 Return copy of symbol names instead of pointers.
4940 (print_frame): Add a cleanup for 'funname' from
4941 find_frame_funname.
4942 * stack.h (find_frame_funname): Remove "const" from
4943 'funname' parameter.
4944
4945 2013-05-22 Tom Tromey <tromey@redhat.com>
4946
4947 PR c++/15401:
4948 * c-valprint.c (c_value_print): Use value_addr for
4949 references. Convert back to reference type with value_ref.
4950
4951 2013-05-22 Eli Zaretskii <eliz@gnu.org>
4952
4953 * windows-nat.c (handle_unload_dll): Don't call solib_add for the
4954 unloaded DLL, it will be done by handle_solib_event. See
4955 http://sourceware.org/ml/gdb-patches/2013-05/msg00713.html for the
4956 details.
4957
4958 2013-05-22 Phil Muldoon <pmuldoon@redhat.com>
4959
4960 * ui-out.c: Create typedef ui_out_level_p and define vector
4961 operations for that type.
4962 (struct ui_out): Use a vector instead of an array.
4963 (current_level): Return level from a vector.
4964 (push_level): Create a level in a vector.
4965 (pop_level): Delete a level in a vector.
4966 (ui_out_new): Create initial level zero level, and store in a
4967 vector.
4968 (ui_out_destroy): Add vector cleanup.
4969
4970 2013-05-22 Pedro Alves <palves@redhat.com>
4971
4972 * python/python-internal.h (gdb_Py_DECREF): Tag with
4973 "ARI: editCase function".
4974
4975 2013-05-21 Paul Pluzhnikov <ppluzhnikov@google.com>
4976
4977 * solib-svr4.c (svr4_free_so): Protect against NULL dereference.
4978
4979 2013-05-21 Pedro Alves <palves@redhat.com>
4980
4981 * python/py-prettyprint.c (apply_val_pretty_printer): Check
4982 whether PRINTER is NULL before installing a Py_DECREF cleanup.
4983 * python/py-utils.c (py_decref): Don't check for NULL before
4984 calling Py_DECREF.
4985
4986 2013-05-21 Pedro Alves <palves@redhat.com>
4987
4988 * python/py-utils.c (py_decref): Remove extra braces.
4989 (gdb_pymodule_addobject): Remove extra braces.
4990 * python-internal.h (gdb_Py_DECREF): New static inline function.
4991 (Py_DECREF): Redefine as calling gdb_Py_DECREF.
4992
4993 2013-05-21 Philippe Waroquiers <philippe.waroquiers@skynet.be>
4994
4995 * breakpoints.c (detach_breakpoints): Do not
4996 detach breakpoints locations with loc_type bp_loc_other.
4997
4998 2013-05-21 Jan Kratochvil <jan.kratochvil@redhat.com>
4999
5000 Workaround Python 2.6.
5001 * python/py-utils.c (gdb_pymodule_addobject): Wrap Py_DECREF into
5002 a block.
5003
5004 2013-05-21 Jan Kratochvil <jan.kratochvil@redhat.com>
5005
5006 Code cleanup: constification.
5007 * solib.c (solib_ops): Make return type and ops variable type const.
5008 (set_solib_ops): Make the new_ops parameter and ops variable const.
5009 (solib_find, solib_map_sections, clear_so, free_so, update_solib_list)
5010 (solib_add, solib_keep_data_in_core, clear_solib)
5011 (solib_create_inferior_hook, in_solib_dynsym_resolve_code)
5012 (reload_shared_libraries, solib_global_lookup): Make the ops variable
5013 const.
5014 * solib.h (set_solib_ops): Make the new_ops parameter const.
5015
5016 2013-05-21 Joel Brobecker <brobecker@adacore.com>
5017
5018 * data-directory/Makefile.in (SYSTEM_GDBINIT_SRCDIR): New
5019 variable.
5020 (VPATH): Add SYSTEM_GDBINIT_SRCDIR.
5021 (SYSTEM_GDBINIT_DIR, SYSTEM_GDBINIT_INSTALL_DIR)
5022 (SYSTEM_GDBINIT_FILES): New variables.
5023 (all): Add stamp-system-gdbinit.
5024 (stamp-system-gdbinit): New rule.
5025 (clean-system-gdbinit, install-system-gdbinit)
5026 (uninstall-system-gdbinit): New rules. Make them .PHONY.
5027 (install-only): Add dependency on install-system-gdbinit.
5028 (uninstall): Add dependency on uninstall-system-gdbinit.
5029 (clean): Add dependency on clean-system-gdbinit.
5030 * system-gdbinit/elinos.py: New file.
5031 * system-gdbinit/wrs-linux.py: New file.
5032
5033 2013-05-21 Joel Brobecker <brobecker@adacore.com>
5034
5035 * ada-lang.c (old_renaming_is_invisible): Fix cleanup leak.
5036
5037 2013-05-21 Hui Zhu <hui@codesourcery.com>
5038
5039 * breakpoint.c (dprintf_breakpoint_ops): Remove its static.
5040 * breakpoint.h (dprintf_breakpoint_ops): Add extern.
5041 * mi/mi-cmd-break.c (ctype.h): New include.
5042 (gdb_obstack.h): New include.
5043 (mi_argv_to_format, mi_cmd_break_insert_1): New.
5044 (mi_cmd_break_insert): Call mi_cmd_break_insert_1.
5045 (mi_cmd_dprintf_insert): New.
5046 * mi/mi-cmds.c (mi_cmds): Add "dprintf-insert".
5047 * mi/mi-cmds.h (mi_cmd_dprintf_insert): New extern.
5048
5049 2013-05-20 Tom Tromey <tromey@redhat.com>
5050
5051 * python/py-prettyprint.c (search_pp_list): Decref 'attr'.
5052
5053 2013-05-20 Tom Tromey <tromey@redhat.com>
5054
5055 * python/py-value.c (valpy_get_dynamic_type): Simplify
5056 dynamic_type assignment. Use Py_XINCREF.
5057
5058 2013-05-20 Tom Tromey <tromey@redhat.com>
5059
5060 * python/py-type.c (typy_fields): Unconditionally decref 'r'.
5061
5062 2013-05-20 Tom Tromey <tromey@redhat.com>
5063
5064 * python/py-frame.c (frapy_older, frapy_newer, gdbpy_newest_frame)
5065 (gdbpy_selected_frame): Move object-construction code
5066 out of TRY_CATCH.
5067
5068 2013-05-20 Tom Tromey <tromey@redhat.com>
5069
5070 * python/py-arch.c (gdbpy_initialize_arch): Use
5071 gdb_pymodule_addobject.
5072 * python/py-block.c (gdbpy_initialize_blocks): Use
5073 gdb_pymodule_addobject.
5074 * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Use
5075 gdb_pymodule_addobject.
5076 * python/py-cmd.c (gdbpy_initialize_breakpoints): Use
5077 gdb_pymodule_addobject.
5078 * python/py-event.c (gdbpy_initialize_event_generic): Use
5079 gdb_pymodule_addobject.
5080 * python/py-evtregistry.c (gdbpy_initialize_eventregistry): Use
5081 gdb_pymodule_addobject.
5082 * python/py-evts.c (add_new_registry): Use
5083 gdb_pymodule_addobject.
5084 (gdbpy_initialize_py_events): Likewise.
5085 * python/py-finishbreakpoint.c
5086 (gdbpy_initialize_finishbreakpoints): Use
5087 gdb_pymodule_addobject.
5088 * python/py-frame.c (gdbpy_initialize_frames): Use
5089 gdb_pymodule_addobject.
5090 * python/py-function.c (gdbpy_initialize_functions): Use
5091 gdb_pymodule_addobject.
5092 * python/py-inferior.c (gdbpy_initialize_inferior): Use
5093 gdb_pymodule_addobject.
5094 * python/py-infthread.c (gdbpy_initialize_thread): Use
5095 gdb_pymodule_addobject.
5096 * python/py-objfile.c (gdbpy_initialize_objfile): Use
5097 gdb_pymodule_addobject.
5098 * python/py-param.c (gdbpy_initialize_parameters): Use
5099 gdb_pymodule_addobject.
5100 * python/py-progspace.c (gdbpy_initialize_pspace): Use
5101 gdb_pymodule_addobject.
5102 * python/py-symbol.c (gdbpy_initialize_symbols): Use
5103 gdb_pymodule_addobject.
5104 * python/py-symtab.c (gdbpy_initialize_symtabs): Use
5105 gdb_pymodule_addobject.
5106 * python/py-type.c (gdbpy_initialize_types): Use
5107 gdb_pymodule_addobject.
5108 * python/py-utils.c (gdb_pymodule_addobject): New function.
5109 * python/py-value.c (gdbpy_initialize_values): Use
5110 gdb_pymodule_addobject.
5111 * python/python-internal.h (gdb_pymodule_addobject): Declare.
5112 * python/python.c (_initialize_python): Use
5113 gdb_pymodule_addobject.
5114
5115 2013-05-20 Tom Tromey <tromey@redhat.com>
5116
5117 * python/py-cmd.c (cmdpy_completer): Use explicit decref.
5118 * python/py-param.c (get_set_value, get_show_value): Use
5119 explicit decrefs.
5120 * python/python.c (start_type_printers, apply_type_printers):
5121 Use explicit decrefs.
5122
5123 2013-05-20 Tom Tromey <tromey@redhat.com>
5124
5125 * python/py-evts.c (gdbpy_initialize_py_events): Don't
5126 incref the module.
5127
5128 2013-05-20 Tom Tromey <tromey@redhat.com>
5129
5130 * python/python.c (gdbpy_run_events): Decref the result
5131 of PyObject_CallObject.
5132
5133 2013-05-20 Tom Tromey <tromey@redhat.com>
5134
5135 * python/py-symtab.c (set_sal): Use
5136 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION. Return -1 on error.
5137 (symtab_and_line_to_sal_object): Update.
5138
5139 2013-05-20 Tom Tromey <tromey@redhat.com>
5140
5141 * python/py-param.c (compute_enum_values): Decref 'item'.
5142
5143 2013-05-20 Tom Tromey <tromey@redhat.com>
5144
5145 * mi/mi-main.c: Include python-internal.h.
5146 (mi_cmd_list_features): Check gdb_python_initialized.
5147 * python/py-inferior.c (python_on_normal_stop, python_on_resume)
5148 (python_inferior_exit, python_new_objfile, add_thread_object)
5149 (delete_thread_object, py_free_inferior): Check
5150 gdb_python_initialized.
5151 * python/py-prettyprint.c (apply_val_pretty_printer): Check
5152 gdb_python_initialized.
5153 * python/py-type.c (save_objfile_types): Check
5154 gdb_python_initialized.
5155 * python/python-internal.h (gdb_python_initialized): Declare.
5156 * python/python.c (ensure_python_env): Throw exception if
5157 Python not initialized.
5158 (before_prompt_hook, source_python_script_for_objfile)
5159 (start_type_printers, apply_type_printers,
5160 free_type_printers): Check gdb_python_initialized.
5161 * varobj.c (varobj_get_display_hint)
5162 (dynamic_varobj_has_child_method, update_dynamic_varobj_children)
5163 (install_new_value_visualizer, varobj_set_visualizer)
5164 (value_get_print_value): Check gdb_python_initialized.
5165
5166 2013-05-20 Tom Tromey <tromey@redhat.com>
5167
5168 * python/py-arch.c (gdbpy_initialize_arch): Return 'int'.
5169 Check errors.
5170 * python/py-auto-load.c (gdbpy_initialize_auto_load): Return 'int'.
5171 * python/py-block.c (gdbpy_initialize_blocks): Return 'int'.
5172 Check errors.
5173 * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Return 'int'.
5174 Check errors.
5175 * python/py-cmd.c (gdbpy_initialize_commands): Return 'int'.
5176 Check errors.
5177 * python/py-event.c (gdbpy_initialize_event): Return 'int'.
5178 Check errors.
5179 * python/py-event.h (GDBPY_NEW_EVENT_TYPE): Change generated
5180 init function to return 'int'.
5181 * python/py-evtregistry.c (gdbpy_initialize_eventregistry):
5182 Return 'int'. Check errors.
5183 * python/py-evts.c (gdbpy_initialize_py_events): Return 'int'.
5184 Check errors.
5185 * python/py-finishbreakpoint.c (gdbpy_initialize_finishbreakpoints):
5186 Return 'int'. Check errors.
5187 * python/py-frame.c (gdbpy_initialize_frames): Return 'int'.
5188 Check errors.
5189 * python/py-function.c (gdbpy_initialize_functions): Return 'int'.
5190 Check errors.
5191 * python/py-gdb-readline.c (gdbpy_initialize_gdb_readline):
5192 Check errors.
5193 * python/py-inferior.c (gdbpy_initialize_inferior): Return 'int'.
5194 Check errors.
5195 * python/py-infthread.c (gdbpy_initialize_thread): Return 'int'.
5196 Check errors.
5197 * python/py-lazy-string.c (gdbpy_initialize_lazy_string): Return 'int'.
5198 Check errors.
5199 * python/py-objfile.c (gdbpy_initialize_objfile): Return 'int'.
5200 Check errors.
5201 * python/py-param.c (gdbpy_initialize_parameters): Return 'int'.
5202 Check errors.
5203 * python/py-progspace.c (gdbpy_initialize_pspace): Return 'int'.
5204 Check errors.
5205 * python/py-symbol.c (gdbpy_initialize_symbols): Return 'int'.
5206 Check errors.
5207 * python/py-symtab.c (gdbpy_initialize_symtabs): Return 'int'.
5208 Check errors.
5209 * python/py-type.c (gdbpy_initialize_types): Return 'int'.
5210 Check errors.
5211 * python/py-value.c (gdbpy_initialize_values): Return 'int'.
5212 Check errors.
5213 * python/python-internal.h (gdbpy_initialize_auto_load,
5214 gdbpy_initialize_values, gdbpy_initialize_frames,
5215 gdbpy_initialize_symtabs, gdbpy_initialize_commands,
5216 gdbpy_initialize_symbols, gdbpy_initialize_symtabs,
5217 gdbpy_initialize_blocks, gdbpy_initialize_types,
5218 gdbpy_initialize_functions, gdbpy_initialize_pspace,
5219 gdbpy_initialize_objfile, gdbpy_initialize_breakpoints,
5220 gdbpy_initialize_finishbreakpoints,
5221 gdbpy_initialize_lazy_string, gdbpy_initialize_parameters,
5222 gdbpy_initialize_thread, gdbpy_initialize_inferior,
5223 gdbpy_initialize_eventregistry, gdbpy_initialize_event,
5224 gdbpy_initialize_py_events, gdbpy_initialize_stop_event,
5225 gdbpy_initialize_signal_event,
5226 gdbpy_initialize_breakpoint_event,
5227 gdbpy_initialize_continue_event,
5228 gdbpy_initialize_exited_event, gdbpy_initialize_thread_event,
5229 gdbpy_initialize_new_objfile_event, gdbpy_initialize_arch):
5230 Update. Use CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
5231 * python/python.c (gdb_python_initialized): New global.
5232 (gdbpy_initialize_events): Return 'int'. Check errors.
5233 (_initialize_python): Check errors. Set
5234 gdb_python_initialized.
5235
5236 2013-05-20 Tom Tromey <tromey@redhat.com>
5237
5238 * python/py-finishbreakpoint.c (bpfinishpy_out_of_scope):
5239 Decref the reslut of PyObject_CallMethod.
5240
5241 2013-05-20 Tom Tromey <tromey@redhat.com>
5242
5243 * python/py-event.c (gdbpy_initialize_event_generic): Return
5244 early if PyType_Ready fails.
5245
5246 2013-05-20 Tom Tromey <tromey@redhat.com>
5247
5248 * python/py-type.c (make_fielditem): Add gdb_assert_not_reached
5249 as 'default' in the switch.
5250
5251 2013-05-20 Tom Tromey <tromey@redhat.com>
5252
5253 * python/py-inferior.c (gdbpy_inferiors): Update. Hoist
5254 get_addr_from_python calls out of TRY_CATCH.
5255 (infpy_write_memory, infpy_search_memory): Likewise.
5256 * python/py-utils.c (get_addr_from_python): Return negative
5257 value on error. Use TRY_CATCH.
5258 * python/python-internal.h (get_addr_from_python): Use
5259 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
5260
5261 2013-05-20 Tom Tromey <tromey@redhat.com>
5262
5263 * python/py-event.c (evpy_emit_event): Decref the
5264 result of PyObject_CallFunctionObjArgs.
5265
5266 2013-05-20 Tom Tromey <tromey@redhat.com>
5267
5268 * python/py-cmd.c (cmdpy_completer): Use iterator protocol.
5269 Correctly decref.
5270
5271 2013-05-20 Tom Tromey <tromey@redhat.com>
5272
5273 * python/py-cmd.c (cmdpy_init): Decref 'ds_obj'.
5274
5275 2013-05-20 Tom Tromey <tromey@redhat.com>
5276
5277 * python/py-event.h (gdbpy_initialize_event_generic): Use
5278 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
5279 * python/py-evts.c (add_new_registry): Use
5280 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
5281 * python/python-internal.h
5282 (CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION): New macro.
5283
5284 2013-05-20 Tom Tromey <tromey@redhat.com>
5285
5286 * python/py-arch.c (archpy_disassemble): Update.
5287 * python/py-type.c (typy_get_composite, typy_lookup_typename)
5288 (typy_lookup_type): Use GDB_PY_HANDLE_EXCEPTION.
5289 * python/py-utils.c (gdbpy_convert_exception): Return 'void'.
5290 * python/python-internal.h (CPYCHECKER_SETS_EXCEPTION): New
5291 macro.
5292 (GDB_PY_HANDLE_EXCEPTION): Update.
5293 (gdbpy_convert_exception): Update. Use CPYCHECKER_SETS_EXCEPTION.
5294
5295 2013-05-20 Tom Tromey <tromey@redhat.com>
5296
5297 * python/python-internal.h (events_object_type): Remove.
5298
5299 2013-05-20 Tom Tromey <tromey@redhat.com>
5300
5301 * python/py-event.h (evpy_emit_event): Use
5302 CPYCHECKER_STEALS_REFERENCE_TO_ARG.
5303 * python/python-internal.h (CPYCHECKER_STEALS_REFERENCE_TO_ARG):
5304 New macro.
5305
5306 2013-05-20 Tom Tromey <tromey@redhat.com>
5307
5308 * py-evtregistry.c (create_event_object): Decref
5309 eventregistry_object if PyList_New fails.
5310
5311 2013-05-20 Tom Tromey <tromey@redhat.com>
5312
5313 * py-cmd.c (gdbpy_string_to_argv): Check result of
5314 PyList_New.
5315
5316 2013-05-20 Tom Tromey <tromey@redhat.com>
5317
5318 * python/python.c (before_prompt_hook): Add cleanup to
5319 decref 'hook'.
5320
5321 2013-05-20 Tom Tromey <tromey@redhat.com>
5322
5323 * python/py-function.c (fnpy_init): Decref result of
5324 PyObject_GetAttrString.
5325
5326 2013-05-20 Tom Tromey <tromey@redhat.com>
5327
5328 * python/py-threadevent.c (get_event_thread): Use
5329 CPYCHECKER_RETURNS_BORROWED_REF.
5330 * python/python-internal.h (CPYCHECKER_RETURNS_BORROWED_REF):
5331 New define.
5332 (pspace_to_pspace_object, objfile_to_objfile_object)
5333 (find_thread_object): Use it.
5334
5335 2013-05-20 Tom Tromey <tromey@redhat.com>
5336
5337 * python/py-arch.c (arch_object_type): Use
5338 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5339 * python/py-block.c (block_syms_iterator_object_type):
5340 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5341 * python/py-bpevent.c (breakpoint_event_object_type):
5342 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5343 * python/py-cmd.c (cmdpy_object_type): Use
5344 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5345 * python/py-continueevent.c (continue_event_object_type):
5346 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5347 * python/py-event.h (GDBPY_NEW_EVENT_TYPE):
5348 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5349 * python/py-events.h (thread_event_object_type):
5350 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5351 * python/py-evtregistry.c (eventregistry_object_type): Use
5352 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5353 * python/py-exitedevent.c (exited_event_object_type):
5354 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5355 * python/py-finishbreakpoint.c (finish_breakpoint_object_type):
5356 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5357 * python/py-function.c (fnpy_object_type): Use
5358 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5359 * python/py-inferior.c (inferior_object_type, membuf_object_type):
5360 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5361 * python/py-infthread.c (thread_object_type): Use
5362 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5363 * python/py-lazy-string.c (lazy_string_object_type):
5364 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5365 * python/py-newobjfileevent.c (new_objfile_event_object_type):
5366 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5367 * python/py-objfile.c (objfile_object_type): Use
5368 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5369 * python/py-param.c (parmpy_object_type):
5370 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5371 * python/py-progspace.c (pspace_object_type):
5372 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5373 * python/py-signalevent.c (signal_event_object_type):
5374 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5375 * python/py-symtab.c (symtab_object_type, sal_object_type): Use
5376 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5377 * python/py-type.c (type_object_type, field_object_type)
5378 (type_iterator_object_type): Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5379 * python/py-internal.h (CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF): New
5380 define.
5381 (value_object_type, block_object_type, symbol_object_type)
5382 (event_object_type, stop_event_object_type, breakpoint_object_type)
5383 (frame_object_type): Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5384
5385 2013-05-20 Andreas Tobler <andreas@fgznet.ch>
5386
5387 * Makefile.in (ALL_TARGET_OBS): Add ppcfbsd-tdep.o.
5388 (ALLDEPFILES): Add ppcfbsd-nat.c and ppcfbsd-tdep.c.
5389
5390 2013-05-20 Doug Evans <dje@google.com>
5391
5392 When reading CU, stay in DWO. Be more tolerent of bad debug info.
5393 For Fission.
5394 * dwarf2read.c (struct dwarf2_per_cu_data): New member
5395 reading_dwo_directly.
5396 (struct signatured_type): New member dwo_unit.
5397 (struct die_reader_specs): New member comp_dir.
5398 (create_signatured_type_table_from_index): Use malloc for
5399 all_type_units instead of objfile's obstack.
5400 (create_all_type_units): Ditto.
5401 (fill_in_sig_entry_from_dwo_entry): New function.
5402 (add_type_unit): New function.
5403 (lookup_dwo_signatured_type): New function.
5404 (lookup_dwp_signatured_type): New function.
5405 (lookup_signatured_type): New arg cu. All callers updated.
5406 (init_cu_die_reader): Initialize comp_dir.
5407 (read_cutu_die_from_dwo): New arg stub_comp_dir. All callers updated.
5408 Change assert of matching type signatures to call error on mismatch.
5409 (lookup_dwo_unit): Add assert.
5410 (init_tu_and_read_dwo_dies): New function.
5411 (init_cutu_and_read_dies): Call it.
5412 (build_type_unit_groups): Handle case of no type unit groups created.
5413 (hash_dwo_file, eq_dwo_file): Handle missing comp_dir.
5414 (lookup_dwo_cutu): Tweak complaint.
5415 (dwarf2_free_abbrev_table): Check for NULL abbrev_table.
5416 (dwarf2_per_objfile_free): Free all_type_units.
5417
5418 2013-05-20 Joel Brobecker <brobecker@adacore.com>
5419
5420 * windows-nat.c (handle_unload_dll): Add missing empty line.
5421
5422 2013-05-20 Joel Brobecker <brobecker@adacore.com>
5423
5424 * dwarf2read.c (prototyped_function_p): New function.
5425 (read_subroutine_type): Use it.
5426
5427 2013-05-20 Joel Brobecker <brobecker@adacore.com>
5428
5429 * rs6000-aix-tdep.c: De-indent some example code provided
5430 as a comment.
5431
5432 2013-05-17 Edjunior Machado <emachado@linux.vnet.ibm.com>
5433
5434 * ppc-linux-nat.c (ppc_linux_region_ok_for_hw_watchpoint): Check if the
5435 region is ok for a hardware watchpoint using the new ptrace interface
5436 on Power servers.
5437
5438 2013-05-17 Doug Evans <dje@google.com>
5439
5440 * NEWS: Mention new maintenance commands check-symtabs, and
5441 expand-symtabs, and renamed check-psymtabs.
5442 * psymtab.c (maintenance_check_psymtabs): Renamed from
5443 maintenance_check_symtabs. Only process already-expanded symbol
5444 tables.
5445 (_initialize_psymtab): Update.
5446 * symmisc.c (maintenance_check_symtabs): New function.
5447 (maintenance_expand_name_matcher): New function
5448 (maintenance_expand_file_matcher): New function
5449 (maintenance_expand_symtabs): New function.
5450 (_initialize_symmisc): Add "mt check-symtabs" and "mt expand-symtabs"
5451 commands.
5452
5453 2013-05-17 Tom Tromey <tromey@redhat.com>
5454
5455 * python/py-inferior.c (infpy_read_memory): Don't call
5456 PyErr_SetString if PyObject_New fails.
5457 * python/py-frame.c (frame_info_to_frame_object): Don't call
5458 PyErr_SetString if PyObject_New fails.
5459
5460 2013-05-17 Pavel Chupin <pavel.v.chupin@intel.com>
5461
5462 * acinclude.m4: Add check for dlopen in libdl.
5463 * configure.ac: Ditto.
5464 * configure: Regenerate.
5465
5466 2013-05-17 Phil Muldoon <pmuldoon@redhat.com>
5467
5468 * frame.c (frame_stash): Convert to htab.
5469 (frame_addr_hash): New function.
5470 (frame_addr_hash_eq): New function.
5471 (frame_stash_create): Convert function to create
5472 a hash table.
5473 (frame_stash_add): Convert function to add an entry to a hash
5474 table.
5475 (frame_stash_find): Convert function to search the hash table.
5476 (frame_stash_invalidate): Convert function to empty the hash
5477 table.
5478 (get_frame_id): Only add to stash if a frame_id is created.
5479 (_initialize_frame): Call frame_stash_create.
5480
5481 2013-05-16 Yue Lu <hacklu.newborn@gmail.com> (tiny change)
5482
5483 * configure.ac: Ensure MIG is available when building for GNU Hurd
5484 hosts.
5485 * configure: Regenerate.
5486
5487 2013-05-16 Joel Brobecker <brobecker@adacore.com>
5488
5489 * dwarf2read.c (set_cu_language): Add DW_LANG_UPC handling.
5490
5491 2013-05-16 Joel Brobecker <brobecker@adacore.com>
5492
5493 * ada-lang.c (ada_make_symbol_completion_list): Make sure
5494 all cleanups are done before returning from this function.
5495
5496 2013-05-15 Joel Brobecker <brobecker@adacore.com>
5497
5498 * utils.h: #include "exceptions.h".
5499 (enum errors): Remove partial declaration.
5500
5501 2013-05-15 Joel Brobecker <brobecker@adacore.com>
5502
5503 * gdbarch.sh (core_xfer_shared_libraries_aix): New method.
5504 * gdbarch.h, gdbarch.c: Regenerate.
5505 * corelow.c (core_xfer_partial): Add TARGET_OBJECT_LIBRARIES_AIX
5506 handling.
5507
5508 * rs6000-aix-tdep.h: New file.
5509 * Makefile.in (HFILES_NO_SRCDIR): Add rs6000-aix-tdep.h.
5510 * rs6000-aix-tdep.c: Include "rs6000-aix-tdep.h" and
5511 "xml-utils.h".
5512 (struct field_info, struct ld_info_desc): New types.
5513 (ld_info32_desc, ld_info64_desc): New static constants.
5514 (struct ld_info): New type.
5515 (rs6000_aix_extract_ld_info): New function.
5516 (rs6000_aix_shared_library_to_xml): Likewise.
5517 (rs6000_aix_ld_info_to_xml): Likewise.
5518 (rs6000_aix_core_xfer_shared_libraries_aix): Likewise.
5519 (rs6000_aix_init_osabi): Add call to
5520 set_gdbarch_core_xfer_shared_libraries_aix.
5521 * rs6000-nat.c: Add "rs6000-aix-tdep.h" include.
5522 Remove "xml-utils.h" include.
5523 (LdInfo): Delete typedef.
5524 (ARCH64_DECL, LDI_FIELD, LDI_NEXT, LDI_FD, LDI_FILENAME):
5525 Delete macros.
5526 (rs6000_ptrace_ldinfo): Change return type to gdb_byte *.
5527 Adjust code accordingly.
5528 (rs6000_core_ldinfo): Delete, folded into
5529 rs6000_aix_core_xfer_shared_libraries_aix.
5530 (rs6000_xfer_shared_library): Delete.
5531 (rs6000_xfer_shared_libraries): Reimplement.
5532
5533 2013-05-15 Markus Metzger <markus.t.metzger@intel.com>
5534
5535 * record.c (record_goto_cmdlist): New.
5536 (cmd_record_goto): Split into this ...
5537 (cmd_record_goto_begin): ... this
5538 (cmd_record_goto_end): ... and this.
5539 (_initialize_record): Change "record goto" to prefix command.
5540 Add commands for "record goto begin" and "record goto end".
5541 Add an alias for "record goto start" to "record goto begin".
5542
5543 2013-05-14 Jan Kratochvil <jan.kratochvil@redhat.com>
5544
5545 * linespec.c (convert_linespec_to_sals): New comment for
5546 SOURCE_FILENAME assignment.
5547
5548 2013-05-14 Jan Kratochvil <jan.kratochvil@redhat.com>
5549
5550 * cleanups.c (restore_my_cleanups): Replace gdb_assert by
5551 internal_warning.
5552
5553 2013-05-14 Tom Tromey <tromey@redhat.com>
5554
5555 * eval.c (parse_and_eval_long): Make 'exp' const.
5556 * value.h (parse_and_eval_long): Update.
5557
5558 2013-05-14 Tom Tromey <tromey@redhat.com>
5559
5560 * ui-file.c (gdb_fopen): Make arguments const.
5561 * ui-file.h (gdb_fopen): Make arguments const.
5562
5563 2013-05-14 Tom Tromey <tromey@redhat.com>
5564
5565 * remote.c (remote_set_trace_notes): Make arguments const.
5566 * target.c (update_current_target): Update cast.
5567 * target.h (to_set_trace_notes): Make arguments const.
5568
5569 2013-05-14 Tom Tromey <tromey@redhat.com>
5570
5571 * go32-nat.c (go32_terminal_info): Make 'args' const.
5572 * inferior.h (child_terminal_info): Update.
5573 * inflow.c (child_terminal_info): Make 'args' const.
5574 * target.c (default_terminal_info): Make 'args' const.
5575 (debug_to_terminal_save_ours): Likewise.
5576 * target.h (struct target_ops) <to_terminal_info>: Make argument
5577 const.
5578
5579 2013-05-13 Tom Tromey <tromey@redhat.com>
5580
5581 * gcore.c (create_gcore_bfd): Make 'filename' const.
5582 * gcore.h (create_gcore_bfd): Make 'filename' const.
5583 * record-full.c (record_full_save): Make 'recfilename' const.
5584 * target.c (target_save_record): Make 'filename' const.
5585 * target.h (struct target_ops) <to_save_record>: Make 'filename'
5586 const.
5587 (target_save_record): Likewise.
5588
5589 2013-05-13 Tom Tromey <tromey@redhat.com>
5590
5591 PR gdb/15338:
5592 * dwarf2read.c (dwarf2_record_block_ranges): Ensure that the
5593 ranges section has been read.
5594
5595 2013-05-13 Tom Tromey <tromey@redhat.com>
5596
5597 PR exp/15364:
5598 * eval.c (evaluate_subexp_standard) <STRUCTOP_STRUCT,
5599 STRUCTOP_PTR>: Return a not_lval value for
5600 EVAL_AVOID_SIDE_EFFECTS.
5601 * opencl-lang.c (evaluate_subexp_opencl): Return a not_lval value
5602 for EVAL_AVOID_SIDE_EFFECTS.
5603
5604 2013-05-13 Joel Brobecker <brobecker@adacore.com>
5605
5606 * rs6000-aix-tdep.c (rs6000_push_dummy_call): Convert
5607 floating point registers to register type before storing
5608 value.
5609 * rs6000-lynx178-tdep.c (rs6000_lynx178_push_dummy_call):
5610 Likewise.
5611
5612 2013-05-10 Joel Brobecker <brobecker@adacore.com>
5613 Tom Tromey <tromey@redhat.com>
5614
5615 * common/filestuff.c (mark_fd_no_cloexec, unmark_fd_no_cloexec):
5616 New functions.
5617 * common/filestuff.c (mark_fd_no_cloexec, unmark_fd_no_cloexec):
5618 Declare.
5619 * darwin-nat.c (darwin_pre_ptrace): Use mark_fd_no_cloexec.
5620 (darwin_ptrace_him): Use unmark_fd_no_cloexec.
5621 * inf-ttrace.c (do_cleanup_pfds): Use unmark_fd_no_cloexec.
5622 (inf_ttrace_prepare): Use mark_fd_no_cloexec.
5623
5624 2013-05-10 Freddie Chopin <freddie_chopin@op.pl>
5625 Tom Tromey <tromey@redhat.com>
5626
5627 PR build/15414:
5628 * configure: Rebuild.
5629 * configure.ac (build_warnings): Do not use -Wformat-nonliteral
5630 with -Wno-format.
5631
5632 2013-05-10 Pedro Alves <palves@redhat.com>
5633
5634 * remote.c (_initialize_remote): Fix spelling of
5635 qXfer:traceframe-info:read packet in packet config command.
5636
5637 2013-05-10 David Taylor <dtaylor@emc.com>
5638
5639 PR remote/15455
5640
5641 * remote.c (remote_trace_set_readonly_regions): Do not overwrite
5642 "QTro" at start of packet.
5643
5644 2013-05-10 Joel Brobecker <brobecker@adacore.com>
5645
5646 * solib-aix.c (solib_aix_relocate_section_addresses):
5647 For the .bss section action, apply the same offset as
5648 the .data section.
5649
5650 2013-05-10 Joel Brobecker <brobecker@adacore.com>
5651
5652 * solib-aix.c (solib_aix_relocate_section_addresses):
5653 Remove FIXME comment.
5654
5655 2013-05-10 Joel Brobecker <brobecker@adacore.com>
5656
5657 PR tdep/15420:
5658 * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
5659 New functions, directly copied from sparc-sol-thread.c.
5660 * sparc-sol-thread.c: Delete.
5661 * configure.ac: Remove code handling sparc-solaris-thread.c.
5662 * configure: Regenerate.
5663
5664 2013-05-10 Phil Muldoon <pmuldoon@redhat.com>
5665
5666 * stack.c (backtrace_command_1): Add "no-filters", and Python frame
5667 filter logic.
5668 (backtrace_command): Add "no-filters" option parsing.
5669 (_initialize_stack): Alter help to reflect "no-filters" option.
5670 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-framefilter.o
5671 (SUBDIR_PYTHON_SRCS): Add py-framefilter.c
5672 (py-frame.o): Add target
5673 * data-directory/Makefile.in (PYTHON_DIR): Add Python frame
5674 filter files.
5675 * python/python.h: Add new frame filter constants, and flag enum.
5676 (apply_frame_filter): Add definition.
5677 * python/python.c (apply_frame_filter): New non-Python
5678 enabled function.
5679 * python/py-utils.c (py_xdecref): New function.
5680 (make_cleanup_py_xdecref): Ditto.
5681 * python/py-objfile.c: Declare frame_filters dictionary.
5682 (objfpy_dealloc): Add frame_filters dealloc.
5683 (objfpy_new): Initialize frame_filters attribute.
5684 (objfile_to_objfile_object): Ditto.
5685 (objfpy_get_frame_filters): New function.
5686 (objfpy_set_frame_filters): New function.
5687 * python/py-progspace.c: Declare frame_filters dictionary.
5688 (pspy_dealloc): Add frame_filters dealloc.
5689 (pspy_new): Initialize frame_filters attribute.
5690 (pspacee_to_pspace_object): Ditto.
5691 (pspy_get_frame_filters): New function.
5692 (pspy_set_frame_filters): New function.
5693 * python/py-framefilter.c: New file.
5694 * python/lib/gdb/command/frame_filters.py: New file.
5695 * python/lib/gdb/frames.py: New file.
5696 * python/lib/gdb/__init__.py: Initialize global frame_filters
5697 dictionary
5698 * python/lib/gdb/FrameDecorator.py: New file.
5699 * python/lib/gdb/FrameIterator.py: New file.
5700 * mi/mi-cmds.c (mi_cmds): Add frame filters command.
5701 * mi/mi-cmds.h: Declare.
5702 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames): Add
5703 --no-frame-filter logic, and Python frame filter logic.
5704 (stack_enable_frame_filters): New function.
5705 (parse_no_frame_option): Ditto.
5706 (mi_cmd_stack_list_frames): Add --no-frame-filter and Python frame
5707 filter logic.
5708 (mi_cmd_stack_list_locals): Ditto.
5709 (mi_cmd_stack_list_args): Ditto.
5710 (mi_cmd_stack_list_variables): Ditto.
5711 * NEWS: Add frame filter note.
5712
5713 2013-05-09 Doug Evans <dje@google.com>
5714
5715 * symfile.c (syms_from_objfile_1): Delete args offsets, num_offsets.
5716 All callers updated.
5717 (syms_from_objfile): Ditto. Make static.
5718 (symbol_file_add_with_addrs): Renamed from
5719 symbol_file_add_with_addrs_or_offsets. Delete args offsets,
5720 num_offsets. All callers updated.
5721 * symfile.h (syms_from_objfile): Delete.
5722
5723 * symfile.c (decrement_reading_symtab): Add assert.
5724 (increment_reading_symtab): Ditto.
5725
5726 2013-05-09 Joel Brobecker <brobecker@adacore.com>
5727
5728 * source.c (forward_search_command): Replace call to getc
5729 by call to fgetc.
5730 (reverse_search_command): Likewise.
5731
5732 2013-05-08 Doug Evans <dje@google.com>
5733
5734 * psymtab.c (expand_symtabs_matching_via_partial): Fix file name
5735 matching test.
5736
5737 2013-05-08 Joel Brobecker <brobecker@adacore.com>
5738
5739 * sol-thread.c (info_cb): Factorize the code a little.
5740
5741 2013-05-08 Joel Brobecker <brobecker@adacore.com>
5742
5743 * sol-thread.c (info_cb): Rework the output of the "maintenance
5744 info sol-threads" command a bit.
5745
5746 2013-05-08 Joel Brobecker <brobecker@adacore.com>
5747
5748 * sol-thread.c (info_cb) [ti.ti_state == TD_THR_SLEEP]:
5749 Replace ti.ti_startfunc by ti.ti_pc.
5750
5751 2013-05-08 Joel Brobecker <brobecker@adacore.com>
5752
5753 * solib-aix.c (solib_aix_free_library_list): New function
5754 for the case where HAVE_LIBEXPAT is not defined.
5755
5756 2013-05-07 Sergio Durigan Junior <sergiodj@redhat.com>
5757
5758 PR breakpoints/15413:
5759 * breakpoint.c (condition_completer): Simplify the code to
5760 disconsider multiple locations of breakpoints when completing the
5761 "condition" command.
5762
5763 2013-05-07 Pierre Muller <muller@sourceware.org>
5764
5765 * common/linux-btrace.c: ARI fix: Include "gdb_wait.h"
5766 instead of <sys/wait.h>.
5767
5768 2013-05-07 Pierre Muller <muller@sourceware.org>
5769
5770 * nios2-tdep.c (nios2_dwarf_reg_to_regnum): ARI fix: remove
5771 trailing new line from warning message.
5772
5773 2013-05-07 Pierre Muller <muller@sourceware.org>
5774
5775 * contrib/ari/gdb_ari.sh (SOLIB_ADD, SOLIB_CREATE_INFERIOR_HOOK)
5776 (PC_SOLIB): Change type from ari_deprecate to ari_regression.
5777
5778 2013-05-07 Joel Brobecker <brobecker@adacore.com>
5779
5780 * rs6000-nat.c (rs6000_core_ldinfo): Remove '\n' at end of
5781 error message (ARI fix).
5782
5783 2013-05-07 Joel Brobecker <brobecker@adacore.com>
5784
5785 * features/library-list-aix.dtd: Replace library-list by
5786 library-list-aix.
5787 * rs6000-nat.c: Replace library-list by library-list-aix
5788 throughout.
5789 * solib-aix.c: Likewise.
5790
5791 2013-05-07 Joel Brobecker <brobecker@adacore.com>
5792
5793 * target.h (enum target_object) [TARGET_OBJECT_LIBRARIES_AIX]:
5794 Renames TARGET_OBJECT_AIX_LIBRARIES.
5795 * rs6000-nat.c: Replace TARGET_OBJECT_AIX_LIBRARIES with
5796 TARGET_OBJECT_LIBRARIES_AIX throughout.
5797 * solib-aix.c: Likwise.
5798
5799 2013-05-07 Yao Qi <yao@codesourcery.com>
5800
5801 * solib-dsbt.c (struct dsbt_info) <enable_break2_done>: Remove.
5802 (get_dsbt_info, enable_break, dsbt_clear_solib): Update.
5803
5804 2013-05-07 Yao Qi <yao@codesourcery.com>
5805
5806 * solib-dsbt.c (enable_break): Declare.
5807 (dsbt_current_sos): Remove call to enable_break2.
5808 (enable_break2): Rename to enable_break. Set solib breakpoint
5809 on '_dl_debug_state'.
5810 (enable_break): Remove.
5811
5812 2013-05-07 Luis Machado <lgustavo@codesourcery.com>
5813
5814 * ppc-linux-nat.c (ppc_linux_new_thread): Clear the new thread's
5815 debug state prior to replicating existing hardware watchpoints or
5816 breakpoints.
5817
5818 2013-05-07 Jan Kratochvil <jan.kratochvil@redhat.com>
5819
5820 * gcore.c (gcore_create_callback): Ignore sections with
5821 separate_debug_objfile_backlink != NULL.
5822
5823 2013-05-06 Sandra Loosemore <sandra@codesourcery.com>
5824 Andrew Jenner <andrew@codesourcery.com>
5825 Chung-Lin Tang <cltang@codesourcery.com>
5826 Julian Brown <julian@codesourcery.com>
5827
5828 Based on the nios2-elf port from Altera Corporation.
5829
5830 * Makefile.in (ALL_TARGET_OBS): Add nios2-tdep.o and
5831 nios2-linux-tdep.o.
5832 (HFILES_NO_SRCDIR): Add nios2-tdep.h.
5833 (ALLDEPFILES): Add nios2-tdep.c and nios2-linux-tdep.c.
5834 * configure.tgt: Add nios2*-*-linux* and nios2*-*-* targets.
5835 * nios2-tdep.h: New.
5836 * nios2-tdep.c: New.
5837 * nios2-linux-tdep.c: New.
5838 * features/Makefile (WHICH): Add nios2-linux.
5839 (nios2-linux-expedite): Set.
5840 * features/nios2-cpu.xml: New.
5841 * features/nios2.xml: New.
5842 * features/nios2-linux.xml: New.
5843 * features/nios2.c: New (autogenerated).
5844 * features/nios2-linux.c: New (autogenerated).
5845 * regformats/nios2-linux.dat: New (autogenerated).
5846 * NEWS (Changes since GDB 7.6): Add new Nios II targets
5847 and commands.
5848
5849 2013-05-06 Doug Evans <dje@google.com>
5850
5851 * symfile.c: Whitespace cleanup.
5852
5853 * solist.h (struct target_so_ops): New member clear_so.
5854 * solib-svr4.c (svr4_clear_so): New function.
5855 (_initialize_svr4_solib): Set svr4_so_ops.clear_so.
5856 * solib.c (clear_so): Renamed from free_so_symbols.
5857 All callers updated. Call target clear_so if it exists.
5858
5859 2013-05-06 Tom Tromey <tromey@redhat.com>
5860
5861 * ada-lang.c (ada_value_primitive_packed_val): Don't
5862 call value_incref.
5863 * value.c (set_value_parent): Incref the new parent and decref
5864 the old parent.
5865 (value_copy, value_primitive_field): Use set_value_parent.
5866
5867 2013-05-06 Tom Tromey <tromey@redhat.com>
5868
5869 * dwarf2loc.c (invalid_synthetic_pointer): Move earlier.
5870 (indirect_pieced_value): Call dwarf2_fetch_constant_bytes
5871 if needed.
5872 * dwarf2loc.h (dwarf2_fetch_constant_bytes): Declare.
5873 * dwarf2read.c (write_constant_as_bytes)
5874 (dwarf2_fetch_constant_bytes): New functions.
5875
5876 2013-05-06 Tom Tromey <tromey@redhat.com>
5877
5878 * dwarf2read.c (dwarf2_const_value_data): Remove unused
5879 parameters.
5880 (dwarf2_const_value_attr): Update.
5881
5882 2013-05-06 Tom Tromey <tromey@redhat.com>
5883
5884 * somread.c (som_symfile_offsets): Add 'const' to addrs.
5885 * machoread.c (macho_symfile_offsets): Add 'const' to addrs.
5886 * xcoffread.c (xcoff_symfile_offsets): Add 'const' to addrs.
5887 Remove declaration.
5888
5889 2013-05-06 Tom Tromey <tromey@redhat.com>
5890
5891 * dwarf2read.c (dwarf2_const_value_attr): Use 'obstack', not
5892 objfile's obstack.
5893
5894 2013-05-06 Doug Evans <dje@google.com>
5895
5896 * dbxread.c (process_one_symbol): Constify section_offsets parameter.
5897 * stabsread.h (process_one_symbol): Update declaration.
5898 * dwarf2read.c (dw2_relocate): Constify new_offsets, delta parameters.
5899 * elfread.c (elf_symfile_relocate_probe): Ditto.
5900 * psymtab.c (relocate_psymtabs): Ditto.
5901 * objfiles.c (objfile_relocate1): Constify new_offsets parameter.
5902 (objfile_relocate): Ditto.
5903 * objfiles.h (objfile_relocate): Update declaration.
5904 * symfile.c (relative_addr_info_to_section_offsets): Constify
5905 addrs parameter.
5906 (default_symfile_offsets): Ditto.
5907 (syms_from_objfile_1): Constify offsets parameter.
5908 (syms_from_objfile): Ditto.
5909 (symbol_file_add_with_addrs_or_offsets): Ditto.
5910 (symfile_map_offsets_to_segments): Constify data parameter.
5911 * symfile.h (struct quick_symbol_functions): Constify new_offsets,
5912 delta parameters of member relocate.
5913 (struct sym_probe_fns): Constify new_offsets,
5914 delta parameters of member sym_relocate_probe.
5915 (struct sym_fns): Constify section_addr_info parameter of member
5916 sym_offsets.
5917 (relative_addr_info_to_section_offsets): Update declaration.
5918 (default_symfile_offsets): Ditto.
5919 (syms_from_objfile): Ditto.
5920 (symfile_map_offsets_to_segments): Ditto.
5921
5922 * symfile.c (syms_from_objfile_1): Use correct section count when
5923 objfile->sf == NULL.
5924
5925 2013-05-06 Mike Frysinger <vapier@gentoo.org>
5926
5927 * common/linux-btrace.c (intel_supports_btrace): Fix indentation.
5928
5929 2013-05-06 Doug Evans <dje@google.com>
5930
5931 * psympriv.h (struct partial_symtab): Augment comment for member
5932 section_offsets.
5933
5934 2013-05-06 Joel Brobecker <brobecker@adacore.com>
5935
5936 Reimplement shared library support on ppc-aix...
5937 * target.h (TARGET_OBJECT_AIX_LIBRARIES): New target_object enum.
5938 * features/library-list-aix.dtd: New file.
5939 * solib-aix.h, solib-aix.c: New file.
5940 * rs6000-aix-tdep.c: #include "solib.h" and "solib-aix.h".
5941 (rs6000_find_toc_address_hook): Delete.
5942 (rs6000_push_dummy_call): Rewrite code setting the TOC value.
5943 (rs6000_aix_init_osabi): Register solib_aix_so_ops.
5944 * rs6000-nat.c: Remove "xcoffsolib.h" include. Include
5945 "xml-utils.h".
5946 (map_vmap, vmap_exec, vmap_ldinfo, add_vmap, objfile_symbol_add)
5947 (vmap_symtab, fixup_breakpoints): Delete.
5948 (rs6000_xfer_shared_libraries): New function.
5949 (rs6000_xfer_partial): Add TARGET_OBJECT_AIX_LIBRARIES handling.
5950 (vmap_secs, bss_data_overlap, vmap_add_symbols): Delete.
5951 (xcoff_relocate_symtab, xcoff_relocate_core): Delete.
5952 (rs6000_ptrace_ldinfo, rs6000_core_ldinfo)
5953 (rs6000_xfer_shared_library): New function.
5954 (find_toc_address): Delete.
5955 (_initialize_rs6000_nat): Do not set rs6000_find_toc_address_hook.
5956 * rs6000-tdep.h (rs6000_find_toc_address_hook): Remove.
5957 * xcoffread.c (record_minimal_symbol): Reloate symbol address
5958 before creating minimal symbol. Adjust function description
5959 accordingly.
5960 (scan_xcoff_symtab): Replace call to
5961 prim_record_minimal_symbol_and_info by call to
5962 record_minimal_symbol.
5963 (xcoff_symfile_offsets): Reimplement mostly as a wrapper
5964 around default_symfile_offsets.
5965 * configure.tgt: Add solib-aix.o to gdb_target_obs for
5966 powerpc-aix targets.
5967 * config/rs6000/nm-rs6000.h: Delete.
5968 * config/powerpc/aix.mh (NAT_FILE): Delete.
5969 (NATDEPFILES): Remove xcoffsolib.o.
5970 * Makefile.in (XMLFILES): Add library-list-aix.dtd.
5971 (ALL_TARGET_OBS): Add solib-aix.o.
5972 (HFILES_NO_SRCDIR): Remove xcoffsolib.h and
5973 config/rs6000/nm-rs6000.h. Add solib-aix.h.
5974 (ALLDEPFILES): Add solib-aix.c. Remove xcoffsolib.c.
5975 * xcoffsolib.h, xcoffsolib.c: Delete.
5976
5977 * solib.c (reload_shared_libraries): Remove reference to
5978 SOLIB_CREATE_INFERIOR_HOOK.
5979 * breakpoint.c (handle_solib_event): Remove reference to SOLIB_ADD.
5980 (disable_breakpoints_in_shlibs): Remove reference to PC_SOLIB.
5981 (momentary_bkpt_re_set): Replace SOLIB_ADD by solib_add in
5982 comment.
5983 * corelow.c (deprecated_core_resize_section_table): Delete.
5984 * exec.c: Remove include of xcoffsolib.h".
5985 (map_vmap, vmap): Delete.
5986 (exec_close_1): Remove references to vmap.
5987 (exec_file_attach): Remove vmap handling code, and reference
5988 to DEPRECATED_IBM6000_TARGET.
5989 (bfdsec_to_vmap): Delete.
5990 (exec_files_info): Remove block of code handling VMAP.
5991 * infcmd.c (post_create_inferior): Remove reference to
5992 SOLIB_CREATE_INFERIOR_HOOK and SOLIB_ADD.
5993 * infrun.c (follow_exec): Remove reference to
5994 SOLIB_CREATE_INFERIOR_HOOK.
5995 * stack.c (print_frame): Remove reference to PC_SOLIB.
5996 * solib-dsbt.c (dsbt_current_sos): Adjust comment.
5997 (dsbt_relocate_main_executable): Likewise.
5998 * solib-frv.c (frv_current_sos): Likewise.
5999
6000 2013-05-06 Joel Brobecker <brobecker@adacore.com>
6001
6002 * sol-thread.c (rw_common): Cast BUF to "gdb_byte *" in calls
6003 to target_write_memory and target_read_memory.
6004
6005 2013-05-06 Joel Brobecker <brobecker@adacore.com>
6006
6007 * darwin-nat.c (darwin_setup_fake_stop_event): New function.
6008 (darwin_attach): Adjust using darwin_setup_fake_stop_event.
6009
6010 2013-05-06 Joel Brobecker <brobecker@adacore.com>
6011
6012 * darwin-nat.c: Replace all "%x" instances in format strings
6013 into "0x%x" throughout.
6014
6015 2013-05-06 Joel Brobecker <brobecker@adacore.com>
6016
6017 * darwin-nat.c (darwin_mourn_inferior): Replace call to
6018 gdb_assert by call to MACH_CHECK_ERROR.
6019 (darwin_attach_pid): Raise an error rather than a failed
6020 assertion when various system calls failed. Report a warning
6021 instead of raising a failed assertion when PREV_NOT is not NULL
6022 after call to mach_port_request_notification.
6023 (darwin_ptrace_me): Raise an error rather than a failed
6024 assertion when read returns nonzero.
6025
6026 2013-05-06 Joel Brobecker <brobecker@adacore.com>
6027
6028 * amd64-darwin-tdep.c: Remove #include "gdb_assert.h".
6029
6030 2013-05-05 Jan Kratochvil <jan.kratochvil@redhat.com>
6031
6032 * cleanups.c (restore_my_cleanups): New gdb_assert for SENTINEL_CLEANUP.
6033
6034 2013-05-05 Jan Kratochvil <jan.kratochvil@redhat.com>
6035
6036 * event-top.c (display_gdb_prompt): Call missing do_cleanups.
6037 * infcmd.c (get_return_value) <!stop_regs>: Do not overwrite CLEANUP.
6038 * symfile.c (symfile_bfd_open): New variable back_to. Do not leave
6039 a stale cleanup. Fix double free of NAME.
6040
6041 2013-05-04 Eli Zaretskii <eliz@gnu.org>
6042
6043 * windows-nat.c (windows_delete_thread): Accept an additional
6044 argument, the thread's exit code, and announce thread death when
6045 print_thread_events is non-zero and we are deleting a thread that
6046 is not the main thread.
6047 (get_windows_debug_event): Pass thread exit code to
6048 windows_delete_thread.
6049
6050 2013-05-03 Kevin Buettner <kevinb@redhat.com>
6051
6052 * v850-tdep.c (elf-bfd.h, elf/v850.h): Include.
6053 (R_149_REGNUM, E_NUM_OF_V850E2_REGS, E_SELID_1_R0_REGNUM)
6054 (E_SELID_1_R31_REGNUM, E_SELID_2_R0_REGNUM, E_SELID_2_R31_REGNUM)
6055 (E_SELID_3_R0_REGNUM, E_SELID_3_R31_REGNUM, E_SELID_4_R0_REGNUM)
6056 (E_SELID_4_R31_REGNUM, E_SELID_5_R0_REGNUM, E_SELID_5_R31_REGNUM)
6057 (E_SELID_6_R0_REGNUM, E_SELID_6_R31_REGNUM, E_SELID_7_R0_REGNUM, E_SELID_7_R31_REGNUM)
6058 (E_VR0_REGNUM, E_VR31_REGNUM, E_NUM_OF_V850E3V5_REGS): Define.
6059 (v850_abi, V850_ABI_GCC, V850_ABI_RH850): New enum and constants.
6060 (gdbarch_tdep): New struct.
6061 (v850e2_register_name): Use E_NUM_OF_V850E2_REGS instead of
6062 E_NUM_REGS.
6063 (v850e3v5_register_name): New function.
6064 (v850_register_type): v850e3v5 vector registers are 64-bits wide.
6065 (v850_use_struct_convention): Add `gdbarch' parameter. Add new
6066 code handling the struct return conventions for the RH850 ABI.
6067 Update all callers.
6068 (v850_eight_byte_align_p): New function.
6069 (v850_push_call_dummy): Push structs by value, not by reference
6070 for the RH850 ABI. Add support for eight byte alignment.
6071 (v850_dbtrap_breakpoint_from_pc): New function.
6072 (v850_gdbarch_init): Add ABI detection code. Register
6073 v850e3v5_register_name for the v850e3v5 architecture. Set the
6074 number of registers for v850e3v5. Register
6075 v850_dbtrap_breakpoint_from_pc as appropriate.
6076 (_initialize_gdbarch_init): Registration bfd_arch_v850_rh850.
6077
6078 2013-05-03 Doug Evans <dje@google.com>
6079
6080 * objfiles.c (objfile_relocate): Use gdb_bfd_count_sections instead
6081 of bfd_count_sections.
6082 * solib-target.c (solib_target_relocate_section_addresses): Ditto.
6083 * symfile.c (default_symfile_offsets): Ditto.
6084 (syms_from_objfile_1): Ditto. Make dummy addrs list an array of
6085 one entry, not bfd_count_sections entries.
6086
6087 2013-05-03 Kevin Buettner <kevinb@redhat.com>
6088
6089 * rl78-tdep.c (rl78_register_reggroup_p): Include SP in the
6090 `save' and `restore' register groups. Don't include SPL
6091 or SPH in these groups.
6092 (rl78_dwarf_reg_to_regnum): Adjust mapping for
6093 RL78_PC_REGNUM. Add mappings for RL78_PSW_REGNUM,
6094 RL78_ES_REGNUM, and RL78_CS_REGNUM.
6095 (rl78_gdbarch_init): Set `dwarf2_addr_size' to 4. Invoke
6096 dwarf2_append_unwinders().
6097
6098 2013-05-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
6099
6100 * break-catch-sig.c (signal_catchpoint_breakpoint_hit): Do not
6101 ignore SIGINT and SIGTRAP in case these internal signals are
6102 caught explicitely.
6103
6104 2013-05-01 Joel Brobecker <brobecker@adacore.com>
6105
6106 * darwin-nat.c (darwin_read_write_inferior): Change types
6107 of parameters rdaddr and wraddr to "gdb_byte *". Change type
6108 of copy_count to "mach_msg_type_number_t".
6109 (darwin_read_dyld_info): Change type of parameter
6110 rdaddr to "gdb_byte *".
6111
6112 2013-05-01 Joel Brobecker <brobecker@adacore.com>
6113
6114 * solib-ia64-hpux.c (ia64_hpux_read_dynamic_info): Change cast
6115 of &info->load_map from "char *" to "gdb_byte *".
6116
6117 2013-05-01 Joel Brobecker <brobecker@adacore.com>
6118
6119 * ia64-tdep.c (ia64_access_fpreg): Change cast of val
6120 from "char *" to "gdb_byte *".
6121 (ia64_access_rse_fpreg, ia64_access_mem): Likewise.
6122
6123 2013-04-30 Doug Evans <dje@google.com>
6124
6125 * dwarf2read.c (lookup_dwo_unit): Return NULL if DWO not found.
6126 (init_cutu_and_read_dies): Flag a complaint, not error, for bad
6127 DWO stub. If DWO isn't found, just use stub.
6128 (lookup_dwo_cutu): Don't try DWO if there's a DWP file.
6129
6130 * dwarf2read.c (dw2_find_symbol_file): Initialize filename before
6131 calling init_cutu_and_read_dies.
6132
6133 2013-03-27 Walfred Tedeschi <walfred.tedeschi@intel.com>
6134
6135 * target-descriptions.c (maint_print_c_tdesc_cmd):
6136 Add case to parse structures as register types and
6137 bitfields.
6138
6139 2013-04-30 Walfred Tedeschi <walfred.tedeschi@intel.com>
6140
6141 * MAINTAINERS (Write After Approval): Add myself to the list.
6142
6143 2013-04-30 Joel Brobecker <brobecker@adacore.com>
6144
6145 * sol-thread.c (rw_common): Change type of parameter "buf"
6146 to "gdb_byte *".
6147 (ps_pdwrite, ps_ptwrite): Cast parameter "buf" in call to
6148 rw_common to "gdb_byte *" instead of "char *".
6149
6150 2013-04-30 Joel Brobecker <brobecker@adacore.com>
6151
6152 * sol-thread.c (info_cb) [ti.ti_startfunc != 0]: Change type
6153 of local variable msym to const struct bound_minimal_symbol.
6154 Adjust use accordingly.
6155 [ti.ti_state == TD_THR_SLEEP]: Likewise.
6156
6157 2013-04-30 Samuel Thibault <samuel.thibault@gnu.org>
6158
6159 * i386gnu-nat.c (CREG_OFFSET): New macro.
6160 (creg_offset): New array.
6161 (CREG_ADDR): Use creg_offset instead of reg_offset.
6162
6163 2013-04-30 Joel Brobecker <brobecker@adacore.com>
6164
6165 * mep-tdep.c (mep_write_pc): Delete.
6166 (mep_gdbarch_init): Remove call to set_gdbarch_write_pc.
6167 Add call to set_gdbarch_pc_regnum.
6168
6169 2013-04-30 Joel Brobecker <brobecker@adacore.com>
6170
6171 * common/filestuff.c: Replace #include <dirent.h> by
6172 #include "gdb_dirent.h".
6173
6174 2013-04-30 Joel Brobecker <brobecker@adacore.com>
6175
6176 * common/filestuff.c: Replace #include <sys/stat.h> by
6177 #include "gdb_stat.h".
6178
6179 2013-04-29 Pierre Muller <muller@sourceware.org>
6180
6181 * dwarf2read.c (handle_DW_AT_stmt_list): Avoid ARI warning for
6182 editCase function rule.
6183 (get_DW_AT_signature_type): Likewise.
6184
6185 2013-04-29 Joel Brobecker <brobecker@adacore.com>
6186
6187 * m32r-tdep.c (m32r_write_pc): Delete.
6188 (m32r_gdbarch_init): Remove call to set_gdbarch_write_pc.
6189 Add call to set_gdbarch_pc_regnum.
6190
6191 2013-04-29 Pierre Muller <muller@sourceware.org>
6192
6193 * ./contrib/ari/gdb_ari.sh (editCase rule): Fix spelling error.
6194
6195 2013-04-29 Joel Brobecker <brobecker@adacore.com>
6196
6197 * dwarf2read.c (get_DW_AT_signature_type): Add ARI marker.
6198
6199 2013-04-28 Yao Qi <yao@codesourcery.com>
6200
6201 * solib-dsbt.c (fetch_loadmap): Re-indent.
6202 (displacement_from_map, enable_break2): Likewise.
6203 (dsbt_relocate_section_addresses): Likewise.
6204
6205 2013-04-26 Joel Brobecker <brobecker@adacore.com>
6206
6207 GDB 7.6 released.
6208
6209 2013-04-25 Andreas Kaufmann <Andreas.Kaufmann@synopsys.com>
6210
6211 PR corefiles/14983:
6212 * dwarf2read.c (process_full_comp_unit): Always create a static
6213 block.
6214
6215 2013-04-25 Hui Zhu <hui@codesourcery.com>
6216
6217 * breakpoint.c (build_target_command_list): Change loc->cond_bytecode
6218 to loc->cmd_bytecode.
6219
6220 2013-04-24 Doug Evans <dje@google.com>
6221
6222 * dwarf2read.c (setup_type_unit_groups): Fix comment.
6223
6224 2013-04-22 Keith Seitz <keiths@redhat.com>
6225
6226 * tracepoint.c (trace_save): Call the writer's start method.
6227
6228 2013-04-24 Muhammad Bilal <mbilal@codesourcery.com>
6229
6230 PR gdb/10462
6231 * cli/cli-decode.c (lookup_command): Show an error if there is no space
6232 before argument.
6233
6234 2013-04-23 Tom Tromey <tromey@redhat.com>
6235
6236 * common/filestuff.c: Check USE_WIN32API before including
6237 sys/socket.h.
6238 (HAVE_F_GETFD): New define.
6239 (mark_cloexec): Check HAVE_F_GETFD.
6240 (gdb_open_cloexec): Change 'mode' to unsigned long.
6241 (gdb_socketpair_cloexec): Check HAVE_SOCKETPAIR.
6242 (gdb_pipe_cloexec): Check HAVE_PIPE.
6243 * common/filestuff.h (gdb_open_cloexec): Change 'mode' to unsigned
6244 long.
6245
6246 2013-04-23 Hui Zhu <hui@codesourcery.com>
6247
6248 PR gdb/15293
6249 * breakpoint.c (bpstat_what): Add BPSTAT_WHAT_SINGLE to bp_dprintf.
6250
6251 2013-04-23 Hui Zhu <hui@codesourcery.com>
6252
6253 PR gdb/15165
6254 * breakpoint.c (dprintf_print_recreate): New.
6255 (save_breakpoints): Let it not save dprintf commands.
6256 (initialize_breakpoint_ops): Set dprintf_print_recreate.
6257
6258 2013-04-22 Tom Tromey <tromey@redhat.com>
6259
6260 PR gdb/7912:
6261 * Makefile.in (SFILES): Add filestuff.c
6262 (COMMON_OBS): Add filestuff.o.
6263 (filestuff.o): New target.
6264 * auto-load.c (auto_load_objfile_script_1): Use
6265 gdb_fopen_cloexec.
6266 * auxv.c (procfs_xfer_auxv): Use gdb_open_cloexec.
6267 * cli/cli-cmds.c (shell_escape): Call close_most_fds.
6268 * cli/cli-dump.c (fopen_with_cleanup): Use gdb_fopen_cloexec.
6269 * common/agent.c (gdb_connect_sync_socket): Use
6270 gdb_socket_cloexec.
6271 * common/filestuff.c: New file.
6272 * common/filestuff.h: New file.
6273 * common/linux-osdata.c (linux_common_core_of_thread)
6274 (command_from_pid, commandline_from_pid, print_source_lines)
6275 (linux_xfer_osdata_shm, linux_xfer_osdata_sem)
6276 (linux_xfer_osdata_msg, linux_xfer_osdata_modules): Use
6277 gdb_fopen_cloexec.
6278 * common/linux-procfs.c (linux_proc_get_int)
6279 (linux_proc_pid_has_state): Use gdb_fopen_cloexec.
6280 * config.in, configure: Rebuild.
6281 * configure.ac: Don't check for sys/socket.h. Check for
6282 fdwalk, pipe2.
6283 * corelow.c (core_open): Use gdb_open_cloexec.
6284 * dwarf2read.c (write_psymtabs_to_index): Use gdb_fopen_cloexec.
6285 * fork-child.c (fork_inferior): Call close_most_fds.
6286 * gdb_bfd.c (gdb_bfd_open): Use gdb_open_cloexec.
6287 * inf-child.c (inf_child_fileio_readlink): Use gdb_open_cloexec.
6288 * linux-nat.c (linux_nat_thread_name, linux_proc_pending_signals):
6289 Use gdb_fopen_cloexec.
6290 (linux_proc_xfer_partial, linux_proc_xfer_spu): Use
6291 gdb_open_cloexec.
6292 (linux_async_pipe): Use gdb_pipe_cloexec.
6293 * remote-fileio.c (remote_fileio_func_open): Use
6294 gdb_open_cloexec.
6295 * remote.c (remote_file_put, remote_file_get): Use
6296 gdb_fopen_cloexec.
6297 * ser-pipe.c (pipe_open): Use gdb_socketpair_cloexec,
6298 close_most_fds.
6299 * ser-tcp.c (net_open): Use gdb_socket_cloexec.
6300 * ser-unix.c (hardwire_open): Use gdb_open_cloexec.
6301 * solib.c (solib_find): Use gdb_open_cloexec.
6302 * source.c (openp, find_and_open_source): Use gdb_open_cloexec.
6303 * tracepoint.c (tfile_start): Use gdb_fopen_cloexec.
6304 (tfile_open): Use gdb_open_cloexec.
6305 * tui/tui-io.c (tui_initialize_io): Use gdb_pipe_cloexec.
6306 * ui-file.c (gdb_fopen): Use gdb_fopen_cloexec.
6307 * xml-support.c (xml_fetch_content_from_file): Use
6308 gdb_fopen_cloexec.
6309 * main.c (captured_main): Call notice_open_fds.
6310
6311 2013-04-22 Edjunior Machado <emachado@linux.vnet.ibm.com>
6312
6313 * remote-sim.c (dump_mem): Change the type of 'buf' parameter from
6314 'char *' to 'gdb_byte *'.
6315 (gdbsim_store_register): Change the type of 'tmp' from 'char' to
6316 'gdb_byte'.
6317
6318 2013-04-22 Yao Qi <yao@codesourcery.com>
6319
6320 * infrun.c: Fix typo in comment.
6321
6322 2013-04-22 Andrew Haley <aph@redhat.com>
6323
6324 * arm-tdep.c (BranchDest): Cast result as "unsigned long",
6325 instead of "long".
6326
6327 2013-04-20 Yao Qi <yao@codesourcery.com>
6328
6329 * ctf.c (ctf_fetch_registers): Change the type of 'regs' from
6330 'char *' to 'gdb_byte *'. Cast the return value of
6331 'bt_ctf_get_char_array' to 'gdb_byte *'.
6332
6333 2013-04-19 Pedro Alves <palves@redhat.com>
6334
6335 * configure.ac (build_warnings): Replace -Wno-pointer-sign with
6336 -Wpointer-sign.
6337 * configure: Regenerate.
6338
6339 2013-04-19 Pedro Alves <palves@redhat.com>
6340
6341 * ser-tcp.c (net_read_prim): Cast second argument to recv to
6342 'void *'.
6343
6344 2013-04-19 Pedro Alves <palves@redhat.com>
6345
6346 * monitor.c (monitor_write_memory, monitor_write_memory_bytes):
6347 Change type of 'myaddr' parameter to gdb_byte pointer.
6348 (monitor_write_memory_longlongs): Likewise. Cast 'myaddr' pointer
6349 to 'long long' pointer instead of to 'unsigned long long'.
6350 (monitor_write_memory_block, monitor_read_memory_single)
6351 (monitor_read_memory): Change type of 'myaddr' parameter to
6352 gdb_byte pointer.
6353
6354 2013-04-19 Pedro Alves <palves@redhat.com>
6355
6356 * record.c (validate_history_size): Make parameter 'setting'
6357 unsigned.
6358
6359 2013-04-19 Pedro Alves <palves@redhat.com>
6360
6361 * ctf.c (ctf_write_uploaded_tsv, ctf_write_uploaded_tp): Add casts
6362 to 'gdb_byte *'.
6363
6364 2013-04-19 Pedro Alves <palves@redhat.com>
6365
6366 * cp-valprint.c (cp_print_class_member): Change type of 'fieldno'
6367 local to int.
6368
6369 2013-04-19 Pedro Alves <palves@redhat.com>
6370
6371 * ada-lang.c (print_it_exception): Add cast to gdb_byte *.
6372 * ada-tasks.c (read_fat_string_value): Likewise.
6373
6374 2013-04-19 Pedro Alves <palves@redhat.com>
6375
6376 * dwarf2-frame.c (execute_cfa_program): Make 'bytes_read' local
6377 unsigned. Pass 'tmp' to safe_read_uleb128 instead of the signed
6378 'offset', and adjust.
6379
6380 2013-04-19 Pedro Alves <palves@redhat.com>
6381
6382 * dwarf2read.c (dwarf2_get_dwz_file): Add cast to const char *.
6383 (read_index_from_section): Add cast to 'char *'.
6384
6385 2013-04-19 Pedro Alves <palves@redhat.com>
6386
6387 * xcoffread.c (xcoff_initial_scan): Add cast to 'char *'.
6388
6389 2013-04-19 Pedro Alves <palves@redhat.com>
6390
6391 * coff-pe-read.c (read_pe_exported_syms): Handle strings as char.
6392
6393 2013-04-19 Pedro Alves <palves@redhat.com>
6394
6395 * record-full.c (record_full_get_bookmark): Change local 'ret'
6396 type to char * and add cast to gdb_byte *.
6397 (record_full_goto_bookmark): Handle 'bookmark' argument as a
6398 string.
6399 * reverse.c (goto_bookmark_command): Add casts to gdb_byte *.
6400
6401 2013-04-19 Pedro Alves <palves@redhat.com>
6402
6403 * python/py-inferior.c (infpy_write_memory): Add cast to gdb_byte
6404 * python/py-prettyprint.c (print_string_repr): Change type of
6405 'output' local to char *. Add cast to gdb_byte * in
6406 LA_PRINT_STRING call.
6407 (print_children): Change type of 'output' local to char *.
6408 * python/py-value.c (valpy_string): Add cast to const char * in
6409 PyUnicode_Decode call.
6410
6411 2013-04-19 Pedro Alves <palves@redhat.com>
6412
6413 * remote-mips.c (mips_cksum): Rename 'data' parameter to 'datastr'
6414 and change its type to 'const char *'. Adjust.
6415 (mips_send_packet): Add cast to 'char *', and remove cast to
6416 'unsigned char *'.
6417 (mips_receive_packet): Remove cast to 'unsigned char *'.
6418 (mips_load_srec): Use bfd_byte.
6419 (pmon_makeb64, pmon_zeroset): Make 'chksum' parameter unsigned.
6420 (pmon_checkset): Make 'value' parameter unsigned.
6421
6422 2013-04-19 Pedro Alves <palves@redhat.com>
6423
6424 * common/agent.c (agent_run_command): Add cast to gdb_byte *.
6425
6426 2013-04-19 Pedro Alves <palves@redhat.com>
6427
6428 * remote.c (remote_write_bytes_aux, compare_sections_command)
6429 (remote_read_qxfer)
6430 (remote_search_memory, remote_hostio_pwrite, remote_hostio_pread)
6431 (remote_hostio_readlink, remote_bfd_iovec_pread)
6432 (remote_set_trace_notes): Use gdb_byte when RSP buffer is used as
6433 binary buffer, and char when buffer is used as string.
6434 * tracepoint.c (encode_source_string, tfile_write_uploaded_tp)
6435 (trace_save, tfile_open, traceframe_walk_blocks)
6436 (tfile_fetch_registers): Likewise.
6437
6438 2013-04-19 Pedro Alves <palves@redhat.com>
6439
6440 * ser-base.c (ser_base_write): Change prototype -- take 'void *'
6441 buffer and size_t size. Adjust.
6442 * ser-base.h (ser_base_write): Adjust.
6443 * ser-go32.c (cnts): Change type to size_t.
6444 (dos_write): Change prototype -- take 'void *'
6445 buffer and size_t size. Adjust.
6446 (dos_info): Print elements of 'cnts' as unsigned long.
6447 * serial.c (serial_write): Likewise.
6448 * serial.h (serial_write): Adjust.
6449 (struct serial_ops) <write>: Change prototype -- take 'void *'
6450 buffer and size_t size. Adjust.
6451
6452 2013-04-19 Pedro Alves <palves@redhat.com>
6453
6454 * c-lang.c (evaluate_subexp_c): Cast result of obstack_base to
6455 gdb_byte *.
6456 * linux-tdep.c (linux_make_mappings_corefile_notes): Likewise.
6457
6458 2013-04-19 Pedro Alves <palves@redhat.com>
6459
6460 * alpha-tdep.c (alpha_extract_return_value): Use
6461 regcache_cooked_read_unsigned to read 'v0'.
6462
6463 2013-04-19 Pedro Alves <palves@redhat.com>
6464
6465 * xtensa-tdep.c (execute_l32e, execute_s32e): Change type of
6466 parameters 'at', 'as' and 'offset' to uint32_t.
6467
6468 2013-04-19 Pedro Alves <palves@redhat.com>
6469
6470 * aarch64-tdep.c (aarch64_analyze_prologue): Change type of local
6471 'is64' to signed 'int'.
6472
6473 2013-04-19 Pedro Alves <palves@redhat.com>
6474
6475 * s390-tdep.c (is_rs, is_rsy, is_rx, is_rxy): Change type of 'd2'
6476 parameter to int *.
6477
6478 2013-04-19 Pedro Alves <palves@redhat.com>
6479
6480 * ppc-linux-tdep.c (ppc_skip_trampoline_code): Change local
6481 'insnbuf' buffer type to unsigned int[].
6482
6483 2013-04-19 Pedro Alves <palves@redhat.com>
6484
6485 * mips-tdep.c (mips_read_pc): Change local 'pc' type to LONGEST.
6486
6487 2013-04-19 Pedro Alves <palves@redhat.com>
6488
6489 * mep-tdep.c (mep_get_insn): Change 'insn' parameter type to
6490 unsigned long *.
6491
6492 2013-04-19 Pedro Alves <palves@redhat.com>
6493
6494 * alpha-tdep.c (heuristic_fence_post): Change type to int.
6495 (alpha_heuristic_proc_start): Adjust to check -1 instead of
6496 UINT_MAX.
6497 * mips-tdep.c (heuristic_fence_post): Change type to int.
6498 (heuristic_proc_start): Adjust to check -1 instead of UINT_MAX.
6499
6500 2013-04-19 Pedro Alves <palves@redhat.com>
6501
6502 * cris-tdep.c (usr_cmd_cris_version): Make unsigned.
6503 (struct gdbarch_tdep) <cris_version>: Make unsigned.
6504 (cris_spec_reg_applicable, cris_gdbarch_init): Adjust locals.
6505
6506 2013-04-19 Pedro Alves <palves@redhat.com>
6507
6508 * avr-tdep.c (avr_io_reg_read_command): New local 'bufstr'. Use
6509 it to get a string view of the byte buffer.
6510 * i386-cygwin-tdep.c (core_process_module_section): Change local 'buf'
6511 type to gdb_byte *. Adjust.
6512 * linux-tdep.c (linux_info_proc, linux_find_memory_regions_full):
6513 Change local to char *.
6514 * solib-darwin.c (find_program_interpreter): Change return type to
6515 char *. Adjust.
6516 (darwin_solib_get_all_image_info_addr_at_init): Adjust.
6517 * solib-dsbt.c (enable_break2): Change local 'buf' to char *.
6518 * solib-frv.c (enable_break2): Change local 'buf' to char *.
6519 * solib-spu.c (spu_current_sos): Add gdb_byte * cast.
6520 * solib-svr4.c (find_program_interpreter): Change return type to
6521 char *. Adjust.
6522 (enable_break): Change local 'interp_name' to char *.
6523 * spu-multiarch.c (spu_xfer_partial): Add cast to 'char *'.
6524 * spu-tdep.c (spu_pseudo_register_read_spu): Add cast to 'char *'.
6525 (spu_pseudo_register_write_spu): Use char for string buffer.
6526 Adjust.
6527 (info_spu_event_command, info_spu_signal_command): Add casts to
6528 'char *'.
6529
6530 2013-04-19 Pedro Alves <palves@redhat.com>
6531
6532 * aarch64-tdep.c (aarch64_default_breakpoint): Change type to
6533 gdb_byte[].
6534 (aarch64_breakpoint_from_pc): Change return type to gdb_byte *.
6535 * ada-lang.c (ada_value_assign): Use gdb_byte.
6536 * alphanbsd-tdep.c (sigtramp_retcode): Change type to gdb_byte[].
6537 (alphanbsd_sigtramp_offset): Use gdb_byte.
6538 * arm-linux-tdep.c (arm_linux_arm_le_breakpoint)
6539 (arm_linux_arm_be_breakpoint, eabi_linux_arm_le_breakpoint)
6540 (eabi_linux_arm_be_breakpoint, arm_linux_thumb_be_breakpoint)
6541 (arm_linux_thumb_le_breakpoint, arm_linux_thumb2_be_breakpoint)
6542 (arm_linux_thumb2_le_breakpoint): Change type to gdb_byte[].
6543 * arm-tdep.c (arm_stub_unwind_sniffer)
6544 (arm_displaced_init_closure): Use gdb_byte.
6545 (arm_default_arm_le_breakpoint, arm_default_arm_be_breakpoint)
6546 (arm_default_thumb_le_breakpoint)
6547 (arm_default_thumb_be_breakpoint): Change type to gdb_byte[].
6548 * arm-tdep.h (struct gdbarch_tdep) <arm_breakpoint,
6549 thumb_breakpoint, thumb2_breakpoint>: Change type to gdb_byte *.
6550 * arm-wince-tdep.c (arm_wince_le_breakpoint)
6551 (arm_wince_thumb_le_breakpoint): Change type to gdb_byte[].
6552 * armnbsd-tdep.c (arm_nbsd_arm_le_breakpoint)
6553 (arm_nbsd_arm_be_breakpoint, arm_nbsd_thumb_le_breakpoint)
6554 (arm_nbsd_thumb_be_breakpoint): Change type to gdb_byte[].
6555 * armobsd-tdep.c (arm_obsd_thumb_le_breakpoint)
6556 (arm_obsd_thumb_be_breakpoint): Change type to gdb_byte[].
6557 * cris-tdep.c (push_stack_item, cris_push_dummy_call)
6558 (cris_store_return_value, cris_extract_return_value): Use
6559 gdb_byte.
6560 (constraint): Change type of parameter to char * from signed
6561 char*. Use gdb_byte.
6562 * dwarf2loc.c (read_pieced_value, write_pieced_value): Change type
6563 of local buffer to gdb_byte *.
6564 * dwarf2read.c (read_index_from_section): Use gdb_byte.
6565 (create_dwp_hash_table): Change type of locals to gdb_byte *.
6566 (add_address_entry): Change type of local buffer to gdb_byte[].
6567 * frv-tdep.c (frv_adjust_breakpoint_address, find_func_descr)
6568 (frv_push_dummy_call): Use gdb_byte.
6569 * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code)
6570 (hppa_hpux_supply_ss_fpblock, hppa_hpux_supply_ss_wide)
6571 (hppa_hpux_supply_save_state): Use gdb_byte.
6572 * hppa-tdep.c (hppa32_push_dummy_call)
6573 (hppa64_convert_code_addr_to_fptr): Use gdb_byte.
6574 * ia64-tdep.c (extract_bit_field, replace_bit_field)
6575 (slotN_contents, replace_slotN_contents): Change type of parameter
6576 to gdb_byte *.
6577 (fetch_instruction, ia64_pseudo_register_write)
6578 (ia64_register_to_value, ia64_value_to_register)
6579 (ia64_extract_return_value, ia64_store_return_value)
6580 (ia64_push_dummy_call): Use gdb_byte.
6581 * m32c-tdep.c (m32c_return_value): Remove cast.
6582 * m68hc11-tdep.c (m68hc11_pseudo_register_write)
6583 (m68hc11_push_dummy_call, m68hc11_store_return_value): Use
6584 gdb_byte.
6585 * mipsnbsd-tdep.c (mipsnbsd_get_longjmp_target): Use gdb_byte.
6586 * mn10300-tdep.c (mn10300_store_return_value)
6587 (mn10300_breakpoint_from_pc, mn10300_push_dummy_call): Use
6588 gdb_byte.
6589 * moxie-tdep.c (moxie_process_readu): Use gdb_byte.
6590 (moxie_process_record): Remove casts.
6591 * ppc-ravenscar-thread.c (supply_register_at_address)
6592 (ppc_ravenscar_generic_store_registers): Use gdb_byte.
6593 * ravenscar-thread.c (get_running_thread_id): Use gdb_byte.
6594 * remote-m32r-sdi.c (m32r_fetch_register): Use gdb_byte.
6595 * remote-mips.c (mips_xfer_memory): Use gdb_byte.
6596 * remote.c (compare_sections_command): Use gdb_byte.
6597 * score-tdep.c (score7_free_memblock): Change type of parameter to
6598 gdb_byte *.
6599 * sh-tdep.c (sh_justify_value_in_reg): Change return type to
6600 gdb_byte *. Use gdb_byte.
6601 (sh_push_dummy_call_fpu): Use gdb_byte.
6602 (sh_extract_return_value_nofpu, sh_extract_return_value_fpu)
6603 (sh_store_return_value_nofpu, sh_store_return_value_fpu)
6604 (sh_register_convert_to_virtual, sh_register_convert_to_raw):
6605 Change parameter type to 'gdb_byte *'. Use gdb_byte.
6606 (sh_pseudo_register_read, sh_pseudo_register_write): Use gdb_byte.
6607 * sh64-tdep.c (sh64_push_dummy_call): Use gdb_byte.
6608 (sh64_store_return_value, sh64_register_convert_to_virtual):
6609 Change parameter type to 'gdb_byte *'. Use gdb_byte.
6610 (sh64_pseudo_register_write): Use gdb_byte.
6611 * solib-darwin.c (darwin_current_sos): Add casts to 'gdb_byte *'.
6612 * solib-irix.c (fetch_lm_info): Likewise. Use gdb_byte for byte
6613 buffer.
6614 (irix_current_sos): Use gdb_byte.
6615 * solib-som.c (som_current_sos): Use gdb_byte.
6616 * sparc-ravenscar-thread.c (supply_register_at_address)
6617 (sparc_ravenscar_generic_store_registers): Use gdb_byte.
6618 * spu-multiarch.c (spu_xfer_partial): Add cast to 'char *'.
6619 * spu-tdep.c (spu_get_overlay_table): Use gdb_byte.
6620 * tic6x-tdep.c (tic6x_breakpoint_from_pc): Change return type to
6621 'gdb_byte *'.
6622 * tic6x-tdep.h (struct gdbarch_tdep) <breakpoint>: Change type to
6623 'gdb_byte *'.
6624 * tracepoint.c (tfile_fetch_registers): Use gdb_byte.
6625 * xstormy16-tdep.c (xstormy16_extract_return_value)
6626 (xstormy16_store_return_value): Change parameter type to
6627 'gdb_byte *'. Adjust.
6628 (xstormy16_push_dummy_call): Use gdb_byte.
6629 * xtensa-tdep.c (xtensa_scan_prologue, call0_ret)
6630 (call0_analyze_prologue, execute_code): Use gdb_byte.
6631
6632 2013-04-19 Vladimir Kargov <kargov@gmail.com>
6633 Pedro Alves <palves@redhat.com>
6634
6635 * i387-tdep.c (i387_print_float_info): Use gdb_byte for pointer to
6636 value contents.
6637
6638 2013-04-17 Doug Evans <dje@google.com>
6639
6640 * dwarf2read.c (struct signatured_type): New member type.
6641 (struct attribute): Replace member signatured_type with signature.
6642 (DW_SIGNATURE): Replaces DW_SIGNATURE_TYPE.
6643 (read_call_site_scope): Call follow_die_ref instead of
6644 follow_die_ref_or_sig.
6645 (read_structure_type): Rewrite handling of signatured types.
6646 (read_enumeration_type): Ditto.
6647 (read_attribute_value): Update.
6648 (build_error_marker_type): New function.
6649 (lookup_die_type): Add assert. Rewrite handling of signatured types.
6650 Don't call error for bad types, just build an error marker type.
6651 (dump_die_shallow): Update.
6652 (follow_die_sig_1): Renamed from follow_die_sig.
6653 Don't call error for bad types, instead return NULL.
6654 (follow_die_sig): New function.
6655 (get_signatured_type, get_DW_AT_signature_type): New functions.
6656
6657 2013-04-17 Yufeng Zhang <yufeng.zhang@arm.com>
6658
6659 * aarch64-tdep.c (aarch64_write_pc): Removed.
6660 (aarch64_gdbarch_init): Remove set_gdbarch_write_pc of the above
6661 function.
6662
6663 2013-04-17 Yao Qi <yao@codesourcery.com>
6664
6665 * top.c (print_gdb_configuration): Print configure-time
6666 parameter on using libbabeltrace or not.
6667
6668 2013-04-16 Pedro Alves <palves@redhat.com>
6669
6670 * copyright.py (EXCLUDE_LIST): Add gdb/common/glibc_thread_db.h.
6671
6672 2013-04-16 Pedro Alves <palves@redhat.com>
6673
6674 * common/glibc_thread_db.h: Update from upstream glibc
6675 (git 568035b7874a099087b77f7bba3e36a1173787b0).
6676
6677 2013-04-16 Pedro Alves <palves@redhat.com>
6678
6679 * common/gdb_thread_db.h [!HAVE_THREAD_DB_H]: Factor out to ...
6680 * common/glibc_thread_db.h: ... this new file ...
6681 * common/gdb_thread_db.h [!HAVE_THREAD_DB_H]: ... and include it.
6682
6683 2013-04-16 Will Newton <will.newton@gmail.com>
6684 Pedro Alves <palves@redhat.com>
6685
6686 PR build/11881
6687
6688 * common/gdb_thread_db.h (LIBTHREAD_DB_SO)
6689 (LIBTHREAD_DB_SEARCH_PATH): Move outside of #ifdef
6690 HAVE_THREAD_DB_H.
6691
6692 2013-04-16 Pedro Alves <palves@redhat.com>
6693 Eli Zaretskii <eliz@gnu.org>
6694
6695 * NEWS: Mention "set foo unlimited".
6696
6697 2013-04-15 Doug Evans <dje@google.com>
6698
6699 * dwarf2read.c (struct dwo_file): Replace member "cus" with "cu".
6700 (struct create_dwo_cu_data): Renamed from create_dwo_info_table_data.
6701 (create_dwo_cu_reader): Renamed from
6702 create_dwo_debug_info_hash_table_reader.
6703 (create_dwo_cu): Renamed from create_dwo_debug_info_hash_table.
6704 Remove support for multiple CUs in a DWO file.
6705 (open_and_init_dwo_file, lookup_dwo_cutu): Update.
6706
6707 * dwarf2read.c (create_debug_types_hash_table): Use hex_string
6708 instead of phex.
6709 (lookup_dwo_unit, create_dwo_debug_info_hash_table_reader): Ditto.
6710 (create_dwo_in_dwp): Ditto.
6711
6712 2013-04-15 Tom Tromey <tromey@redhat.com>
6713
6714 * NEWS: Move recent entries into "since 7.6" section.
6715
6716 2013-04-15 Tom Tromey <tromey@redhat.com>
6717
6718 PR c++/13588:
6719 * NEWS: Update.
6720 * break-catch-throw.c (struct exception_catchpoint)
6721 <exception_rx, pattern>: New fields.
6722 (fetch_probe_arguments, dtor_exception_catchpoint)
6723 (check_status_exception_catchpoint)
6724 (print_one_detail_exception_catchpoint): New functions.
6725 (handle_gnu_v3_exceptions): Add "except_rx" argument.
6726 Compile regular expression if needed.
6727 (extract_exception_regexp): New function.
6728 (catch_exception_command_1): Use extract_exception_regexp.
6729 (compute_exception): Use fetch_probe_arguments.
6730 (initialize_throw_catchpoint_ops): Set dtor, print_one_detail,
6731 and check_status fields.
6732 * cp-abi.c (cplus_typename_from_type_info): New function.
6733 * cp-abi.h (cplus_typename_from_type_info): Declare.
6734 (struct cp_abi_ops) <get_typename_from_type_info>: New field.
6735 * gdb_regex.h (compile_rx_or_error): Declare.
6736 * gnu-v3-abi.c (gnuv3_get_typename_from_type_info): Update
6737 comment.
6738 (init_gnuv3_ops): Set get_type_from_type_info field.
6739 * probe.c (compile_rx_or_error): Move...
6740 * utils.c (compile_rx_or_error): ... here.
6741
6742 2013-04-15 Tom Tromey <tromey@redhat.com>
6743
6744 PR c++/15176:
6745 * NEWS: Update.
6746 * break-catch-throw.c (compute_exception): New function.
6747 (exception_funcs): New global.
6748 (_initialize_break_catch_throw): Create $_exception.
6749 * cp-abi.c (cplus_type_from_type_info): New function.
6750 * cp-abi.h (cplus_type_from_type_info): Declare.
6751 (struct cp_abi_ops) <get_type_from_type_info>: New field.
6752 * gnu-v3-abi.c (gnuv3_get_typename_from_type_info)
6753 (gnuv3_get_type_from_type_info): New functions.
6754 (init_gnuv3_ops): Set get_type_from_type_info ABI field.
6755
6756 2013-04-15 Tom Tromey <tromey@redhat.com>
6757
6758 * break-catch-throw.c (struct exception_names): New.
6759 (exception_functions): Change type.
6760 (re_set_exception_catchpoint): Look for SDT probes.
6761
6762 2013-04-15 Tom Tromey <tromey@redhat.com>
6763
6764 PR c++/10119:
6765 * break-catch-throw.c (exception_functions): New global.
6766 (gnu_v3_exception_catchpoint_ops): Move earlier.
6767 (struct exception_catchpoint): New.
6768 (classify_exception_breakpoint): Rewrite.
6769 (re_set_exception_catchpoint): New function.
6770 (handle_gnu_v3_exceptions): Return void. Use init_catchpoint.
6771 Allocate a struct exception_catchpoint.
6772 (catch_exception_command_1): Update.
6773 (initialize_throw_catchpoint_ops): Set 're_set' method.
6774
6775 2013-04-15 Tom Tromey <tromey@redhat.com>
6776
6777 * Makefile.in (SFILES): Add break-catch-throw.c
6778 (COMMON_OBS): Add break-catch-throw.o.
6779 * break-catch-throw.c: New file.
6780 * breakpoint.c: Move exception-catching code to new file.
6781 (ep_parse_optional_if_clause): No longer static.
6782 * breakpoint.h (ep_parse_optional_if_clause): Declare.
6783
6784 2013-04-15 Tom Tromey <tromey@redhat.com>
6785
6786 PR c++/9065:
6787 * NEWS: Update.
6788 * breakpoint.c (watchpoint_exp_is_const): Add OP_TYPEID.
6789 * c-exp.y (TYPEID): New token.
6790 (exp): Add new TYPEID productions.
6791 (ident_tokens): Add "typeid".
6792 * cp-abi.c (cplus_typeid, cplus_typeid_type): New functions.
6793 * cp-abi.h (cplus_typeid, cplus_typeid_type): Declare.
6794 (struct cp_abi_ops) <get_typeid, get_typeid_type>: New fields.
6795 * eval.c (evaluate_subexp_standard) <OP_TYPEID>: New case.
6796 * expprint.c (dump_subexp_body_standard) <OP_TYPEID>: New
6797 case.
6798 * gnu-v3-abi.c (std_type_info_gdbarch_data): New global.
6799 (build_std_type_info_type, gnuv3_get_typeid_type)
6800 (gnuv3_get_typeid): New functions.
6801 (init_gnuv3_ops): Initialize std_type_info_gdbarch_data. Set
6802 new fields on ABI object.
6803 * parse.c (operator_length_standard) <OP_TYPEID>: New case.
6804 * std-operator.def (OP_TYPEID): New.
6805
6806 2013-04-15 Tom Tromey <tromey@redhat.com>
6807
6808 * elfread.c (elf_symtab_read): Install versioned symbol under
6809 unversioned name as well.
6810
6811 2013-04-15 Tom Tromey <tromey@redhat.com>
6812
6813 PR c++/11990:
6814 * c-lang.c (cplus_language_defn): Use gdb_demangle.
6815 * c-typeprint.c (c_type_print_base): Use gdb_demangle.
6816 * cp-support.c (mangled_name_to_comp): Use gdb_demangle.
6817 (gdb_demangle): New function.
6818 * cp-support.h (gdb_demangle): Declare.
6819 * dwarf2read.c (dwarf2_physname, fixup_partial_die)
6820 (dwarf2_name): Use gdb_demangle.
6821 * gdbtypes.c (check_stub_method): Use gdb_demangle.
6822 * gnu-v3-abi.c (gnuv3_rtti_type): Strip @plt and version
6823 suffixes from name.
6824 (gnuv3_print_method_ptr): Use gdb_demangle.
6825 * jv-lang.c (java_demangle): Use gdb_demangle.
6826 * jv-typeprint.c (java_type_print_base): Use gdb_demangle.
6827 * language.c (unk_lang_demangle): Use gdb_demangle.
6828 * symtab.c (symbol_find_demangled_name)
6829 (demangle_for_lookup): Use gdb_demangle.
6830
6831 2013-04-15 Tom Tromey <tromey@redhat.com>
6832
6833 PR c++/12824:
6834 * NEWS: Update.
6835 * breakpoint.c (enum exception_event_kind) <EX_EVENT_RETHROW>:
6836 New constant.
6837 (classify_exception_breakpoint): New function.
6838 (print_it_exception_catchpoint, print_one_exception_catchpoint)
6839 (print_mention_exception_catchpoint)
6840 (print_recreate_exception_catchpoint, handle_gnu_v3_exceptions)
6841 (catch_exception_command_1): Handle "rethrow" catchpoint.
6842 (catch_rethrow_command): New function.
6843 (_initialize_breakpoint): Add "catch rethrow" command.
6844
6845 2013-04-15 Pierre Muller <muller@sourceware.org>
6846
6847 * contrib/ari/gdb_ari.sh (write_pc rule): Do not consider
6848 set_gdbarch_write_pc as deprecated anymore.
6849
6850 2013-04-15 Joel Brobecker <brobecker@adacore.com>
6851
6852 * spu-tdep.c (spu_write_pc): Add empty line after local variable
6853 declarations.
6854
6855 2013-04-13 Yao Qi <yao@codesourcery.com>
6856
6857 * ctf.c (_initialize_ctf): Include "completer.h".
6858 Call add_target_with_completer instead of add_target.
6859
6860 2013-04-12 Jan Kratochvil <jan.kratochvil@redhat.com>
6861
6862 Fix GDB regression related to PR binutils/14813.
6863 * jit.c (mem_bfd_iovec_close): Return 0 for success.
6864 * minidebug.c (lzma_close): Add return value comment.
6865 * remote.c (remote_bfd_iovec_close): Return 0 for success.
6866 * solib-spu.c (spu_bfd_iovec_close): Likewise.
6867 * spu-linux-nat.c (spu_bfd_iovec_close): Likewise.
6868
6869 2013-04-12 Jan Kratochvil <jan.kratochvil@redhat.com>
6870
6871 * config.in: Regenerate.
6872
6873 2013-04-12 Tom Tromey <tromey@redhat.com>
6874
6875 * dwarf2-frame.c (struct comp_unit) <dwarf_frame_buffer>: Now
6876 const.
6877 * dwarf2read.c (struct dwarf2_section_info) <buffer>: Now const.
6878 (struct die_reader_specs) <buffer>: Likewise.
6879 (die_reader_func_ftype): Make 'info_ptr' const.
6880 (struct line_header) <include_dirs, statement_program_start,
6881 statement_program_end>: Now const.
6882 (struct file_entry) <name>: Likewise.
6883 (struct partial_die_info) <sibling>: Likewise.
6884 (struct dwarf_block) <data>: Likewise.
6885 (dwarf2_read_section): Remove cast.
6886 (dwarf2_get_section_info): Make 'bufp' const.
6887 (read_index_from_section): Constify.
6888 (dw2_get_file_names_reader): Make 'info_ptr' const.
6889 (dw2_get_primary_filename_reader): Likewise.
6890 (read_comp_unit_head): Make 'info_ptr' and return type const.
6891 (read_and_check_comp_unit_head, read_and_check_type_unit_head):
6892 Likewise.
6893 (read_abbrev_offset): Constify.
6894 (dwarf2_create_include_psymtab): Make 'name' const.
6895 (create_debug_types_hash_table): Update.
6896 (read_cutu_die_from_dwo): Make 'result_info_ptr' const.
6897 (init_cutu_and_read_dies, init_cutu_and_read_dies_no_follow):
6898 Constify.
6899 (process_psymtab_comp_unit_reader, build_type_psymtabs_reader)
6900 (load_partial_comp_unit_reader): Make 'info_ptr' const.
6901 (read_comp_units_from_section): Constify.
6902 (peek_abbrev_code, peek_die_abbrev, skip_children, skip_one_die)
6903 (locate_pdi_sibling, load_full_comp_unit_reader): Make 'info_ptr'
6904 const.
6905 (dwarf2_compute_name, setup_type_unit_groups): Constify.
6906 (create_dwo_debug_info_hash_table): Make 'info_ptr' const.
6907 (create_dwp_hash_table, dwarf2_ranges_read)
6908 (dwarf2_record_block_ranges): Constify.
6909 (read_die_and_children, read_die_and_siblings_1)
6910 (read_die_and_siblings): Make 'info_ptr' and 'new_info_ptr'
6911 const.
6912 (read_full_die_1, read_full_die): Make 'info_ptr' const.
6913 (abbrev_table_read_table): Constify.
6914 (load_partial_dies): Make 'info_ptr' const.
6915 (read_partial_die, read_attribute_value, read_attribute): Make
6916 'info_ptr' and return type const.
6917 (read_address, read_initial_length)
6918 (read_checked_initial_length_and_offset, read_offset)
6919 (read_offset_1, read_n_bytes, read_direct_string): Make 'buf'
6920 const.
6921 (read_direct_string): Make 'buf' and return type const.
6922 (read_indirect_string_at_offset, read_indirect_string_from_dwz)
6923 (read_indirect_string): Make return type const.
6924 (read_unsigned_leb128, read_signed_leb128): Make 'buf' const.
6925 (read_addr_index_from_leb128, dwarf2_read_addr_index_reader): Make
6926 'info_ptr' const.
6927 (read_str_index): Make return type const.
6928 (add_include_dir): Make 'include_dir' const.
6929 (add_file_name): Make 'name' const.
6930 (dwarf_decode_line_header): Constify.
6931 (psymtab_include_file_name): Make return type const.
6932 (dwarf_decode_lines_1, dwarf_decode_lines): Constify.
6933 (dwarf2_start_subfile): Make 'filename' const.
6934 (dwarf2_const_value_attr): Make 'bytes' const.
6935 (read_signatured_type_reader): Make 'info_ptr' const.
6936 (decode_locdesc): Constify.
6937 (skip_form_bytes): Make 'bytes', 'buffer_end', and return type
6938 const.
6939 (skip_unknown_opcode): Make 'opcode_definitions', 'mac_ptr',
6940 'mac_end', and return type const.
6941 (dwarf_parse_macro_header): Make 'mac_ptr' and return type const.
6942 (dwarf_decode_macro_bytes): Make 'mac_ptr', 'mac_end', and return
6943 type const.
6944 (per_cu_header_read_in): Constify.
6945 * symfile.h (dwarf2_get_section_info): Update.
6946
6947 2013-04-12 Tom Tromey <tromey@redhat.com>
6948
6949 * symtab.h (struct general_symbol_info) <value.bytes>: Make const.
6950
6951 2013-04-12 Eli Zaretskii <eliz@gnu.org>
6952
6953 * NEWS: Mention "show configuration", --configuration.
6954 * top.c (print_gdb_configuration): New function, displays the
6955 details about GDB configure-time parameters.
6956 (print_gdb_version): Mention "show configuration".
6957 * cli/cli-cmds.c (show_configuration): New function.
6958 (_initialize_cli_cmds): Add the "show configuration" command.
6959 * main.c (captured_main) <print_configuration>: New static var.
6960 <long_options>: Use it.
6961 If --configuration was given, call print_gdb_configuration.
6962
6963 2013-04-11 Jan Kratochvil <jan.kratochvil@redhat.com>
6964 Pedro Alves <palves@redhat.com>
6965
6966 * Makefile.in (HAVE_NATIVE_GCORE_TARGET): New.
6967 (generated_files): Add gcore.
6968 (install-only, uninstall): Add gcore if HAVE_NATIVE_GCORE_TARGET or
6969 HAVE_NATIVE_GCORE_HOST.
6970 (gcore): New.
6971 * NEWS (Changes since GDB 7.6): Mention newly installed gcore.
6972 * config/alpha/alpha-osf3.mh, config/i386/fbsd.mh,
6973 config/i386/fbsd64.mh, config/i386/i386gnu.mh, config/i386/i386sol2.mh,
6974 config/i386/sol2-64.mh, config/mips/irix5.mh, config/mips/irix6.mh,
6975 config/powerpc/fbsd.mh, config/sparc/fbsd.mh, config/sparc/sol2.mh:
6976 Add HAVE_NATIVE_GCORE_HOST.
6977 * configure: Regenerate.
6978 * configure.ac (HAVE_NATIVE_GCORE_TARGET): New, set it, AC_SUBST it.
6979 New AC_SUBST fir GDB_TRANSFORM_NAME and GCORE_TRANSFORM_NAME. New
6980 AC_CONFIG_FILES for gcore.
6981 * configure.tgt: Add gdb_have_gcore to the initial comment. Set
6982 gdb_have_gcore.
6983 * gdb_gcore.sh: Rename to ...
6984 * gcore.in: ... here. Remove gcore.sh comment. Use GDB_TRANSFORM_NAME
6985 and GCORE_TRANSFORM_NAME substitutions.
6986
6987 Fix parsing tabs in ${gdb_target_obs}.
6988 * configure.tgt (gdb_have_gcore): Replace case with for and if.
6989
6990 2013-04-11 Jan Kratochvil <jan.kratochvil@redhat.com>
6991
6992 * remote.c (unpush_and_perror): Add output message final dot.
6993
6994 2013-04-11 Yao Qi <yao@codesourcery.com>
6995
6996 * tracepoint.c (tfile_interp_line): Fit parameters line and
6997 utpp in one line.
6998
6999 2013-04-10 Joel Brobecker <brobecker@adacore.com>
7000
7001 * solib.c (solib_map_sections): Remove code overwriting
7002 SO->SO_NAME with the bfd's filename.
7003
7004 2013-04-10 Pedro Alves <palves@redhat.com>
7005
7006 * cli/cli-decode.c (integer_unlimited_completer): New function.
7007 (add_setshow_integer_cmd, add_setshow_uinteger_cmd)
7008 (add_setshow_zuinteger_unlimited_cmd): Install the "unlimited"
7009 completer.
7010 * cli/cli-setshow.c: Include "cli/cli-utils.h".
7011 (is_unlimited_literal): New function.
7012 (do_set_command): Handle literal "unlimited" arguments.
7013 * frame.c (_initialize_frame) <set backtrace limit>: Document
7014 "unlimited".
7015 * printcmd.c (_initialize_printcmd) <set print
7016 max-symbolic-offset>: Add help text.
7017 * record-full.c (_initialize_record_full) <set record full
7018 insn-number-max>: Likewise.
7019 * record.c (_initialize_record) <set record
7020 instruction-history-size, set record function-call-history-size>:
7021 Add help text.
7022 * ser-tcp.c (_initialize_ser_tcp) <set tcp connect-timeout>: Add
7023 help text.
7024 * tracepoint.c (_initialize_tracepoint) <set trace-buffer-size>:
7025 Likewise.
7026 * source.c (_initialize_source) <set listsize>: Add help text.
7027 * utils.c (initialize_utils) <set height, set width>: Likewise.
7028 <set pagination>: Mention "set height unlimited".
7029 * valprint.c (_initialize_valprint) <set print elements, set print
7030 repeats>: Document "unlimited".
7031
7032 2013-04-10 Pedro Alves <palves@redhat.com>
7033
7034 * cli/cli-cmds.c (quit_command): Call query_if_trace_running
7035 instead of disconnect_tracing.
7036 * infcmd.c (detach_command, disconnect_command): Call
7037 query_if_trace_running. Adjust.
7038 * top.c: Include "tracepoint.h".
7039 (quit_target): Delete. Contents moved ...
7040 (quit_force): ... here. Wrap each stage of teardown in
7041 TRY_CATCH. Call disconnect_tracing before detaching.
7042
7043 2013-04-10 Hui Zhu <hui@codesourcery.com>
7044 Yao Qi <yao@codesourcery.com>
7045
7046 * configure.ac: Check libbabeltrace is installed.
7047 * config.in: Regenerate.
7048 * configure: Regenerate.
7049 * Makefile.in (LIBBABELTRACE): New.
7050 (CLIBS): Add LIBBABELTRACE.
7051 * ctf.c: Include "exec.h".
7052 (CTF_EVENT_ID_STATUS, CTF_EVENT_ID_TSV_DEF): New macros.
7053 (CTF_EVENT_ID_TP_DEF, ctf_save_write_int32): New macros.
7054 (ctf_save_metadata_header): Define new type aliases in
7055 metadata.
7056 (ctf_write_header): Define event type "tsv_def" and "tp_def"
7057 in metadata. Start a new faked packet for trace status.
7058 (ctf_write_status): Write trace status to CTF.
7059 (ctf_write_uploaded_tsv): Write TSV to CTF.
7060 (ctf_write_uploaded_tp): Write tracepoint definition to CTF.
7061 (ctf_write_definition_end): End the faked packet.
7062
7063 (ctx, ctf_iter, trace_dirname): New.
7064 (start_pos): New variable.
7065 (ctf_destroy, ctf_open_dir, ctf_open): New.
7066 (SET_INT32_FIELD, SET_ARRAY_FIELD, SET_STRING_FIELD): New
7067 macros.
7068 (ctf_read_tsv, ctf_read_tp, ctf_close, ctf_files_info): New.
7069 (ctf_fetch_registers, ctf_xfer_partial): New.
7070 (ctf_get_trace_state_variable_value): New.
7071 (ctf_get_tpnum_from_frame_event): New.
7072 (ctf_get_traceframe_address): New.
7073 (ctf_trace_find, ctf_has_stack): New.
7074 (ctf_has_registers, ctf_traceframe_info, init_ctf_ops): New.
7075 (ctf_get_trace_status, ctf_read_status): New.
7076 (_initialize_ctf): New.
7077 * tracepoint.c (get_tracepoint_number): New
7078 (get_uploaded_tsv): Remove 'static'.
7079 (struct traceframe_info, trace_regblock_size): Move it to ...
7080 * tracepoint.h: ... here.
7081 (get_tracepoint_number): Declare it.
7082 (get_uploaded_tsv): Declare it.
7083
7084 * NEWS: Mention new configure option.
7085
7086 2013-04-10 Pedro Alves <palves@redhat.com>
7087 Hui Zhu <hui@codesourcery.com>
7088
7089 * breakpoint.c (dprintf_re_set): New.
7090 (initialize_breakpoint_ops): Set dprintf_breakpoint_ops re_set
7091 to dprintf_re_set.
7092
7093 2013-04-09 Joel Brobecker <brobecker@adacore.com>
7094
7095 * configure.tgt (gdb_target_obs) <powerpc-*-aix* | rs6000-*-*>:
7096 Remove solib-svr4.o from the list.
7097
7098 2013-04-09 Joel Brobecker <brobecker@adacore.com>
7099
7100 * varobj.c (update_dynamic_varobj_children) [!HAVE_PYTHON]:
7101 Use gdb_assert_not_reached instead of invalid boolean expression.
7102
7103 2013-04-09 Pedro Alves <palves@redhat.com>
7104
7105 * remote.c (unpush_and_perror): New function.
7106 (readchar, remote_serial_write): Use it.
7107
7108 2013-04-09 Markus Metzger <markus.t.metzger@intel.com>
7109
7110 * NEWS: Mention new btrace RSP packets.
7111
7112 2013-04-08 Tom Tromey <tromey@redhat.com>
7113
7114 * symmisc.c (dump_msymbols): Cast fprintf_filtered argument to
7115 long.
7116
7117 2013-04-08 Tom Tromey <tromey@redhat.com>
7118
7119 * maint.c (print_bfd_section_info): Print the section index.
7120 * symmisc.c (dump_msymbols): Print the section index.
7121
7122 2013-04-08 Tom Tromey <tromey@redhat.com>
7123
7124 PR symtab/8424:
7125 * blockframe.c (find_pc_partial_function_gnu_ifunc): Check
7126 SYMBOL_SECTION, not SYMBOL_OBJ_SECTION.
7127 * breakpoint.c (resolve_sal_pc): Update.
7128 * elfread.c (elf_gnu_ifunc_record_cache): Update.
7129 * findvar.c (struct minsym_lookup_data) <objfile>: New field.
7130 (minsym_lookup_iterator_cb): Use it.
7131 (default_read_var_value): Update.
7132 * hppa-hpux-tdep.c (hppa64_hpux_in_solib_call_trampoline):
7133 Update.
7134 * infcmd.c (jump_command): Update.
7135 * linespec.c (minsym_found): Update.
7136 * maint.c (maintenance_translate_address): Update.
7137 * minsyms.c (lookup_minimal_symbol_by_pc_section_1): Update.
7138 (prim_record_minimal_symbol_full): Don't set SYMBOL_OBJ_SECTION.
7139 * parse.c (write_exp_msymbol): Update.
7140 * printcmd.c (address_info): Update.
7141 * psymtab.c (find_pc_sect_psymbol): Update.
7142 (fixup_psymbol_section): Check SYMBOL_SECTION, not
7143 SYMBOL_OBJ_SECTION.
7144 (add_psymbol_to_bcache): Correctly initialize SYMBOL_SECTION.
7145 Don't initialize SYMBOL_OBJ_SECTION.
7146 * spu-tdep.c (spu_catch_start): Update.
7147 * stabsread.c (define_symbol): Don't set SYMBOL_SECTION.
7148 * symmisc.c (dump_msymbols, print_symbol): Update.
7149 * symtab.c (fixup_section): Don't set 'obj_section'. Change
7150 how fallback section is computed.
7151 (fixup_symbol_section): Update.
7152 (find_pc_sect_symtab, find_function_start_sal, skip_prologue_sal):
7153 Update.
7154 (allocate_symbol, initialize_symbol, allocate_template_symbol):
7155 Initialize SYMBOL_SECTION.
7156 * symtab.h (struct general_symbol_info) <section>: Update comment.
7157 <obj_section>: Remove.
7158 (SYMBOL_OBJ_SECTION): Add 'objfile' argument. Rewrite.
7159 (SYMBOL_OBJFILE): New macro.
7160
7161 2013-04-08 Tom Tromey <tromey@redhat.com>
7162
7163 * coffread.c (record_minimal_symbol): Update.
7164 * dbxread.c (record_minimal_symbol): Update.
7165 * elfread.c (record_minimal_symbol): Update.
7166 * machoread.c (macho_symtab_add_minsym): Update.
7167 * mdebugread.c (record_minimal_symbol, parse_partial_symbols):
7168 Update.
7169 * minsyms.c (prim_record_minimal_symbol): Update.
7170 (prim_record_minimal_symbol_full): Remove 'bfd_section'
7171 argument.
7172 (prim_record_minimal_symbol_and_info): Likewise.
7173 * minsyms.h (prim_record_minimal_symbol_full)
7174 (prim_record_minimal_symbol_and_info): Update.
7175 * symtab.c (allocate_symbol, initialize_symbol)
7176 (allocate_template_symbol): Initialize SYMBOL_SECTION.
7177 * xcoffread.c (record_minimal_symbol, scan_xcoff_symtab):
7178 Update.
7179
7180 2013-04-08 Tom Tromey <tromey@redhat.com>
7181
7182 PR symtab/8423:
7183 * solib-som.c (som_solib_section_offsets): Use BFD section
7184 indices. Set offsets for all sections.
7185 * somread.c (som_symtab_read): Compute BFD section for
7186 symbol. Use prim_record_minimal_symbol_and_info.
7187 (som_symfile_read): Fix comment.
7188 (struct find_section_offset_arg): New.
7189 (find_section_offset, set_section_index): New functions.
7190 (som_symfile_offsets): Use set_section_index to compute
7191 section indices.
7192
7193 2013-04-08 Tom Tromey <tromey@redhat.com>
7194
7195 * coffread.c (cs_to_section): Use gdb_bfd_section_index.
7196 * elfread.c (record_minimal_symbol, elf_symtab_read): Use
7197 gdb_bfd_section_index.
7198 * gdb_bfd.c (gdb_bfd_section_index, gdb_bfd_count_sections):
7199 New functions.
7200 * gdb_bfd.h (gdb_bfd_section_index, gdb_bfd_count_sections):
7201 Declare.
7202 * machoread.c (macho_symtab_add_minsym, macho_symfile_offsets):
7203 Update.
7204 * objfiles.c (add_to_objfile_sections_full): New function.
7205 (add_to_objfile_sections): Use it.
7206 (build_section_table): Rewrite.
7207 (objfile_relocate1): Use gdb_bfd_section_index. Update.
7208 * objfiles.h (obj_section_offset): Use gdb_bfd_section_index.
7209 (struct objfile) <sections>: Update comment.
7210 (ALL_OBJFILE_OSECTIONS): Skip sections where the_bfd_section
7211 is NULL.
7212 (ALL_OBJSECTIONS): Use it.
7213 * solib-dsbt.c (dsbt_relocate_main_executable): Update.
7214 * solib-frv.c (frv_relocate_main_executable): Update.
7215 * solib-target.c (solib_target_relocate_section_addresses):
7216 Use gdb_bfd_section_index.
7217 * symfile.c (build_section_addr_info_from_section_table):
7218 Use gdb_bfd_section_index.
7219 (build_section_addr_info_from_bfd, place_section): Likewise.
7220 * symtab.c (fixup_section): Update.
7221 * xcoffread.c (find_targ_sec): Use gdb_bfd_section_index.
7222
7223 2013-04-08 Tom Tromey <tromey@redhat.com>
7224
7225 * minsyms.h (struct bound_minimal_symbol): New.
7226 (lookup_minimal_symbol_and_objfile): Return bound_minimal_symbol.
7227 Remove objfile argument.
7228 (lookup_minimal_symbol_by_pc_section, lookup_minimal_symbol_by_pc):
7229 Return bound_minimal_symbol.
7230 * minsyms.c (lookup_minimal_symbol_by_pc_1)
7231 (lookup_minimal_symbol_by_pc_section, lookup_minimal_symbol_by_pc):
7232 Return bound_minimal_symbol.
7233 (in_gnu_ifunc_stub): Update.
7234 (lookup_minimal_symbol_and_objfile): Return bound_minimal_symbol.
7235 Remove 'objfile_p' argument.
7236 (lookup_solib_trampoline_symbol_by_pc): Update.
7237 * ada-tasks.c, amd64-windows-tdep.c, arm-tdep.c,
7238 arm-wince-tdep.c, block.c, blockframe.c, breakpoint.c, btrace.c,
7239 c-valprint.c, dwarf2loc.c, elfread.c, frame.c, frv-tdep.c,
7240 glibc-tdep.c, gnu-v2-abi.c, gnu-v3-abi.c, hppa-hpux-tdep.c,
7241 i386-tdep.c, ia64-tdep.c, infcall.c, infcmd.c, jit.c,
7242 linux-fork.c, m32c-tdep.c, m68hc11-tdep.c, maint.c,
7243 mips-tdep.c, p-valprint.c, parse.c, ppc-linux-tdep.c,
7244 ppc-sysv-tdep.c, printcmd.c, rs6000-tdep.c, sh64-tdep.c,
7245 stack.c, symtab.c, tui/tui-disasm.c: Update.
7246
7247 2013-04-08 Tom Tromey <tromey@redhat.com>
7248
7249 * ada-lang.c (ada_decode_symbol): Check and set 'ada_mangled'.
7250 Use symbol's obstack, not an objfile.
7251 * coffread.c (process_coff_symbol): Update.
7252 * dwarf2read.c (fixup_go_packaging, new_symbol_full): Update.
7253 * jv-lang.c (add_class_symbol): Update.
7254 * mdebugread.c (new_symbol): Update.
7255 * minsyms.c (prim_record_minimal_symbol_full)
7256 (terminate_minimal_symbol_table): Update.
7257 * psymtab.c (add_psymbol_to_bcache): Clear entire symbol. Update.
7258 * stabsread.c (define_symbol, read_enum_type): Update.
7259 * symtab.c (symbol_set_demangled_name, symbol_get_demangled_name):
7260 Handle Ada specially.
7261 (symbol_set_language): Add 'obstack' argument.
7262 (symbol_set_names): Update.
7263 (symbol_natural_name, symbol_demangled_name): Always use
7264 ada_decode_symbol.
7265 * symtab.h (struct general_symbol_info)
7266 <language_specific::obstack>: New field.
7267 <ada_mangled>: New field.
7268 (SYMBOL_SET_LANGUAGE): Add 'obstack' argument.
7269 (symbol_set_language): Update.
7270
7271 2013-04-08 Tom Tromey <tromey@redhat.com>
7272
7273 * symtab.c (symbol_init_cplus_specific, symbol_set_demangled_name):
7274 Take an obstack, not an objfile.
7275 (symbol_set_names): Update.
7276 * symtab.h (symbol_set_demangled_name): Update.
7277
7278 2013-04-08 Tom Tromey <tromey@redhat.com>
7279
7280 * coffread.c (process_coff_symbol, coff_read_enum_type): Call
7281 allocate_symbol.
7282 * dwarf2read.c (fixup_go_packaging): Call allocate_symbol.
7283 (read_func_scope): Call allocate_template_symbol.
7284 (new_symbol_full): Call allocate_symbol.
7285 * jit.c (finalize_symtab): Call allocate_symbol.
7286 * jv-lang.c (add_class_symbol): Call allocate_symbol.
7287 * mdebugread.c (parse_symbol, new_block): Call allocate_symbol.
7288 * stabsread.c (patch_block_stabs, define_symbol, read_enum_type)
7289 (common_block_end): Call allocate_symbol.
7290 * symtab.c (allocate_symbol, initialize_symbol)
7291 (allocate_template_symbol): New functions.
7292 * symtab.c (allocate_symbol, initialize_symbol)
7293 (allocate_template_symbol): Declare.
7294 * xcoffread.c (process_xcoff_symbol): Call initialize_symbol.
7295
7296 2013-04-08 Pedro Alves <palves@redhat.com>
7297 Keith Seitz <keiths@redhat.com>
7298
7299 * breakpoint.c (create_breakpoint): Rename
7300 "parse_condition_and_thread" parameter to "parse_arg". Update
7301 describing comment. If !PARSE_ARG, then error out if ARG is not
7302 the empty string after extracting the location.
7303 * breakpoint.h (create_breakpoint): Rename
7304 "parse_condition_and_thread" parameter to "parse_arg".
7305
7306 2013-04-08 Aleksandar Ristovski <aristovski@qnx.com
7307
7308 * solib-svr4.c (lm_addr_check): Add const qualifier to 'so' arg.
7309
7310 2013-04-07 Yao Qi <yao@codesourcery.com>
7311
7312 * remote.c (remote_trace_find): Change type of parameters 'addr1'
7313 and 'addr2' to CORE_ADDR.
7314 * target.c (update_current_target): Update.
7315 * target.h (struct target_ops) <to_trace_find>: Change parameter
7316 type to CORE_ADDR.
7317 * tracepoint.c (tfind_1): Change type of parameters 'addr1' and
7318 'addr2' to CORE_ADDR.
7319 (tfile_trace_find): Likewise.
7320 (tfile_get_traceframe_address): Change return type to CORE_ADDR.
7321 Change local variable 'addr' to type CORE_ADDR.
7322 * tracepoint.h (tfind_1): Update declaration.
7323
7324 2013-04-06 Eli Zaretskii <eliz@gnu.org>
7325
7326 * windows-nat.c (windows_get_absolute_argv0): Move from here...
7327 * mingw-hdep.c (windows_get_absolute_argv0): ...to here.
7328 Include main.h.
7329
7330 * windows-nat.h (windows_get_absolute_argv0): Move prototype from
7331 here...
7332 * main.h (windows_get_absolute_argv0): ...to here.
7333
7334 2013-04-05 Doug Evans <dje@google.com>
7335
7336 * dwarf2read.c (struct dwarf2_per_objfile): Tweak comment.
7337 (read_cutu_die_from_dwo): Add comments.
7338 (read_structure_type): Update comment.
7339 (read_enumeration_type, read_namespace_type): Update comment.
7340 (read_die_type, get_die_type_at_offset, get_die_type): Update comment.
7341
7342 2013-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
7343
7344 Convert man pages to texinfo, new gdbinit.5 texinfo page.
7345 * Makefile.in (gdb.z): Remove.
7346 (install-only): Remove $(man1dir) and gdb.1 installation.
7347 * gdb.1: Remove.
7348
7349 2013-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
7350
7351 Fix compatibility with Linux kernel 3.8.3.
7352 * linux-tdep.c (linux_find_memory_regions_full): Move variable number
7353 to more inner block. Remove parsing of NUMBER from outer block.
7354 Parse NUMBER only if KEYWORD has been identified.
7355
7356 2013-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
7357
7358 Fix variable name shadowing.
7359 * linux-tdep.c (linux_find_memory_regions_full): Rename outer variable
7360 filename to mapsfilename and update its uses.
7361
7362 2013-04-05 Eli Zaretskii <eliz@gnu.org>
7363
7364 * Makefile.in (TAGS): Avoid warning from etags when $GDB_NM_FILE is
7365 empty. See http://sourceware.org/ml/gdb-patches/2012-08/msg00504.html
7366 and http://sourceware.org/ml/gdb-patches/2013-04/msg00055.html for
7367 details of the problem.
7368
7369 2013-04-04 Pedro Alves <palves@redhat.com>
7370 Hui Zhu <hui@codesourcery.com>
7371
7372 * breakpoint.c (validate_commands_for_breakpoint): If validating a
7373 tracepoint, reset its STEP_COUNT and call validate_actionline.
7374
7375 2013-04-03 Doug Evans <dje@google.com>
7376
7377 * dwarf2read.c (read_die_and_siblings_1): Renamed from
7378 read_die_and_siblings.
7379 (read_die_and_siblings): New function.
7380 (read_cutu_die_from_dwo): Dump die if requested.
7381 (read_die_and_children): Call read_full_die_1 and
7382 read_die_and_siblings_1.
7383 (read_full_die): Dump die if requested.
7384
7385 * dwarf2read.c (read_comp_units_from_section): Add debugging printf.
7386
7387 * dwarf2read.c (struct dwo_file): New member comp_dir.
7388 Rename member name to dwo_name. All uses updated.
7389 (hash_dwo_file): Include comp_dir in computation.
7390 (eq_dwo_file): Ditto.
7391 (lookup_dwo_file_slot): New arg comp_dir. All callers updated.
7392 (create_dwo_in_dwp, lookup_dwo_in_dwp, open_and_init_dwo_file): Ditto.
7393
7394 * psymtab.c (read_psymtabs_with_fullname): Don't call
7395 psymtab_to_fullname if the basenames are different.
7396
7397 2013-04-03 Jan Kratochvil <jan.kratochvil@redhat.com>
7398
7399 * NEWS (Changes in GDB 7.6): Update the data-disassemble for "fullname".
7400 New entry about "fullname" presence.
7401
7402 2013-04-03 Pedro Alves <palves@redhat.com>
7403
7404 * NEWS: Mention x86_64/Cygwin as new native configuration.
7405
7406 2013-04-02 Doug Evans <dje@google.com>
7407
7408 * dwarf2read.c (read_structure_type): Fix typo in comment.
7409
7410 2013-04-02 Pedro Alves <palves@redhat.com>
7411
7412 * NEWS: Mention "set/show debug aarch64", "set/show debug
7413 coff-pe-read" and "set/show debug mach-o".
7414
7415 2013-04-02 Pedro Alves <palves@redhat.com>
7416
7417 * NEWS: Mention "set/show remote trace-buffer-size-packet".
7418
7419 2013-04-02 Eli Zaretskii <eliz@gnu.org>
7420
7421 * Makefile.in (HFILES_NO_SRCDIR): Remove call-cmds.h.
7422 gdb_string.h is now in common/.
7423
7424 2013-04-02 Pedro Alves <palves@redhat.com>
7425
7426 * NEWS: Move "set debug notification" and "set trace-buffer-size"
7427 under "New options".
7428
7429 2013-04-02 Jan Kratochvil <jan.kratochvil@redhat.com>
7430
7431 Revert this patch:
7432 PR gdb/15275
7433 * remote.c (remote_get_trace_status): Include putpkt in TRY_CATCH.
7434
7435 2013-04-02 Pedro Alves <palves@redhat.com>
7436
7437 PR gdb/15275
7438
7439 * remote.c (send_interrupt_sequence): Use remote_serial_write.
7440 (remote_serial_write): New function.
7441 (putpkt_binary, getpkt_or_notif_sane_1): Use remote_serial_write.
7442
7443 2013-04-01 Jiong Wang <jiwang@tilera.com>
7444
7445 * NEWS: Mention TILE-Gx in "New native configurations" and
7446 "New targets" sections.
7447
7448 2013-04-01 Doug Evans <dje@google.com>
7449
7450 * dwarf2read.c (lookup_signatured_type_at_offset): Delete.
7451 (process_enumeration_scope): Simplify.
7452
7453 * dwarf2read.c (struct dwarf2_per_cu_data): Move member
7454 type_unit_group ...
7455 (struct signatured_type): ... to here.
7456 (sig_type_ptr): New typedef.
7457 (type_unit_group): Delete member 't.first_cu'. Move member 'tus'
7458 out of union 't'. All uses updated.
7459 (dw2_get_file_names_reader): Assert not called for a type unit.
7460 (dw2_get_file_names): Assert not called for a type unit or type
7461 unit group.
7462 (build_type_psymtabs_reader): Assert called for a type unit.
7463 (build_type_psymtab_dependencies): Assert called for a type unit group.
7464
7465 * dwarf2read.c (free_dwo_file): Add comment.
7466 (dwarf2_per_objfile_free): Unref dwp bfd.
7467
7468 2013-04-01 Aleksandar Ristovski <aristovski@qnx.com>
7469
7470 * coff-pe-read.c (add_pe_exported_sym): Remove unused 'dll_name_len'.
7471 (add_pe_forwarded_sym): Remove unused 'section', 'dll_name_len'.
7472 (read_pe_exported_syms): Remove unused 'exportix'.
7473 (pe_text_section_offset): Remove unused 'opthdr_ofs', 'num_entries',
7474 'export_rva', 'export_size', 'expptr', 'exp_funcbase', 'expdata',
7475 'erva', 'name_rvas', 'ordinals', 'nexp', 'ordbase', 'dll_name'.
7476
7477 2013-04-01 Aleksandar Ristovski <aristovski@qnx.com>
7478
7479 * breakpoint.c (parse_cond_to_aexpr): Remove unused 'old_chain'.
7480 (print_it_watchpoint): Remove unused 'bl'.
7481 (say_where): Remove unused 'uiout'.
7482 (bpstat_remove_breakpoint_callback): Remove unused 'uiout'.
7483 (bkpt_breakpoint_hit): Remove unused 'b'.
7484 (internal_bkpt_print_it): Remove unused 'uiout'.
7485 * buildsym.c (augment_type_symtab): Remove unused 'i'.
7486
7487 2013-03-31 Tiago Stürmer Daitx <tdaitx@linux.vnet.ibm.com>
7488
7489 * ppc-sysv-tdep.c (ppc64_sysv_abi_push_float): New function.
7490 (ppc64_sysv_abi_push_dummy_call): Handle complex arguments.
7491
7492 2013-03-29 Doug Evans <dje@google.com>
7493
7494 * dwarf2read.c (open_dwo_file): Renamed from open_dwop_file.
7495 Delete arg is_dwp. All callers updated.
7496 (open_dwp_file): New function.
7497 (open_and_init_dwp_file): Call it.
7498 (get_dwp_file): New function.
7499 (lookup_dwo_cutu): Call it.
7500
7501 * dwarf2read.c (open_and_init_dwp_file): Remove incorrect, and
7502 unnecessary, cleanup.
7503
7504 * dwarf2read.c (lookup_dwo_cutu): Improve complaint text.
7505
7506 * dwarf2read.c (read_cutu_die_from_dwo): New function.
7507 (lookup_dwo_unit): New function.
7508 (init_cutu_and_read_dies): Move DWO handling to new functions.
7509
7510 * dwarf2read.c (struct signatured_type): Tweak comment.
7511 (struct dwo_unit): Tweak comment.
7512 (create_debug_types_hash_table): Tweak comment. Reformat long line.
7513 (create_dwo_debug_info_hash_table): Tweak comment.
7514 (dwarf2_per_cu_offset_and_type): Tweak comment.
7515
7516 * dwarf2read.c (lookup_signatured_type): Remove complaint about
7517 missing .debug_types section.
7518
7519 2013-03-29 Yao Qi <yao@codesourcery.com>
7520
7521 * corelow.c: Include "completer.h".
7522 (_initialize_corelow): Call add_target_with_completer with
7523 argument 'filename_completer'.
7524 * tracepoint.c: Likewise.
7525 * exec.c (_initialize_exec): Likewise.
7526 * target.c (add_target): Rename to ...
7527 (add_target_with_completer): ... this. Call set_cmd_completer
7528 if parameter completer is not NULL.
7529 (add_target): New.
7530 * target.h: Include "command.h".
7531 (add_target_with_completer): Declare it.
7532
7533 2013-03-28 Joel Brobecker <brobecker@adacore.com>
7534
7535 * coffread.c (is_import_fixup_symbol): New function.
7536 (record_minimal_symbol): Use is_import_fixup_symbol to
7537 detect import fixup symbols, and discard them.
7538
7539 2013-03-28 Doug Evans <dje@google.com>
7540
7541 * dwarf2read.c (create_debug_types_hash_table): Don't allocate the
7542 types hash table until we know we need it.
7543
7544 * dwarf2read.c (create_addrmap_from_index): Complain about bad CU
7545 index numbers.
7546
7547 * dwarf2read.c (dw2_get_file_names): Delete arg "objfile".
7548 All callers updated.
7549 (dw2_print_stats): Print #read CUs too.
7550 (dump_die_shallow): Print signatured types better.
7551
7552 * dwarf2read.c (struct dwarf2_per_cu_data): Rename member
7553 info_or_types_section to section. All uses updated.
7554 (struct dwo_unit): Ditto.
7555
7556 2013-03-28 Pedro Alves <palves@redhat.com>
7557
7558 * NEWS (New options): New section.
7559 (New options): Mention set/show remote trace-status-packet.
7560 * remote.c (PACKET_qTStatus): New enumeration value.
7561 (remote_get_trace_status): Skip sending qTStatus if the packet is
7562 disabled. Use packet_ok.
7563 (_initialize_remote): Register a configuration command for
7564 qTStatus packet.
7565
7566 2013-03-28 Doug Evans <dje@google.com>
7567
7568 * symfile.c (find_separate_debug_file): Add comment.
7569 (terminate_after_last_dir_separator): Tweak comment.
7570
7571 * dwarf2read.c (create_partial_symtab): Add forward decl.
7572 (create_partial_symtab): Move to be closer to other psymtab functions.
7573 (process_psymtab_comp_unit_reader, process_psymtab_comp_unit): Ditto.
7574
7575 * dwarf2read.c (dwarf2_physname): Move declaration to better spot.
7576 (compute_symtab_includes): Remove unnecessary forward declaration.
7577 (die_needs_namespace): Add comment marking group of functions for
7578 dwarf2 name computation.
7579
7580 * typeprint.c (_initialize_typeprint): Improve type help text.
7581
7582 * python/python.c (finish_python_initialization): Provide suggestion
7583 for how to tell gdb to find its python files.
7584
7585 2013-03-28 Pedro Alves <palves@redhat.com>
7586
7587 PR gdb/15294
7588
7589 * source.c (_initialize_source): Change back "set listsize" to an
7590 integer command.
7591
7592 2013-03-27 Gareth McMullin <gareth@blacksphere.co.nz>
7593
7594 PR gdb/15275
7595 * remote.c (remote_get_trace_status): Include putpkt in TRY_CATCH.
7596
7597 2013-03-27 Pedro Alves <palves@redhat.com>
7598
7599 * top.c (history_size): Rename to ...
7600 (history_size_setshow_var): ... this. Add comment.
7601 (show_commands): Use readline's 'history_length' instead of
7602 computing the history length by calling history_get in a loop.
7603 (set_history_size_command): Error out for sizes over INT_MAX.
7604 Restore previous history size on invalid size.
7605 (init_history): If HISTSIZE is negative, leave the history size as
7606 zero. Add comments.
7607 (init_main): Adjust.
7608
7609 2013-03-27 Pedro Alves <palves@redhat.com>
7610
7611 * coff-pe-read.c (_initialize_coff_pe_read): Rename "set debug
7612 coff_pe_read" command to "set debug coff-pe-read".
7613
7614 2013-03-27 Markus Metzger <markus.t.metzger@intel.com>
7615
7616 * record.c (command_size_to_target_size): Fix size comparison.
7617 Change parameter type from pointer to integer to integer.
7618 Update all users.
7619
7620 2013-03-27 Pierre Muller <muller@sourceware.org>
7621
7622 * windows-nat.c (handle_output_debug_string): Avoid typecast
7623 from integer of different size warning.
7624
7625 2013-03-26 Joel Brobecker <brobecker@adacore.com>
7626
7627 * windows-nat.c (handle_output_debug_string): Add empty line
7628 after local block variable definition.
7629
7630 2013-03-26 Pedro Alves <palves@redhat.com>
7631
7632 * ser-tcp.c (wait_for_connect): Make 'polls' parameter unsigned.
7633 (net_open): Make 'polls' local unsigned.
7634
7635 2013-03-26 Pedro Alves <palves@redhat.com>
7636
7637 * remote.c (_initialize_remote): Make "set remoteaddresssize"
7638 a zuinteger command instead of uinteger.
7639
7640 2013-03-26 Pedro Alves <palves@redhat.com>
7641
7642 * record-full.c (record_full_insn_num): Make it unsigned.
7643 (record_full_check_insn_num, record_full_message)
7644 (record_full_registers_change, record_full_xfer_partial): Remove
7645 record_full_insn_max_num check (it's always != 0).
7646 (record_full_info, record_full_restore): Use %u as format string.
7647 (): Use %u as format string.
7648 (set_record_full_insn_max_num): Remove record_full_insn_max_num
7649 check (it's always != 0).
7650
7651 2013-03-26 Pedro Alves <palves@redhat.com>
7652
7653 * dcache.c (_initialize_dcache): Make the "set dcache line-size"
7654 and "set dcache size" commands zuinteger instead of uinteger.
7655
7656 2013-03-26 Pedro Alves <palves@redhat.com>
7657
7658 * cris-tdep.c (_initialize_cris_tdep): Make the "set cris-version"
7659 command zuinteger instead of uinteger.
7660
7661 2013-03-26 Pedro Alves <palves@redhat.com>
7662
7663 * coff-pe-read.c (_initialize_coff_pe_read): Make the command
7664 zuinteger instead of uinteger.
7665
7666 2013-03-26 Pedro Alves <palves@redhat.com>
7667
7668 * record.c (record_insn_history_size_setshow_var)
7669 (record_call_history_size_setshow_var): New globals.
7670 (command_size_to_target_size): New function.
7671 (cmd_record_insn_history, cmd_record_call_history): Use
7672 command_size_to_target_size instead of cast.
7673 (validate_history_size, set_record_insn_history_size)
7674 (set_record_call_history_size): New functions.
7675 (_initialize_record): Install set_record_insn_history_size and
7676 set_record_call_history_size as "set" hooks of "set record
7677 instruction-history-size" and "set record
7678 function-call-history-size".
7679
7680 2013-03-26 Pedro Alves <palves@redhat.com>
7681
7682 * top.c (gdb_rl_operate_and_get_next): Replace max_input_history
7683 use with history_max_entries use. Remove FIXME note.
7684
7685 2013-03-26 Markus Metzger <markus.t.metzger@intel.com>
7686
7687 * record-btrace.c (record_btrace_close): Call
7688 record_btrace_auto_disable.
7689
7690 2013-03-25 Joel Brobecker <brobecker@adacore.com>
7691
7692 * rs6000-nat.c (fixup_breakpoints): Delete declaration.
7693
7694 2013-03-25 Doug Evans <dje@google.com>
7695
7696 * contrib/cc-with-tweaks.sh: Check exit code of dwp.
7697
7698 2013-03-25 Tom Tromey <tromey@redhat.com>
7699
7700 PR symtab/11462:
7701 * c-exp.y (exp): Add new productions for destructors after '.' and
7702 '->'.
7703 (write_destructor_name): New function.
7704
7705 2013-03-25 Tom Tromey <tromey@redhat.com>
7706
7707 PR c++/9197:
7708 * opencl-lang.c (evaluate_subexp_opencl) <STRUCTOP_STRUCT>: Use
7709 value_struct_elt, not lookup_struct_elt_type.
7710 * eval.c (evaluate_subexp_standard) <STRUCTOP_STRUCT,
7711 STRUCTOP_PTR>: Use value_struct_elt, not lookup_struct_elt_type.
7712 * expression.h (EVAL_AVOID_SIDE_EFFECTS): Update comment.
7713
7714 2013-03-25 Yao Qi <yao@codesourcery.com>
7715
7716 * ctf.c [USE_WIN32API]: Undef 'mkdir' and use 'mkdir'
7717 instead of '_mkdir'.
7718
7719 2013-03-23 Eli Zaretskii <eliz@gnu.org>
7720
7721 * windows-nat.c (windows_get_absolute_argv0): New function.
7722 * windows-nat.h: Add its prototype.
7723
7724 * main.c (get_init_files): Use filename_ncmp instead of strncmp.
7725 Use IS_DIR_SEPARATOR instead of looking for a character inside
7726 SLASH_STRING. Include filenames.h.
7727 (captured_main) [__MINGW32__]: Make argv[0] absolute, so that
7728 relocate_gdb_directory works when passed gdb_program_name.
7729 Include windows-nat.h.
7730
7731 2013-03-22 Jan Kratochvil <jan.kratochvil@redhat.com>
7732
7733 * exceptions.h (enum errors): New entry TARGET_CLOSE_ERROR.
7734 * remote.c (trace_error): Remove the special handling of '2'.
7735 (readchar) <SERIAL_EOF>
7736 (readchar) <SERIAL_ERROR>
7737 (getpkt_or_notif_sane_1): Use TARGET_CLOSE_ERROR for them.
7738 (remote_get_trace_status): Call throw_exception if EX is
7739 TARGET_CLOSE_ERROR.
7740 * utils.c (perror_with_name): Rename to ...
7741 (throw_perror_with_name): ... here. New parameter errcode, describe it
7742 in the function comment.
7743 (perror_with_name): New function wrapper.
7744 * utils.h (enum errors): New stub declaration.
7745 (throw_perror_with_name): New declaration.
7746
7747 2013-03-22 Pedro Alves <palves@redhat.com>
7748 Yao Qi <yao@codesourcery.com>
7749 Mark Kettenis <kettenis@gnu.org>
7750
7751 * cli/cli-setshow.c (do_set_command) <var_uinteger>:
7752 Don't let the user set the value to UINT_MAX directly.
7753 <var_integer>: Don't let the user set the value to INT_MAX
7754 directly.
7755
7756 2013-03-22 Jan Kratochvil <jan.kratochvil@redhat.com>
7757
7758 * remote.c (remote_unpush_target): New function.
7759 (remote_open_1): Remove two pop_target calls, update one comment, add
7760 comment to target_preopen call. Replace pop_target call by
7761 remote_unpush_target call.
7762 (interrupt_query, readchar, getpkt_or_notif_sane_1): Replace
7763 pop_target calls by remote_unpush_target calls.
7764
7765 2013-03-22 Pedro Alves <palves@redhat.com>
7766
7767 * linux-nat.c (linux_child_follow_fork): Don't call
7768 linux_enable_event_reporting.
7769 (linux_handle_extended_wait): Don't call
7770 linux_enable_event_reporting.
7771
7772 2013-03-22 Pedro Alves <palves@redhat.com>
7773
7774 * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code): Define INSN macro,
7775 use it to rewrite the trampoline buffers with type gdb_byte[], and
7776 undefine the macro. Remove char* cast.
7777
7778 2013-03-21 Doug Evans <dje@google.com>
7779
7780 New commands "mt set per-command {space,time,symtab} {on,off}".
7781 * NEWS: Add entry.
7782 * event-top.c: #include "maint.h".
7783 * main.c: #include "maint.h".
7784 * maint.c: #include <sys/time.h>, <time.h>, block.h, top.h,
7785 timeval-utils.h, maint.h, cli/cli-setshow.h.
7786 (per_command_time, per_command_space): New static globals.
7787 (per_command_symtab): New static global.
7788 (per_command_setlist, per_command_showlist): New static globals.
7789 (struct cmd_stats): Move here from utils.c.
7790 (set_per_command_time): Renamed from set_display_time in utils.c
7791 and moved here. All callers updated.
7792 (set_per_command_space): Renamed from set_display_space in utils.c
7793 and moved here. All callers updated.
7794 (count_symtabs_and_blocks): New function.
7795 (report_command_stats): Moved here from utils.c. Add support for
7796 printing symtab stats. Only print data if enabled before command
7797 executed.
7798 (make_command_stats_cleanup): Ditto.
7799 (sert_per_command_cmd, show_per_command_cmd): New functions.
7800 (_initialize_maint_cmds): Add new commands
7801 mt set per-command {space,time,symtab} {on,off}.
7802 * maint.h: New file.
7803 * top.c: #include "maint.h".
7804 * utils.c (reset_prompt_for_continue_wait_time): New function.
7805 (get_prompt_for_continue_wait_time): New function.
7806 * utils.h (reset_prompt_for_continue_wait_time): Declare
7807 (get_prompt_for_continue_wait_time): Declare.
7808 (make_command_stats_cleanup): Moved to maint.h.
7809 (set_display_time, set_display_space): Moved to maint.h and renamed
7810 to set_per_command_time, set_per_command_space.
7811 * cli/cli-setshow.c (parse_cli_boolean_value): Renamed from
7812 parse_binary_operation and made non-static. Don't call error,
7813 just return an error marker. All callers updated.
7814 * cli/cli-setshow.h (parse_cli_boolean_value): Declare.
7815
7816 2013-03-21 Tom Tromey <tromey@redhat.com>
7817
7818 * symfile.c (alloc_section_addr_info): Update header. Don't set
7819 'num_sections' field.
7820 (build_section_addr_info_from_section_table): Set 'num_sections'.
7821 (build_section_addr_info_from_bfd): Likewise.
7822 (build_section_addr_info_from_objfile): Remove dead loop
7823 condition.
7824 (free_section_addr_info): Unconditionally call xfree.
7825 (relative_addr_info_to_section_offsets, addrs_section_sort)
7826 (addr_info_make_relative, syms_from_objfile_1): Remove dead loop
7827 condition.
7828 (syms_from_objfile_1): Remove dead 'if' condition. Check
7829 'num_sections'.
7830 (add_symbol_file_command): Set 'num_sections'.
7831 * symfile-mem.c (symbol_file_add_from_memory): Set
7832 'num_sections'.
7833 * somread.c (som_symfile_offsets): Remove dead loop condition.
7834 * machoread.c (macho_symfile_offsets): Remove dead 'if'.
7835 * jit.c (jit_bfd_try_read_symtab): Set 'num_sections'.
7836
7837 2013-03-21 Tom Tromey <tromey@redhat.com>
7838
7839 * tracepoint.h (decode_agent_options): Add 'trace_string'
7840 argument.
7841 * tracepoint.c (decode_agent_options): Add 'trace_string'
7842 argument.
7843 (validate_actionline): Update.
7844 (collect_symbol): Add 'trace_string' argument.
7845 (struct add_local_symbols_data) <trace_string>: New field.
7846 (do_collect_symbol): Update.
7847 (add_local_symbols): Add 'trace_string' argument.
7848 (encode_actions_1): Update.
7849 (trace_dump_actions): Update.
7850 * dwarf2loc.c (access_memory): Update.
7851 * ax.h (struct agent_expr) <tracing, trace_string>: New fields.
7852 * ax-general.c (new_agent_expr): Update.
7853 * ax-gdb.h (gen_trace_for_expr, gen_trace_for_var)
7854 (gen_trace_for_return_address): Add argument.
7855 (trace_kludge, trace_string_kludge): Remove.
7856 * ax-gdb.c (trace_kludge, trace_string_kludge): Remove.
7857 (gen_traced_pop, gen_fetch, gen_bitfield_ref, gen_expr): Update.
7858 (gen_trace_for_var): Add 'trace_string' argument.
7859 (gen_trace_for_expr, gen_trace_for_return_address): Likewise.
7860 (gen_printf, agent_eval_command_one): Update.
7861
7862 2013-03-21 Tom Tromey <tromey@redhat.com>
7863
7864 PR exp/15109:
7865 * c-exp.y (yylex): Rewrite to push all tokens onto the FIFO.
7866 Handle FILENAME token.
7867
7868 2013-03-21 Tom Tromey <tromey@redhat.com>
7869
7870 * c-exp.y (YYPRINT): Define.
7871 (c_print_token): New function.
7872
7873 2013-03-21 Tom Tromey <tromey@redhat.com>
7874
7875 * c-exp.y (%union) <sym, ivar, ivec>: Remove.
7876
7877 2013-03-21 Yao Qi <yao@codesourcery.com>
7878
7879 * ctf.c: Include "gdb_stat.h".
7880 [USE_WIN32API]: New macro 'mkdir'.
7881 (ctf_start): Use permission bits macros if they are defined.
7882
7883 2013-03-20 Keith Seitz <keiths@redhat.com>
7884
7885 * breakpoint.h (struct breakpoint): Add comment to
7886 extra_string indicating that this member is mallod'd.
7887 * breakpoint.c (base_breakpoint_dtor): Free extra_string.
7888
7889 2013-03-20 Pedro Alves <palves@redhat.com>
7890
7891 PR gdb/15289
7892
7893 * cli/cli-setshow.c (do_set_command)
7894 <var_uinteger, var_zuinteger>: Use LONGEST for variable holding
7895 the result of parsing the command argument. Throw error if the
7896 value is greater than UINT_MAX. Print the invalid value with
7897 plongest.
7898 <var_integer, var_zinteger>: Use LONGEST for variable holding the
7899 result of parsing the command argument. Throw error if the value
7900 is greater than INT_MAX, not greater or equal. Also throw error
7901 if the value is less than INT_MIN. Print the invalid value with
7902 plongest.
7903 <var_zuinteger_unlimited>: Throw error if the value is greater
7904 than INT_MAX, not greater or equal.
7905 (do_show_command) <var_integer, var_zinteger,
7906 var_zuinteger_unlimited>: Use %d for printing int, not %u.
7907
7908 2013-03-20 Tom Tromey <tromey@redhat.com>
7909
7910 * ax-gdb.c (gen_var_ref): Unconditionally call via computed ops,
7911 if possible.
7912 * dwarf2read.c (read_func_scope): Remove old FIXME.
7913 * eval.c (evaluate_subexp_standard): Check SYMBOL_COMPUTED_OPS,
7914 not LOC_COMPUTED.
7915 * findvar.c (symbol_read_needs_frame, default_read_var_value):
7916 Unconditionally call via computed ops, if possible.
7917 * printcmd.c (address_info): Unconditionally call via computed ops,
7918 if possible.
7919 * stack.c (read_frame_arg): Unconditionally call via computed ops,
7920 if possible.
7921 * symtab.c (register_symbol_computed_impl): Sanity check 'ops'.
7922 * tracepoint.c (scope_info): Unconditionally call via computed ops,
7923 if possible.
7924
7925 2013-03-20 Jan Kratochvil <jan.kratochvil@redhat.com>
7926 Tom Tromey <tromey@redhat.com>
7927
7928 PR symtab/8421:
7929 * coffread.c (coff_register_index): New global.
7930 (process_coff_symbol, coff_read_enum_type): Set
7931 SYMBOL_ACLASS_INDEX.
7932 (_initialize_coffread): Initialize new global.
7933 * dwarf2loc.c (locexpr_find_frame_base_location)
7934 (dwarf2_block_frame_base_locexpr_funcs)
7935 (loclist_find_frame_base_location)
7936 (dwarf2_block_frame_base_loclist_funcs): New.
7937 (dwarf_expr_frame_base_1): Call SYMBOL_BLOCK_OPS, remove internal_error.
7938 (dwarf2_locexpr_funcs, dwarf2_loclist_funcs): Add location_has_loclist.
7939 * dwarf2loc.h (dwarf2_block_frame_base_locexpr_funcs)
7940 (dwarf2_block_frame_base_loclist_funcs): New.
7941 * dwarf2read.c (dwarf2_locexpr_index, dwarf2_loclist_index)
7942 (dwarf2_locexpr_block_index, dwarf2_loclist_block_index): New
7943 globals.
7944 (read_func_scope): Update.
7945 (fixup_go_packaging, mark_common_block_symbol_computed)
7946 (var_decode_location, new_symbol_full, dwarf2_const_value):
7947 Set SYMBOL_ACLASS_INDEX.
7948 (dwarf2_symbol_mark_computed): Likewise. Add 'is_block' argument.
7949 (_initialize_dwarf2_read): Initialize new globals.
7950 * jit.c (finalize_symtab): Set SYMBOL_ACLASS_INDEX.
7951 * jv-lang.c (add_class_symbol): Set SYMBOL_ACLASS_INDEX.
7952 * mdebugread.c (mdebug_register_index, mdebug_regparm_index): New
7953 globals.
7954 (parse_symbol, psymtab_to_symtab_1): Set SYMBOL_ACLASS_INDEX.
7955 (_initialize_mdebugread): Initialize new globals.
7956 * psympriv.h (struct partial_symbol) <aclass>: Update comment.
7957 * stabsread.c (patch_block_stabs): Set SYMBOL_ACLASS_INDEX.
7958 (stab_register_index, stab_regparm_index): New globals.
7959 (define_symbol, read_enum_type, common_block_end): Set
7960 SYMBOL_ACLASS_INDEX.
7961 (_initialize_stabsread): Initialize new globals.
7962 * symtab.c (next_aclass_value, symbol_impl, symbol_impls): New
7963 globals.
7964 (MAX_SYMBOL_IMPLS): New define.
7965 (register_symbol_computed_impl, register_symbol_block_impl)
7966 (register_symbol_register_impl)
7967 (initialize_ordinary_address_classes): New functions.
7968 (_initialize_symtab): Call initialize_ordinary_address_classes.
7969 * symtab.h (enum address_class) <LOC_FINAL_VALUE>: New constant.
7970 (struct symbol_impl): New.
7971 (SYMBOL_ACLASS_BITS): New define.
7972 (struct symbol) <aclass, ops>: Remove fields.
7973 <aclass_index>: New field.
7974 (symbol_impls): Declare.
7975 (SYMBOL_CLASS, SYMBOL_COMPUTED_OPS, SYMBOL_REGISTER_OPS): Redefine.
7976 (SYMBOL_IMPL, SYMBOL_ACLASS_INDEX): New defines.
7977 (register_symbol_computed_impl, register_symbol_block_impl)
7978 (register_symbol_register_impl): Declare.
7979 (struct symbol_computed_ops): Add location_has_loclist.
7980 (struct symbol_block_ops): New.
7981 (SYMBOL_BLOCK_OPS): New.
7982 * xcoffread.c (process_xcoff_symbol): Set SYMBOL_ACLASS_INDEX.
7983
7984 2013-03-20 Tom Tromey <tromey@redhat.com>
7985
7986 * psymtab.c (find_pc_sect_psymbol, fixup_psymbol_section)
7987 (print_partial_symbols, recursively_search_psymtabs): Use
7988 PSYMBOL_CLASS.
7989
7990 2013-03-20 Pierre Muller <muller@sourceware.org>
7991
7992 * contrib/ari/gdb_ari.sh (OP eol rule): Also check
7993 addtion, subtraction, multiplication and division binary operator.
7994
7995 2013-03-20 Jan Kratochvil <jan.kratochvil@redhat.com>
7996
7997 Code cleanup.
7998 * bfd-target.c (target_bfd_xclose): Remove parameter quitting.
7999 * bsd-kvm.c (bsd_kvm_close): Likewise.
8000 * bsd-uthread.c (bsd_uthread_close): Likewise.
8001 * corelow.c (core_close): Likewise.
8002 (core_close_cleanup): Remove parameter quitting from a caller.
8003 * event-top.c (async_disconnect): Likewise.
8004 * exec.c (exec_close_1): Remove parameter quitting.
8005 * go32-nat.c (go32_close): Likewise.
8006 * linux-nat.c (linux_nat_close): Remove parameter quitting. Remove
8007 parameter quitting from a caller.
8008 * mips-linux-nat.c (super_close): Remove parameter quitting from the
8009 variable.
8010 (mips_linux_close): Remove parameter quitting. Remove parameter
8011 quitting from a caller.
8012 * monitor.c (monitor_close): Remove parameter quitting.
8013 * monitor.h (monitor_close): Likewise.
8014 * record-btrace.c (record_btrace_close): Likewise.
8015 * record-full.c (record_full_close): Likewise.
8016 * remote-m32r-sdi.c (m32r_close): Remove parameter quitting and remove
8017 it also from fprintf_unfiltered.
8018 * remote-mips.c (mips_close): Remove parameter quitting.
8019 (mips_detach): Remove parameter quitting from a caller.
8020 * remote-sim.c (gdbsim_close): Remove parameter quitting.
8021 (gdbsim_close): Remove duplicate function comment. Remove parameter
8022 quitting and remove it also from printf_filtered.
8023 * remote.c (remote_close): Remove parameter quitting.
8024 * solib-svr4.c (enable_break): Remove parameter quitting from a caller.
8025 * target.c (update_current_target): Remove parameter int from to_close
8026 de_fault.
8027 (push_target, unpush_target, pop_target): Remove parameter quitting from
8028 a caller.
8029 (pop_all_targets_above, pop_all_targets): Remove parameter quitting.
8030 Remove parameter quitting from a caller.
8031 (target_preopen): Remove parameter quitting from a caller.
8032 (target_close): Remove parameter quitting. Remove parameter quitting
8033 from a caller two times. Remove parameter quitting also from
8034 fprintf_unfiltered.
8035 * target.h (struct target_ops): Remove parameter quitting and as int
8036 from fields to_xclose and to_close.
8037 (extern struct target_ops current_target):
8038 (target_close, pop_all_targets): Remove parameter quitting. Update the
8039 comment.
8040 (pop_all_targets_above): Remove parameter quitting.
8041 * top.c (quit_target): Remove parameter quitting from a caller.
8042 * tracepoint.c (tfile_close): Remove parameter quitting.
8043 * windows-nat.c (windows_close): Remove parameter quitting.
8044
8045 2013-03-20 Corinna Vinschen <vinschen@redhat.com>
8046
8047 * windows-nat.c (handle_output_debug_string): Replace call
8048 to string_to_core_addr with call to strtoull.
8049
8050 2013-03-20 Yao Qi <yao@codesourcery.com>
8051
8052 * ctf.c (ctf_save_metadata_header): Define macro HOST_ENDIANNESS
8053 and write it to CTF metadata.
8054
8055 2013-03-19 Corinna Vinschen <vinschen@redhat.com>
8056
8057 * windows-nat.c (handle_output_debug_string): Change type of n to
8058 SIZE_T to avoid crash on 64 bit systems.
8059
8060 2013-03-17 Eli Zaretskii <eliz@gnu.org>
8061
8062 * python/python-internal.h (HAVE_SNPRINTF)
8063 [_WIN32 && HAVE_DECL_SNPRINTF]: Define, to avoid compiler warnings
8064 about redefinition of snprintf by pyerrors.h.
8065
8066 2013-03-15 Steve Ellcey <sellcey@mips.com>
8067
8068 * remote-sim.c (sim_command_completer): Make char arguments const.
8069
8070 2013-03-15 Tom Tromey <tromey@redhat.com>
8071
8072 PR c++/15116:
8073 * gdbtypes.c (types_equal): Handle TYPE_CODE_FUNC.
8074
8075 2013-03-14 Tom Tromey <tromey@redhat.com>
8076
8077 * gdb_bfd.c (struct gdb_bfd_data) <crc_computed, crc>:
8078 New fields.
8079 (get_file_crc): Move from symfile.c.
8080 (gdb_bfd_crc): New function.
8081 * gdb_bfd.h (gdb_bfd_crc): Declare.
8082 * objfiles.h (struct objfile) <crc32, crc32_p>: Remove.
8083 * symfile.c (get_file_crc): Move to gdb_bfd.c.
8084 (separate_debug_file_exists): Use gdb_bfd_crc.
8085
8086 2013-03-14 Tom Tromey <tromey@redhat.com>
8087
8088 * symfile.c (get_debug_link_info): Remove.
8089 (find_separate_debug_file_by_debuglink): Use
8090 bfd_get_debug_link_info.
8091
8092 2013-03-14 Tom Tromey <tromey@redhat.com>
8093
8094 * symtab.c (error_in_psymtab_expansion): New function.
8095 (lookup_symbol_aux_quick)
8096 (basic_lookup_transparent_type_quick): Remove "last resort"
8097 code. Use error_in_psymtab_expansion.
8098
8099 2013-03-14 Doug Evans <dje@google.com>
8100 Jan Kratochvil <jan.kratochvil@redhat.com>
8101
8102 * dwarf2read.c (dw2_map_symtabs_matching_filename): Put continue after
8103 any successful compare_filenames_for_search or FILENAME_CMP.
8104 * psymtab.c (partial_map_symtabs_matching_filename): Likewise.
8105 * symtab.c (iterate_over_some_symtabs): Likewise.
8106
8107 2013-03-14 Jan Kratochvil <jan.kratochvil@redhat.com>
8108
8109 * source.c (print_source_lines_base): Make a local copy of
8110 symtab_to_fullname.
8111
8112 2013-03-14 Hui Zhu <hui_zhu@mentor.com>
8113 Jan Kratochvil <jan.kratochvil@redhat.com>
8114
8115 * source.c (print_source_lines_base): Suppress "file" for TUI.
8116
8117 2013-03-14 Keith Seitz <keiths@redhat.com>
8118 Alan Matsuoka <alanm@redhat.com>
8119
8120 PR c++/15203
8121 PR c++/15210
8122 * cp-namespace.c (cp_lookup_nested_symbol): Handle TYPE_CODE_FUNC and
8123 TYPE_CODE_METHOD.
8124 * elfread.c (elf_symtab_read): Handle BSF_GNU_UNIQUE for certain
8125 symbols.
8126
8127 2013-03-14 Yao Qi <yao@codesourcery.com>
8128
8129 * tracepoint.c (tfile_write_status): Write 'stop_desc' of trace
8130 status to tfile if trace is stopped by command 'tstop'.
8131
8132 2013-03-14 Yao Qi <yao@codesourcery.com>
8133
8134 * tracepoint.c (tfile_write_status): Write trace notes and user
8135 name into tfile if they are not NULL.
8136
8137 2013-03-14 Hui Zhu <hui@codesourcery.com>
8138 Yao Qi <yao@codesourcery.com>
8139
8140 * Makefile.in (REMOTE_OBS): Add ctf.o.
8141 (SFILES): Add ctf.c.
8142 (HFILES_NO_SRCDIR): Add ctf.h.
8143 * ctf.c, ctf.h: New files.
8144 * tracepoint.c: Include 'ctf.h'.
8145 (collect_pseudocommand): Remove static.
8146 (trace_save_command): Parse option "-ctf".
8147 Produce different trace file writers per option.
8148 Adjust output message.
8149 (trace_save_tfile, trace_save_ctf): New.
8150 * tracepoint.h (trace_save_tfile, trace_save_ctf): Declare.
8151 * mi/mi-main.c: Include 'ctf.h'.
8152 (mi_cmd_trace_save): Handle option '-ctf'. Call either
8153 trace_save_tfile or trace_save_ctf.
8154 * NEWS: Mention these changes.
8155
8156 2013-03-14 Yao Qi <yao@codesourcery.com>
8157
8158 * tracepoint.c (trace_file_writer_xfree): New.
8159 (struct tfile_writer_data): New.
8160 (tfile_dtor, tfile_can_target_save, tfile_start): New.
8161 (tfile_write_header, tfile_write_regblock_type): New.
8162 (tfile_write_status, tfile_write_uploaded_tsv): New.
8163 (tfile_write_uploaded_tp, tfile_write_definition_end): New.
8164 (tfile_write_raw_data, (tfile_end): New.
8165 (tfile_write_ops): New global variable.
8166 (TRACE_WRITE_R_BLOCK): New macro.
8167 (TRACE_WRITE_M_BLOCK_HEADER): New macro.
8168 (TRACE_WRITE_M_BLOCK_MEMORY): New macro.
8169 (TRACE_WRITE_V_BLOCK): New macro.
8170 (trace_save): Add extra one parameter WRITER. Make it static.
8171 Use WRITER to writer trace.
8172 (tfile_trace_file_writer_new): New.
8173 (trace_save_command): Caller update.
8174 (trace_save_tfile): Write trace data in TFILE format.
8175 * tracepoint.h (struct trace_frame_write_ops): New.
8176 (struct trace_file_write_ops): New.
8177 (struct trace_file_writer): New.
8178 (trace_save): Remove its declaration.
8179 (trace_save_tfile): Declare it.
8180 * mi/mi-main.c (mi_cmd_trace_save): Call trace_save_tfile
8181 instead of trace_save.
8182
8183 2013-03-13 Pedro Alves <palves@redhat.com>
8184
8185 * hppa-hpux-nat.c (hppa_hpux_save_state_offset): Make static.
8186
8187 2013-03-13 Pedro Alves <palves@redhat.com>
8188
8189 * dbxread.c (read_ofile_symtab, process_one_symbol): Remove
8190 commented out code.
8191 * demangle.c (current_demangling_style_string): Make it const.
8192 (set_demangling_command): Assert the demangling style is known.
8193 Remove all handling of unknown styles. Set
8194 'current_demangling_style_string' to an element of the
8195 demangling_style_names array.
8196 (set_demangling_style): Delete.
8197 (_initialize_demangler): Set current_demangling_style_string to the
8198 element of the demangling_style_names array that corresponds to
8199 the default demangling style. Remove FIXME note. Don't call
8200 set_demangling_style.
8201 * gdb-demangle.h (set_demangling_style): Remove declaration.
8202
8203 2013-03-13 Pedro Alves <palves@redhat.com>
8204
8205 * ada-lang.c (struct add_partial_datum) <text, text0, word>: Make
8206 fields const.
8207 (ada_make_symbol_completion_list): Make "text0" parameter const.
8208 * ax-gdb.c (agent_eval_command_one): Make "exp" parameter const.
8209 * breakpoint.c (condition_completer): Make "text" and "word"
8210 parameters const. Adjust.
8211 (check_tracepoint_command): Adjust to validate_actionline
8212 prototype change.
8213 (catch_syscall_completer): Make "text" and "word" parameters
8214 const.
8215 * cli/cli-cmds.c (show_user): Make "comname" local const.
8216 (valid_command_p): Make "command" parameter const.
8217 (alias_command): Make "alias_prefix" and "command_prefix" locals
8218 const.
8219 * cli/cli-decode.c (add_cmd): Make "name" parameter const.
8220 (add_alias_cmd): Make "name" and "oldname" parameters const.
8221 Adjust. No longer make copy of OLDNAME.
8222 (add_prefix_cmd, add_abbrev_prefix_cmd, add_set_or_show_cmd)
8223 (add_setshow_cmd_full, add_setshow_enum_cmd)
8224 (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
8225 (add_setshow_filename_cmd, add_setshow_string_cmd)
8226 (add_setshow_string_noescape_cmd)
8227 (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
8228 (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
8229 (add_setshow_zuinteger_unlimited_cmd, add_setshow_zuinteger_cmd)
8230 (delete_cmd, add_info, add_info_alias, add_com, add_com_alias):
8231 Make "name" parameter const.
8232 (help_cmd): Rename "command" parameter to "arg". New const local
8233 "command".
8234 (find_cmd): Make "command" parameter const.
8235 (lookup_cmd_1): Make "text" parameter pointer to const. Adjust to
8236 deprecated_cmd_warning prototype change.
8237 (undef_cmd_error): Make "cmdtype" parameter const.
8238 (lookup_cmd): Make "line" parameter const.
8239 (deprecated_cmd_warning): Change type of "text" parameter to
8240 pointer to const char, from pointer to pointer to char. Adjust.
8241 (lookup_cmd_composition): Make "text" parameter const.
8242 (complete_on_cmdlist, complete_on_enum): Make "text" and "word"
8243 parameters const.
8244 * cli/cli-decode.h (struct cmd_list_element) <name>: Make field
8245 const.
8246 * cli/cli-script.c (validate_comname): Make "tem" local const.
8247 (define_command): New const local "tem_c". Use it in calls to
8248 lookup_cmd.
8249 (document_command): Make "tem" and "comfull" locals const.
8250 (show_user_1): Make "prefix" and "name" parameters const.
8251 * cli-script.h (show_user_1): Make "prefix" and "name" parameters
8252 const.
8253 * command.h (add_cmd, add_alias_cmd, add_prefix_cmd)
8254 (add_abbrev_prefix_cmd, completer_ftype, lookup_cmd, lookup_cmd_1)
8255 (deprecated_cmd_warning, lookup_cmd_composition, add_com)
8256 (add_com_alias, add_info, add_info_alias, complete_on_cmdlist)
8257 (complete_on_enum, add_setshow_enum_cmd)
8258 (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
8259 (add_setshow_filename_cmd, add_setshow_string_cmd)
8260 (add_setshow_string_noescape_cmd)
8261 (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
8262 (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
8263 (add_setshow_zuinteger_cmd, add_setshow_zuinteger_unlimited_cmd):
8264 Change prototypes, constifying strings.
8265 * completer.c (noop_completer, filename_completer): Make "text"
8266 and "prefix" parameters const.
8267 (location_completer, expression_completer)
8268 (complete_line_internal): Make "text" and "prefix" parameters
8269 const and adjust.
8270 (command_completer, signal_completer): Make "text" and "prefix"
8271 parameters const.
8272 * completer.h (noop_completer, filename_completer)
8273 (expression_completer, location_completer, command_completer)
8274 (signal_completer): Change prototypes.
8275 * corefile.c (complete_set_gnutarget): Make "text" and "word"
8276 parameters const.
8277 * cp-abi.c (cp_abi_completer): Likewise.
8278 * expression.h (parse_expression_for_completion): Change
8279 prototype.
8280 * f-lang.c (f_make_symbol_completion_list): Make "text" and "word"
8281 parameters const.
8282 * infcmd.c (_initialize_infcmd): Make "cmd_name" local const.
8283 * infrun.c (handle_completer): Make "text" and "word" parameters
8284 const.
8285 * interps.c (interpreter_completer): Make "text" and "word"
8286 parameters const.
8287 * language.h (struct language_defn)
8288 <la_make_symbol_completion_list>: Make "text" and "word"
8289 parameters const.
8290 * parse.c (parse_exp_1): Move const hack to parse_exp_in_context.
8291 (parse_exp_in_context): Rename to ...
8292 (parse_exp_in_context_1): ... this.
8293 (parse_exp_in_context): Reimplement, with const hack from
8294 parse_exp_1.
8295 (parse_expression_for_completion): Make "string" parameter const.
8296 * printcmd.c (decode_format): Make "string_ptr" parameter pointer
8297 to pointer to const char. Adjust.
8298 (print_command_1): Make "exp" parameter const.
8299 (output_command): Rename to ...
8300 (output_command_const): ... this. Make "exp" parameter const.
8301 (output_command): Reimplement.
8302 (x_command): Adjust.
8303 (display_command): Rename "exp" parameter to "arg". New "exp"
8304 local, const version of "arg".
8305 * python/py-auto-load.c (gdbpy_initialize_auto_load): Make
8306 "cmd_name" local const.
8307 * python/py-cmd.c (cmdpy_destroyer): Cast const away in xfree
8308 call.
8309 (cmdpy_completer): Make "text" and "word" parameters const.
8310 (gdbpy_parse_command_name): Make "prefix_text2" local const.
8311 * python/py-param.c (add_setshow_generic): Make "tmp_name" local
8312 const.
8313 * remote.c (_initialize_remote): Make "cmd_name" local const.
8314 * symtab.c (language_search_unquoted_string): Make "text" and "p"
8315 parameters const. Adjust.
8316 (completion_list_add_fields): Make "sym_text", "text" and "word"
8317 parameters const.
8318 (struct add_name_data) <sym_text, text, word>: Make fields const.
8319 (default_make_symbol_completion_list_break_on): Make "text" and
8320 "word" parameters const. Adjust locals.
8321 (default_make_symbol_completion_list)
8322 (make_symbol_completion_list, make_symbol_completion_type)
8323 (make_symbol_completion_list_fn): Make "text" and "word"
8324 parameters const.
8325 (make_file_symbol_completion_list): Make "text", "word" and
8326 "srcfile" parameters const. Adjust locals.
8327 (add_filename_to_list): Make "text" and "word" parameters const.
8328 (struct add_partial_filename_data) <text, word>: Make fields
8329 const.
8330 (make_source_files_completion_list): Make "text" and "word"
8331 parameters const.
8332 * symtab.h (default_make_symbol_completion_list_break_on)
8333 (default_make_symbol_completion_list, make_symbol_completion_list)
8334 (make_symbol_completion_type enum type_code)
8335 (make_symbol_completion_list_fn make_file_symbol_completion_list)
8336 (make_source_files_completion_list): Change prototype.
8337 * top.c (execute_command): Adjust to pass pointer to pointer to
8338 const char to lookup_cmd, and to deprecated_cmd_warning prototype
8339 change.
8340 (set_verbose): Make "cmdname" local const.
8341 * tracepoint.c (decode_agent_options): Make "exp" parameter const,
8342 and adjust.
8343 (validate_actionline): Make "line" parameter a pointer to const
8344 char, and adjust.
8345 (encode_actions_1): Make "action_exp" local const, and adjust.
8346 (encode_actions): Adjust.
8347 (replace_comma): Delete.
8348 (trace_dump_actions): Make "action_exp" and "next_comma" locals
8349 const, and adjust. Don't frob the action string while splitting
8350 it at commas. Instead, make a copy of each split substring in
8351 turn.
8352 (trace_dump_command): Adjust to validate_actionline prototype
8353 change.
8354 * tracepoint.h (decode_agent_options, decode_agent_options)
8355 (encode_actions, validate_actionline): Change prototypes.
8356 * valprint.h (output_command): Delete declaration.
8357 (output_command_const): Declare.
8358 * value.c (function_destroyer): Cast const away in xfree call.
8359
8360 2013-03-13 Pedro Alves <palves@redhat.com>
8361
8362 * ada-lang.c (ada_decode_symbol): Cast away constness of GSYMBOL
8363 rather than casting 'const char * const *' to 'const char **'.
8364 * ada-lex.l (processInt): Make "trailer" local const. Remove
8365 'const char **' cast.
8366 * arm-linux-tdep.c (arm_stap_parse_special_token): Add 'char *'
8367 locals, and use those as strtol output pointer, instead than doing
8368 invalid casts to from 'const char **' to 'char **'.
8369 (_initialize_demangle): Remove cast.
8370 * i386-tdep.c (i386_stap_parse_special_token): : Add 'char *'
8371 locals, and use those as strtol output pointer, instead than doing
8372 invalid casts to from 'const char **' to 'char **'.
8373 * solib-dsbt.c (dsbt_get_initial_loadmaps): Remove 'gdb_byte**'
8374 casts.
8375 * stap-probe.c (stap_parse_register_operand)
8376 (stap_parse_single_operand): Likewise.
8377
8378 2013-03-13 Yao Qi <yao@codesourcery.com>
8379
8380 * tracepoint.c (tfile_get_trace_state_variable_value): Look for
8381 the last matched 'V' blcok in trace frame.
8382
8383 2013-03-12 Joel Brobecker <brobecker@adacore.com>
8384
8385 * NEWS: Create a new section for the next release branch.
8386 Rename the section of the current branch, now that it has
8387 been cut.
8388
8389 2013-03-12 Joel Brobecker <brobecker@adacore.com>
8390
8391 GDB 7.6 branch created (branch timestamp: 2013-03-12 22:15 UTC)
8392 * version.in: Bump version to 7.6.50.20130312-cvs.
8393
8394 2013-03-12 Keith Seitz <keiths@redhat.com>
8395
8396 * mi/mi-cmds.h (mi_execute_command): Make "cmd" const.
8397 * mi/mi-interp.c (mi_interpreter_exec): Make "command" const.
8398 Remove temporary copy of input string.
8399 (mi_execute_command_wrapper): Make "cmd" const.
8400 * mi/mi-main.c (mi_execute_command): Make "string_ptr" const.
8401 * mi/mi-parse.c (mi_parse_argv): Make "args" const.
8402 Use const strings.
8403 (mi_parse): Make "cmd" const.
8404 Use const strings.
8405 * mi/mi-parse.h (mi_parse): Make "cmd" const.
8406
8407 2013-03-12 Keith Seitz <keiths@redhat.com>
8408
8409 * ada-lang.c (ada_read_renaming_var_value): Pass const
8410 pointer to expression string to parse_exp_1.
8411 (create_excep_cond_exprs): Likewise.
8412 * ax-gdb.c (agent_eval_command_one): Likewise.
8413 (maint_agent_printf_command): Likewise.
8414 Constify much of the string handling/parsing.
8415 * breakpoint.c (set_breakpoint_condition): Pass const
8416 pointer to expression string to parse_exp_1.
8417 (update_watchpoint): Likewise.
8418 (parse_cmd_to_aexpr): Constify string handling.
8419 Pass const pointer to parse_exp_1.
8420 (init_breakpoint_sal): Pass const pointer to parse_exp_1.
8421 (find_condition_and_thread): Likewise.
8422 Make TOK const.
8423 (watch_command_1): Make "arg" const.
8424 Constify string handling.
8425 Copy the expression string instead of changing the input
8426 string.
8427 (update_breakpoint_location): Pass const pointer to
8428 parse_exp_1.
8429 * eval.c (parse_and_eval_address): Make "exp" const.
8430 (parse_to_comma_and_eval): Make "expp" const.
8431 (parse_and_eval): Make "exp" const.
8432 * expression.h (parse_expression): Make argument const.
8433 (parse_exp_1): Make first argument const.
8434 * findcmd.c (parse_find_args): Treat "args" as const.
8435 * linespec.c (parse_linespec): Pass const pointer to
8436 linespec_expression_to_pc.
8437 (linespec_expression_to_pc): Make "exp_ptr" const.
8438 * parse.c (parse_exp_1): Make "stringptr" const.
8439 Make a copy of the expression to pass to parse_exp_in_context until
8440 this whole interface can be constified.
8441 (parse_expression): Make "string" const.
8442 * printcmd.c (ui_printf): Treat "arg" as const.
8443 Handle const strings.
8444 * tracepoint.c (validate_actionline): Pass const pointer to
8445 all calls to parse_exp_1.
8446 (encode_actions_1): Likewise.
8447 * value.h (parse_to_comma_and_eval): Make argument const.
8448 (parse_and_eval_address): Likewise.
8449 (parse_and_eval): Likewise.
8450 * varobj.c (varobj_create): Pass const pointer to parse_exp_1.
8451 (varobj_set_value): Likewise.
8452 * cli/cli-cmds.c (disassemble_command): Treat "arg" as const and
8453 constify string handling.
8454 Pass const pointers to parse_and_eval_address and
8455 parse_to_comman_and_eval.
8456 * cli/cli-utils.c (skip_to_space): Rename to ...
8457 (skip_to_space_const): ... this. Handle const strings.
8458 * cli/cli-utils.h (skip_to_space): Turn into macro which invokes
8459 skip_to_space_const.
8460 (skip_to_space_const): Declare.
8461 * common/format.c (parse_format_string): Make "arg" const.
8462 Handle const strings.
8463 * common/format.h (parse_format_string): Make "arg" const.
8464 * gdbserver/ax.c (ax_printf): Make "format" const.
8465 * python/python.c (gdbpy_parse_and_eval): Do not make a copy
8466 of the expression string.
8467
8468 2013-03-12 Hui Zhu <hui@codesourcery.com>
8469
8470 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Update error message.
8471
8472 2013-03-12 Yao Qi <yao@codesourcery.com>
8473 Hui Zhu <hui@codesourcery.com>
8474
8475 * dwarf2loc.c (access_memory): Change nbits to nbytes in gdb_assert.
8476 (dwarf2_compile_expr_to_ax): Call access_memory in DW_OP_deref and
8477 DW_OP_deref_size.
8478
8479 2013-03-12 Paul Hilfinger <hilfingr@adacore.com>
8480
8481 * ada-lex.l (rules): Only recognize 'thread' as a
8482 delimiter when followed by numerals, as for c-exp.y.
8483 Use new rewind_to_char function to rewind the input for
8484 expression-delimiting tokens.
8485 (rewind_to_char): New function.
8486
8487 2013-03-11 Pedro Alves <palves@redhat.com>
8488 Jan Kratochvil <jan.kratochvil@redhat.com>
8489
8490 * configure: Regenerate.
8491 * configure.ac (check dynamic export flag): Link python test with
8492 $PYTHON_LIBS.
8493
8494 2013-03-11 Doug Evans <dje@google.com>
8495 Keith Seitz <keiths@redhat.com>
8496
8497 * linespec.c (find_linespec_symbols): Call find_function_symbols
8498 first, and then call lookup_prefix_sym/find_method.
8499
8500 2013-03-11 Pedro Alves <palves@redhat.com>
8501
8502 * charset.c (convert_between_encodings): Don't cast between
8503 different pointer to pointer types. Instead, make the 'inp' local
8504 be of the type iconv expects.
8505 (wchar_iterate): Don't cast between different pointer to pointer
8506 types. Instead, use new pointer local of the type iconv expects.
8507 * target.c (target_read_stralloc, target_fileio_read_stralloc):
8508 Add new local of type char pointer, and use it to get a
8509 char/string view of the byte buffer, instead of casting between
8510 pointer to pointer types.
8511
8512 2013-03-11 Hafiz Abid Qadeer <abidh@codesourcery.com>
8513
8514 * remote.c (remote_set_trace_buffer_size): Move != operator
8515 to the start of next line to fix an ARI warning.
8516
8517 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8518
8519 * NEWS: Add record changes.
8520
8521 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8522
8523 * record-btrace.c (btrace_insn_history): Omit the pc prefix in
8524 the instruction history disassembly.
8525 * disasm.c (dump_insns): Omit the pc prefix, if requested.
8526 * disasm.h (DISASSEMBLY_OMIT_PC): New.
8527
8528 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8529
8530 * Makefile.in (SFILES): Add record-btrace.c
8531 (COMMON_OBS): Add record-btrace.o
8532 * record-btrace.c: New.
8533 * objfiles.c: Include btrace.h.
8534 (free_objfile): call btrace_free_objfile.
8535
8536 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8537
8538 * target.c (target_call_history, target_call_history_from,
8539 target_call_history_range): New.
8540 * target.h (target_ops) <to_call_history, to_call_history_from,
8541 to_call_history_range>: New fields.
8542 (target_call_history, target_call_history_from,
8543 target_call_history_range): New declaration.
8544 * record.c (get_call_history_modifiers, cmd_record_call_history,
8545 record_call_history_size): New.
8546 (_initialize_record): Add the "record function-call-history" command.
8547 Add "set/show record function-call-history-size" commands.
8548 * record.h (record_print_flag): New.
8549
8550 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8551
8552 * target.h (target_ops) <to_insn_history, to_insn_history_from,
8553 to_insn_history_range>: New fields.
8554 (target_insn_history): New.
8555 (target_insn_history_from): New.
8556 (target_insn_history_range): New.
8557 * target.c (target_insn_history): New.
8558 (target_insn_history_from): New.
8559 (target_insn_history_range): New.
8560 * record.c: Include cli/cli-utils.h, disasm.h, ctype.h.
8561 (record_insn_history_size): New.
8562 (get_insn_number): New.
8563 (get_context_size): New.
8564 (no_chunk): New.
8565 (get_insn_history_modifiers): New.
8566 (cmd_record_insn_history): New.
8567 (_initialize_record): Add "set/show record instruction-history-size"
8568 command. Add "record instruction-history" command.
8569
8570 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8571
8572 * record.h (record_disconnect): New.
8573 (record_detach): New.
8574 (record_mourn_inferior): New.
8575 (record_kill): New.
8576 * record-full.c (record_disconnect, record_detach,
8577 record_mourn_inferior, record_kill): Move to...
8578 * record.c: ...here.
8579 (DEBUG): New.
8580 (record_stop): New.
8581 (record_unpush): New.
8582 (cmd_record_stop): Call record_stop. Replace unpush_target
8583 call with record_unpush call.
8584 (record_disconnect, record_detach): Assert that the target
8585 is of record stratum. Call record_unpush, record_stop, and
8586 DEBUG.
8587 (record_mourn_inferior, record_kill): Assert that the target
8588 is of record stratum. Call record_unpush and DEBUG.
8589
8590 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8591
8592 * record-full.h, record-full.c (record_memory_query): Rename
8593 to ...
8594 (record_full_memory_query): ...this. Update all users.
8595 (record_arch_list_add_reg): Rename to ...
8596 (record_full_arch_list_add_reg): ...this. Update all users.
8597 (record_arch_list_add_mem): Rename to ...
8598 (record_full_arch_list_add_mem): ...this. Update all users.
8599 (record_arch_list_add_end): Rename to ...
8600 (record_full_arch_list_add_end): ...this. Update all users.
8601 (record_gdb_operation_disable_set): Rename to ...
8602 (record_full_gdb_operation_disable_set): ...this.
8603 Update all users.
8604
8605 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8606
8607 * record-full.c (DEFAULT_RECORD_INSN_MAX_NUM): Renamed to ...
8608 (DEFAULT_RECORD_FULL_INSN_MAX_NUM): ... this. Updated all users.
8609 (RECORD_IS_REPLAY): Renamed to ...
8610 (RECORD_FULL_IS_REPLAY): ... this. Updated all users.
8611 (RECORD_FILE_MAGIC): Renamed to ...
8612 (RECORD_FULL_FILE_MAGIC): ... this. Updated all users.
8613 (record_mem_entry): Renamed to ...
8614 (record_full_mem_entry): ... this. Updated all users.
8615 (record_reg_entry): Renamed to ...
8616 (record_full_reg_entry): ... this. Updated all users.
8617 (record_end_entry): Renamed to ...
8618 (record_full_end_entry): ... this. Updated all users.
8619 (record_type) <record_end, record_reg, record_mem>: Renamed
8620 to ...
8621 (record_full_type) <record_full_end, record_full_reg,
8622 record_full_mem>: ... this. Updated all users.
8623 (record_entry): Renamed to ...
8624 (record_full_entry): ... this. Updated all users.
8625 (record_core_buf_entry): Renamed to ...
8626 (record_full_core_buf_entry): ... this. Updated all users.
8627 (record_core_regbuf): Renamed to ...
8628 (record_full_core_regbuf): ... this. Updated all users.
8629 (record_core_start): Renamed to ...
8630 (record_full_core_start): ... this. Updated all users.
8631 (record_core_end): Renamed to ...
8632 (record_full_core_end): ... this. Updated all users.
8633 (record_core_buf_list): Renamed to ...
8634 (record_full_core_buf_list): ... this. Updated all users.
8635 (record_first): Renamed to ...
8636 (record_full_first): ... this. Updated all users.
8637 (record_list): Renamed to ...
8638 (record_full_list): ... this. Updated all users.
8639 (record_arch_list_head): Renamed to ...
8640 (record_full_arch_list_head): ... this. Updated all users.
8641 (record_arch_list_tail): Renamed to ...
8642 (record_full_arch_list_tail): ... this. Updated all users.
8643 (record_stop_at_limit): Renamed to ...
8644 (record_full_stop_at_limit): ... this. Updated all users.
8645 (record_insn_max_num): Renamed to ...
8646 (record_full_insn_max_num): ... this. Updated all users.
8647 (record_insn_num): Renamed to ...
8648 (record_full_insn_num): ... this. Updated all users.
8649 (record_insn_count): Renamed to ...
8650 (record_full_insn_count): ... this. Updated all users.
8651 (record_ops): Renamed to ...
8652 (record_full_ops): ... this. Updated all users.
8653 (record_core_ops): Renamed to ...
8654 (record_full_core_ops): ... this. Updated all users.
8655 (set_record_cmdlist): Renamed to ...
8656 (set_record_full_cmdlist): ... this. Updated all users.
8657 (show_record_cmdlist): Renamed to ...
8658 (show_record_full_cmdlist): ... this. Updated all users.
8659 (record_cmdlist): Renamed to ...
8660 (record_full_cmdlist): ... this. Updated all users.
8661 (record_beneath_to_resume_ops): Renamed to ...
8662 (record_full_beneath_to_resume_ops): ... this. Updated all users.
8663 (record_beneath_to_resume): Renamed to ...
8664 (record_full_beneath_to_resume): ... this. Updated all users.
8665 (record_beneath_to_wait_ops): Renamed to ...
8666 (record_full_beneath_to_wait_ops): ... this. Updated all users.
8667 (record_beneath_to_wait): Renamed to ...
8668 (record_full_beneath_to_wait): ... this. Updated all users.
8669 (record_beneath_to_store_registers_ops): Renamed to ...
8670 (record_full_beneath_to_store_registers_ops): ... this.
8671 Updated all users.
8672 (record_beneath_to_store_registers): Renamed to ...
8673 (record_full_beneath_to_store_registers): ... this.
8674 Updated all users.
8675 (record_beneath_to_xfer_partial_ops): Renamed to ...
8676 (record_full_beneath_to_xfer_partial_ops): ... this.
8677 Updated all users.
8678 (record_beneath_to_xfer_partial): Renamed to ...
8679 (record_full_beneath_to_xfer_partial): ... this.
8680 Updated all users.
8681 (record_beneath_to_insert_breakpoint): Renamed to ...
8682 (record_full_beneath_to_insert_breakpoint): ... this.
8683 Updated all users.
8684 (record_beneath_to_stopped_by_watchpoint): Renamed to ...
8685 (record_full_beneath_to_stopped_by_watchpoint): ... this.
8686 Updated all users.
8687 (record_beneath_to_stopped_data_address): Renamed to ...
8688 (record_full_beneath_to_stopped_data_address): ... this.
8689 Updated all users.
8690 (record_beneath_to_async): Renamed to ...
8691 (record_full_beneath_to_async): ... this. Updated all users.
8692 (record_goto_insn): Renamed to ...
8693 (record_full_goto_insn): ... this. Updated all users.
8694 (record_save): Renamed to ...
8695 (record_full_save): ... this. Updated all users.
8696 (record_reg_alloc): Renamed to ...
8697 (record_full_reg_alloc): ... this. Updated all users.
8698 (record_reg_release): Renamed to ...
8699 (record_full_reg_release): ... this. Updated all users.
8700 (record_mem_alloc): Renamed to ...
8701 (record_full_mem_alloc): ... this. Updated all users.
8702 (record_mem_release): Renamed to ...
8703 (record_full_mem_release): ... this. Updated all users.
8704 (record_end_alloc): Renamed to ...
8705 (record_full_end_alloc): ... this. Updated all users.
8706 (record_end_release): Renamed to ...
8707 (record_full_end_release): ... this. Updated all users.
8708 (record_entry_release): Renamed to ...
8709 (record_full_entry_release): ... this. Updated all users.
8710 (record_list_release): Renamed to ...
8711 (record_full_list_release): ... this. Updated all users.
8712 (record_list_release_following): Renamed to ...
8713 (record_full_list_release_following): ... this.
8714 Updated all users.
8715 (record_list_release_first): Renamed to ...
8716 (record_full_list_release_first): ... this. Updated all users.
8717 (record_arch_list_add): Renamed to ...
8718 (record_full_arch_list_add): ... this. Updated all users.
8719 (record_get_loc): Renamed to ...
8720 (record_full_get_loc): ... this. Updated all users.
8721 (record_check_insn_num): Renamed to ...
8722 (record_full_check_insn_num): ... this. Updated all users.
8723 (record_arch_list_cleanups): Renamed to ...
8724 (record_full_arch_list_cleanups): ... this. Updated all users.
8725 (record_message): Renamed to ...
8726 (record_full_message): ... this. Updated all users.
8727 (record_message_wrapper): Renamed to ...
8728 (record_full_message_wrapper): ... this. Updated all users.
8729 (record_message_wrapper_safe): Renamed to ...
8730 (record_full_message_wrapper_safe): ... this. Updated all users.
8731 (record_gdb_operation_disable): Renamed to ...
8732 (record_full_gdb_operation_disable): ... this. Updated all users.
8733 (record_hw_watchpoint): Renamed to ...
8734 (record_full_hw_watchpoint): ... this. Updated all users.
8735 (record_exec_insn): Renamed to ...
8736 (record_full_exec_insn): ... this. Updated all users.
8737 (record_restore): Renamed to ...
8738 (record_full_restore): ... this. Updated all users.
8739 (record_async_inferior_event_token): Renamed to ...
8740 (record_full_async_inferior_event_token): ... this.
8741 Updated all users.
8742 (record_async_inferior_event_handler): Renamed to ...
8743 (record_full_async_inferior_event_handler): ... this.
8744 Updated all users.
8745 (record_core_open_1): Renamed to ...
8746 (record_full_core_open_1): ... this. Updated all users.
8747 (record_open_1): Renamed to ...
8748 (record_full_open_1): ... this. Updated all users.
8749 (record_open): Renamed to ...
8750 (record_full_open): ... this. Updated all users.
8751 (record_close): Renamed to ...
8752 (record_full_close): ... this. Updated all users.
8753 (record_resume_step): Renamed to ...
8754 (record_full_resume_step): ... this. Updated all users.
8755 (record_resumed): Renamed to ...
8756 (record_full_resumed): ... this. Updated all users.
8757 (record_execution_dir): Renamed to ...
8758 (record_full_execution_dir): ... this. Updated all users.
8759 (record_resume): Renamed to ...
8760 (record_full_resume): ... this. Updated all users.
8761 (record_get_sig): Renamed to ...
8762 (record_full_get_sig): ... this. Updated all users.
8763 (record_sig_handler): Renamed to ...
8764 (record_full_sig_handler): ... this. Updated all users.
8765 (record_wait_cleanups): Renamed to ...
8766 (record_full_wait_cleanups): ... this. Updated all users.
8767 (record_wait_1): Renamed to ...
8768 (record_full_wait_1): ... this. Updated all users.
8769 (record_wait): Renamed to ...
8770 (record_full_wait): ... this. Updated all users.
8771 (record_stopped_by_watchpoint): Renamed to ...
8772 (record_full_stopped_by_watchpoint): ... this. Updated all users.
8773 (record_disconnect): Renamed to ...
8774 (record_full_disconnect): ... this. Updated all users.
8775 (record_detach): Renamed to ...
8776 (record_full_detach): ... this. Updated all users.
8777 (record_mourn_inferior): Renamed to ...
8778 (record_full_mourn_inferior): ... this. Updated all users.
8779 (record_kill): Renamed to ...
8780 (record_full_kill): ... this. Updated all users.
8781 (record_stopped_data_address): Renamed to ...
8782 (record_full_stopped_data_address): ... this. Updated all users.
8783 (record_registers_change): Renamed to ...
8784 (record_full_registers_change): ... this. Updated all users.
8785 (record_store_registers): Renamed to ...
8786 (record_full_store_registers): ... this. Updated all users.
8787 (record_xfer_partial): Renamed to ...
8788 (record_full_xfer_partial): ... this. Updated all users.
8789 (record_breakpoint): Renamed to ...
8790 (record_full_breakpoint): ... this. Updated all users.
8791 (record_breakpoint_p): Renamed to ...
8792 (record_full_breakpoint_p): ... this. Updated all users.
8793 (record_breakpoints): Renamed to ...
8794 (record_full_breakpoints): ... this. Updated all users.
8795 (record_sync_record_breakpoints): Renamed to ...
8796 (record_full_sync_record_breakpoints): ... this.
8797 Updated all users.
8798 (record_init_record_breakpoints): Renamed to ...
8799 (record_full_init_record_breakpoints): ... this.
8800 Updated all users.
8801 (record_insert_breakpoint): Renamed to ...
8802 (record_full_insert_breakpoint): ... this. Updated all users.
8803 (record_remove_breakpoint): Renamed to ...
8804 (record_full_remove_breakpoint): ... this. Updated all users.
8805 (record_can_execute_reverse): Renamed to ...
8806 (record_full_can_execute_reverse): ... this. Updated all users.
8807 (record_get_bookmark): Renamed to ...
8808 (record_full_get_bookmark): ... this. Updated all users.
8809 (record_goto_bookmark): Renamed to ...
8810 (record_full_goto_bookmark): ... this. Updated all users.
8811 (record_async): Renamed to ...
8812 (record_full_async): ... this. Updated all users.
8813 (record_can_async_p): Renamed to ...
8814 (record_full_can_async_p): ... this. Updated all users.
8815 (record_is_async_p): Renamed to ...
8816 (record_full_is_async_p): ... this. Updated all users.
8817 (record_execution_direction): Renamed to ...
8818 (record_full_execution_direction): ... this. Updated all users.
8819 (record_info): Renamed to ...
8820 (record_full_info): ... this. Updated all users.
8821 (record_delete): Renamed to ...
8822 (record_full_delete): ... this. Updated all users.
8823 (record_is_replaying): Renamed to ...
8824 (record_full_is_replaying): ... this. Updated all users.
8825 (record_goto_entry): Renamed to ...
8826 (record_full_goto_entry): ... this. Updated all users.
8827 (record_goto_begin): Renamed to ...
8828 (record_full_goto_begin): ... this. Updated all users.
8829 (record_goto_end): Renamed to ...
8830 (record_full_goto_end): ... this. Updated all users.
8831 (record_goto): Renamed to ...
8832 (record_full_goto): ... this. Updated all users.
8833 (init_record_ops): Renamed to ...
8834 (init_record_full_ops): ... this. Updated all users.
8835 (record_core_resume): Renamed to ...
8836 (record_full_core_resume): ... this. Updated all users.
8837 (record_core_kill): Renamed to ...
8838 (record_full_core_kill): ... this. Updated all users.
8839 (record_core_fetch_registers): Renamed to ...
8840 (record_full_core_fetch_registers): ... this. Updated all users.
8841 (record_core_prepare_to_store): Renamed to ...
8842 (record_full_core_prepare_to_store): ... this. Updated all users.
8843 (record_core_store_registers): Renamed to ...
8844 (record_full_core_store_registers): ... this. Updated all users.
8845 (record_core_xfer_partial): Renamed to ...
8846 (record_full_core_xfer_partial): ... this. Updated all users.
8847 (record_core_insert_breakpoint): Renamed to ...
8848 (record_full_core_insert_breakpoint): ... this. Updated all users.
8849 (record_core_remove_breakpoint): Renamed to ...
8850 (record_full_core_remove_breakpoint): ... this. Updated all users.
8851 (record_core_has_execution): Renamed to ...
8852 (record_full_core_has_execution): ... this. Updated all users.
8853 (init_record_core_ops): Renamed to ...
8854 (init_record_full_core_ops): ... this. Updated all users.
8855 (cmd_record_restore): Renamed to ...
8856 (cmd_record_full_restore): ... this. Updated all users.
8857 (record_save_cleanups): Renamed to ...
8858 (record_full_save_cleanups): ... this. Updated all users.
8859 (cmd_record_start): Renamed to ...
8860 (cmd_record_full_start): ... this. Updated all users.
8861 (set_record_insn_max_num): Renamed to ...
8862 (set_record_full_insn_max_num): ... this. Updated all users.
8863 (set_record_command): Renamed to ...
8864 (set_record_full_command): ... this. Updated all users.
8865 (show_record_command): Renamed to ...
8866 (show_record_full_command): ... this. Updated all users.
8867 (_initialize_record): Renamed to ...
8868 (_initialize_record_full): ... this. Updated all users.
8869
8870 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8871
8872 * record.h: Split into this and ...
8873 * record-full.h: ... this.
8874 * record.c: Split into this and ...
8875 * record-full.c: ... this.
8876 * target.h (target_ops): Add new fields to_info_record,
8877 to_save_record, to_delete_record, to_record_is_replaying,
8878 to_goto_record_begin, to_goto_record_end, to_goto_record.
8879 (target_info_record): New.
8880 (target_save_record): New.
8881 (target_supports_delete_record): New.
8882 (target_delete_record): New.
8883 (target_record_is_replaying): New.
8884 (target_goto_record_begin): New.
8885 (target_goto_record_end): New.
8886 (target_goto_record): New.
8887 * target.c (target_info_record): New.
8888 (target_save_record): New.
8889 (target_supports_delete_record): New.
8890 (target_delete_record): New.
8891 (target_record_is_replaying): New.
8892 (target_goto_record_begin): New.
8893 (target_goto_record_end): New.
8894 (target_goto_record): New.
8895 * record.h: Declare struct cmd_list_element.
8896 (record_cmdlist): New declaration.
8897 (set_record_cmdlist): New declaration.
8898 (show_record_cmdlist): New declaration.
8899 (info_record_cmdlist): New declaration.
8900 (cmd_record_goto): New declaration.
8901 * record.c: Remove unnecessary includes.
8902 Include inferior.h.
8903 (cmd_record_goto): Remove declaration.
8904 (record_cmdlist): Now extern. Initialize.
8905 (set_record_cmdlist): Now extern. Initialize.
8906 (show_record_cmdlist): Now extern. Initialize.
8907 (info_record_cmdlist): Now extern. Initialize.
8908 (find_record_target): New.
8909 (require_record_target): New.
8910 (cmd_record_start): Update.
8911 (cmd_record_delete): Remove target-specific code.
8912 Call target_delete_record.
8913 (cmd_record_stop): Unpush any record target.
8914 (set_record_insn_max_num): Move to record-full.c
8915 (set_record_command): Add comment.
8916 (show_record_command): Add comment.
8917 (info_record_command): Update comment.
8918 Remove target-specific code.
8919 Call the record target's to_info_record.
8920 (cmd_record_start): New.
8921 (cmd_record_goto): Now extern.
8922 Remove target-specific code.
8923 Call target_goto_begin, target_goto_end, or target_goto.
8924 (_initialize_record): Move record target ops initialization to
8925 record-full.c.
8926 Change "record" command help text.
8927 Move "record restore", "record set", and "record show" commands to
8928 record-full.c.
8929 * Makefile.in (SFILES): Add record-full.c.
8930 (HFILES_NO_SRCDIR): Add record-full.h.
8931 (COMMON_OBS): Add record-full.o.
8932 * amd64-linux-tdep.c: Include record-full.h instead of record.h.
8933 * arm-tdep.c: Include record-full.h.
8934 * i386-linux-tdep.c: Include record-full.h instead of record.h.
8935 * i386-tdep.c: Include record-full.h.
8936 * infrun.c: Include record-full.h.
8937 * linux-record.c: Include record-full.h.
8938 * moxie-tdep.c: Include record-full.h.
8939 * record-full.c: Include record-full.h.
8940 Change module comment.
8941 (set_record_full_cmdlist): New.
8942 (show_record_full_cmdlist): New.
8943 (record_full_cmdlist): New.
8944 (record_goto_insn): New declaration.
8945 (record_save): New declaration.
8946 (record_check_insn_num): Change query string.
8947 (record_info): New.
8948 (record_delete): New.
8949 (record_is_replaying): New.
8950 (record_goto_entry): New.
8951 (record_goto_begin): New.
8952 (record_goto_end): New.
8953 (record_goto): New.
8954 (init_record_ops): Update.
8955 (init_record_core_ops): Update.
8956 (cmd_record_save): Rename to record_save. Remove target and arg checks.
8957 (cmd_record_start): New.
8958 (set_record_insn_max_num): Moved from record.c
8959 (set_record_full_command): New.
8960 (show_record_full_command): New.
8961 (_initialize_record_full): New.
8962
8963 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8964
8965 * target.h (add_deprecated_target_alias): New.
8966 * target.c (add_deprecated_target_alias): New.
8967
8968 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8969
8970 * common/linux-btrace.c: Include sys/ptrace, sys/types, sys/wait.h,
8971 and signal.h.
8972 (linux_supports_btrace): Add kernel and
8973 cpuid check.
8974 (kernel_supports_btrace): New function.
8975 (cpu_supports_btrace): New function.
8976 (intel_supports_btrace): New function.
8977
8978 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8979
8980 * target.h (enum target_object): Add TARGET_OBJECT_BTRACE.
8981 * remote.c: Include btrace.h.
8982 (struct btrace_target_info): New struct.
8983 (remote_supports_btrace): New function.
8984 (send_Qbtrace): New function.
8985 (remote_enable_btrace): New function.
8986 (remote_disable_btrace): New function.
8987 (remote_teardown_btrace): New function.
8988 (remote_read_btrace): New function.
8989 (init_remote_ops): Add btrace ops.
8990 (enum <unnamed>): Add btrace packets.
8991 (struct protocol_feature remote_protocol_features[]): Add btrace packets.
8992 (_initialize_remote): Add packet configuration for branch tracing.
8993
8994 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8995
8996 * features/btrace.dtd: New file.
8997 * Makefile.in (XMLFILES): Add btrace.dtd.
8998 * btrace.h (parse_xml_btrace): New declaration.
8999 * btrace.c: Include xml-support.h.
9000 (parse_xml_btrace): New function.
9001 (parse_xml_btrace_block): New function.
9002 (block_attributes): New struct.
9003 (btrace_attributes): New struct.
9004 (btrace_children): New struct.
9005 (btrace_elements): New struct.
9006
9007 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
9008
9009 * amd64-linux-nat.c: Include btrace.h and linux-btrace.h.
9010 (amd64_linux_enable_btrace): New.
9011 (amd64_linux_disable_btrace): New.
9012 (amd64_linux_teardown_btrace): New.
9013 (_initialize_amd64_linux_nat): Initialize btrace ops.
9014 * i386-linux.nat.c: Include btrace.h and linux-btrace.h.
9015 (i386_linux_enable_btrace): New.
9016 (i386_linux_disable_btrace): New.
9017 (i386_linux_teardown_btrace): New.
9018 (_initialize_i386_linux_nat): Initialize btrace ops.
9019 * config/i386/linux.mh: Add linux-btrace.o.
9020 * config/i386/linux64.mh: Add linux-btrace.o.
9021
9022 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
9023
9024 * common/linux_btrace.h: New file.
9025 * common/linux_btrace.c: New file.
9026 * Makefile.in (SFILES): Add btrace.c.
9027 (HFILES_NO_SRCDIR): Add common/linux-btrace.h.
9028 (COMMON_OBS): Add btrace.o.
9029 (linux-btrace.o): New rule.
9030
9031 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
9032
9033 * target.h: Include btrace.h.
9034 (struct target_ops) <to_supports_btrace, to_enable_btrace,
9035 to_disable_btrace, to_teardown_btrace, to_read_btrace>: New.
9036 * target.c (target_supports_btrace): New function.
9037 (target_enable_btrace): New function.
9038 (target_disable_btrace): New function.
9039 (target_teardown_btrace): New function.
9040 (target_read_btrace): New function.
9041 * btrace.h: New file.
9042 * btrace.c: New file.
9043 * Makefile.in: Add btrace.c.
9044 * gdbthread.h: Include btrace.h.
9045 (struct thread_info): Add btrace field.
9046 * thread.c: Include btrace.h.
9047 (clear_thread_inferior_resources): Call target_teardown_btrace.
9048 * common/btrace-common.h: New file.
9049
9050 2013-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
9051
9052 * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Call also kill
9053 for CHILD, ignore PTRACE_KILL errors, move the inner block variable
9054 kill_status to outer block.
9055
9056 2013-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
9057
9058 Fix entry-values if the callee called a noreturn function.
9059 * dwarf2-frame-tailcall.c (dwarf2_tailcall_sniffer_first): Use
9060 get_frame_address_in_block. Add new comment.
9061
9062 2013-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
9063
9064 Fix entry-values in C++ across CUs.
9065 * dwarf2loc.c (call_site_to_target_addr) <FIELD_LOC_KIND_PHYSNAME>: Use
9066 lookup_minimal_symbol. Add a comment.
9067 * dwarf2read.c
9068 (read_call_site_scope) <is_ref_attr> <die_is_declaration>: Prefer
9069 DW_AT_linkage_name.
9070
9071 2013-03-08 Yao Qi <yao@codesourcery.com>
9072
9073 * tracepoint.c (_initialize_tracepoint): Indent the code.
9074
9075 2013-03-08 Pedro Alves <palves@redhat.com>
9076
9077 * findcmd.c (put_bits): Change type of parameter to 'gdb_byte *'.
9078 (parse_find_args, find_command): Change type of pattern buffer
9079 locals to 'gdb_byte *'.
9080
9081 2013-03-08 Stan Shebs <stan@codesourcery.com>
9082 Hafiz Abid Qadeer <abidh@codesourcery.com>
9083
9084 * NEWS: Mention set and show trace-buffer-size commands.
9085 Mention new packet.
9086 * target.h (struct target_ops): New method
9087 to_set_trace_buffer_size.
9088 (target_set_trace_buffer_size): New macro.
9089 * target.c (update_current_target): Set up new method.
9090 * tracepoint.c (trace_buffer_size): New global.
9091 (start_tracing): Send it to the target.
9092 (set_trace_buffer_size): New function.
9093 (_initialize_tracepoint): Add new setshow for trace-buffer-size.
9094 * remote.c (remote_set_trace_buffer_size): New function.
9095 (_initialize_remote): Use it.
9096 (QTBuffer:size) New remote command.
9097 (PACKET_QTBuffer_size): New enum.
9098 (remote_protocol_features): Add an entry for
9099 PACKET_QTBuffer_size.
9100
9101 2013-03-08 Tom Tromey <tromey@redhat.com>
9102
9103 * remote-m32r-sdi.c (m32r_load): Call skip_spaces on correct
9104 variable.
9105
9106 2013-03-07 Pedro Alves <palves@redhat.com>
9107
9108 * target.c (target_read_stralloc, target_fileio_read_alloc):
9109 *Cast pointer to 'gdb_byte *' in target call.
9110
9111 2013-03-07 Pedro Alves <palves@redhat.com>
9112
9113 * corefile.c (read_memory_string): Cast pointer to gdb_byte* in
9114 call.
9115
9116 2013-03-07 Keith Seitz <keiths@redhat.com>
9117
9118 * breakpoint.c (catch_syscall_split_args): Use skip_spaces.
9119 (trace_pass_command): Likewise.
9120 * cli/cli-cmds.c: Include cli/cli-utils.h.
9121 (source_command): Use skip-spaces.
9122 (disassemble_command): Likewise.
9123 * findcmd.c: Include cli/cli-utils.h.
9124 (parse_find_args): Use skip_spaces.
9125 * go32-nat.c: Include cli/cli-utils.h.
9126 (go32_sldt): Use skip_spaces.
9127 (go32_sgdt): Likewise.
9128 (go32_sidt): Likewise.
9129 (go32_pde): Likewise.
9130 (go32_pte): Likewise.
9131 (go32_pte_for_address): Likewise.
9132 * infcmd.c: Include cli/cli-utils.h.
9133 (registers_info): Use skip_spaces.
9134 * linux-tdep.c (read_mapping): Use skip_spaces_const.
9135 (linux_info_proc): Likewise.
9136 * linux-thread-db.c: Include cli/cli-utils.h.
9137 (info_auto_load_libthread_db): Use skip_spaces_const.
9138 * m32r-rom.c: Include cli/cli-utils.h.
9139 (m32r_upload_command): Use skip_spaces.
9140 * maint.c: Include cli/cli-utils.h.
9141 (maintenance_translate_address): Use skip_spaces.
9142 * mi/mi-parse.c: Include cli/cli-utils.h.
9143 (mi_parse_argv): Use skip_spaces.
9144 (mi_parse): Likewise.
9145 * minsyms.c: Include cli/cli-utils.h.
9146 (msymbol_hash_iw): Use skip_spaces_const.
9147 * objc-lang.c: Include cli/cli-utils.h.
9148 (parse_selector): Use skip_spaces.
9149 (parse_method): Likewise.
9150 * python/python.c: Include cli/cli-utils.h.
9151 (python_interactive_command)[HAVE_PYTHON]: Use skip_spaces.
9152 (python_command)[HAVE_PYTHON]: Likewise.
9153 (python_interactive_command)[!HAVE_PYTHON]: Likewise.
9154 * remote-m32r-sdi.c: Include cli/cli-utils.h.
9155 (m32r_load): Use skip_spaces.
9156 * serial.c: Include cli/cli-utils.h.
9157 (serial_open): Use skip_spaces_const.
9158 * stack.c: Include cli/cli-utils.h.
9159 (parse_frame_specification_1): Use skip_spaces_const.
9160 * symfile.c: Include cli/cli-utils.h.
9161 (set_ext_lang_command): Use skip_spaces.
9162 * symtab.c: Include cli/cli-utils.h.
9163 (rbreak_command): Use skip_spaces.
9164 * thread.c (thread_name_command): Use skip_spaces.
9165 * tracepoint.c (validate_actionline): Use skip_spaces.
9166 (encode_actions_1): Likewise.
9167 (trace_find_range_command): Likewise.
9168 (trace_find_outside_command): Likewise.
9169 (trace_dump_actions): Likewise.
9170
9171 2013-03-07 Pedro Alves <palves@redhat.com>
9172
9173 * c-lang.c (parse_one_string): Cast argument to gdb_byte *.
9174 * expprint.c (print_subexp_standard): Likewise.
9175 * utils.c (host_char_to_target): Likewise.
9176 * valprint.c (generic_emit_char, generic_printstr): Likewise.
9177 * varobj.c (value_get_print_value): Change type of local to char*.
9178 Cast it gdb_byte * in call to language printer.
9179
9180 2013-03-07 Pedro Alves <palves@redhat.com>
9181
9182 * charset.c (struct wchar_iterator) <input>: Change type to 'const
9183 gdb_byte *'.
9184 (make_wchar_iterator): Remove cast to char*.
9185 (wchar_iterate): Change type of local.
9186
9187 2013-03-07 Pedro Alves <palves@redhat.com>
9188
9189 * regcache.c (regcache_xmalloc_1): Call XCALLOC with signed char
9190 for 'regcache->register_status'.
9191
9192 2013-03-07 Pedro Alves <palves@redhat.com>
9193
9194 * breakpoint.c (breakpoint_xfer_memory): Change type of local to
9195 int.
9196
9197 2013-03-07 Pedro Alves <palves@redhat.com>
9198
9199 * stap-probe.c (handle_stap_probe): Add cast to char*.
9200
9201 2013-03-07 Pedro Alves <palves@redhat.com>
9202
9203 * linux-record.c (record_linux_system_call) <gdb_sys_msgrcv,
9204 RECORD_MSGRCV>: Pass a signed variable to
9205 regcache_raw_read_signed, instead of an unsigned one.
9206
9207 2013-03-07 Pedro Alves <palves@redhat.com>
9208
9209 * remote-notif.c (notif_debug): Change type to int.
9210 * remote-notif.h (notif_debug): Likewise.
9211
9212 2013-03-07 Pedro Alves <palves@redhat.com>
9213
9214 * ser-tcp.c (tcp_retry_limit): Change type to unsigned int.
9215
9216 2013-03-07 Pedro Alves <palves@redhat.com>
9217
9218 * remote.c (hex2bin, bin2hex): Move extern declarations to ...
9219 * remote.h (hex2bin, bin2hex): ... here.
9220 * tracepoint.c (hex2bin, bin2hex): Remove extern declarations.
9221
9222 2013-03-07 Eli Zaretskii <eliz@gnu.org>
9223
9224 * utils.c (initialize_utils): Improve doc strings of "set/show
9225 width", "set/show height", and "set/show pagination".
9226
9227 2013-03-06 Keith Seitz <keiths@redhat.com>
9228
9229 * ax-gdb.c (gen_printf): Make FORMAT const.
9230 * ax-gdb.h (gen_printf): Likewise.
9231 * ax-general.c (ax_string): Make STR const.
9232 * ax.h (ax_string): Likewise.
9233
9234 2013-03-06 Doug Evans <dje@google.com>
9235
9236 * elfread.c (elf_symfile_read): Move debugging printf to more
9237 logical location.
9238
9239 2013-03-06 Pedro Alves <palves@redhat.com>
9240
9241 * python/py-utils.c (target_string_to_unicode): Delete function.
9242 * python/python-internal.h (target_string_to_unicode): Delete
9243 declaration.
9244
9245 2013-03-06 Pierre Muller <muller@sourceware.org>
9246
9247 * linespec.c (get_current_search_block): ARI fix, use (void)
9248 for empty parameter list.
9249
9250 2013-03-05 Doug Evans <dje@google.com>
9251
9252 * ada-lang.c (ada_lookup_symbol_list_worker): New function, contents
9253 of old ada_lookup_symbol_list. In !full_search case, don't
9254 search superblocks.
9255 (ada_lookup_symbol_list): Delete arg full_search, all callers
9256 updated. Call ada_lookup_symbol_list_worker.
9257 (ada_iterate_over_symbols): Call ada_lookup_symbol_list_worker.
9258 * ada-lang.h (ada_lookup_symbol_list): Update.
9259 * language.h (language_defn): Update comment for
9260 la_iterate_over_symbols.
9261 * linespec.c (iterate_over_file_blocks): New function.
9262 (iterate_over_all_matching_symtabs): Call it.
9263 (lookup_prefix_sym): Ditto.
9264 (get_current_search_block): New function.
9265 (get_search_block): Delete.
9266 (find_label_symbols): Call get_current_search_block.
9267 (add_matching_symbols_to_info): Call iterate_over_file_blocks.
9268 * symtab.c (iterate_over_symbols): Don't search superblocks.
9269
9270 2013-03-05 Yao Qi <yao@codesourcery.com>
9271
9272 * cli/cli-decode.c (add_setshow_zuinteger_unlimited_cmd): Change
9273 parameter VAR's type from "unsigned int" to "int".
9274 * command.h (var_zuinteger_unlimited): Update its comments.
9275 (add_setshow_zuinteger_unlimited_cmd): Update the declaration.
9276
9277 2013-03-05 Corinna Vinschen <vinschen@redhat.de>
9278
9279 * NEWS: Mention new target x86_64-*-cygwin*.
9280
9281 2013-03-05 Corinna Vinschen <vinschen@redhat.de>
9282
9283 * configure.host: Add x86_64-*-cygwin* as host.
9284 * configure.tgt: Add x86_64-*-cygwin* as target.
9285 * config/i386/cygwin64.mh: New file.
9286
9287 2013-03-04 Jan Kratochvil <jan.kratochvil@redhat.com>
9288
9289 * linespec.c (decode_line_2): Fix duplicate request off by two message.
9290
9291 2013-03-04 Jan Kratochvil <jan.kratochvil@redhat.com>
9292
9293 * linespec.c (struct linespec_canonical_name): New.
9294 (struct linespec_state): Change canonical_names type to it.
9295 (add_sal_to_sals): Change variable canonical_name to canonical. Change
9296 xrealloc element size. Initialize the different CANONICAL fields.
9297 (canonical_to_fullform): New.
9298 (filter_results): Use it. Add variables canonical, fullform and
9299 cleanup.
9300 (struct decode_line_2_item, decode_line_2_compare_items): New.
9301 (decode_line_2): Remove variables iter and item_names, add variables
9302 items and items_count. Modify the code for these new variables.
9303
9304 2013-03-04 Corinna Vinschen <vinschen@redhat.com>
9305
9306 * coff-pe-read.c (read_pe_exported_syms): Don't return without
9307 calling do_cleanup.
9308
9309 2013-03-04 Luis Machado <lgustavo@codesourcery.com>
9310
9311 * tracepoint.c (build_traceframe_info): Add code for byte order.
9312
9313 2013-03-02 Kevin Buettner <kevinb@redhat.com>
9314
9315 * v850-tdep.c: (v850e2_register_name): Revise system register
9316 names to match current V850E2M architecture specifications.
9317 Update register number enum comments too.
9318
9319 2013-03-01 Jiong Wang <jiwang@tilera.com>
9320 Pedro Alves <palves@redhat.com>
9321
9322 * tilegx-tdep.c (tilegx_analyze_prologue): Limit bundle reading
9323 to END_ADDR.
9324 (tilegx_skip_prologue): Limit prologue analysis to section end.
9325
9326 2013-03-01 Jan Kratochvil <jan.kratochvil@redhat.com>
9327
9328 * dwarf2loc.c (call_site_find_chain_1): New variable save_callee_pc,
9329 use it.
9330
9331 2013-03-01 Pedro Alves <palves@redhat.com>
9332
9333 Use gdb_byte for bytes from the program being debugged.
9334
9335 * arm-tdep.c (arm_store_return_value, arm_get_longjmp_target):
9336 Change type of local 'buf' to gdb_byte.
9337 * avr-tdep.c (avr_frame_prev_register, avr_push_dummy_call): Likewise.
9338 * bfin-tdep.c (bfin_push_dummy_call): Likewise.
9339 * cris-tdep.c (cris_sigcontext_addr)
9340 (cris_sigtramp_frame_unwind_cache): Likewise.
9341 * frv-linux-tdep.c (frv_linux_pc_in_sigtramp)
9342 (frv_linux_sigcontext_reg_addr, frv_linux_sigtramp_frame_cache):
9343 Likewise.
9344 * frv-tdep.c (frv_pseudo_register_write, frv_analyze_prologue): Likewise.
9345 * hppa-hpux-tdep.c (hppa32_hpux_find_global_pointer)
9346 (hppa32_hpux_search_dummy_call_sequence)
9347 (hppa_hpux_supply_save_state): Likewise.
9348 * hppa-linux-tdep.c (insns_match_pattern)
9349 (hppa_linux_find_global_pointer): Likewise.
9350 * hppa-tdep.c (hppa_in_function_epilogue_p)
9351 (skip_prologue_hard_way, hppa_frame_cache): Likewise.
9352 * i386-nto-tdep.c (i386nto_sigcontext_addr): Likewise.
9353 * i386fbsd-tdep.c (i386fbsd_supply_uthread)
9354 (i386fbsd_collect_uthread): Likewise.
9355 * ia64-hpux-tdep.c (ia64_hpux_push_dummy_code): Likewise.
9356 * ia64-linux-tdep.c (ia64_linux_sigcontext_register_address): Likewise.
9357 * ia64-tdep.c (examine_prologue, ia64_frame_cache)
9358 (ia64_frame_prev_register, ia64_sigtramp_frame_cache)
9359 (ia64_sigtramp_frame_prev_register, ia64_access_reg)
9360 (ia64_access_rse_reg, ia64_libunwind_frame_this_id)
9361 (ia64_libunwind_frame_prev_register)
9362 (ia64_libunwind_sigtramp_frame_this_id)
9363 (ia64_find_global_pointer_from_dynamic_section)
9364 (find_extant_func_descr, find_func_descr, ia64_dummy_id)
9365 (ia64_unwind_pc): Likewise.
9366 * iq2000-tdep.c (iq2000_store_return_value): Likewise.
9367 * m68hc11-tdep.c (m68hc11_push_dummy_call)
9368 (m68hc11_extract_return_value): Likewise.
9369 * m68klinux-nat.c (fetch_register, store_register): Likewise.
9370 * mep-tdep.c (mep_pseudo_cr32_read, mep_pseudo_cr32_write)
9371 (mep_get_insn, mep_push_dummy_call): Likewise.
9372 * mips-linux-tdep.c (mips_linux_get_longjmp_target)
9373 (mips_linux_in_dynsym_stub): Likewise.
9374 * mn10300-tdep.c (mep_pseudo_cr32_write): Likewise.
9375 * ppc-linux-nat.c (fetch_register, store_register): Likewise.
9376 * regcache.c (dump_endian_bytes): Change type of parameter 'buf'
9377 to gdb_byte.
9378 * remote-mips.c (mips_set_register): Likewise.
9379 * remote-sim.c (gdbsim_fetch_register): Likewise.
9380 * score-tdep.c (score7_fetch_inst): Change type of parameter
9381 'memblock' and local 'buf' to gdb_byte.
9382 (score7_malloc_and_get_memblock): Change return type to gdb_byte.
9383 Change type of local 'buf' to gdb_byte. Adjust.
9384 (score7_adjust_memblock_ptr): Change type of parameter 'memblock'
9385 to gdb_byte**.
9386 (score7_analyze_prologue): Change type of 'memblock' and
9387 'memblock_ptr' locals to gdb_byte*.
9388 * sh64-tdep.c (sh64_extract_return_value)
9389 (sh64_store_return_value): Change type of local 'buf' to gdb_byte.
9390 * solib-darwin.c (darwin_current_sos, darwin_read_exec_load_addr):
9391 * solib-pa64.c (pa64_solib_create_inferior_hook)
9392 (pa64_open_symbol_file_object): Remove local 'buf'.
9393 * solib-som.c (som_solib_create_inferior_hook, link_map_start)
9394 (som_open_symbol_file_object): Likewise.
9395 * solib-spu.c (spu_current_sos): Likewise.
9396 * spu-linux-nat.c (spu_fetch_inferior_registers): Likewise.
9397 * spu-multiarch.c (parse_spufs_run, spu_fetch_registers)
9398 (spu_store_registers): Likewise.
9399 * target.c (debug_print_register): Likewise.
9400 * tic6x-tdep.c (tic6x_get_longjmp_target): Likewise.
9401 * xstormy16-tdep.c (xstormy16_store_return_value)
9402 (xstormy16_push_dummy_call, xstormy16_resolve_jmp_table_entry)
9403 (xstormy16_find_jmp_table_entry): Likewise.
9404
9405 2013-03-01 Jiong Wang <jiwang@tilera.com>
9406
9407 * tilegx-tdep.c (tilegx_get_longjmp_target): New function.
9408 (tilegx_gdbarch_init): Install it.
9409
9410 2013-02-28 Tom Tromey <tromey@redhat.com>
9411
9412 * python/py-arch.c (archpy_disassemble): Use PyInt_Check and
9413 PyLong_Check.
9414
9415 2013-02-28 Doug Evans <dje@google.com>
9416
9417 * python/py-finishbreakpoint.c (bpfinishpy_init): gcc -Wall lint.
9418 * python/python.c (gdbpy_find_pc_line): Ditto.
9419
9420 2013-02-28 Tom Tromey <tromey@redhat.com>
9421
9422 * contrib/excheck.py: New file.
9423 * contrib/exsummary.py: New file.
9424 * contrib/gcc-with-excheck: New file.
9425
9426 2013-02-28 Tom Tromey <tromey@redhat.com>
9427
9428 * python/python.c (gdbpy_print_stack): Call begin_line and
9429 fprintf_filtered inside TRY_CATCH.
9430
9431 2013-02-28 Tom Tromey <tromey@redhat.com>
9432
9433 * python/python.c (gdbpy_find_pc_line): Call find_pc_line
9434 inside TRY_CATCH.
9435
9436 2013-02-28 Tom Tromey <tromey@redhat.com>
9437
9438 * py-finishbreakpoint.c (bpfinishpy_init): Reorganize to call
9439 frame_object_to_frame_info inside TRY_CATCH.
9440
9441 2013-02-28 Tom Tromey <tromey@redhat.com>
9442
9443 * py-block.c (gdbpy_block_for_pc): Call block_for_pc inside
9444 TRY_CATCH.
9445
9446 2013-02-28 Tom Tromey <tromey@redhat.com>
9447
9448 * objfiles.h (ALL_PSPACE_OBJFILES): Remove trailing backlash.
9449
9450 2013-02-27 Corinna Vinschen <vinschen@redhat.com>
9451
9452 * windows-nat.c: Throughout, fix format strings and casts of
9453 printf-like functions to avoid type related warnings on all
9454 platforms.
9455 (handle_output_debug_string): Fetch context information address
9456 from debug string using string_to_core_addr.
9457
9458 2013-02-27 Jiong Wang <jiwang@tilera.com>
9459
9460 * regformats/reg-tilegx.dat (name): Change abi name to "tilegx".
9461 * regformats/reg-tilegx32.dat: New.
9462
9463 2013-02-27 Jiong Wang <jiwang@tilera.com>
9464
9465 * configure.tgt (tilegx-*-linux*): Enable gdbserver.
9466
9467 2013-02-27 Jiong Wang <jiwang@tilera.com>
9468
9469 * configure.tgt (tilegx-*-linux*): Replace whitespace with tab.
9470
9471 2013-02-27 Yao Qi <yao@codesourcery.com>
9472 Pedro Alves <palves@redhat.com>
9473
9474 * tracepoint.c (tfile_trace_find): For tfind
9475 pc/tp/range/outside, look for the next trace frame instead of
9476 always starting from frame 0.
9477
9478 2013-02-26 Anthony Green <green@moxielogic.com>
9479
9480 * configure.tgt: Add support for moxie-*-rtems* target.
9481
9482 2013-02-25 Pedro Alves <palves@redhat.com>
9483
9484 * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Change
9485 warning text.
9486
9487 2013-02-24 Maciej W. Rozycki <macro@codesourcery.com>
9488
9489 * mips-tdep.c (mips32_scan_prologue): Reset frame_offset to zero
9490 if $fp is used as the virtual frame pointer.
9491
9492 2013-02-23 Alan Modra <amodra@gmail.com>
9493
9494 * elfread.c (elf_symtab_read): Do not use udata.p here to find
9495 symbol size.
9496 * ppc64-tdep.c (ppc64_elf_make_msymbol_special): New function.
9497 * ppc64-tdep.h (ppc64_elf_make_msymbol_special): Declare.
9498 * ppc-linux-tdep.c (ppc_linux_init_abi): Set up to use the above.
9499 * ppcfbsd-tdep.c (ppcfbsd_init_abi): Likewise.
9500
9501 2013-02-22 Jan Kratochvil <jan.kratochvil@redhat.com>
9502
9503 Code cleanup.
9504 * elfread.c (build_id_bfd_get): Make the return type const.
9505 (build_id_verify): Make the check parameter const.
9506 (build_id_to_debug_filename): Make the build_id parameter and variable
9507 data const.
9508 (find_separate_debug_file_by_buildid): Make the variable build_id const.
9509
9510 2013-02-21 Alan Modra <amodra@gmail.com>
9511
9512 * elfread.c (build_id_bfd_get): Adjust for elf_tdata changes.
9513
9514 2013-02-20 Siva Chandra Reddy <sivachandra@google.com>
9515
9516 Add a new method 'disassemble' to gdb.Architecture class.
9517 * python/py-arch.c (archpy_disassmble): Implementation of the
9518 new method gdb.Architecture.disassemble.
9519 (arch_object_methods): Add entry for the new method.
9520
9521 2013-02-20 Jiong Wang <jiwang@tilera.com>
9522
9523 * MAINTAINERS (Write After Approval): Add myself to the list.
9524
9525 2013-02-19 Pedro Alves <palves@redhat.com>
9526
9527 Garbage collect 'struct monitor_ops'::load_routine.
9528
9529 * monitor.h (struct monitor_ops) <load_routine>: Remove field.
9530 * monitor.c (monitor_load): No longer call
9531 current_monitor->load_routine.
9532 * dbug-rom.c (init_dbug_cmds): Don't set 'load_routine'.
9533 * m32r-rom.c (init_m32r_cmds): Don't set 'load_routine'.
9534 * ppcbug-rom.c (init_ppc_cmds): Don't set 'load_routine'.
9535
9536 2013-02-19 Pedro Alves <palves@redhat.com>
9537
9538 PR gdb/15161
9539
9540 Harmonize with generic_load.
9541
9542 * monitor.c: Include "readline/readline.h".
9543 (monitor_load): Rename parameter 'file' to 'args'. Use build_argv
9544 instead of sscanf. Use CORE_ADDR/strtoulst instead of unsigned
9545 long/strtol for the 'load_offset' local. Error out if no argument
9546 is given or if too many arguments are given. Tilde expand the
9547 passed in file name.
9548
9549 2013-02-19 Kai Tietz <ktietz@redhat.com>
9550
9551 PR gdb/15161
9552 * symfile.c (load_section_data): Change type of load_offset
9553 to CORE_ADDR.
9554 (generic_load): User strtoulst instead of strtoul for conversion
9555 of load_offset.
9556
9557 2013-02-19 Jiong Wang <jiwang@tilera.com>
9558
9559 * tilegx-tdep.c (tilegx_analyze_prologue): add check for
9560 for return address, "lr" register, saved on stack.
9561 * tilegx-tdep.c (tilegx_frame_cache): update "PC" reg
9562 after we invoke tilegx_analyze_prologue.
9563
9564 2013-02-19 Jiong Wang <jiwang@tilera.com>
9565
9566 * tilegx-tdep.c (itilegx_gdbarch_init): char type should be signed.
9567
9568 2013-02-19 Jiong Wang <jiwang@tilera.com>
9569
9570 * tilegx-tdep.c (tilegx_skip_prologue): Use skip_prologue_using_sal.
9571
9572 2013-02-19 Jiong Wang <jiwang@tilera.com>
9573
9574 * tilegx-tdep.c (INT_SWINT_1_SIGRETURN): New macro.
9575 (tilegx_write_pc): New function.
9576 (tilegx_cannot_reference_register): Return zero if REGNO
9577 is TILEGX_FAULTNUM_REGNUM.
9578 (tilegx_gdbarch_init): Add call to set_gdbarch_write_pc.
9579 (tilegx_register_name): Add handling of "faultnum" register.
9580 * tilegx-tdep.h (enum tilegx_regnum): Add TILEGX_FAULTNUM_REGNUM.
9581 * tilegx-linux-tdep.c (tilegx_linux_supply_regset): Add
9582 handling of TILEGX_FAULTNUM_REGNUM.
9583 * tilegx-linux-nat.c (regmap): Add entry for TILEGX_FAULTNUM_REGNUM.
9584
9585 2013-02-19 Jiong Wang <jiwang@tilera.com>
9586
9587 * tilegx-tdep.c (tilegx_push_dummy_call): args pushed on stack
9588 should be aligned to 64bit.
9589
9590 2013-02-19 Kai Tietz <ktietz@redhat.com>
9591
9592 * windows-nat.c (windows_xfer_memory): Fix debug-output
9593 for LLP64.
9594
9595 2013-02-19 Lei Liu <lei.liu2@windriver.com>
9596
9597 * mips-linux-nat.c (mips64_linux_regsets_store_registers):
9598 Don't check DSP register number if HAVE_DSP is not set.
9599
9600 2013-02-19 Alan Modra <amodra@gmail.com>
9601
9602 * elfread.c (struct build_id): Delete. Use struct elf_build_id
9603 throughout file instead.
9604 (build_id_bfd_get): Update to use new elf_tdata build_id field.
9605 Don't xmalloc return value.
9606 (build_id_verify): Similarly. Don't xfree.
9607 (build_id_to_debug_filename): Update.
9608 (find_separate_debug_file_by_buildid): Update, don't xfree.
9609
9610 2013-02-18 Tom Tromey <tromey@redhat.com>
9611
9612 PR gdb/15102:
9613 * dwarf2read.c (read_subrange_type): Use result of
9614 'check_typedef'.
9615
9616 2013-02-16 Yuanhui Zhang <asmwarrior@gmail.com>
9617
9618 * frame.c: Remove one extra white space after #include
9619 directive.
9620
9621 2013-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
9622
9623 * contrib/cc-with-tweaks.sh: Extend the comment for -p option.
9624
9625 2013-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
9626
9627 * gdb-gdb.gdb.in: Wrap set complaints, b internal_error, b info_command
9628 and dir commands into an if block.
9629
9630 2013-02-15 Sanimir Agovic <sanimir.agovic@intel.com>
9631
9632 * python/py-breakpoint (struct pybp_code): Use int instead of
9633 enum type_code.
9634
9635 2013-02-15 Pedro Alves <pedro@codesourcery.com>
9636 Hafiz Abid Qadeer <abidh@codesourcery.com>
9637
9638 * NEWS: Mention new field "trace-file".
9639 * tracepoint.c (trace_status_mi): Output "trace-file" field.
9640 (tfile_open): Record the trace file's filename in the trace
9641 status.
9642 (tfile_files_info): Mention the name of the trace file.
9643 Check the "filename" field explicitely.
9644 (trace_status_command): Explicitely check "filename" field.
9645 (trace_find_command): Ditto.
9646 (trace_find_pc_command): Ditto.
9647 (trace_find_tracepoint_command): Ditto.
9648 (trace_find_line_command): Ditto.
9649 (trace_find_range_command): Ditto.
9650 (trace_find_outside_command): Ditto.
9651 * tracepoint.h (struct trace_status) <from_file>: Rename it
9652 to "filename" and make it hold the trace file's filename
9653 instead of a boolean.
9654 * remote.c (remote_get_trace_status): Initialize "filename"
9655 field with NULL instead of 0.
9656
9657 2013-02-15 Yao Qi <yao@codesourcery.com>
9658
9659 * remote.c: Fix a typo.
9660
9661 2013-02-14 Pierre Muller <muller@sourceware.org>
9662
9663 * contrib/ari/gdb_ari.sh (GNU/Linux rule): Remove.
9664
9665 2013-02-14 Pedro Alves <palves@redhat.com>
9666
9667 * utils.c (savestring): Don't #undef it. Move function to
9668 common/common-utils.c.
9669 * common/common-utils.c: Include gdb_string.h.
9670 (savestring): Move here from utils.c.
9671 * common/common-utils.h (savestring): Declare.
9672
9673 2013-02-14 Pedro Alves <palves@redhat.com>
9674
9675 * utils.c (savestring): Rename parameter 'size' to 'len'.
9676
9677 2013-02-14 Pedro Alves <palves@redhat.com>
9678 Yufeng Zhang <yufeng.zhang@arm.com>
9679
9680 * aarch64-linux-nat.c (aarch64_init_debug_reg_state): Delete.
9681 (aarch64_inferior_data, struct aarch64_inferior_data):
9682 Delete.
9683 (struct aarch64_process_info): New.
9684 (aarch64_process_list): New global.
9685 (aarch64_find_process_pid, aarch64_add_process)
9686 (aarch64_process_info_get): New functions.
9687 (aarch64_inferior_data_get): Delete.
9688 (aarch64_process_info_get): New function.
9689 (aarch64_forget_process): New function.
9690 (aarch64_get_debug_reg_state): New parameter 'pid'. Reimplement.
9691 (aarch64_linux_prepare_to_resume): Pass the lwp's pid to
9692 aarch64_get_debug_reg_state.
9693 (aarch64_notify_debug_reg_change): Use iterate_over_lwps
9694 instead of linux_nat_iterate_watchpoint_lwps.
9695 (aarch64_linux_new_fork): New function.
9696 (aarch64_linux_child_post_startup_inferior): Use
9697 aarch64_forget_process instead of aarch64_init_debug_reg_state.
9698 (aarch64_handle_breakpoint, aarch64_linux_insert_hw_breakpoint)
9699 (aarch64_linux_remove_hw_breakpoint)
9700 (aarch64_handle_aligned_watchpoint)
9701 (aarch64_handle_unaligned_watchpoint)
9702 (aarch64_linux_insert_watchpoint)
9703 (aarch64_linux_remove_watchpoint)
9704 (aarch64_linux_stopped_data_address): Adjust to pass the current
9705 process id to aarch64_debug_reg_state.
9706 (_initialize_aarch64_linux_nat): Install aarch64_linux_new_fork as
9707 linux_nat_new_fork hook, and aarch64_forget_process as
9708 linux_nat_forget_process hook; remove the call to
9709 register_inferior_data_with_cleanup.
9710
9711 2013-02-14 Pedro Alves <palves@redhat.com>
9712
9713 * eval.c (evaluate_subexp_for_address) <default_case_after_eval,
9714 EVAL_AVOID_SIDE_EFFECTS>: Swap and handle TYPE_CODE_REF before
9715 lval_memory.
9716
9717 2013-02-14 Pedro Alves <pedro@codesourcery.com>
9718 Hafiz Abid Qadeer <abidh@codesourcery.com>
9719
9720 * tracepoint.h (validate_trace_state_variable_name): Declare.
9721 * tracepoint.c (validate_trace_state_variable_name): New.
9722 (trace_variable_command): Parse the trace state variable's name
9723 without using parse_expression. Do several validations.
9724 * mi/mi-main.c (mi_cmd_trace_define_variable): Don't parse the
9725 trace state variable's name with parse_expression. Validate it.
9726
9727 2013-02-14 Yao Qi <yao@codesourcery.com>
9728
9729 * infcmd.c (breakpoint_proceeded): Remove it.
9730
9731 2013-02-14 Yao Qi <yao@codesourcery.com>
9732
9733 * tracepoint.c (end_actions_pseudocommand): Make it static.
9734 (while_stepping_pseudocommand): Likewise.
9735 * tracepoint.h (end_actions_pseudocommand): Remove the
9736 declaration.
9737 (while_stepping_pseudocommand): Likewise.
9738
9739 2013-02-14 Yao Qi <yao@codesourcery.com>
9740
9741 * cli/cli-decode.c (help_cmd): Remove the declaration of
9742 "cmdlist".
9743 (help_all): Likewise.
9744
9745 2013-02-13 Pedro Alves <palves@redhat.com>
9746
9747 * amd64-linux-nat.c (update_debug_registers_callback):
9748 Update comment.
9749 (amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use
9750 iterate_over_lwps.
9751 (amd64_linux_prepare_to_resume): Pass the lwp's pid to
9752 i386_debug_reg_state.
9753 (amd64_linux_new_fork): New function.
9754 (_initialize_amd64_linux_nat): Install amd64_linux_new_fork as
9755 linux_nat_new_fork hook, and i386_forget_process as
9756 linux_nat_forget_process hook.
9757 * i386-linux-nat.c (update_debug_registers_callback):
9758 Update comment.
9759 (i386_linux_dr_set_control, i386_linux_dr_set_addr): Use
9760 iterate_over_lwps.
9761 (i386_linux_prepare_to_resume): Pass the lwp's pid to
9762 i386_debug_reg_state.
9763 (i386_linux_new_fork): New function.
9764 (_initialize_i386_linux_nat): Install i386_linux_new_fork as
9765 linux_nat_new_fork hook, and i386_forget_process as
9766 linux_nat_forget_process hook.
9767 * i386-nat.c (i386_init_dregs): Delete.
9768 (i386_inferior_data, struct i386_inferior_data):
9769 Delete.
9770 (struct i386_process_info): New.
9771 (i386_process_list): New global.
9772 (i386_find_process_pid, i386_add_process, i386_process_info_get):
9773 New functions.
9774 (i386_inferior_data_get): Delete.
9775 (i386_process_info_get): New function.
9776 (i386_debug_reg_state): New parameter 'pid'. Reimplement.
9777 (i386_forget_process): New function.
9778 (i386_cleanup_dregs): Rewrite.
9779 (i386_update_inferior_debug_regs, i386_insert_watchpoint)
9780 (i386_remove_watchpoint, i386_region_ok_for_watchpoint)
9781 (i386_stopped_data_address, i386_insert_hw_breakpoint)
9782 (i386_remove_hw_breakpoint): Adjust to pass the current process id
9783 to i386_debug_reg_state.
9784 (i386_use_watchpoints): Don't register inferior data.
9785 * i386-nat.h (i386_debug_reg_state): Add new 'pid' parameter, and
9786 adjust comment.
9787 (i386_forget_process): Declare.
9788 * linux-fork.c (delete_fork): Call linux_nat_forget_process.
9789 * linux-nat.c (linux_nat_new_fork, linux_nat_forget_process_hook):
9790 New static globals.
9791 (linux_child_follow_fork): Don't call linux_nat_new_thread here.
9792 (add_initial_lwp): New, factored out from ...
9793 (add_lwp): ... this. Don't check the number of lwps before
9794 calling linux_nat_new_thread.
9795 (linux_nat_iterate_watchpoint_lwps): Delete.
9796 (linux_nat_attach): Use add_initial_lwp instead of add_lwp.
9797 (linux_handle_extended_wait): Call the linux_nat_new_fork hook on
9798 forks and vforks.
9799 (linux_nat_wait_1): Use add_initial_lwp instead of add_lwp for the
9800 initial lwp.
9801 (linux_nat_kill, linux_nat_mourn_inferior): Call
9802 linux_nat_forget_process.
9803 (linux_nat_set_new_fork, linux_nat_set_forget_process)
9804 (linux_nat_forget_process): New functions.
9805 * linux-nat.h (linux_nat_iterate_watchpoint_lwps_ftype): Delete
9806 type.
9807 (linux_nat_iterate_watchpoint_lwps): Delete declaration.
9808 (linux_nat_new_fork_ftype, linux_nat_forget_process_ftype): New
9809 types.
9810 (linux_nat_set_new_fork, linux_nat_set_forget_process)
9811 (linux_nat_forget_process): New declarations.
9812
9813 * amd64fbsd-nat.c (super_mourn_inferior): New global.
9814 (amd64fbsd_mourn_inferior): New function.
9815 (_initialize_amd64fbsd_nat): Override to_mourn_inferior.
9816 * windows-nat.c (windows_detach): Call i386_cleanup_dregs.
9817
9818 2013-02-13 Marcus Shawcroft <marcus.shawcroft@arm.com>
9819
9820 * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity):
9821 Adding _().
9822
9823 2013-02-13 Marcus Shawcroft <marcus.shawcroft@arm.com>
9824
9825 * aarch64-linux-nat.c (debug_reg_change_callback)
9826 (aarch64_linux_get_debug_reg_capacity): ARI fix: Replace %llx with
9827 %s and phex().
9828
9829 2013-02-13 Marcus Shawcroft <marcus.shawcroft@arm.com>
9830
9831 * aarch64-linux-nat.c (dr_changed_t): ARI fix: Replace long long
9832 with LONGEST.
9833
9834 2013-02-13 Pedro Alves <palves@redhat.com>
9835 Hafiz Abid Qadeer <abidh@codesourcery.com>
9836
9837 * c-lang.c (c_op_print_tab): Add entry for UNOP_PLUS.
9838
9839 2013-02-12 Tom Tromey <tromey@redhat.com>
9840
9841 PR symtab/11464:
9842 * c-exp.y (lex_one_token): Initialize other fields of yylval on
9843 NAME return.
9844 (classify_inner_name): Remove 'first_name' argument, add
9845 'context'. Remove unused variable.
9846 (yylex): Explicitly maintain the context type. Exit loop earlier
9847 if NAME result is seen.
9848
9849 2013-02-12 Pedro Alves <palves@redhat.com>
9850
9851 * amd64-darwin-tdep.c: Add (C) after Copyright.
9852 * cli/cli-cmds.h: Ditto.
9853 * cli/cli-decode.c: Ditto.
9854 * cli/cli-decode.h: Ditto.
9855 * cli/cli-dump.c: Ditto.
9856 * cli/cli-dump.h: Ditto.
9857 * cli/cli-interp.c: Ditto.
9858 * cli/cli-logging.c: Ditto.
9859 * cli/cli-script.c: Ditto.
9860 * cli/cli-script.h: Ditto.
9861 * cli/cli-setshow.c: Ditto.
9862 * cli/cli-setshow.h: Ditto.
9863 * cli/cli-utils.c: Ditto.
9864 * cli/cli-utils.h: Ditto.
9865 * config/alpha/nm-osf3.h: Ditto.
9866 * config/djgpp/djconfig.sh: Ditto.
9867 * config/i386/nm-fbsd.h: Ditto.
9868 * config/i386/nm-i386gnu.h: Ditto.
9869 * config/nm-linux.h: Ditto.
9870 * config/nm-nto.h: Ditto.
9871 * config/rs6000/nm-rs6000.h: Ditto.
9872 * config/sparc/nm-sol2.h: Ditto.
9873 * darwin-nat-info.c: Ditto.
9874 * dfp.c: Ditto.
9875 * dfp.h: Ditto.
9876 * gdb-demangle.h: Ditto.
9877 * i386-darwin-nat.c: Ditto.
9878 * i386-darwin-tdep.c: Ditto.
9879 * linux-fork.h: Ditto.
9880 * m32c-tdep.c: Ditto.
9881 * microblaze-linux-tdep.c: Ditto.
9882 * microblaze-rom.c: Ditto.
9883 * microblaze-tdep.c: Ditto.
9884 * microblaze-tdep.h: Ditto.
9885 * mips-linux-tdep.h: Ditto.
9886 * ppc-ravenscar-thread.c: Ditto.
9887 * ppc-ravenscar-thread.h: Ditto.
9888 * prologue-value.c: Ditto.
9889 * prologue-value.h: Ditto.
9890 * ravenscar-thread.c: Ditto.
9891 * ravenscar-thread.h: Ditto.
9892 * sparc-ravenscar-thread.c: Ditto.
9893 * sparc-ravenscar-thread.h: Ditto.
9894 * tilegx-linux-tdep.c: Ditto.
9895 * unwind_stop_reasons.def: Ditto.
9896 * windows-nat.h: Ditto.
9897 * xtensa-linux-tdep.c: Ditto.
9898 * xtensa-xtregs.c: Ditto.
9899 * regformats/regdat.sh: Ditto.
9900 * regformats/regdef.h: Ditto.
9901
9902 2013-02-12 Pedro Alves <palves@redhat.com>
9903
9904 * break-catch-sig.c: Update copyright years.
9905
9906 2013-02-11 Siva Chandra Reddy <sivachandra@google.com>
9907
9908 Add support for a destructor for ui_out data and use it to
9909 provide a ui_out destructor.
9910 * ui-out.h: Declare the new ui_out destructor.
9911 (ui_out_impl): Add a field for data destructor in ui_out_impl.
9912 * ui-out.c (default_data_destroy): Add a default data destructor
9913 which does nothing.
9914 (default_ui_out_impl): Set the new data_destroy field to
9915 default_data_destroy
9916 (uo_data_destroy): Local function which invokes the data
9917 destructor if present.
9918 (clear_table): Local function which clears the table data of a
9919 ui_out object.
9920 (ui_out_destroy): Public function which frees a ui_out object.
9921 (ui_out_table_end): Use the new clear_table function.
9922 * cli-out.c (cli_ui_out_impl): Set the new data_destroy field to
9923 NULL.
9924 * mi/mi-out.c (mi_ui_out_impl): Set the new data_destroy field
9925 to NULL.
9926
9927 2013-02-11 Doug Evans <dje@google.com>
9928
9929 * printcmd.c (printf_c_string,printf_wide_c_string): New functions.
9930 (printf_decfloat): New function. Broken out from ui_printf.
9931 Remove unnecessary code to shift the entire format string down.
9932 (printf_pointer): New function.
9933 (ui_printf): Code to print C strings, wide C strings, decfloats,
9934 and pointers moved to separate functions.
9935
9936 2013-02-11 Sergio Durigan Junior <sergiodj@redhat.com>
9937
9938 * valops.c (value_assign): Handling bitfield offset in
9939 `lval_internalvar_component' case.
9940
9941 2013-02-08 Doug Evans <dje@google.com>
9942
9943 * common/format.c (parse_format_string): Fix whitespace.
9944
9945 2013-02-08 Matthew Gretton-Dann <matthew.gretton-dann@linaro.org>
9946
9947 * stack.c (return_command): Work around uninitialized variable
9948 warning.
9949
9950 2013-02-08 Yufeng Zhang <yufeng.zhang@arm.com>
9951
9952 * aarch64-linux-tdep.c (AARCH64_LINUX_SIZEOF_GREGSET): Change the
9953 number of the registers from 36 to 34.
9954
9955 2013-02-08 Marcus Shawcroft <marcus.shawcroft@arm.com>
9956
9957 * NEWS: Mention new AArch64 native and target support.
9958
9959 2013-02-08 Marcus Shawcroft <marcus.shawcroft@arm.com>
9960
9961 * MAINTAINERS (Write After Approval): Add myself.
9962
9963 2013-02-08 Jim MacArthur <jim.macarthur@arm.com>
9964 Marcus Shawcroft <marcus.shawcroft@arm.com>
9965 Nigel Stephens <nigel.stephens@arm.com>
9966 Yufeng Zhang <yufeng.zhang@arm.com>
9967
9968 * aarch64-linux-nat.c: New file.
9969 * config/aarch64/linux.mh: New file.
9970 * configure.host: Add AArch64.
9971 * Makefile.in (ALLDEPFILES): Add aarch64-linux-nat.c.
9972
9973 2013-02-07 Doug Evans <dje@google.com>
9974
9975 * cli/cli-cmds.c (_initialize_cli_cmds): Clarify argument to
9976 disassemble command.
9977
9978 2013-02-07 Marcus Shawcroft <marcus.shawcroft@arm.com>
9979
9980 * aarch64-linux-tdep.c (aarch64_linux_init_abi): Call
9981 set_gdbarch_fetch_tls_load_module_address.
9982
9983 2013-02-06 David S. Miller <davem@davemloft.net>
9984
9985 * sparc-tdep.c (sparc32_return_value): Handle writing return value when
9986 using RETURN_VALUE_ABI_PRESERVES_ADDRESS.
9987 * value.c (struct_return_convention): New function.
9988 (using_struct_return): Implement in terms of struct_return_convention.
9989 * value.h (struct_return_convention): Declare.
9990 * stack.c (return_command): Allow successful overriding of the return
9991 value when RETURN_VALUE_ABI_PRESERVES_ADDRESS.
9992
9993 2013-02-06 Tom Tromey <tromey@redhat.com>
9994
9995 * python/py-type.c (typy_strip_typedefs): Don't call check_typedef
9996 outside of TRY_CATCH.
9997
9998 2013-02-06 Yao Qi <yao@codesourcery.com>
9999
10000 * mi/mi-interp.c: Include "tracepoint.h".
10001 (mi_tsv_modified): Declare.
10002 (mi_tsv_created, mi_tsv_deleted): Update declaration.
10003 (mi_interpreter_init): Call observer_attach_tsv_modified.
10004 (mi_tsv_modified): New.
10005 (mi_tsv_created, mi_tsv_deleted): Update.
10006 * tracepoint.c (trace_variable_command): Call
10007 observer_notify_tsv_modified if the initial value of tsv is
10008 changed.
10009 (delete_trace_state_variable): Call
10010 observer_notify_tsv_deleted earlier.
10011 (trace_variable_command): Caller update.
10012 (create_tsv_from_upload): Likewise.
10013 * observer.sh: Declare "struct trace_state_variable".
10014
10015 * NEWS: Mention the new MI notification "=tsv-modified".
10016
10017 2013-02-05 Doug Evans <dje@google.com>
10018
10019 * completer.c (location_completer): Fix typo in comment.
10020
10021 2013-02-05 Jan Kratochvil <jan.kratochvil@redhat.com>
10022
10023 * breakpoint.c (add_location_to_breakpoint): Insert the location with
10024 ADDRESS sorted.
10025
10026 2013-02-05 Marcus Shawcroft <marcus.shawcroft@arm.com>
10027
10028 * aarch64-tdep.c (aarch64_analyze_prologue): ARI fix:
10029 Refactor if statement to avoid trailing || operator.
10030
10031 2013-02-05 Andreas Tobler <andreast@fgznet.ch>
10032
10033 * NEWS: Add PowerPC FreeBSD as a new native configuration.
10034
10035 2013-02-04 Andreas Tobler <andreast@fgznet.ch>
10036
10037 * Makefile.in (ALL_TARGET_OBS): Add powerpc FreeBSD files.
10038 * configure.host: Add powerpc*-*-freebsd* target.
10039 * configure.tgt: Add target info for powerpc*-*-freebsd*.
10040 * ppcfbsd-nat.c, ppcfbsd-tdep.h, ppcfbsd-tdep.c: New files.
10041 * config/powerpc/fbsd.mh: New file.
10042
10043 2013-02-04 Sergio Durigan Junior <sergiodj@redhat.com>
10044 Denys Vlasenko <dvlasenk@redhat.com>
10045 Pedro Alves <palves@redhat.com>
10046
10047 * gdbarch.sh (elfcore_write_linux_prpsinfo): New F hook.
10048 (struct elf_internal_linux_prpsinfo): Forward declare.
10049 * gdbarch.h, gdbarch.c: Regenerate.
10050 * linux-tdep.c: Include `cli/cli-utils.h'.
10051 (linux_fill_prpsinfo): New function.
10052 (linux_make_corefile_notes): Use linux_fill_prpsinfo. If there's
10053 an elfcore_write_linux_prpsinfo hook, use it, otherwise, use
10054 elfcore_write_linux_prpsinfo32 or elfcore_write_linux_prpsinfo64
10055 depending on gdbarch pointer bitness.
10056 * ppc-linux-tdep.c: Include elf-bfd.h.
10057 (ppc_linux_init_abi): Hook in elfcore_write_ppc_linux_prpsinfo32
10058 on 32-bit.
10059
10060 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
10061 Marcus Shawcroft <marcus.shawcroft@arm.com>
10062 Nigel Stephens <nigel.stephens@arm.com>
10063 Yufeng Zhang <yufeng.zhang@arm.com>
10064
10065 * configure.tgt (aarch64*-*-linux*): Set build_gdbserver=yes.
10066
10067 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
10068 Marcus Shawcroft <marcus.shawcroft@arm.com>
10069 Nigel Stephens <nigel.stephens@arm.com>
10070 Yufeng Zhang <yufeng.zhang@arm.com>
10071
10072 * aarch64-newlib-tdep.c: New file.
10073 * configure.tgt: Add aarch64-newlib-tdep.o to gdb_target_obs of
10074 aarch64*-*-elf.
10075 * defs.h (enum gdb_osabi): Add GDB_OSABI_NEWLIB.
10076 * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-newlib-tdep.o.
10077 (ALLDEPFILES): Add aarch64-newlib-tdep.c.
10078 * osabi.c (gdb_osabi_names): Add "Newlib".
10079
10080 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
10081 Marcus Shawcroft <marcus.shawcroft@arm.com>
10082 Nigel Stephens <nigel.stephens@arm.com>
10083 Yufeng Zhang <yufeng.zhang@arm.com>
10084
10085 * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-linux-tdep.o.
10086 (ALLDEPFILES): Add aarch64-linux-tdep.c.
10087 * aarch64-linux-tdep.c: New file.
10088 * aarch64-linux-tdep.h: New file.
10089 * aarch64-tdep.h (gdbarch_tdep): Define gregset and fpregset.
10090 * configure.tgt: Add aarch64-none-linux-gnu.
10091
10092 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
10093 Marcus Shawcroft <marcus.shawcroft@arm.com>
10094 Nigel Stephens <nigel.stephens@arm.com>
10095 Yufeng Zhang <yufeng.zhang@arm.com>
10096
10097 * Makefile.in (ALL_64_TARGET_OBS): Add arch64-tdep.o.
10098 (HFILES_NO_SRCDIR): Add aarch64-tdep.h.
10099 (ALLDEPFILES): Add aarch64-tdep.c.
10100 * aarch64-tdep.c: New file.
10101 * aarch64-tdep.h: New file.
10102 * configure.tgt: Add AArch64.
10103 * features/Makefile (WHICH): Add aarch64 and aarch64-without-fpu.
10104 (aarch64-expedite): New definition.
10105 * features/aarch64-core.xml: New file.
10106 * features/aarch64-fpu.xml: New file.
10107 * features/aarch64-without-fpu.c: New file (generated).
10108 * features/aarch64-without-fpu.xml: New file.
10109 * features/aarch64.c: New file (generated).
10110 * features/aarch64.xml: New file.
10111 * regformats/aarch64-without-fpu.dat: New file (generated).
10112 * regformats/aarch64.dat: New file (generated).
10113
10114 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10115
10116 * contrib/expect-read1.c: New file.
10117 * contrib/expect-read1.sh: New file.
10118
10119 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10120
10121 * dwarf2read.c (file_file_name): New function with code from
10122 file_full_name.
10123 (file_full_name): Move most of the code to file_file_name.
10124 (macro_start_file): Rename variable full_name to file_name and use
10125 file_file_name for it. Add comp_dir parameter to new_macro_table.
10126 * macrocmd.c (show_pp_source_pos): New variable fullname. Replace any
10127 macro_source_file->filename access by macro_source_fullname call.
10128 * macroscope.c (_initialize_macroscope): Update the new_macro_table
10129 caller.
10130 * macrotab.c (struct macro_table): New field comp_dir.
10131 (macro_include): New variables link_fullname and source_fullname.
10132 Replace any macro_source_file->filename access by macro_source_fullname
10133 call.
10134 (macro_lookup_inclusion): Remove the partial filenames checking code.
10135 (check_for_redefinition): New variables source_fullname and
10136 found_key_fullname. Replace any macro_source_file->filename access by
10137 macro_source_fullname call.
10138 (macro_undef): New variables source_fullname and key_fullname. Replace
10139 any macro_source_file->filename access by macro_source_fullname call.
10140 (macro_lookup_definition): New variables retval and source_fullname.
10141 Replace any macro_source_file->filename access by macro_source_fullname
10142 call.
10143 (foreach_macro): New variable key_fullname. Replace any
10144 macro_source_file->filename access by macro_source_fullname call.
10145 (foreach_macro_in_scope): New variable datum_fullname. Replace any
10146 macro_source_file->filename access by macro_source_fullname call.
10147 (new_macro_table): Add parameter comp_dir. Initialize T with it.
10148 (macro_source_fullname): New function.
10149 * macrotab.h (struct macro_source_file): Extent the filename field
10150 comment.
10151 (new_macro_table): New parameter comp_dir, add a comment for it.
10152 (macro_source_fullname): new declaration.
10153
10154 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10155
10156 * dwarf2read.c (dw2_map_symtabs_matching_filename): Move variable
10157 this_real_name to outer block. Use it also for
10158 compare_filenames_for_search.
10159 (dw2_expand_symtabs_matching): New variable this_real_name. Use it
10160 with dw2_get_real_path for file_matcher, considering also
10161 BASENAMES_MAY_DIFFER.
10162 (file_full_name): Prepend COMP_DIR even for relative lh->INCLUDE_DIRS.
10163
10164 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10165
10166 * dwarf2read.c (dw2_expand_symtabs_matching): Add basenames parameter
10167 to the file_matcher parameter. Pass 0 to it.
10168 (dwarf2_create_include_psymtab): Copy also DIRNAME.
10169 * psymtab.c (partial_map_symtabs_matching_filename): Drop handling of
10170 NULL psymtab_to_fullname result.
10171 (psymtab_to_fullname): Remove variable r. Never return NULL, assemble
10172 an expected filename instead.
10173 (expand_symtabs_matching_via_partial): Add basenames parameter to the
10174 file_matcher parameter. Call also psymtab_to_fullname, after newly
10175 considering BASENAMES_MAY_DIFFER.
10176 * source.c (rewrite_source_path): Remove static.
10177 * source.h (rewrite_source_path): New declaration.
10178 * symfile.h (struct quick_symbol_functions): Add basenames parameter to
10179 the expand_symtabs_matching field. Comment it.
10180 * symtab.c (file_matches): New function comment. Add parameter
10181 basenames, implement it.
10182 (search_symbols_file_matches): Add basenames parameter. Update the
10183 file_matches caller.
10184 (search_symbols): Match FILES also against symtab_to_fullname.
10185 Optimize it for BASENAMES_MAY_DIFFER.
10186
10187 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10188
10189 * source.c (print_source_lines_base): Print for TUI also "fullname".
10190 * tui/tui-data.c (init_content_element): Change tui_locator_element
10191 field to full_name.
10192 * tui/tui-data.h (struct tui_locator_element): Likewise.
10193 * tui/tui-disasm.c (tui_show_disassem_and_update_source): Rename
10194 tui_update_locator_filename calls to tui_update_locator_fullname.
10195 Replace symtab->filename refererence by symtab_to_fullname call.
10196 * tui/tui-out.c (tui_field_string): Check for "fullname" now.
10197 * tui/tui-source.c (tui_set_source_content): Change tui_locator_element
10198 field to full_name. Replace symtab->filename refererence by
10199 symtab_to_fullname call.
10200 (tui_show_symtab_source): Rename parameter to fullname. Change
10201 tui_locator_element field to full_name.
10202 * tui/tui-stack.c: Include source.h.
10203 (tui_set_locator_filename): Rename the declaration to ...
10204 (tui_set_locator_fullname): ... here. Rename its parameter to
10205 fullname, updates its comment.
10206 (tui_set_locator_info): Rename its parameter to fullname.
10207 (tui_set_locator_filename): Rename the definition to ...
10208 (tui_set_locator_fullname): ... here. Rename its parameter to
10209 fullname, updates its comment. Change tui_locator_element field to
10210 full_name.
10211 (tui_set_locator_info): Rename its parameter to fullname.
10212 (tui_set_locator_info): Rename callee to tui_set_locator_fullname.
10213 (tui_update_locator_filename): Rename to ...
10214 (tui_update_locator_fullname): ... here. Rename callee to
10215 tui_set_locator_fullname.
10216 (tui_show_frame_info): Replace symtab->filename refererence by
10217 symtab_to_fullname call.
10218 * tui/tui-stack.h (tui_update_locator_filename): Rename to ...
10219 (tui_update_locator_fullname): ... here.
10220 * tui/tui-winsource.c (tui_display_main): Rename the callee to
10221 tui_update_locator_fullname. Replace symtab->filename refererence by
10222 symtab_to_fullname call.
10223 * tui/tui.c (tui_show_source): Rename its parameter to fullname.
10224 Rename the callee to tui_update_locator_fullname.
10225 * tui/tui.h (tui_show_source): Rename its parameter to fullname.
10226
10227 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10228
10229 * ada-lang.c (user_select_syms): Replace symtab->filename refererences
10230 by symtab_to_filename_for_display calls.
10231 * breakpoint.c (print_breakpoint_location, resolve_sal_pc): Likewise.
10232 (clear_command): New variable sal_fullname, initialize it. Replace
10233 compare_filenames_for_search by filename_cmp with sal_fullname.
10234 (say_where, update_static_tracepoint): Replace symtab->filename
10235 refererences by symtab_to_filename_for_display calls.
10236 * cli/cli-cmds.c (edit_command, list_command, ambiguous_line_spec):
10237 Likewise.
10238 * dwarf2read.c: Include source.h.
10239 (fixup_go_packaging): Replace symtab->filename refererences by
10240 symtab_to_filename_for_display calls.
10241 * linespec.c (add_sal_to_sals): Rename variable filename to fullname.
10242 Replace symtab->filename refererences by symtab_to_filename_for_display
10243 calls.
10244 (create_sals_line_offset, convert_linespec_to_sals): New variable
10245 fullname, initialize it, replace symtab->filename reference by the
10246 variable.
10247 * linux-fork.c: Include source.h.
10248 (info_checkpoints_command): Replace symtab->filename refererences by
10249 symtab_to_filename_for_display calls.
10250 * macroscope.c (sal_macro_scope): Replace symtab->filename refererences
10251 by symtab_to_filename_for_display calls.
10252 * mdebugread.c: Include source.h.
10253 (psymtab_to_symtab_1): Replace symtab->filename refererences by
10254 symtab_to_filename_for_display calls.
10255 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file)
10256 (mi_cmd_file_list_exec_source_files): Likewise.
10257 * printcmd.c: Include source.h.
10258 (build_address_symbolic): Replace symtab->filename refererences by
10259 symtab_to_filename_for_display calls.
10260 * psymtab.c (partial_map_symtabs_matching_filename)
10261 (read_psymtabs_with_fullname): Call compare_filenames_for_search also
10262 with psymtab_to_fullname.
10263 * python/py-symtab.c (stpy_str): Replace symtab->filename refererences
10264 by symtab_to_filename_for_display calls.
10265 (stpy_get_filename): New variable filename, initialize it, use instead
10266 of symtab->filename refererences.
10267 (salpy_str): Make variable filename const char *. Replace
10268 symtab->filename refererences by symtab_to_filename_for_display calls.
10269 * skip.c: Include source.h and filenames.h.
10270 (skip_file_command): Remove const from the symtab variable. Replace
10271 symtab->filename refererences by symtab_to_fullname call.
10272 (function_name_is_marked_for_skip): New variables searched_for_fullname
10273 and fullname. Use them to search also with symtab's fullname.
10274 * source.c (find_source_lines): Replace symtab->filename refererences
10275 by symtab_to_filename_for_display calls.
10276 (print_source_lines_base): New variable filename, use it instead of
10277 symtab->filename. Replace symtab->filename refererences by
10278 symtab_to_filename_for_display calls.
10279 (line_info, forward_search_command): Replace symtab->filename
10280 refererences by symtab_to_filename_for_display calls.
10281 (reverse_search_command): Replace symtab->filename refererences by
10282 symtab_to_filename_for_display calls. New variable filename for it.
10283 * stack.c (frame_info): Likewise.
10284 * symmisc.c: Include source.h.
10285 (dump_objfile, dump_symtab_1, maintenance_print_symbols)
10286 (maintenance_info_symtabs): Replace symtab->filename refererences by
10287 symtab_to_filename_for_display calls.
10288 * symtab.c (iterate_over_some_symtabs): Call
10289 compare_filenames_for_search also with symtab_to_fullname.
10290 (lookup_symbol_aux_quick, basic_lookup_transparent_type_quick): Replace
10291 symtab->filename refererences by symtab_to_filename_for_display calls.
10292 (find_line_symtab): Replace symtab->filename refererences by
10293 symtab_to_filename_for_display calls.
10294 (file_matches): Replace filename_cmp by compare_filenames_for_search.
10295 (print_symbol_info): Make the last parameter const char *. New
10296 variable s_filename. Use it in the function.
10297 (symtab_symbol_info): Make the last_filename variable const char *.
10298 Replace symtab->filename refererences by symtab_to_filename_for_display
10299 calls.
10300 (rbreak_command): New variable fullname. Use it. Replace
10301 symtab->filename refererence by symtab_to_filename_for_display call.
10302 * tracepoint.c (set_traceframe_context, trace_find_line_command)
10303 (print_one_static_tracepoint_marker): Replace symtab->filename
10304 refererences by symtab_to_filename_for_display calls.
10305 * tui/tui-source.c (tui_set_source_content): New variables filename and
10306 s_filename. Replace symtab->filename refererences by this variable.
10307 Replace other symtab->filename refererences by
10308 symtab_to_filename_for_display calls.
10309
10310 2013-02-03 Eldar Gaynetdinov <hal9000ed2k@gmail.com>
10311 Jan Kratochvil <jan.kratochvil@redhat.com>
10312
10313 Add a new variable that controls a way in which filenames are
10314 displayed.
10315 * NEWS (set filename-display): New entry.
10316 * source.c (filename_display_basename, filename_display_relative)
10317 (filename_display_absolute, filename_display_kind_names)
10318 (filename_display_string, show_filename_display_string)
10319 (symtab_to_filename_for_display): New.
10320 (_initialize_source): Added initialization of 'filename-display'
10321 variable.
10322 * source.h (symtab_to_filename_for_display): Added declaration.
10323 * stack.c (print_frame): Added new variable and calling of a new
10324 function and condition with this variable. Changed third argument of
10325 calling of a function.
10326
10327 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10328
10329 * tui/tui-data.c (init_win_info, tui_del_window, tui_free_window):
10330 Rename field reference filename to fullname.
10331 * tui/tui-data.h (struct tui_source_info): Rename field filename to
10332 fullname. New comment for it.
10333 * tui/tui-source.c (tui_set_source_content): Rename field reference
10334 filename to fullname. Initialize field by symtab_to_fullname now.
10335 * tui/tui-winsource.c (tui_update_breakpoint_info): Rename field
10336 reference filename to fullname. Use symtab_to_fullname during
10337 comparison.
10338
10339 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10340
10341 Code cleanup.
10342 * dwarf2read.c (dw2_expand_symtabs_with_filename): Rename to ...
10343 (dw2_expand_symtabs_with_fullname): ... here. Rename parameter
10344 filename to fullname. Rename variable this_name to this_fullname.
10345 Lowercase FILENAME_CMP call.
10346 (dw2_find_symbol_file): New comment for the returned string.
10347 (dwarf2_gdb_index_functions): Rename the function to
10348 dw2_expand_symtabs_with_fullname.
10349 * psymtab.c (read_psymtabs_with_filename): Rename to ...
10350 (read_psymtabs_with_fullname): ... here. Rename parameter filename to
10351 fullname.
10352 (psym_functions): Rename the function to read_psymtabs_with_fullname.
10353 * symfile.h (struct quick_symbol_functions): Rename field
10354 expand_symtabs_with_filename to expand_symtabs_with_fullname and its
10355 parameter filename to fullname. Document returned string meaning for
10356 find_symbol_file.
10357 * symtab.c (find_line_symtab): Rename the called function to
10358 expand_symtabs_with_fullname.
10359
10360 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10361
10362 Code cleanup.
10363 * breakpoint.c (clear_command): Remove variable is_abs, unify the
10364 call of filename_cmp with compare_filenames_for_search.
10365 * dwarf2read.c (dw2_map_symtabs_matching_filename): Remove variable
10366 is_abs, unify the call of FILENAME_CMP with
10367 compare_filenames_for_search. New gdb_asserts for real_path and name.
10368 Unify the call of compare_filenames_for_search with FILENAME_CMP.
10369 * psymtab.c (partial_map_symtabs_matching_filename): Likewise.
10370 * symfile.h (struct quick_symbol_functions): Extend the comment for
10371 map_symtabs_matching_filename.
10372 * symtab.c (compare_filenames_for_search): Remove the function comment
10373 relative path requirement. Handle absolute filenames, with a comment.
10374 (iterate_over_some_symtabs): Remove variable is_abs, unify the call of
10375 FILENAME_CMP with compare_filenames_for_search. New gdb_asserts for
10376 real_path and name. Unify the call of compare_filenames_for_search
10377 with FILENAME_CMP.
10378 (iterate_over_symtabs): New gdb_assert on REAL_PATH.
10379
10380 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10381
10382 Code cleanup.
10383 * breakpoint.c (print_breakpoint_location): Replace bp_location field
10384 source_file references by symtab field references. Remove variables
10385 sal and fullname.
10386 (momentary_breakpoint_from_master, add_location_to_breakpoint):
10387 (clear_command, say_where): Replace bp_location field source_file
10388 references by symtab field references.
10389 (bp_location_dtor): Remove the source_file reference.
10390 (update_static_tracepoint): Replace bp_location field source_file
10391 references by symtab field references.
10392 (breakpoint_free_objfile): New function.
10393 * breakpoint.h (struct bp_location): Extend the comment for line_number.
10394 Replace the field source_file by field symtab, extend its comment.
10395 (breakpoint_free_objfile): New declaration.
10396 * objfiles.c (free_objfile): Call breakpoint_free_objfile.
10397 * tui/tui-winsource.c (tui_update_breakpoint_info): Replace bp_location
10398 field source_file references by symtab field references.
10399
10400 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10401
10402 Replace xfullpath calls by gdb_realpath calls.
10403 * cli/cli-cmds.c (find_and_open_script): Remove xfullpath from the
10404 function comment.
10405 * dwarf2read.c (dw2_map_expand_apply): Remove parameter full_path.
10406 Remove it from the iterate_over_some_symtabs call.
10407 (dw2_map_symtabs_matching_filename): Remove parameter full_path.
10408 Remove it from the dw2_map_expand_apply calls, remove a block handling
10409 it.
10410 * psymtab.c (partial_map_expand_apply): Remove parameter full_path.
10411 Remove it from the iterate_over_some_symtabs call.
10412 (partial_map_symtabs_matching_filename): Remove parameter full_path.
10413 Remove it from the partial_map_expand_apply calls, remove a block
10414 handling it. Drop gdb_realpath call and cleanups from the real_path
10415 handling.
10416 * source.c (openp): Drop the comment part about xfullpath. Replace
10417 xfullpath calls by gdb_realpath calls.
10418 (find_and_open_source): Replace xfullpath call by gdb_realpath call.
10419 * symfile.h (struct quick_symbol_functions): Remove parameter full_path
10420 from method map_symtabs_matching_filename and its comment.
10421 * symmisc.c (maintenance_print_msymbols): Replace xfullpath call by
10422 gdb_realpath call.
10423 * symtab.c (iterate_over_some_symtabs): Remove parameter full_path,
10424 remove it also from the function comment, remove a block handling it.
10425 Drop gdb_realpath call and cleanups from the real_path handling.
10426 (iterate_over_symtabs): Drop variable full_path and its use.
10427 * symtab.h (iterate_over_some_symtabs): Remove parameter full_path.
10428 * utils.c (xfullpath): Remove.
10429 * utils.h (xfullpath): Remove.
10430
10431 2013-02-01 Andreas Tobler <andreast@fgznet.ch>
10432
10433 * Makefile.in (ALL_TARGET_OBS): Add ppc64-tdep.o.
10434 (HFILES_NO_SRCDIR): Add ppc64-tdep.h.
10435 (ALLDEPFILES): Add ppc64-tdep.c.
10436 * configure.tgt (powerpc-*-linux* | powerpc64-*-linux*): Add
10437 ppc64-tdep.o to gdb_target_obs.
10438 * ppc64-tdep.h: New file.
10439 * ppc64-tdep.c: New file.
10440 (insn_d, insn_ds, insn_xfx, ppc64_desc_entry_point): Move from
10441 ppc-linux-tdep.c to here.
10442 (PPC64_STANDARD_LINKAGE1_LEN, PPC64_STANDARD_LINKAGE2_LEN)
10443 (PPC64_STANDARD_LINKAGE2_LEN): Likewise and use ARRAY_SIZE macro.
10444 (ppc64_standard_linkage1_target, ppc64_standard_linkage2_target)
10445 (ppc64_standard_linkage3_target, ppc64_skip_trampoline_code): Move
10446 from ppc-linux-tdep.c to here.
10447 (ppc64_convert_from_func_ptr_addr): Rename from
10448 ppc64_linux_convert_from_func_ptr_addr to
10449 ppc64_convert_from_func_ptr_addr and move from ppc-linux-tdep.c to
10450 here.
10451 * rs6000-tdep.c:
10452 (read_insn): Move from ppc-linux-tdep.c to here.
10453 (insns_match_pattern, insn_d_field, insn_ds_field): Move
10454 from ppc-linux-tdep.c to here and rename them with the ppc_ prefix.
10455 * ppc-linux-tdep.c: Include ppc64-tdep.h.
10456 Removed above functions.
10457 (ppc_linux_init_abi): Adjust.
10458
10459 2013-02-01 Aleksandar Ristovski <aristovski@qnx.com>
10460
10461 * ada-valprint.c (ada_print_floating): Remove unused 'len'.
10462
10463 2013-02-01 Aleksandar Ristovski <aristovski@qnx.com>
10464
10465 * ada-lang.c (assign_aggregate): Remove unused 'is_array_aggregate'.
10466
10467 2013-02-01 Pedro Alves <palves@redhat.com>
10468
10469 * dummy-frame.c (deprecated_pc_in_call_dummy): Delete function.
10470 * frame.h (deprecated_pc_in_call_dummy): Delete declaration.
10471
10472 2013-02-01 Jan Kratochvil <jan.kratochvil@redhat.com>
10473
10474 * elfread.c (elf_symfile_read): Limit separate debug info additions to
10475 files with no separate debug info.
10476 * objfiles.c (add_separate_debug_objfile): Add gdb_assert calls.
10477 * symfile.c (read_symbols): Call find_separate_debug_file_in_section
10478 only for files with no separate debug info.
10479
10480 2013-01-31 Tom Tromey <tromey@redhat.com>
10481
10482 * jit.c (jit_program_space_data): Rename from jit_inferior_data;
10483 change type.
10484 (struct jit_program_space_data): Rename from jit_inferior_data.
10485 Update comments.
10486 (get_jit_program_space_data): Rename from get_jit_inferior_data.
10487 Change return type. Attach data to program space.
10488 (jit_program_space_data_cleanup): Rename from
10489 jit_inferior_data_cleanup; change argument type.
10490 (jit_read_descriptor): Change 'inf_data' argument to 'ps_data',
10491 change type.
10492 (jit_register_code): Update.
10493 (jit_update_inferior_cache): Remove.
10494 (jit_breakpoint_deleted): Get jit data from the location's program
10495 space.
10496 (jit_breakpoint_re_set_internal): Rename 'inf_data' argument to
10497 'ps_data', change type.
10498 (jit_inferior_init, jit_breakpoint_re_set_internal)
10499 (jit_event_handler): Update.
10500 (free_objfile_data): Get data from objfile's program space.
10501 (_initialize_jit): Update.
10502
10503 2013-01-31 Tom Tromey <tromey@redhat.com>
10504
10505 PR gdb/13987:
10506 * jit.c (struct jit_inferior_data) <cached_code_address,
10507 jit_breakpoint>: New fields.
10508 (jit_breakpoint_re_set_internal): Fix logging. Only create
10509 breakpoint if cached address has changed.
10510 (jit_update_inferior_cache, jit_breakpoint_deleted): New
10511 functions.
10512 (_initialize_jit): Register breakpoint deleted observer.
10513
10514 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
10515
10516 * infrun.c (handle_syscall_event): Remove unused gdbarch.
10517 (save_infcall_suspend_state): Ifdef out unused inf.
10518 (restore_infcall_suspend_state): Ifdef out unused inf.
10519 * jit.c (jit_register_code): Remove unused i, b, inf_data.
10520 (jit_frame_sniffer): Remove unused inf_data.
10521
10522 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
10523
10524 * c-exp.y (classify_inner_name): Remove unused type.
10525 * c-lang.c (c_printstr): Remove unused byte_order, i, things_printed,
10526 in_quotes, need_comma, wchar_buf, output, cleanup, iter, finished,
10527 need_escape.
10528 (c_get_string): Remove unused kind.
10529 * c-typeprint.c (c_type_print_args): Remove unused i, len, args, table2.
10530
10531 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
10532
10533 * charset.c (intermediate_encoding): Remove unused i.
10534 * completer.c (signal_completer): Remove unused i.
10535 * continuations.c (discard_my_continuations_1): Remove unused
10536 continuation_ptr.
10537 * corelow.c (core_close): Remove unuseD name.
10538 (get_core_siginfo): Remove unused pid.
10539 * cp-namespace.c (cp_lookup_symbol_imports_or_template): Remove unused
10540 i, cps.
10541 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Remove unused base_offset.
10542 (loclist_describe_location): Remove unused first.
10543 * event-top.c (command_line_handler): Remove unused got_eof.
10544 * exec.c (exec_close_1): Remove unused need_symtab_cleanup.
10545 (resize_section_table): Remove unused old_value.
10546 * gdb_bfd.c (gdb_bfd_map_section): Remove unused header.
10547 * gnu-v3-abi.c (compute_vtable_size): Remove unused addr.
10548 * i386-tdep.c (i386_process_record): Remove unused rex.
10549 * infcmd.c (get_return_value): Remove unused uiout.
10550 * jv-lang.c (type_from_class): Remove unused is_array.
10551 * jv-valprint.c (java_val_print): Remove unused i.
10552 * linux-nat.c (linux_nat_stop_lwp): Remove unused ptid.
10553 * linux-thread-db.c (thread_db_find_new_threads_2): Remove unuseD pid.
10554 * m2-typeprint.c (m2_print_type): Remove unused code.
10555 * macroexp.c (get_character_constant): Remove unused body_start.
10556 (macro_stringify): Remove unused result.
10557 * objc-lang.c (find_methods): Remove unused gdbarch.
10558 * objfiles.c (filter_overlapping_sections): Remove unused abfd1, abfd2.
10559 * regcache.c (regcache_cooked_read): Remove unused gdbarch.
10560 * stack.c (print_frame_args): Remove unused summary.
10561 * thread.c (thread_apply_command): Remove unused p.
10562 * valarith.c (value_x_unop): Remove unused mangle_ptr.
10563 * valops.c (search_struct_method): Remove unused skip.
10564 * valprint.c (generic_val_print): Remove unused byte_order.
10565 * varobj.c (varobj_update): Remove unused changed.
10566 * cli/cli-cmds.c (complete_command): Remove unused next_item.
10567 (alias_command): Remove unused c.
10568 * mi/mi-cmd-catch.c (mi_catch_load_unload): Remove unused c.
10569 * mi/mi-main.c (mi_cmd_data_write_register_values): Remove unused
10570 format.
10571 (mi_cmd_data_write_memory): Remove unused word_format.
10572 (mi_cmd_data_write_memory_bytes): Remove unused r.
10573 * python/py-gdb-readline.c (gdbpy_readline_wrapper): Remove unused
10574 p_start, p_end.
10575 * python/python.c (_initialize_python): Remove unused cmd_name, cmd.
10576 * tui/tui-disasm.c (tui_set_disassem_content): Remove unused
10577 line_width.
10578
10579 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
10580
10581 * dwarf2-frame.c (dwarf2_compile_cfa_to_ax): Remove unused num_regs.
10582 * symtab.c (iterate_over_symtabs): Remove unused s.
10583 (find_pc_sect_symtab): Remove unused pspAce.
10584 (find_pc_sect_line): Remove unused alt_symtab.
10585 (find_pcs_for_symtab_line): Remove unused ix, previous_function.
10586 (completion_list_add_name): Remove unused newsize.
10587
10588 2013-01-31 Tom Tromey <tromey@redhat.com>
10589
10590 PR c++/14998:
10591 * dwarf2read.c (read_tag_ptr_to_member_type): Handle
10592 TYPE_CODE_FUNC.
10593
10594 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
10595
10596 * target.c (target_read_string): Remove unused origlen.
10597
10598 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
10599
10600 * auto-load.c (auto_load_expand_dir_vars): Remove unused dir_vec.
10601 * ax-gdb.c (gen_printf): Remove unused expr, i, bot, fr, flen, fmt.
10602 * ax-general.c (ax_print): Remove unused is_float.
10603 * blockframe.c (block_innermost_frame): Remove unused start, end.
10604 * break-catch-sig.c (catch_signal_command): Remove unused gdbarch.
10605
10606 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
10607
10608 * solib-svr4.c (svr4_keep_data_in_core): Remove unused lmo.
10609 (svr4_read_so_list): Remove unused lmo.
10610 * solib-target.c (solib_target_relocate_section_addresses): Remove
10611 unused flags.
10612
10613 2013-01-30 Tom Tromey <tromey@redhat.com>
10614
10615 * hppa-tdep.c (read_unwind_info): Use SECT_OFF_TEXT, not "0".
10616
10617 2013-01-30 Tom Tromey <tromey@redhat.com>
10618
10619 * symfile.c (get_file_crc): Use bfd_calc_gnu_debuglink_crc32.
10620 * utils.c (gnu_debuglink_crc32): Remove.
10621 * utils.h (gnu_debuglink_crc32): Don't declare.
10622
10623 2013-01-30 Tom Tromey <tromey@redhat.com>
10624
10625 * dwarf2read.c (compute_delayed_physnames, read_call_site_scope)
10626 (read_structure_type, read_enumeration_type): Remove cast.
10627
10628 2013-01-30 Tom Tromey <tromey@redhat.com>
10629
10630 * dwarf2read.c (read_namespace_type): Remove cast.
10631 (read_typedef): Likewise.
10632
10633 2013-01-29 Tom Tromey <tromey@redhat.com>
10634
10635 * dwarf2read.c (free_dwo_file): Remove assert.
10636
10637 2013-01-29 Tom Tromey <tromey@redhat.com>
10638
10639 * value.c (deprecated_set_value_modifiable): Remove.
10640 * value.h (deprecated_set_value_modifiable): Remove.
10641
10642 2013-01-28 Doug Evans <dje@google.com>
10643
10644 * dwarf2loc.c (dwarf2_find_location_expression): Don't add base address
10645 to addresses from dwo files.
10646
10647 2013-01-25 Siva Chandra Reddy <sivachandra@google.com>
10648
10649 * valops.c (find_overload_match): Remove unused argument 'lax'.
10650 * value.h: Remove unused argument 'lax' from the declaration of
10651 find_overload_match.
10652 * eval.c (value_subexp_standard): Do not pass a 'lax' argument
10653 to find_overload_match.
10654 * valarith.c (value_user_defined_cpp_op): Do not pass a 'lax'
10655 argument to find_overload_match.
10656
10657 2013-01-25 Tom Tromey <tromey@redhat.com>
10658
10659 * dwarf2read.c (processing_has_namespace_info): Remove.
10660 (struct dwarf2_cu) <processing_has_namespace_info>: New field.
10661 (process_die, read_func_scope, dwarf2_start_symtab)
10662 (new_symbol_full): Update.
10663
10664 2013-01-25 Tom Tromey <tromey@redhat.com>
10665
10666 * cp-namespace.c (cp_set_block_scope): Remove.
10667 * cp-support.h (cp_set_block_scope): Remove.
10668 * dbxread.c: Include block.h.
10669 (cp_set_block_scope): New function.
10670 (process_one_symbol): Update.
10671 * dwarf2read.c (read_func_scope): Use block_set_scope.
10672
10673 2013-01-25 Pedro Alves <palves@redhat.com>
10674
10675 * remote.c (add_current_inferior_and_thread): Tweak comment.
10676
10677 2013-01-25 Tom Tromey <tromey@redhat.com>
10678
10679 * cp-namespace.c (cp_scan_for_anonymous_namespaces): Update.
10680 (cp_add_using_directive): Add 'copy_names' argument.
10681 * cp-support.h (cp_add_using_directive): Update.
10682 (struct using_direct) <import_src, import_dest, alias,
10683 declaration>: Now const.
10684 * dwarf2read.c (read_import_statement): Use obconcat.
10685 Don't copy names passed to cp_add_using_directive.
10686
10687 2013-01-25 Tom Tromey <tromey@redhat.com>
10688
10689 * c-exp.y (qualified_name): Use TYPE_SAFE_NAME.
10690
10691 2013-01-25 Pedro Alves <palves@redhat.com>
10692
10693 * remote.c (stop_reply_extract_thread): New.
10694 (add_current_inferior_and_thread): New parameter 'wait_status'.
10695 Handle it.
10696 (remote_start_remote): Pass wait status to
10697 add_current_inferior_and_thread.
10698 (extended_remote_run): Update comment.
10699 (extended_remote_create_inferior_1): Pass wait status to
10700 add_current_inferior_and_thread.
10701
10702 2013-01-25 Andrew Burgess <aburgess@broadcom.com>
10703 Ulrich Weigand <uweigand@de.ibm.com>
10704
10705 * valarith.c (value_vector_widen): New function for replicating a
10706 scalar into a vector.
10707 (value_binop): Use value_vector_widen to widen scalar to vector
10708 rather than casting, this better matches gcc C behaviour.
10709 * valops.c (value_casst): Update logic for casting between vector
10710 types, and for casting from scalar to vector, try to match gcc C
10711 behaviour.
10712 * value.h (value_vector_widen): Declare.
10713 * opencl-lang.c (opencl_value_cast): New opencl specific casting
10714 function, handle special case for casting scalar to vector.
10715 (opencl_relop): Use opencl_value_cast.
10716 (evaluate_subexp_opencl): Use opencl_value_cast instead of
10717 value_cast, and handle BINOP_ASSIGN, UNOP_CAST, and UNOP_CAST_TYPE
10718 in order to use opencl_value_cast.
10719
10720 2013-01-25 Yao Qi <yao@codesourcery.com>
10721
10722 * event-loop.c: Include "queue.h".
10723 (gdb_event_p): New typedef.
10724 (DECLARE_QUEUE_P): Use.
10725 (DEFINE_QUEUE_P): Use.
10726 (async_queue_event): Remove.
10727 (gdb_event_xfree): New.
10728 (initialize_event_loop): New.
10729 (process_event): Use QUEUE macros.
10730 (event_queue): Remove.
10731 (gdb_wait_for_event): Caller update.
10732 (check_async_event_handlers): Likewise.
10733 (poll_timers): Likewise.
10734 * event-loop.h (initialize_event_loop): Declare.
10735 * event-loop.c (gdb_event_xfree): New.
10736 * top.c (gdb_init): Call initialize_event_loop.
10737
10738 2013-01-25 Yao Qi <yao@codesourcery.com>
10739
10740 * event-loop.c (async_queue_event): Remove one parameter
10741 'position'. Remove code handling 'position' == TAIL.
10742 (gdb_wait_for_event): Caller update.
10743 (check_async_event_handlers): Caller update.
10744 (poll_timers): Caller update.
10745 * event-loop.h (enum queue_position): Remove.
10746
10747 2013-01-25 Maxim Kuvyrkov <maxim@kugelworks.com>
10748
10749 * MAINTAINERS: Update my email.
10750
10751 2013-01-25 Yao Qi <yao@codesourcery.com>
10752
10753 * main.c (print_gdb_help): Remove "--epoch" from the help
10754 message.
10755
10756 2013-01-24 Ulrich Weigand  <uweigand@de.ibm.com>
10757
10758 * symtab.c (skip_prologue_using_sal): Consider a file
10759 change the same as an increased line number
10760
10761 2013-01-24 Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
10762
10763 * MAINTAINERS (Write After Approval): Add myself to the list.
10764
10765 2013-01-24 Tom Tromey <tromey@redhat.com>
10766
10767 * ada-lang.h (ada_decode_symbol): Make return type const.
10768 * ada-lang.c (ada_decode_symbol): Likewise.
10769
10770 2013-01-23 Doug Evans <dje@google.com>
10771
10772 * linespec.c (find_linespec_symbols): Make static.
10773
10774 2013-01-23 Tiago Stürmer Daitx <tdaitx@linux.vnet.ibm.com>
10775
10776 * ppc-sysv-tdep.c (ppc64_sysv_abi_return_value): Set correct
10777 type on float conversion for complex type.
10778
10779 2013-01-23 Siva Chandra Reddy <sivachandra@google.com>
10780
10781 Add a new class gdb.Architecture which exposes GDB's
10782 internal representation of architecture via GDB Python API.
10783 * Makefile.in: Add entries corresponding to the new file
10784 python/py-arch.c.
10785 * NEWS (Python Scripting): Add entries for the new class
10786 gdb.Architecture and the new method gdb.Frame.architecture.
10787 * python/py-arch.c: Implement gdb.Architecture class.
10788 * python/py-frame.c (frapy_arch): Implement the method
10789 gdb.Frame.architecture().
10790 (frame_object_methods): Add 'architecture' to the method table.
10791 * python/python-internal.h: Add declarations of new utility
10792 functions.
10793 * python/python.c (_initialize_python): Initialize
10794 gdb.Architecture class.
10795
10796 2013-01-23 Doug Evans <dje@google.com>
10797
10798 Work around binutils/15021.
10799 * dwarf2read.c (dwarf2_per_cu_data): Split imported_symtabs and
10800 type_unit_group out of union s. All uses updated.
10801 (read_index_from_section): Watch for index version 8.
10802 (follow_die_sig): If using .gdb_index version <= 7, record the TU as
10803 an imported symtab.
10804 (write_psymtabs_to_index): Increment version number to 8.
10805
10806 2013-01-22 Pedro Alves <palves@redhat.com>
10807
10808 * annotate.c (breakpoint_changed): Skip if breakpoint is not
10809 user-visible.
10810
10811 2013-01-22 Pedro Alves <palves@redhat.com>
10812
10813 * annotate.c (annotate_breakpoints_changed): Rename to ...
10814 (annotate_breakpoints_invalid): ... this. Make static.
10815 (breakpoint_changed): Adjust.
10816 (_initialize_annotate): Always install the observers. Install a
10817 "breakpoint_created" observer.
10818 * annotate.h (annotate_breakpoints_changed): Delete declaration.
10819 * breakpoint.c (set_breakpoint_condition)
10820 (breakpoint_set_commands, do_map_commands_command)
10821 (init_raw_breakpoint, clear_command, set_ignore_count)
10822 (enable_breakpoint_disp): No longer call
10823 annotate_breakpoints_changed.
10824
10825 2013-01-22 Pedro Alves <palves@redhat.com>
10826
10827 * annotate.c: Include "inferior.h".
10828 (frames_invalid_emitted)
10829 (breakpoints_invalid_emitted): New globals.
10830 (async_background_execution_p): New function.
10831 (annotate_breakpoints_changed, annotate_frames_invalid): Skip
10832 emitting the annotation if it has already been emitted.
10833 (annotate_display_prompt): New function.
10834 * annotate.h (annotate_display_prompt): New declaration.
10835 * event-top.c: Include annotate.h.
10836 (display_gdb_prompt): Call annotate_display_prompt.
10837
10838 2013-01-22 Pedro Alves <palves@redhat.com>
10839
10840 * annotate.c (ignore_count_changed): Delete.
10841 (annotate_breakpoints_changed): Don't clear ignore_count_changed.
10842 (annotate_ignore_count_change): Delete.
10843 (annotate_stopped): Don't emit a delayed breakpoints-changed
10844 annotation.
10845 * annotate.h (annotate_ignore_count_change): Delete.
10846 * breakpoint.c (bpstat_check_breakpoint_conditions): Don't call
10847 annotate_ignore_count_change.
10848
10849 2013-01-22 Tom Tromey <tromey@redhat.com>
10850
10851 * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>: Only
10852 require_rvalue for a register location.
10853
10854 2013-01-21 Marc Khouzam <marc.khouzam@ericsson.com>
10855
10856 * breakpoint.c (print_one_breakpoint_location): Add MI
10857 field 'thread-groups' when printing a breakpoint.
10858 (output_thread_groups): New function.
10859
10860 2013-01-21 Siva Chandra Reddy <sivachandra@google.com>
10861
10862 * python/lib/gdb/commands/explore.py
10863 (CompoundExplorer.explore_expr): Correct the name of a method
10864 being invoked.
10865 (ExploreTypeCommand.invoke): Add a missing 'return'.
10866
10867 2013-01-21 Tom Tromey <tromey@redhat.com>
10868
10869 * gdb_obstack.h (obconcat): Move declaration here, from...
10870 * symfile.h (obconcat): ... here.
10871 * gdb_obstack.c: New file.
10872 (obconcat): Move from...
10873 * symfile.c (obconcat): ... here.
10874 * Makefile.in (SFILES): Add gdb_obstack.c.
10875 (COMMON_OBS): Add gdb_obstack.o.
10876
10877 2013-01-21 Tom Tromey <tromey@redhat.com>
10878
10879 * symfile.h (obsavestring): Don't declare.
10880 * symfile.c (obsavestring): Remove.
10881 * ada-exp.y: Use obstack_copy0, not obsavestring.
10882 * ada-lang.c: Use obstack_copy0, not obsavestring.
10883 * coffread.c: Use obstack_copy0, not obsavestring.
10884 * cp-namespace.c: Use obstack_copy0, not obsavestring.
10885 * dbxread.c: Use obstack_copy0, not obsavestring.
10886 * dwarf2read.c: Use obstack_copy0, not obsavestring.
10887 * jit.c: Use obstack_copy0, not obsavestring.
10888 * mdebugread.c: Use obstack_copy0, not obsavestring.
10889 * psymtab.c: Use obstack_copy0, not obsavestring.
10890 * stabsread.c: Use obstack_copy0, not obsavestring.
10891 * xcoffread.c: Use obstack_copy0, not obsavestring.
10892
10893 2013-01-21 Tom Tromey <tromey@redhat.com>
10894
10895 * dwarf2read.c (fixup_go_packaging): Save package name
10896 on objfile obstack.
10897 * gdbtypes.c (init_type): Don't copy name.
10898
10899 2013-01-21 Tom Tromey <tromey@redhat.com>
10900
10901 * dwarf2read.c (struct partial_die_info) <name, scope>: Now
10902 const.
10903 (struct attribute) <u.str>: Now const.
10904 (struct fnfieldlist) <name>: Now const.
10905 (dw2_get_file_names_reader, init_cutu_and_read_dies): Update.
10906 (partial_die_parent_scope): Make return type const.
10907 (partial_die_full_name, add_partial_symbol): Update.
10908 (dwarf2_compute_name, dwarf2_full_name, dwarf2_physname): Make
10909 'name' const.
10910 (find_file_and_directory): Make 'name' and 'comp_dir' const.
10911 (read_file_scope, read_func_scope, dwarf2_add_field)
10912 (dwarf2_add_member_fn, read_structure_type)
10913 (process_enumeration_scope, read_array_type, read_module_type)
10914 (read_base_type, read_subrange_type): Update.
10915 (dwarf2_start_symtab): Make 'name' and 'comp_dir' const.
10916 (new_symbol_full, guess_full_die_structure_name): Update.
10917 (dwarf2_canonicalize_name): Return const type. Make 'name' const.
10918 (dwarf2_name): Return const type.
10919 (dwarf_decode_macro_bytes, dwarf_decode_macros): Make 'comp_dir'
10920 const.
10921
10922 2013-01-21 Tom Tromey <tromey@redhat.com>
10923
10924 * gdbtypes.c (init_type): Make 'name' const.
10925 * gdbtypes.h (init_type): Update.
10926
10927 2013-01-21 Tom Tromey <tromey@redhat.com>
10928
10929 * buildsym.c (patch_subfile_names): Use set_last_source_file.
10930 (start_symtab): Make 'name' and 'dirname' const. Use
10931 set_last_source_file.
10932 (restart_symtab, reset_symtab_globals): Use set_last_source_file.
10933 (last_source_file): Define. Now static.
10934 (set_last_source_file, get_last_source_file): New functions.
10935 * buildsym.h (last_source_file): Don't declare.
10936 (start_symtab): Update.
10937 (set_last_source_file, get_last_source_file): Declare.
10938 * coffread.c (complete_symtab): Use set_last_source_file.
10939 (coff_end_symtab): Likewise.
10940 (coff_symtab_read): Use set_last_source_file, get_last_source_file.
10941 * dbxread.c (read_dbx_symtab, read_ofile_symtab): Use
10942 set_last_source_file.
10943 (process_one_symbol): Use get_last_source_file.
10944 * mdebugread.c (parse_partial_symbols): Use set_last_source_file.
10945 (psymtab_to_symtab_1): Use get_last_source_file.
10946 * xcoffread.c (process_linenos): Use get_last_source_file.
10947 (complete_symtab): Use set_last_source_file.
10948 (read_xcoff_symtab): Use set_last_source_file, get_last_source_file.
10949 (scan_xcoff_symtab): Use set_last_source_file.
10950
10951 2013-01-21 Tom Tromey <tromey@redhat.com>
10952
10953 * symtab.c (struct demangled_name_entry) <mangled>: Now const.
10954 (symbol_set_names): Remove casts. Handle field const-ness.
10955
10956 2013-01-21 Tom Tromey <tromey@redhat.com>
10957
10958 * dwarf2read.c (new_symbol_full): Remove cast.
10959 * symtab.c (symbol_set_demangled_name): Make 'name' const.
10960 * symtab.h (symbol_set_demangled_name): Update.
10961
10962 2013-01-21 Tom Tromey <tromey@redhat.com>
10963
10964 * main.c (captured_main): Call bfd_init.
10965
10966 2013-01-21 Tom Tromey <tromey@redhat.com>
10967
10968 * gnu-v2-abi.c (_initialize_gnu_v2_abi): Don't set default ABI.
10969 * gnu-v3-abi.c (_initialize_gnu_v3_abi): Set default ABI.
10970 * minsyms.c (install_minimal_symbols): Don't check for _Z symbols.
10971 * NEWS: Update.
10972
10973 2013-01-21 Jan Kratochvil <jan.kratochvil@redhat.com>
10974
10975 * symmisc.c (maintenance_print_msymbols): Check also ST_DEV.
10976
10977 2013-01-21 Jan Kratochvil <jan.kratochvil@redhat.com>
10978
10979 Fix gdb.fortran/common-block.exp crash in PIE mode.
10980 * dwarf2read.c (new_symbol_full) <DW_TAG_common_block>: Use
10981 LOC_COMMON_BLOCK.
10982 * f-valprint.c (info_common_command_for_block): Expect
10983 LOC_COMMON_BLOCK in gdb_assert.
10984 * symtab.h (struct general_symbol_info): Update comment for the
10985 common_block member.
10986 (domain_enum): Extend comment for the COMMON_BLOCK_DOMAIN member.
10987 (enum address_class): New member LOC_COMMON_BLOCK.
10988
10989 2013-01-18 David Blaikie <dblaikie@gmail.com>
10990
10991 * MAINTAINERS (Write After Approval): Add "David Blaikie".
10992
10993 2013-01-18 Tom Tromey <tromey@redhat.com>
10994
10995 PR c++/14999:
10996 * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>:
10997 Call require_rvalue.
10998
10999 2013-01-18 Yao Qi <yao@codesourcery.com>
11000
11001 * dbxread.c (dbx_psymtab_to_symtab): Delete the declaration.
11002 (dbx_read_symtab): New declaration.
11003 (dbx_psymtab_to_symtab): Delete.
11004 (dbx_read_symtab): Rename from dbx_psymtab_to_symtab.
11005 Rename parameter PST to SELF. Exchanged two parameters.
11006 (start_psymtab): Caller update.
11007 * dwarf2read.c (dwarf2_psymtab_to_symtab): Delete the declaration.
11008 (dwarf2_read_symtab): New declaration.
11009 (dwarf2_psymtab_to_symtab): Delete.
11010 (dwarf2_read_symtab): Rename from dwarf2_psymtab_to_symtab.
11011 Rename parameter PST to SELF. Exchanged two parameters.
11012 (create_partial_symtab): Caller update.
11013 * mdebugread.c (mdebug_psymtab_to_symtab): Delete.
11014 (mdebug_read_symtab): Rename from mdebug_psymtab_to_symtab.
11015 Rename parameter PST to SELF. Exchanged two parameters.
11016 (parse_partial_symbols, new_psymtab): Caller update.
11017 * psympriv.h (struct partial_symtab) <read_symtab>: Exchange
11018 two parameters.
11019 * psymtab.c (psymtab_to_symtab): Caller update.
11020 * xcoffread.c (xcoff_psymtab_to_symtab): Delete.
11021 (xcoff_read_symtab): Rename from xcoff_psymtab_to_symtab.
11022 Rename parameter PST to SELF. Exchanged two parameters.
11023 (xcoff_start_psymtab): Caller update.
11024
11025 2013-01-18 Yao Qi <yao@codesourcery.com>
11026
11027 * infrun.c (proceed): Rename local variable 'oneproc' to
11028 'force_step'.
11029
11030 2013-01-17 Doug Evans <dje@google.com>
11031
11032 * dwarf2read.c (dw2_build_type_unit_groups_reader): Delete.
11033 (dw2_build_type_unit_groups): Delete. All uses updated.
11034
11035 * symtab.h (struct symbol_search): Add comment.
11036
11037 2013-01-17 Jan Kratochvil <jan.kratochvil@redhat.com>
11038
11039 * symtab.c (compare_filenames_for_search): New comment for
11040 HAS_DRIVE_SPEC.
11041
11042 2013-01-17 Tom Tromey <tromey@redhat.com>
11043
11044 * cp-abi.c (cp_abi_completer): Fix typo in assignment.
11045
11046 2013-01-17 Jan Kratochvil <jan.kratochvil@redhat.com>
11047
11048 * symtab.c (iterate_over_some_symtabs): New variable cleanups,
11049 initialize it by existing make_cleanup. Call new do_cleanups.
11050
11051 2013-01-17 Tom Tromey <tromey@redhat.com>
11052
11053 * cp-abi.c (cp_abi_completer): New function.
11054 (_initialize_cp_abi): Set completer for "set cp-abi".
11055
11056 2013-01-17 Tom Tromey <tromey@redhat.com>
11057
11058 * mem-break.c: Remove obsolete comment.
11059 * bfin-tdep.c (bfin_breakpoint_from_pc): Fix comment.
11060
11061 2012-01-17 Sanjoy Das <sanjoy@playingwithpointers.com>
11062
11063 * jit.c (jit_reader_load_command): Interpret the jit reader name
11064 as an absolute path if it begins with a forward slash.
11065
11066 2012-01-17 Sanjoy Das <sanjoy@playingwithpointers.com>
11067
11068 PR gdb/14550
11069
11070 * jit.c (finalize_symtab): Ensure that only the global block has a
11071 NULL superblock.
11072
11073 2013-01-17 Pedro Alves <palves@redhat.com>
11074
11075 * acinclude.m4: Include ../config/plugins.m4,
11076 ../config/largefile.m4 and ../config/lead-dot.m4. Add comments.
11077 * Makefile.in (aclocal_m4_deps): Update.
11078 * aclocal.m4: Renegerate.
11079
11080 2013-01-16 Doug Evans <dje@google.com>
11081
11082 * contrib/cc-with-tweaks.sh: Add references to Fission docs.
11083
11084 2013-01-16 Pedro Alves <palves@redhat.com>
11085 Tom Tromey <tromey@redhat.com>
11086
11087 PR cli/7221:
11088 * NEWS: Add "catch signal".
11089 * breakpoint.c (base_breakpoint_ops): No longer static.
11090 (bpstat_explains_signal): New function.
11091 (init_catchpoint): No longer static.
11092 (base_breakpoint_explains_signal): New function.
11093 (base_breakpoint_ops): Initialize new field.
11094 * breakpoint.h (enum bpstat_signal_value): New.
11095 (struct breakpoint_ops) <explains_signal>: New field.
11096 (bpstat_explains_signal): Remove macro, declare as function.
11097 (base_breakpoint_ops, init_catchpoint): Declare.
11098 * break-catch-sig.c: New file.
11099 * inferior.h (signal_catch_update): Declare.
11100 * infrun.c (signal_catch): New global.
11101 (handle_syscall_event): Update for change to
11102 bpstat_explains_signal.
11103 (handle_inferior_event): Likewise. Always handle random signals
11104 via bpstats.
11105 (signal_cache_update): Check signal_catch.
11106 (signal_catch_update): New function.
11107 (_initialize_infrun): Initialize signal_catch.
11108 * Makefile.in (SFILES): Add break-catch-sig.c.
11109 (COMMON_OBS): Add break-catch-sig.o.
11110
11111 2013-01-16 Tom Tromey <tromey@redhat.com>
11112
11113 * breakpoint.c (print_one_catch_fork, print_one_catch_vfork)
11114 (print_one_catch_solib, print_one_catch_syscall)
11115 (print_one_catch_exec, print_one_exception_catchpoint): Emit
11116 "catch-type".
11117
11118 2013-01-16 Yao Qi <yao@codesourcery.com>
11119
11120 * printcmd.c (current_display_number): Make it static.
11121
11122 2013-01-16 Yao Qi <yao@codesourcery.com>
11123
11124 * infcmd.c (step_once): Don't check '!single_inst' as it was
11125 checked before.
11126
11127 2013-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
11128
11129 * dwarf2read.c (psymtab_include_file_name): Extend the function comment.
11130
11131 2013-01-14 Tom Tromey <tromey@redhat.com>
11132
11133 * cli/cli-decode.c (add_setshow_string_noescape_cmd): Return the
11134 set command.
11135 * command.h (add_setshow_string_noescape_cmd): Update.
11136 * corefile.c (set_gnutarget_command): Remove trailing whitespace.
11137 (complete_set_gnutarget): New function.
11138 (_initialize_core): Set the "set gnutarget" completer.
11139
11140 2013-01-14 Tom Tromey <tromey@redhat.com>
11141
11142 PR symtab/14442:
11143 * c-typeprint.c (cp_type_print_method_args): Handle 'restrict'.
11144 (c_type_print_modifier): Likewise.
11145 * dwarf2read.c (read_tag_restrict_type): New function.
11146 (read_type_die_1): Handle DW_TAG_restrict_type.
11147 * gdbtypes.c (make_restrict_type): New function.
11148 (recursive_dump_type): Handle TYPE_RESTRICT.
11149 * gdbtypes.h (enum type_flag_values): Renumber.
11150 (enum type_instance_flag_value): Add
11151 TYPE_INSTANCE_FLAG_RESTRICT.
11152 (TYPE_RESTRICT): New macro.
11153 (make_restrict_type): Declare.
11154
11155 2013-01-14 Tom Tromey <tromey@redhat.com>
11156
11157 PR symtab/14931:
11158 * psymtab.c (struct psymtab_state): New.
11159 (discard_psymtabs_upto, make_cleanup_discard_psymtabs): New
11160 functions.
11161 * psympriv.h (make_cleanup_discard_psymtabs): Declare.
11162 * dwarf2read.c (dwarf2_build_psymtabs): Catch exceptions.
11163
11164 2013-01-14 Richard Sharman <richard_sharman@mitel.com>
11165 Pedro Alves <palves@redhat.com>
11166
11167 PR remote/14786
11168
11169 * remote.c (remote_threads_info): Make a copy of the reply from
11170 qfThreadInfo and use that instead of rs->buf.
11171
11172 2013-01-14 Yao Qi <yao@codesourcery.com>
11173
11174 * dbxread.c (dbx_psymtab_to_symtab_1): Don't check PST is NULL.
11175 (dbx_psymtab_to_symtab): Likewise.
11176 * dwarf2read.c (dwarf2_psymtab_to_symtab): Likewise.
11177 * mdebugread.c (mdebug_psymtab_to_symtab): Likewise.
11178 * xcoffread.c (xcoff_psymtab_to_symtab_1): Likewise.
11179
11180 2013-01-13 Jan Kratochvil <jan.kratochvil@redhat.com>
11181
11182 * parse.c (parse_exp_in_context): New variable inner_chain. Call
11183 make_cleanup_restore_current_language. Call set_language. Move
11184 OLD_CHAIN and INNER_CHAIN cleanups.
11185 * utils.c (do_restore_current_language)
11186 (make_cleanup_restore_current_language): New functions.
11187 * utils.h (make_cleanup_restore_current_language): New declaration.
11188
11189 2013-01-13 Jan Kratochvil <jan.kratochvil@redhat.com>
11190
11191 * source.c (symtab_to_fullname): Apply rewrite_source_path also for
11192 non-existing files.
11193
11194 * source.c (symtab_to_fullname): Do not prepend DIRNAME for
11195 non-existing files if FILENAME is already absolute.
11196
11197 2013-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
11198
11199 * macrocmd.c (macro_inform_no_debuginfo): Use puts_filtered instead of
11200 fputs_filtered. Append trailing newline.
11201
11202 2013-01-11 Yao Qi <yao@codesourcery.com>
11203 Stan Shebs <stan@codesourcery.com>
11204
11205 * psymtab.c (init_psymbol_list): Clarify the comment.
11206
11207 2013-01-11 Yao Qi <yao@codesourcery.com>
11208
11209 * breakpoint.c (print_one_breakpoint_location): Remove dead code.
11210 (update_dprintf_command_list): Assert that 'printf_line' is
11211 non-null. Remove condition check.
11212
11213 2013-01-10 Jan Kratochvil <jan.kratochvil@redhat.com>
11214
11215 Code cleanup.
11216 * psymtab.c (psymtab_to_fullname, psymtab_to_fullname): Make the return
11217 type const char *.
11218 * tui/tui-source.c (tui_source_is_displayed): Make the parameter fname
11219 const char *.
11220 * tui/tui-source.h (tui_source_is_displayed): Likewise.
11221
11222 2013-01-09 Anthony Green <green@moxielogic.com>
11223
11224 * cp-abi.c (cplus_print_vtable): Don't return value from void
11225 function.
11226 * ada-lang.c (re_set_catch_assert): Ditto.
11227
11228 2013-01-09 Doug Evans <dje@google.com>
11229
11230 * symfile.h (quick_symbol_functions): Delete member
11231 pre_expand_symtabs_matching. All uses removed.
11232 * dwarf2read.c (dw2_lookup_symbol): Implement.
11233 (dw2_do_expand_symtabs_matching): Delete.
11234 (dw2_pre_expand_symtabs_matching): Delete.
11235 (struct dw2_symtab_iterator): New type.
11236 (dw2_symtab_iter_init, dw2_symtab_iter_next): New functions.
11237 (dw2_expand_symtabs_for_function): Rewrite.
11238 (dwarf2_gdb_index_functions): Update.
11239 * psymtab.c (pre_expand_symtabs_matching_psymtabs): Delete.
11240 (psym_functions): Update.
11241
11242 2013-01-09 Tom Tromey <tromey@redhat.com>
11243
11244 * config/pa/hpux.mh (NATDEPFILES): Remove somread.o.
11245 * configure: Rebuild.
11246 * configure.ac: Add somread.o to the build if BFD has SOM
11247 support.
11248 * somread.c: Include som/aout.h, not syms.h.
11249 (som_symtab_read): Use som_external_symbol_dictionary_record.
11250 Unpack records manually.
11251 (_initialize_somread): Declare.
11252
11253 2012-01-08 Mike Frysinger <vapier@gentoo.org>
11254
11255 * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx) [__x86_64__]:
11256 Cast return_address to 64bits.
11257
11258 2013-01-08 Hui Zhu <hui_zhu@mentor.com>
11259
11260 * printcmd.c: Remove define of function output_command.
11261 * tracepoint.c: Remove extern of function output_command.
11262 * valprint.h: (output_command): New extern.
11263
11264 2013-01-07 Tom Tromey <tromey@redhat.com>
11265
11266 * objc-lang.c (objc_emit_char, objc_printchar, objc_printstr):
11267 Remove.
11268 (objc_language_defn): Use c_printchar, c_printstr,
11269 c_emit_char.
11270
11271 2013-01-07 Tom Tromey <tromey@redhat.com>
11272
11273 PR cli/7719:
11274 * NEWS: Update.
11275 * ada-valprint.c (printstr, print_field_values): Remove
11276 "inspect_it" code.
11277 * cp-valprint.c (cp_print_value_fields): Remove "inspect_it"
11278 code.
11279 * jv-valprint.c (java_print_value_fields): Remove "inspect_it"
11280 code.
11281 * m2-lang.c (m2_printstr): Remove "inspect_it" code.
11282 * main.c (captured_main): Remove "epoch" argument.
11283 * objc-lang.c (objc_printstr): Remove "inspect_it" code.
11284 * p-lang.c (pascal_printstr): Remove "inspect_it" code.
11285 * p-valprint.c (pascal_object_print_value_fields): Remove
11286 "inspect_it" code.
11287 * printcmd.c (print_command_1): Remove 'inspect' argument.
11288 (print_command, call_command): Update.
11289 (inspect_command): Remove.
11290 (_initialize_printcmd): Make "inspect" an alias for "print".
11291 * top.c (epoch_interface): Remove.
11292 * top.h (epoch_interface): Remove.
11293 * valprint.c (user_print_options): Update.
11294 (print_converted_chars_to_obstack): Remove "inspect_it" code.
11295 * valprint.h (struct value_print_options) <inspect_it>: Remove
11296 field.
11297
11298 2013-01-04 Tom Tromey <tromey@redhat.com>
11299
11300 * valprint.h (read_string): Add 'extern'.
11301
11302 2013-01-07 Joel Brobecker <brobecker@adacore.com>
11303
11304 * darwin-nat.c: Fix typo in TASK_DYLD_INFO_COUNT macro test
11305 used to decide whether to define darwin_read_dyld_info or not.
11306
11307 2013-01-03 Pierre Muller <muller@sourceware.org>
11308
11309 * main.c (relocate_gdb_directory): Avoid calling stat function
11310 if DIR is empty.
11311
11312 2013-01-03 Yao Qi <yao@codesourcery.com>
11313
11314 * psymtab.c (fixup_psymbol_section): Update declaration.
11315 (fixup_psymbol_section): Remove code returning value.
11316
11317 2013-01-03 Yao Qi <yao@codesourcery.com>
11318
11319 * symtab.h: Remove some out of date comments.
11320 (enum exception_event_kind): Move it ...
11321 * breakpoint.c: ... here.
11322
11323 2013-01-02 Iain Sandoe <developer@sandoe-acoustics.co.uk>
11324
11325 PR gdb/14405
11326 * darwin-nat.c (darwin_read_dyld_info): Only build if
11327 TASK_DYLD_INFO_COUNT is defined.
11328 (darwin_xfer_partial): Call darwin_read_dyld_info only if
11329 TASK_DYLD_INFO_COUNT is defined.
11330
11331 2013-01-02 Tom Tromey <tromey@redhat.com>
11332
11333 * symfile.h (struct ecoff_debug_hack): Remove.
11334 * objfiles.c: Don't include mdebugread.h.
11335
11336 2013-01-02 Tom Tromey <tromey@redhat.com>
11337
11338 * config/i386/darwin.mh (NATDEPFILES): Remove machoread.o.
11339 * configure.ac: Check for Mach-O support in BFD. Update
11340 CONFIG_OBS.
11341 * configure: Rebuild.
11342
11343 2013-01-02 Tom Tromey <tromey@redhat.com>
11344
11345 * acinclude.m4 (GDB_AC_CHECK_BFD): New macro.
11346 * configure.ac: Use GDB_AC_CHECK_BFD.
11347 * configure: Rebuild.
11348
11349 2013-01-01 Maxim Kuvyrkov <maxim.kuvyrkov@gmail.com>
11350
11351 * MAINTAINERS: Update my email.
11352
11353 2013-01-01 Joel Brobecker <brobecker@adacore.com>
11354
11355 * cli/cli-script.h (make_cleanup_free_command_lines): Make extern.
11356
11357 2013-01-01 Joel Brobecker <brobecker@adacore.com>
11358
11359 * rs6000-nat.c (bss_data_overlap): New function.
11360 (vmap_symtab): Use it to adjust the .bss section's offset.
11361
11362 2013-01-01 Joel Brobecker <brobecker@adacore.com>
11363
11364 Update year range in copyright notice of all files.
11365
11366 2013-01-01, 13 Joel Brobecker <brobecker@adacore.com>
11367
11368 * top.c (print_gdb_version): Update copyright year.
11369
11370 For older changes see ChangeLog-2012.
11371 \f
11372 Local Variables:
11373 mode: change-log
11374 left-margin: 8
11375 fill-column: 74
11376 version-control: never
11377 coding: utf-8
11378 End:
This page took 0.268539 seconds and 4 git commands to generate.