New make target 'check-perf' and new dir gdb.perf
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2013-11-06 Yao Qi <yao@codesourcery.com>
2
3 * Makefile.in (check-perf): New target.
4
5 2013-11-05 Will Newton <will.newton@linaro.org>
6
7 PR gdb/7670
8 * arm-tdep.c (print_fpu_flags): Use filtered output routines.
9 (arm_print_float_info): Likewise.
10
11 2013-11-04 Anton Blanchard <anton@samba.org>
12
13 * target.c (memory_xfer_partial): Cap write to 4KB.
14
15 2013-11-01 Tiago Stürmer Daitx <tdaitx@linux.vnet.ibm.com>
16
17 * breakpoint.c (create_longjmp_master_breakpoint): Allow libc
18 probe scan even when the arch provides no get_longjmp_target.
19
20 2013-10-31 Pedro Alves <palves@redhat.com>
21
22 * infrun.c (handle_syscall_event): Don't set or clear stop_signal.
23 (handle_inferior_event) <TARGET_WAITKIND_FORKED,
24 TARGET_WAITKIND_VFORKED>: Don't set stop_signal to
25 GDB_SIGNAL_TRAP, or clear it. Pass GDB_SIGNAL_0 to
26 bpstat_explains signal, instead of GDB_SIGNAL_TRAP.
27 <bpstat handling>: If the bpstat chain wants the signal to be
28 hidden, then set stop_signal to GDB_SIGNAL_0 instead of
29 GDB_SIGNAL_TRAP.
30
31 2013-10-31 Andrew Burgess <aburgess@broadcom.com>
32
33 * breakpoint.c (update_watchpoint): Update error message and add
34 an additional error message.
35
36 2013-10-30 Andreas Arnez <arnez@linux.vnet.ibm.com>
37
38 * s390-tdep.h: Rename to...
39 * s390-linux-tdep.h: ...here.
40 * s390-tdep.c: Rename to...
41 * s390-linux-tdep.c: ...here. Adjust #include.
42 * s390-nat.c: Rename to...
43 * s390-linux-nat.c: ...here. Adjust #include.
44 * config/s390/s390.mh: Rename to...
45 * config/s390/linux.mh: ...here. Reflect rename s390-nat.o ->
46 s390-linux-nat.o.
47 * configure.host: Reflect host rename "s390" -> "linux".
48 * configure.tgt: Reflect rename s390-tdep.o -> s390-linux-tdep.o.
49 * Makefile.in (ALL_TARGET_OBS): Likewise.
50 (HFILES_NO_SRCDIR): Reflect rename s390-tdep.h ->
51 s390-linux-tdep.h.
52 (ALLDEPFILES): Reflect rename of .c files.
53
54 2013-10-30 Andreas Arnez <arnez@linux.vnet.ibm.com>
55
56 * s390-nat.c: Whitespace cleanup.
57 * s390-tdep.c: Likewise.
58 * s390-tdep.h: Remove empty line at end of file.
59
60 2013-10-30 Maciej W. Rozycki <macro@codesourcery.com>
61
62 * linux-tdep.c (linux_corefile_thread_callback): Preinitialize
63 siginfo_size.
64
65 2013-10-29 Tom Tromey <tromey@redhat.com>
66
67 * utils.c (reg): Move undefinition...
68 * gdb_curses.h: ... here. Update comment to mention AIX.
69
70 2013-10-29 Nicolas Blanc <nicolas.blanc@intel.com>
71
72 * exec.h (add_target_sections_of_objfile): New declaration.
73 * exec.c (add_target_sections_of_objfile): New function.
74 * symfile.c (add_symbol_file_command): Update current target sections.
75 (remove_symbol_file_command): New command.
76 (symfile_free_objfile): New function.
77 (_initialize_symfile): Register observer for free_objfile events.
78 * NEWS: Add description of the remove-symbol-file command.
79 * breakpoint.c (disable_breakpoints_in_freed_objfile): New function.
80 * objfiles.c (free_objfile): Notify free_objfile.
81 (is_addr_in_objfile): New function.
82 * objfiles.h (is_addr_in_objfile): New declaration.
83 * printcmd.c (clear_dangling_display_expressions): Act upon free_objfile
84 events instead of solib_unloaded events.
85 (_initialize_printcmd): Register observer for free_objfile instead
86 of solib_unloaded notifications.
87 * solib.c (remove_user_added_objfile): New function.
88 (_initialize_symfile): Add remove-symbol-file.
89
90 2013-10-29 Andrew Burgess <aburgess@broadcom.com>
91
92 * infcmd.c (default_print_one_register_info): Use val_print to
93 print all values even optimized out or unavailable ones. Don't
94 try to print a raw form of optimized out or unavailable values.
95
96 2013-10-29 Yao Qi <yao@codesourcery.com>
97
98 * auto-load.c (auto_load_pspace_data_cleanup): Get data from
99 parameter 'arg' instead of from program_space_data.
100 * objfiles.c (objfiles_pspace_data_cleanup): Likewise.
101 * solib-darwin.c (darwin_pspace_data_cleanup): Likewise.
102 * solib-dsbt.c (dsbt_pspace_data_cleanup): Likewise.
103 * solib-svr4.c (svr4_pspace_data_cleanup): Likewise.
104 * inflow.c (inflow_inferior_data_cleanup): Get data from
105 parameter 'arg' instead of inferior_data.
106 * registry.h: Add comments.
107
108 2013-10-28 Pedro Alves <palves@redhat.com>
109
110 * breakpoint.c (watchpoints_triggered)
111 <!target_stopped_data_address>: Hardcode return 1.
112
113 2013-10-28 Pedro Alves <palves@redhat.com>
114
115 * infrun.c (process_event_stop_test): Remove unnecessary scoping
116 level and reindent.
117
118 2013-10-28 Pedro Alves <palves@redhat.com>
119
120 * infrun.c (process_event_stop_test): New function, factored out
121 from handle_inferior_event.
122 (handle_inferior_event): 'process_event_stop_test' is now a
123 function instead of a goto label -- adjust.
124
125 2013-10-28 Pedro Alves <palves@redhat.com>
126
127 * infrun.c (handle_inferior_event): Move process_event_stop_test
128 goto label to the else branch of the ecs->random_signal check,
129 along with FRAME and GDBARCH re-fetching.
130
131 2013-10-28 Pedro Alves <palves@redhat.com>
132
133 * infrun.c (switch_back_to_stepped_thread): New function, factored
134 out from handle_inferior_event.
135 (handle_inferior_event): Adjust to call
136 switch_back_to_stepped_thread. Call it also at the tail of the
137 random signal handling, and return, instead of also handling
138 random signals just before the stepping tests.
139
140 2013-10-28 Pedro Alves <palves@redhat.com>
141
142 * infrun.c (clear_stop_func): Delete.
143 (handle_inferior_event): Don't call clear_stop_func and don't
144 clear 'ecs->random_signal'.
145
146 2013-10-27 Yao Qi <yao@codesourcery.com>
147
148 * varobj.c (struct varobj_root) <lang>: Rename to 'lang_ops'.
149 (varobj_create, varobj_get_path_expr): Update.
150 (varobj_value_has_mutated, varobj_update): Likewise.
151 (create_child_with_value, new_root_variable): Likewise.
152 (number_of_children, name_of_variable): Likewise.
153 (value_of_child, my_value_of_variable): Likewise.
154 (varobj_value_is_changeable_p): Likewise.
155
156 2013-10-25 Yao Qi <yao@codesourcery.com>
157
158 * language.h (struct lang_varobj_ops): Declare.
159 (struct language_defn) <la_varobj_ops>: New field.
160 * ada-lang.c: Include "varobj.h"
161 (defn ada_language_defn): Initialize field 'la_varobj_ops' with
162 ada_varobj_ops.
163 * c-lang.c: Include "varobj.h"
164 (c_language_defn): Initialize field 'la_varobj_ops' with
165 c_varobj_ops.
166 (cplus_language_defn): Initialize field 'la_varobj_ops' with
167 cplus_varobj_ops.
168 (asm_language_defn): Initialize field 'la_varobj_ops' with
169 default_varobj_ops.
170 (minimal_language_defn): Likewise.
171 * d-lang.c (d_language_defn): Likewise.
172 * f-lang.c (f_language_defn): Likewise.
173 * go-lang.c (go_language_defn): Likewise.
174 * m2-lang.c (m2_language_defn): Likewise.
175 * objc-lang.c (objc_language_defn): Likewise.
176 * opencl-lang.c (opencl_language_defn): Likewise.
177 * p-lang.c (pascal_language_defn): Likewise.
178 * language.c (unknown_language_defn): Likewise.
179 (auto_language_defn): Likewise.
180 (local_language_defn): Likewise.
181 * jv-lang.c (java_language_defn): Initialize field
182 'la_varobj_ops' with java_varobj_ops.
183 * varobj.c (varobj_create): Update.
184 * varobj.h (default_varobj_ops): Define macro.
185
186 2013-10-25 Pedro Alves <palves@redhat.com>
187
188 * cp-valprint.c (cp_print_value_fields): No longer handle a NULL
189 static field value.
190 (cp_print_static_field): If the value is entirely optimized out,
191 print <optimized out> here.
192 * jv-valprint.c (java_print_value_fields): No longer handle a NULL
193 static field value.
194 * p-valprint.c (pascal_object_print_static_field): If the value is
195 entirely optimized out, print <optimized out> here.
196 * valops.c (do_search_struct_field)
197 (value_struct_elt_for_reference): No longer handle a NULL static
198 field value.
199 * value.c (value_static_field): Return an optimized out value
200 instead of NULL.
201
202 2013-10-25 Yao Qi <yao@codesourcery.com>
203
204 * remote.c (remote_traceframe_info): Return early if
205 traceframe is not selected.
206
207 2013-10-25 Yao Qi <yao@codesourcery.com>
208
209 * tracepoint.c (traceframe_fun): Remove.
210 (traceframe_sal): Remove.
211 (set_traceframe_context): Add local variables.
212
213 2013-10-25 Joel Brobecker <brobecker@adacore.com>
214
215 * varobj.h (struct lang_varobj_ops): Remove spaces between '*'
216 and parameter name.
217
218 2013-10-24 Maciej W. Rozycki <macro@codesourcery.com>
219
220 * linux-tdep.c (linux_corefile_thread_callback): Propagate any
221 failure from register information collection.
222
223 2013-10-24 Maciej W. Rozycki <macro@codesourcery.com>
224
225 * linux-tdep.c (linux_corefile_thread_data): Remove `num_notes'
226 member.
227 (linux_corefile_thread_callback): Update accordingly.
228 (linux_make_corefile_notes): Likewise.
229
230 2013-10-24 Pedro Alves <palves@redhat.com>
231
232 * NEWS (New options): Mention set/show startup-with-shell.
233 * config/alpha/nm-osf3.h (START_INFERIOR_TRAPS_EXPECTED): Set to 2
234 instead of 3.
235 * fork-child.c (fork_inferior, startup_inferior): Handle 'set
236 startup-with-shell'.
237 (show_startup_with_shell): New function.
238 (_initialize_fork_child): Register the set/show startup-with-shell
239 commands.
240 * inf-ptrace.c (inf_ptrace_create_inferior): Remove comment.
241 * inf-ttrace.c (inf_ttrace_him): Remove comment.
242 * procfs.c (procfs_init_inferior): Remove comment.
243 * infcmd.c (startup_with_shell): New global.
244 * inferior.h (startup_with_shell): Declare global.
245 (STARTUP_WITH_SHELL): Delete.
246 (START_INFERIOR_TRAPS_EXPECTED): Set to 1 by default instead of 2.
247
248 2013-10-23 Pedro Alves <palves@redhat.com>
249
250 * common/gdb_signals.h (gdb_signal_to_symbol_string): Declare.
251 * common/signals.c: Include "gdb_assert.h".
252 (signals): New field 'symbol'.
253 (SET): Use the 'symbol' parameter.
254 (gdb_signal_to_symbol_string): New function.
255 * infrun.c (handle_inferior_event) <random signal>: In debug
256 output, print the random signal enum as string in addition to its
257 number.
258 * target/waitstatus.c (target_waitstatus_to_string): Print the
259 signal's enum value as string instead of the (POSIX) signal name.
260
261 2013-10-23 Gary Benson <gbenson@redhat.com>
262
263 PR 16013
264 * common/linux-osdata.c (command_from_pid): Reduced size of cmd
265 from 32 to 18. Adjusted fscanf format string accordingly.
266 (Avoids leaving cmd unterminated.)
267 (print_sockets): Do not parse tlen, inode, sl, timeout, txq, rxq,
268 trun, retn or extra. (Avoids leaving extra unterminated.) Check
269 that local_address and remote_address will not overflow.
270 (linux_xfer_osdata_modules): Parse lines using strtok to avoid
271 leaving dependencies unterminated. Parse size as "%u" to match
272 definition.
273
274 2013-10-22 Pedro Alves <palves@redhat.com>
275
276 * infrun.c (handle_inferior_event) <thread hop>: Don't clear or
277 set ecs->random signal.
278
279 2013-10-22 Pedro Alves <palves@redhat.com>
280
281 * infrun.c (keep_going): Update comments.
282
283 2013-10-22 Pedro Alves <palves@redhat.com>
284
285 * remote.c (remote_parse_stop_reply) <'T'/'S'/'X' replies>: Map
286 invalid signal numbers to GDB_SIGNAL_UNKNOWN.
287
288 2013-10-22 Pedro Alves <palves@redhat.com>
289
290 * include/gdb/signals.def (TARGET_EXC_BAD_ACCESS): Rename to
291 GDB_EXC_BAD_ACCESS.
292 (TARGET_EXC_BAD_INSTRUCTION): Rename to GDB_EXC_BAD_INSTRUCTION.
293 (TARGET_EXC_ARITHMETIC): Rename to GDB_EXC_ARITHMETIC.
294 (TARGET_EXC_EMULATION): Rename to GDB_EXC_EMULATION.
295 (TARGET_EXC_SOFTWARE): Rename to GDB_EXC_SOFTWARE.
296 (TARGET_EXC_BREAKPOINT): Rename to GDB_EXC_BREAKPOINT.
297 (GDB_SIGNAL_LAST): Change description string.
298 * common/signals.c (gdb_signal_from_host, do_gdb_signal_to_host):
299 Adjust to signal renaming.
300 * darwin-nat.c (darwin_decode_message): Likewise.
301
302 2013-10-22 Jose E. Marchesi <jose.marchesi@oracle.com>
303
304 * MAINTAINERS (Write After Approval): Add myself to the list.
305
306 2013-10-18 Andrew Burgess <aburgess@broadcom.com>
307
308 * breakpoint.c (update_watchpoint): If hardware watchpoints are
309 forced off, downgrade them to software watchpoints if possible,
310 and error out if not possible.
311 (watch_command_1): Move watchpoint type selection closer to
312 watchpoint creation, and extend the comments.
313
314 2013-10-18 Pedro Alves <palves@redhat.com>
315
316 PR gdb/16062
317 * infrun.c (handle_inferior_event): Keep going if we got a random
318 signal we should not stop for, instead of falling through to the
319 step tests.
320
321 2013-10-18 Yao Qi <yao@codesourcery.com>
322
323 * c-varobj.c (cplus_number_of_children): Fix indentation.
324
325 2013-10-17 Tom Tromey <tromey@redhat.com>
326
327 PR gdb/15995:
328 * printcmd.c (printcmd): Call gdb_flush.
329
330 2013-10-17 Tom Tromey <tromey@redhat.com>
331
332 * elfread.c (struct elfinfo) <stabindexsect>: Remove.
333 (elf_locate_sections): Update.
334
335 2013-10-17 Yao Qi <yao@codesourcery.com>
336
337 * Makefile.in (HFILES_NO_SRCDIR): Remove ada-varobj.h.
338 * ada-varobj.c: Remove the include of ada-varobj.h.
339 (ada_varobj_get_number_of_children): Declare.
340 (ada_varobj_get_name_of_child): Make it static.
341 (ada_varobj_get_path_expr_of_child): Likewise.
342 (ada_varobj_get_value_of_child): Likewise.
343 (ada_varobj_get_type_of_child): Likewise.
344 (ada_varobj_get_value_of_array_variable): Likewise.
345 * ada-varobj.h: Remove.
346
347 2013-10-17 Yao Qi <yao@codesourcery.com>
348
349 * Makefile.in (SFILES): Add c-varobj.c and jv-varobj.c.
350 (COMMON_OBS): Add c-varobj.o and jv-varobj.o.
351 * ada-varobj.c: Include "varobj.h".
352 (ada_number_of_children): New. Moved from varobj.c.
353 (ada_name_of_variable, ada_name_of_child): Likewise.
354 (ada_path_expr_of_child, ada_value_of_child): Likewise.
355 (ada_type_of_child, ada_value_of_variable): Likewise.
356 (ada_value_is_changeable_p, ada_value_has_mutated): Likewise.
357 (ada_varobj_ops): New.
358 * c-varobj.c, jv-varobj.c: New file. Moved from varobj.c.
359 * gdbtypes.c (get_target_type): New. Moved from varobj.c.
360 * gdbtypes.h (get_target_type): Declare.
361 * varobj.c: Remove the inclusion of "ada-varobj.h" and
362 "ada-lang.h".
363 (ANONYMOUS_STRUCT_NAME): Move it to c-varobj.c.
364 (ANONYMOUS_UNION_NAME): Likewise.
365 (get_type, get_value_type, get_target_type): Remove declarations.
366 (value_get_print_value, varobj_value_get_print_value): Likewise.
367 (c_number_of_children, c_name_of_variable): Likewise.
368 (c_name_of_child, c_path_expr_of_child): Likewise.
369 (c_value_of_child, c_type_of_child): Likewise.
370 (c_value_of_variable, cplus_number_of_children): Likewise.
371 (cplus_class_num_children, cplus_name_of_variable): Likewise.
372 (cplus_name_of_child, cplus_path_expr_of_child): Likewise.
373 (cplus_value_of_child, cplus_type_of_child): Likewise.
374 (cplus_value_of_variable, java_number_of_children): Likewise.
375 (java_name_of_variable, java_name_of_child): Likewise.
376 (java_path_expr_of_child, java_value_of_child): Likewise.
377 (java_type_of_child, java_value_of_variable): Likewise.
378 (ada_number_of_children, ada_name_of_variable): Likewise.
379 (ada_name_of_child, ada_path_expr_of_child): Likewise.
380 (ada_value_of_child, ada_type_of_child): Likewise.
381 (ada_value_of_variable, ada_value_is_changeable_p): Likewise.
382 (ada_value_has_mutated): Likewise.
383 (struct language_specific): Move it to varobj.h.
384 (CPLUS_FAKE_CHILD): Move it to varobj.h.
385 (restrict_range): Rename it varobj_restrict_range. Make it extern.
386 Callers update.
387 (get_path_expr_parent): Rename it to varobj_get_path_expr_parent.
388 Make it extern.
389 (is_anonymous_child): Move it to c-varobj.c and rename to
390 varobj_is_anonymous_child. Caller update.
391 (get_type): Move it to c-varobj.c.
392 (get_value_type): Rename it varobj_get_value_type. Make it
393 extern.
394 (get_target_type): Move it gdbtypes.c.
395 (varobj_formatted_print_options): New function.
396 (value_get_print_value): Rename it to
397 varobj_value_get_print_value and make it extern.
398 (varobj_value_is_changeable_p): Make it extern.
399 (adjust_value_for_child_access): Move it to c-varobj.c.
400 (default_value_is_changeable_p): Rename it to
401 varobj_default_value_is_changeable_p. Make it extern.
402 (c_number_of_children, c_name_of_variable): Move it to c-varobj.c
403 (c_name_of_child, c_path_expr_of_child): Likewise.
404 (c_value_of_child, c_type_of_child): Likewise.
405 (c_value_of_variable, cplus_number_of_children): Likewise.
406 (cplus_class_num_children, cplus_name_of_variable): Likewise.
407 (cplus_name_of_child, cplus_path_expr_of_child): Likewise.
408 (cplus_value_of_child, cplus_type_of_child): Likewise.
409 (cplus_value_of_variable): Likewise.
410 (java_number_of_children, java_name_of_variable): Move it to jv-varobj.c.
411 (java_name_of_child, java_path_expr_of_child): Likewise.
412 (java_value_of_child, java_type_of_child): Likewise.
413 (java_value_of_variable): Likewise.
414 (ada_number_of_children, ada_name_of_variable): Move it to ada-varobj.c.
415 (ada_name_of_child, ada_path_expr_of_child): Likewise.
416 (ada_value_of_child, ada_type_of_child): Likewise.
417 (ada_value_of_variable, ada_value_is_changeable_p): Likewise.
418 (ada_value_has_mutated): Likewise.
419 * varobj.h (CPLUS_FAKE_CHILD): New macro, moved from varobj.c.
420 (struct lang_varobj_ops): New. Renamed by 'struct language_specific'.
421 (c_varobj_ops, cplus_varobj_ops): Declare.
422 (java_varobj_ops, ada_varobj_ops): Declare.
423 (varobj_default_value_is_changeable_p): Declare.
424 (varobj_value_is_changeable_p): Declare.
425 (varobj_get_value_type, varobj_is_anonymous_child): Declare.
426 (varobj_get_path_expr_parent): Declare.
427 (varobj_value_get_print_value): Declare.
428 (varobj_formatted_print_options): Declare.
429 (varobj_restrict_range): Declare.
430
431 2013-10-17 Luis Machado <lgustavo@codesourcery.com>
432
433 * target/waitstatus.h (target_waitkind): Remove spurious
434 character from the comments.
435
436 2013-10-17 Joel Brobecker <brobecker@adacore.com>
437
438 * gdbarch.sh (get_longjmp_target): Add method documentation.
439 * gdbarch.h: Regenerate.
440
441 2013-10-16 Tom Tromey <tromey@redhat.com>
442
443 * dbxread.c (read_dbx_symtab) <bss_ext_symbol>: Remove unused
444 label.
445
446 2013-10-16 Luis Machado <lgustavo@codesourcery.com>
447
448 * gcore.in: Call GDB using the full path to the gcore script.
449 Error out if the GDB binary is not found.
450
451 2013-10-16 Sergio Durigan Junior <sergiodj@redhat.com>
452
453 PR gdb/16014
454 * dwarf2read.c (dw2_get_real_path): Remove unnecessary call to
455 sizeof.
456
457 2013-10-16 Sergio Durigan Junior <sergiodj@redhat.com>
458
459 PR gdb/16042
460 * target.c (target_disable_btrace): Fix invalid return value for
461 void function.
462 (target_teardown_btrace): Likewise.
463
464 2013-10-14 Yao Qi <yao@codesourcery.com>
465
466 * varobj.c (struct varobj): Move most of the fields to
467 varobj.h.
468 (struct varobj_dynamic): New struct.
469 (varobj_get_display_hint) [HAVE_PYTHON]: Adjust.
470 (varobj_has_more): Likewise.
471 (dynamic_varobj_has_child_method): Likewise.
472 (update_dynamic_varobj_children): Likewise.
473 (varobj_get_num_children): Likewise.
474 (varobj_list_children, varobj_pretty_printed_p): Likewise.
475 (install_new_value_visualizer): Likewise.
476 (install_new_value_visualizer, install_new_value): Likewise.
477 (varobj_update, new_variable, free_variable): Likewise.
478 (my_value_of_variable, value_get_print_value): Likewise.
479 (install_visualizer): Change the type of parameter 'var' to
480 'struct varobjd_dynamic *'. Callers update.
481 * varobj.h (struct varobj): Moved from varobj.c.
482 (struct varobj) <dynamic>: New field.
483
484 2013-10-13 Sandra Loosemore <sandra@codesourcery.com>
485
486 * nios2-tdep.c (nios2_reg_names): Use "sstatus" rather than "ba"
487 as the preferred name of r30.
488 * nios2-linux-tdep.c (reg_offsets): Likewise.
489 * features/nios2-cpu.xml: Likewise.
490 * features/nios2-linux.c: Regenerated.
491 * features/nios2.c: Regenerated.
492 * regformats/nios2-linux.dat: Regenerated.
493
494 2013-10-13 Jan Kratochvil <jan.kratochvil@redhat.com>
495
496 Canonicalize directories for EXEC_FILENAME.
497 * exec.c (exec_file_attach): Use gdb_realpath_keepfile for
498 exec_filename.
499 * utils.c (gdb_realpath_keepfile): New function.
500 * utils.h (gdb_realpath_keepfile): New declaration.
501
502 2013-10-11 Doug Evans <dje@google.com>
503
504 * Makefile.in (GDBFLAGS): New variable.
505 (run): New rule.
506
507 2013-10-11 Joel Brobecker <brobecker@adacore.com>
508
509 * NEWS: Add entry documenting the new "-catch-assert" and
510 "-catch-exception" GDB/MI commands.
511
512 2013-10-11 Joel Brobecker <brobecker@adacore.com>
513
514 * breakpoint.h (init_ada_exception_breakpoint): Add parameter
515 "enabled".
516 * breakpoint.c (init_ada_exception_breakpoint): Add parameter
517 "enabled". Set B->ENABLE_STATE accordingly.
518 * ada-lang.h (ada_exception_catchpoint_kind): Move here from
519 ada-lang.c.
520 (create_ada_exception_catchpoint): Add declaration.
521 * ada-lang.c (ada_exception_catchpoint_kind): Move to ada-lang.h.
522 (create_ada_exception_catchpoint): Make non-static. Add new
523 parameter "disabled". Use it in call to
524 init_ada_exception_breakpoint.
525 (catch_ada_exception_command): Add parameter "enabled" in call
526 to create_ada_exception_catchpoint.
527 (catch_assert_command): Likewise.
528
529 * mi/mi-cmds.h (mi_cmd_catch_assert, mi_cmd_catch_exception):
530 Add declarations.
531 * mi/mi-cmds.c (mi_cmds): Add the "catch-assert" and
532 "catch-exception" commands.
533 * mi/mi-cmd-catch.c: Add #include "ada-lang.h".
534 (mi_cmd_catch_assert, mi_cmd_catch_exception): New functions.
535
536 2013-10-11 Joel Brobecker <brobecker@adacore.com>
537
538 * ada-lang.c (enum ada_exception_catchpoint_kind): Renames
539 "enum exception_catchpoint_kind". Replace the "ex_" prefix
540 of all its enumerates with "ada_". Update the rest of this
541 file throughout.
542
543 2013-10-11 Joel Brobecker <brobecker@adacore.com>
544
545 * ada-lang.c (ada_decode_exception_location): Delete.
546 (create_ada_exception_catchpoint): Remove arguments "sal",
547 "addr_string" and "ops". Add argument "ex_kind" instead.
548 Adjust implementation accordingly, calling ada_exception_sal
549 to get the entities it no longer gets passed as arguments.
550 Document the function's arguments.
551 (catch_ada_exception_command): Use catch_ada_exception_command_split
552 instead of ada_decode_exception_location, and update call to
553 create_ada_exception_catchpoint.
554 (catch_ada_assert_command_split): Renames
555 ada_decode_assert_location. Remove parameters "addr_string" and
556 "ops", and now returns void. Adjust implementation accordingly.
557 Update the function documentation.
558 (catch_assert_command): Use catch_ada_assert_command_split
559 instead of ada_decode_assert_location. Update call to
560 create_ada_exception_catchpoint.
561
562 2013-10-11 Joel Brobecker <brobecker@adacore.com>
563
564 * utils.h (perror_warning_with_name): Add declaration.
565 * utils.c (perror_warning_with_name): New function.
566 * cli/cli-cmds.c (source_script_with_search): Add call to
567 perror_warning_with_name if from_tty is nul.
568
569 2013-10-11 Joel Brobecker <brobecker@adacore.com>
570
571 * utils.c (perror_string): New function, extracted out of
572 throw_perror_with_name.
573 (throw_perror_with_name): Rework to use perror_string.
574
575 2013-10-11 Yao Qi <yao@codesourcery.com>
576
577 * remote.c (discard_pending_stop_replies_in_queue): Update
578 declaration.
579 (struct stop_reply) <rs>: New field.
580 (remove_stop_reply_of_remote_state): New function.
581 (discard_pending_stop_replies_in_queue): Add parameter 'rs'.
582 Callers update. Pass remove_stop_reply_of_remote_state to
583 QUEUE_iterate.
584 (remote_parse_stop_reply): Initialize field 'rs'.
585
586 2013-10-10 Will Newton <will.newton@linaro.org>
587
588 * aarch64-linux-tdep.c (aarch64_linux_init_abi): Call
589 linux_init_abi.
590
591 2013-10-10 Joel Brobecker <brobecker@adacore.com>
592
593 * cli/cli-cmds.c (show_baud_rate): Moved to serial.c as
594 serial_baud_show_cmd.
595 (_initialize_cli_cmds): Delete the code creating the
596 "set/show remotebaud" commands.
597 * serial.c (baud_rate): Move here from top.c.
598 (serial_baud_show_cmd): Move here from cli/cli-cmds.c.
599 (_initialize_serial): Create "set/show serial baud" commands.
600 Add "set/show remotebaud" command aliases.
601 * top.c (baud_rate): Moved to serial.c.
602 * NEWS: Document the new "set/show serial baud" commands,
603 replacing "set/show remotebaud".
604
605 2013-10-09 Pedro Alves <palves@redhat.com>
606
607 * breakpoint.c (insert_bp_location): Use memory_error_message to
608 build the memory error string.
609 * c-lang.c: Include "gdbcore.h".
610 (c_get_string): Use memory_error to throw error.
611 (target_xfer_memory_error): Delete.
612 (memory_error_message): New, factored out from
613 target_xfer_memory_error.
614 (memory_error): Change parameter type to target_xfer_error.
615 Rewrite.
616 (read_memory): Use memory_error instead of
617 target_xfer_memory_error.
618 * gdbcore.h: Include "target.h".
619 (memory_error): Change parameter type to target_xfer_error.
620 (memory_error_message): Declare function.
621 * target.c (target_read_memory, target_read_stack)
622 (target_write_memory, target_write_raw_memory): Return
623 TARGET_XFER_E_IO on error. Adjust comments.
624 (get_target_memory): Pass TARGET_XFER_E_IO to memory_error,
625 instead of EIO.
626 * target.h (target_read, target_insert_breakpoint)
627 (target_remove_breakpoint): Adjust comments.
628 * valprint.c (partial_memory_read): Rename parameter, and adjust
629 comment.
630 (val_print_string): Use memory_error_message to build the memory
631 error string.
632
633 2013-10-09 Jan Kratochvil <jan.kratochvil@redhat.com>
634
635 * common/filestuff.c (gdb_fopen_cloexec): Remove initialization of
636 result variable. Rename variable fopen_e_ever_failed to
637 fopen_e_ever_failed_einval. Retry fopen only for errno EINVAL.
638
639 2013-10-09 Pedro Alves <palves@redhat.com>
640
641 * monitor.c (monitor_write_memory, monitor_write_memory_bytes)
642 (monitor_write_memory_longlongs, monitor_write_memory_block):
643 Constify 'myaddr' parameter.
644 (monitor_xfer_memory): Adjust interface as monitor_xfer_partial
645 helper.
646 (monitor_xfer_partial): New function.
647 (init_base_monitor_ops): Don't install a deprecated_xfer_memory
648 hook. Install a to_xfer_partial hook.
649
650 2013-10-09 Tom Tromey <tromey@redhat.com>
651
652 * dwarf2read.c (dwarf2_get_dwz_file): Update for type change in
653 bfd_get_alt_debug_link_info.
654
655 2013-10-09 Jan Kratochvil <jan.kratochvil@redhat.com>
656
657 New flag OBJF_NOT_FILENAME.
658 * auto-load.c (auto_load_objfile_script): Check also OBJF_NOT_FILENAME.
659 * jit.c (jit_object_close_impl): Use OBJF_NOT_FILENAME for
660 allocate_objfile.
661 (jit_bfd_try_read_symtab): Use OBJF_NOT_FILENAME for
662 symbol_file_add_from_bfd.
663 * jv-lang.c (get_dynamics_objfile): Use OBJF_NOT_FILENAME for
664 allocate_objfile.
665 * objfiles.c (allocate_objfile): Assert OBJF_NOT_FILENAME if NAME is
666 NULL.
667 * objfiles.h (OBJF_NOT_FILENAME): New.
668
669 2013-10-08 Tom Tromey <tromey@redhat.com>
670
671 * Makefile.in (SFILES): Add build-id.c.
672 (HFILES_NO_SRCDIR): Add build-id.h.
673 * build-id.c: New file, largely from elfread.c. Modified
674 most functions.
675 * build-id.h: New file.
676 * dwarf2read.c (dwarf2_get_dwz_file): Update for change to
677 bfd_get_alt_debug_link_info. Verify dwz file's build-id.
678 Search for dwz file using build-id.
679 * elfread.c (build_id_bfd_get, build_id_verify)
680 (build_id_to_debug_filename, find_separate_debug_file): Remove.
681
682 2013-10-08 Joel Brobecker <brobecker@adacore.com>
683
684 * ada-lang.c (compare_names_with_case): Renamed from
685 compare_names, adding a new parameter "casing" and its handling.
686 New function documentation.
687 (compare_names): New function, implemented using
688 compare_names_with_case.
689
690 2013-10-08 Joel Brobecker <brobecker@adacore.com>
691
692 * ada-lang.c (ada_exception_sal): Remove advance declaration.
693
694 2013-10-07 Tom Tromey <tromey@redhat.com>
695
696 * objfiles.c (free_objfile_per_bfd_storage): Delete the
697 demangled_names_hash.
698 (free_objfile): Don't delete the demangled_names_hash.
699 * objfiles.h (struct objfile_per_bfd_storage)
700 <demangled_names_hash>: New field.
701 (struct objfile) <demangled_names_hash>: Move to
702 objfile_per_bfd_storage.
703 * symfile.c (reread_symbols): Don't delete the
704 demangled_names_hash.
705 * symtab.c (create_demangled_names_hash): Update.
706 (symbol_set_names): Update.
707
708 2013-10-07 Tom Tromey <tromey@redhat.com>
709
710 * gdb_bfd.c (struct gdb_bfd_data) <relocation_computed,
711 needs_relocations>: New fields.
712 (gdb_bfd_requires_relocations): New function.
713 * gdb_bfd.h (gdb_bfd_requires_relocations): Declare.
714 * objfiles.c (get_objfile_bfd_data): Disallow sharing if
715 the BFD needs relocations applied.
716
717 2013-10-07 Pedro Alves <palves@redhat.com>
718
719 PR breakpoints/11568
720 * breakpoint.c (remove_threaded_breakpoints): Say "no longer in
721 the thread list" instead of "gone".
722
723 2013-10-06 Sergio Durigan Junior <sergiodj@redhat.com>
724
725 * NEWS: Mention new convenience variable $_exitsignal.
726 * corelow.c (core_open): Reset exit convenience variables. Set
727 $_exitsignal to the uncaught signal which generated the corefile.
728 * infrun.c (handle_inferior_event): Reset exit convenience
729 variables. Set $_exitsignal for TARGET_WAITKIND_SIGNALLED.
730 (clear_exit_convenience_vars): New function.
731 * inferior.h (clear_exit_convenience_vars): New prototype.
732
733 2013-10-06 Yao Qi <yao@codesourcery.com>
734
735 * varobj.h: Add comments to enum varobj_languages.
736
737 2013-10-04 Doug Evans <dje@google.com>
738
739 Add support for DWP file format version 2.
740 * NEWS: Mention support for DWP file format version 2.
741 * dwarf2read.c (dwarf2_section_info): Convert asection field to a
742 union of asection, containing_section. New fields virtual_offset
743 and is_virtual. Change type of readin filed from int to char.
744 (dwo_sections, dwo_file): Tweak comments.
745 (dwp_v2_section_ids): New enum.
746 (dwp_sections): New fields abbrev, info, line, loc, macinfo, macro,
747 str_offsets, types.
748 (virtual_v1_dwo_sections): Renamed from virtual_dwo_sections.
749 All uses updated.
750 (virtual_v2_dwo_sections): New struct.
751 (dwp_hash_table): New fields version, nr_columns. Change type of
752 section_pool field to a union.
753 (dwp_file): New field version.
754 (dwarf2_has_info): Check for virtual sections.
755 (get_containing_section): New function.
756 (get_section_bfd_owner, get_section_bfd_section): Call it.
757 (dwarf2_locate_sections): Update.
758 (dwarf2_section_empty_p): Update.
759 (dwarf2_read_section): Handle virtual sections.
760 (locate_dwz_sections): Update.
761 (create_dwp_hash_table): Document and handle V2 format.
762 (locate_v1_virtual_dwo_sections): Renamed from
763 locate_virtual_dwo_sections and update. All callers updated.
764 (create_dwo_unit_in_dwp_v1): Renamed from create_dwo_in_dwp.
765 Delete arg htab. Rename arg section_index to unit_index.
766 All callers updated.
767 (MAX_NR_V1_DWO_SECTIONS): Renamed from MAX_NR_DWO_SECTIONS.
768 All uses updated.
769 (create_dwp_v2_section, create_dwo_unit_in_dwp_v2): New functions.
770 (lookup_dwo_unit_in_dwp): Add V2 support.
771 (dwarf2_locate_dwo_sections): Update.
772 (dwarf2_locate_common_dwp_sections): Renamed from
773 dwarf2_locate_dwp_sections and update. All callers updated.
774 (dwarf2_locate_v2_dwp_sections): New function.
775 (open_and_init_dwp_file): Add V2 support.
776 (read_str_index): New locals str_section, str_offsets_section.
777
778 2013-10-04 Pedro Alves <palves@redhat.com>
779
780 * common/ptid.c (null_ptid, minus_one_ptid, ptid_build)
781 (pid_to_ptid, ptid_get_pid, ptid_get_lwp, ptid_get_tid)
782 (ptid_equal, ptid_is_pid, ptid_lwp_p, ptid_tid_p): Replace
783 describing comments with references to ptid.h.
784 * common/ptid.h: Remove intro description of constructors,
785 accessors and predicates.
786 (struct ptid): Reformat.
787 (minus_one_ptid, ptid_build, pid_to_ptid, ptid_get_pid)
788 (ptid_get_lwp, ptid_get_tid, ptid_equal, ptid_is_pid): Change
789 describing comments.
790
791 2013-10-04 Joel Brobecker <brobecker@adacore.com>
792
793 * aix-thread.c (sync_threadlists): Add missing ')' in call
794 to ptid_build.
795
796 2013-10-04 Joel Brobecker <brobecker@adacore.com>
797
798 * procfs.c (procfs_init_inferior): Fix typo causing the build
799 to fail.
800
801 2013-10-04 Joel Brobecker <brobecker@adacore.com>
802
803 * aix-thread.c (ptrace32): Remove cast to addr_ptr.
804
805 2013-10-04 Joel Brobecker <brobecker@adacore.com>
806
807 * mi/mi-main.c (run_one_inferior): Add function description.
808 Make ARG a pointer to an integer whose value determines whether
809 we should "run" or "start" the program.
810 (mi_cmd_exec_run): Add handling of the "--start" option.
811 Reject all other command-line options.
812 * NEWS: Add entry for "-exec-run"'s new "--start" option.
813
814 2013-10-04 Yao Qi <yao@codesourcery.com>
815
816 * remote-notif.h (REMOTE_NOTIF_ID): New enum.
817 (struct notif_client) <pending_event>: Moved
818 to struct remote_notif_state.
819 <id>: New field.
820 (struct remote_notif_state) <pending_event>: New field.
821 (notif_event_xfree): Declare.
822 * remote-notif.c (handle_notification): Adjust.
823 (notif_event_xfree): New function.
824 (do_notif_event_xfree): Call notif_event_xfree.
825 (remote_notif_state_xfree): Call notif_event_xfree to free
826 each element in field pending_event.
827 * remote.c (discard_pending_stop_replies): Remove declaration.
828 (discard_pending_stop_replies_in_queue): Declare.
829 (remote_close): Call discard_pending_stop_replies_in_queue
830 instead of discard_pending_stop_replies.
831 (remote_start_remote): Adjust.
832 (stop_reply_xfree): Call notif_event_xfree.
833 (notif_client_stop): Adjust initialization.
834 (remote_notif_remove_all): Rename it to ...
835 (remove_stop_reply_for_inferior): ... this. Update comments.
836 Don't check INF is NULL.
837 (discard_pending_stop_replies): Return early if notif_state is
838 NULL. Adjust. Don't check INF is NULL.
839 (remote_notif_get_pending_events): Adjust.
840 (discard_pending_stop_replies_in_queue): New function.
841 (remote_wait_ns): Likewise.
842
843 2013-10-04 Yao Qi <yao@codesourcery.com>
844
845 * remote-notif.c (DECLARE_QUEUE_P): Remove.
846 (notif_queue): Remove.
847 (remote_notif_process): Add one parameter 'notif_queue'.
848 Update comments. Callers update.
849 (remote_async_get_pending_events_token): Remove.
850 (remote_notif_register_async_event_handler): Remove.
851 (remote_notif_unregister_async_event_handler): Remove.
852 (handle_notification): Add parameter 'notif_queue'. Update
853 comments. Callers update.
854 (notif_xfree): Remove.
855 (remote_notif_state_allocate): New function.
856 (remote_notif_state_xfree): New function.
857 (_initialize_notif): Remove code to allocate queue.
858 * remote-notif.h (DECLARE_QUEUE_P): Moved from remote-notif.c.
859 (struct remote_notif_state): New.
860 (handle_notification): Update declaration.
861 (remote_notif_process): Likewise.
862 (remote_notif_register_async_event_handler): Remove.
863 (remote_notif_unregister_async_event_handler): Remove.
864 (remote_notif_state_allocate): Declare.
865 (remote_notif_state_xfree): Declare.
866 * remote.c (struct remote_state) <notif_state>: New field.
867 (remote_close): Don't call
868 remote_notif_unregister_async_event_handler. Call
869 remote_notif_state_xfree.
870 (remote_open_1): Don't call
871 remote_notif_register_async_event_handler. Call
872 remote_notif_state_allocate.
873
874 2013-10-04 Yao Qi <yao@codesourcery.com>
875
876 * varobj.c (create_child_with_value): Remove 'const' from the
877 type of parameter 'name'.
878 (varobj_add_child): Likewise.
879 (install_dynamic_child): Remove 'const' from the type of
880 parameter 'name'.
881 (varobj_add_child): Likewise.
882 (create_child_with_value): Likewise. Update comments. Don't
883 duplicate 'name'.
884 (update_dynamic_varobj_children): Duplicate 'name'
885 and pass it to install_dynamic_child.
886
887 2013-10-03 Phil Muldoon <pmuldoon@redhat.com>
888
889 * python/py-value.c (convert_value_from_python): Move PyInt_Check
890 conversion logic to occur after PyLong_Check. Comment on order
891 change significance.
892 * python/py-arch.c (archpy_disassemble): Comment on order of
893 conversion for integers and longs.
894
895 2013-10-03 Pedro Alves <palves@redhat.com>
896
897 * common/linux-ptrace.c (linux_check_ptrace_features): Factor out
898 the PTRACE_O_TRACESYSGOOD and PTRACE_O_TRACEFORK to separate
899 functions. Always test for PTRACE_O_TRACESYSGOOD even if
900 PTRACE_O_TRACEFORK is not supported.
901 (linux_test_for_tracesysgood): New function.
902 (linux_test_for_tracefork): New function, factored out from
903 linux_check_ptrace_features, and also don't kill child_pid here.
904
905 2013-10-03 Tristan Gingold <gingold@adacore.com>
906
907 * i386-darwin-nat.c (i386_darwin_dr_set): Fix argument type.
908 Remove verbose error reporting. Use detected state to
909 thread_set_state call.
910 (i386_darwin_dr_get): Fix return type. Remove verbose error
911 report.
912 Remove trailing spaces.
913
914 2013-10-02 Pedro Alves <palves@redhat.com>
915
916 * cp-valprint.c (cp_print_value_fields): Adjust calls to
917 val_print_optimized_out.
918 * jv-valprint.c (java_print_value_fields): Likewise.
919 * p-valprint.c (pascal_object_print_value_fields): Likewise.
920 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full)
921 <DWARF_VALUE_REGISTER>: If the register was not saved, return a
922 new optimized out value.
923 * findvar.c (address_from_register): Likewise.
924 * frame.c (put_frame_register): Tweak error string to say the
925 register was not saved, rather than optimized out.
926 * infcmd.c (default_print_one_register_info): Adjust call to
927 val_print_optimized_out. Use value_of_register instead of
928 get_frame_register_value.
929 * mi/mi-main.c (output_register): Use value_of_register instead of
930 get_frame_register_value.
931 * valprint.c (valprint_check_validity): Likewise.
932 (val_print_optimized_out): New value parameter. If the value is
933 lval_register, print <not saved> instead.
934 (value_check_printable, val_print_scalar_formatted): Adjust calls
935 to val_print_optimized_out.
936 * valprint.h (val_print_optimized_out): New value parameter.
937 * value.c (struct value) <optimized_out>: Extend comment.
938 (error_value_optimized_out): New function.
939 (require_not_optimized_out): Use it. Use a different string for
940 lval_register values.
941 * value.h (error_value_optimized_out): New declaration.
942 * NEWS: Mention <not saved>.
943
944 2013-10-02 Joel Brobecker <brobecker@adacore.com>
945
946 * symtab.c (compare_search_syms): Use FILENAME_CMP instead of
947 strcmp to compare two symtab filenames.
948
949 2013-10-02 Joel Brobecker <brobecker@adacore.com>
950
951 * symtab.c (search_symbols_equal): Delete.
952 (sort_search_symbols_remove_dups): Replace call to
953 search_symbols_equal by call to compare_search_syms,
954 adjusting as necessary.
955
956 2013-10-02 Phil Muldoon <pmuldoon@redhat.com>
957
958 PR python/15579
959
960 * python/python.c: Document gdb.execute command in Python help.
961
962 2013-10-02 Phil Muldoon <pmuldoon@redhat.com>
963
964 * python/py-frame.c (frame_info_to_frame_object): Use
965 gdbpy_convert_exception. Clean up Python object on failure.
966
967 2013-10-02 Phil Muldoon <pmuldoon@redhat.com>
968
969 * python/lib/gdb/command/frame_filters.py
970 (InfoFrameFilter.list_frame_filters): Retrieve exception manually.
971 (ShowFrameFilterPriority.invoke): Ditto.
972
973 2013-10-01 Keith Seitz <keiths@redhat.com>
974
975 * linespec.c (struct ls_parser): Make 'saved_arg' const.
976 (parse_linespec): Make 'argptr' const.
977 Remove temporary cast of 'argptr' to const char **.
978 (decode_line_full): Pass const pointer to parse_linespec.
979 (decode_line_1): Likewise.
980 (decode_objc): Make local variable 'new_argptr' const.
981 (find_function_symbols): Remove temporary cast to char *
982 to find_imps.
983 * objc-lang.c (find_imps): Make argument 'method' const.
984 Return const.
985 * objc-lang.h (find_imps): Likewise.
986
987 2013-10-01 Keith Seitz <keiths@redhat.com>
988
989 * completer.c (skip_quoted_chars): Make all arguments const.
990 Return const.
991 (skip_quoted): Likewise.
992 * completer.h (skip_quoted_chars): Likewise.
993 (skip_quoted): Likewise.
994 * defs.h (skip_quoted): Remove duplicate declaration.
995 * jv-exp.y: Include completer.h.
996 (yylex): Remove unneccessary cast to char * fro skip_quoted.
997 * p-exp.y: Include completer.h.
998
999 2013-10-01 Keith Seitz <keiths@redhat.com>
1000
1001 * c-exp.y (parse_number): Make first argument const.
1002 Make a copy of the input to manipulate.
1003 (c_parse_escape): Make first argument const.
1004 Make local variable 'tokptr' const.
1005 (parse_string_or_char): Make first two arguments const.
1006 (macro_original_text): Make const.
1007 (lex_one_token): Make local variable 'tokstart' const.
1008 Likewise for local variables named 'p'.
1009 Cast away const for struct stoken (temporary).
1010 * c-lang.h (c_parse_escpae): Make first argument const.
1011 * cli/cli-cmds.c (echo_command): Make local variable 'p'
1012 const.
1013 * cli/cli-setshow.c (do_set_command): Likewise for 'p' in
1014 var_string case.
1015 * f-exp.y (parse_number): Make first argument const.
1016 (match_string_literal): Make local variable 'tokstart'
1017 const.
1018 (yylex): Make local variable 'p' const.
1019 Cast away const for struct stoken (temporary).
1020 * go-exp.y (parse_number): Make first argument const.
1021 (parse_string_or_char): Likewise.
1022 Make local variable 'tokstart' const.
1023 (lex_one_token): Likewise for numerous locals called 'p'.
1024 Cast away const for struct stoken (temporary).
1025 * jv-exp.y (parse_number): Make first argument const.
1026 Make local variables 'tokstart' and 'tokptr' const.
1027 Cast away const for call to skip_quoted (temporary).
1028 (yylex): Make local variable 'p' const.
1029 Cast away const for struct stoken (temporary).
1030 * m2-exp.y (parse_number): Make local variable 'p' const.
1031 (yylex): Likewise for 'tokstart'.
1032 Cast away const for struct stoken (temporary).
1033 Make local variable 'p' const.
1034 * macroexp.c (get_character_constant): Pass a const string
1035 to c_parse_escape.
1036 (get_string_literal): Likewise.
1037 (macro_expand_next): Make first argument const.
1038 Cast away const for init_shared_buffer.
1039 * macroexp.h (macro_expand_next): Make first argument const.
1040 * p-exp.y (yylex): Make a local copy of 'lexptr'.
1041 Pass a const string to c_parse_escape.
1042 Make local variables 'p' and 'namestart' const.
1043 * parse.c (lexptr): Make const.
1044 (prev_lexptr): Likewise.
1045 (find_template_name_end): Return const.
1046 Make argument const, too.
1047 (parse_exp_in_context): Make first argument const.
1048 Remove the entire const_hack.
1049 (parse_exp_in_context_1): Make first argument const.
1050 * parser-defs.h (find_template_name_end): Return const.
1051 Make argument const, too.
1052 (lexptr): Make const.
1053 (prev_lexptr): Likewise.
1054 * utils.c (parse_escape): Make second argument const.
1055 * utils.h (parse_escape): Likewise.
1056
1057 2013-10-01 Keith Seitz <keiths@redhat.com>
1058
1059 * ada-exp.y (write_object_renaming): Update: struct stoken.ptr
1060 is now const.
1061 (block_lookup): Make 'raw_name' and 'name' const.
1062 * ada-lex.l (processString): Update for struct stoken.ptr.
1063 * c-exp.y (qualified_name : TYPENAME COLONCOLON '~' name): Likewise.
1064 (operator_stoken): Likewise.
1065 (lex_one_token): Remove temporary cast to char * for
1066 'yylval.sval.ptr'.
1067 * f-exp.y (yylex): Likewise.
1068 * gdb-types.c (lookup_struct_elt_type): Make argument 'name' const.
1069 * gdbtypes.h (lookup_struct_elt_type): Likewisee.
1070 * go-exp.y (lex_one_token): Remove temporary cast to char * for
1071 'yylval.sval.ptr'.
1072 * jv-exp.y (QualifiedName): Update for struct stoken.ptr.
1073 (yylex): Remove temporary cast to char * for 'yylval.sval.ptr'.
1074 * linespec.c (struct ls_parser): Make 'stream' const.
1075 (find_parameter_list_end): Make argument 'input' and local
1076 variable 'p' const.
1077 (linespec_lexer_lex_string): Make local variables 'start' and
1078 'p' const.
1079 Use skip_spaces_const instead of skip_spaces.
1080 (linespec_lexer_peek_token): Make local variable 'saved_stream'
1081 const.
1082 (parse_linespec): Temporarily cast 'argptr' to const for
1083 'parser->lexer.stream'.
1084 * m2-exp.y (yylex): Remove temporary cast to char * for
1085 'yylval.sval.ptr'.
1086 * objc-lang.c (add_msglist): Make local variable 'p' const.
1087 * p-exp.y (exp : exp '['): Update for struct stoken.ptr.
1088 (exp : STRING): Make 'sp' const.
1089 (parse_number): Make argument 'p' const.
1090 * parser-defs.h (struct stoken): Make 'ptr' const.
1091
1092 2013-10-01 Doug Evans <dje@google.com>
1093
1094 * cli/cli-decode.c: Remove unnecessary inclusion of tui/tui.h.
1095
1096 2013-10-01 Yao Qi <yao@codesourcery.com>
1097
1098 * varobj.c (c_value_of_root): Remove declaration.
1099 (cplus_value_of_root, java_value_of_root): Likewise.
1100 (ada_value_of_root): Likewise.
1101 (struct language_specific) <value_of_root>: Remove.
1102 (languages): Update initialization.
1103 (check_scope): Move earlier.
1104 (c_value_of_root): Move earlier and rename to ...
1105 (value_of_root_1): ... this.
1106 (value_of_root): Caller update.
1107 (cplus_value_of_root, java_value_of_root): Remove.
1108 (ada_value_of_root): Remove.
1109
1110 2013-10-01 Yao Qi <yao@codesourcery.com>
1111
1112 * varobj.c (varobj_format_string): Remove "unknown".
1113 (languages): Remove the first element.
1114 * varobj.h (enum varobj_languages): Remove vlang_c.
1115
1116 2013-10-01 Yao Qi <yao@codesourcery.com>
1117
1118 * varobj.c (struct language_specific) <language>: Remove.
1119 (languages): Update the initialization.
1120
1121 2013-10-01 Yao Qi <yao@codesourcery.com>
1122
1123 * arm-wince-tdep.c: Remove inclusion of "solib.h" and
1124 "solib-target.h". Include "windows-tdep.h".
1125 (arm_wince_init_abi): Call windows_init_abi. Remove call to
1126 set_solib_ops and set_gdbarch_has_dos_based_file_system.
1127 * configure.tgt (arm*-wince-pe | arm*-*-mingw32ce*): Append
1128 windows-tdep.o to gdb_target_obs.
1129
1130 2013-10-01 Yao Qi <yao@codesourcery.com>
1131
1132 * amd64-windows-tdep.c: Remove inclusion of "solib.h" and
1133 "solib-target.h".
1134 (amd64_windows_init_abi): Don't call set_solib_ops and
1135 set_gdbarch_iterate_over_objfiles_in_search_order. Call
1136 windows_init_abi instead.
1137 * i386-cygwin-tdep.c: Remove inclusion of "solib.h" and
1138 "solib-target.h".
1139 (i386_cygwin_init_abi): Don't call set_solib_ops,
1140 set_gdbarch_has_dos_based_file_system and
1141 set_gdbarch_iterate_over_objfiles_in_search_order. Call
1142 windows_init_abi instead.
1143 * windows-tdep.c: Include "solib.h" and "solib-target.h".
1144 (windows_init_abi): New function.
1145 (windows_iterate_over_objfiles_in_search_order): Make it
1146 static.
1147 * windows-tdep.h (windows_init_abi): Declare.
1148 (windows_iterate_over_objfiles_in_search_order): Remove
1149 declaration.
1150
1151 2013-10-01 Jerome Guitton <guitton@adacore.com>
1152
1153 Checked in by Joel Brobecker <brobecker@adacore.com>
1154 * system-gdbinit/elinos.py (get_elinos_environment): Return an
1155 incomplete dictionnary instead of None in case of missing
1156 environment variables.
1157 (elinos_init): in case of an incomplete environment, best
1158 effort to load system libraries instead of abort.
1159
1160 2013-10-01 Joel Brobecker <brobecker@adacore.com>
1161
1162 * ada-lang.c (ada_has_this_exception_support): Ignore
1163 mst_solib_trampoline minimal symbols.
1164
1165 2013-09-30 Tristan Gingold <gingold@adacore.com>
1166
1167 * i386-darwin-nat.c (darwin_complete_target): Install methods for
1168 hardware watchpoint.
1169 (i386_darwin_dr_set): Support 32 and 64 bit states.
1170 (i386_darwin_dr_get): Likewise.
1171 (i386_darwin_dr_set_control): Make static.
1172 (i386_darwin_dr_set_addr, i386_darwin_dr_get_addr)
1173 (i386_darwin_dr_get_status, i386_darwin_dr_get_control): Likewise.
1174
1175 2013-09-30 Luis Machado <lgustavo@codesourcery.com>
1176
1177 * aarch64-linux-nat.c: Replace PIDGET with ptid_get_pid.
1178 Replace TIDGET with ptid_get_lwp.
1179 Replace GET_LWP with ptid_get_lwp.
1180 * aix-thread.c (BUILD_THREAD, BUILD_LWP): Remove.
1181 Replace BUILD_THREAD with ptid_build.
1182 Replace BUILD_LWP with ptid_build.
1183 Replace PIDGET with ptid_get_pid.
1184 Replace TIDGET with ptid_get_lwp.
1185 * alphabsd-nat.c: Replace PIDGET with ptid_get_pid.
1186 * amd64-linux-nat.c: Replace PIDGET with ptid_get_pid.
1187 Replace TIDGET with ptid_get_lwp.
1188 * amd64bsd-nat.c: Replace PIDGET with ptid_get_pid.
1189 * arm-linux-nat.c: Replace PIDGET with ptid_get_pid.
1190 Replace TIDGET with ptid_get_lwp.
1191 Replace GET_LWP with ptid_get_lwp.
1192 * armnbsd-nat.c: Replace PIDGET with ptid_get_pid.
1193 * auxv.c: Likewise.
1194 * breakpoint.c: Likewise.
1195 * common/ptid.c (ptid_is_pid): Condense check for
1196 null_ptid and minus_one_ptid.
1197 (ptid_lwp_p): New function.
1198 (ptid_tid_p): New function.
1199 * common/ptid.h: Update comments for accessors.
1200 (ptid_lwp_p): New prototype.
1201 (ptid_tid_p): New prototype.
1202 * defs.h (PIDGET, TIDGET, MERGEPID): Do not define.
1203 * gcore.c: Replace PIDGET with ptid_get_pid.
1204 * gdbthread.h: Likewise.
1205 * gnu-nat.c: Likewise.
1206 * hppa-linux-nat.c: Replace PIDGET with ptid_get_pid.
1207 Replace TIDGET with ptid_get_lwp.
1208 * hppabsd-nat.c: Replace PIDGET with ptid_get_pid.
1209 * hppanbsd-nat.c: Likewise.
1210 * i386-linux-nat.c: Replace PIDGET with ptid_get_pid.
1211 Replace TIDGET with ptid_get_lwp.
1212 * i386bsd-nat.c: Replace PIDGET with ptid_get_pid.
1213 * ia64-linux-nat.c: Replace PIDGET with ptid_get_pid.
1214 * infcmd.c: Likewise.
1215 * inferior.h: Likewise.
1216 * inflow.c: Likewise.
1217 * infrun.c: Likewise.
1218 * linux-fork.c: Likewise.
1219 * linux-nat.c: Replace PIDGET with ptid_get_pid.
1220 Replace GET_PID with ptid_get_pid.
1221 Replace is_lwp with ptid_lwp_p.
1222 Replace GET_LWP with ptid_get_lwp.
1223 Replace BUILD_LWP with ptid_build.
1224
1225 2013-09-28 Mike Frysinger <vapier@gentoo.org>
1226
1227 * common/linux-btrace.c: Move sys/syscall.h out of the
1228 HAVE_LINUX_PERF_EVENT_H check and wrap it in HAVE_SYS_SYSCALL_H.
1229 Also check for SYS_perf_event_open before attempting to buid.
1230
1231 2013-09-27 Doug Evans <dje@google.com>
1232
1233 * dwarf2read.c (dwarf2_section_info): Add comment.
1234 (dwp_file): Split loaded_cutus into loaded_cus, loaded_tus.
1235 All uses updated.
1236 (dwarf2_section_empty_p): Rename arg from "info" to "section".
1237 (dwarf2_read_section): Delete unused local "header". Add section
1238 name to error message.
1239 (create_dwo_in_dwp): Tweak comment.
1240 (MAX_NR_DWO_SECTIONS): Combine count of .debug_macro + .debug_macinfo.
1241
1242 * dwarf2read.c (die_reader_specs): Tweak comment.
1243 (get_section_bfd_owner, get_section_bfd_section): New functions.
1244 (get_section_name, get_section_file_name): New functions.
1245 (get_section_id, get_section_flags): New functions.
1246 (*): Use new functions to access section fields.
1247
1248 * dwarf2read.c (struct dwo_file): Add/tweak comments.
1249 (lookup_dwo_unit_in_dwp): Renamed from lookup_dwo_in_dwp. Remove
1250 arg "htab". All callers updated.
1251 (create_debug_types_hash_table): Remove redundant copy of
1252 abbrev_section.
1253 (create_dwo_in_dwp): Tweak comments.
1254 (read_str_index): Tweak comment. Record dwarf form name in static
1255 local.
1256
1257 2013-09-27 Pedro Alves <palves@redhat.com>
1258
1259 * remote.h (REMOTE_SYSROOT_PREFIX): New define.
1260 (remote_filename_p): Add comment.
1261 * remote.c (remote_filename_p): Adjust to use
1262 REMOTE_SYSROOT_PREFIX.
1263 * solib.c (solib_find): When deciding whether we need to add a
1264 directory separator, check whether the sysroot is "remote:"
1265 instead of checking whether the patch has a drive spec. Add
1266 comments.
1267
1268 2013-09-27 Pedro Alves <palves@redhat.com>
1269
1270 * remote.c (struct stop_reply) <solibs_changed, replay_event>:
1271 Delete fields.
1272 (remote_parse_stop_reply): Adjust, setting event->ws.kind
1273 directly.
1274
1275 2013-09-26 Jan Kratochvil <jan.kratochvil@redhat.com>
1276
1277 Fix set debug frame output.
1278 * frame.c (fprint_frame_type): Add TAILCALL_FRAME entry. Move
1279 SENTINEL_FRAME entry lower to match enum frame_type order.
1280
1281 2013-09-26 Pierre Muller <muller@sourceware.org>
1282
1283 Replace constant values 8 to 15 by AMD64_R8_REGNUM to
1284 AMD64_R15_REGNUM when a register index is expected.
1285 * amd64-windows-tdep.c (amd64_windows_dummy_call_integer_regs):
1286 Substitute in array.
1287 * amd64-tdep.c (amd64_dwarf_regmap): Ditto.
1288 (amd64_push_arguments): Substitute in integer_regnum array.
1289
1290 2013-09-25 Doug Evans <dje@google.com>
1291
1292 * objfiles.c (allocate_objfile): Move comment to better place.
1293
1294 New option "set debug symfile on".
1295 * NEWS: Mention "set debug symfile".
1296 * Makefile.in (SFILES): Add symfile-debug.c.
1297 (COMMON_OBS): Add symfile-debug.o.
1298 * elfread.c (elf_symfile_read): Use objfile_set_sym_fns to set the
1299 objfile's symbol functions.
1300 * objfiles.h (objfile_set_sym_fns): Declare.
1301 * symfile-debug.c: New file.
1302 * symfile.c (syms_from_objfile_1): Use objfile_set_sym_fns to set the
1303 objfile's symbol functions.
1304 (reread_symbols): Ditto.
1305
1306 * symfile.h (struct sym_fns): Delete member "sym_flavour".
1307 All uses updated.
1308 (add_symtab_fns): Update prototype.
1309 * symfile.c (sym_fns_ptr): Delete. Replace with ...
1310 (registered_sym_fns): ... this.
1311 (symtab_fns): Update.
1312 (add_symtab_fns): New arg "flavour". All callers updated.
1313 (find_sym_fns): Rewrite to use new sym_fns registry.
1314
1315 * symfile.h (struct sym_fns): Add "objfile" argument to
1316 sym_read_linetable. All uses updated.
1317
1318 * symtab.c (domain_name, search_domain_name): New functions.
1319 * symtab.h (domain_name, search_domain_name): Declare.
1320
1321 * symfile.h (struct quick_symbol_functions): Reorg arg list of
1322 map_matching_symbols so objfile is first. All uses updated.
1323 * dwarf2read.c (dw2_map_matching_symbols): Update signature.
1324 * psymtab.c (map_matching_symbols_psymtab): Update signature.
1325
1326 2013-09-25 Andreas Arnez <arnez@linux.vnet.ibm.com>
1327
1328 PR shlibs/8882
1329 * solib-svr4.c (svr4_read_so_list): Skip the vDSO when reading
1330 link map entries.
1331
1332 2013-09-24 Doug Evans <dje@google.com>
1333
1334 * objfiles.c (free_objfile): Move comment.
1335
1336 2013-09-24 Joel Brobecker <brobecker@adacore.com>
1337
1338 * ada-exp.y (string_to_operator): Delete.
1339 (dummy_string_to_ada_operator): Delete.
1340
1341 2013-09-24 Joel Brobecker <brobecker@adacore.com>
1342
1343 Revert:
1344 * i386-tdep.h (enum amd64_reg_class): New, moved here from
1345 amd64-tdep.c.
1346 (struct gdbarch_tdep): Add fields call_dummy_num_integer_regs,
1347 call_dummy_integer_regs, and classify.
1348 * amd64-tdep.h (amd64_classify): Add declaration.
1349 * amd64-tdep.c (amd64_dummy_call_integer_regs): New static constant.
1350 (amd64_reg_class): Delete, moved to i386-tdep.h.
1351 (amd64_classify): Make non-static. Move declaration to amd64-tdep.h.
1352 Replace call to amd64_classify by call to tdep->classify.
1353 (amd64_push_arguments): Get the list of registers to use for
1354 passing integer parameters from the gdbarch tdep structure,
1355 rather than using a hardcoded one. Replace calls to amd64_classify
1356 by calls to tdep->classify.
1357 (amd64_push_dummy_call): Get the register number used for
1358 the "hidden" argument from tdep->call_dummy_integer_regs.
1359 (amd64_init_abi): Initialize tdep->call_dummy_num_integer_regs
1360 and tdep->call_dummy_integer_regs. Set tdep->classify.
1361
1362 2013-09-24 Joel Brobecker <brobecker@adacore.com>
1363
1364 Revert:
1365 * i386-tdep.h (gdbarch_tdep): Add field memory_args_by_pointer.
1366 * amd64-tdep.c (amd64_push_arguments): Add handling of architectures
1367 where tdep->memory_args_by_pointer is non-zero.
1368
1369 2013-09-24 Joel Brobecker <brobecker@adacore.com>
1370
1371 Revert:
1372 * i386-tdep.h (struct gdbarch_tdep): Add new field
1373 integer_param_regs_saved_in_caller_frame.
1374 * amd64-tdep.c (amd64_push_dummy_call): Allocate some memory on
1375 stack if tdep->integer_param_regs_saved_in_caller_frame is set.
1376
1377 2013-09-24 Joel Brobecker <brobecker@adacore.com>
1378
1379 * amd64-windows-tdep.c: #include "value.h"
1380 (amd64_windows_classify): Delete.
1381 (amd64_windows_passed_by_integer_register)
1382 (amd64_windows_passed_by_xmm_register)
1383 (amd64_windows_passed_by_pointer)
1384 (amd64_windows_adjust_args_passed_by_pointer)
1385 (amd64_windows_store_arg_in_reg, amd64_windows_push_arguments)
1386 (amd64_windows_push_dummy_call): New functions.
1387 (amd64_windows_init_abi): Remove setting of
1388 tdep->call_dummy_num_integer_regs, tdep->call_dummy_integer_regs,
1389 tdep->classify, tdep->memory_args_by_pointer and
1390 tdep->integer_param_regs_saved_in_caller_frame.
1391 Add call to set_gdbarch_push_dummy_call.
1392
1393 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1394
1395 * dwarf2read.c (open_and_init_dwp_file): Try open_dwp_file also with
1396 objfile->original_name.
1397
1398 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1399
1400 Pass down original filename for objfile.
1401 * coffread.c (coff_symfile_read): Update symbol_file_add_separate call.
1402 * elfread.c (elf_symfile_read): Likewise.
1403 * jit.c (jit_object_close_impl): Update allocate_objfile call, no
1404 longer set ORIGINAL_NAME.
1405 (jit_bfd_try_read_symtab): Update symbol_file_add_from_bfd call.
1406 * jv-lang.c (get_dynamics_objfile): Update allocate_objfile call.
1407 * machoread.c (macho_add_oso_symfile): Add parameter name. Update
1408 symbol_file_add_from_bfd call.
1409 (macho_symfile_read_all_oso): Update two macho_add_oso_symfile calls.
1410 (macho_check_dsym): Add parameter filenamep. Change function comment.
1411 Set *filenamep.
1412 (macho_symfile_read): New variable dsym_filename. Update
1413 macho_check_dsym call. Use it for symbol_file_add_separate.
1414 * objfiles.c (allocate_objfile): Add parameter name. New comment for
1415 it. Use it for objfile->original_name.
1416 (objfile_name): Return OBFD's filename, if available.
1417 * objfiles.h (allocate_objfile): Add new parameter name.
1418 * solib.c (solib_read_symbols): Update symbol_file_add_from_bfd call.
1419 * symfile-mem.c (symbol_file_add_from_memory): Update
1420 symbol_file_add_from_bfd call.
1421 * symfile.c (read_symbols): Update symbol_file_add_separate call, new
1422 comment for it.
1423 (symbol_file_add_with_addrs): New parameter name, add function comment
1424 for it. Remove variable name. Update allocate_objfile call.
1425 (symbol_file_add_separate): New parameter name, add function comment
1426 for it. Update symbol_file_add_with_addrs call.
1427 (symbol_file_add_from_bfd): New parameter name. Update
1428 symbol_file_add_with_addrs call.
1429 (symbol_file_add): Update symbol_file_add_from_bfd call.
1430 (reread_symbols): New variable original_name. Save
1431 objfile->original_name by it.
1432 * symfile.h (symbol_file_add_from_bfd, symbol_file_add_separate): Add
1433 second parameter.
1434
1435 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1436
1437 Code cleanup: Add objfile_name accessor function.
1438 * ada-lang.c (is_known_support_routine): Use objfile_name.
1439 * auto-load.c (source_gdb_script_for_objfile)
1440 (auto_load_objfile_script): Likewise.
1441 * coffread.c (coff_symtab_read, read_one_sym): Likewise.
1442 * dbxread.c (dbx_symfile_read): Likewise.
1443 * dwarf2-frame.c (dwarf2_build_frame_info): Likewise.
1444 * dwarf2loc.c (locexpr_describe_location_piece): Likewise.
1445 * dwarf2read.c (dwarf2_get_dwz_file, dwarf2_read_index)
1446 (dw2_symtab_iter_next, dw2_expand_symtabs_matching)
1447 (lookup_dwp_signatured_type, lookup_dwo_unit)
1448 (dwarf2_build_psymtabs_hard, scan_partial_symbols, process_queue)
1449 (fixup_go_packaging, process_imported_unit_die, dwarf2_physname)
1450 (read_import_statement, create_dwo_cu, open_and_init_dwp_file)
1451 (lookup_dwo_cutu, read_call_site_scope, dwarf2_ranges_read)
1452 (dwarf2_record_block_ranges, read_common_block, read_typedef)
1453 (read_subrange_type, load_partial_dies, read_partial_die)
1454 (read_addr_index_1, read_str_index, dwarf_decode_lines_1)
1455 (die_containing_type, build_error_marker_type, lookup_die_type)
1456 (follow_die_ref_or_sig, follow_die_ref, dwarf2_fetch_die_loc_sect_off)
1457 (dwarf2_fetch_constant_bytes, follow_die_sig, get_signatured_type)
1458 (get_DW_AT_signature_type, write_psymtabs_to_index)
1459 (save_gdb_index_command): Likewise.
1460 * elfread.c (find_separate_debug_file_by_buildid, elf_symfile_read):
1461 Likewise.
1462 * expprint.c (dump_subexp_body_standard): Likewise.
1463 * gdbtypes.c (type_name_no_tag_or_error): Likewise.
1464 * jit.c (jit_object_close_impl): Use the objfile field name renamed to
1465 original_name.
1466 * linux-thread-db.c (try_thread_db_load_from_pdir_1): New variable
1467 obj_name, use objfile_name for it, use the variable.
1468 (try_thread_db_load_from_pdir, has_libpthread, thread_db_new_objfile):
1469 Use objfile_name.
1470 * machoread.c (macho_symtab_read, macho_check_dsym)
1471 (macho_symfile_relocate): Likewise.
1472 * maint.c (maintenance_translate_address): Likewise.
1473 * minidebug.c (find_separate_debug_file_in_section): Likewise.
1474 * minsyms.c (install_minimal_symbols): Likewise.
1475 * objfiles.c (allocate_objfile): Use the objfile field name renamed to
1476 original_name.
1477 (filter_overlapping_sections): Use objfile_name.
1478 (objfile_name): New function.
1479 * objfiles.h (struct objfile): Rename field name to original_name.
1480 (objfile_name): New prototype.
1481 * printcmd.c (sym_info, address_info): Use objfile_name.
1482 * probe.c (parse_probes, collect_probes, compare_probes)
1483 (info_probes_for_ops): Likewise.
1484 * progspace.c (clone_program_space): Likewise.
1485 * psymtab.c (require_partial_symbols, dump_psymtab, allocate_psymtab)
1486 (maintenance_info_psymtabs): Likewise.
1487 * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile)
1488 (source_section_scripts): Likewise.
1489 * python/py-objfile.c (objfpy_get_filename): Likewise.
1490 * python/py-progspace.c (pspy_get_filename): Likewise.
1491 * solib-aix.c (solib_aix_get_toc_value): Likewise.
1492 * solib-som.c (match_main, som_solib_section_offsets): Likewise.
1493 * solib.c (solib_read_symbols): Likewise.
1494 * stabsread.c (scan_file_globals): Likewise.
1495 * stap-probe.c (handle_stap_probe): Likewise.
1496 * symfile.c (symbol_file_clear, separate_debug_file_exists)
1497 (find_separate_debug_file_by_debuglink): Likewise.
1498 (reread_symbols): Likewise. Use the objfile field name renamed to
1499 original_name.
1500 (allocate_symtab): Use objfile_name.
1501 * symmisc.c (print_symbol_bcache_statistics, print_objfile_statistics)
1502 (dump_objfile, dump_msymbols, dump_symtab_1)
1503 (maintenance_print_msymbols, maintenance_print_objfiles)
1504 (maintenance_info_symtabs, maintenance_check_symtabs): Likewise.
1505 * target.c (target_translate_tls_address, target_info): Likewise.
1506 * xcoffread.c (xcoff_initial_scan): Make variable name const. Use
1507 objfile_name.
1508
1509 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1510
1511 Code cleanup.
1512 * probe.c (parse_probes): Rename variable objfile_name to
1513 objfile_namestr.
1514
1515 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1516
1517 Remove solib-sunos.c.
1518 * Makefile.in (ALLDEPFILES): Remove solib-sunos.c.
1519 * config/m68k/obsd.mh (NATDEPFILES): Remove solib-sunos.o.
1520 * objfiles.c (rt_common_objfile): Remove.
1521 (free_objfile): Remove rt_common_objfile comparison.
1522 * objfiles.h (rt_common_objfile): Remove.
1523 * solib-sunos.c: Remove.
1524 * symfile.c (reread_symbols): Remove solib-sunos.c comment.
1525
1526 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1527
1528 Remove a.out NetBSD and OpenBSD hosts.
1529 * NEWS (Removed native configurations): New.
1530 * config/arm/nbsdaout.mh: Remove.
1531 * config/i386/nbsdaout.mh: Remove.
1532 * config/i386/obsdaout.mh: Remove.
1533 * config/m68k/nbsdaout.mh: Remove.
1534 * config/sparc/nbsdaout.mh: Remove.
1535 * config/vax/nbsdaout.mh: Remove.
1536 * configure.host (arm*-*-netbsd*, i[34567]86-*-netbsd*)
1537 (i[34567]86-*-openbsd[0-2].*, i[34567]86-*-openbsd3.[0-3])
1538 (m68*-*-netbsd*, sparc-*-netbsd*, vax-*-netbsd*): Add them to obsolete
1539 error.
1540 (arm*-*-netbsd*, i[34567]86-*-netbsd*, i[34567]86-*-openbsd[0-2].*)
1541 (i[34567]86-*-openbsd3.[0-3], m68*-*-netbsd*, sparc-*-netbsdaout*)
1542 (sparc-*-netbsd*, vax-*-netbsd*): Remove.
1543
1544 2013-09-23 Tom Tromey <tromey@redhat.com>
1545
1546 * linespec.c (struct minsym_and_objfile): Remove.
1547 (minsym_and_objfile_d): Remove.
1548 (struct linespec, struct collect_info, linespec_parse_basic)
1549 (convert_linespec_to_sals, linespec_parser_delete, decode_objc)
1550 (compare_msymbols, find_method, find_function_symbols)
1551 (find_linespec_symbols, struct collect_minsyms, compare_msyms)
1552 (add_minsym, search_minsyms_for_name): Update.
1553
1554 2013-09-23 Andrew Burgess <aburgess@broadcom.com>
1555
1556 * regcache.c: Add include of valprint.h.
1557 (dump_endian_bytes): Delete.
1558 (regcache_dump): Use print_hex_chars not dump_endian_bytes.
1559
1560 2013-09-23 Andrew Burgess <aburgess@broadcom.com>
1561
1562 * sh64-tdep.c (sh64_do_fp_register): Use print_hex_chars.
1563
1564 2013-09-19 Pedro Alves <palves@redhat.com>
1565
1566 * breakpoint.c (remove_threaded_breakpoints): Skip non-user
1567 breakpoints.
1568
1569 2013-09-19 Pedro Alves <palves@redhat.com>
1570 Thomas Schwinge <thomas@codesourcery.com>
1571 Yue Lu <hacklu.newborn@gmail.com>
1572
1573 * gnu-nat.c (gnu_read_inferior, gnu_write_inferior): Make static.
1574 Take a gdb_byte pointer instead of a char pointer.
1575
1576 * gnu-nat.c (gnu_xfer_memory): Adjust interface as
1577 gnu_xfer_partial helper.
1578 (gnu_xfer_partial): New function.
1579 (gnu_target): Don't install a deprecated_xfer_memory hook.
1580 Install a to_xfer_partial hook.
1581
1582 2013-09-19 Jan Kratochvil <jan.kratochvil@redhat.com>
1583
1584 Constification.
1585 * main.c (captured_main): Replace catch_command_errors by
1586 catch_command_errors_const. Twice.
1587 * symfile.c (symbol_file_add_main_1): Make args parameter const.
1588 (symbol_file_add): Make name parameter const.
1589 (symbol_file_add_main, symbol_file_add_main_1): Make args parameter const.
1590 (symfile_bfd_open): Make name parameter const, rename it to cname. Add
1591 variable name. Change their usage accordingly.
1592 * symfile.h (symbol_file_add, symfile_bfd_open): Make first parameter
1593 const.
1594 (symbol_file_add_main): Make args parameter const.
1595
1596 2013-09-18 Raunaq Bathija <raunaq12@in.ibm.com>
1597 Ulrich Weigand <uweigand@de.ibm.com>
1598
1599 * xcoffread.c (struct coff_symbol): Use CORE_ADDR as type
1600 of c_value member.
1601 (read_xcoff_symtab): Use CORE_ADDR as type of fcn_start_addr.
1602
1603 2013-09-18 Pedro Alves <palves@redhat.com>
1604 Yue Lu <hacklu.newborn@gmail.com>
1605
1606 * gnu-nat.c (inf_validate_procs, gnu_wait, gnu_resume)
1607 (gnu_create_inferior)
1608 (gnu_attach, gnu_thread_alive, gnu_pid_to_str, cur_thread)
1609 (set_sig_thread_cmd): Use the lwpid field of ptids to
1610 store/extract thread ids instead of the tid field.
1611 * i386gnu-nat.c (gnu_fetch_registers): Adjust.
1612
1613 2013-09-18 Andrew Burgess <aburgess@broadcom.com>
1614
1615 * infcmd.c (default_print_one_register_info): Add detection of
1616 optimized out values.
1617 (default_print_registers_info): Switch to using
1618 get_frame_register_value.
1619
1620 2013-09-18 Markus Metzger <markus.t.metzger@intel.com>
1621
1622 * infrun.c (handle_inferior_event): Check if we know the
1623 function start address before setting a resume breakpoint.
1624
1625 2013-09-18 Pedro Alves <palves@redhat.com>
1626
1627 * gnu-nat.c (set_sig_thread_cmd): Compare the thread's ptid to
1628 minus_one_ptid instead of looking at the ptid's tid field and
1629 comparing that to -1.
1630
1631 2013-09-18 Andrew Burgess <aburgess@broadcom.com>
1632
1633 * main.h (get_gdb_program_name): Remove extra whitespace.
1634
1635 2013-09-18 Andrew Burgess <aburgess@broadcom.com>
1636
1637 * main.h (get_gdb_program_name): Add declaration.
1638 * main.c (get_gdb_program_name): Add definition.
1639
1640 2013-09-17 Doug Evans <dje@google.com>
1641
1642 * dwarf2read.c: Move definitions of complaint functions to after
1643 forward declarations of local functions.
1644
1645 2013-09-17 Muhammad Waqas <mwaqas@codesourcery.com>
1646 Pedro Alves <palves@redhat.com>
1647
1648 PR gdb/11568
1649 * breakpoint.c (remove_threaded_breakpoints): New function.
1650 (_initialize_breakpoint): Attach remove_threaded_breakpoints
1651 as thread_exit observer.
1652
1653 2013-09-17 Pedro Alves <palves@redhat.com>
1654
1655 PR gdb/15911
1656 * ada-tasks.c (task_command_1): Adjust call to print_stack_frame.
1657 * bsd-kvm.c (bsd_kvm_open, bsd_kvm_proc_cmd, bsd_kvm_pcb_cmd):
1658 * corelow.c (core_open):
1659 * frame.h (print_stack_frame, print_frame_info): New
1660 'set_current_sal' parameter.
1661 * infcmd.c (finish_command, kill_command): Adjust call to
1662 print_stack_frame.
1663 * inferior.c (inferior_command): Likewise.
1664 * infrun.c (normal_stop): Likewise.
1665 * linux-fork.c (linux_fork_context): Likewise.
1666 * record-full.c (record_full_goto_entry, record_full_restore):
1667 Likewise.
1668 * remote-mips.c (common_open): Likewise.
1669 * stack.c (print_stack_frame): New 'set_current_sal' parameter.
1670 Use it.
1671 (print_frame_info): New 'set_current_sal' parameter. Set the last
1672 displayed sal depending on the new paremeter instead of looking at
1673 print_what.
1674 (backtrace_command_1, select_and_print_frame, frame_command)
1675 (current_frame_command, up_command, down_command): Adjust call to
1676 print_stack_frame.
1677 * thread.c (print_thread_info, restore_selected_frame)
1678 (do_captured_thread_select): Adjust call to print_stack_frame.
1679 * tracepoint.c (tfind_1): Likewise.
1680 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames)
1681 (mi_cmd_stack_info_frame): Likewise.
1682 * mi/mi-interp.c (mi_on_normal_stop): Likewise.
1683 * mi/mi-main.c (mi_cmd_exec_return, mi_cmd_trace_find): Likewise.
1684
1685 2013-09-16 Sergio Durigan Junior <sergiodj@redhat.com>
1686
1687 * value.c (isvoid_internal_fn): Replace "parameter" with
1688 "argument".
1689
1690 2013-09-16 Stan Shebs <stan@codesourcery.com>
1691
1692 * README: Update references to writing code for GDB.
1693 * configure.ac (build_warnings): Remove obsolete comment.
1694 * configure: Regenerate.
1695 * gdbarch.sh: Remove references to gdbint.texinfo.
1696 * gdbarch.h: Regenerate.
1697 * gdbtypes.c (objfile_type): Remove comments referencing internals
1698 manual and D10V.
1699
1700 2013-09-16 Sergio Durigan Junior <sergiodj@redhat.com>
1701
1702 * NEWS: Mention new convenience function $_isvoid.
1703 * value.c (isvoid_internal_fn): New function.
1704 (_initialize_values): Add new convenience function $_isvoid.
1705
1706 2013-09-16 Pierre Muller <muller@sourceware.org>
1707
1708 * arm-linux-tdep.c: Add "elf/common.h" header.
1709 Remove AT_HWCAP macro definintion as it is provided in
1710 added include file.
1711 * s390-tdep.c: Remove system header <elf.h>
1712 Add "elf/common.h" header for AT_HWCAP definition.
1713 (s390_core_read_description): Use correct CORE_ADDR
1714 for hwcap local variable used as third parameter
1715 of function target_auxv_search.
1716
1717 2013-09-14 Pierre Muller <muller@sourceware.org>
1718 Tom Tromey <tromey@redhat.com>
1719 Pedro Alves <palves@redhat.com>
1720
1721 * common/filestuff.c (gdb_fopen_cloexec): Do not try to use "e"
1722 mode if operating system doesn't know O_CLOEXEC.
1723
1724 2013-09-13 Jan Kratochvil <jan.kratochvil@redhat.com>
1725
1726 Code cleanup.
1727 * symfile.c (reread_symbols): Move variable obfd_filename to a more
1728 inner block.
1729
1730 2013-09-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
1731
1732 * NEWS: Mention TDB support.
1733 * features/s390-tdb.xml: New file.
1734 * features/s390-te-linux64.xml: New file.
1735 * features/s390x-te-linux64.xml: New file.
1736 * features/Makefile (WHICH): Add new tdescs above.
1737 (s390-te-linux64-expedite): Set.
1738 (s390x-te-linux64-expedite): Set.
1739 * features/s390-te-linux64.c: New file (generated).
1740 * features/s390x-te-linux64.c: New file (generated).
1741 * regformats/s390-te-linux64.dat: New file (generated).
1742 * regformats/s390x-te-linux64.dat: New file (generated).
1743 * s390-tdep.h (HWCAP_S390_HIGH_GPRS): Define.
1744 (HWCAP_S390_TE): Likewise.
1745 (S390_TDB_DWORD0_REGNUM): Likewise.
1746 (S390_TDB_DWORD0_REGNUM): Likewise.
1747 (S390_TDB_ABORT_CODE_REGNUM): Likewise.
1748 (S390_TDB_CONFLICT_TOKEN_REGNUM): Likewise.
1749 (S390_TDB_ATIA_REGNUM): Likewise.
1750 (S390_TDB_R0_REGNUM): Likewise.
1751 (S390_TDB_R1_REGNUM): Likewise.
1752 (S390_TDB_R2_REGNUM): Likewise.
1753 (S390_TDB_R3_REGNUM): Likewise.
1754 (S390_TDB_R4_REGNUM): Likewise.
1755 (S390_TDB_R5_REGNUM): Likewise.
1756 (S390_TDB_R6_REGNUM): Likewise.
1757 (S390_TDB_R7_REGNUM): Likewise.
1758 (S390_TDB_R8_REGNUM): Likewise.
1759 (S390_TDB_R9_REGNUM): Likewise.
1760 (S390_TDB_R10_REGNUM): Likewise.
1761 (S390_TDB_R11_REGNUM): Likewise.
1762 (S390_TDB_R12_REGNUM): Likewise.
1763 (S390_TDB_R13_REGNUM): Likewise.
1764 (S390_TDB_R14_REGNUM): Likewise.
1765 (S390_TDB_R15_REGNUM): Likewise.
1766 (S390_NUM_REGS): Increase.
1767 (S390_IS_TDBREGSET_REGNUM): New macro.
1768 (s390_regmap_tdb): Declare.
1769 (s390_sizeof_tdbregset): Define.
1770 (tdesc_s390_te_linux64): Declare.
1771 (tdesc_s390x_te_linux64): Likewise.
1772 * s390-tdep.c: Add includes for "auxv.h", <elf.h>,
1773 "features/s390-te-linux64.c", and "features/s390x-te-linux64.c".
1774 (s390_regmap_tdb): New regmap.
1775 (s390_supply_tdb_regset): New function.
1776 (s390_tdb_regset): New regset.
1777 (s390_linux64v2_regset_sections): Add TDB regset to list.
1778 (s390x_linux64v2_regset_sections): Likewise.
1779 (s390_regset_from_core_section): Recognize TDB core note section.
1780 (s390_core_read_description): If HWCAP indicates TE support,
1781 select tdesc_s390_te_linux64 or tdesc_s390_s390x_te_linux64.
1782 (s390_gdbarch_init): Handle TDB regset.
1783 (_initialize_s390_tdep): Initialize new tdescs.
1784 * s390-nat.c (HWCAP_S390_HIGH_GPRS): Remove define.
1785 (have_regset_tdb): New variable.
1786 (s390_native_supply): Support register invalidation.
1787 (fetch_regset): Invalidate registers if ptrace yields ENODATA.
1788 (check_regset): Treat ENODATA as "regset exists".
1789 (s390_linux_fetch_inferior_registers): Add TDB.
1790 (s390_read_description): Check for TDB existence and select
1791 appropriate tdesc.
1792 * gdbserver/Makefile.in (clean): Add removal of new makefile
1793 targets.
1794 (s390-te-linux64.c): New makefile target.
1795 (s390x-te-linux64.c): Likewise.
1796 * gdbserver/configure.srv (srv_regobj): Append new objects
1797 s390-te-linux64.o and s390x-te-linux64.o.
1798 (srv_xmlfiles): Append new files s390-te-linux64.xml,
1799 s390x-te-linux64.xml, and s390-tdb.xml.
1800 * gdbserver/linux-s390-low.c (init_registers_s390_te_linux64): New
1801 declaration.
1802 (tdesc_s390_te_linux64): Likewise.
1803 (init_registers_s390x_te_linux64): Likewise.
1804 (tdesc_s390x_te_linux64): Likewise.
1805 (s390_check_regset): Treat ENODATA as "regset exists".
1806 (s390_arch_setup): Add TDB regset support.
1807 (initialize_low_arch): Initialize registers for new tdescs.
1808
1809 2013-09-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
1810
1811 * s390-tdep.h (S390_IS_GREGSET_REGNUM): New macro.
1812 (S390_IS_FPREGSET_REGNUM): New macro.
1813 * s390-tdep.c (s390_dwarf_regmap): Make const.
1814 (regnum_is_gpr_full): New function for replacing repeated code.
1815 (s390_pseudo_register_name): Use it.
1816 (s390_pseudo_register_type): Likewise.
1817 (s390_pseudo_register_read): Likewise.
1818 (s390_pseudo_register_write): Likewise.
1819 (s390_unwind_pseudo_register): Likewise.
1820 (s390_regmap_gregset): New format for regmap.
1821 (s390x_regmap_gregset): Likewise.
1822 (s390_regmap_fpregset): Likewise.
1823 (s390_regmap_upper): Likewise.
1824 (s390_regmap_last_break): Likewise.
1825 (s390_regmap_system_call): Likewise.
1826 (s390_supply_regset): Adjust to new regmap format.
1827 (s390_collect_regset): Likewise.
1828 * s390-nat.c (s390_native_supply): Adjust to new regmap format.
1829 (s390_native_collect): Likewise.
1830 (supply_gregset): Likewise.
1831 (fill_gregset): Likewise.
1832 (supply_fpregset): Likewise.
1833 (fill_fpregset): Likewise.
1834 (fetch_regset): Likewise.
1835 (store_regset): Likewise.
1836 (s390_linux_fetch_inferior_registers): Likewise.
1837 (s390_linux_fetch_inferior_registers): Likewise.
1838
1839 2013-09-12 Andrew Pinski <apinski@cavium.com>
1840
1841 * aarch64-linux-nat.c (aarch64_linux_set_debug_regs): Zero out regs.
1842
1843 2013-09-10 Andreas Arnez <arnez@linux.vnet.ibm.com>
1844
1845 * config/s390/s390.mh (NATDEPFILES): Add linux-waitpid.o.
1846
1847 2013-09-09 Andrew Burgess <aburgess@broadcom.com>
1848
1849 * top.c (quit_confirm): Remove use of deprecated_init_ui_hook.
1850
1851 2013-09-06 Pedro Alves <palves@redhat.com>
1852
1853 * remote-sim.c (dump_mem, gdbsim_fetch_register)
1854 (gdbsim_store_register, gdbsim_kill, gdbsim_load)
1855 (gdbsim_create_inferior, gdbsim_open, gdbsim_close)
1856 (gdbsim_detach, gdbsim_resume_inferior, gdbsim_wait)
1857 (gdbsim_files_info, gdbsim_mourn_inferior): Send debug output to
1858 gdb_stdlog.
1859
1860 2013-09-06 Pedro Alves <palves@redhat.com>
1861
1862 * remote-sim.c (dump_mem): Constify buf parameter.
1863 gdbsim_xfer_inferior_memory): Rename to ...
1864 (gdbsim_xfer_memory): ... this. Adjust interface as
1865 target_xfer_partial helper.
1866 (gdbsim_xfer_partial): New function.
1867 (init_gdbsim_ops): Don't install a deprecated_xfer_memory hook.
1868 Install a to_xfer_partial hook. Send output to gdb_stdlog.
1869
1870 2013-09-06 Pedro Alves <palves@redhat.com>
1871
1872 * remote-sim.c (gdbsim_xfer_inferior_memory): Use
1873 host_address_to_string, and send debug output to gdb_stdlog.
1874
1875 2013-09-06 Ricard Wanderlof <ricardw@axis.com>
1876
1877 * Makefile.in (ALL_TARGET_OBS): Add cris-linux-tdep.o.
1878 * configure.tgt: Add cris-linux-tdep.o and linux-tdep.o to
1879 gdb_target_obs for cris target.
1880 * cris-tdep.c (struct gdbarch_tdep): Move to cris-tdep.h.
1881 (cris_gdbarch_init): Move calls to
1882 set_gdbarch_fetch_tls_load_module_address and
1883 set_solib_svr4_fetch_link_map_offsets to cris-linux-tdep.c.
1884 Add call to gdbarch_init_osabi.
1885 * cris-linux-tdep.c: New file.
1886 * cris-tdep.h: New file.
1887
1888 2013-09-06 Andrew Burgess <aburgess@broadcom.com>
1889
1890 * tui/tui-io.c (tui_initialize_io): Remove legacy comment referring
1891 to deprecated_init_ui_hook.
1892
1893 2013-09-06 Andrew Burgess <aburgess@broadcom.com>
1894
1895 * cli/cli-interp.c (_initialize_cli_interp): Add a
1896 command_loop_proc to interp_procs.
1897 * event-top.c (cli_command_loop): Change signature to match
1898 interp_command_loop_ftype.
1899 * event-top.h (cli_command_loop): Same.
1900 * interps.c (interp_new): Require every interpreter to have a
1901 command_loop_proc.
1902 (current_interp_command_loop): Just call the command_loop_proc on
1903 the current interpreter.
1904 * tui/tui-interp.c (_initialize_tui_interp): Add a
1905 command_loop_proc to interp_procs.
1906
1907 2013-09-06 Ricard Wanderlof <ricardw@axis.com>
1908
1909 * cris-tdep.c (cris_gdbarch_init): Add call to
1910 get_gdbarch_fetch_tls_load_module_address.
1911
1912 2013-09-06 Ricard Wanderlof <ricardw@axis.com>
1913
1914 * cris-tdep.c (cris_elf_greg_t): Rename from elf_greg_t.
1915 (cris_elf_gregset_t): Rename from elf_gregset_t.
1916 (crisv32_elf_gregset_t): Adjust.
1917 (cris_supply_gregset, fetch_core_registers): Adjust.
1918
1919 2013-09-06 Ricard Wanderlof <ricardw@axis.com>
1920
1921 * cris-tdep.c (elf_greg_t): Change typedef to unsigned char[4]
1922
1923 2013-09-05 Andrew Burgess <aburgess@broadcom.com>
1924
1925 * defs.h (deprecated_command_loop_hook): Remove, including
1926 references in comments.
1927 * interps.c (current_interp_command_loop): No longer use
1928 deprecated_command_loop_hook.
1929 (clear_interpreter_hooks): Remove deprecated_command_loop_hook
1930 setup.
1931 * top.c (deprecated_command_loop_hook): Remove.
1932
1933 2013-09-05 Pedro Alves <palves@redhat.com>
1934
1935 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): 'dwarf_regnum'
1936 local is now int instead of ULONGEST. Print it with %d
1937 instead of paddress.
1938
1939 2013-09-05 Tristan Gingold <gingold@adacore.com>
1940
1941 * MAINTAINERS: Remove avr maintainership.
1942
1943 2013-09-05 Pedro Alves <palves@redhat.com>
1944
1945 * findvar.c (value_of_register): Rework in terms of
1946 value_of_register_lazy.
1947
1948 2013-09-05 Muhammad Bilal <mbilal@codesourcery.com>
1949
1950 * symfile.c (add_symbol_file_command): Remove trailing
1951 whitespaces and blank line after comment.
1952
1953 2013-09-05 Pedro Alves <palves@redhat.com>
1954
1955 * tui/tui-regs.c (tui_register_format): Don't look at the
1956 register's name here. Return string representing register
1957 value instead of storing it in the data element.
1958 (tui_get_register): Compare register string representations
1959 instead of register value states and contents.
1960
1961 2013-09-05 Pedro Alves <palves@redhat.com>
1962
1963 PR tui/15933
1964 * tui/tui-regs.c (tui_show_registers): Show registers of the
1965 selected frame, not the current frame.
1966
1967 2013-09-05 Ricard Wanderlof <ricardw@axis.com>
1968
1969 * MAINTAINERS (Write After Approval): Add myself to the list.
1970
1971 2013-09-04 Doug Evans <dje@google.com>
1972
1973 * dwarf2read.c (queue_and_load_all_dwo_tus): New function.
1974 (queue_and_load_dwo_tu): New function.
1975 (lookup_dwo_signatured_type): Set per_cu.tu_read.
1976 (maybe_queue_comp_unit): Rename this_cu argument to dependent_cu.
1977 Make dependent_cu optional.
1978 (dw2_do_instantiate_symtab): If we just loaded a CU from a DWO,
1979 and an older .gdb_index is in use, queue and load all its TUs too.
1980
1981 2013-09-04 Jan Kratochvil <jan.kratochvil@redhat.com>
1982
1983 Code cleanup: Change OPF_DISABLE_REALPATH to OPF_RETURN_REALPATH.
1984 * cli/cli-cmds.c (find_and_open_script): Add OPF_RETURN_REALPATH to
1985 variable search_flags.
1986 * defs.h (OPF_DISABLE_REALPATH): Rename to ...
1987 (OPF_RETURN_REALPATH): ... here.
1988 * dwarf2read.c (try_open_dwop_file): Set OPF_RETURN_REALPATH for flags.
1989 * exec.c (exec_file_attach): Remove OPF_DISABLE_REALPATH from openp
1990 call. Twice.
1991 * nto-tdep.c (nto_find_and_open_solib): Add OPF_RETURN_REALPATH for
1992 openp call.
1993 * solib.c (solib_find): Likewise. Four times.
1994 * source.c (openp): Change OPF_DISABLE_REALPATH to OPF_RETURN_REALPATH
1995 in the function comment and for the realpath_fptr variable.
1996 (source_full_path_of): Add OPF_RETURN_REALPATH for openp call.
1997 (find_and_open_source): Likewise. Twice.
1998 * symfile.c (symfile_bfd_open): Likewise, also twice.
1999
2000 2013-09-04 Doug Evans <dje@google.com>
2001
2002 * progspace.c (save_current_space_and_thread): Remove unnecessary
2003 call to save_current_inferior.
2004
2005 2013-09-04 Andrew Burgess <aburgess@broadcom.com>
2006
2007 * sh64-tdep.c (sh64_do_register): Return after printing message
2008 about unavailable register contents.
2009
2010 2013-09-04 Muhammad Bilal <mbilal@codesourcery.com>
2011 Pedro Alves <palves@redhat.com>
2012
2013 * symfile.c (add_symbol_file_command): Error out on unknown
2014 option. Handle EXPECTING_SEC_ADDR/EXPECTING_SEC_NAME before '-'
2015 options and collapse into single conditional branch.
2016
2017 2013-09-03 Luis Machado <lgustavo@codesourcery.com>
2018
2019 * inf-child.c (inf_child_follow_fork): New parameter
2020 detach_fork.
2021 * inf-ptrace.c (inf_ptrace_follow_fork): Likewise.
2022 * inf-ttrace.c (inf_ttrace_follow_fork): Likewise.
2023 * inferior.h (detach_fork): Remove.
2024 * infrun.c (detach_fork): Adjust comment and make it
2025 static.
2026 (follow_fork): Pass detach_fork parameter to
2027 target_follow_fork.
2028 * linux-nat.c (linux_child_follow_fork): New parameter
2029 detach_fork.
2030 * target.c (target_follow_fork): New parameter detach_fork.
2031 Pass detach_fork as parameter and print its value.
2032 * target.h (struct target_ops) <to_follow_fork>: New int
2033 parameter.
2034 (target_follow_fork): New parameter detach_fork.
2035
2036 2013-09-03 Joel Brobecker <brobecker@adacore.com>
2037
2038 * solib-ia64-hpux.c (ia64_hpux_relocate_section_addresses):
2039 Replace sec->bfd by sec->the_bfd_section->owner.
2040
2041 2013-09-03 Yao Qi <yao@codesourcery.com>
2042
2043 * linux-tdep.c (linux_is_uclinux): New function. Code moved
2044 from linux_has_shared_address_space.
2045 (linux_has_shared_address_space): Call linux_is_uclinux.
2046 * linux-tdep.h (linux_is_uclinux): Declare.
2047 * m68klinux-tdep.c (m68k_linux_get_sigtramp_info): Call
2048 linux_is_uclinux.
2049
2050 2013-09-03 Yao Qi <yao@codesourcery.com>
2051
2052 * config/djgpp/fnchange.lst: Remove entry of
2053 i386-interix-nat.c and i386-interix-tdep.c.
2054 * configure.ac: Remove '*-*-interix*'.
2055 * configure: Re-generated.
2056 * defs.h (enum gdb_osabi): Remove GDB_OSABI_INTERIX.
2057 * i386-cygwin-tdep.c (i386_cygwin_osabi_sniffer): Remove
2058 obsolete comments.
2059 * osabi.c (gdb_osabi_names): Remove "Interix".
2060
2061 2013-09-03 Yao Qi <yao@codesourcery.com>
2062
2063 * arch-utils.c: Fix typo in the comment to gdbarch_update_p.
2064
2065 2013-09-02 Markus Metzger <markus.t.metzger@intel.com>
2066
2067 * record.h (record_print_flag) <record_print_src_line,
2068 record_print_insn_range>: Rename into ...
2069 (record_print_flag) <record_print_src_line,
2070 record_print_insn_range>: ... this. Update all users.
2071
2072 2013-09-02 Pierre Muller <muller@sourceware.org>
2073
2074 * windows-nat.c (windows_xfer_memory): Handle ERROR_PARTIAL_COPY
2075 error code.
2076
2077 2013-09-02 Pierre Muller <muller@sourceware.org>
2078
2079 * windows-nat.c (windows_xfer_memory): Fix compilation failure
2080 by use of plongest function.
2081
2082 2013-09-02 Tristan Gingold <gingold@adacore.com>
2083
2084 * NEWS: Add entry mentioning support for native Windows x64
2085 SEH data.
2086
2087 * amd64-windows-tdep.c: #include "objfiles.h", "frame-unwind.h",
2088 "coff/internal.h", "coff/i386.h", "coff/pe.h" and "libcoff.h".
2089 (struct amd64_windows_frame_cache): New struct.
2090 (amd64_windows_w2gdb_regnum): New global.
2091 (pc_in_range, amd64_windows_frame_decode_epilogue)
2092 (amd64_windows_frame_decode_insns, amd64_windows_find_unwind_info)
2093 (amd64_windows_frame_cache, amd64_windows_frame_prev_register)
2094 (amd64_windows_frame_this_id): New functions.
2095 (amd64_windows_frame_unwind): New static global.
2096 (amd64_windows_skip_prologue): New function.
2097 (amd64_windows_init_abi): Call frame_unwind_prepend_unwinder
2098 with amd64_windows_frame_unwind. Call set_gdbarch_skip_prologue
2099 with amd64_windows_skip_prologue.
2100
2101 2013-08-30 Joel Brobecker <brobecker@adacore.com>
2102
2103 GDB 7.6.1 released.
2104
2105 2013-08-30 Pedro Alves <palves@redhat.com>
2106
2107 * mi/mi-main.c (mi_cmd_trace_find): Use LOC_AND_ADDRESS instead of
2108 SRC_AND_LOC.
2109
2110 2013-08-30 Pedro Alves <palves@redhat.com>
2111
2112 * thread.c (restore_selected_frame): Use SRC_AND_LOC, and change
2113 warning text.
2114
2115 2013-08-30 Pedro Alves <palves@redhat.com>
2116
2117 * bsd-kvm.c (bsd_kvm_open, bsd_kvm_proc_cmd, bsd_kvm_pcb_cmd):
2118 Adjust arguments to print_stack_frame.
2119
2120 2013-08-30 Pedro Alves <palves@redhat.com>
2121
2122 * ada-tasks.c (task_command_1): Write SRC_AND_LOC instead '1'.
2123
2124 2013-08-30 Pedro Alves <palves@redhat.com>
2125
2126 * frame.h (show_and_print_stack_frame): Delete declaration.
2127
2128 2013-08-30 Phil Muldoon <pmuldoon@redhat.com>
2129
2130 PR python/15461
2131
2132 * python/py-arch.c (ARCHPY_REQUIRE_VALID): New macro.
2133 (archpy_name): Check for valid architecture.
2134 (archpy_disassemble): Ditto.
2135
2136 2013-08-29 Joel Brobecker <brobecker@adacore.com>
2137
2138 * rs6000-nat.c (rs6000_ptrace32): Cast "addr" to "uintptr_t"
2139 instead of "long long" in call to ptrace64.
2140
2141 2013-08-29 Andrew Burgess <aburgess@broadcom.com>
2142
2143 * mi/mi-interp.c (mi_command_loop): Change signature to match
2144 interp_command_loop_ftype.
2145 (mi1_command_loop): Remove.
2146 (mi2_command_loop): Remove.
2147 (mi3_command_loop): Remove.
2148 (mi_interpreter_resume): Remove setting of
2149 deprecated_command_loop_hook.
2150 (_initialize_mi_interp): Set mi_command_loop as the command loop
2151 callback.
2152
2153 2013-08-29 Sanimir Agovic <sanimir.agovic@intel.com>
2154
2155 * valops.c (do_search_struct_field): Pass v2 instead of base_type to
2156 value_type.
2157
2158 2013-08-29 Sanimir Agovic <sanimir.agovic@intel.com>
2159
2160 * value.c (allocate_value_contents): Make static.
2161 * value.h (allocate_value_contents): Remove prototype.
2162
2163 2013-08-29 Sanimir Agovic <sanimir.agovic@intel.com>
2164
2165 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Use value_at_lazy instead
2166 of assembling value via allocate_value_lazy and attribute setter.
2167 * findvar.c (default_read_var_value): Use value_at_lazy instead of
2168 assembling value via allocate_value_lazy and attribute setter.
2169 * valops.c (do_search_struct_field): Use value_at_lazy instead of
2170 assembling value via allocate_value_lazy and attribute setter.
2171
2172 2013-08-29 Sanimir Agovic <sanimir.agovic@intel.com>
2173
2174 * value.c (value_from_contents_and_address): Replace allocate_value and
2175 memcpy with value_from_contents.
2176
2177 2013-08-29 Phil Muldoon <pmuldoon@redhat.com>
2178
2179 * python/py-framefilter.c (py_print_frame): Remove usage of
2180 PyString_AsString. Use python_string_to_host_string instead.
2181 Refactor function to work with a string as a new allocation
2182 instead of a pointer.
2183 (py_print_frame): Ditto.
2184 * python/lib/gdb/frames.py (return_list): Cain iterators together
2185 instead of adding them as a list.
2186 (_sort_list): Call return_list, and remove duplicate code.
2187 (execute_frame_filters): Convert iterator to a list with list().
2188 * python/lib/gdb/command/frame_filters.py
2189 (SetFrameFilterPriority._set_filter_priority): Convert priority
2190 attribute to an integer.
2191 * python/lib/gdb/FrameIterator.py (FrameIterator.next): Define
2192 wrapper function __next__.
2193 * python/lib/gdb/FrameDecorator.py: If basestring not defined,
2194 define as "str".
2195
2196 2013-08-29 Phil Muldoon <pmuldoon@redhat.com>
2197
2198 PR python/15752
2199 * python/py-framefilter.c (apply_frame_filter): Check
2200 gdb_python_initialized. Exit if the Python frame-filter code
2201 cannot be initialized.
2202
2203 2013-08-29 Phil Muldoon <pmuldoon@redhat.com>
2204
2205 PR cli/15842
2206 * top.c (print_gdb_version): Remove erroneous newline after help
2207 text.
2208
2209 2013-08-29 Yao Qi <yao@codesourcery.com>
2210
2211 * varobj.c (install_dynamic_child): Remove trailing space.
2212 Add one blank line after variable declaration.
2213
2214 2013-08-28 Jan Kratochvil <jan.kratochvil@redhat.com>
2215
2216 PR gdb/15415
2217 * corefile.c (get_exec_file): Use exec_filename.
2218 * defs.h (OPF_DISABLE_REALPATH): New definition. Add new comment.
2219 * exec.c (exec_close): Free EXEC_FILENAME.
2220 (exec_file_attach): New variable canonical_pathname. Use
2221 OPF_DISABLE_REALPATH. Call gdb_realpath explicitly. Set
2222 EXEC_FILENAME.
2223 * exec.h (exec_filename): New.
2224 * inferior.c (print_inferior, inferior_command): Use
2225 PSPACE_EXEC_FILENAME.
2226 * mi/mi-main.c (print_one_inferior): Likewise.
2227 * progspace.c (clone_program_space, print_program_space): Likewise.
2228 * progspace.h (struct program_space): New field pspace_exec_filename.
2229 * source.c (openp): Describe OPF_DISABLE_REALPATH. New variable
2230 realpath_fptr, initialize it from OPF_DISABLE_REALPATH, use it.
2231
2232 2013-08-28 Will Newton <will.newton@linaro.org>
2233
2234 * common/linux-ptrace.c: Include stdint.h unconditionally.
2235
2236 2013-08-28 Jan Kratochvil <jan.kratochvil@redhat.com>
2237
2238 Code cleanup.
2239 * nto-tdep.c (nto_find_and_open_solib): Use OPF_TRY_CWD_FIRST.
2240
2241 2013-08-28 Yao Qi <yao@codesourcery.com>
2242 Pedro Alves <palves@redhat.com>
2243
2244 * event-top.c (gdb_setup_readline): Call stderr_fileopen
2245 instead of stdio_fileopen.
2246 * main.c (captured_main) [__MINGW32__]: Set stderr unbuffered.
2247 .Call stderr_fileopen instead of stdio_fileopen.
2248 * ui-file.c [__MINGW32__] (stderr_file_write): New function.
2249 [__MINGW32__] (stderr_file_fputs): New function.
2250 (stderr_fileopen): New function.
2251 * ui-file.h (stderr_fileopen): Declare.
2252
2253 2013-08-27 Doug Evans <dje@google.com>
2254
2255 * dwarf2read.c (struct dwarf2_cu): Tweak comment.
2256 (struct dwarf2_per_cu_data): Ditto.
2257 (maybe_queue_comp_unit): Delete forward decl. Add comment.
2258 (process_imported_unit_die): Ditto.
2259 (follow_die_sig_1): Simplify assert.
2260
2261 2013-08-27 Pedro Alves <palves@redhat.com>
2262
2263 * windows-nat.c (windows_xfer_memory): Adjust prototype to follow
2264 xfer_partial's interface. Return TARGET_XFER_E_IO on error.
2265 (windows_xfer_partial): Defer TARGET_OBJECT_MEMORY handling to
2266 windows_xfer_memory directly.
2267 (init_windows_ops): Don't install a deprecated_xfer_memory method.
2268
2269 2013-08-27 Pedro Alves <palves@redhat.com>
2270
2271 * darwin-nat.c (darwin_xfer_memory): Delete.
2272 (_initialize_darwin_inferior): Don't install a
2273 deprecated_xfer_memory method.
2274
2275 2013-08-27 Pedro Alves <pedro@codesourcery.com>
2276 Yao Qi <yao@codesourcery.com>
2277
2278 * mi/mi-cmd-stack.c (list_args_or_locals): Adjust prototype.
2279 (parse_no_frames_option): Remove.
2280 (mi_cmd_stack_list_locals): Handle --skip-unavailable.
2281 (mi_cmd_stack_list_args): Adjust.
2282 (mi_cmd_stack_list_variables): Handle --skip-unavailable.
2283 (list_arg_or_local): Add new parameter 'skip_unavailable'. Return
2284 early if SKIP_UNAVAILABLE is true and ARG->val is unavailable.
2285 Caller update.
2286 (list_args_or_locals): New parameter 'skip_unavailable'.
2287 Handle it.
2288 * valprint.c (scalar_type_p): Rename to ...
2289 (val_print_scalar_type_p): ... this. Make extern.
2290 (val_print, value_check_printable): Adjust.
2291 * valprint.h (val_print_scalar_type_p): Declare.
2292 * value.c (value_entirely_unavailable): New function.
2293 * value.h (value_entirely_unavailable): Declare.
2294
2295 * NEWS: Mention the new option "--skip-unavailable" to MI
2296 commands '-stack-list-locals', '-stack-list-arguments' and
2297 '-stack-list-variables'.
2298
2299 2013-08-27 Yao Qi <yao@codesourcery.com>
2300
2301 * mi/mi-cmd-stack.c (parse_no_frames_option): Remove.
2302 (mi_cmd_stack_list_args): Use mi_getopt_silent to handle
2303 options.
2304 * mi/mi-getopt.c (mi_getopt): Remove.
2305 (mi_getopt_1): Renamed from mi_getopt. Add one parameter
2306 'error_on_unknown'.
2307 (mi_getopt): Call mi_getopt_1.
2308 (mi_getopt_silent): New.
2309 * mi/mi-getopt.h (mi_getopt_silent): Declare.
2310
2311 2013-08-26 Doug Evans <dje@google.com>
2312
2313 PR symtab/15885
2314 * dwarf2read.c (dw2_dump): Print some minimal information indicating
2315 .gdb_index is in use.
2316 * symfile.c (reread_symbols): Reset objfile->sf.
2317
2318 * NEWS: Document "mt print objfiles" now takes optional regexp.
2319 * symmisc.c (maintenance_print_objfiles): Argument is now an optional
2320 regexp of objfiles to print.
2321 (_initialize_symmisc): Update doc string for "mt print objfiles".
2322
2323 * dwarf2read.c (write_psymtabs_to_index): Move error checks ahead of
2324 missing debug info checks.
2325
2326 2013-08-26 Raunaq Bathija <raunaq12@in.ibm.com>
2327 Ulrich Weigand <uweigand@de.ibm.com>
2328
2329 * xcoffread.c (arrange_linetable): Add fix to correctly handle
2330 line tables generated by XLC compiled binaries.
2331
2332 2013-08-23 Doug Evans <dje@google.com>
2333
2334 * symmisc.c (dump_symtab): Delete prototype.
2335 (dump_msymbols, dump_objfile): Ditto.
2336 (maintenance_info_symtabs): Mark as dont_repeat.
2337 (_initialize_symmisc): Improve doc string for "mt info symtabs".
2338
2339 * elfread.c (elf_symfile_read): Move "Done reading minimal symbols"
2340 debugging printf to better location.
2341
2342 2013-08-23 Pedro Alves <palves@redhat.com>
2343
2344 * target.c (target_read_live_memory): Change type of 'ret' local
2345 to LONGEST.
2346
2347 2013-08-23 Pedro Alves <palves@redhat.com>
2348
2349 * remote.c (remote_write_bytes_aux, remote_write_bytes)
2350 (remote_read_bytes): Change return type to LONGEST, and adjust to
2351 return a target_xfer_error on error.
2352 (remote_xfer_memory): Delete.
2353 (remote_flash_write): Change type of 'ret' local to LONGEST.
2354 (remote_xfer_partial, remote_xfer_partial): Adjust.
2355 (init_remote_ops): Don't install a deprecated_xfer_memory hook.
2356
2357 2013-08-23 Pierre Muller <muller@sourceware.org>
2358
2359 ARI fix: Push # directives to start of line.
2360 * rs6000-nat.c (rs6000_ptrace32, rs6000_ptrace64): Rule applied.
2361
2362 2013-08-12 Muhammad Waqas <mwaqas@codesourcery.com>
2363
2364 PR gdb/15501
2365 * breakpoint.c (enable_command, disable_command): Iterate over
2366 all specified breakpoint locations.
2367
2368 2013-08-22 Luis Machado <lgustavo@codesourcery.com>
2369
2370 * common/linux-ptrace.c (linux_fork_to_function): Push #
2371 directives to the start of the line.
2372 (linux_check_ptrace_features): Fix warning message to use
2373 the "_" markup.
2374
2375 2013-08-22 Luis Machado <lgustavo@codesourcery.com>
2376
2377 * Makefile.in (HFILES_NO_SRCDIR): Add nat/linux-nat.h and
2378 nat/linux-waitpid.h.
2379 (linux-waitpid.o): New object file rule.
2380 * common/linux-ptrace.c: Include nat/linux-waitpid.h.
2381 (current_ptrace_options): Moved from linux-nat.c.
2382 (linux_ptrace_test_ret_to_nx): Use type casts for ptrace
2383 parameters.
2384 (linux_fork_to_function): New function.
2385 (linux_grandchild_function): Likewise.
2386 (linux_child_function): Likewise.
2387 (linux_check_ptrace_features): New function, heavily
2388 based on linux-nat.c:linux_test_for_tracefork.
2389 (linux_enable_event_reporting): New function.
2390 (ptrace_supports_feature): Likewise.
2391 (linux_supports_tracefork): Likewise.
2392 (linux_supports_traceclone): Likewise.
2393 (linux_supports_tracevforkdone): Likewise.
2394 (linux_supports_tracesysgood): Likewise.
2395 * common/linux-ptrace.h (HAS_NOMMU): Moved from
2396 gdbserver/linux-low.c.
2397 (linux_enable_event_reporting): New declaration.
2398 (linux_supports_tracefork): Likewise.
2399 (linux_supports_traceclone): Likewise.
2400 (linux_supports_tracevforkdone): Likewise.
2401 (linux_supports_tracesysgood): Likewise.
2402 * config.in (PTRACE_TYPE_ARG4): Regenerate.
2403 * config/aarch64/linux.mh (NATDEPFILES): Add linux-waitpid.o.
2404 * config/alpha/alpha-linux.mh (NATDEPFILES): Likewise.
2405 * config/arm/linux.mh (NATDEPFILES): Likewise.
2406 * config/i386/linux.mh (NATDEPFILES): Likewise.
2407 * config/i386/linux64.mh (NATDEPFILES): Likewise.
2408 * config/ia64/linux.mh (NATDEPFILES): Likewise.
2409 * config/m32r/linux.mh (NATDEPFILES): Likewise.
2410 * config/m68k/linux.mh (NATDEPFILES): Likewise.
2411 * config/mips/linux.mh (NATDEPFILES): Likewise.
2412 * config/pa/linux.mh (NATDEPFILES): Likewise..
2413 * config/powerpc/linux.mh (NATDEPFILES): Likewise..
2414 * config/powerpc/ppc64-linux.mh (NATDEPFILES): Likewise.
2415 * config/powerpc/spu-linux.mh (NATDEPFILES): Likewise.
2416 * config/sparc/linux.mh (NATDEPFILES): Likewise.
2417 * config/sparc/linux64.mh (NATDEPFILES): Likewise.
2418 * config/tilegx/linux.mh (NATDEPFILES): Likewise.
2419 * config/xtensa/linux.mh (NATDEPFILES): Likewise.
2420 * configure.ac (AC_CACHE_CHECK): Add void * to the list of
2421 ptrace's 4th argument's types.
2422 Check the type of PTRACE_TYPE_ARG4.
2423 * configure: Regenerate.
2424 * linux-nat.c: Include nat/linux-nat.h and nat/linux-waitpid.h.
2425 (SYSCALL_SIGTRAP): Moved to nat/linux-nat.h.
2426 (linux_supports_tracefork_flag): Remove.
2427 (linux_supports_tracesysgood_flag): Likewise.
2428 (linux_supports_tracevforkdone_flag): Likewise.
2429 (current_ptrace_options): Moved to
2430 common/linux-ptrace.c.
2431 (linux_tracefork_child): Remove.
2432 (my_waitpid): Remove.
2433 (linux_test_for_tracefork): Renamed to
2434 linux_check_ptrace_features and moved to common/linux-ptrace.c.
2435 (linux_test_for_tracesysgood): Remove.
2436 (linux_supports_tracesysgood): Remove.
2437 (linux_supports_tracefork): Remove.
2438 (linux_supports_tracevforkdone): Remove.
2439 (linux_enable_tracesysgood): Remove.
2440 (linux_enable_event_reporting): Remove.
2441 (linux_init_ptrace): New function.
2442 (linux_child_post_attach): Call linux_init_ptrace.
2443 (linux_child_post_startup_inferior): Call linux_init_ptrace.
2444 (linux_child_follow_fork): Call linux_supports_tracefork
2445 and linux_supports_tracevforkdone.
2446 (linux_child_insert_fork_catchpoint): Call
2447 linux_supports_tracefork.
2448 (linux_child_insert_vfork_catchpoint): Likewise.
2449 (linux_child_set_syscall_catchpoint): Call
2450 linux_supports_tracesysgood.
2451 (lin_lwp_attach_lwp): Call linux_supports_tracefork.
2452 * nat/linux-nat.h: New file.
2453 * nat/linux-waitpid.c: New file.
2454 * nat/linux-waitpid.h: New file.
2455
2456 2013-08-22 Samuel Bronson <naesten@gmail.com>
2457
2458 ARM Linux support for `catch syscall'.
2459 * syscalls/arm-linux.py: New file.
2460 * syscalls/arm-linux.xml: Likewise.
2461 * arm-linux-tdep.c (arm_linux_get_syscall_number): New function.
2462 (arm_linux_init_abi): Register the new function and syscall xml file.
2463 * data-directory/Makefile.in: Install the new syscall xml file.
2464 * NEWS: Brag about this.
2465
2466 2013-08-22 Pedro Alves <palves@redhat.com>
2467
2468 PR gdb/15871
2469 * corefile.c (target_xfer_memory_error): New function.
2470 (memory_error): Defer EIO to target_memory_error.
2471 (read_memory): Use target_xfer_partial, and handle finer-grained
2472 target xfer errors.
2473 * target.c (target_xfer_error_to_string): New function.
2474 (memory_xfer_partial_1): If memory is known to be
2475 unavailable, return TARGET_XFER_E_UNAVAILABLE instead of -1.
2476 (target_xfer_partial): Make extern.
2477 * target.h (enum target_xfer_error): New enum.
2478 (target_xfer_error_to_string): Declare function.
2479 (target_xfer_partial): Declare function.
2480 (struct target_ops) <xfer_partial>: Adjust describing comment.
2481
2482 2013-08-22 Alan Modra <amodra@gmail.com>
2483
2484 * configure.host: Support powerpc64le-linux and powerpcle-linux hosts.
2485 * configure.tgt: Likewise as targets.
2486
2487 2013-08-20 Doug Evans <dje@google.com>
2488
2489 * buildsym.c (subfile_stack): Move here from buildsym.h.
2490 (pending_macros): Ditto.
2491 (get_macro_table): New function.
2492 (buildsym_init): Initialize subfile_stack.
2493 * coffread.c (type_vector,type_vector_length): Moved here from
2494 buildsym.h.
2495 (INITIAL_TYPE_VECTOR_LENGTH): Ditto.
2496 (coff_symtab_read): Use it.
2497 * dbxread.c (read_ofile_symtab): Delete init of subfile_stack.
2498 * dwarf2read.c (macro_start_file): Replace uses of pending_macros
2499 with call to get_macro_table.
2500 * stabsread.c (type_vector,type_vector_length): Moved here from
2501 buildsym.h.
2502 (INITIAL_TYPE_VECTOR_LENGTH): Ditto.
2503 * buildsym.h (get_macro_table): Declare.
2504
2505 2013-08-20 Tom Tromey <tromey@redhat.com>
2506
2507 * dbxread.c (record_minimal_symbol): Make 'name' argument const.
2508 Update.
2509 (read_dbx_dynamic_symtab): Make 'name' const. Remove casts.
2510
2511 2013-08-20 Doug Evans <dje@google.com>
2512
2513 * blockframe.c: Remove #include "psymtab.h".
2514 * cp-support.c: Ditto.
2515 * source.c: Ditto.
2516 * stack.c: Ditto.
2517
2518 2013-08-20 Tom Tromey <tromey@redhat.com>
2519
2520 PR python/15816:
2521 * exceptions.h (return_mask): Now an enum.
2522 (RETURN_MASK_QUIT, RETURN_MASK_ERROR, RETURN_MASK_ALL): Now
2523 enum constants.
2524
2525 2013-08-20 Tom Tromey <tromey@redhat.com>
2526
2527 * cp-namespace.c (cp_lookup_symbol_imports_or_template): Use
2528 get_objfile_arch.
2529 * elfread.c (elf_rel_plt_read, elf_gnu_ifunc_record_cache)
2530 (elf_gnu_ifunc_resolve_by_got): Use get_objfile_arch.
2531 * jit.c (jit_object_close_impl): Update.
2532 * jv-lang.c (get_dynamics_objfile): Update.
2533 * linespec.c (add_minsym): Use get_dynamics_objfile.
2534 * objfiles.c (get_objfile_bfd_data): Initialize 'gdbarch' field.
2535 (allocate_objfile): Don't initialize 'gdbarch' field.
2536 (get_objfile_arch): Update.
2537 * objfiles.h (struct objfile_per_bfd_storage) <gdbarch>: New field,
2538 moved from...
2539 (struct objfile) <gdbarch>: ... here. Remove.
2540 * stap-probe.c (stap_can_evaluate_probe_arguments): Use
2541 get_objfile_arch.
2542 * symfile.c (init_entry_point_info): Use get_objfile_arch.
2543
2544 2013-08-20 Alan Modra <amodra@gmail.com>
2545
2546 * doublest.c (convert_floatformat_to_doublest): Use fmt->split_half
2547 for IBM long double nan and inf.
2548 (floatformat_is_negative, floatformat_classify,
2549 floatformat_mantissa): Similarly.
2550 (floatformat_ieee_single, floatformat_ieee_double,
2551 floatformat_ieee_quad, floatformat_arm_ext,
2552 floatformat_ia64_spill): Delete unused vars.
2553 (_initialize_doublest): Delete unused function.
2554 * gdbtypes.c (floatformats_ibm_long_double): Use new big- and
2555 little-endian variants of floatformat_ibm_long_double.
2556
2557 2013-08-19 Luis Machado <lgustavo@codesourcery.com>
2558
2559 * Makefile.in (SFILES): Remove common/target-common.c and
2560 add target/waitstatus.c.
2561 (HFILES_NO_SRCDIR): Remove common/target-common.h and add
2562 target/resume.h, target/wait.h and target/waitstatus.h.
2563 (COMMON_OBS): Remove target-common.o and add
2564 waitstatus.o.
2565 (target-common.o): Remove.
2566 (waitstatus.o): New target object file.
2567 * common/target-common.c: Move contents to
2568 target/waitstatus.c and remove.
2569 * common/target-common.h: Move contents to other files and
2570 remove.
2571 (enum resume_kind: Move to target/resume.h.
2572 (TARGET_WNOHANG): Move to target/wait.h.
2573 (enum target_waitkind): Move to target/waitstatus.h.
2574 (struct target_waitstatus): Likewise.
2575 * target.h: Do not include target-common.h and
2576 include target/resume.h, target/wait.h and
2577 target/waitstatus.h.
2578 * target/resume.h: New file.
2579 * target/wait.h: New file.
2580 * target/waitstatus.h: New file.
2581 * target/waitstatus.c: New file.
2582
2583 2013-08-19 Pedro Alves <palves@redhat.com>
2584
2585 * linux-nat.c (linux_test_for_tracefork)
2586 (linux_test_for_tracesysgood, linux_child_follow_fork)
2587 (lin_lwp_attach_lwp, linux_nat_resume): Don't block child signals.
2588 (linux_nat_wait_1): Extend comment.
2589 (linux_async_pipe): Add comment.
2590
2591 2013-08-15 Kevin Buettner <kevinb@redhat.com>
2592
2593 * rl78-tdep.c (RL78_RAW_PC_REGNUM): New enum.
2594 (RL78_PC_REGNUM): Move to list of pseudo-register enums.
2595 (rl78_register_type, rl78_register_name, rl78_register_reggroup_p):
2596 Update to account for fact that PC is now a pseudo-register.
2597 (rl78_pseudo_register_write, rl78_pseudo_register_read): Add
2598 cases for RL78_PC_REGNUM.
2599
2600 2013-08-15 Muhammad Bilal <mbilal@codesourcery.com>
2601
2602 PR cli/15841
2603 * top.c (quit_force): Skip writing history file
2604 if input is not from terminal.
2605
2606 2013-08-14 Tom Tromey <tromey@redhat.com>
2607
2608 * remote.c (struct remote_state) <echo_nextthread, nextthread,
2609 resultthreadlist>: New fields.
2610 (OPAQUETHREADBYTES, threadref, MAXTHREADLISTRESULTS): Move earlier.
2611 (remote_get_threadlist, remote_threadlist_iterator): Use
2612 new fields. Remove static variables.
2613
2614 2013-08-14 Tom Tromey <tromey@redhat.com>
2615
2616 * remote.c (struct remote_state) <remote_stopped_by_watchpoint_p,
2617 remote_watch_data_address>: New fields.
2618 (remote_stopped_by_watchpoint_p, remote_watch_data_address): Remove.
2619 (process_stop_reply, remote_wait_as)
2620 (remote_check_watch_resources, remote_stopped_data_address): Update.
2621
2622 2013-08-14 Tom Tromey <tromey@redhat.com>
2623
2624 * remote.c (struct remote_state) <async_client_callback,
2625 async_client_context>: New fields.
2626 (async_client_callback, async_client_context): Remove.
2627 (remote_async_serial_handler, remote_async): Update.
2628
2629 2013-08-14 Tom Tromey <tromey@redhat.com>
2630
2631 * remote.c (sizeof_pkt): Remove.
2632 (remote_trace_find): Use rs->buf_size, not sizeof_pkt.
2633
2634 2013-08-14 Tom Tromey <tromey@redhat.com>
2635
2636 * remote.c (struct remote_state) <use_threadinfo_query,
2637 use_threadextra_query>: New fields.
2638 (remote_threads_info, remote_threads_extra_info)
2639 (remote_open_1): Update.
2640
2641 2013-08-14 Tom Tromey <tromey@redhat.com>
2642
2643 * remote.c (struct remote_state) <finished_object,
2644 finished_annex, finished_offset>: New fields.
2645 (remote_read_qxfer): Use remote_state fields; remove static
2646 variables.
2647
2648 2013-08-14 Tom Tromey <tromey@redhat.com>
2649
2650 * remote.c (struct remote_state) <last_sent_step>:
2651 New field.
2652 (last_sent_step): Remove.
2653 (remote_resume, remote_wait_as): Update.
2654
2655 2013-08-14 Tom Tromey <tromey@redhat.com>
2656
2657 * remote.c (struct remote_state) <last_sent_signal>:
2658 New field.
2659 (last_sent_signal): Remove.
2660 (new_remote_state, remote_resume, remote_wait_as): Update.
2661
2662 2013-08-14 Tom Tromey <tromey@redhat.com>
2663
2664 * remote.c (struct remote_state) <last_program_signals_packet>:
2665 New field.
2666 (last_program_signals_packet): Remove.
2667 (remote_program_signals, remote_open_1): Update.
2668
2669 2013-08-14 Tom Tromey <tromey@redhat.com>
2670
2671 * remote.c (struct remote_state) <last_pass_packet>:
2672 New field.
2673 (last_pass_packet): Remove.
2674 (remote_pass_signals, remote_open_1): Update.
2675
2676 2013-08-14 Tom Tromey <tromey@redhat.com>
2677
2678 * remote.c (struct remote_state) <remote_traceframe_number>:
2679 New field.
2680 (remote_traceframe_number): Remove.
2681 (new_remote_state, remote_open_1, set_remote_traceframe)
2682 (remote_trace_find): Update.
2683
2684 2013-08-14 Tom Tromey <tromey@redhat.com>
2685
2686 * remote.c (struct remote_state) <general_thread, continue_thread>:
2687 New fields.
2688 (general_thread, continue_thread): Remove.
2689 (record_currthread, set_thread, set_general_process)
2690 (remote_open_1, extended_remote_attach_1, remote_wait_as)
2691 (extended_remote_mourn_1): Update.
2692
2693 2013-08-14 Tom Tromey <tromey@redhat.com>
2694
2695 * remote.c (struct remote_state) <remote_desc>: New field.
2696 (remote_desc): Remove.
2697 (remote_threads_info, remote_threads_extra_info, remote_close)
2698 (send_interrupt_sequence, remote_start_remote, remote_open_1)
2699 (readchar, remote_xfer_partial, remote_rcmd, packet_command)
2700 (remote_hostio_send_command, remote_file_put, remote_file_get)
2701 (remote_file_delete, remote_can_async_p, remote_is_async_p)
2702 (remote_async, remote_new_objfile, set_range_stepping): Update.
2703
2704 2013-08-14 Tom Tromey <tromey@redhat.com>
2705
2706 * remote.c (remote_state): Now a pointer.
2707 (get_remote_state_raw): Update.
2708 (new_remote_state): New function.
2709 (_initialize_remote): Use new_remote_state.
2710
2711 2013-08-14 Tom Tromey <tromey@redhat.com>
2712
2713 * remote.c (remote_protocol_features): Now const.
2714
2715 2013-08-14 Tom Tromey <tromey@redhat.com>
2716
2717 * remote.c (crc32_table, crc32): Remove.
2718 (remote_verify_memory): Use xcrc32.
2719
2720 2013-08-13 Sergio Durigan Junior <sergiodj@redhat.com>
2721
2722 * value.h (create_internalvar_type_lazy): Adjust prototype
2723 declaration.
2724
2725 2013-08-13 Andrew Burgess <aburgess@broadcom.com>
2726
2727 * common/format.c (parse_format_string): Don't allow '#' flag for
2728 pointer arguments in format string.
2729
2730 2013-08-13 Pierre Muller <muller@sourceware.org>
2731
2732 * utils.c (init_page_info): Only call tgetnum function
2733 if rl_get_screen_size did not return useful values.
2734
2735 2013-08-12 Ali Anwar <ali_anwar@codesourcery.com>
2736
2737 PR breakpoints/15117
2738 * linespec.c (linespec_parse_basic): Check for convenience
2739 variable or history value while parsing.
2740
2741 2013-08-12 Sergio Durigan Junior <sergiodj@redhat.com>
2742
2743 Revert implementation of gdbarch_gdb_signal_{to,from}_target for
2744 AVR.
2745 * avr-tdep.c: Remove include of "linux-tdep.h". Remove enum with
2746 different signals between the generic Linux kernel implementation
2747 and AVR's.
2748 (avr_linux_gdb_signal_from_target): Delete.
2749 (avr_linux_gdb_signal_to_target): Delete.
2750 (avr_gdbarch_init): Don't set gdbarch_gdb_signal_{to,from}_target.
2751
2752 2013-08-09 Doug Evans <dje@google.com>
2753
2754 * dwarf2read.c (create_addrmap_from_index): Ignore bad address table
2755 entries.
2756
2757 2013-08-09 Sergio Durigan Junior <sergiodj@redhat.com>
2758
2759 * linux-tdep.c: Define enum with generic signal numbers.
2760 (linux_gdb_signal_from_target): New function.
2761 (linux_gdb_signal_to_target): Likewise.
2762 (linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
2763 methods to the functions above.
2764 * linux-tdep.h (linux_gdb_signal_from_target): New prototype.
2765 (linux_gdb_signal_to_target): Likewise.
2766 * alpha-linux-tdep.c: Define new enum with signals different
2767 from generic Linux kernel.
2768 (alpha_linux_gdb_signal_from_target): New function.
2769 (alpha_linux_gdb_signal_to_target): Likewise.
2770 (alpha_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
2771 with the functions mentioned above.
2772 * avr-tdep.c: Define enum with differences between Linux kernel
2773 and AVR signals.
2774 (avr_linux_gdb_signal_from_target): New function.
2775 (avr_linux_gdb_signal_to_target): Likewise.
2776 (avr_gdbarch_init): Set gdbarch_gdb_signal_{to,from}_target to
2777 the functions mentioned above.
2778 * sparc-linux-tdep.c: Define enum with differences between SPARC
2779 and generic Linux kernel signal numbers.
2780 (sparc32_linux_gdb_signal_from_target): New function.
2781 (sparc32_linux_gdb_signal_to_target): Likewise.
2782 (sparc32_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
2783 to the functions defined above.
2784 * xtensa-linux-tdep.c: Define enum with differences between
2785 Xtensa and Linux kernel generic signals.
2786 (xtensa_linux_gdb_signal_from_target): New function.
2787 (xtensa_linux_gdb_signal_to_target): Likewise.
2788 (xtensa_linux_init_abi): Set gdbarch_gdb_signal_to_target
2789 to the functions defined above.
2790 * mips-linux-tdep.c: Define enum with differences between
2791 signals in MIPS and Linux kernel generic ones.
2792 (mips_gdb_signal_to_target): New function.
2793 (mips_gdb_signal_from_target): Redefine to use new enum, handle
2794 only different signals from the Linux kernel generic.
2795 (mips_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
2796 the functions defined above.
2797 * mips-linux-tdep.h (enum mips_signals): Remove.
2798
2799 2013-08-09 Pedro Alves <palves@redhat.com>
2800
2801 * avr-tdep.c (XMALLOC): Delete macro.
2802 * cli/cli-dump.c (XMALLOC): Delete macro.
2803
2804 2013-08-09 Pedro Alves <palves@redhat.com>
2805
2806 * cli/cli-dump.c: Don't include cli/cli-dump.h.
2807 (scan_expression_with_cleanup, scan_filename_with_cleanup)
2808 (fopen_with_cleanup, add_dump_command): Make static.
2809 * cli/cli-dump.h: Delete file.
2810 * Makefile.in (HFILES_NO_SRCDIR): Remove reference to
2811 cli/cli-dump.h.
2812
2813 2013-08-09 Pedro Alves <palves@redhat.com>
2814
2815 * tracepoint.c (tfile_start): Show tilde-expanded filename in
2816 error message.
2817
2818 2013-08-09 Pedro Alves <palves@redhat.com>
2819
2820 * breakpoint.c (save_breakpoints): Show tilde-expanded filename in
2821 error message.
2822
2823 2013-08-09 Pedro Alves <palves@redhat.com>
2824
2825 * gcore.c (create_gcore_bfd): Don't use tilde_expand here.
2826 (gcore_command): Use tilde_expand here, and when showing the
2827 filename to the user, show the expanded version.
2828
2829 2013-08-09 Yao Qi <yao@codesourcery.com>
2830
2831 * stack.c (read_frame_arg): Set 'entryval_error' to NULL if
2832 'entryval' is set.
2833
2834 2013-08-08 Azat Khuzhin <a3at.mail@gmail.com> (tiny change)
2835
2836 * gcore.c (create_gcore_bfd): Use tilde_expand.
2837
2838 2013-08-08 Yao Qi <yao@codesourcery.com>
2839
2840 * frame.h (read_frame_local): Declare.
2841 * mi/mi-cmd-stack.c (list_args_or_locals): Call
2842 read_frame_local.
2843 * stack.c (read_frame_local): New.
2844
2845 2013-08-08 Yao Qi <yao@codesourcery.com>
2846
2847 * mi/mi-cmd-stack.c: Update comments to function
2848 list_args_or_locals.
2849
2850 2013-08-07 Tom Tromey <tromey@redhat.com>
2851
2852 PR symtab/15028:
2853 * dwarf2read.c (struct process_psymtab_comp_unit_data): New.
2854 (process_psymtab_comp_unit_reader): Use it.
2855 (process_psymtab_comp_unit): Update. Add "pretend_language"
2856 argument.
2857 (dwarf2_build_psymtabs_hard): Update.
2858 (scan_partial_symbols): Pass CU's language to
2859 process_psymtab_comp_unit.
2860
2861 2013-08-07 Tom Tromey <tromey@redhat.com>
2862
2863 * dwarf2read.c (dw2_get_primary_filename_reader): Remove.
2864 (dwarf2_gdb_index_functions): Update.
2865 * psymtab.c (find_symbol_file_from_partial): Remove.
2866 (psym_functions): Update.
2867 * symfile.h (struct quick_symbol_functions) <find_symbol_file>:
2868 Remove.
2869
2870 2013-08-07 Tom Tromey <tromey@redhat.com>
2871
2872 * symfile.c (set_initial_language): Look up "main" symbol
2873 and use its language.
2874 * symtab.c (find_main_filename): Remove.
2875 * symtab.h (find_main_filename): Remove.
2876
2877 2013-08-07 Tom Tromey <tromey@redhat.com>
2878
2879 * dwarf2read.c (recursively_compute_inclusions): Add
2880 "immediate_parent" argument. Set symtab's "user" field
2881 if not set.
2882 (compute_symtab_includes): Update.
2883
2884 2013-08-07 Tom Tromey <tromey@redhat.com>
2885
2886 * linespec.c (convert_linespec_to_sals): Use maybe_add_address
2887 when adding label symbols.
2888
2889 2013-08-07 Raunaq Bathija <raunaq12@in.ibm.com>
2890 Ulrich Weigand <uweigand@de.ibm.com>
2891
2892 * configure.tgt (powerpc64-*-aix*): Match powerpc64 running aix.
2893 * configure.host (powerpc64-*-aix*): Likewise.
2894
2895 2013-08-07 Raunaq Bathija <raunaq12@in.ibm.com>
2896 Ulrich Weigand <uweigand@de.ibm.com>
2897
2898 * gdb_ptrace.h: Use ptrace64 instead of ptrace if HAVE_PTRACE64
2899 is defined.
2900 * rs6000-nat.c: Check for __ld_info64_ if compiling 64 BIT gdb.
2901 (rs6000_ptrace32): Call ptrace64 instead of ptrace if present.
2902 (rs6000_ptrace64): Call ptace64 instead of ptracex if present.
2903 * configure.ac: Check for ptrace64.
2904 * configure, config.in: Regenerate.
2905
2906 2013-08-07 Raunaq Bathija <raunaq12@in.ibm.com>
2907 Ulrich Weigand <uweigand@de.ibm.com>
2908
2909 * aixthread.c: Call ptrace64 instead of ptracex if defined.
2910 Call ptrace64 instead of ptrace if defined.
2911 Add macro addr_ptr to take care of ptrace address argument.
2912 (pdc_read_regs): Likewise.
2913 (pdc_write_regs): Likewise.
2914 (aix_thread_resume): Likewise.
2915 (fetch_regs_kernel_thread): Likewise.
2916 (store_regs_kernel_thread): Likewise.
2917
2918 2013-08-07 Anton Blanchard <anton@samba.org>
2919
2920 * MAINTAINERS: Add myself to Write After Approval.
2921
2922 2013-08-05 Tom Tromey <tromey@redhat.com>
2923
2924 * aix-thread.c (_initialize_aix_thread): Use
2925 complete_target_initialization.
2926 * bsd-uthread.c (_initialize_bsd_uthread): Use
2927 complete_target_initialization.
2928 * dec-thread.c (_initialize_dec_thread): Use
2929 complete_target_initialization.
2930 * ravenscar-thread.c (_initialize_ravenscar): Use
2931 complete_target_initialization.
2932 * sol-thread.c (_initialize_sol_thread): Use
2933 complete_target_initialization.
2934 * spu-multiarch.c (_initialize_spu_multiarch): Use
2935 complete_target_initialization.
2936
2937 2013-08-05 Tom Tromey <tromey@redhat.com>
2938
2939 * ada-exp.y (write_var_or_type): Use bound_minimal_symbol.
2940 * ada-lang.c (ada_lookup_simple_minsym): Return
2941 bound_minimal_symbol.
2942 * ada-lang.h (ada_lookup_simple_minsym): Update.
2943 * c-exp.y (variable): Use lookup_bound_minimal_symbol.
2944 * f-exp.y (variable): Use lookup_bound_minimal_symbol.
2945 * go-exp.y (variable): Use lookup_bound_minimal_symbol.
2946 * jv-exp.y (push_expression_name): Use lookup_bound_minimal_symbol.
2947 * m2-exp.y (variable): Use lookup_bound_minimal_symbol.
2948 * minsyms.c (msymbol_objfile): Remove.
2949 (lookup_minimal_symbol_internal): New function, from
2950 lookup_minimal_symbol.
2951 (lookup_minimal_symbol): Rewrite using
2952 lookup_minimal_symbol_internal.
2953 (lookup_bound_minimal_symbol): New function.
2954 * minsyms.h (msymbol_objfile): Remove.
2955 (lookup_bound_minimal_symbol): Declare.
2956 * p-exp.y (variable): Use lookup_bound_minimal_symbol.
2957 * parse.c (write_exp_msymbol): Change parameter to a
2958 bound_minimal_symbol.
2959 (write_dollar_variable): Use lookup_bound_minimal_symbol.
2960 * parser-defs.h (write_exp_msymbol): Update.
2961 * printcmd.c (address_info): Use lookup_bound_minimal_symbol.
2962 * symfile.c (simple_read_overlay_table): Use
2963 lookup_bound_minimal_symbol.
2964 * symtab.c (skip_prologue_sal): Don't use msymbol_objfile.
2965 (search_symbols): Likewise.
2966 (print_msymbol_info): Take a bound_minimal_symbol argument.
2967 (symtab_symbol_info, rbreak_command): Update.
2968 * symtab.h (struct symbol_search) <msymbol>: Change type
2969 to bound_minimal_symbol.
2970 * valops.c (find_function_in_inferior): Use
2971 lookup_bound_minimal_symbol.
2972 * value.c (value_fn_field): Use lookup_bound_minimal_symbol.
2973
2974 2013-08-05 Jan Kratochvil <jan.kratochvil@redhat.com>
2975
2976 Code cleanup.
2977 * remote.c (cleanup_sigint_signal_handler): Rename the declaration
2978 to ...
2979 (async_cleanup_sigint_signal_handler): ... this.
2980 (initialize_sigint_signal_handler): Remove declaration.
2981 (handle_remote_sigint): Rename the declaration to ...
2982 (async_handle_remote_sigint): ... this.
2983 (handle_remote_sigint_twice): Rename the declaration to ...
2984 (async_handle_remote_sigint_twice): ... this.
2985 (async_remote_interrupt, async_remote_interrupt_twice)
2986 (remote_interrupt): Remove the declarations.
2987 (remote_interrupt_twice): Rename the declaration ...
2988 (sync_remote_interrupt_twice): ... this.
2989 (sigint_remote_twice_token): Rename the variable to ...
2990 (async_sigint_remote_twice_token): ... this.
2991 (sigint_remote_token): Rename the variable to ...
2992 (async_sigint_remote_token): ... this.
2993 (initialize_sigint_signal_handler): Rename the function to ...
2994 (async_initialize_sigint_signal_handler): ... this. Update the name
2995 inside.
2996 (handle_remote_sigint): Rename the function to ...
2997 (async_handle_remote_sigint): ... this. Update the names inside.
2998 (handle_remote_sigint_twice): Rename the function to ...
2999 (async_handle_remote_sigint_twice): ... this. Update the names inside.
3000 (cleanup_sigint_signal_handler): Rename the function to ...
3001 (async_cleanup_sigint_signal_handler): ... this.
3002 (remote_interrupt): Rename the function to ...
3003 (sync_remote_interrupt): this. Update the names inside.
3004 (remote_interrupt_twice): Rename the function to ...
3005 (sync_remote_interrupt_twice): this. Update the names inside.
3006 (remote_terminal_inferior, remote_terminal_ours, remote_wait_as)
3007 (_initialize_remote): Update the names inside.
3008
3009 2013-08-02 Tom Tromey <tromey@redhat.com>
3010
3011 PR symtab/15719:
3012 * breakpoint.c (update_watchpoint, watchpoint_check)
3013 (watch_command_1): Update.
3014 * eval.c (fetch_subexp_value): Add "preserve_errors"
3015 parameter.
3016 * ppc-linux-nat.c (check_condition): Update.
3017 * value.h (fetch_subexp_value): Update.
3018
3019 2013-08-02 Andrew Burgess <aburgess@broadcom.com>
3020
3021 * mi/mi-interp.c (mi_interpreter_resume): Remove call to
3022 add_file_handler.
3023
3024 2013-08-01 Doug Evans <dje@google.com>
3025
3026 PR symtab/15691
3027 * dwarf2read.c (struct dwarf2_per_cu_data): New member tu_read.
3028 (fill_in_sig_entry_from_dwo_entry): Reorganize asserts.
3029 Add assert of sig_entry->dwo_unit == NULL.
3030 (lookup_dwo_signatured_type): Don't assign TU to a DWO if the TU
3031 had already been read.
3032 (read_signatured_type): Set per_cu.tu_read.
3033
3034 PR symtab/15695
3035 * valops.c (value_struct_elt): Add missing call to check_typedef.
3036 (value_find_oload_method_list): Ditto.
3037
3038 * symtab.c (do_free_search_symbols_cleanup): Change arg to,
3039 effectively, struct symbol_search **.
3040 (make_cleanup_free_search_symbols): Change arg to struct
3041 symbol_search **. All callers updated.
3042 (compare_search_syms): Compare symtab file name and block as well.
3043 (search_symbols_equal): New function.
3044 (sort_search_symbols_remove_dups): Renamed from sort_search_symbols.
3045 New args new_head, new_tail. Result is now void. Remove dups after
3046 sorting the symbols.
3047 (search_symbols): Sort all found symbols once, after all have been
3048 found, and remove duplicates. Simplify cleanup tracking of result.
3049 * symtab.h (make_cleanup_free_search_symbols): Update prototype.
3050
3051 Further workarounds for binutils/15021.
3052 * dwarf2read.c (recursively_compute_inclusions): Change type of result
3053 parameter to VEC (symtab_ptr) **. New parameter all_type_symtabs.
3054 Watch for duplicate symtabs coming from type units.
3055 (compute_symtab_includes): Update call to
3056 recursively_compute_inclusions. Build vector of included symtabs
3057 instead of per_cus.
3058 * symtab.h (symtab_ptr): New typedef.
3059 (DEF_VEC_P (symtab_ptr)): New VEC type.
3060 * linespec.c (symtab_p): Delete. All uses updated to use symtab_ptr
3061 instead.
3062
3063 2013-08-01 Andrew Burgess <aburgess@broadcom.com>
3064
3065 * cli/cli-script.c (script_from_file): Remove use of
3066 error_pre_print.
3067 * main.c (captured_main): Remove use of error_pre_print and
3068 quit_pre_print.
3069 * utils.c (error_pre_print, quit_pre_print): Remove.
3070 * utils.h (error_pre_print, quit_pre_print): Likewise.
3071
3072 2013-08-01 Yao Qi <yao@codesourcery.com>
3073
3074 * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Parse argv
3075 with mi_getopt.
3076 (mi_cmd_stack_list_variables): Likewise.
3077
3078 2013-07-31 Andrew Burgess <aburgess@broadcom.com>
3079
3080 * exceptions.c (deprecated_throw_reason): Remove.
3081 * exceptions.h (deprecated_throw_reason): Remove.
3082
3083 2013-07-31 Andrew Burgess <aburgess@broadcom.com>
3084
3085 * remote-mips.c (mips_error): Replace use of
3086 deprecated_throw_reason with throw_verror. Use the error message
3087 passed to mips_error as the error message for throw_verror.
3088
3089 2013-07-31 Andrew Burgess <aburgess@broadcom.com>
3090
3091 * monitor.c (monitor_interrupt_query): Replace use of
3092 deprecated_throw_reason with quit.
3093 * nto-procfs.c (interrupt_query): Likewise.
3094 * remote-fileio.c (remote_fileio_sig_exit): Likewise.
3095 * remote-mips.c (mips_kill): Likewise.
3096 * remote.c (interrupt_query): Likewise.
3097
3098 2013-07-31 Andrew Burgess <aburgess@broadcom.com>
3099
3100 * utils.c (internal_verror): Replace use of deprecated_throw_reason
3101 with call to fatal.
3102
3103 2013-07-31 Pedro Alves <pedro@codesourcery.com>
3104 Yao Qi <yao@codesourcery.com>
3105
3106 * tracepoint.c (trace_dump_command): Select the current frame.
3107
3108 2013-07-30 Doug Evans <dje@google.com>
3109
3110 * dwarf2read.c (process_queue): Add type signature to debug output.
3111
3112 2013-07-30 Andrew Burgess <aburgess@broadcom.com>
3113
3114 * value.c (value_fetch_lazy): Mark optimized out values as such
3115 rather than raising an error.
3116
3117 2013-07-30 Andrew Burgess <aburgess@broadcom.com>
3118
3119 * value.c (value_fetch_lazy): Ensure parent value is not lazy
3120 before checking which bits of the parent, not the child, value are
3121 valid.
3122
3123 2013-07-30 Muhammad Bilal <mbilal@codesorcery.com>
3124
3125 PR gdb/15715
3126 * top.c: Include "filenames.h".
3127 (set_history_filename): New function.
3128 (init_main): Install it as set hook of the "set history filename"
3129 command.
3130
3131 2013-07-30 Sanimir Agovic <sanimir.agovic@intel.com>
3132
3133 * dwarf2read.c (dwarf2_get_ref_die_offset): Constify struct
3134 attribute parameter.
3135 (dwarf2_const_value_data): Constify struct attribute parameter.
3136 (dwarf2_const_value): Constify struct attribute parameter.
3137 (dwarf2_const_value_attr): Constify struct attribute parameter.
3138 (lookup_die_type): Constify struct attribute parameter.
3139 (dwarf2_get_attr_constant_value): Constify struct attribute parameter.
3140 (follow_die_ref_or_sig): Constify struct attribute parameter.
3141 (follow_die_ref): Constify struct attribute parameter.
3142 (follow_die_sig): Constify struct attribute parameter.
3143 (get_DW_AT_signature_type): Constify struct attribute parameter.
3144 (get_type_unit_group): Constify struct attribute parameter.
3145 (fill_in_loclist_baton): Constify struct attribute parameter.
3146 (dwarf2_symbol_mark_computed): Constify struct attribute parameter.
3147 (type_unit_group): Constify struct attribute parameter.
3148
3149 2013-07-30 Sanimir Agovic <sanimir.agovic@intel.com>
3150
3151 * dwarf2read.c (attr_form_is_block): Make argument const.
3152 (attr_form_is_section_offset): Make argument const.
3153 (attr_form_is_constant): Make argument const.
3154 (attr_form_is_ref): Make argument const.
3155
3156 2013-07-30 Sanimir Agovic <sanimir.agovic@intel.com>
3157
3158 * dwarf2read.c (attr_is_ref): Rename to attr_form_is_ref.
3159 All uses updated.
3160 (attr_form_is_ref): Moved below attr_form_is_constant.
3161
3162 2013-07-29 Doug Evans <dje@google.com>
3163
3164 * main.c (captured_command_loop): Tweak comment.
3165
3166 * target.c (target_async_permitted_1): Fix comment.
3167
3168 * symtab.c (iterate_over_some_symtabs): Add comment.
3169
3170 * symtab.c (iterate_over_some_symtabs): Fix indentation.
3171
3172 2013-07-27 Yao Qi <yao@codesourcery.com>
3173
3174 * NEWS: Mention that GDBserver now supports hardware
3175 watchpoints on the MIPS GNU/Linux target.
3176
3177 2013-07-27 Yao Qi <yao@codesourcery.com>
3178
3179 * Makefile.in (HFILES_NO_SRCDIR): Add
3180 common/mips-linux-watch.h.
3181 (mips-linux-watch.o): New rule.
3182 * common/mips-linux-watch.c: New.
3183 * common/mips-linux-watch.h: New.
3184 * config/mips/linux.mh (NATDEPFILES): Add mips-linux-watch.o
3185 * mips-linux-nat.c: Include mips-linux-watch.h.
3186 (W_BIT, R_BIT, I_BIT, W_MASK, R_MASK, I_MASK, IRW_MASK): Move
3187 to common/mips-linux-watch.h.
3188 (MAX_DEBUG_REGISTER): Likewise.
3189 (enum pt_watch_style): Likewise.
3190 (struct mips32_watch_regs): Likewise.
3191 (struct mips64_watch_regs): Likewise.
3192 (struct pt_watch_regs): Likewise.
3193 (struct mips_watchpoint): Likewise.
3194 (mips_linux_watch_get_irw_mask): Move to
3195 common/mips-linux-watch.c.
3196 (get_reg_mask, mips_linux_watch_get_num_valid): Likewise.
3197 (mips_linux_watch_get_watchlo): Likewise.
3198 (mips_linux_watch_set_watchlo): Likewise.
3199 (mips_linux_watch_get_watchhi): Likewise.
3200 (mips_linux_watch_set_watchhi): Likewise.
3201 (mips_linux_read_watch_registers): Likewise.
3202 (mips_linux_watch_type_to_irw): Likewise.
3203 (mips_linux_stopped_data_address, fill_mask): Likewise.
3204 (mips_linux_watch_try_one_watch): Likewise.
3205 (mips_linux_watch_populate_regs): Likewise.
3206
3207 2013-07-27 Yao Qi <yao@codesourcery.com>
3208
3209 * mips-linux-nat.c (get_irw_mask): Rename to ...
3210 (mips_linux_watch_get_irw_mask): ... this. Rename parameter
3211 'set' to 'n'. Update function comment. All callers changed.
3212 (get_reg_mask): Rename parameter 'set' to 'n'. Update
3213 function comment. All callers changed.
3214 (get_num_valid): Rename to ...
3215 (mips_linux_watch_get_num_valid): ... this. Rename parameter
3216 'set' to 'n'. Update function comment. All callers changed.
3217 (get_watchlo): Rename to ...
3218 (mips_linux_watch_get_watchlo): ... this. Rename parameter
3219 'set' to 'n'. Update function comment. All callers changed.
3220 (set_watchlo): Rename to ...
3221 (mips_linux_watch_set_watchlo): ... this. Rename parameter
3222 'set' to 'n'. Update function comment. All callers changed.
3223 (get_watchhi): Rename to ...
3224 (mips_linux_watch_get_watchhi): ... this. Update function
3225 comment. All callers changed.
3226 (set_watchhi): Rename to ...
3227 (mips_linux_watch_set_watchhi): ... this. Update function
3228 comment. All callers changed.
3229 (mips_linux_read_watch_registers): Update function comment.
3230 Add new parameters 'lwpid', 'watch_readback', and
3231 'watch_readback_valid'. Update.
3232 (type_to_irw): Rename to ...
3233 (mips_linux_watch_type_to_irw): ... this. Update function
3234 comment. All callers changed.
3235 (fill_mask): Update function comment.
3236 (try_one_watch): Rename to ...
3237 (mips_linux_watch_try_one_watch): ... this. Change the type
3238 of parameter 'irw' from 'unsigned' to 'uint32_t'.
3239 (populate_regs_from_watches): Rename to ...
3240 (mips_linux_watch_populate_regs): ... this. Add parameter
3241 'current_watches'. All callers changed.
3242
3243 2013-07-27 Yao Qi <yao@codesourcery.com>
3244
3245 * mips-linux-nat.c (MAX_DEBUG_REGISTER): Move it earlier in
3246 the code.
3247 (PTRACE_SET_WATCH_REGS, enum pt_watch_style): Remove.
3248 (struct mips32_watch_regs, struct mips64_watch_regs): Remove.
3249 (struct pt_watch_regs): Likewise.
3250 [!PTRACE_GET_WATCH_REGS] (PTRACE_SET_WATCH_REGS): New macro.
3251 [!PTRACE_GET_WATCH_REGS] (enum pt_watch_style): New.
3252 [!PTRACE_GET_WATCH_REGS] (struct mips32_watch_regs): New.
3253 [!PTRACE_GET_WATCH_REGS] (struct mips64_watch_regs): New.
3254 [!PTRACE_GET_WATCH_REGS] (struct pt_watch_regs): New.
3255
3256 2013-07-27 Yao Qi <yao@codesourcery.com>
3257
3258 * breakpoint.h: Include break-common.h.
3259 (enum target_hw_bp_type): Move to ...
3260 * common/break-common.h: ... here. New.
3261
3262 2013-07-26 Cyril Nikolaev <cyril@nichtverstehen.de>
3263
3264 * inflow.c (terminal_init_inferior_with_pgrp): Save inferior
3265 process group regardless of having tty on stdin.
3266
3267 2013-07-25 Doug Evans <dje@google.com>
3268
3269 * linux-fork.h (detach_fork): Delete.
3270
3271 2013-07-25 Tom Tromey <tromey@redhat.com>
3272
3273 PR remote/15256, PR remote/15266:
3274 * bfd-target.c (target_bfd_reopen): Initialize to_magic.
3275 * monitor.c (monitor_detach): Use unpush_target.
3276 * remote-m32r-sdi.c (m32r_detach): Use unpush_target.
3277 * remote-mips.c (mips_detach): Use unpush_target. Don't
3278 call mips_close.
3279 * remote-sim.c (gdbsim_detach): Use unpush_target.
3280 * target.c (pop_target): Remove.
3281 (pop_all_targets_above): Don't call target_close.
3282 (target_close): Assert that the target is unpushed.
3283 * target.h (pop_target): Don't declare.
3284 * tracepoint.c (tfile_open): Use unpush_target.
3285
3286 2013-07-25 Tom Tromey <tromey@redhat.com>
3287
3288 * linux-thread-db.c (init_thread_db_ops): Call
3289 complete_target_initialization.
3290 (_initialize_thread_db): Don't call add_target.
3291 * target.c (complete_target_initialization): New function.
3292 (add_target_with_completer): Call it.
3293 * target.h (complete_target_initialization): Declare.
3294
3295 2013-07-25 Mark Kettenis <kettenis@gnu.org>
3296
3297 * hppa-tdep.h (enum hppa_regnum): Add members for all space registers.
3298 * hppaobsd-tdep.c (HPPAOBSD_SIZEOF_GREGS): Add comment.
3299 (HPPANBSD_SIZEOF_GREGS): New define.
3300 (hppaobsd_supply_gregset): Handle additional registers.
3301 * hppabsd-nat.c (hppabsd_gregset_supplies_p): Adjust to indicate
3302 we provide more registers now.
3303 (hppabsd_supply_gregset): Supply additional registers.
3304 (hppabsd_collect_gregset): Collect additional registers.
3305
3306 2013-07-25 Mark Kettenis <kettenis@gnu.org>
3307
3308 * hppabsd-tdep.c: Include "dwarf2-frame.h".
3309 (hppabsd_dwarf2_frame_init_reg): New function.
3310 (hppabsd_init_abi): Hook in the DWARF CFI frame unwinder.
3311
3312 2013-07-25 Andrew Burgess <aburgess@broadcom.com>
3313
3314 * mi/mi-main.c (output_register): Make MI 'r' format use standard
3315 'z' format code. Remove error for optimized out values, standard
3316 code will handle these fine.
3317
3318 2013-07-25 Andrew Burgess <aburgess@broadcom.com>
3319
3320 * NEWS: Mention new 'z' formatter.
3321 * printcmd.c (print_scalar_formatted): Add new 'z' formatter.
3322 (_initialize_printcmd): Mention 'z' formatter in help text of the
3323 'x' command.
3324
3325 2013-07-24 Maciej W. Rozycki <macro@codesourcery.com>
3326
3327 * mips-tdep.c (micromips_deal_with_atomic_sequence): Correct
3328 formatting.
3329
3330 2013-07-24 Sergio Durigan Junior <sergiodj@redhat.com>
3331
3332 * breakpoint.c (create_longjmp_master_breakpoint): Check if probe
3333 interface can evaluate arguments. Fallback to the old mode if it
3334 cannot.
3335 (create_exception_master_breakpoint): Likewise.
3336 * elfread.c (elf_can_evaluate_probe_arguments): New function.
3337 (struct sym_probe_fns elf_probe_fns): Export function above to the
3338 probe interface.
3339 * probe.c (can_evaluate_probe_arguments): New function.
3340 * probe.h (struct probe_ops) <can_evaluate_probe_arguments>: New
3341 function pointer.
3342 (can_evaluate_probe_arguments): New function prototype.
3343 * solib-svr4.c (svr4_create_solib_event_breakpoints): Check if
3344 probe interface can evaluate arguments. Fallback to the old mode
3345 if it cannot.
3346 * stap-probe.c (stap_get_probe_argument_count): Check if probe
3347 interface can evaluate arguments. Warning the user if it cannot.
3348 (stap_can_evaluate_probe_arguments): New function.
3349 (struct probe_ops stap_probe_ops): Export function above to the
3350 probe interface.
3351 * symfile.h (struct sym_probe_fns) <can_evaluate_probe_arguments>:
3352 New function pointer.
3353
3354 2013-07-24 Luis Machado <lgustavo@codesourcery.com>
3355
3356 * Makefile.in (SFILES): Add common/target-common.c.
3357 Add common/target-common.h to headers.
3358 (COMMON_OBS): Add target-common.o.
3359 (target-common.o): New target.
3360 * linux-nat.h (resume_kind): Move to common/target-common.h.
3361 * target.c (target_waitstatus_to_string): Move to
3362 common/target-common.c.
3363 * target.h: Include target-common.h.
3364 (target_waitkind): Move to common/target-common.h.
3365 (target_waitstatus): Likewise.
3366 (TARGET_WNOHANG): Likewise.
3367 * common/target-common.c: New file.
3368 * common/target-common.h: New file.
3369
3370 2013-07-24 Doug Evans <dje@google.com>
3371
3372 * dwarf2read.c (lookup_dwo_cutu): Change missing DWO complaint to
3373 a warning.
3374
3375 2013-07-23 Yao Qi <yao@codesourcery.com>
3376
3377 * i386-tdep.c (i386_in_stack_tramp_p): Remove unused
3378 parameter 'gdbarch'.
3379 (i386_stack_tramp_frame_sniffer): Caller update.
3380 * i386-linux-tdep.c (i386_linux_core_read_xcr0): Remove
3381 parameter 'gdbarch' and 'target'.
3382 (i386_linux_core_read_description): Caller update.
3383 * amd64-linux-tdep.c (amd64_linux_core_read_description):
3384 Likewise.
3385 * i386-linux-tdep.h (i386_linux_core_read_xcr0): Update
3386 declaration.
3387
3388 2013-07-23 Tom Tromey <tromey@redhat.com>
3389
3390 * dwarf2read.c (init_cutu_and_read_dies): Revert patch from
3391 2013-07-22.
3392
3393 2013-07-22 Doug Evans <dje@google.com>
3394
3395 * exec.h (remove_target_sections): Delete arg abfd.
3396 * exec.c (exec_close): Update call to remove_target_sections.
3397 (remove_target_sections): Delete arg abfd.
3398 * solib.c (update_solib_list): Ditto.
3399 (reload_shared_libraries_1): Ditto.
3400 (clear_solib): Ditto, and unconditionally call remove_target_sections.
3401 * target.h (struct target_section): Rename key to owner.
3402 All uses updated.
3403
3404 2013-07-22 Tom Tromey <tromey@redhat.com>
3405
3406 * solib-som.c (som_open_symbol_file_object): Call do_cleanups.
3407
3408 2013-07-22 Tom Tromey <tromey@redhat.com>
3409
3410 * dwarf2read.c (init_cutu_and_read_dies): Remove 'free_cu_cleanup'.
3411 Simplify cleanup handling.
3412
3413 2013-07-22 Tom Tromey <tromey@redhat.com>
3414
3415 * dwarf2read.c (dwarf_decode_line_header): Call do_cleanups
3416 on all return paths.
3417
3418 2013-07-22 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
3419
3420 * ppc-linux-nat.c (PPC_DEBUG_FEATURE_DATA_BP_DAWR): New define.
3421 (ppc_linux_region_ok_for_hw_watchpoint): Add checking to use the new
3422 DAWR interface for longer ranges hardware watchpoint (up to 512 bytes).
3423
3424 2013-07-22 Phil Muldoon <pmuldoon@redhat.com>
3425
3426 * top.c (print_gdb_version): Add help, apropos description and
3427 url to online documentation.
3428
3429 2013-07-19 Hui Zhu <hui@codesourcery.com>
3430
3431 PR gdb/15692
3432 * mi/mi-cmd-break.c (mi_argv_to_format): Handle double quotes.
3433
3434 2013-07-19 Yao Qi <yao@codesourcery.com>
3435
3436 * target.c (update_current_target): Change the default action
3437 of 'to_traceframe_info' from tcomplain to return_zero.
3438 * target.h (struct target_ops) <to_traceframe_info>: Add more
3439 comments.
3440 * valops.c (read_value_memory): Call
3441 traceframe_available_memory unconditionally.
3442
3443 2013-07-18 Yao Qi <yao@codesourcery.com>
3444
3445 * coffread.c (coff_symfile_read): Iterate over minimal symbols,
3446 if the name is prefixed by "__imp_" or "_imp_", look for minimal
3447 symbol without prefix. If found, set its type to
3448 'mst_solib_trampoline'.
3449
3450 2013-07-17 Doug Evans <dje@google.com>
3451
3452 * NEWS: Mention "set print raw frame-arguments".
3453 * gdbcmd.h (setprintrawlist, showprintrawlist): Declare.
3454 * stack.c (print_raw_frame_arguments): New static global.
3455 (print_frame_arg): Set opts.raw from print_raw_frame_arguments.
3456 (_initialize_stack): New command "set/show print raw frame-arguments".
3457 * valprint.c (setprintrawlist, showprintrawlist): New globals.
3458 (set_print_raw, show_print_raw): New functions.
3459 (_initialize_valprint): New prefix command "set/show print raw".
3460 * valprint.h (value_print_options): Improve comments.
3461
3462 * cli/cli-cmds.c (init_cmd_lists): Delete unnecessary initialization
3463 of all *list variables.
3464
3465 * gdbcmd.h (togglelist): Delete.
3466 * cli/cli-cmds.c (togglelist): Delete.
3467 (init_cmd_lists): Update.
3468 * cli/cli-cmds.h (togglelist): Delete.
3469
3470 2013-07-17 Tom Tromey <tromey@redhat.com>
3471
3472 * dwarf2read.c (dwarf2_per_objfile_free): Clear
3473 dwarf2_per_objfile.
3474
3475 2013-07-16 Doug Evans <dje@google.com>
3476
3477 * nto-tdep.c (nto_relocate_section_addresses): Update,
3478 target_section.bfd deleted.
3479 * ppc64-tdep.c (ppc64_convert_from_func_ptr_addr): Ditto.
3480 * s390-tdep.c (s390_load): Ditto.
3481 * solib-aix.c (solib_aix_relocate_section_addresses): Ditto.
3482
3483 2013-07-16 Andrew Burgess <aburgess@broadcom.com>
3484
3485 * common/format.c (parse_format_string): Add checks for NULL
3486 character before calling strchr.
3487
3488 2013-07-16 Doug Evans <dje@google.com>
3489
3490 * solist.h (target_so_ops.find_and_open_solib): Clarify usage of
3491 temp_pathname argument.
3492 * nto-tdep.c (nto_find_and_open_solib): Fix setting of temp_pathname
3493 when opening the file fails.
3494
3495 * target.h (struct target_section): Delete member bfd.
3496 All users updated to use the_bfd_section->owner instead.
3497 * exec.c (add_to_section_table): Assert bfd is expected value.
3498 Remove initialization of target_section.bfd.
3499 (remove_target_sections): Update.
3500 (section_table_available_memory): Update.
3501 (section_table_xfer_memory_partial): Update.
3502 (print_section_info): Update.
3503 (exec_set_section_address): Update.
3504 * record-full.c (record_full_core_xfer_partial): Update.
3505 * solib-svr4.c (svr4_relocate_section_addresses): Update.
3506 * solib-target.c (solib_target_relocate_section_addresses): Update.
3507 * symfile.c (build_section_addr_info_from_section_table): Update.
3508 * target.c (memory_xfer_live_readonly_partial): Update.
3509 (memory_xfer_partial_1): Update.
3510
3511 2013-07-15 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
3512
3513 * ppc-linux-nat.c: Since the new PowerPC specific ptrace interface is
3514 now available for embedded (BookE) and server (BookS) processors,
3515 correct mentions of 'booke' and adjust comments accordingly in order to
3516 avoid confusion. Rename struct 'booke_debug_info' to 'hwdebug_info'.
3517 (have_ptrace_booke_interface): Rename function and variable
3518 'have_ptrace_booke_interface' to 'have_ptrace_hwdebug_interface'.
3519 Rename struct 'booke_debug_info' to 'hwdebug_info'. Update all uses.
3520 (booke_cmp_hw_point): Rename function 'booke_cmp_hw_point' to
3521 'hwdebug_point_cmp'. Update all uses.
3522 (booke_find_thread_points_by_tid): Rename function
3523 'booke_find_thread_points_by_tid' to
3524 'hwdebug_find_thread_points_by_tid'. Update all uses.
3525 (booke_insert_point): Rename function 'booke_insert_point' to
3526 'hwdebug_insert_point'. Update all uses.
3527 (booke_remove_point): Rename function 'booke_remove_point' to
3528 'hwdebug_remove_point'. Update all uses.
3529
3530 2013-07-15 Maciej W. Rozycki <macro@codesourcery.com>
3531
3532 * mips-tdep.c (mips_gdbarch_init): Replace hardcoded magic
3533 numbers with enum values.
3534
3535 2013-07-15 Ali Anwar <ali_anwar@codesourcery.com>
3536
3537 PR threads/13217
3538 * thread.c (thread_apply_all_command): Check for valid threads
3539 and thread count.
3540 (thread_array_cleanup): New struct.
3541 (set_thread_refcount): New function.
3542
3543 2013-07-11 Andrew Burgess <aburgess@broadcom.com>
3544
3545 * infcmd.c (default_print_one_register_info): Reuse function
3546 print_hex_chars.
3547
3548 2013-07-10 Tom Tromey <tromey@redhat.com>
3549
3550 * Makefile.in (GDB_WARN_CFLAGS_NO_DEFS, ADA_EXP_C): New macros.
3551 (ada-exp.o): New target.
3552
3553 2013-07-10 Sergio Durigan Junior <sergiodj@redhat.com>
3554
3555 * mt-tdep.c (mt_registers_info): Call
3556 get_no_prettyformat_print_options instead of
3557 get_raw_print_options (regression by last patch from Doug
3558 Evans).
3559
3560 2013-07-09 Pedro Alves <palves@redhat.com>
3561
3562 Checked in by Joel Brobecker <brobecker@adacore.com>.
3563 * ada-lang.c (coerce_unspec_val_to_type): Use
3564 value_optimized_out_const.
3565 * value.c (value_optimized_out_const): New function.
3566 * value.h (value_optimized_out_const): New declaration.
3567
3568 2013-07-09 Doug Evans <dje@google.com>
3569
3570 * defs.h (enum val_prettyformat): Renamed from val_prettyprint.
3571 Enum values rename as well. All uses updated.
3572 * valprint.h (value_print_options): Rename member pretty to
3573 pretty format. Rename member prettyprint_arrays to
3574 prettyformat_arrays. Rename member prettyprint_structs to
3575 prettyformat_structs. All uses updated.
3576 (get_no_prettyformat_print_options): Renamed from
3577 get_raw_print_options.
3578 * valprint.c (get_no_prettyformat_print_options): Renamed from
3579 get_raw_print_options. All callers updated.
3580 (show_prettyformat_structs): Renamed from show_prettyprint_structs.
3581 All callers updated.
3582 (show_prettyformat_arrays): Renamed from show_prettyprint_arrays.
3583 All callers updated.
3584 (_initialize_valprint): Improve help text for "set print pretty" and
3585 "set print arrays".
3586
3587 2013-07-09 Andrew Burgess <aburgess@broadcom.com>
3588
3589 * value.c (value_bits_valid): Revert previous change, and change
3590 by Pedro on 2013-07-04, due to regressions in
3591 gdb.dwarf2/implptr.exp and gdb.dwarf2/pieces.exp.
3592
3593 2013-07-08 Andrew Burgess <aburgess@broadcom.com>
3594 Pedro Alves <palves@redhat.com>
3595
3596 * value.c (value_bits_valid): If the value is not lval_computed
3597 or has no check validity handler then the answer is the
3598 optimized_out flag, otherwise defer to the handler.
3599
3600 2013-07-06 Eli Zaretskii <eliz@gnu.org>
3601
3602 * top.c (print_gdb_configuration): Explain in output of
3603 --configuration what does "relocatable" mean.
3604
3605 * main.c (print_gdb_help): Regroup options in the --help text.
3606 See http://sourceware.org/ml/gdb-patches/2013-04/msg00362.html for
3607 the relevant discussions.
3608
3609 2013-07-06 Yao Qi <yao@codesourcery.com>
3610
3611 * breakpoint.h (struct breakpoint_ops) <create_breakpoints_sal>:
3612 Remove parameter 'lsal'.
3613 * breakpoint.c (create_breakpoint): Move local variable 'lsal'
3614 to inner block. Caller update.
3615 (base_breakpoint_create_breakpoints_sal): Update.
3616 (bkpt_create_breakpoints_sal): Likewise.
3617 (tracepoint_create_breakpoints_sal): Likewise.
3618 (strace_marker_create_breakpoints_sal): Get 'lsal' from the
3619 element 0 of vector 'canonical->sals'.
3620
3621 2013-07-05 Luis Machado <lgustavo@codesourcery.com>
3622
3623 * rs6000-tdep.c (rs6000_stab_reg_to_regnum): Return the real
3624 register number instead of the pseudo register one.
3625 (rs6000_dwarf2_reg_to_regnum): Likewise.
3626
3627 2013-07-04 Pedro Alves <palves@redhat.com>
3628
3629 * findvar.c (value_of_register): Use allocate_optimized_out_value
3630 if the register has been optimized out, instead of
3631 set_value_optimized_out.
3632 * frame-unwind.c (frame_unwind_got_optimized): Use
3633 allocate_optimized_out_value.
3634
3635 2013-07-04 Pedro Alves <palves@redhat.com>
3636
3637 * value.c (value_bits_valid): If the value is not lval_computed,
3638 or doesn't have a check_validity hook, assume the value is entirely
3639 valid.
3640
3641 2013-07-04 Andrew Burgess <aburgess@broadcom.com>
3642
3643 * stack.c (read_frame_arg): No longer fetch lazy values.
3644 * value.c (value_optimized_out): If the value is not already
3645 marked optimized out, and is lazy then fetch it.
3646 (value_primitive_field): Move optimized out check to later in the
3647 function, after we have loaded any lazy values.
3648 (value_fetch_lazy): Use optimized out flag directly rather than
3649 calling optimized_out method.
3650
3651 2013-07-04 Andrew Burgess <aburgess@broadcom.com>
3652
3653 * valops.c: Don't include "user-regs.h".
3654 (value_fetch_lazy): Moved to value.c.
3655 * value.c: Include "user-regs.h".
3656 (value_fetch_lazy): Moved from valops.c.
3657
3658 2013-07-04 Yao Qi <yao@codesourcery.com>
3659
3660 Revert:
3661 2013-06-27 Yao Qi <yao@codesourcery.com>
3662
3663 * common/create-version.sh: Update comments. Handle the case
3664 that TARGET_ALIAS is empty.
3665
3666 2013-07-03 Pedro Alves <palves@redhat.com>
3667
3668 * Makefile.in (config.status): Depend on development.sh.
3669 (aclocal_m4_deps): Add libmcheck.m4.
3670 * acinclude.m4: Include libmcheck.m4.
3671 * configure.ac: Source development.sh instead of setting
3672 'development' here. --enable-libmcheck/--disable-libmcheck code
3673 factored out to GDB_AC_LIBMCHECK. Run it.
3674 * development.sh: New file.
3675 * libmcheck.m4: New file.
3676 * configure: Regenerate.
3677
3678 2013-07-02 Tom Tromey <tromey@redhat.com>
3679
3680 * contrib/ari/update-web-ari.sh: Update for version.in change.
3681
3682 2013-07-02 Tom Tromey <tromey@redhat.com>
3683
3684 * common/ptid.h: Comment fixes.
3685
3686 2013-07-01 Tom Tromey <tromey@redhat.com>
3687
3688 * dwarf2read.c (dwarf2_get_dwz_file): Return NULL if
3689 .gnu_debugaltlink not found. Use bfd_get_alt_debug_link_info.
3690 (dwarf2_read_index, create_all_comp_units): Update.
3691
3692 2013-07-01 Tom Tromey <tromey@redhat.com>
3693
3694 * configure.ac (build_warnings): Add -Wold-style-definition.
3695 * configure: Rebuild.
3696 * machoread.c (_initialize_machoread): Use "(void)".
3697 * macrocmd.c (macro_inform_no_debuginfo): Fix formatting;
3698 use "(void)".
3699
3700 2013-07-01 Tom Tromey <tromey@redhat.com>
3701
3702 * configure.ac (build_warnings): Add -Wold-style-declaration.
3703 * configure: Rebuild.
3704 * dsrec.c (make_srec): Use "static const", not "const static".
3705 * h8300-tdep.c (h8300_breakpoint_from_pc): Use "static const",
3706 not "const static".
3707 * mi/mi-parse.c (mi_no_values, mi_simple_values, mi_all_values):
3708 Use "static const", not "const static".
3709 * mn10300-tdep.c (mn10300_breakpoint_from_pc): Use "static const",
3710 not "const static".
3711 * moxie-tdep.c (moxie_breakpoint_from_pc): Use "static const",
3712 not "const static".
3713 * rs6000-tdep.c (rs6000_breakpoint_from_pc): Use "static const",
3714 not "const static".
3715 * v850-tdep.c (v850_breakpoint_from_pc): Use "static const",
3716 not "const static".
3717 (v850_dbtrap_breakpoint_from_pc): Likewise.
3718 * xstormy16-tdep.c (xstormy16_breakpoint_from_pc): Use "static const",
3719 not "const static".
3720
3721 2013-07-01 Tom Tromey <tromey@redhat.com>
3722
3723 * configure.ac (build_warnings): Add -Wmissing-parameter-type.
3724 * configure: Rebuild.
3725
3726 2013-07-01 Pedro Alves <palves@redhat.com>
3727
3728 * defs.h: Include "pathmax.h".
3729 * utils.c: Don't include sys/param.h.
3730 (gdb_realpath): Remove code that checks for MAXPATHLEN.
3731 * solib-ia64-hpux.c (ia64_hpux_handle_load_event): Use PATH_MAX
3732 instead of MAXPATHLEN.
3733 * solib-sunos.c: Don't include sys/param.h.
3734 * xcoffread.c: Don't include sys/param.h.
3735 * bsd-kvm.c: Don't include sys/param.h.
3736 * darwin-nat.c: Don't include sys/param.h.
3737 (darwin_pid_to_exec_file): Use PATH_MAX instead of MAXPATHLEN.
3738 * darwin-nat-info.c: Don't include sys/param.h.
3739 * fbsd-nat.c (fbsd_pid_to_exec_file): Use PATH_MAX instead of
3740 MAXPATHLEN.
3741 * i386obsd-nat.c: Don't include sys/param.h.
3742 * inf-child.c: Don't include sys/param.h.
3743 (inf_child_fileio_readlink): Use PATH_MAX instead of MAXPATHLEN.
3744 * linux-fork.c: Don't include sys/param.h.
3745 (fork_save_infrun_state): Use PATH_MAX instead of MAXPATHLEN.
3746 * linux-nat.c: Don't include sys/param.h.
3747 (linux_child_pid_to_exec_file, linux_proc_pending_signals)
3748 (linux_proc_pending_signals): Use PATH_MAX instead of MAXPATHLEN.
3749 * m68klinux-nat.c: Don't include sys/param.h.
3750 * nbsd-nat.c: Don't include sys/param.h.
3751 (nbsd_pid_to_exec_file): Use PATH_MAX instead of MAXPATHLEN.
3752 * ppc-linux-nat.c: Don't include sys/param.h.
3753 * rs6000-nat.c: Don't include sys/param.h.
3754 * spu-linux-nat.c. Don't include sys/param.h.
3755 * windows-nat.c: Don't include sys/param.h.
3756 * xtensa-linux-nat.c: Don't include sys/param.h.
3757 * config/i386/nm-fbsd.h: Don't include sys/param.h.
3758
3759 2013-07-01 Pedro Alves <palves@redhat.com>
3760
3761 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add pathmax.
3762 * gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/pathmax.m4.
3763 * gnulib/aclocal.m4: Regenerate.
3764 * gnulib/config.in: Regenerate.
3765 * gnulib/configure: Regenerate.
3766 * gnulib/import/pathmax.h: New file.
3767 * gnulib/import/Makefile.am: Regenerate.
3768 * gnulib/import/Makefile.in: Regenerate.
3769 * gnulib/import/m4/gnulib-cache.m4: Regenerate.
3770 * gnulib/import/m4/gnulib-comp.m4: Regenerate.
3771 * gnulib/import/m4/pathmax.m4: New file.
3772
3773 2013-07-01 Pedro Alves <palves@redhat.com>
3774
3775 * configure.ac (GDBINIT): Define, depending on host.
3776 * go32-nat.c (init_go32_ops): Don't override gdbinit here.
3777 * top.c (PATH_MAX): Delete fallback definition.
3778 (GDBINIT_FILENAME): Delete.
3779 (gdbinit): Reimplement as const char array set to the GDBINIT
3780 string constant.
3781 * top.h (gdbinit): Make const.
3782 * configure, config.in: Regenerate.
3783
3784 2013-07-01 Pedro Alves <palves@redhat.com>
3785
3786 * cli/cli-cmds.c (source_script): Make 'file' parameter const.
3787 * cli/cli-cmds.h (source_script): Likewise.
3788 * exceptions.c (catch_command_errors_const): New function.
3789 * exceptions.h (catch_command_errors_const): Declare.
3790 * main.c (get_init_files): Make parameters const, and adjust.
3791 (captured_main): Make 'system_gdbinit', 'home_gdbinit' and
3792 'local_gdbinit' locals const. Adjust to use
3793 catch_command_errors_const.
3794 (print_gdb_help): Make 'system_gdbinit', 'home_gdbinit' and
3795 'local_gdbinit' locals const.
3796
3797 2013-07-01 Pedro Alves <palves@redhat.com>
3798
3799 * defs.h: Don't check HAVE_UNISTD_H before including <unistd.h>.
3800 (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO): Delete.
3801 * tracepoint.c: Don't check HAVE_UNISTD_H before including
3802 <unistd.h>.
3803
3804 2013-07-01 Pedro Alves <palves@redhat.com>
3805
3806 Import the "unistd" gnulib module.
3807 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add "unistd".
3808 * gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/off_t.m4,
3809 import/m4/ssize_t.m4, import/m4/sys_types_h.m4 and
3810 import/m4/unistd_h.m4.
3811 * gnulib/aclocal.m4: Renenerate.
3812 * gnulib/config.in: Renenerate.
3813 * gnulib/configure: Renenerate.
3814 * gnulib/import/Makefile.am: Renenerate.
3815 * gnulib/import/Makefile.in: Renenerate.
3816 * gnulib/import/m4/gnulib-cache.m4: Renenerate.
3817 * gnulib/import/m4/gnulib-comp.m4: Renenerate.
3818 * gnulib/import/m4/off_t.m4: New file.
3819 * gnulib/import/m4/ssize_t.m4: New file.
3820 * gnulib/import/m4/sys_types_h.m4: New file.
3821 * gnulib/import/m4/unistd_h.m4: New file.
3822 * gnulib/import/sys_types.in.h: New file.
3823 * gnulib/import/unistd.c: New file.
3824 * gnulib/import/unistd.in.h: New file.
3825
3826 2013-07-01 Pedro Alves <palves@redhat.com>
3827
3828 * utils.c <pathconf/_PC_PATH_MAX use>: Check if _PC_PATH_MAX is
3829 defined instead of checking HAVE_UNISTD_H.
3830
3831 2013-07-01 Pedro Alves <palves@redhat.com>
3832
3833 Reimport gnulib from scratch.
3834 * gnulib/Makefile.in (aclocal_m4_deps): Remove reference to
3835 import/m4/onceonly.m4.
3836 * gnulib/aclocal.m4: Renegerate.
3837 * gnulib/config.in: Renegerate.
3838 * gnulib/configure: Renegerate.
3839 * gnulib/import/Makefile.in: Renegerate.
3840 * gnulib/import/extra/update-copyright: Renegerate.
3841 * gnulib/import/m4/onceonly.m4: Delete.
3842
3843 2013-07-01 Pedro Alves <palves@redhat.com>
3844
3845 * tui/tui-regs.c (pagination_enabled): Delete declaration.
3846
3847 2013-06-30 Jan Kratochvil <jan.kratochvil@redhat.com>
3848
3849 Code cleanup.
3850 * remote.c (async_remote_interrupt_twice): Make it static.
3851 * remote.h (async_remote_interrupt_twice): Remove the declaration.
3852
3853 2013-06-29 Sergio Durigan Junior <sergiodj@redhat.com>
3854
3855 * ia64-linux-tdep.c: Include <ctype.h>.
3856 (ia64_linux_stap_is_single_operand): New function.
3857 (ia64_linux_init_abi): Initialize SystemTap related attributes.
3858
3859 2013-06-28 Tom Tromey <tromey@redhat.com>
3860
3861 * Makefile.in (version.c): Use version.in, not
3862 common/version.in.
3863 * common/create-version.sh: Likewise.
3864 * common/version.in: Move...
3865 * version.in: ...here.
3866
3867 2013-06-28 Pedro Alves <palves@redhat.com>
3868
3869 * infrun.c (set_observer_mode): Don't declare pagination_enabled
3870 here.
3871 * utils.h (pagination_enabled): Declare.
3872
3873 2013-06-28 Pedro Alves <palves@redhat.com>
3874
3875 * infrun.c (non_stop, non_stop_1, set_non_stop, show_non_stop):
3876 Move higher up in file.
3877
3878 2013-06-28 Tom Tromey <tromey@redhat.com>
3879
3880 * tracepoint.c (deprecated_readline_begin_hook)
3881 (deprecated_readline_hook, deprecated_readline_end_hook): Don't
3882 declare.
3883
3884 2013-06-28 Pedro Alves <palves@redhat.com>
3885
3886 PR tui/14880
3887 * tui/tui-regs.c (tui_get_register): Fetch value contents before
3888 checking if they're available.
3889 * value.c (value_available_contents_eq): Change comment.
3890 * value.h (value_available_contents_eq): Expand comment.
3891
3892 2013-06-27 Tom Tromey <tromey@redhat.com>
3893
3894 * target.c (find_run_target): Remove.
3895 * target.h (find_run_target): Remove.
3896
3897 2013-06-27 Tom Tromey <tromey@redhat.com>
3898
3899 * corelow.c (core_gdbarch): Now static.
3900
3901 2013-06-27 Tom Tromey <tromey@redhat.com>
3902
3903 * target.c (target_struct_index): Remove.
3904
3905 2013-06-27 Pedro Alves <palves@redhat.com>
3906
3907 * infrun.c: Remove comment describing the 'stepping over runtime
3908 loader dynamic symbol resolution code' mechanism; moved to
3909 gdbint.texinfo.
3910
3911 2013-06-27 Pedro Alves <palves@redhat.com>
3912
3913 * exceptions.c (catch_command_errors): Remove spurious space.
3914 * exceptions.h (catch_command_errors): Second parameter is "arg",
3915 not "command".
3916
3917 2013-06-27 Yao Qi <yao@codesourcery.com>
3918
3919 * common/create-version.sh: Update comments. Handle the case
3920 that TARGET_ALIAS is empty.
3921
3922 2013-06-26 Pedro Alves <palves@redhat.com>
3923
3924 * infrun.c (SOLIB_IN_DYNAMIC_LINKER): Delete macro and describing
3925 comment.
3926
3927 2013-06-26 Pedro Alves <palves@redhat.com>
3928
3929 * infrun.c: Update comments on stepping over runtime loader
3930 dynamic symbol resolution code.
3931
3932 2013-06-26 Sergio Durigan Junior <sergiodj@redhat.com>
3933
3934 * ax-gdb.h (union exp_element): Forward declare.
3935 * parser-defs.h: Include expression.h.
3936
3937 2013-06-26 Maciej W. Rozycki <macro@codesourcery.com>
3938
3939 * mips-tdep.c (fetch_mips_16): Use unmake_compact_addr.
3940
3941 2013-06-26 Dmitry Kozlov <ddk@codesourcery.com>
3942
3943 * tracepoint.c (trace_save): Extend tsave to save starttime, stoptime.
3944
3945 2013-06-26 Dmitry Kozlov <ddk@codesourcery.com>
3946
3947 Fix trace-status to output proper start-time and stop-time.
3948 * tracepoint.c (trace_status_command): Fix type of printf arg to
3949 prevent improper type conversion.
3950 (trace_status_mi): Likewise.
3951
3952 2013-06-26 Maciej W. Rozycki <macro@codesourcery.com>
3953
3954 * mips-tdep.c (mips_next_pc): Fix a typo.
3955
3956 2013-06-26 Maciej W. Rozycki <macro@codesourcery.com>
3957
3958 * mips-tdep.c (micromips_scan_prologue): Fix a typo.
3959
3960 2013-06-26 Pedro Alves <pedro@codesourcery.com>
3961 Yao Qi <yao@codesourcery.com>
3962
3963 * mi/mi-cmds.c (mi_cmds): Register -trace-frame-collected.
3964 * mi/mi-cmds.h (mi_cmd_trace_frame_collected): Declare.
3965 * mi/mi-main.c (print_variable_or_computed): New function.
3966 (mi_cmd_trace_frame_collected): New function.
3967 * tracepoint.c (find_trace_state_variable_by_number): New.
3968 (struct traceframe_info): Move to tracepoint.h
3969 (struct collection_list): Likewise.
3970 (do_collect_symbol): Include locals and arguments in the
3971 collected variables list.
3972 (clear_collection_list): Clear wholly collected variables list
3973 and computed variables list.
3974 (append_exp): New function.
3975 (encode_actions_1): Include variables in the wholly
3976 collected variables list. Include memory ranges and
3977 full-fledged expressions in the computed expressions list.
3978 (encode_actions): Move some code to ...
3979 Return the cleanup chain.
3980 (encode_actions_rsp): ... here. New function.
3981 (get_traceframe_location, get_traceframe_info): Remove static.
3982 * tracepoint.h (struct memrange): Moved from tracepoint.c.
3983 (struct collection_list): Moved from tracepoint.c. Add two
3984 new fields 'wholly_collected' and 'computed'.
3985 (find_trace_state_variable_by_number): Declare.
3986 (encode_actions): Adjust declaration.
3987 (encode_actions_rsp): Declare.
3988 (get_traceframe_info, get_traceframe_location): Declare.
3989
3990 * NEWS: Mention new MI command -trace-frame-collected.
3991
3992 2013-06-26 Pedro Alves <pedro@codesourcery.com>
3993 Yao Qi <yao@codesourcery.com>
3994
3995 * ctf.c (ctf_traceframe_info): Push trace state variables
3996 present in the trace data into the traceframe info object.
3997 * breakpoint.c (DEF_VEC_I): Remove.
3998 * common/filestuff.c (DEF_VEC_I): Likewise.
3999 * dwarf2loc.c (DEF_VEC_I): Likewise.
4000 * mi/mi-main.c (DEF_VEC_I): Likewise.
4001 * common/gdb_vecs.h (DEF_VEC_I): Define vector for int.
4002 * features/traceframe-info.dtd: Add tvar element and its
4003 attributes.
4004 * tracepoint.c (free_traceframe_info): Free vector 'tvars'.
4005 (build_traceframe_info): Push trace state variables present in
4006 the trace data into the traceframe info object.
4007 (traceframe_info_start_tvar): New function.
4008 (tvar_attributes): New.
4009 (traceframe_info_children): Add "tvar" element.
4010 * tracepoint.h (struct traceframe_info) <tvars>: New field.
4011
4012 * NEWS: Mention the change in GDB and GDBserver.
4013
4014 2013-06-26 Pedro Alves <pedro@codesourcery.com>
4015 Yao Qi <yao@codesourcery.com>
4016
4017 * tracepoint.c (trace_dump_command): Move code to ...
4018 (get_traceframe_location): ... here. New.
4019
4020 2013-06-26 Pedro Alves <pedro@codesourcery.com>
4021 Yao Qi <yao@codesourcery.com>
4022
4023 * tracepoint.c (trace_dump_command): GDB emits an error
4024 instead of a warning when a traceframe is not selected.
4025
4026 2013-06-26 Pedro Alves <pedro@codesourcery.com>
4027 Yao Qi <yao@codesourcery.com>
4028
4029 * tracepoint.c (tracepoint_list, stepping_list): Remove.
4030 (clear_collection_list): Free fields 'aexpre_list' and 'list'
4031 in collection_list.
4032 (do_clear_collection_list, init_collection_list): New.
4033 (encode_actions): Add local variables 'tracepoint_list' and
4034 'stepping_list'. Call init_collection_list and make cleanup
4035 which calls do_clear_collection_list. Don't call
4036 clear_collection_list.
4037 (_initialize_tracepoint): Delete references to
4038 'tracepoint_list' and 'stepping_list'.
4039
4040 2013-06-25 Tom Tromey <tromey@redhat.com>
4041
4042 * common/create-version.sh (date): Use "$", not "$$" in sed
4043 expression.
4044
4045 2013-06-25 Kevin Buettner <kevinb@redhat.com>
4046
4047 * NEWS (New targets): Add entry for TI MSP430.
4048
4049 2013-06-25 Yao Qi <yao@codesourcery.com>
4050
4051 * remote.c (remote_start_remote): Move code to upload tsv
4052 earlier.
4053
4054 2013-06-25 Yao Qi <yao@codesourcery.com>
4055 Hui Zhu <hui@codesourcery.com>
4056 Pedro Alves <palves@redhat.com>
4057
4058 PR breakpoints/15075
4059 PR breakpoints/15434
4060 * breakpoint.c (bpstat_stop_status): Call
4061 b->ops->after_condition_true.
4062 (update_dprintf_command_list): Don't append "continue" command
4063 to the command list of dprintf breakpoint.
4064 (base_breakpoint_after_condition_true): New function.
4065 (base_breakpoint_ops): Add base_breakpoint_after_condition_true.
4066 (dprintf_after_condition_true): New function.
4067 (initialize_breakpoint_ops): Set dprintf_after_condition_true.
4068 * breakpoint.h (breakpoint_ops): Add after_condition_true.
4069
4070 2013-06-24 Kevin Buettner <kevinb@redhat.com>
4071
4072 * Makefile.in (ALL_TARGET_OBS): Add msp430-tdep.o.
4073 (ALLDEPFILES): Add msp430-tdep.c.
4074 * configure.tgt (msp430*-*-elf): New target.
4075 * msp430-tdep.c: New file.
4076
4077 2013-06-24 Maciej W. Rozycki <macro@codesourcery.com>
4078
4079 * mips-tdep.c (mips_elf_make_msymbol_special): Handle MIPS16 and
4080 microMIPS synthetic symbols.
4081
4082 2013-06-24 Maciej W. Rozycki <macro@codesourcery.com>
4083
4084 * objfiles.h (pc_in_section): New prototype.
4085 (in_plt_section): Remove name argument, replace prototype with
4086 static inline function.
4087 * mips-tdep.h: Include "objfiles.h".
4088 (in_mips_stubs_section): New function.
4089 * hppa-tdep.h (gdbarch_tdep): Remove name argument of
4090 in_solib_call_trampoline member.
4091 (hppa_in_solib_call_trampoline): Remove name argument.
4092 * objfiles.c (pc_in_section): New function.
4093 (in_plt_section): Remove function.
4094 * mips-linux-tdep.c: Include "objfiles.h".
4095 (mips_linux_in_dynsym_stub): Call in_mips_stubs_section. Remove
4096 name argument. Return 1 rather than the low 16-bit halfword of
4097 any instruction examined.
4098 (mips_linux_in_dynsym_resolve_code): Update
4099 mips_linux_in_dynsym_stub call accordingly.
4100 * mips-tdep.c (mips_stub_frame_sniffer): Use in_mips_stubs_section
4101 rather than an equivalent hand-coded sequence.
4102 * hppa-hpux-tdep.c (in_opd_section): Remove function.
4103 (hppa32_hpux_in_solib_call_trampoline): Remove name argument.
4104 (hppa64_hpux_in_solib_call_trampoline): Likewise.
4105 (hppa64_hpux_find_global_pointer): Use pc_in_section rather than
4106 in_opd_section.
4107 * hppa-tdep.c (hppa_stub_unwind_sniffer): Remove name argument
4108 on call to tdep->in_solib_call_trampoline.
4109 (hppa_in_solib_call_trampoline): Remove name argument, update
4110 according to in_plt_section change.
4111 (hppa_skip_trampoline_code): Update according to in_plt_section
4112 change.
4113 * aarch64-tdep.c (aarch64_stub_unwind_sniffer): Likewise.
4114 * arm-symbian-tdep.c (arm_symbian_skip_trampoline_code):
4115 Likewise.
4116 * arm-tdep.c (arm_stub_unwind_sniffer): Likewise.
4117 * hppa-linux-tdep.c (hppa_linux_find_global_pointer): Likewise.
4118 * hppabsd-tdep.c (hppabsd_find_global_pointer): Likewise.
4119 * nios2-tdep.c (nios2_stub_frame_sniffer): Likewise.
4120 * nto-tdep.c (nto_relocate_section_addresses): Likewise.
4121 * s390-tdep.c (s390_stub_frame_sniffer): Likewise.
4122 * sh-tdep.c (sh_stub_unwind_sniffer): Likewise.
4123 * solib-dsbt.c (dsbt_in_dynsym_resolve_code): Likewise.
4124 * solib-frv.c (frv_in_dynsym_resolve_code): Likewise.
4125 * solib-svr4.c (svr4_in_dynsym_resolve_code): Likewise.
4126 * solib-target.c (solib_target_in_dynsym_resolve_code): Likewise.
4127 * sparc-tdep.c (sparc_analyze_prologue): Likewise.
4128 * tic6x-tdep.c (tic6x_stub_unwind_sniffer): Likewise.
4129
4130 2013-06-24 Joel Brobecker <brobecker@adacore.com>
4131
4132 * common/create-version.sh: Fix expansion of $host_alias
4133 and $target_alias in generation of HOST_NAME and TARGET_NAME
4134 (resp.).
4135
4136 2013-06-24 Tom Tromey <tromey@redhat.com>
4137
4138 * common/create-version.sh: New file.
4139 * Makefile.in (version.c): Use bfd/version.h, common/version.in,
4140 create-version.sh.
4141 (HFILES_NO_SRCDIR): Use common/version.h.
4142 * version.in: Move to ...
4143 * common/version.in: ... here. Replace date with "DATE".
4144 * version.h: Move to ...
4145 * common/version.h: ... here.
4146
4147 2013-06-21 Joel Brobecker <brobecker@adacore.com>
4148
4149 * gdb/gnulib/Makefile.in: Update date in copyright header.
4150 * gdb/gnulib/configure.ac: Ditto.
4151 * gdb/gnulib/update-gnulib.sh: Ditto.
4152
4153 2013-06-21 Joel Brobecker <brobecker@adacore.com>
4154
4155 * copyright.py (EXCLUDE_LIST): Replace "gdb/gnulib" by
4156 "gdb/gnulib/import".
4157
4158 2013-06-21 Will Newton <will.newton@linaro.org>
4159
4160 * doublest.c (ldfrexp): Remove function.
4161 (convert_doublest_to_floatformat): Call frexpl instead of
4162 ldfrexp.
4163
4164 2013-06-21 Will Newton <will.newton@linaro.org>
4165
4166 * gnulib/update-gnulib.sh(IMPORTED_GNULIB_MODULES): Add frexpl.
4167 * gnulib/aclocal.m4: Regenerate.
4168 * gnulib/config.in: Regenerate.
4169 * gnulib/configure: Regenerate.
4170 * gnulib/import/Makefile.am: Update.
4171 * gnulib/import/Makefile.in: Update.
4172 * gnulib/import/m4/gnulib-cache.m4: Update.
4173 * gnulib/import/m4/gnulib-comp.m4: Update.
4174 * gnulib/import/float+.h: Import.
4175 * gnulib/import/float.c: Import.
4176 * gnulib/import/float.in.h: Import.
4177 * gnulib/import/fpucw.h: Import.
4178 * gnulib/import/frexp.c: Import.
4179 * gnulib/import/frexpl.c: Import.
4180 * gnulib/import/isnan.c: Import.
4181 * gnulib/import/isnand-nolibm.h: Import.
4182 * gnulib/import/isnand.c: Import.
4183 * gnulib/import/isnanl-nolibm.h: Import.
4184 * gnulib/import/isnanl.c: Import.
4185 * gnulib/import/itold.c: Import.
4186 * gnulib/import/m4/exponentd.m4: Import.
4187 * gnulib/import/m4/exponentl.m4: Import.
4188 * gnulib/import/m4/float_h.m4: Import.
4189 * gnulib/import/m4/fpieee.m4: Import.
4190 * gnulib/import/m4/frexp.m4: Import.
4191 * gnulib/import/m4/frexpl.m4: Import.
4192 * gnulib/import/m4/isnand.m4: Import.
4193 * gnulib/import/m4/isnanl.m4: Import.
4194 * gnulib/import/m4/math_h.m4: Import.
4195 * gnulib/import/math.c: Import.
4196 * gnulib/import/math.in.h: Import.
4197
4198 2013-06-21 Jan Kratochvil <jan.kratochvil@redhat.com>
4199
4200 * common/linux-btrace.c (cpu_supports_btrace): Remove variable vendor,
4201 replace strcmp with signature_INTEL_ebx, signature_INTEL_ecx and
4202 signature_INTEL_edx comparisons.
4203
4204 2013-06-20 Doug Evans <dje@google.com>
4205
4206 symtab/15652
4207 * dwarf2read.c (try_open_dwop_file): New arg search_cwd.
4208 All callers updated.
4209 (open_dwp_file): If we can't find the dwp file, search the basename
4210 in debug-file-directory.
4211
4212 * dwarf2read.c (struct dwp_file): Fix comment.
4213 (open_and_init_dwp_file): Set dwp_file->name to bfd's file name.
4214
4215 * source.c (openp): Document OPF_TRY_CWD_FIRST+OPF_SEARCH_IN_PATH
4216 better.
4217
4218 2013-06-20 Yao Qi <yao@codesourcery.com>
4219
4220 * breakpoint.c (create_breakpoint): Fix code indentation.
4221
4222 2013-06-20 Yao Qi <yao@codesourcery.com>
4223
4224 * breakpoint.c (create_breakpoints_sal_default): Remove
4225 parameter 'lsal'. Update declaration.
4226 (bkpt_create_breakpoints_sal): Caller update.
4227 (tracepoint_create_breakpoints_sal): Likewise.
4228
4229 2013-06-20 Pedro Alves <pedro@codesourcery.com>
4230 Yao Qi <yao@codesourcery.com>
4231
4232 * NEWS: Mention the new option '--skip-unavailable' of command
4233 -data-list-register-values.
4234 * mi/mi-main.c (mi_cmd_data_list_register_values): Accept the
4235 --skip-unavailable option. Adjust to use output_register.
4236 (output_register): Add new 'skip_unavailable' parameter.
4237 Handle it.
4238
4239 2013-06-19 Mike Frysinger <vapier@gentoo.org>
4240
4241 * Makefile.in (HFILES_NO_SRCDIR): Add common/i386-cpuid.h and
4242 common/i386-gcc-cpuid.h.
4243 * common/i386-cpuid.h: New wrapper header around i386-gcc-cpuid.h.
4244 * common/i386-gcc-cpuid.h: Rename from testsuite/gdb.arch/i386-cpuid.h.
4245 Copy the latest version from upstream gcc.
4246 * common/linux-btrace.c: Include i386-cpuid.h.
4247 (intel_supports_btrace): Delete x86 ifdefs and replace inline asm with
4248 call to i386_cpuid.
4249 (cpu_supports_btrace): Likewise.
4250 * go32-nat.c: Include i386-cpuid.h.
4251 (go32_sysinfo): Add (disabled) calls to i386_cpuid with comments.
4252
4253 2013-06-19 Doug Evans <dje@google.com>
4254
4255 * symfile.c (symfile_bfd_open): Delete unnecessary declaration.
4256 (get_section_index): Ditto.
4257
4258 2013-06-19 Tom Tromey <tromey@redhat.com>
4259
4260 * breakpoint.c (_initialize_breakpoint): Remove trailing \n from
4261 "dprintf" help.
4262
4263 2013-06-18 Doug Evans <dje@google.com>
4264
4265 * dwarf2read.c (dw2_symtab_iter_next): Check value of cu_index
4266 before using it.
4267 (dw2_expand_symtabs_matching): Fix symbol kind validity check.
4268 Move test of cu_index closer to use. Print complaint if cu_index
4269 is bad.
4270
4271 2013-06-18 Joel Brobecker <brobecker@adacore.com>
4272
4273 * machoread.c (oso_vector): Delete this global.
4274 (macho_register_oso): Add new parameter "oso_vector_ptr".
4275 Use it instead of the "oso_vector" global.
4276 (macho_symtab_read, macho_symfile_read_all_oso): Likewise.
4277 (macho_symfile_read): Use a local oso_vector, to be free'ed
4278 at the end of this function, in place of the old "oso_vector"
4279 global. Update various function calls accordingly. Use one
4280 single cleanup chain for the entire function.
4281
4282 2013-06-18 Joel Brobecker <brobecker@adacore.com>
4283
4284 * dwarf2read.c (dwarf2_per_objfile_free): Replace uses of
4285 DWARF2_PER_OBJFILE by uses of DATA instead.
4286
4287 2013-06-18 Tom Tromey <tromey@redhat.com>
4288
4289 * break-catch-sig.c (signal_catchpoint_explains_signal): Add 'sig'
4290 argument.
4291 * breakpoint.c (bpstat_explains_signal): Add 'sig' argument.
4292 Special case signals other than GDB_SIGNAL_TRAP.
4293 (explains_signal_watchpoint): New function.
4294 (base_breakpoint_explains_signal): Add 'sig' argument.
4295 (initialize_breakpoint_ops): Set 'explains_signal' method for
4296 watchpoints.
4297 * breakpoint.h (struct breakpoint_ops) <explains_signal>: Add
4298 signal argument.
4299 (bpstat_explains_signal): Likewise.
4300 * infrun.c (handle_syscall_event, handle_inferior_event): Update.
4301
4302 2013-06-18 Tom Tromey <tromey@redhat.com>
4303
4304 * python/py-inferior.c (gdbpy_selected_inferior): Don't incref.
4305
4306 2013-06-18 Tom Tromey <tromey@redhat.com>
4307
4308 * python/python.c (finish_python_initialization): Decref
4309 'pythondir' on failure path as well.
4310
4311 2013-06-18 Tom Tromey <tromey@redhat.com>
4312
4313 PR symtab/15391:
4314 * dwarf2loc.c (read_pieced_value): Truncate this_size_bits
4315 after taking bits_to_skip into account. Sign extend byte_offset.
4316 * utils.h (gdb_sign_extend): Declare.
4317 * utils.c (gdb_sign_extend): New function.
4318
4319 2013-06-18 Jan Kratochvil <jan.kratochvil@redhat.com>
4320
4321 * dwarf2read.c (write_psymtabs_to_index): Ignore NULL PSYMTAB.
4322
4323 2013-06-17 Pierre Muller <muller@sourceware.org>
4324
4325 * corelow.c (core_open): Print GDB signal name instead of target
4326 signal number.
4327
4328 2013-06-17 Mike Frysinger <vapier@gentoo.org>
4329
4330 * .gitignore: Add /gcore.
4331
4332 2013-06-13 Doug Evans <dje@google.com>
4333
4334 * dwarf2read.c (try_open_dwop_file): Work around behaviour of
4335 OPF_TRY_CWD_FIRST to not search path if the file contains a '/'.
4336
4337 2013-06-12 Phil Muldoon <pmuldoon@redhat.com>
4338
4339 * stack.c (backtrace_command_1): Fix indentation.
4340
4341 2013-06-11 Joel Brobecker <brobecker@adacore.com>
4342
4343 * window-nat.c (thread_rec): Add missing empty line after
4344 local variable declaration.
4345
4346 2013-06-11 Joel Brobecker <brobecker@adacore.com>
4347
4348 * windows-nat.c (thread_rec): Revert format used to print
4349 error code returned by SuspendThread from %d back to %u.
4350
4351 2013-06-11 Joel Brobecker <brobecker@adacore.com>
4352
4353 * windows-nat.c (windows_continue): Add "0x" prefix for thread
4354 ID in debug trace.
4355 (get_windows_debug_event): Likewise, for all debug traces.
4356
4357 2013-06-11 Joel Brobecker <brobecker@adacore.com>
4358
4359 * window-nat.c (thread_rec): Add thread ID in SuspendThread
4360 warning message.
4361
4362 2013-06-08 Pedro Alves <pedro@codesourcery.com>
4363 Yao Qi <yao@codesourcery.com>
4364
4365 * mi/mi-main.c (get_register): Remove declaration.
4366 (output_register): Declare.
4367 (mi_cmd_data_list_register_values): Remove local variable
4368 'tuple_cleanup'. Move some code into output_register.
4369 (get_register): Renamed to ...
4370 (output_register): ... this. Output the register's
4371 "number" ui_out tuple here.
4372
4373 2013-06-07 Pedro Alves <palves@redhat.com>
4374
4375 * darwin-nat.c: Fix formating in copyright header.
4376 * darwin-nat.h: Likewise.
4377 * gnu-nat.c: Likewise.
4378 * machoread.c: Likewise.
4379
4380 2013-06-07 Pedro Alves <palves@redhat.com>
4381
4382 PR server/14823
4383 * regformats/regdat.sh: Output #include tdesc.h. Make globals
4384 static. Output a global target description pointer.
4385 (init_registers_${name}): Adjust to initialize a
4386 target description structure.
4387
4388 2013-06-07 Will Newton <will.newton@linaro.org>
4389
4390 * printcmd.c (build_address_symbolic): Call
4391 gdbarch_addr_bits_remove for text minimal symbols.
4392
4393 2013-06-07 Will Newton <will.newton@linaro.org>
4394
4395 * MAINTAINERS: Add myself to Write After Approval.
4396
4397 2013-06-07 Yao Qi <yao@codesourcery.com>
4398
4399 * tracepoint.c (start_tracing): Move code to ...
4400 (trace_reset_local_state): ... here. New.
4401 (disconnect_tracing): Don't call set_current_traceframe,
4402 set_tracepoint_num, and set_traceframe_context. Call
4403 trace_reset_local_state instead.
4404 (tfile_close): Call trace_reset_local_state.
4405 * ctf.c (ctf_close): Likewise.
4406 * remote.c (remote_close): Likewise.
4407 * tracepoint.h (trace_reset_local_state): Declare.
4408
4409 2013-06-06 Doug Evans <dje@google.com>
4410
4411 * dwarf2read.c: Whitespace fixes for DWP file format documentation,
4412 and fix header docs.
4413
4414 2013-06-05 Doug Evans <dje@google.com>
4415 Keith Seitz <keiths@redhat.com>
4416
4417 PR 15519
4418 * cp-namespace.c (find_symbol_in_baseclass): Call
4419 cp_lookup_symbol_in_namespace instead of cp_lookup_symbol_namespace.
4420 Check result of call to lookup_symbol_static.
4421 Call lookup_static_symbol_aux unconditionally.
4422 Call check_typedef on base types before accessing them.
4423 (cp_lookup_nested_symbol): Fix comment.
4424
4425 2013-06-05 Luis Machado <lgustavo@codesourcery.com>
4426
4427 * gnu-v3-abi.c (gnuv3_skip_trampoline): Handle thunk
4428 minimal symbols pointing to function descriptors.
4429
4430 2013-06-05 Tom Tromey <tromey@redhat.com>
4431
4432 * python/py-utils.c (gdb_pymodule_addobject): Cast away const.
4433
4434 2013-06-04 Sergio Durigan Junior <sergiodj@redhat.com>
4435 Pedro Alves <palves@redhat.com>
4436
4437 * remote.c (remote_wait_as): Restore signal handler before returning
4438 when GDB gets a notification.
4439
4440 2013-06-04 Gary Benson <gbenson@redhat.com>
4441
4442 PR 2328
4443 * breakpoint.h (handle_solib_event): Moved function declaration
4444 to solib.h.
4445 * breakpoint.c (handle_solib_event): Moved function to solib.c.
4446 (bpstat_stop_status): Pass new argument to handle_solib_event.
4447 * solib.h (update_solib_breakpoints): New function declaration.
4448 (handle_solib_event): Moved function declaration from
4449 breakpoint.h.
4450 * solib.c (update_solib_breakpoints): New function.
4451 (handle_solib_event): Moved function from breakpoint.c.
4452 Updated to call solib_ops->handle_event if not NULL.
4453 * solist.h (target_so_ops): New fields "update_breakpoints" and
4454 "handle_event".
4455 * infrun.c (set_stop_on_solib_events): New function.
4456 (_initialize_infrun): Use the above for "set
4457 stop-on-solib-events".
4458 (handle_inferior_event): Pass new argument to handle_solib_event.
4459 * solib-svr4.c (probe.h): New include.
4460 (svr4_free_library_list): New forward declaration.
4461 (probe_action): New enum.
4462 (probe_info): New struct.
4463 (probe_info): New static variable.
4464 (NUM_PROBES): New definition.
4465 (svr4_info): New fields "using_xfer", "probes_table" and
4466 "solib_list".
4467 (free_probes_table): New function.
4468 (free_solib_list): New function.
4469 (svr4_pspace_data_cleanup): Free probes table and solib list.
4470 (svr4_copy_library_list): New function.
4471 (svr4_current_sos_via_xfer_libraries): New parameter "annex".
4472 (svr4_read_so_list): New parameter "prev_lm".
4473 (svr4_current_sos_direct): Renamed from "svr4_current_sos".
4474 (svr4_current_sos): New function.
4475 (probe_and_action): New struct.
4476 (hash_probe_and_action): New function.
4477 (equal_probe_and_action): Likewise.
4478 (register_solib_event_probe): Likewise.
4479 (solib_event_probe_at): Likewise.
4480 (solib_event_probe_action): Likewise.
4481 (solist_update_full): Likewise.
4482 (solist_update_incremental): Likewise.
4483 (disable_probes_interface_cleanup): Likewise.
4484 (svr4_handle_solib_event): Likewise.
4485 (svr4_update_solib_event_breakpoint): Likewise.
4486 (svr4_update_solib_event_breakpoints): Likewise.
4487 (svr4_create_solib_event_breakpoints): Likewise.
4488 (enable_break): Free probes table before creating breakpoints.
4489 Use svr4_create_solib_event_breakpoints to create breakpoints.
4490 (svr4_solib_create_inferior_hook): Free the solib list.
4491 (_initialize_svr4_solib): Initialise
4492 svr4_so_ops.handle_solib_event and svr4_so_ops.update_breakpoints.
4493
4494 2013-06-04 Gary Benson <gbenson@redhat.com>
4495
4496 * target.h (target_ops): New field
4497 "to_augmented_libraries_svr4_read".
4498 (target_augmented_libraries_svr4_read): New macro.
4499 * target.c (update_current_target): Handle
4500 to_augmented_libraries_svr4_read.
4501 * remote.c (remote_state): New field
4502 "augmented_libraries_svr4_read".
4503 (remote_augmented_libraries_svr4_read_feature): New function.
4504 (remote_protocol_features): Add entry for
4505 "augmented-libraries-svr4-read".
4506 (remote_augmented_libraries_svr4_read): New function.
4507 (init_remote_ops): Initialize
4508 remote_ops.to_augmented_libraries_svr4_read.
4509
4510 2013-06-04 Gary Benson <gbenson@redhat.com>
4511
4512 * NEWS: Update.
4513
4514 2013-06-04 Gary Benson <gbenson@redhat.com>
4515
4516 * objfiles.h (inhibit_section_map_updates): New function
4517 declaration.
4518 (resume_section_map_updates): Likewise.
4519 (resume_section_map_updates_cleanup): Likewise.
4520 * objfiles.c (objfile_pspace_info): Removed field
4521 "objfiles_changed_p". New fields "new_objfiles_available",
4522 "section_map_dirty" and "inhibit_updates".
4523 (allocate_objfile): Set new_objfiles_available.
4524 (free_objfile): Set section_map_dirty.
4525 (objfile_relocate1): Likewise.
4526 (in_plt_section): Likewise.
4527 (find_pc_section): Update the conditions under which the
4528 section map will be updated.
4529 (inhibit_section_map_updates): New function.
4530 (resume_section_map_updates): Likewise.
4531 (resume_section_map_updates_cleanup): Likewise.
4532
4533 2013-06-04 Gary Benson <gbenson@redhat.com>
4534
4535 * probe.h (get_probe_argument_count): New declaration.
4536 (evaluate_probe_argument): Likewise.
4537 * probe.c (get_probe_argument_count): New function.
4538 (evaluate_probe_argument): Likewise.
4539 (probe_safe_evaluate_at_pc): Use the above new functions.
4540
4541 2013-06-04 Alan Modra <amodra@gmail.com>
4542
4543 * ppc-tdep.h (ppc_insns_match_pattern): Update prototype.
4544 * rs6000-tdep.c (read_insn): Add frame param, don't assume big-endian.
4545 (ppc_insns_match_pattern): Add frame param. Avoid multiple
4546 target mem reads on optional insns.
4547 * ppc-linux-tdep.c (ppc_skip_trampoline_code): Update
4548 ppc_insns_match_pattern calls.
4549 * ppc64-tdep.c (ppc64_standard_linkage2, ppc64_standard_linkage3):
4550 Add match for power7 thread safety insns, and new order of
4551 std 2,40(1) insn. Correct code shown for _dl_runtime_resolve
4552 invocation in comment, and update rest of comment.
4553 (PPC64_STANDARD_LINKAGE1_LEN, PPC64_STANDARD_LINKAGE2_LEN,
4554 PPC64_STANDARD_LINKAGE3_LEN): Delete.
4555 (ppc64_standard_linkage2_target): Update insn offsets.
4556 (ppc64_skip_trampoline_code): Use a single insn buffer. Match newer
4557 stubs first. Update calls.
4558
4559 2013-06-04 Yao Qi <yao@codesourcery.com>
4560
4561 * solib.c (solib_find): Don't need dir separator if path has
4562 drive spec.
4563
4564 2013-06-03 Joel Brobecker <brobecker@adacore.com>
4565
4566 Revert (indirectly causes a SIGSEGV):
4567 * machoread.c (macho_symfile_read): Assign first cleanup to
4568 'back_to'.
4569
4570 2013-06-03 Yao Qi <yao@codesourcery.com>
4571
4572 * mi/mi-cmd-var.c (mi_no_values, mi_simple_values): Move to
4573 mi-parse.c. Make them static.
4574 (mi_all_values): Likewise.
4575 (mi_parse_values_option): Move to mi-parse.c. Rename it to
4576 mi_parse_print_values. Make it external.
4577 * mi/mi-cmds.h (mi_no_values, mi_simple_values, mi_all_values):
4578 Remove the declarations.
4579 * mi/mi-parse.c (mi_parse_print_values): Moved from mi-cmd-var.c.
4580 * mi/mi-parse.h (mi_parse_print_values): Declare.
4581 * mi/mi-cmd-stack.c: Include mi-parse.h.
4582 (parse_print_values): Remove
4583 (mi_cmd_stack_list_locals): Call mi_parse_print_values instead
4584 of parse_print_values.
4585 (mi_cmd_stack_list_args, mi_cmd_stack_list_variables): Likewise.
4586
4587 2013-05-31 Pedro Alves <pedro@codesourcery.com>
4588 Yao Qi <yao@codesourcery.com>
4589
4590 * tracepoint.c (all_tracepoint_actions_and_cleanup): Declare.
4591 (encode_actions): Move code to ...
4592 (all_tracepoint_actions_and_cleanup): ... here. New.
4593 (trace_dump_command): Likewise.
4594
4595 2013-05-30 Tom Tromey <tromey@redhat.com>
4596
4597 * symmisc.c (maintenance_expand_symtabs): Call do_cleanups.
4598
4599 2013-05-30 Tom Tromey <tromey@redhat.com>
4600
4601 * xml-support.c (gdb_xml_create_parser_and_cleanup): Rename from
4602 gdb_xml_create_parser_and_cleanup_1. Return a cleanup. Remove
4603 'old_chain' argument. Add 'parser_result' argument.
4604 (gdb_xml_create_parser_and_cleanup): Remove old version.
4605 (gdb_xml_parse_quick): Update.
4606 (xml_process_xincludes): Update.
4607 * xml-support.h (gdb_xml_create_parser_and_cleanup): Don't
4608 declare.
4609
4610 2013-05-30 Tom Tromey <tromey@redhat.com>
4611
4612 * probe.c (collect_probes): Check arguments for NULL before
4613 calling compile_rx_or_error.
4614 * utils.c (compile_rx_or_error): Require 'rx' to be non-NULL.
4615 Remove NULL return.
4616
4617 2013-05-30 Tom Tromey <tromey@redhat.com>
4618
4619 * infrun.c (adjust_pc_after_break): Introduce an outer null
4620 cleanup.
4621
4622 2013-05-30 Tom Tromey <tromey@redhat.com>
4623
4624 * mi/mi-cmd-var.c (varobj_update_one): Add an outer null cleanup.
4625
4626 2013-05-30 Tom Tromey <tromey@redhat.com>
4627
4628 * cli/cli-script.c (read_command_lines_1): Use a null cleanup
4629 for 'old_chain'. Do not check 'head' before processing
4630 cleanups.
4631
4632 2013-05-30 Tom Tromey <tromey@redhat.com>
4633
4634 * mi/mi-cmd-stack.c (list_arg_or_local): Remove
4635 "cleanup_tuple".
4636
4637 2013-05-30 Tom Tromey <tromey@redhat.com>
4638
4639 * dbxread.c (dbx_read_symtab): Declare 'back_to' in a more
4640 inner scope. Unconditionally call do_cleanups.
4641
4642 2013-05-30 Tom Tromey <tromey@redhat.com>
4643
4644 * source.c (find_and_open_source): Call do_cleanups.
4645
4646 2013-05-30 Tom Tromey <tromey@redhat.com>
4647
4648 * linux-thread-db.c (thread_db_load_search): Unconditionally
4649 call do_cleanups.
4650
4651 2013-05-30 Tom Tromey <tromey@redhat.com>
4652
4653 * solib-aix.c (solib_aix_bfd_open): Don't use a null cleanup
4654 for 'cleanup'; instead use a later one.
4655
4656 2013-05-30 Tom Tromey <tromey@redhat.com>
4657
4658 * python/py-breakpoint.c (bppy_get_commands): Use
4659 explicit, unconditional return.
4660 * python/py-frame.c (frapy_read_var): Likewise.
4661 * python/python.c (gdbpy_decode_line): Likewise.
4662
4663 2013-05-30 Tom Tromey <tromey@redhat.com>
4664
4665 * cp-namespace.c (cp_lookup_symbol_imports_or_template): Call
4666 do_cleanups on all return paths.
4667
4668 2013-05-30 Tom Tromey <tromey@redhat.com>
4669
4670 * top.c (execute_command): Discard 'cleanup_if_error' cleanups.
4671
4672 2013-05-30 Tom Tromey <tromey@redhat.com>
4673
4674 * stabsread.c (read_struct_type): Call do_cleanups along
4675 all return paths.
4676
4677 2013-05-30 Maciej W. Rozycki <macro@codesourcery.com>
4678
4679 * mips-linux-tdep.c: Adjust formatting throughout.
4680
4681 2013-05-30 Tom Tromey <tromey@redhat.com>
4682
4683 * mipsread.c (read_alphacoff_dynamic_symtab): Call do_cleanups
4684 along all return paths.
4685
4686 2013-05-30 Tom Tromey <tromey@redhat.com>
4687
4688 * symfile.c (find_separate_debug_file): Call do_cleanups
4689 along all return paths.
4690
4691 2013-05-30 Tom Tromey <tromey@redhat.com>
4692
4693 * symtab.c (search_symbols): Introduce a null cleanup for
4694 'retval_chain'.
4695
4696 2013-05-30 Tom Tromey <tromey@redhat.com>
4697
4698 * python/py-value.c (valpy_binop): Call do_cleanups before
4699 exiting loop.
4700
4701 2013-05-30 Tom Tromey <tromey@redhat.com>
4702
4703 * python/py-prettyprint.c (print_children): Remove extra
4704 do_cleanups call.
4705
4706 2013-05-30 Tom Tromey <tromey@redhat.com>
4707
4708 * python/py-frame.c (frapy_read_var): Call do_cleanups along
4709 all return paths.
4710
4711 2013-05-30 Tom Tromey <tromey@redhat.com>
4712
4713 * python/py-breakpoint.c (bppy_get_commands): Call do_cleanups
4714 along all return paths.
4715
4716 2013-05-30 Tom Tromey <tromey@redhat.com>
4717
4718 * cli/cli-logging.c (set_logging_redirect): Unconditionally
4719 call do_cleanups.
4720
4721 2013-05-30 Tom Tromey <tromey@redhat.com>
4722
4723 * varobj.c (c_value_of_root): Call do_cleanups along all
4724 return paths.
4725
4726 2013-05-30 Tom Tromey <tromey@redhat.com>
4727
4728 * tracepoint.c (trace_dump_command): Unconditionally call
4729 do_cleanups.
4730
4731 2013-05-30 Tom Tromey <tromey@redhat.com>
4732
4733 * breakpoint.c (output_thread_groups, parse_cmd_to_aexpr): Call
4734 do_cleanups earlier.
4735
4736 2013-05-30 Tom Tromey <tromey@redhat.com>
4737
4738 * machoread.c (macho_symfile_read): Assign first cleanup to
4739 'back_to'.
4740
4741 2013-05-30 Tom Tromey <tromey@redhat.com>
4742
4743 * m32r-rom.c (m32r_load): Call do_cleanups at all returns.
4744
4745 2013-05-30 Tom Tromey <tromey@redhat.com>
4746
4747 * mi/mi-main.c (list_available_thread_groups): Call do_cleanups.
4748
4749 2013-05-30 Tom Tromey <tromey@redhat.com>
4750
4751 * inf-ptrace.c (inf_ptrace_create_inferior): Unconditionally
4752 call discard_cleanups.
4753 (inf_ptrace_attach): Likewise.
4754
4755 2013-05-30 Tom Tromey <tromey@redhat.com>
4756
4757 * remote-mips.c (mips_exit_debug): Call do_cleanups on all
4758 return paths.
4759 (mips_initialize): Likewise.
4760 (common_open): Call do_cleanups.
4761
4762 2013-05-30 Tom Tromey <tromey@redhat.com>
4763
4764 * utils.c (internal_vproblem): Call do_cleanups.
4765
4766 2013-05-30 Tom Tromey <tromey@redhat.com>
4767
4768 * linespec.c (find_linespec_symbols): Don't reassign to 'cleanup'.
4769
4770 2013-05-30 Tom Tromey <tromey@redhat.com>
4771
4772 * cli/cli-script.c (setup_user_args): Don't return after error.
4773
4774 2013-05-30 Tom Tromey <tromey@redhat.com>
4775
4776 * somread.c (som_symtab_read): Call do_cleanups.
4777
4778 2013-05-30 Tom Tromey <tromey@redhat.com>
4779
4780 * printcmd.c (print_command_1): Unconditionally call do_cleanups.
4781
4782 2013-05-30 Tom Tromey <tromey@redhat.com>
4783
4784 * cli/cli-cmds.c (cd_command, alias_command): Call do_cleanups.
4785 * cli/cli-dump.c (restore_binary_file): Call do_cleanups.
4786 * interps.c (interpreter_exec_cmd): Call do_cleanups.
4787 * source.c (show_substitute_path_command): Call do_cleanups.
4788 (unset_substitute_path_command, set_substitute_path_command):
4789 Likewise.
4790 * symfile.c (load_command): Call do_cleanups.
4791
4792 2013-05-30 Tom Tromey <tromey@redhat.com>
4793
4794 * contrib/cleanup_check.py: New file.
4795 * contrib/gcc-with-excheck: Add option parsing.
4796
4797 2013-05-30 Joel Brobecker <brobecker@adacore.com>
4798
4799 * windows-nat.c (windows_delete_thread): Add missing space
4800 in cast expression.
4801
4802 2013-05-30 Hafiz Abid Qadeer <abidh@codesourcery.com>
4803
4804 * inferior.c (top level): Include tilde.h.
4805 (add_inferior_command): Call tilde_expand on the value of 'exec'
4806 argument.
4807
4808 2013-05-30 Pedro Alves <pedro@codesourcery.com>
4809 Yao Qi <yao@codesourcery.com>
4810
4811 * tracepoint.c (encode_actions_1): Remove parameter 't'.
4812 Caller update.
4813 (encode_actions): Likewise.
4814 * remote.c (remote_download_tracepoint): Caller update.
4815 * tracepoint.h (encode_actions): Update declaration.
4816
4817 2013-05-30 Pedro Alves <palves@redhat.com>
4818
4819 * python/python-internal.h (gdb_Py_DECREF): Cast OP to PyObject
4820 pointer.
4821
4822 2013-05-30 Yao Qi <yao@codesourcery.com>
4823
4824 * remote.c (remote_check_symbols): Remove unused parameter
4825 'objfile'.
4826 Declaration update.
4827 (remote_start_remote, remote_new_objfile): Caller update.
4828
4829 2013-05-30 Yao Qi <yao@codesourcery.com>
4830
4831 * mi/mi-cmds.c (mi_cmds): Define MI command
4832 '-exec-arguments' by macro DEF_MI_CMD_CLI_1 instead of
4833 DEF_MI_CMD_CLI.
4834
4835 2013-05-29 Pedro Alves <palves@redhat.com>
4836
4837 * remote.c (remote_insert_breakpoint, remote_remove_breakpoint)
4838 (remote_insert_watchpoint, remote_remove_watchpoint)
4839 (remote_insert_hw_breakpoint, remote_remove_hw_breakpoint)
4840 (remote_verify_memory, compare_sections_command)
4841 (remote_search_memory): Set the general process/thread on the
4842 remote side.
4843
4844 2013-05-29 Pedro Alves <palves@redhat.com>
4845
4846 * aarch64-tdep.c: Don't include "features/aarch64-without-fpu.c".
4847 (_initialize_aarch64_tdep): Don't call
4848 initialize_tdesc_aarch64_without_fpu.
4849 * features/Makefile (WHICH): Remove reference to
4850 aarch64-without-fpu.
4851 * features/aarch64-without-fpu.c: Delete file.
4852 * regformats/aarch64-without-fpu.dat: Delete file.
4853
4854 2013-05-28 Yao Qi <yao@codesourcery.com>
4855
4856 * tracepoint.c (stringify_collection_list): Remove parameter
4857 'string'.
4858 (encode_actions): Caller update. Remove local variables.
4859
4860 2013-05-24 Yao Qi <yao@codesourcery.com>
4861
4862 * tracepoint.c (TFILE_PID): Remove.
4863 (tfile_open): Don't add thread and inferior.
4864 (tfile_close): Don't set 'inferior_ptid'. Don't call
4865 exit_inferior_silent.
4866 (tfile_thread_alive): Remove.
4867 (init_tfile_ops): Don't set field 'to_thread_alive' of
4868 tfile_ops.
4869
4870 2013-05-23 Doug Evans <dje@google.com>
4871
4872 * contrib/cc-with-tweaks.sh (-p): Handle no dwo files.
4873
4874 2013-05-23 Pedro Alves <palves@redhat.com>
4875
4876 * common/filestuff.c [USE_WIN32API]: Define HAVE_SOCKETS.
4877 [HAVE_SYS_SOCKET_H]: Define HAVE_SOCKETS.
4878 (socket_mark_cloexec, gdb_socketpair_cloexec, gdb_socket_cloexec):
4879 Only define if HAVE_SOCKETS is defined.
4880 * configure.ac: Check for sys/socket.h.
4881 * config.in, configure: Regenerate.
4882
4883 2013-05-23 Pedro Alves <palves@redhat.com>
4884
4885 * dwarf2read.c (create_dwp_hash_table, create_dwo_in_dwp)
4886 (open_and_init_dwp_file): Use %s/pulongest instead of %u for
4887 printing uint32_t variables.
4888
4889 2013-05-23 Pedro Alves <palves@redhat.com>
4890
4891 * NEWS: Mention GDBserver range stepping support.
4892
4893 2013-05-23 Yao Qi <yao@codesourcery.com>
4894 Pedro Alves <palves@redhat.com>
4895
4896 * gdbthread.h (struct thread_control_state) <may_range_step>: New
4897 field.
4898 * infcmd.c (step_once, until_next_command): Enable range stepping.
4899 * infrun.c (displaced_step_prepare): Disable range stepping.
4900 (resume): Disable range stepping if stepping over a breakpoint or
4901 we have software watchpoints. If range stepping is enabled,
4902 assert the thread is in the stepping range.
4903 (clear_proceed_status_thread): Clear may_range_step.
4904 (handle_inferior_event): Disable range stepping as soon as we know
4905 the thread that hit the event. Re-enable it whenever we're going
4906 to step with a step range.
4907 * remote.c (struct vCont_action_support) <r>: New field.
4908 (use_range_stepping): New global.
4909 (remote_vcont_probe): Handle 'r' action.
4910 (append_resumption): Append an 'r' action if the thread may range
4911 step.
4912 (show_range_stepping): New function.
4913 (set_range_stepping): New function.
4914 (_initialize_remote): Call add_setshow_boolean_cmd to register the
4915 'set range-stepping' and 'show range-stepping' commands.
4916 * NEWS: Mention range stepping, the new vCont;r action, and the
4917 new "set/show range-stepping" commands.
4918
4919 2013-05-23 Yao Qi <yao@codesourcery.com>
4920 Pedro Alves <palves@redhat.com>
4921
4922 * remote.c (struct vCont_action_support): New struct.
4923 (struct remote_state) <support_vCont_t>: Remove field.
4924 <vCont_actions_support>: New field.
4925 (remote_vcont_probe, remote_stop_ns): Update.
4926
4927 2013-05-23 Yao Qi <yao@codesourcery.com>
4928 Pedro Alves <palves@redhat.com>
4929
4930 * gdbthread.h (pc_in_thread_step_range): New declaration.
4931 * thread.c (pc_in_thread_step_range): New function.
4932 * infrun.c (handle_inferior_event): Use it.
4933
4934 2013-05-23 Joel Brobecker <brobecker@adacore.com>
4935
4936 * mi/mi-cmd-break.c (mi_argv_to_format): Use xsnprintf instead
4937 of sprintf.
4938
4939 2013-05-22 Keith Seitz <keiths@redhat.com>
4940
4941 * ada-lang.c (is_known_support_routine): Add explicit free of
4942 'func_name' from find_frame_funname.
4943 (ada_unhandled_exception_name_addr_from_raise): Add cleanups
4944 for func_name from find_frame_funname.
4945 * python/py-frame.c (frapy_name): Add explicit free of
4946 'name' from find_frame_funname.
4947 * stack.c (find_frame_funname): Add comment explaining that
4948 funcp must be freed by the caller.
4949 Return copy of symbol names instead of pointers.
4950 (print_frame): Add a cleanup for 'funname' from
4951 find_frame_funname.
4952 * stack.h (find_frame_funname): Remove "const" from
4953 'funname' parameter.
4954
4955 2013-05-22 Tom Tromey <tromey@redhat.com>
4956
4957 PR c++/15401:
4958 * c-valprint.c (c_value_print): Use value_addr for
4959 references. Convert back to reference type with value_ref.
4960
4961 2013-05-22 Eli Zaretskii <eliz@gnu.org>
4962
4963 * windows-nat.c (handle_unload_dll): Don't call solib_add for the
4964 unloaded DLL, it will be done by handle_solib_event. See
4965 http://sourceware.org/ml/gdb-patches/2013-05/msg00713.html for the
4966 details.
4967
4968 2013-05-22 Phil Muldoon <pmuldoon@redhat.com>
4969
4970 * ui-out.c: Create typedef ui_out_level_p and define vector
4971 operations for that type.
4972 (struct ui_out): Use a vector instead of an array.
4973 (current_level): Return level from a vector.
4974 (push_level): Create a level in a vector.
4975 (pop_level): Delete a level in a vector.
4976 (ui_out_new): Create initial level zero level, and store in a
4977 vector.
4978 (ui_out_destroy): Add vector cleanup.
4979
4980 2013-05-22 Pedro Alves <palves@redhat.com>
4981
4982 * python/python-internal.h (gdb_Py_DECREF): Tag with
4983 "ARI: editCase function".
4984
4985 2013-05-21 Paul Pluzhnikov <ppluzhnikov@google.com>
4986
4987 * solib-svr4.c (svr4_free_so): Protect against NULL dereference.
4988
4989 2013-05-21 Pedro Alves <palves@redhat.com>
4990
4991 * python/py-prettyprint.c (apply_val_pretty_printer): Check
4992 whether PRINTER is NULL before installing a Py_DECREF cleanup.
4993 * python/py-utils.c (py_decref): Don't check for NULL before
4994 calling Py_DECREF.
4995
4996 2013-05-21 Pedro Alves <palves@redhat.com>
4997
4998 * python/py-utils.c (py_decref): Remove extra braces.
4999 (gdb_pymodule_addobject): Remove extra braces.
5000 * python-internal.h (gdb_Py_DECREF): New static inline function.
5001 (Py_DECREF): Redefine as calling gdb_Py_DECREF.
5002
5003 2013-05-21 Philippe Waroquiers <philippe.waroquiers@skynet.be>
5004
5005 * breakpoints.c (detach_breakpoints): Do not
5006 detach breakpoints locations with loc_type bp_loc_other.
5007
5008 2013-05-21 Jan Kratochvil <jan.kratochvil@redhat.com>
5009
5010 Workaround Python 2.6.
5011 * python/py-utils.c (gdb_pymodule_addobject): Wrap Py_DECREF into
5012 a block.
5013
5014 2013-05-21 Jan Kratochvil <jan.kratochvil@redhat.com>
5015
5016 Code cleanup: constification.
5017 * solib.c (solib_ops): Make return type and ops variable type const.
5018 (set_solib_ops): Make the new_ops parameter and ops variable const.
5019 (solib_find, solib_map_sections, clear_so, free_so, update_solib_list)
5020 (solib_add, solib_keep_data_in_core, clear_solib)
5021 (solib_create_inferior_hook, in_solib_dynsym_resolve_code)
5022 (reload_shared_libraries, solib_global_lookup): Make the ops variable
5023 const.
5024 * solib.h (set_solib_ops): Make the new_ops parameter const.
5025
5026 2013-05-21 Joel Brobecker <brobecker@adacore.com>
5027
5028 * data-directory/Makefile.in (SYSTEM_GDBINIT_SRCDIR): New
5029 variable.
5030 (VPATH): Add SYSTEM_GDBINIT_SRCDIR.
5031 (SYSTEM_GDBINIT_DIR, SYSTEM_GDBINIT_INSTALL_DIR)
5032 (SYSTEM_GDBINIT_FILES): New variables.
5033 (all): Add stamp-system-gdbinit.
5034 (stamp-system-gdbinit): New rule.
5035 (clean-system-gdbinit, install-system-gdbinit)
5036 (uninstall-system-gdbinit): New rules. Make them .PHONY.
5037 (install-only): Add dependency on install-system-gdbinit.
5038 (uninstall): Add dependency on uninstall-system-gdbinit.
5039 (clean): Add dependency on clean-system-gdbinit.
5040 * system-gdbinit/elinos.py: New file.
5041 * system-gdbinit/wrs-linux.py: New file.
5042
5043 2013-05-21 Joel Brobecker <brobecker@adacore.com>
5044
5045 * ada-lang.c (old_renaming_is_invisible): Fix cleanup leak.
5046
5047 2013-05-21 Hui Zhu <hui@codesourcery.com>
5048
5049 * breakpoint.c (dprintf_breakpoint_ops): Remove its static.
5050 * breakpoint.h (dprintf_breakpoint_ops): Add extern.
5051 * mi/mi-cmd-break.c (ctype.h): New include.
5052 (gdb_obstack.h): New include.
5053 (mi_argv_to_format, mi_cmd_break_insert_1): New.
5054 (mi_cmd_break_insert): Call mi_cmd_break_insert_1.
5055 (mi_cmd_dprintf_insert): New.
5056 * mi/mi-cmds.c (mi_cmds): Add "dprintf-insert".
5057 * mi/mi-cmds.h (mi_cmd_dprintf_insert): New extern.
5058
5059 2013-05-20 Tom Tromey <tromey@redhat.com>
5060
5061 * python/py-prettyprint.c (search_pp_list): Decref 'attr'.
5062
5063 2013-05-20 Tom Tromey <tromey@redhat.com>
5064
5065 * python/py-value.c (valpy_get_dynamic_type): Simplify
5066 dynamic_type assignment. Use Py_XINCREF.
5067
5068 2013-05-20 Tom Tromey <tromey@redhat.com>
5069
5070 * python/py-type.c (typy_fields): Unconditionally decref 'r'.
5071
5072 2013-05-20 Tom Tromey <tromey@redhat.com>
5073
5074 * python/py-frame.c (frapy_older, frapy_newer, gdbpy_newest_frame)
5075 (gdbpy_selected_frame): Move object-construction code
5076 out of TRY_CATCH.
5077
5078 2013-05-20 Tom Tromey <tromey@redhat.com>
5079
5080 * python/py-arch.c (gdbpy_initialize_arch): Use
5081 gdb_pymodule_addobject.
5082 * python/py-block.c (gdbpy_initialize_blocks): Use
5083 gdb_pymodule_addobject.
5084 * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Use
5085 gdb_pymodule_addobject.
5086 * python/py-cmd.c (gdbpy_initialize_breakpoints): Use
5087 gdb_pymodule_addobject.
5088 * python/py-event.c (gdbpy_initialize_event_generic): Use
5089 gdb_pymodule_addobject.
5090 * python/py-evtregistry.c (gdbpy_initialize_eventregistry): Use
5091 gdb_pymodule_addobject.
5092 * python/py-evts.c (add_new_registry): Use
5093 gdb_pymodule_addobject.
5094 (gdbpy_initialize_py_events): Likewise.
5095 * python/py-finishbreakpoint.c
5096 (gdbpy_initialize_finishbreakpoints): Use
5097 gdb_pymodule_addobject.
5098 * python/py-frame.c (gdbpy_initialize_frames): Use
5099 gdb_pymodule_addobject.
5100 * python/py-function.c (gdbpy_initialize_functions): Use
5101 gdb_pymodule_addobject.
5102 * python/py-inferior.c (gdbpy_initialize_inferior): Use
5103 gdb_pymodule_addobject.
5104 * python/py-infthread.c (gdbpy_initialize_thread): Use
5105 gdb_pymodule_addobject.
5106 * python/py-objfile.c (gdbpy_initialize_objfile): Use
5107 gdb_pymodule_addobject.
5108 * python/py-param.c (gdbpy_initialize_parameters): Use
5109 gdb_pymodule_addobject.
5110 * python/py-progspace.c (gdbpy_initialize_pspace): Use
5111 gdb_pymodule_addobject.
5112 * python/py-symbol.c (gdbpy_initialize_symbols): Use
5113 gdb_pymodule_addobject.
5114 * python/py-symtab.c (gdbpy_initialize_symtabs): Use
5115 gdb_pymodule_addobject.
5116 * python/py-type.c (gdbpy_initialize_types): Use
5117 gdb_pymodule_addobject.
5118 * python/py-utils.c (gdb_pymodule_addobject): New function.
5119 * python/py-value.c (gdbpy_initialize_values): Use
5120 gdb_pymodule_addobject.
5121 * python/python-internal.h (gdb_pymodule_addobject): Declare.
5122 * python/python.c (_initialize_python): Use
5123 gdb_pymodule_addobject.
5124
5125 2013-05-20 Tom Tromey <tromey@redhat.com>
5126
5127 * python/py-cmd.c (cmdpy_completer): Use explicit decref.
5128 * python/py-param.c (get_set_value, get_show_value): Use
5129 explicit decrefs.
5130 * python/python.c (start_type_printers, apply_type_printers):
5131 Use explicit decrefs.
5132
5133 2013-05-20 Tom Tromey <tromey@redhat.com>
5134
5135 * python/py-evts.c (gdbpy_initialize_py_events): Don't
5136 incref the module.
5137
5138 2013-05-20 Tom Tromey <tromey@redhat.com>
5139
5140 * python/python.c (gdbpy_run_events): Decref the result
5141 of PyObject_CallObject.
5142
5143 2013-05-20 Tom Tromey <tromey@redhat.com>
5144
5145 * python/py-symtab.c (set_sal): Use
5146 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION. Return -1 on error.
5147 (symtab_and_line_to_sal_object): Update.
5148
5149 2013-05-20 Tom Tromey <tromey@redhat.com>
5150
5151 * python/py-param.c (compute_enum_values): Decref 'item'.
5152
5153 2013-05-20 Tom Tromey <tromey@redhat.com>
5154
5155 * mi/mi-main.c: Include python-internal.h.
5156 (mi_cmd_list_features): Check gdb_python_initialized.
5157 * python/py-inferior.c (python_on_normal_stop, python_on_resume)
5158 (python_inferior_exit, python_new_objfile, add_thread_object)
5159 (delete_thread_object, py_free_inferior): Check
5160 gdb_python_initialized.
5161 * python/py-prettyprint.c (apply_val_pretty_printer): Check
5162 gdb_python_initialized.
5163 * python/py-type.c (save_objfile_types): Check
5164 gdb_python_initialized.
5165 * python/python-internal.h (gdb_python_initialized): Declare.
5166 * python/python.c (ensure_python_env): Throw exception if
5167 Python not initialized.
5168 (before_prompt_hook, source_python_script_for_objfile)
5169 (start_type_printers, apply_type_printers,
5170 free_type_printers): Check gdb_python_initialized.
5171 * varobj.c (varobj_get_display_hint)
5172 (dynamic_varobj_has_child_method, update_dynamic_varobj_children)
5173 (install_new_value_visualizer, varobj_set_visualizer)
5174 (value_get_print_value): Check gdb_python_initialized.
5175
5176 2013-05-20 Tom Tromey <tromey@redhat.com>
5177
5178 * python/py-arch.c (gdbpy_initialize_arch): Return 'int'.
5179 Check errors.
5180 * python/py-auto-load.c (gdbpy_initialize_auto_load): Return 'int'.
5181 * python/py-block.c (gdbpy_initialize_blocks): Return 'int'.
5182 Check errors.
5183 * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Return 'int'.
5184 Check errors.
5185 * python/py-cmd.c (gdbpy_initialize_commands): Return 'int'.
5186 Check errors.
5187 * python/py-event.c (gdbpy_initialize_event): Return 'int'.
5188 Check errors.
5189 * python/py-event.h (GDBPY_NEW_EVENT_TYPE): Change generated
5190 init function to return 'int'.
5191 * python/py-evtregistry.c (gdbpy_initialize_eventregistry):
5192 Return 'int'. Check errors.
5193 * python/py-evts.c (gdbpy_initialize_py_events): Return 'int'.
5194 Check errors.
5195 * python/py-finishbreakpoint.c (gdbpy_initialize_finishbreakpoints):
5196 Return 'int'. Check errors.
5197 * python/py-frame.c (gdbpy_initialize_frames): Return 'int'.
5198 Check errors.
5199 * python/py-function.c (gdbpy_initialize_functions): Return 'int'.
5200 Check errors.
5201 * python/py-gdb-readline.c (gdbpy_initialize_gdb_readline):
5202 Check errors.
5203 * python/py-inferior.c (gdbpy_initialize_inferior): Return 'int'.
5204 Check errors.
5205 * python/py-infthread.c (gdbpy_initialize_thread): Return 'int'.
5206 Check errors.
5207 * python/py-lazy-string.c (gdbpy_initialize_lazy_string): Return 'int'.
5208 Check errors.
5209 * python/py-objfile.c (gdbpy_initialize_objfile): Return 'int'.
5210 Check errors.
5211 * python/py-param.c (gdbpy_initialize_parameters): Return 'int'.
5212 Check errors.
5213 * python/py-progspace.c (gdbpy_initialize_pspace): Return 'int'.
5214 Check errors.
5215 * python/py-symbol.c (gdbpy_initialize_symbols): Return 'int'.
5216 Check errors.
5217 * python/py-symtab.c (gdbpy_initialize_symtabs): Return 'int'.
5218 Check errors.
5219 * python/py-type.c (gdbpy_initialize_types): Return 'int'.
5220 Check errors.
5221 * python/py-value.c (gdbpy_initialize_values): Return 'int'.
5222 Check errors.
5223 * python/python-internal.h (gdbpy_initialize_auto_load,
5224 gdbpy_initialize_values, gdbpy_initialize_frames,
5225 gdbpy_initialize_symtabs, gdbpy_initialize_commands,
5226 gdbpy_initialize_symbols, gdbpy_initialize_symtabs,
5227 gdbpy_initialize_blocks, gdbpy_initialize_types,
5228 gdbpy_initialize_functions, gdbpy_initialize_pspace,
5229 gdbpy_initialize_objfile, gdbpy_initialize_breakpoints,
5230 gdbpy_initialize_finishbreakpoints,
5231 gdbpy_initialize_lazy_string, gdbpy_initialize_parameters,
5232 gdbpy_initialize_thread, gdbpy_initialize_inferior,
5233 gdbpy_initialize_eventregistry, gdbpy_initialize_event,
5234 gdbpy_initialize_py_events, gdbpy_initialize_stop_event,
5235 gdbpy_initialize_signal_event,
5236 gdbpy_initialize_breakpoint_event,
5237 gdbpy_initialize_continue_event,
5238 gdbpy_initialize_exited_event, gdbpy_initialize_thread_event,
5239 gdbpy_initialize_new_objfile_event, gdbpy_initialize_arch):
5240 Update. Use CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
5241 * python/python.c (gdb_python_initialized): New global.
5242 (gdbpy_initialize_events): Return 'int'. Check errors.
5243 (_initialize_python): Check errors. Set
5244 gdb_python_initialized.
5245
5246 2013-05-20 Tom Tromey <tromey@redhat.com>
5247
5248 * python/py-finishbreakpoint.c (bpfinishpy_out_of_scope):
5249 Decref the reslut of PyObject_CallMethod.
5250
5251 2013-05-20 Tom Tromey <tromey@redhat.com>
5252
5253 * python/py-event.c (gdbpy_initialize_event_generic): Return
5254 early if PyType_Ready fails.
5255
5256 2013-05-20 Tom Tromey <tromey@redhat.com>
5257
5258 * python/py-type.c (make_fielditem): Add gdb_assert_not_reached
5259 as 'default' in the switch.
5260
5261 2013-05-20 Tom Tromey <tromey@redhat.com>
5262
5263 * python/py-inferior.c (gdbpy_inferiors): Update. Hoist
5264 get_addr_from_python calls out of TRY_CATCH.
5265 (infpy_write_memory, infpy_search_memory): Likewise.
5266 * python/py-utils.c (get_addr_from_python): Return negative
5267 value on error. Use TRY_CATCH.
5268 * python/python-internal.h (get_addr_from_python): Use
5269 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
5270
5271 2013-05-20 Tom Tromey <tromey@redhat.com>
5272
5273 * python/py-event.c (evpy_emit_event): Decref the
5274 result of PyObject_CallFunctionObjArgs.
5275
5276 2013-05-20 Tom Tromey <tromey@redhat.com>
5277
5278 * python/py-cmd.c (cmdpy_completer): Use iterator protocol.
5279 Correctly decref.
5280
5281 2013-05-20 Tom Tromey <tromey@redhat.com>
5282
5283 * python/py-cmd.c (cmdpy_init): Decref 'ds_obj'.
5284
5285 2013-05-20 Tom Tromey <tromey@redhat.com>
5286
5287 * python/py-event.h (gdbpy_initialize_event_generic): Use
5288 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
5289 * python/py-evts.c (add_new_registry): Use
5290 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
5291 * python/python-internal.h
5292 (CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION): New macro.
5293
5294 2013-05-20 Tom Tromey <tromey@redhat.com>
5295
5296 * python/py-arch.c (archpy_disassemble): Update.
5297 * python/py-type.c (typy_get_composite, typy_lookup_typename)
5298 (typy_lookup_type): Use GDB_PY_HANDLE_EXCEPTION.
5299 * python/py-utils.c (gdbpy_convert_exception): Return 'void'.
5300 * python/python-internal.h (CPYCHECKER_SETS_EXCEPTION): New
5301 macro.
5302 (GDB_PY_HANDLE_EXCEPTION): Update.
5303 (gdbpy_convert_exception): Update. Use CPYCHECKER_SETS_EXCEPTION.
5304
5305 2013-05-20 Tom Tromey <tromey@redhat.com>
5306
5307 * python/python-internal.h (events_object_type): Remove.
5308
5309 2013-05-20 Tom Tromey <tromey@redhat.com>
5310
5311 * python/py-event.h (evpy_emit_event): Use
5312 CPYCHECKER_STEALS_REFERENCE_TO_ARG.
5313 * python/python-internal.h (CPYCHECKER_STEALS_REFERENCE_TO_ARG):
5314 New macro.
5315
5316 2013-05-20 Tom Tromey <tromey@redhat.com>
5317
5318 * py-evtregistry.c (create_event_object): Decref
5319 eventregistry_object if PyList_New fails.
5320
5321 2013-05-20 Tom Tromey <tromey@redhat.com>
5322
5323 * py-cmd.c (gdbpy_string_to_argv): Check result of
5324 PyList_New.
5325
5326 2013-05-20 Tom Tromey <tromey@redhat.com>
5327
5328 * python/python.c (before_prompt_hook): Add cleanup to
5329 decref 'hook'.
5330
5331 2013-05-20 Tom Tromey <tromey@redhat.com>
5332
5333 * python/py-function.c (fnpy_init): Decref result of
5334 PyObject_GetAttrString.
5335
5336 2013-05-20 Tom Tromey <tromey@redhat.com>
5337
5338 * python/py-threadevent.c (get_event_thread): Use
5339 CPYCHECKER_RETURNS_BORROWED_REF.
5340 * python/python-internal.h (CPYCHECKER_RETURNS_BORROWED_REF):
5341 New define.
5342 (pspace_to_pspace_object, objfile_to_objfile_object)
5343 (find_thread_object): Use it.
5344
5345 2013-05-20 Tom Tromey <tromey@redhat.com>
5346
5347 * python/py-arch.c (arch_object_type): Use
5348 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5349 * python/py-block.c (block_syms_iterator_object_type):
5350 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5351 * python/py-bpevent.c (breakpoint_event_object_type):
5352 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5353 * python/py-cmd.c (cmdpy_object_type): Use
5354 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5355 * python/py-continueevent.c (continue_event_object_type):
5356 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5357 * python/py-event.h (GDBPY_NEW_EVENT_TYPE):
5358 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5359 * python/py-events.h (thread_event_object_type):
5360 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5361 * python/py-evtregistry.c (eventregistry_object_type): Use
5362 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5363 * python/py-exitedevent.c (exited_event_object_type):
5364 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5365 * python/py-finishbreakpoint.c (finish_breakpoint_object_type):
5366 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5367 * python/py-function.c (fnpy_object_type): Use
5368 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5369 * python/py-inferior.c (inferior_object_type, membuf_object_type):
5370 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5371 * python/py-infthread.c (thread_object_type): Use
5372 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5373 * python/py-lazy-string.c (lazy_string_object_type):
5374 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5375 * python/py-newobjfileevent.c (new_objfile_event_object_type):
5376 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5377 * python/py-objfile.c (objfile_object_type): Use
5378 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5379 * python/py-param.c (parmpy_object_type):
5380 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5381 * python/py-progspace.c (pspace_object_type):
5382 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5383 * python/py-signalevent.c (signal_event_object_type):
5384 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5385 * python/py-symtab.c (symtab_object_type, sal_object_type): Use
5386 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5387 * python/py-type.c (type_object_type, field_object_type)
5388 (type_iterator_object_type): Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5389 * python/py-internal.h (CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF): New
5390 define.
5391 (value_object_type, block_object_type, symbol_object_type)
5392 (event_object_type, stop_event_object_type, breakpoint_object_type)
5393 (frame_object_type): Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5394
5395 2013-05-20 Andreas Tobler <andreas@fgznet.ch>
5396
5397 * Makefile.in (ALL_TARGET_OBS): Add ppcfbsd-tdep.o.
5398 (ALLDEPFILES): Add ppcfbsd-nat.c and ppcfbsd-tdep.c.
5399
5400 2013-05-20 Doug Evans <dje@google.com>
5401
5402 When reading CU, stay in DWO. Be more tolerent of bad debug info.
5403 For Fission.
5404 * dwarf2read.c (struct dwarf2_per_cu_data): New member
5405 reading_dwo_directly.
5406 (struct signatured_type): New member dwo_unit.
5407 (struct die_reader_specs): New member comp_dir.
5408 (create_signatured_type_table_from_index): Use malloc for
5409 all_type_units instead of objfile's obstack.
5410 (create_all_type_units): Ditto.
5411 (fill_in_sig_entry_from_dwo_entry): New function.
5412 (add_type_unit): New function.
5413 (lookup_dwo_signatured_type): New function.
5414 (lookup_dwp_signatured_type): New function.
5415 (lookup_signatured_type): New arg cu. All callers updated.
5416 (init_cu_die_reader): Initialize comp_dir.
5417 (read_cutu_die_from_dwo): New arg stub_comp_dir. All callers updated.
5418 Change assert of matching type signatures to call error on mismatch.
5419 (lookup_dwo_unit): Add assert.
5420 (init_tu_and_read_dwo_dies): New function.
5421 (init_cutu_and_read_dies): Call it.
5422 (build_type_unit_groups): Handle case of no type unit groups created.
5423 (hash_dwo_file, eq_dwo_file): Handle missing comp_dir.
5424 (lookup_dwo_cutu): Tweak complaint.
5425 (dwarf2_free_abbrev_table): Check for NULL abbrev_table.
5426 (dwarf2_per_objfile_free): Free all_type_units.
5427
5428 2013-05-20 Joel Brobecker <brobecker@adacore.com>
5429
5430 * windows-nat.c (handle_unload_dll): Add missing empty line.
5431
5432 2013-05-20 Joel Brobecker <brobecker@adacore.com>
5433
5434 * dwarf2read.c (prototyped_function_p): New function.
5435 (read_subroutine_type): Use it.
5436
5437 2013-05-20 Joel Brobecker <brobecker@adacore.com>
5438
5439 * rs6000-aix-tdep.c: De-indent some example code provided
5440 as a comment.
5441
5442 2013-05-17 Edjunior Machado <emachado@linux.vnet.ibm.com>
5443
5444 * ppc-linux-nat.c (ppc_linux_region_ok_for_hw_watchpoint): Check if the
5445 region is ok for a hardware watchpoint using the new ptrace interface
5446 on Power servers.
5447
5448 2013-05-17 Doug Evans <dje@google.com>
5449
5450 * NEWS: Mention new maintenance commands check-symtabs, and
5451 expand-symtabs, and renamed check-psymtabs.
5452 * psymtab.c (maintenance_check_psymtabs): Renamed from
5453 maintenance_check_symtabs. Only process already-expanded symbol
5454 tables.
5455 (_initialize_psymtab): Update.
5456 * symmisc.c (maintenance_check_symtabs): New function.
5457 (maintenance_expand_name_matcher): New function
5458 (maintenance_expand_file_matcher): New function
5459 (maintenance_expand_symtabs): New function.
5460 (_initialize_symmisc): Add "mt check-symtabs" and "mt expand-symtabs"
5461 commands.
5462
5463 2013-05-17 Tom Tromey <tromey@redhat.com>
5464
5465 * python/py-inferior.c (infpy_read_memory): Don't call
5466 PyErr_SetString if PyObject_New fails.
5467 * python/py-frame.c (frame_info_to_frame_object): Don't call
5468 PyErr_SetString if PyObject_New fails.
5469
5470 2013-05-17 Pavel Chupin <pavel.v.chupin@intel.com>
5471
5472 * acinclude.m4: Add check for dlopen in libdl.
5473 * configure.ac: Ditto.
5474 * configure: Regenerate.
5475
5476 2013-05-17 Phil Muldoon <pmuldoon@redhat.com>
5477
5478 * frame.c (frame_stash): Convert to htab.
5479 (frame_addr_hash): New function.
5480 (frame_addr_hash_eq): New function.
5481 (frame_stash_create): Convert function to create
5482 a hash table.
5483 (frame_stash_add): Convert function to add an entry to a hash
5484 table.
5485 (frame_stash_find): Convert function to search the hash table.
5486 (frame_stash_invalidate): Convert function to empty the hash
5487 table.
5488 (get_frame_id): Only add to stash if a frame_id is created.
5489 (_initialize_frame): Call frame_stash_create.
5490
5491 2013-05-16 Yue Lu <hacklu.newborn@gmail.com> (tiny change)
5492
5493 * configure.ac: Ensure MIG is available when building for GNU Hurd
5494 hosts.
5495 * configure: Regenerate.
5496
5497 2013-05-16 Joel Brobecker <brobecker@adacore.com>
5498
5499 * dwarf2read.c (set_cu_language): Add DW_LANG_UPC handling.
5500
5501 2013-05-16 Joel Brobecker <brobecker@adacore.com>
5502
5503 * ada-lang.c (ada_make_symbol_completion_list): Make sure
5504 all cleanups are done before returning from this function.
5505
5506 2013-05-15 Joel Brobecker <brobecker@adacore.com>
5507
5508 * utils.h: #include "exceptions.h".
5509 (enum errors): Remove partial declaration.
5510
5511 2013-05-15 Joel Brobecker <brobecker@adacore.com>
5512
5513 * gdbarch.sh (core_xfer_shared_libraries_aix): New method.
5514 * gdbarch.h, gdbarch.c: Regenerate.
5515 * corelow.c (core_xfer_partial): Add TARGET_OBJECT_LIBRARIES_AIX
5516 handling.
5517
5518 * rs6000-aix-tdep.h: New file.
5519 * Makefile.in (HFILES_NO_SRCDIR): Add rs6000-aix-tdep.h.
5520 * rs6000-aix-tdep.c: Include "rs6000-aix-tdep.h" and
5521 "xml-utils.h".
5522 (struct field_info, struct ld_info_desc): New types.
5523 (ld_info32_desc, ld_info64_desc): New static constants.
5524 (struct ld_info): New type.
5525 (rs6000_aix_extract_ld_info): New function.
5526 (rs6000_aix_shared_library_to_xml): Likewise.
5527 (rs6000_aix_ld_info_to_xml): Likewise.
5528 (rs6000_aix_core_xfer_shared_libraries_aix): Likewise.
5529 (rs6000_aix_init_osabi): Add call to
5530 set_gdbarch_core_xfer_shared_libraries_aix.
5531 * rs6000-nat.c: Add "rs6000-aix-tdep.h" include.
5532 Remove "xml-utils.h" include.
5533 (LdInfo): Delete typedef.
5534 (ARCH64_DECL, LDI_FIELD, LDI_NEXT, LDI_FD, LDI_FILENAME):
5535 Delete macros.
5536 (rs6000_ptrace_ldinfo): Change return type to gdb_byte *.
5537 Adjust code accordingly.
5538 (rs6000_core_ldinfo): Delete, folded into
5539 rs6000_aix_core_xfer_shared_libraries_aix.
5540 (rs6000_xfer_shared_library): Delete.
5541 (rs6000_xfer_shared_libraries): Reimplement.
5542
5543 2013-05-15 Markus Metzger <markus.t.metzger@intel.com>
5544
5545 * record.c (record_goto_cmdlist): New.
5546 (cmd_record_goto): Split into this ...
5547 (cmd_record_goto_begin): ... this
5548 (cmd_record_goto_end): ... and this.
5549 (_initialize_record): Change "record goto" to prefix command.
5550 Add commands for "record goto begin" and "record goto end".
5551 Add an alias for "record goto start" to "record goto begin".
5552
5553 2013-05-14 Jan Kratochvil <jan.kratochvil@redhat.com>
5554
5555 * linespec.c (convert_linespec_to_sals): New comment for
5556 SOURCE_FILENAME assignment.
5557
5558 2013-05-14 Jan Kratochvil <jan.kratochvil@redhat.com>
5559
5560 * cleanups.c (restore_my_cleanups): Replace gdb_assert by
5561 internal_warning.
5562
5563 2013-05-14 Tom Tromey <tromey@redhat.com>
5564
5565 * eval.c (parse_and_eval_long): Make 'exp' const.
5566 * value.h (parse_and_eval_long): Update.
5567
5568 2013-05-14 Tom Tromey <tromey@redhat.com>
5569
5570 * ui-file.c (gdb_fopen): Make arguments const.
5571 * ui-file.h (gdb_fopen): Make arguments const.
5572
5573 2013-05-14 Tom Tromey <tromey@redhat.com>
5574
5575 * remote.c (remote_set_trace_notes): Make arguments const.
5576 * target.c (update_current_target): Update cast.
5577 * target.h (to_set_trace_notes): Make arguments const.
5578
5579 2013-05-14 Tom Tromey <tromey@redhat.com>
5580
5581 * go32-nat.c (go32_terminal_info): Make 'args' const.
5582 * inferior.h (child_terminal_info): Update.
5583 * inflow.c (child_terminal_info): Make 'args' const.
5584 * target.c (default_terminal_info): Make 'args' const.
5585 (debug_to_terminal_save_ours): Likewise.
5586 * target.h (struct target_ops) <to_terminal_info>: Make argument
5587 const.
5588
5589 2013-05-13 Tom Tromey <tromey@redhat.com>
5590
5591 * gcore.c (create_gcore_bfd): Make 'filename' const.
5592 * gcore.h (create_gcore_bfd): Make 'filename' const.
5593 * record-full.c (record_full_save): Make 'recfilename' const.
5594 * target.c (target_save_record): Make 'filename' const.
5595 * target.h (struct target_ops) <to_save_record>: Make 'filename'
5596 const.
5597 (target_save_record): Likewise.
5598
5599 2013-05-13 Tom Tromey <tromey@redhat.com>
5600
5601 PR gdb/15338:
5602 * dwarf2read.c (dwarf2_record_block_ranges): Ensure that the
5603 ranges section has been read.
5604
5605 2013-05-13 Tom Tromey <tromey@redhat.com>
5606
5607 PR exp/15364:
5608 * eval.c (evaluate_subexp_standard) <STRUCTOP_STRUCT,
5609 STRUCTOP_PTR>: Return a not_lval value for
5610 EVAL_AVOID_SIDE_EFFECTS.
5611 * opencl-lang.c (evaluate_subexp_opencl): Return a not_lval value
5612 for EVAL_AVOID_SIDE_EFFECTS.
5613
5614 2013-05-13 Joel Brobecker <brobecker@adacore.com>
5615
5616 * rs6000-aix-tdep.c (rs6000_push_dummy_call): Convert
5617 floating point registers to register type before storing
5618 value.
5619 * rs6000-lynx178-tdep.c (rs6000_lynx178_push_dummy_call):
5620 Likewise.
5621
5622 2013-05-10 Joel Brobecker <brobecker@adacore.com>
5623 Tom Tromey <tromey@redhat.com>
5624
5625 * common/filestuff.c (mark_fd_no_cloexec, unmark_fd_no_cloexec):
5626 New functions.
5627 * common/filestuff.c (mark_fd_no_cloexec, unmark_fd_no_cloexec):
5628 Declare.
5629 * darwin-nat.c (darwin_pre_ptrace): Use mark_fd_no_cloexec.
5630 (darwin_ptrace_him): Use unmark_fd_no_cloexec.
5631 * inf-ttrace.c (do_cleanup_pfds): Use unmark_fd_no_cloexec.
5632 (inf_ttrace_prepare): Use mark_fd_no_cloexec.
5633
5634 2013-05-10 Freddie Chopin <freddie_chopin@op.pl>
5635 Tom Tromey <tromey@redhat.com>
5636
5637 PR build/15414:
5638 * configure: Rebuild.
5639 * configure.ac (build_warnings): Do not use -Wformat-nonliteral
5640 with -Wno-format.
5641
5642 2013-05-10 Pedro Alves <palves@redhat.com>
5643
5644 * remote.c (_initialize_remote): Fix spelling of
5645 qXfer:traceframe-info:read packet in packet config command.
5646
5647 2013-05-10 David Taylor <dtaylor@emc.com>
5648
5649 PR remote/15455
5650
5651 * remote.c (remote_trace_set_readonly_regions): Do not overwrite
5652 "QTro" at start of packet.
5653
5654 2013-05-10 Joel Brobecker <brobecker@adacore.com>
5655
5656 * solib-aix.c (solib_aix_relocate_section_addresses):
5657 For the .bss section action, apply the same offset as
5658 the .data section.
5659
5660 2013-05-10 Joel Brobecker <brobecker@adacore.com>
5661
5662 * solib-aix.c (solib_aix_relocate_section_addresses):
5663 Remove FIXME comment.
5664
5665 2013-05-10 Joel Brobecker <brobecker@adacore.com>
5666
5667 PR tdep/15420:
5668 * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
5669 New functions, directly copied from sparc-sol-thread.c.
5670 * sparc-sol-thread.c: Delete.
5671 * configure.ac: Remove code handling sparc-solaris-thread.c.
5672 * configure: Regenerate.
5673
5674 2013-05-10 Phil Muldoon <pmuldoon@redhat.com>
5675
5676 * stack.c (backtrace_command_1): Add "no-filters", and Python frame
5677 filter logic.
5678 (backtrace_command): Add "no-filters" option parsing.
5679 (_initialize_stack): Alter help to reflect "no-filters" option.
5680 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-framefilter.o
5681 (SUBDIR_PYTHON_SRCS): Add py-framefilter.c
5682 (py-frame.o): Add target
5683 * data-directory/Makefile.in (PYTHON_DIR): Add Python frame
5684 filter files.
5685 * python/python.h: Add new frame filter constants, and flag enum.
5686 (apply_frame_filter): Add definition.
5687 * python/python.c (apply_frame_filter): New non-Python
5688 enabled function.
5689 * python/py-utils.c (py_xdecref): New function.
5690 (make_cleanup_py_xdecref): Ditto.
5691 * python/py-objfile.c: Declare frame_filters dictionary.
5692 (objfpy_dealloc): Add frame_filters dealloc.
5693 (objfpy_new): Initialize frame_filters attribute.
5694 (objfile_to_objfile_object): Ditto.
5695 (objfpy_get_frame_filters): New function.
5696 (objfpy_set_frame_filters): New function.
5697 * python/py-progspace.c: Declare frame_filters dictionary.
5698 (pspy_dealloc): Add frame_filters dealloc.
5699 (pspy_new): Initialize frame_filters attribute.
5700 (pspacee_to_pspace_object): Ditto.
5701 (pspy_get_frame_filters): New function.
5702 (pspy_set_frame_filters): New function.
5703 * python/py-framefilter.c: New file.
5704 * python/lib/gdb/command/frame_filters.py: New file.
5705 * python/lib/gdb/frames.py: New file.
5706 * python/lib/gdb/__init__.py: Initialize global frame_filters
5707 dictionary
5708 * python/lib/gdb/FrameDecorator.py: New file.
5709 * python/lib/gdb/FrameIterator.py: New file.
5710 * mi/mi-cmds.c (mi_cmds): Add frame filters command.
5711 * mi/mi-cmds.h: Declare.
5712 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames): Add
5713 --no-frame-filter logic, and Python frame filter logic.
5714 (stack_enable_frame_filters): New function.
5715 (parse_no_frame_option): Ditto.
5716 (mi_cmd_stack_list_frames): Add --no-frame-filter and Python frame
5717 filter logic.
5718 (mi_cmd_stack_list_locals): Ditto.
5719 (mi_cmd_stack_list_args): Ditto.
5720 (mi_cmd_stack_list_variables): Ditto.
5721 * NEWS: Add frame filter note.
5722
5723 2013-05-09 Doug Evans <dje@google.com>
5724
5725 * symfile.c (syms_from_objfile_1): Delete args offsets, num_offsets.
5726 All callers updated.
5727 (syms_from_objfile): Ditto. Make static.
5728 (symbol_file_add_with_addrs): Renamed from
5729 symbol_file_add_with_addrs_or_offsets. Delete args offsets,
5730 num_offsets. All callers updated.
5731 * symfile.h (syms_from_objfile): Delete.
5732
5733 * symfile.c (decrement_reading_symtab): Add assert.
5734 (increment_reading_symtab): Ditto.
5735
5736 2013-05-09 Joel Brobecker <brobecker@adacore.com>
5737
5738 * source.c (forward_search_command): Replace call to getc
5739 by call to fgetc.
5740 (reverse_search_command): Likewise.
5741
5742 2013-05-08 Doug Evans <dje@google.com>
5743
5744 * psymtab.c (expand_symtabs_matching_via_partial): Fix file name
5745 matching test.
5746
5747 2013-05-08 Joel Brobecker <brobecker@adacore.com>
5748
5749 * sol-thread.c (info_cb): Factorize the code a little.
5750
5751 2013-05-08 Joel Brobecker <brobecker@adacore.com>
5752
5753 * sol-thread.c (info_cb): Rework the output of the "maintenance
5754 info sol-threads" command a bit.
5755
5756 2013-05-08 Joel Brobecker <brobecker@adacore.com>
5757
5758 * sol-thread.c (info_cb) [ti.ti_state == TD_THR_SLEEP]:
5759 Replace ti.ti_startfunc by ti.ti_pc.
5760
5761 2013-05-08 Joel Brobecker <brobecker@adacore.com>
5762
5763 * solib-aix.c (solib_aix_free_library_list): New function
5764 for the case where HAVE_LIBEXPAT is not defined.
5765
5766 2013-05-07 Sergio Durigan Junior <sergiodj@redhat.com>
5767
5768 PR breakpoints/15413:
5769 * breakpoint.c (condition_completer): Simplify the code to
5770 disconsider multiple locations of breakpoints when completing the
5771 "condition" command.
5772
5773 2013-05-07 Pierre Muller <muller@sourceware.org>
5774
5775 * common/linux-btrace.c: ARI fix: Include "gdb_wait.h"
5776 instead of <sys/wait.h>.
5777
5778 2013-05-07 Pierre Muller <muller@sourceware.org>
5779
5780 * nios2-tdep.c (nios2_dwarf_reg_to_regnum): ARI fix: remove
5781 trailing new line from warning message.
5782
5783 2013-05-07 Pierre Muller <muller@sourceware.org>
5784
5785 * contrib/ari/gdb_ari.sh (SOLIB_ADD, SOLIB_CREATE_INFERIOR_HOOK)
5786 (PC_SOLIB): Change type from ari_deprecate to ari_regression.
5787
5788 2013-05-07 Joel Brobecker <brobecker@adacore.com>
5789
5790 * rs6000-nat.c (rs6000_core_ldinfo): Remove '\n' at end of
5791 error message (ARI fix).
5792
5793 2013-05-07 Joel Brobecker <brobecker@adacore.com>
5794
5795 * features/library-list-aix.dtd: Replace library-list by
5796 library-list-aix.
5797 * rs6000-nat.c: Replace library-list by library-list-aix
5798 throughout.
5799 * solib-aix.c: Likewise.
5800
5801 2013-05-07 Joel Brobecker <brobecker@adacore.com>
5802
5803 * target.h (enum target_object) [TARGET_OBJECT_LIBRARIES_AIX]:
5804 Renames TARGET_OBJECT_AIX_LIBRARIES.
5805 * rs6000-nat.c: Replace TARGET_OBJECT_AIX_LIBRARIES with
5806 TARGET_OBJECT_LIBRARIES_AIX throughout.
5807 * solib-aix.c: Likwise.
5808
5809 2013-05-07 Yao Qi <yao@codesourcery.com>
5810
5811 * solib-dsbt.c (struct dsbt_info) <enable_break2_done>: Remove.
5812 (get_dsbt_info, enable_break, dsbt_clear_solib): Update.
5813
5814 2013-05-07 Yao Qi <yao@codesourcery.com>
5815
5816 * solib-dsbt.c (enable_break): Declare.
5817 (dsbt_current_sos): Remove call to enable_break2.
5818 (enable_break2): Rename to enable_break. Set solib breakpoint
5819 on '_dl_debug_state'.
5820 (enable_break): Remove.
5821
5822 2013-05-07 Luis Machado <lgustavo@codesourcery.com>
5823
5824 * ppc-linux-nat.c (ppc_linux_new_thread): Clear the new thread's
5825 debug state prior to replicating existing hardware watchpoints or
5826 breakpoints.
5827
5828 2013-05-07 Jan Kratochvil <jan.kratochvil@redhat.com>
5829
5830 * gcore.c (gcore_create_callback): Ignore sections with
5831 separate_debug_objfile_backlink != NULL.
5832
5833 2013-05-06 Sandra Loosemore <sandra@codesourcery.com>
5834 Andrew Jenner <andrew@codesourcery.com>
5835 Chung-Lin Tang <cltang@codesourcery.com>
5836 Julian Brown <julian@codesourcery.com>
5837
5838 Based on the nios2-elf port from Altera Corporation.
5839
5840 * Makefile.in (ALL_TARGET_OBS): Add nios2-tdep.o and
5841 nios2-linux-tdep.o.
5842 (HFILES_NO_SRCDIR): Add nios2-tdep.h.
5843 (ALLDEPFILES): Add nios2-tdep.c and nios2-linux-tdep.c.
5844 * configure.tgt: Add nios2*-*-linux* and nios2*-*-* targets.
5845 * nios2-tdep.h: New.
5846 * nios2-tdep.c: New.
5847 * nios2-linux-tdep.c: New.
5848 * features/Makefile (WHICH): Add nios2-linux.
5849 (nios2-linux-expedite): Set.
5850 * features/nios2-cpu.xml: New.
5851 * features/nios2.xml: New.
5852 * features/nios2-linux.xml: New.
5853 * features/nios2.c: New (autogenerated).
5854 * features/nios2-linux.c: New (autogenerated).
5855 * regformats/nios2-linux.dat: New (autogenerated).
5856 * NEWS (Changes since GDB 7.6): Add new Nios II targets
5857 and commands.
5858
5859 2013-05-06 Doug Evans <dje@google.com>
5860
5861 * symfile.c: Whitespace cleanup.
5862
5863 * solist.h (struct target_so_ops): New member clear_so.
5864 * solib-svr4.c (svr4_clear_so): New function.
5865 (_initialize_svr4_solib): Set svr4_so_ops.clear_so.
5866 * solib.c (clear_so): Renamed from free_so_symbols.
5867 All callers updated. Call target clear_so if it exists.
5868
5869 2013-05-06 Tom Tromey <tromey@redhat.com>
5870
5871 * ada-lang.c (ada_value_primitive_packed_val): Don't
5872 call value_incref.
5873 * value.c (set_value_parent): Incref the new parent and decref
5874 the old parent.
5875 (value_copy, value_primitive_field): Use set_value_parent.
5876
5877 2013-05-06 Tom Tromey <tromey@redhat.com>
5878
5879 * dwarf2loc.c (invalid_synthetic_pointer): Move earlier.
5880 (indirect_pieced_value): Call dwarf2_fetch_constant_bytes
5881 if needed.
5882 * dwarf2loc.h (dwarf2_fetch_constant_bytes): Declare.
5883 * dwarf2read.c (write_constant_as_bytes)
5884 (dwarf2_fetch_constant_bytes): New functions.
5885
5886 2013-05-06 Tom Tromey <tromey@redhat.com>
5887
5888 * dwarf2read.c (dwarf2_const_value_data): Remove unused
5889 parameters.
5890 (dwarf2_const_value_attr): Update.
5891
5892 2013-05-06 Tom Tromey <tromey@redhat.com>
5893
5894 * somread.c (som_symfile_offsets): Add 'const' to addrs.
5895 * machoread.c (macho_symfile_offsets): Add 'const' to addrs.
5896 * xcoffread.c (xcoff_symfile_offsets): Add 'const' to addrs.
5897 Remove declaration.
5898
5899 2013-05-06 Tom Tromey <tromey@redhat.com>
5900
5901 * dwarf2read.c (dwarf2_const_value_attr): Use 'obstack', not
5902 objfile's obstack.
5903
5904 2013-05-06 Doug Evans <dje@google.com>
5905
5906 * dbxread.c (process_one_symbol): Constify section_offsets parameter.
5907 * stabsread.h (process_one_symbol): Update declaration.
5908 * dwarf2read.c (dw2_relocate): Constify new_offsets, delta parameters.
5909 * elfread.c (elf_symfile_relocate_probe): Ditto.
5910 * psymtab.c (relocate_psymtabs): Ditto.
5911 * objfiles.c (objfile_relocate1): Constify new_offsets parameter.
5912 (objfile_relocate): Ditto.
5913 * objfiles.h (objfile_relocate): Update declaration.
5914 * symfile.c (relative_addr_info_to_section_offsets): Constify
5915 addrs parameter.
5916 (default_symfile_offsets): Ditto.
5917 (syms_from_objfile_1): Constify offsets parameter.
5918 (syms_from_objfile): Ditto.
5919 (symbol_file_add_with_addrs_or_offsets): Ditto.
5920 (symfile_map_offsets_to_segments): Constify data parameter.
5921 * symfile.h (struct quick_symbol_functions): Constify new_offsets,
5922 delta parameters of member relocate.
5923 (struct sym_probe_fns): Constify new_offsets,
5924 delta parameters of member sym_relocate_probe.
5925 (struct sym_fns): Constify section_addr_info parameter of member
5926 sym_offsets.
5927 (relative_addr_info_to_section_offsets): Update declaration.
5928 (default_symfile_offsets): Ditto.
5929 (syms_from_objfile): Ditto.
5930 (symfile_map_offsets_to_segments): Ditto.
5931
5932 * symfile.c (syms_from_objfile_1): Use correct section count when
5933 objfile->sf == NULL.
5934
5935 2013-05-06 Mike Frysinger <vapier@gentoo.org>
5936
5937 * common/linux-btrace.c (intel_supports_btrace): Fix indentation.
5938
5939 2013-05-06 Doug Evans <dje@google.com>
5940
5941 * psympriv.h (struct partial_symtab): Augment comment for member
5942 section_offsets.
5943
5944 2013-05-06 Joel Brobecker <brobecker@adacore.com>
5945
5946 Reimplement shared library support on ppc-aix...
5947 * target.h (TARGET_OBJECT_AIX_LIBRARIES): New target_object enum.
5948 * features/library-list-aix.dtd: New file.
5949 * solib-aix.h, solib-aix.c: New file.
5950 * rs6000-aix-tdep.c: #include "solib.h" and "solib-aix.h".
5951 (rs6000_find_toc_address_hook): Delete.
5952 (rs6000_push_dummy_call): Rewrite code setting the TOC value.
5953 (rs6000_aix_init_osabi): Register solib_aix_so_ops.
5954 * rs6000-nat.c: Remove "xcoffsolib.h" include. Include
5955 "xml-utils.h".
5956 (map_vmap, vmap_exec, vmap_ldinfo, add_vmap, objfile_symbol_add)
5957 (vmap_symtab, fixup_breakpoints): Delete.
5958 (rs6000_xfer_shared_libraries): New function.
5959 (rs6000_xfer_partial): Add TARGET_OBJECT_AIX_LIBRARIES handling.
5960 (vmap_secs, bss_data_overlap, vmap_add_symbols): Delete.
5961 (xcoff_relocate_symtab, xcoff_relocate_core): Delete.
5962 (rs6000_ptrace_ldinfo, rs6000_core_ldinfo)
5963 (rs6000_xfer_shared_library): New function.
5964 (find_toc_address): Delete.
5965 (_initialize_rs6000_nat): Do not set rs6000_find_toc_address_hook.
5966 * rs6000-tdep.h (rs6000_find_toc_address_hook): Remove.
5967 * xcoffread.c (record_minimal_symbol): Reloate symbol address
5968 before creating minimal symbol. Adjust function description
5969 accordingly.
5970 (scan_xcoff_symtab): Replace call to
5971 prim_record_minimal_symbol_and_info by call to
5972 record_minimal_symbol.
5973 (xcoff_symfile_offsets): Reimplement mostly as a wrapper
5974 around default_symfile_offsets.
5975 * configure.tgt: Add solib-aix.o to gdb_target_obs for
5976 powerpc-aix targets.
5977 * config/rs6000/nm-rs6000.h: Delete.
5978 * config/powerpc/aix.mh (NAT_FILE): Delete.
5979 (NATDEPFILES): Remove xcoffsolib.o.
5980 * Makefile.in (XMLFILES): Add library-list-aix.dtd.
5981 (ALL_TARGET_OBS): Add solib-aix.o.
5982 (HFILES_NO_SRCDIR): Remove xcoffsolib.h and
5983 config/rs6000/nm-rs6000.h. Add solib-aix.h.
5984 (ALLDEPFILES): Add solib-aix.c. Remove xcoffsolib.c.
5985 * xcoffsolib.h, xcoffsolib.c: Delete.
5986
5987 * solib.c (reload_shared_libraries): Remove reference to
5988 SOLIB_CREATE_INFERIOR_HOOK.
5989 * breakpoint.c (handle_solib_event): Remove reference to SOLIB_ADD.
5990 (disable_breakpoints_in_shlibs): Remove reference to PC_SOLIB.
5991 (momentary_bkpt_re_set): Replace SOLIB_ADD by solib_add in
5992 comment.
5993 * corelow.c (deprecated_core_resize_section_table): Delete.
5994 * exec.c: Remove include of xcoffsolib.h".
5995 (map_vmap, vmap): Delete.
5996 (exec_close_1): Remove references to vmap.
5997 (exec_file_attach): Remove vmap handling code, and reference
5998 to DEPRECATED_IBM6000_TARGET.
5999 (bfdsec_to_vmap): Delete.
6000 (exec_files_info): Remove block of code handling VMAP.
6001 * infcmd.c (post_create_inferior): Remove reference to
6002 SOLIB_CREATE_INFERIOR_HOOK and SOLIB_ADD.
6003 * infrun.c (follow_exec): Remove reference to
6004 SOLIB_CREATE_INFERIOR_HOOK.
6005 * stack.c (print_frame): Remove reference to PC_SOLIB.
6006 * solib-dsbt.c (dsbt_current_sos): Adjust comment.
6007 (dsbt_relocate_main_executable): Likewise.
6008 * solib-frv.c (frv_current_sos): Likewise.
6009
6010 2013-05-06 Joel Brobecker <brobecker@adacore.com>
6011
6012 * sol-thread.c (rw_common): Cast BUF to "gdb_byte *" in calls
6013 to target_write_memory and target_read_memory.
6014
6015 2013-05-06 Joel Brobecker <brobecker@adacore.com>
6016
6017 * darwin-nat.c (darwin_setup_fake_stop_event): New function.
6018 (darwin_attach): Adjust using darwin_setup_fake_stop_event.
6019
6020 2013-05-06 Joel Brobecker <brobecker@adacore.com>
6021
6022 * darwin-nat.c: Replace all "%x" instances in format strings
6023 into "0x%x" throughout.
6024
6025 2013-05-06 Joel Brobecker <brobecker@adacore.com>
6026
6027 * darwin-nat.c (darwin_mourn_inferior): Replace call to
6028 gdb_assert by call to MACH_CHECK_ERROR.
6029 (darwin_attach_pid): Raise an error rather than a failed
6030 assertion when various system calls failed. Report a warning
6031 instead of raising a failed assertion when PREV_NOT is not NULL
6032 after call to mach_port_request_notification.
6033 (darwin_ptrace_me): Raise an error rather than a failed
6034 assertion when read returns nonzero.
6035
6036 2013-05-06 Joel Brobecker <brobecker@adacore.com>
6037
6038 * amd64-darwin-tdep.c: Remove #include "gdb_assert.h".
6039
6040 2013-05-05 Jan Kratochvil <jan.kratochvil@redhat.com>
6041
6042 * cleanups.c (restore_my_cleanups): New gdb_assert for SENTINEL_CLEANUP.
6043
6044 2013-05-05 Jan Kratochvil <jan.kratochvil@redhat.com>
6045
6046 * event-top.c (display_gdb_prompt): Call missing do_cleanups.
6047 * infcmd.c (get_return_value) <!stop_regs>: Do not overwrite CLEANUP.
6048 * symfile.c (symfile_bfd_open): New variable back_to. Do not leave
6049 a stale cleanup. Fix double free of NAME.
6050
6051 2013-05-04 Eli Zaretskii <eliz@gnu.org>
6052
6053 * windows-nat.c (windows_delete_thread): Accept an additional
6054 argument, the thread's exit code, and announce thread death when
6055 print_thread_events is non-zero and we are deleting a thread that
6056 is not the main thread.
6057 (get_windows_debug_event): Pass thread exit code to
6058 windows_delete_thread.
6059
6060 2013-05-03 Kevin Buettner <kevinb@redhat.com>
6061
6062 * v850-tdep.c (elf-bfd.h, elf/v850.h): Include.
6063 (R_149_REGNUM, E_NUM_OF_V850E2_REGS, E_SELID_1_R0_REGNUM)
6064 (E_SELID_1_R31_REGNUM, E_SELID_2_R0_REGNUM, E_SELID_2_R31_REGNUM)
6065 (E_SELID_3_R0_REGNUM, E_SELID_3_R31_REGNUM, E_SELID_4_R0_REGNUM)
6066 (E_SELID_4_R31_REGNUM, E_SELID_5_R0_REGNUM, E_SELID_5_R31_REGNUM)
6067 (E_SELID_6_R0_REGNUM, E_SELID_6_R31_REGNUM, E_SELID_7_R0_REGNUM, E_SELID_7_R31_REGNUM)
6068 (E_VR0_REGNUM, E_VR31_REGNUM, E_NUM_OF_V850E3V5_REGS): Define.
6069 (v850_abi, V850_ABI_GCC, V850_ABI_RH850): New enum and constants.
6070 (gdbarch_tdep): New struct.
6071 (v850e2_register_name): Use E_NUM_OF_V850E2_REGS instead of
6072 E_NUM_REGS.
6073 (v850e3v5_register_name): New function.
6074 (v850_register_type): v850e3v5 vector registers are 64-bits wide.
6075 (v850_use_struct_convention): Add `gdbarch' parameter. Add new
6076 code handling the struct return conventions for the RH850 ABI.
6077 Update all callers.
6078 (v850_eight_byte_align_p): New function.
6079 (v850_push_call_dummy): Push structs by value, not by reference
6080 for the RH850 ABI. Add support for eight byte alignment.
6081 (v850_dbtrap_breakpoint_from_pc): New function.
6082 (v850_gdbarch_init): Add ABI detection code. Register
6083 v850e3v5_register_name for the v850e3v5 architecture. Set the
6084 number of registers for v850e3v5. Register
6085 v850_dbtrap_breakpoint_from_pc as appropriate.
6086 (_initialize_gdbarch_init): Registration bfd_arch_v850_rh850.
6087
6088 2013-05-03 Doug Evans <dje@google.com>
6089
6090 * objfiles.c (objfile_relocate): Use gdb_bfd_count_sections instead
6091 of bfd_count_sections.
6092 * solib-target.c (solib_target_relocate_section_addresses): Ditto.
6093 * symfile.c (default_symfile_offsets): Ditto.
6094 (syms_from_objfile_1): Ditto. Make dummy addrs list an array of
6095 one entry, not bfd_count_sections entries.
6096
6097 2013-05-03 Kevin Buettner <kevinb@redhat.com>
6098
6099 * rl78-tdep.c (rl78_register_reggroup_p): Include SP in the
6100 `save' and `restore' register groups. Don't include SPL
6101 or SPH in these groups.
6102 (rl78_dwarf_reg_to_regnum): Adjust mapping for
6103 RL78_PC_REGNUM. Add mappings for RL78_PSW_REGNUM,
6104 RL78_ES_REGNUM, and RL78_CS_REGNUM.
6105 (rl78_gdbarch_init): Set `dwarf2_addr_size' to 4. Invoke
6106 dwarf2_append_unwinders().
6107
6108 2013-05-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
6109
6110 * break-catch-sig.c (signal_catchpoint_breakpoint_hit): Do not
6111 ignore SIGINT and SIGTRAP in case these internal signals are
6112 caught explicitely.
6113
6114 2013-05-01 Joel Brobecker <brobecker@adacore.com>
6115
6116 * darwin-nat.c (darwin_read_write_inferior): Change types
6117 of parameters rdaddr and wraddr to "gdb_byte *". Change type
6118 of copy_count to "mach_msg_type_number_t".
6119 (darwin_read_dyld_info): Change type of parameter
6120 rdaddr to "gdb_byte *".
6121
6122 2013-05-01 Joel Brobecker <brobecker@adacore.com>
6123
6124 * solib-ia64-hpux.c (ia64_hpux_read_dynamic_info): Change cast
6125 of &info->load_map from "char *" to "gdb_byte *".
6126
6127 2013-05-01 Joel Brobecker <brobecker@adacore.com>
6128
6129 * ia64-tdep.c (ia64_access_fpreg): Change cast of val
6130 from "char *" to "gdb_byte *".
6131 (ia64_access_rse_fpreg, ia64_access_mem): Likewise.
6132
6133 2013-04-30 Doug Evans <dje@google.com>
6134
6135 * dwarf2read.c (lookup_dwo_unit): Return NULL if DWO not found.
6136 (init_cutu_and_read_dies): Flag a complaint, not error, for bad
6137 DWO stub. If DWO isn't found, just use stub.
6138 (lookup_dwo_cutu): Don't try DWO if there's a DWP file.
6139
6140 * dwarf2read.c (dw2_find_symbol_file): Initialize filename before
6141 calling init_cutu_and_read_dies.
6142
6143 2013-03-27 Walfred Tedeschi <walfred.tedeschi@intel.com>
6144
6145 * target-descriptions.c (maint_print_c_tdesc_cmd):
6146 Add case to parse structures as register types and
6147 bitfields.
6148
6149 2013-04-30 Walfred Tedeschi <walfred.tedeschi@intel.com>
6150
6151 * MAINTAINERS (Write After Approval): Add myself to the list.
6152
6153 2013-04-30 Joel Brobecker <brobecker@adacore.com>
6154
6155 * sol-thread.c (rw_common): Change type of parameter "buf"
6156 to "gdb_byte *".
6157 (ps_pdwrite, ps_ptwrite): Cast parameter "buf" in call to
6158 rw_common to "gdb_byte *" instead of "char *".
6159
6160 2013-04-30 Joel Brobecker <brobecker@adacore.com>
6161
6162 * sol-thread.c (info_cb) [ti.ti_startfunc != 0]: Change type
6163 of local variable msym to const struct bound_minimal_symbol.
6164 Adjust use accordingly.
6165 [ti.ti_state == TD_THR_SLEEP]: Likewise.
6166
6167 2013-04-30 Samuel Thibault <samuel.thibault@gnu.org>
6168
6169 * i386gnu-nat.c (CREG_OFFSET): New macro.
6170 (creg_offset): New array.
6171 (CREG_ADDR): Use creg_offset instead of reg_offset.
6172
6173 2013-04-30 Joel Brobecker <brobecker@adacore.com>
6174
6175 * mep-tdep.c (mep_write_pc): Delete.
6176 (mep_gdbarch_init): Remove call to set_gdbarch_write_pc.
6177 Add call to set_gdbarch_pc_regnum.
6178
6179 2013-04-30 Joel Brobecker <brobecker@adacore.com>
6180
6181 * common/filestuff.c: Replace #include <dirent.h> by
6182 #include "gdb_dirent.h".
6183
6184 2013-04-30 Joel Brobecker <brobecker@adacore.com>
6185
6186 * common/filestuff.c: Replace #include <sys/stat.h> by
6187 #include "gdb_stat.h".
6188
6189 2013-04-29 Pierre Muller <muller@sourceware.org>
6190
6191 * dwarf2read.c (handle_DW_AT_stmt_list): Avoid ARI warning for
6192 editCase function rule.
6193 (get_DW_AT_signature_type): Likewise.
6194
6195 2013-04-29 Joel Brobecker <brobecker@adacore.com>
6196
6197 * m32r-tdep.c (m32r_write_pc): Delete.
6198 (m32r_gdbarch_init): Remove call to set_gdbarch_write_pc.
6199 Add call to set_gdbarch_pc_regnum.
6200
6201 2013-04-29 Pierre Muller <muller@sourceware.org>
6202
6203 * ./contrib/ari/gdb_ari.sh (editCase rule): Fix spelling error.
6204
6205 2013-04-29 Joel Brobecker <brobecker@adacore.com>
6206
6207 * dwarf2read.c (get_DW_AT_signature_type): Add ARI marker.
6208
6209 2013-04-28 Yao Qi <yao@codesourcery.com>
6210
6211 * solib-dsbt.c (fetch_loadmap): Re-indent.
6212 (displacement_from_map, enable_break2): Likewise.
6213 (dsbt_relocate_section_addresses): Likewise.
6214
6215 2013-04-26 Joel Brobecker <brobecker@adacore.com>
6216
6217 GDB 7.6 released.
6218
6219 2013-04-25 Andreas Kaufmann <Andreas.Kaufmann@synopsys.com>
6220
6221 PR corefiles/14983:
6222 * dwarf2read.c (process_full_comp_unit): Always create a static
6223 block.
6224
6225 2013-04-25 Hui Zhu <hui@codesourcery.com>
6226
6227 * breakpoint.c (build_target_command_list): Change loc->cond_bytecode
6228 to loc->cmd_bytecode.
6229
6230 2013-04-24 Doug Evans <dje@google.com>
6231
6232 * dwarf2read.c (setup_type_unit_groups): Fix comment.
6233
6234 2013-04-22 Keith Seitz <keiths@redhat.com>
6235
6236 * tracepoint.c (trace_save): Call the writer's start method.
6237
6238 2013-04-24 Muhammad Bilal <mbilal@codesourcery.com>
6239
6240 PR gdb/10462
6241 * cli/cli-decode.c (lookup_command): Show an error if there is no space
6242 before argument.
6243
6244 2013-04-23 Tom Tromey <tromey@redhat.com>
6245
6246 * common/filestuff.c: Check USE_WIN32API before including
6247 sys/socket.h.
6248 (HAVE_F_GETFD): New define.
6249 (mark_cloexec): Check HAVE_F_GETFD.
6250 (gdb_open_cloexec): Change 'mode' to unsigned long.
6251 (gdb_socketpair_cloexec): Check HAVE_SOCKETPAIR.
6252 (gdb_pipe_cloexec): Check HAVE_PIPE.
6253 * common/filestuff.h (gdb_open_cloexec): Change 'mode' to unsigned
6254 long.
6255
6256 2013-04-23 Hui Zhu <hui@codesourcery.com>
6257
6258 PR gdb/15293
6259 * breakpoint.c (bpstat_what): Add BPSTAT_WHAT_SINGLE to bp_dprintf.
6260
6261 2013-04-23 Hui Zhu <hui@codesourcery.com>
6262
6263 PR gdb/15165
6264 * breakpoint.c (dprintf_print_recreate): New.
6265 (save_breakpoints): Let it not save dprintf commands.
6266 (initialize_breakpoint_ops): Set dprintf_print_recreate.
6267
6268 2013-04-22 Tom Tromey <tromey@redhat.com>
6269
6270 PR gdb/7912:
6271 * Makefile.in (SFILES): Add filestuff.c
6272 (COMMON_OBS): Add filestuff.o.
6273 (filestuff.o): New target.
6274 * auto-load.c (auto_load_objfile_script_1): Use
6275 gdb_fopen_cloexec.
6276 * auxv.c (procfs_xfer_auxv): Use gdb_open_cloexec.
6277 * cli/cli-cmds.c (shell_escape): Call close_most_fds.
6278 * cli/cli-dump.c (fopen_with_cleanup): Use gdb_fopen_cloexec.
6279 * common/agent.c (gdb_connect_sync_socket): Use
6280 gdb_socket_cloexec.
6281 * common/filestuff.c: New file.
6282 * common/filestuff.h: New file.
6283 * common/linux-osdata.c (linux_common_core_of_thread)
6284 (command_from_pid, commandline_from_pid, print_source_lines)
6285 (linux_xfer_osdata_shm, linux_xfer_osdata_sem)
6286 (linux_xfer_osdata_msg, linux_xfer_osdata_modules): Use
6287 gdb_fopen_cloexec.
6288 * common/linux-procfs.c (linux_proc_get_int)
6289 (linux_proc_pid_has_state): Use gdb_fopen_cloexec.
6290 * config.in, configure: Rebuild.
6291 * configure.ac: Don't check for sys/socket.h. Check for
6292 fdwalk, pipe2.
6293 * corelow.c (core_open): Use gdb_open_cloexec.
6294 * dwarf2read.c (write_psymtabs_to_index): Use gdb_fopen_cloexec.
6295 * fork-child.c (fork_inferior): Call close_most_fds.
6296 * gdb_bfd.c (gdb_bfd_open): Use gdb_open_cloexec.
6297 * inf-child.c (inf_child_fileio_readlink): Use gdb_open_cloexec.
6298 * linux-nat.c (linux_nat_thread_name, linux_proc_pending_signals):
6299 Use gdb_fopen_cloexec.
6300 (linux_proc_xfer_partial, linux_proc_xfer_spu): Use
6301 gdb_open_cloexec.
6302 (linux_async_pipe): Use gdb_pipe_cloexec.
6303 * remote-fileio.c (remote_fileio_func_open): Use
6304 gdb_open_cloexec.
6305 * remote.c (remote_file_put, remote_file_get): Use
6306 gdb_fopen_cloexec.
6307 * ser-pipe.c (pipe_open): Use gdb_socketpair_cloexec,
6308 close_most_fds.
6309 * ser-tcp.c (net_open): Use gdb_socket_cloexec.
6310 * ser-unix.c (hardwire_open): Use gdb_open_cloexec.
6311 * solib.c (solib_find): Use gdb_open_cloexec.
6312 * source.c (openp, find_and_open_source): Use gdb_open_cloexec.
6313 * tracepoint.c (tfile_start): Use gdb_fopen_cloexec.
6314 (tfile_open): Use gdb_open_cloexec.
6315 * tui/tui-io.c (tui_initialize_io): Use gdb_pipe_cloexec.
6316 * ui-file.c (gdb_fopen): Use gdb_fopen_cloexec.
6317 * xml-support.c (xml_fetch_content_from_file): Use
6318 gdb_fopen_cloexec.
6319 * main.c (captured_main): Call notice_open_fds.
6320
6321 2013-04-22 Edjunior Machado <emachado@linux.vnet.ibm.com>
6322
6323 * remote-sim.c (dump_mem): Change the type of 'buf' parameter from
6324 'char *' to 'gdb_byte *'.
6325 (gdbsim_store_register): Change the type of 'tmp' from 'char' to
6326 'gdb_byte'.
6327
6328 2013-04-22 Yao Qi <yao@codesourcery.com>
6329
6330 * infrun.c: Fix typo in comment.
6331
6332 2013-04-22 Andrew Haley <aph@redhat.com>
6333
6334 * arm-tdep.c (BranchDest): Cast result as "unsigned long",
6335 instead of "long".
6336
6337 2013-04-20 Yao Qi <yao@codesourcery.com>
6338
6339 * ctf.c (ctf_fetch_registers): Change the type of 'regs' from
6340 'char *' to 'gdb_byte *'. Cast the return value of
6341 'bt_ctf_get_char_array' to 'gdb_byte *'.
6342
6343 2013-04-19 Pedro Alves <palves@redhat.com>
6344
6345 * configure.ac (build_warnings): Replace -Wno-pointer-sign with
6346 -Wpointer-sign.
6347 * configure: Regenerate.
6348
6349 2013-04-19 Pedro Alves <palves@redhat.com>
6350
6351 * ser-tcp.c (net_read_prim): Cast second argument to recv to
6352 'void *'.
6353
6354 2013-04-19 Pedro Alves <palves@redhat.com>
6355
6356 * monitor.c (monitor_write_memory, monitor_write_memory_bytes):
6357 Change type of 'myaddr' parameter to gdb_byte pointer.
6358 (monitor_write_memory_longlongs): Likewise. Cast 'myaddr' pointer
6359 to 'long long' pointer instead of to 'unsigned long long'.
6360 (monitor_write_memory_block, monitor_read_memory_single)
6361 (monitor_read_memory): Change type of 'myaddr' parameter to
6362 gdb_byte pointer.
6363
6364 2013-04-19 Pedro Alves <palves@redhat.com>
6365
6366 * record.c (validate_history_size): Make parameter 'setting'
6367 unsigned.
6368
6369 2013-04-19 Pedro Alves <palves@redhat.com>
6370
6371 * ctf.c (ctf_write_uploaded_tsv, ctf_write_uploaded_tp): Add casts
6372 to 'gdb_byte *'.
6373
6374 2013-04-19 Pedro Alves <palves@redhat.com>
6375
6376 * cp-valprint.c (cp_print_class_member): Change type of 'fieldno'
6377 local to int.
6378
6379 2013-04-19 Pedro Alves <palves@redhat.com>
6380
6381 * ada-lang.c (print_it_exception): Add cast to gdb_byte *.
6382 * ada-tasks.c (read_fat_string_value): Likewise.
6383
6384 2013-04-19 Pedro Alves <palves@redhat.com>
6385
6386 * dwarf2-frame.c (execute_cfa_program): Make 'bytes_read' local
6387 unsigned. Pass 'tmp' to safe_read_uleb128 instead of the signed
6388 'offset', and adjust.
6389
6390 2013-04-19 Pedro Alves <palves@redhat.com>
6391
6392 * dwarf2read.c (dwarf2_get_dwz_file): Add cast to const char *.
6393 (read_index_from_section): Add cast to 'char *'.
6394
6395 2013-04-19 Pedro Alves <palves@redhat.com>
6396
6397 * xcoffread.c (xcoff_initial_scan): Add cast to 'char *'.
6398
6399 2013-04-19 Pedro Alves <palves@redhat.com>
6400
6401 * coff-pe-read.c (read_pe_exported_syms): Handle strings as char.
6402
6403 2013-04-19 Pedro Alves <palves@redhat.com>
6404
6405 * record-full.c (record_full_get_bookmark): Change local 'ret'
6406 type to char * and add cast to gdb_byte *.
6407 (record_full_goto_bookmark): Handle 'bookmark' argument as a
6408 string.
6409 * reverse.c (goto_bookmark_command): Add casts to gdb_byte *.
6410
6411 2013-04-19 Pedro Alves <palves@redhat.com>
6412
6413 * python/py-inferior.c (infpy_write_memory): Add cast to gdb_byte
6414 * python/py-prettyprint.c (print_string_repr): Change type of
6415 'output' local to char *. Add cast to gdb_byte * in
6416 LA_PRINT_STRING call.
6417 (print_children): Change type of 'output' local to char *.
6418 * python/py-value.c (valpy_string): Add cast to const char * in
6419 PyUnicode_Decode call.
6420
6421 2013-04-19 Pedro Alves <palves@redhat.com>
6422
6423 * remote-mips.c (mips_cksum): Rename 'data' parameter to 'datastr'
6424 and change its type to 'const char *'. Adjust.
6425 (mips_send_packet): Add cast to 'char *', and remove cast to
6426 'unsigned char *'.
6427 (mips_receive_packet): Remove cast to 'unsigned char *'.
6428 (mips_load_srec): Use bfd_byte.
6429 (pmon_makeb64, pmon_zeroset): Make 'chksum' parameter unsigned.
6430 (pmon_checkset): Make 'value' parameter unsigned.
6431
6432 2013-04-19 Pedro Alves <palves@redhat.com>
6433
6434 * common/agent.c (agent_run_command): Add cast to gdb_byte *.
6435
6436 2013-04-19 Pedro Alves <palves@redhat.com>
6437
6438 * remote.c (remote_write_bytes_aux, compare_sections_command)
6439 (remote_read_qxfer)
6440 (remote_search_memory, remote_hostio_pwrite, remote_hostio_pread)
6441 (remote_hostio_readlink, remote_bfd_iovec_pread)
6442 (remote_set_trace_notes): Use gdb_byte when RSP buffer is used as
6443 binary buffer, and char when buffer is used as string.
6444 * tracepoint.c (encode_source_string, tfile_write_uploaded_tp)
6445 (trace_save, tfile_open, traceframe_walk_blocks)
6446 (tfile_fetch_registers): Likewise.
6447
6448 2013-04-19 Pedro Alves <palves@redhat.com>
6449
6450 * ser-base.c (ser_base_write): Change prototype -- take 'void *'
6451 buffer and size_t size. Adjust.
6452 * ser-base.h (ser_base_write): Adjust.
6453 * ser-go32.c (cnts): Change type to size_t.
6454 (dos_write): Change prototype -- take 'void *'
6455 buffer and size_t size. Adjust.
6456 (dos_info): Print elements of 'cnts' as unsigned long.
6457 * serial.c (serial_write): Likewise.
6458 * serial.h (serial_write): Adjust.
6459 (struct serial_ops) <write>: Change prototype -- take 'void *'
6460 buffer and size_t size. Adjust.
6461
6462 2013-04-19 Pedro Alves <palves@redhat.com>
6463
6464 * c-lang.c (evaluate_subexp_c): Cast result of obstack_base to
6465 gdb_byte *.
6466 * linux-tdep.c (linux_make_mappings_corefile_notes): Likewise.
6467
6468 2013-04-19 Pedro Alves <palves@redhat.com>
6469
6470 * alpha-tdep.c (alpha_extract_return_value): Use
6471 regcache_cooked_read_unsigned to read 'v0'.
6472
6473 2013-04-19 Pedro Alves <palves@redhat.com>
6474
6475 * xtensa-tdep.c (execute_l32e, execute_s32e): Change type of
6476 parameters 'at', 'as' and 'offset' to uint32_t.
6477
6478 2013-04-19 Pedro Alves <palves@redhat.com>
6479
6480 * aarch64-tdep.c (aarch64_analyze_prologue): Change type of local
6481 'is64' to signed 'int'.
6482
6483 2013-04-19 Pedro Alves <palves@redhat.com>
6484
6485 * s390-tdep.c (is_rs, is_rsy, is_rx, is_rxy): Change type of 'd2'
6486 parameter to int *.
6487
6488 2013-04-19 Pedro Alves <palves@redhat.com>
6489
6490 * ppc-linux-tdep.c (ppc_skip_trampoline_code): Change local
6491 'insnbuf' buffer type to unsigned int[].
6492
6493 2013-04-19 Pedro Alves <palves@redhat.com>
6494
6495 * mips-tdep.c (mips_read_pc): Change local 'pc' type to LONGEST.
6496
6497 2013-04-19 Pedro Alves <palves@redhat.com>
6498
6499 * mep-tdep.c (mep_get_insn): Change 'insn' parameter type to
6500 unsigned long *.
6501
6502 2013-04-19 Pedro Alves <palves@redhat.com>
6503
6504 * alpha-tdep.c (heuristic_fence_post): Change type to int.
6505 (alpha_heuristic_proc_start): Adjust to check -1 instead of
6506 UINT_MAX.
6507 * mips-tdep.c (heuristic_fence_post): Change type to int.
6508 (heuristic_proc_start): Adjust to check -1 instead of UINT_MAX.
6509
6510 2013-04-19 Pedro Alves <palves@redhat.com>
6511
6512 * cris-tdep.c (usr_cmd_cris_version): Make unsigned.
6513 (struct gdbarch_tdep) <cris_version>: Make unsigned.
6514 (cris_spec_reg_applicable, cris_gdbarch_init): Adjust locals.
6515
6516 2013-04-19 Pedro Alves <palves@redhat.com>
6517
6518 * avr-tdep.c (avr_io_reg_read_command): New local 'bufstr'. Use
6519 it to get a string view of the byte buffer.
6520 * i386-cygwin-tdep.c (core_process_module_section): Change local 'buf'
6521 type to gdb_byte *. Adjust.
6522 * linux-tdep.c (linux_info_proc, linux_find_memory_regions_full):
6523 Change local to char *.
6524 * solib-darwin.c (find_program_interpreter): Change return type to
6525 char *. Adjust.
6526 (darwin_solib_get_all_image_info_addr_at_init): Adjust.
6527 * solib-dsbt.c (enable_break2): Change local 'buf' to char *.
6528 * solib-frv.c (enable_break2): Change local 'buf' to char *.
6529 * solib-spu.c (spu_current_sos): Add gdb_byte * cast.
6530 * solib-svr4.c (find_program_interpreter): Change return type to
6531 char *. Adjust.
6532 (enable_break): Change local 'interp_name' to char *.
6533 * spu-multiarch.c (spu_xfer_partial): Add cast to 'char *'.
6534 * spu-tdep.c (spu_pseudo_register_read_spu): Add cast to 'char *'.
6535 (spu_pseudo_register_write_spu): Use char for string buffer.
6536 Adjust.
6537 (info_spu_event_command, info_spu_signal_command): Add casts to
6538 'char *'.
6539
6540 2013-04-19 Pedro Alves <palves@redhat.com>
6541
6542 * aarch64-tdep.c (aarch64_default_breakpoint): Change type to
6543 gdb_byte[].
6544 (aarch64_breakpoint_from_pc): Change return type to gdb_byte *.
6545 * ada-lang.c (ada_value_assign): Use gdb_byte.
6546 * alphanbsd-tdep.c (sigtramp_retcode): Change type to gdb_byte[].
6547 (alphanbsd_sigtramp_offset): Use gdb_byte.
6548 * arm-linux-tdep.c (arm_linux_arm_le_breakpoint)
6549 (arm_linux_arm_be_breakpoint, eabi_linux_arm_le_breakpoint)
6550 (eabi_linux_arm_be_breakpoint, arm_linux_thumb_be_breakpoint)
6551 (arm_linux_thumb_le_breakpoint, arm_linux_thumb2_be_breakpoint)
6552 (arm_linux_thumb2_le_breakpoint): Change type to gdb_byte[].
6553 * arm-tdep.c (arm_stub_unwind_sniffer)
6554 (arm_displaced_init_closure): Use gdb_byte.
6555 (arm_default_arm_le_breakpoint, arm_default_arm_be_breakpoint)
6556 (arm_default_thumb_le_breakpoint)
6557 (arm_default_thumb_be_breakpoint): Change type to gdb_byte[].
6558 * arm-tdep.h (struct gdbarch_tdep) <arm_breakpoint,
6559 thumb_breakpoint, thumb2_breakpoint>: Change type to gdb_byte *.
6560 * arm-wince-tdep.c (arm_wince_le_breakpoint)
6561 (arm_wince_thumb_le_breakpoint): Change type to gdb_byte[].
6562 * armnbsd-tdep.c (arm_nbsd_arm_le_breakpoint)
6563 (arm_nbsd_arm_be_breakpoint, arm_nbsd_thumb_le_breakpoint)
6564 (arm_nbsd_thumb_be_breakpoint): Change type to gdb_byte[].
6565 * armobsd-tdep.c (arm_obsd_thumb_le_breakpoint)
6566 (arm_obsd_thumb_be_breakpoint): Change type to gdb_byte[].
6567 * cris-tdep.c (push_stack_item, cris_push_dummy_call)
6568 (cris_store_return_value, cris_extract_return_value): Use
6569 gdb_byte.
6570 (constraint): Change type of parameter to char * from signed
6571 char*. Use gdb_byte.
6572 * dwarf2loc.c (read_pieced_value, write_pieced_value): Change type
6573 of local buffer to gdb_byte *.
6574 * dwarf2read.c (read_index_from_section): Use gdb_byte.
6575 (create_dwp_hash_table): Change type of locals to gdb_byte *.
6576 (add_address_entry): Change type of local buffer to gdb_byte[].
6577 * frv-tdep.c (frv_adjust_breakpoint_address, find_func_descr)
6578 (frv_push_dummy_call): Use gdb_byte.
6579 * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code)
6580 (hppa_hpux_supply_ss_fpblock, hppa_hpux_supply_ss_wide)
6581 (hppa_hpux_supply_save_state): Use gdb_byte.
6582 * hppa-tdep.c (hppa32_push_dummy_call)
6583 (hppa64_convert_code_addr_to_fptr): Use gdb_byte.
6584 * ia64-tdep.c (extract_bit_field, replace_bit_field)
6585 (slotN_contents, replace_slotN_contents): Change type of parameter
6586 to gdb_byte *.
6587 (fetch_instruction, ia64_pseudo_register_write)
6588 (ia64_register_to_value, ia64_value_to_register)
6589 (ia64_extract_return_value, ia64_store_return_value)
6590 (ia64_push_dummy_call): Use gdb_byte.
6591 * m32c-tdep.c (m32c_return_value): Remove cast.
6592 * m68hc11-tdep.c (m68hc11_pseudo_register_write)
6593 (m68hc11_push_dummy_call, m68hc11_store_return_value): Use
6594 gdb_byte.
6595 * mipsnbsd-tdep.c (mipsnbsd_get_longjmp_target): Use gdb_byte.
6596 * mn10300-tdep.c (mn10300_store_return_value)
6597 (mn10300_breakpoint_from_pc, mn10300_push_dummy_call): Use
6598 gdb_byte.
6599 * moxie-tdep.c (moxie_process_readu): Use gdb_byte.
6600 (moxie_process_record): Remove casts.
6601 * ppc-ravenscar-thread.c (supply_register_at_address)
6602 (ppc_ravenscar_generic_store_registers): Use gdb_byte.
6603 * ravenscar-thread.c (get_running_thread_id): Use gdb_byte.
6604 * remote-m32r-sdi.c (m32r_fetch_register): Use gdb_byte.
6605 * remote-mips.c (mips_xfer_memory): Use gdb_byte.
6606 * remote.c (compare_sections_command): Use gdb_byte.
6607 * score-tdep.c (score7_free_memblock): Change type of parameter to
6608 gdb_byte *.
6609 * sh-tdep.c (sh_justify_value_in_reg): Change return type to
6610 gdb_byte *. Use gdb_byte.
6611 (sh_push_dummy_call_fpu): Use gdb_byte.
6612 (sh_extract_return_value_nofpu, sh_extract_return_value_fpu)
6613 (sh_store_return_value_nofpu, sh_store_return_value_fpu)
6614 (sh_register_convert_to_virtual, sh_register_convert_to_raw):
6615 Change parameter type to 'gdb_byte *'. Use gdb_byte.
6616 (sh_pseudo_register_read, sh_pseudo_register_write): Use gdb_byte.
6617 * sh64-tdep.c (sh64_push_dummy_call): Use gdb_byte.
6618 (sh64_store_return_value, sh64_register_convert_to_virtual):
6619 Change parameter type to 'gdb_byte *'. Use gdb_byte.
6620 (sh64_pseudo_register_write): Use gdb_byte.
6621 * solib-darwin.c (darwin_current_sos): Add casts to 'gdb_byte *'.
6622 * solib-irix.c (fetch_lm_info): Likewise. Use gdb_byte for byte
6623 buffer.
6624 (irix_current_sos): Use gdb_byte.
6625 * solib-som.c (som_current_sos): Use gdb_byte.
6626 * sparc-ravenscar-thread.c (supply_register_at_address)
6627 (sparc_ravenscar_generic_store_registers): Use gdb_byte.
6628 * spu-multiarch.c (spu_xfer_partial): Add cast to 'char *'.
6629 * spu-tdep.c (spu_get_overlay_table): Use gdb_byte.
6630 * tic6x-tdep.c (tic6x_breakpoint_from_pc): Change return type to
6631 'gdb_byte *'.
6632 * tic6x-tdep.h (struct gdbarch_tdep) <breakpoint>: Change type to
6633 'gdb_byte *'.
6634 * tracepoint.c (tfile_fetch_registers): Use gdb_byte.
6635 * xstormy16-tdep.c (xstormy16_extract_return_value)
6636 (xstormy16_store_return_value): Change parameter type to
6637 'gdb_byte *'. Adjust.
6638 (xstormy16_push_dummy_call): Use gdb_byte.
6639 * xtensa-tdep.c (xtensa_scan_prologue, call0_ret)
6640 (call0_analyze_prologue, execute_code): Use gdb_byte.
6641
6642 2013-04-19 Vladimir Kargov <kargov@gmail.com>
6643 Pedro Alves <palves@redhat.com>
6644
6645 * i387-tdep.c (i387_print_float_info): Use gdb_byte for pointer to
6646 value contents.
6647
6648 2013-04-17 Doug Evans <dje@google.com>
6649
6650 * dwarf2read.c (struct signatured_type): New member type.
6651 (struct attribute): Replace member signatured_type with signature.
6652 (DW_SIGNATURE): Replaces DW_SIGNATURE_TYPE.
6653 (read_call_site_scope): Call follow_die_ref instead of
6654 follow_die_ref_or_sig.
6655 (read_structure_type): Rewrite handling of signatured types.
6656 (read_enumeration_type): Ditto.
6657 (read_attribute_value): Update.
6658 (build_error_marker_type): New function.
6659 (lookup_die_type): Add assert. Rewrite handling of signatured types.
6660 Don't call error for bad types, just build an error marker type.
6661 (dump_die_shallow): Update.
6662 (follow_die_sig_1): Renamed from follow_die_sig.
6663 Don't call error for bad types, instead return NULL.
6664 (follow_die_sig): New function.
6665 (get_signatured_type, get_DW_AT_signature_type): New functions.
6666
6667 2013-04-17 Yufeng Zhang <yufeng.zhang@arm.com>
6668
6669 * aarch64-tdep.c (aarch64_write_pc): Removed.
6670 (aarch64_gdbarch_init): Remove set_gdbarch_write_pc of the above
6671 function.
6672
6673 2013-04-17 Yao Qi <yao@codesourcery.com>
6674
6675 * top.c (print_gdb_configuration): Print configure-time
6676 parameter on using libbabeltrace or not.
6677
6678 2013-04-16 Pedro Alves <palves@redhat.com>
6679
6680 * copyright.py (EXCLUDE_LIST): Add gdb/common/glibc_thread_db.h.
6681
6682 2013-04-16 Pedro Alves <palves@redhat.com>
6683
6684 * common/glibc_thread_db.h: Update from upstream glibc
6685 (git 568035b7874a099087b77f7bba3e36a1173787b0).
6686
6687 2013-04-16 Pedro Alves <palves@redhat.com>
6688
6689 * common/gdb_thread_db.h [!HAVE_THREAD_DB_H]: Factor out to ...
6690 * common/glibc_thread_db.h: ... this new file ...
6691 * common/gdb_thread_db.h [!HAVE_THREAD_DB_H]: ... and include it.
6692
6693 2013-04-16 Will Newton <will.newton@gmail.com>
6694 Pedro Alves <palves@redhat.com>
6695
6696 PR build/11881
6697
6698 * common/gdb_thread_db.h (LIBTHREAD_DB_SO)
6699 (LIBTHREAD_DB_SEARCH_PATH): Move outside of #ifdef
6700 HAVE_THREAD_DB_H.
6701
6702 2013-04-16 Pedro Alves <palves@redhat.com>
6703 Eli Zaretskii <eliz@gnu.org>
6704
6705 * NEWS: Mention "set foo unlimited".
6706
6707 2013-04-15 Doug Evans <dje@google.com>
6708
6709 * dwarf2read.c (struct dwo_file): Replace member "cus" with "cu".
6710 (struct create_dwo_cu_data): Renamed from create_dwo_info_table_data.
6711 (create_dwo_cu_reader): Renamed from
6712 create_dwo_debug_info_hash_table_reader.
6713 (create_dwo_cu): Renamed from create_dwo_debug_info_hash_table.
6714 Remove support for multiple CUs in a DWO file.
6715 (open_and_init_dwo_file, lookup_dwo_cutu): Update.
6716
6717 * dwarf2read.c (create_debug_types_hash_table): Use hex_string
6718 instead of phex.
6719 (lookup_dwo_unit, create_dwo_debug_info_hash_table_reader): Ditto.
6720 (create_dwo_in_dwp): Ditto.
6721
6722 2013-04-15 Tom Tromey <tromey@redhat.com>
6723
6724 * NEWS: Move recent entries into "since 7.6" section.
6725
6726 2013-04-15 Tom Tromey <tromey@redhat.com>
6727
6728 PR c++/13588:
6729 * NEWS: Update.
6730 * break-catch-throw.c (struct exception_catchpoint)
6731 <exception_rx, pattern>: New fields.
6732 (fetch_probe_arguments, dtor_exception_catchpoint)
6733 (check_status_exception_catchpoint)
6734 (print_one_detail_exception_catchpoint): New functions.
6735 (handle_gnu_v3_exceptions): Add "except_rx" argument.
6736 Compile regular expression if needed.
6737 (extract_exception_regexp): New function.
6738 (catch_exception_command_1): Use extract_exception_regexp.
6739 (compute_exception): Use fetch_probe_arguments.
6740 (initialize_throw_catchpoint_ops): Set dtor, print_one_detail,
6741 and check_status fields.
6742 * cp-abi.c (cplus_typename_from_type_info): New function.
6743 * cp-abi.h (cplus_typename_from_type_info): Declare.
6744 (struct cp_abi_ops) <get_typename_from_type_info>: New field.
6745 * gdb_regex.h (compile_rx_or_error): Declare.
6746 * gnu-v3-abi.c (gnuv3_get_typename_from_type_info): Update
6747 comment.
6748 (init_gnuv3_ops): Set get_type_from_type_info field.
6749 * probe.c (compile_rx_or_error): Move...
6750 * utils.c (compile_rx_or_error): ... here.
6751
6752 2013-04-15 Tom Tromey <tromey@redhat.com>
6753
6754 PR c++/15176:
6755 * NEWS: Update.
6756 * break-catch-throw.c (compute_exception): New function.
6757 (exception_funcs): New global.
6758 (_initialize_break_catch_throw): Create $_exception.
6759 * cp-abi.c (cplus_type_from_type_info): New function.
6760 * cp-abi.h (cplus_type_from_type_info): Declare.
6761 (struct cp_abi_ops) <get_type_from_type_info>: New field.
6762 * gnu-v3-abi.c (gnuv3_get_typename_from_type_info)
6763 (gnuv3_get_type_from_type_info): New functions.
6764 (init_gnuv3_ops): Set get_type_from_type_info ABI field.
6765
6766 2013-04-15 Tom Tromey <tromey@redhat.com>
6767
6768 * break-catch-throw.c (struct exception_names): New.
6769 (exception_functions): Change type.
6770 (re_set_exception_catchpoint): Look for SDT probes.
6771
6772 2013-04-15 Tom Tromey <tromey@redhat.com>
6773
6774 PR c++/10119:
6775 * break-catch-throw.c (exception_functions): New global.
6776 (gnu_v3_exception_catchpoint_ops): Move earlier.
6777 (struct exception_catchpoint): New.
6778 (classify_exception_breakpoint): Rewrite.
6779 (re_set_exception_catchpoint): New function.
6780 (handle_gnu_v3_exceptions): Return void. Use init_catchpoint.
6781 Allocate a struct exception_catchpoint.
6782 (catch_exception_command_1): Update.
6783 (initialize_throw_catchpoint_ops): Set 're_set' method.
6784
6785 2013-04-15 Tom Tromey <tromey@redhat.com>
6786
6787 * Makefile.in (SFILES): Add break-catch-throw.c
6788 (COMMON_OBS): Add break-catch-throw.o.
6789 * break-catch-throw.c: New file.
6790 * breakpoint.c: Move exception-catching code to new file.
6791 (ep_parse_optional_if_clause): No longer static.
6792 * breakpoint.h (ep_parse_optional_if_clause): Declare.
6793
6794 2013-04-15 Tom Tromey <tromey@redhat.com>
6795
6796 PR c++/9065:
6797 * NEWS: Update.
6798 * breakpoint.c (watchpoint_exp_is_const): Add OP_TYPEID.
6799 * c-exp.y (TYPEID): New token.
6800 (exp): Add new TYPEID productions.
6801 (ident_tokens): Add "typeid".
6802 * cp-abi.c (cplus_typeid, cplus_typeid_type): New functions.
6803 * cp-abi.h (cplus_typeid, cplus_typeid_type): Declare.
6804 (struct cp_abi_ops) <get_typeid, get_typeid_type>: New fields.
6805 * eval.c (evaluate_subexp_standard) <OP_TYPEID>: New case.
6806 * expprint.c (dump_subexp_body_standard) <OP_TYPEID>: New
6807 case.
6808 * gnu-v3-abi.c (std_type_info_gdbarch_data): New global.
6809 (build_std_type_info_type, gnuv3_get_typeid_type)
6810 (gnuv3_get_typeid): New functions.
6811 (init_gnuv3_ops): Initialize std_type_info_gdbarch_data. Set
6812 new fields on ABI object.
6813 * parse.c (operator_length_standard) <OP_TYPEID>: New case.
6814 * std-operator.def (OP_TYPEID): New.
6815
6816 2013-04-15 Tom Tromey <tromey@redhat.com>
6817
6818 * elfread.c (elf_symtab_read): Install versioned symbol under
6819 unversioned name as well.
6820
6821 2013-04-15 Tom Tromey <tromey@redhat.com>
6822
6823 PR c++/11990:
6824 * c-lang.c (cplus_language_defn): Use gdb_demangle.
6825 * c-typeprint.c (c_type_print_base): Use gdb_demangle.
6826 * cp-support.c (mangled_name_to_comp): Use gdb_demangle.
6827 (gdb_demangle): New function.
6828 * cp-support.h (gdb_demangle): Declare.
6829 * dwarf2read.c (dwarf2_physname, fixup_partial_die)
6830 (dwarf2_name): Use gdb_demangle.
6831 * gdbtypes.c (check_stub_method): Use gdb_demangle.
6832 * gnu-v3-abi.c (gnuv3_rtti_type): Strip @plt and version
6833 suffixes from name.
6834 (gnuv3_print_method_ptr): Use gdb_demangle.
6835 * jv-lang.c (java_demangle): Use gdb_demangle.
6836 * jv-typeprint.c (java_type_print_base): Use gdb_demangle.
6837 * language.c (unk_lang_demangle): Use gdb_demangle.
6838 * symtab.c (symbol_find_demangled_name)
6839 (demangle_for_lookup): Use gdb_demangle.
6840
6841 2013-04-15 Tom Tromey <tromey@redhat.com>
6842
6843 PR c++/12824:
6844 * NEWS: Update.
6845 * breakpoint.c (enum exception_event_kind) <EX_EVENT_RETHROW>:
6846 New constant.
6847 (classify_exception_breakpoint): New function.
6848 (print_it_exception_catchpoint, print_one_exception_catchpoint)
6849 (print_mention_exception_catchpoint)
6850 (print_recreate_exception_catchpoint, handle_gnu_v3_exceptions)
6851 (catch_exception_command_1): Handle "rethrow" catchpoint.
6852 (catch_rethrow_command): New function.
6853 (_initialize_breakpoint): Add "catch rethrow" command.
6854
6855 2013-04-15 Pierre Muller <muller@sourceware.org>
6856
6857 * contrib/ari/gdb_ari.sh (write_pc rule): Do not consider
6858 set_gdbarch_write_pc as deprecated anymore.
6859
6860 2013-04-15 Joel Brobecker <brobecker@adacore.com>
6861
6862 * spu-tdep.c (spu_write_pc): Add empty line after local variable
6863 declarations.
6864
6865 2013-04-13 Yao Qi <yao@codesourcery.com>
6866
6867 * ctf.c (_initialize_ctf): Include "completer.h".
6868 Call add_target_with_completer instead of add_target.
6869
6870 2013-04-12 Jan Kratochvil <jan.kratochvil@redhat.com>
6871
6872 Fix GDB regression related to PR binutils/14813.
6873 * jit.c (mem_bfd_iovec_close): Return 0 for success.
6874 * minidebug.c (lzma_close): Add return value comment.
6875 * remote.c (remote_bfd_iovec_close): Return 0 for success.
6876 * solib-spu.c (spu_bfd_iovec_close): Likewise.
6877 * spu-linux-nat.c (spu_bfd_iovec_close): Likewise.
6878
6879 2013-04-12 Jan Kratochvil <jan.kratochvil@redhat.com>
6880
6881 * config.in: Regenerate.
6882
6883 2013-04-12 Tom Tromey <tromey@redhat.com>
6884
6885 * dwarf2-frame.c (struct comp_unit) <dwarf_frame_buffer>: Now
6886 const.
6887 * dwarf2read.c (struct dwarf2_section_info) <buffer>: Now const.
6888 (struct die_reader_specs) <buffer>: Likewise.
6889 (die_reader_func_ftype): Make 'info_ptr' const.
6890 (struct line_header) <include_dirs, statement_program_start,
6891 statement_program_end>: Now const.
6892 (struct file_entry) <name>: Likewise.
6893 (struct partial_die_info) <sibling>: Likewise.
6894 (struct dwarf_block) <data>: Likewise.
6895 (dwarf2_read_section): Remove cast.
6896 (dwarf2_get_section_info): Make 'bufp' const.
6897 (read_index_from_section): Constify.
6898 (dw2_get_file_names_reader): Make 'info_ptr' const.
6899 (dw2_get_primary_filename_reader): Likewise.
6900 (read_comp_unit_head): Make 'info_ptr' and return type const.
6901 (read_and_check_comp_unit_head, read_and_check_type_unit_head):
6902 Likewise.
6903 (read_abbrev_offset): Constify.
6904 (dwarf2_create_include_psymtab): Make 'name' const.
6905 (create_debug_types_hash_table): Update.
6906 (read_cutu_die_from_dwo): Make 'result_info_ptr' const.
6907 (init_cutu_and_read_dies, init_cutu_and_read_dies_no_follow):
6908 Constify.
6909 (process_psymtab_comp_unit_reader, build_type_psymtabs_reader)
6910 (load_partial_comp_unit_reader): Make 'info_ptr' const.
6911 (read_comp_units_from_section): Constify.
6912 (peek_abbrev_code, peek_die_abbrev, skip_children, skip_one_die)
6913 (locate_pdi_sibling, load_full_comp_unit_reader): Make 'info_ptr'
6914 const.
6915 (dwarf2_compute_name, setup_type_unit_groups): Constify.
6916 (create_dwo_debug_info_hash_table): Make 'info_ptr' const.
6917 (create_dwp_hash_table, dwarf2_ranges_read)
6918 (dwarf2_record_block_ranges): Constify.
6919 (read_die_and_children, read_die_and_siblings_1)
6920 (read_die_and_siblings): Make 'info_ptr' and 'new_info_ptr'
6921 const.
6922 (read_full_die_1, read_full_die): Make 'info_ptr' const.
6923 (abbrev_table_read_table): Constify.
6924 (load_partial_dies): Make 'info_ptr' const.
6925 (read_partial_die, read_attribute_value, read_attribute): Make
6926 'info_ptr' and return type const.
6927 (read_address, read_initial_length)
6928 (read_checked_initial_length_and_offset, read_offset)
6929 (read_offset_1, read_n_bytes, read_direct_string): Make 'buf'
6930 const.
6931 (read_direct_string): Make 'buf' and return type const.
6932 (read_indirect_string_at_offset, read_indirect_string_from_dwz)
6933 (read_indirect_string): Make return type const.
6934 (read_unsigned_leb128, read_signed_leb128): Make 'buf' const.
6935 (read_addr_index_from_leb128, dwarf2_read_addr_index_reader): Make
6936 'info_ptr' const.
6937 (read_str_index): Make return type const.
6938 (add_include_dir): Make 'include_dir' const.
6939 (add_file_name): Make 'name' const.
6940 (dwarf_decode_line_header): Constify.
6941 (psymtab_include_file_name): Make return type const.
6942 (dwarf_decode_lines_1, dwarf_decode_lines): Constify.
6943 (dwarf2_start_subfile): Make 'filename' const.
6944 (dwarf2_const_value_attr): Make 'bytes' const.
6945 (read_signatured_type_reader): Make 'info_ptr' const.
6946 (decode_locdesc): Constify.
6947 (skip_form_bytes): Make 'bytes', 'buffer_end', and return type
6948 const.
6949 (skip_unknown_opcode): Make 'opcode_definitions', 'mac_ptr',
6950 'mac_end', and return type const.
6951 (dwarf_parse_macro_header): Make 'mac_ptr' and return type const.
6952 (dwarf_decode_macro_bytes): Make 'mac_ptr', 'mac_end', and return
6953 type const.
6954 (per_cu_header_read_in): Constify.
6955 * symfile.h (dwarf2_get_section_info): Update.
6956
6957 2013-04-12 Tom Tromey <tromey@redhat.com>
6958
6959 * symtab.h (struct general_symbol_info) <value.bytes>: Make const.
6960
6961 2013-04-12 Eli Zaretskii <eliz@gnu.org>
6962
6963 * NEWS: Mention "show configuration", --configuration.
6964 * top.c (print_gdb_configuration): New function, displays the
6965 details about GDB configure-time parameters.
6966 (print_gdb_version): Mention "show configuration".
6967 * cli/cli-cmds.c (show_configuration): New function.
6968 (_initialize_cli_cmds): Add the "show configuration" command.
6969 * main.c (captured_main) <print_configuration>: New static var.
6970 <long_options>: Use it.
6971 If --configuration was given, call print_gdb_configuration.
6972
6973 2013-04-11 Jan Kratochvil <jan.kratochvil@redhat.com>
6974 Pedro Alves <palves@redhat.com>
6975
6976 * Makefile.in (HAVE_NATIVE_GCORE_TARGET): New.
6977 (generated_files): Add gcore.
6978 (install-only, uninstall): Add gcore if HAVE_NATIVE_GCORE_TARGET or
6979 HAVE_NATIVE_GCORE_HOST.
6980 (gcore): New.
6981 * NEWS (Changes since GDB 7.6): Mention newly installed gcore.
6982 * config/alpha/alpha-osf3.mh, config/i386/fbsd.mh,
6983 config/i386/fbsd64.mh, config/i386/i386gnu.mh, config/i386/i386sol2.mh,
6984 config/i386/sol2-64.mh, config/mips/irix5.mh, config/mips/irix6.mh,
6985 config/powerpc/fbsd.mh, config/sparc/fbsd.mh, config/sparc/sol2.mh:
6986 Add HAVE_NATIVE_GCORE_HOST.
6987 * configure: Regenerate.
6988 * configure.ac (HAVE_NATIVE_GCORE_TARGET): New, set it, AC_SUBST it.
6989 New AC_SUBST fir GDB_TRANSFORM_NAME and GCORE_TRANSFORM_NAME. New
6990 AC_CONFIG_FILES for gcore.
6991 * configure.tgt: Add gdb_have_gcore to the initial comment. Set
6992 gdb_have_gcore.
6993 * gdb_gcore.sh: Rename to ...
6994 * gcore.in: ... here. Remove gcore.sh comment. Use GDB_TRANSFORM_NAME
6995 and GCORE_TRANSFORM_NAME substitutions.
6996
6997 Fix parsing tabs in ${gdb_target_obs}.
6998 * configure.tgt (gdb_have_gcore): Replace case with for and if.
6999
7000 2013-04-11 Jan Kratochvil <jan.kratochvil@redhat.com>
7001
7002 * remote.c (unpush_and_perror): Add output message final dot.
7003
7004 2013-04-11 Yao Qi <yao@codesourcery.com>
7005
7006 * tracepoint.c (tfile_interp_line): Fit parameters line and
7007 utpp in one line.
7008
7009 2013-04-10 Joel Brobecker <brobecker@adacore.com>
7010
7011 * solib.c (solib_map_sections): Remove code overwriting
7012 SO->SO_NAME with the bfd's filename.
7013
7014 2013-04-10 Pedro Alves <palves@redhat.com>
7015
7016 * cli/cli-decode.c (integer_unlimited_completer): New function.
7017 (add_setshow_integer_cmd, add_setshow_uinteger_cmd)
7018 (add_setshow_zuinteger_unlimited_cmd): Install the "unlimited"
7019 completer.
7020 * cli/cli-setshow.c: Include "cli/cli-utils.h".
7021 (is_unlimited_literal): New function.
7022 (do_set_command): Handle literal "unlimited" arguments.
7023 * frame.c (_initialize_frame) <set backtrace limit>: Document
7024 "unlimited".
7025 * printcmd.c (_initialize_printcmd) <set print
7026 max-symbolic-offset>: Add help text.
7027 * record-full.c (_initialize_record_full) <set record full
7028 insn-number-max>: Likewise.
7029 * record.c (_initialize_record) <set record
7030 instruction-history-size, set record function-call-history-size>:
7031 Add help text.
7032 * ser-tcp.c (_initialize_ser_tcp) <set tcp connect-timeout>: Add
7033 help text.
7034 * tracepoint.c (_initialize_tracepoint) <set trace-buffer-size>:
7035 Likewise.
7036 * source.c (_initialize_source) <set listsize>: Add help text.
7037 * utils.c (initialize_utils) <set height, set width>: Likewise.
7038 <set pagination>: Mention "set height unlimited".
7039 * valprint.c (_initialize_valprint) <set print elements, set print
7040 repeats>: Document "unlimited".
7041
7042 2013-04-10 Pedro Alves <palves@redhat.com>
7043
7044 * cli/cli-cmds.c (quit_command): Call query_if_trace_running
7045 instead of disconnect_tracing.
7046 * infcmd.c (detach_command, disconnect_command): Call
7047 query_if_trace_running. Adjust.
7048 * top.c: Include "tracepoint.h".
7049 (quit_target): Delete. Contents moved ...
7050 (quit_force): ... here. Wrap each stage of teardown in
7051 TRY_CATCH. Call disconnect_tracing before detaching.
7052
7053 2013-04-10 Hui Zhu <hui@codesourcery.com>
7054 Yao Qi <yao@codesourcery.com>
7055
7056 * configure.ac: Check libbabeltrace is installed.
7057 * config.in: Regenerate.
7058 * configure: Regenerate.
7059 * Makefile.in (LIBBABELTRACE): New.
7060 (CLIBS): Add LIBBABELTRACE.
7061 * ctf.c: Include "exec.h".
7062 (CTF_EVENT_ID_STATUS, CTF_EVENT_ID_TSV_DEF): New macros.
7063 (CTF_EVENT_ID_TP_DEF, ctf_save_write_int32): New macros.
7064 (ctf_save_metadata_header): Define new type aliases in
7065 metadata.
7066 (ctf_write_header): Define event type "tsv_def" and "tp_def"
7067 in metadata. Start a new faked packet for trace status.
7068 (ctf_write_status): Write trace status to CTF.
7069 (ctf_write_uploaded_tsv): Write TSV to CTF.
7070 (ctf_write_uploaded_tp): Write tracepoint definition to CTF.
7071 (ctf_write_definition_end): End the faked packet.
7072
7073 (ctx, ctf_iter, trace_dirname): New.
7074 (start_pos): New variable.
7075 (ctf_destroy, ctf_open_dir, ctf_open): New.
7076 (SET_INT32_FIELD, SET_ARRAY_FIELD, SET_STRING_FIELD): New
7077 macros.
7078 (ctf_read_tsv, ctf_read_tp, ctf_close, ctf_files_info): New.
7079 (ctf_fetch_registers, ctf_xfer_partial): New.
7080 (ctf_get_trace_state_variable_value): New.
7081 (ctf_get_tpnum_from_frame_event): New.
7082 (ctf_get_traceframe_address): New.
7083 (ctf_trace_find, ctf_has_stack): New.
7084 (ctf_has_registers, ctf_traceframe_info, init_ctf_ops): New.
7085 (ctf_get_trace_status, ctf_read_status): New.
7086 (_initialize_ctf): New.
7087 * tracepoint.c (get_tracepoint_number): New
7088 (get_uploaded_tsv): Remove 'static'.
7089 (struct traceframe_info, trace_regblock_size): Move it to ...
7090 * tracepoint.h: ... here.
7091 (get_tracepoint_number): Declare it.
7092 (get_uploaded_tsv): Declare it.
7093
7094 * NEWS: Mention new configure option.
7095
7096 2013-04-10 Pedro Alves <palves@redhat.com>
7097 Hui Zhu <hui@codesourcery.com>
7098
7099 * breakpoint.c (dprintf_re_set): New.
7100 (initialize_breakpoint_ops): Set dprintf_breakpoint_ops re_set
7101 to dprintf_re_set.
7102
7103 2013-04-09 Joel Brobecker <brobecker@adacore.com>
7104
7105 * configure.tgt (gdb_target_obs) <powerpc-*-aix* | rs6000-*-*>:
7106 Remove solib-svr4.o from the list.
7107
7108 2013-04-09 Joel Brobecker <brobecker@adacore.com>
7109
7110 * varobj.c (update_dynamic_varobj_children) [!HAVE_PYTHON]:
7111 Use gdb_assert_not_reached instead of invalid boolean expression.
7112
7113 2013-04-09 Pedro Alves <palves@redhat.com>
7114
7115 * remote.c (unpush_and_perror): New function.
7116 (readchar, remote_serial_write): Use it.
7117
7118 2013-04-09 Markus Metzger <markus.t.metzger@intel.com>
7119
7120 * NEWS: Mention new btrace RSP packets.
7121
7122 2013-04-08 Tom Tromey <tromey@redhat.com>
7123
7124 * symmisc.c (dump_msymbols): Cast fprintf_filtered argument to
7125 long.
7126
7127 2013-04-08 Tom Tromey <tromey@redhat.com>
7128
7129 * maint.c (print_bfd_section_info): Print the section index.
7130 * symmisc.c (dump_msymbols): Print the section index.
7131
7132 2013-04-08 Tom Tromey <tromey@redhat.com>
7133
7134 PR symtab/8424:
7135 * blockframe.c (find_pc_partial_function_gnu_ifunc): Check
7136 SYMBOL_SECTION, not SYMBOL_OBJ_SECTION.
7137 * breakpoint.c (resolve_sal_pc): Update.
7138 * elfread.c (elf_gnu_ifunc_record_cache): Update.
7139 * findvar.c (struct minsym_lookup_data) <objfile>: New field.
7140 (minsym_lookup_iterator_cb): Use it.
7141 (default_read_var_value): Update.
7142 * hppa-hpux-tdep.c (hppa64_hpux_in_solib_call_trampoline):
7143 Update.
7144 * infcmd.c (jump_command): Update.
7145 * linespec.c (minsym_found): Update.
7146 * maint.c (maintenance_translate_address): Update.
7147 * minsyms.c (lookup_minimal_symbol_by_pc_section_1): Update.
7148 (prim_record_minimal_symbol_full): Don't set SYMBOL_OBJ_SECTION.
7149 * parse.c (write_exp_msymbol): Update.
7150 * printcmd.c (address_info): Update.
7151 * psymtab.c (find_pc_sect_psymbol): Update.
7152 (fixup_psymbol_section): Check SYMBOL_SECTION, not
7153 SYMBOL_OBJ_SECTION.
7154 (add_psymbol_to_bcache): Correctly initialize SYMBOL_SECTION.
7155 Don't initialize SYMBOL_OBJ_SECTION.
7156 * spu-tdep.c (spu_catch_start): Update.
7157 * stabsread.c (define_symbol): Don't set SYMBOL_SECTION.
7158 * symmisc.c (dump_msymbols, print_symbol): Update.
7159 * symtab.c (fixup_section): Don't set 'obj_section'. Change
7160 how fallback section is computed.
7161 (fixup_symbol_section): Update.
7162 (find_pc_sect_symtab, find_function_start_sal, skip_prologue_sal):
7163 Update.
7164 (allocate_symbol, initialize_symbol, allocate_template_symbol):
7165 Initialize SYMBOL_SECTION.
7166 * symtab.h (struct general_symbol_info) <section>: Update comment.
7167 <obj_section>: Remove.
7168 (SYMBOL_OBJ_SECTION): Add 'objfile' argument. Rewrite.
7169 (SYMBOL_OBJFILE): New macro.
7170
7171 2013-04-08 Tom Tromey <tromey@redhat.com>
7172
7173 * coffread.c (record_minimal_symbol): Update.
7174 * dbxread.c (record_minimal_symbol): Update.
7175 * elfread.c (record_minimal_symbol): Update.
7176 * machoread.c (macho_symtab_add_minsym): Update.
7177 * mdebugread.c (record_minimal_symbol, parse_partial_symbols):
7178 Update.
7179 * minsyms.c (prim_record_minimal_symbol): Update.
7180 (prim_record_minimal_symbol_full): Remove 'bfd_section'
7181 argument.
7182 (prim_record_minimal_symbol_and_info): Likewise.
7183 * minsyms.h (prim_record_minimal_symbol_full)
7184 (prim_record_minimal_symbol_and_info): Update.
7185 * symtab.c (allocate_symbol, initialize_symbol)
7186 (allocate_template_symbol): Initialize SYMBOL_SECTION.
7187 * xcoffread.c (record_minimal_symbol, scan_xcoff_symtab):
7188 Update.
7189
7190 2013-04-08 Tom Tromey <tromey@redhat.com>
7191
7192 PR symtab/8423:
7193 * solib-som.c (som_solib_section_offsets): Use BFD section
7194 indices. Set offsets for all sections.
7195 * somread.c (som_symtab_read): Compute BFD section for
7196 symbol. Use prim_record_minimal_symbol_and_info.
7197 (som_symfile_read): Fix comment.
7198 (struct find_section_offset_arg): New.
7199 (find_section_offset, set_section_index): New functions.
7200 (som_symfile_offsets): Use set_section_index to compute
7201 section indices.
7202
7203 2013-04-08 Tom Tromey <tromey@redhat.com>
7204
7205 * coffread.c (cs_to_section): Use gdb_bfd_section_index.
7206 * elfread.c (record_minimal_symbol, elf_symtab_read): Use
7207 gdb_bfd_section_index.
7208 * gdb_bfd.c (gdb_bfd_section_index, gdb_bfd_count_sections):
7209 New functions.
7210 * gdb_bfd.h (gdb_bfd_section_index, gdb_bfd_count_sections):
7211 Declare.
7212 * machoread.c (macho_symtab_add_minsym, macho_symfile_offsets):
7213 Update.
7214 * objfiles.c (add_to_objfile_sections_full): New function.
7215 (add_to_objfile_sections): Use it.
7216 (build_section_table): Rewrite.
7217 (objfile_relocate1): Use gdb_bfd_section_index. Update.
7218 * objfiles.h (obj_section_offset): Use gdb_bfd_section_index.
7219 (struct objfile) <sections>: Update comment.
7220 (ALL_OBJFILE_OSECTIONS): Skip sections where the_bfd_section
7221 is NULL.
7222 (ALL_OBJSECTIONS): Use it.
7223 * solib-dsbt.c (dsbt_relocate_main_executable): Update.
7224 * solib-frv.c (frv_relocate_main_executable): Update.
7225 * solib-target.c (solib_target_relocate_section_addresses):
7226 Use gdb_bfd_section_index.
7227 * symfile.c (build_section_addr_info_from_section_table):
7228 Use gdb_bfd_section_index.
7229 (build_section_addr_info_from_bfd, place_section): Likewise.
7230 * symtab.c (fixup_section): Update.
7231 * xcoffread.c (find_targ_sec): Use gdb_bfd_section_index.
7232
7233 2013-04-08 Tom Tromey <tromey@redhat.com>
7234
7235 * minsyms.h (struct bound_minimal_symbol): New.
7236 (lookup_minimal_symbol_and_objfile): Return bound_minimal_symbol.
7237 Remove objfile argument.
7238 (lookup_minimal_symbol_by_pc_section, lookup_minimal_symbol_by_pc):
7239 Return bound_minimal_symbol.
7240 * minsyms.c (lookup_minimal_symbol_by_pc_1)
7241 (lookup_minimal_symbol_by_pc_section, lookup_minimal_symbol_by_pc):
7242 Return bound_minimal_symbol.
7243 (in_gnu_ifunc_stub): Update.
7244 (lookup_minimal_symbol_and_objfile): Return bound_minimal_symbol.
7245 Remove 'objfile_p' argument.
7246 (lookup_solib_trampoline_symbol_by_pc): Update.
7247 * ada-tasks.c, amd64-windows-tdep.c, arm-tdep.c,
7248 arm-wince-tdep.c, block.c, blockframe.c, breakpoint.c, btrace.c,
7249 c-valprint.c, dwarf2loc.c, elfread.c, frame.c, frv-tdep.c,
7250 glibc-tdep.c, gnu-v2-abi.c, gnu-v3-abi.c, hppa-hpux-tdep.c,
7251 i386-tdep.c, ia64-tdep.c, infcall.c, infcmd.c, jit.c,
7252 linux-fork.c, m32c-tdep.c, m68hc11-tdep.c, maint.c,
7253 mips-tdep.c, p-valprint.c, parse.c, ppc-linux-tdep.c,
7254 ppc-sysv-tdep.c, printcmd.c, rs6000-tdep.c, sh64-tdep.c,
7255 stack.c, symtab.c, tui/tui-disasm.c: Update.
7256
7257 2013-04-08 Tom Tromey <tromey@redhat.com>
7258
7259 * ada-lang.c (ada_decode_symbol): Check and set 'ada_mangled'.
7260 Use symbol's obstack, not an objfile.
7261 * coffread.c (process_coff_symbol): Update.
7262 * dwarf2read.c (fixup_go_packaging, new_symbol_full): Update.
7263 * jv-lang.c (add_class_symbol): Update.
7264 * mdebugread.c (new_symbol): Update.
7265 * minsyms.c (prim_record_minimal_symbol_full)
7266 (terminate_minimal_symbol_table): Update.
7267 * psymtab.c (add_psymbol_to_bcache): Clear entire symbol. Update.
7268 * stabsread.c (define_symbol, read_enum_type): Update.
7269 * symtab.c (symbol_set_demangled_name, symbol_get_demangled_name):
7270 Handle Ada specially.
7271 (symbol_set_language): Add 'obstack' argument.
7272 (symbol_set_names): Update.
7273 (symbol_natural_name, symbol_demangled_name): Always use
7274 ada_decode_symbol.
7275 * symtab.h (struct general_symbol_info)
7276 <language_specific::obstack>: New field.
7277 <ada_mangled>: New field.
7278 (SYMBOL_SET_LANGUAGE): Add 'obstack' argument.
7279 (symbol_set_language): Update.
7280
7281 2013-04-08 Tom Tromey <tromey@redhat.com>
7282
7283 * symtab.c (symbol_init_cplus_specific, symbol_set_demangled_name):
7284 Take an obstack, not an objfile.
7285 (symbol_set_names): Update.
7286 * symtab.h (symbol_set_demangled_name): Update.
7287
7288 2013-04-08 Tom Tromey <tromey@redhat.com>
7289
7290 * coffread.c (process_coff_symbol, coff_read_enum_type): Call
7291 allocate_symbol.
7292 * dwarf2read.c (fixup_go_packaging): Call allocate_symbol.
7293 (read_func_scope): Call allocate_template_symbol.
7294 (new_symbol_full): Call allocate_symbol.
7295 * jit.c (finalize_symtab): Call allocate_symbol.
7296 * jv-lang.c (add_class_symbol): Call allocate_symbol.
7297 * mdebugread.c (parse_symbol, new_block): Call allocate_symbol.
7298 * stabsread.c (patch_block_stabs, define_symbol, read_enum_type)
7299 (common_block_end): Call allocate_symbol.
7300 * symtab.c (allocate_symbol, initialize_symbol)
7301 (allocate_template_symbol): New functions.
7302 * symtab.c (allocate_symbol, initialize_symbol)
7303 (allocate_template_symbol): Declare.
7304 * xcoffread.c (process_xcoff_symbol): Call initialize_symbol.
7305
7306 2013-04-08 Pedro Alves <palves@redhat.com>
7307 Keith Seitz <keiths@redhat.com>
7308
7309 * breakpoint.c (create_breakpoint): Rename
7310 "parse_condition_and_thread" parameter to "parse_arg". Update
7311 describing comment. If !PARSE_ARG, then error out if ARG is not
7312 the empty string after extracting the location.
7313 * breakpoint.h (create_breakpoint): Rename
7314 "parse_condition_and_thread" parameter to "parse_arg".
7315
7316 2013-04-08 Aleksandar Ristovski <aristovski@qnx.com
7317
7318 * solib-svr4.c (lm_addr_check): Add const qualifier to 'so' arg.
7319
7320 2013-04-07 Yao Qi <yao@codesourcery.com>
7321
7322 * remote.c (remote_trace_find): Change type of parameters 'addr1'
7323 and 'addr2' to CORE_ADDR.
7324 * target.c (update_current_target): Update.
7325 * target.h (struct target_ops) <to_trace_find>: Change parameter
7326 type to CORE_ADDR.
7327 * tracepoint.c (tfind_1): Change type of parameters 'addr1' and
7328 'addr2' to CORE_ADDR.
7329 (tfile_trace_find): Likewise.
7330 (tfile_get_traceframe_address): Change return type to CORE_ADDR.
7331 Change local variable 'addr' to type CORE_ADDR.
7332 * tracepoint.h (tfind_1): Update declaration.
7333
7334 2013-04-06 Eli Zaretskii <eliz@gnu.org>
7335
7336 * windows-nat.c (windows_get_absolute_argv0): Move from here...
7337 * mingw-hdep.c (windows_get_absolute_argv0): ...to here.
7338 Include main.h.
7339
7340 * windows-nat.h (windows_get_absolute_argv0): Move prototype from
7341 here...
7342 * main.h (windows_get_absolute_argv0): ...to here.
7343
7344 2013-04-05 Doug Evans <dje@google.com>
7345
7346 * dwarf2read.c (struct dwarf2_per_objfile): Tweak comment.
7347 (read_cutu_die_from_dwo): Add comments.
7348 (read_structure_type): Update comment.
7349 (read_enumeration_type, read_namespace_type): Update comment.
7350 (read_die_type, get_die_type_at_offset, get_die_type): Update comment.
7351
7352 2013-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
7353
7354 Convert man pages to texinfo, new gdbinit.5 texinfo page.
7355 * Makefile.in (gdb.z): Remove.
7356 (install-only): Remove $(man1dir) and gdb.1 installation.
7357 * gdb.1: Remove.
7358
7359 2013-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
7360
7361 Fix compatibility with Linux kernel 3.8.3.
7362 * linux-tdep.c (linux_find_memory_regions_full): Move variable number
7363 to more inner block. Remove parsing of NUMBER from outer block.
7364 Parse NUMBER only if KEYWORD has been identified.
7365
7366 2013-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
7367
7368 Fix variable name shadowing.
7369 * linux-tdep.c (linux_find_memory_regions_full): Rename outer variable
7370 filename to mapsfilename and update its uses.
7371
7372 2013-04-05 Eli Zaretskii <eliz@gnu.org>
7373
7374 * Makefile.in (TAGS): Avoid warning from etags when $GDB_NM_FILE is
7375 empty. See http://sourceware.org/ml/gdb-patches/2012-08/msg00504.html
7376 and http://sourceware.org/ml/gdb-patches/2013-04/msg00055.html for
7377 details of the problem.
7378
7379 2013-04-04 Pedro Alves <palves@redhat.com>
7380 Hui Zhu <hui@codesourcery.com>
7381
7382 * breakpoint.c (validate_commands_for_breakpoint): If validating a
7383 tracepoint, reset its STEP_COUNT and call validate_actionline.
7384
7385 2013-04-03 Doug Evans <dje@google.com>
7386
7387 * dwarf2read.c (read_die_and_siblings_1): Renamed from
7388 read_die_and_siblings.
7389 (read_die_and_siblings): New function.
7390 (read_cutu_die_from_dwo): Dump die if requested.
7391 (read_die_and_children): Call read_full_die_1 and
7392 read_die_and_siblings_1.
7393 (read_full_die): Dump die if requested.
7394
7395 * dwarf2read.c (read_comp_units_from_section): Add debugging printf.
7396
7397 * dwarf2read.c (struct dwo_file): New member comp_dir.
7398 Rename member name to dwo_name. All uses updated.
7399 (hash_dwo_file): Include comp_dir in computation.
7400 (eq_dwo_file): Ditto.
7401 (lookup_dwo_file_slot): New arg comp_dir. All callers updated.
7402 (create_dwo_in_dwp, lookup_dwo_in_dwp, open_and_init_dwo_file): Ditto.
7403
7404 * psymtab.c (read_psymtabs_with_fullname): Don't call
7405 psymtab_to_fullname if the basenames are different.
7406
7407 2013-04-03 Jan Kratochvil <jan.kratochvil@redhat.com>
7408
7409 * NEWS (Changes in GDB 7.6): Update the data-disassemble for "fullname".
7410 New entry about "fullname" presence.
7411
7412 2013-04-03 Pedro Alves <palves@redhat.com>
7413
7414 * NEWS: Mention x86_64/Cygwin as new native configuration.
7415
7416 2013-04-02 Doug Evans <dje@google.com>
7417
7418 * dwarf2read.c (read_structure_type): Fix typo in comment.
7419
7420 2013-04-02 Pedro Alves <palves@redhat.com>
7421
7422 * NEWS: Mention "set/show debug aarch64", "set/show debug
7423 coff-pe-read" and "set/show debug mach-o".
7424
7425 2013-04-02 Pedro Alves <palves@redhat.com>
7426
7427 * NEWS: Mention "set/show remote trace-buffer-size-packet".
7428
7429 2013-04-02 Eli Zaretskii <eliz@gnu.org>
7430
7431 * Makefile.in (HFILES_NO_SRCDIR): Remove call-cmds.h.
7432 gdb_string.h is now in common/.
7433
7434 2013-04-02 Pedro Alves <palves@redhat.com>
7435
7436 * NEWS: Move "set debug notification" and "set trace-buffer-size"
7437 under "New options".
7438
7439 2013-04-02 Jan Kratochvil <jan.kratochvil@redhat.com>
7440
7441 Revert this patch:
7442 PR gdb/15275
7443 * remote.c (remote_get_trace_status): Include putpkt in TRY_CATCH.
7444
7445 2013-04-02 Pedro Alves <palves@redhat.com>
7446
7447 PR gdb/15275
7448
7449 * remote.c (send_interrupt_sequence): Use remote_serial_write.
7450 (remote_serial_write): New function.
7451 (putpkt_binary, getpkt_or_notif_sane_1): Use remote_serial_write.
7452
7453 2013-04-01 Jiong Wang <jiwang@tilera.com>
7454
7455 * NEWS: Mention TILE-Gx in "New native configurations" and
7456 "New targets" sections.
7457
7458 2013-04-01 Doug Evans <dje@google.com>
7459
7460 * dwarf2read.c (lookup_signatured_type_at_offset): Delete.
7461 (process_enumeration_scope): Simplify.
7462
7463 * dwarf2read.c (struct dwarf2_per_cu_data): Move member
7464 type_unit_group ...
7465 (struct signatured_type): ... to here.
7466 (sig_type_ptr): New typedef.
7467 (type_unit_group): Delete member 't.first_cu'. Move member 'tus'
7468 out of union 't'. All uses updated.
7469 (dw2_get_file_names_reader): Assert not called for a type unit.
7470 (dw2_get_file_names): Assert not called for a type unit or type
7471 unit group.
7472 (build_type_psymtabs_reader): Assert called for a type unit.
7473 (build_type_psymtab_dependencies): Assert called for a type unit group.
7474
7475 * dwarf2read.c (free_dwo_file): Add comment.
7476 (dwarf2_per_objfile_free): Unref dwp bfd.
7477
7478 2013-04-01 Aleksandar Ristovski <aristovski@qnx.com>
7479
7480 * coff-pe-read.c (add_pe_exported_sym): Remove unused 'dll_name_len'.
7481 (add_pe_forwarded_sym): Remove unused 'section', 'dll_name_len'.
7482 (read_pe_exported_syms): Remove unused 'exportix'.
7483 (pe_text_section_offset): Remove unused 'opthdr_ofs', 'num_entries',
7484 'export_rva', 'export_size', 'expptr', 'exp_funcbase', 'expdata',
7485 'erva', 'name_rvas', 'ordinals', 'nexp', 'ordbase', 'dll_name'.
7486
7487 2013-04-01 Aleksandar Ristovski <aristovski@qnx.com>
7488
7489 * breakpoint.c (parse_cond_to_aexpr): Remove unused 'old_chain'.
7490 (print_it_watchpoint): Remove unused 'bl'.
7491 (say_where): Remove unused 'uiout'.
7492 (bpstat_remove_breakpoint_callback): Remove unused 'uiout'.
7493 (bkpt_breakpoint_hit): Remove unused 'b'.
7494 (internal_bkpt_print_it): Remove unused 'uiout'.
7495 * buildsym.c (augment_type_symtab): Remove unused 'i'.
7496
7497 2013-03-31 Tiago Stürmer Daitx <tdaitx@linux.vnet.ibm.com>
7498
7499 * ppc-sysv-tdep.c (ppc64_sysv_abi_push_float): New function.
7500 (ppc64_sysv_abi_push_dummy_call): Handle complex arguments.
7501
7502 2013-03-29 Doug Evans <dje@google.com>
7503
7504 * dwarf2read.c (open_dwo_file): Renamed from open_dwop_file.
7505 Delete arg is_dwp. All callers updated.
7506 (open_dwp_file): New function.
7507 (open_and_init_dwp_file): Call it.
7508 (get_dwp_file): New function.
7509 (lookup_dwo_cutu): Call it.
7510
7511 * dwarf2read.c (open_and_init_dwp_file): Remove incorrect, and
7512 unnecessary, cleanup.
7513
7514 * dwarf2read.c (lookup_dwo_cutu): Improve complaint text.
7515
7516 * dwarf2read.c (read_cutu_die_from_dwo): New function.
7517 (lookup_dwo_unit): New function.
7518 (init_cutu_and_read_dies): Move DWO handling to new functions.
7519
7520 * dwarf2read.c (struct signatured_type): Tweak comment.
7521 (struct dwo_unit): Tweak comment.
7522 (create_debug_types_hash_table): Tweak comment. Reformat long line.
7523 (create_dwo_debug_info_hash_table): Tweak comment.
7524 (dwarf2_per_cu_offset_and_type): Tweak comment.
7525
7526 * dwarf2read.c (lookup_signatured_type): Remove complaint about
7527 missing .debug_types section.
7528
7529 2013-03-29 Yao Qi <yao@codesourcery.com>
7530
7531 * corelow.c: Include "completer.h".
7532 (_initialize_corelow): Call add_target_with_completer with
7533 argument 'filename_completer'.
7534 * tracepoint.c: Likewise.
7535 * exec.c (_initialize_exec): Likewise.
7536 * target.c (add_target): Rename to ...
7537 (add_target_with_completer): ... this. Call set_cmd_completer
7538 if parameter completer is not NULL.
7539 (add_target): New.
7540 * target.h: Include "command.h".
7541 (add_target_with_completer): Declare it.
7542
7543 2013-03-28 Joel Brobecker <brobecker@adacore.com>
7544
7545 * coffread.c (is_import_fixup_symbol): New function.
7546 (record_minimal_symbol): Use is_import_fixup_symbol to
7547 detect import fixup symbols, and discard them.
7548
7549 2013-03-28 Doug Evans <dje@google.com>
7550
7551 * dwarf2read.c (create_debug_types_hash_table): Don't allocate the
7552 types hash table until we know we need it.
7553
7554 * dwarf2read.c (create_addrmap_from_index): Complain about bad CU
7555 index numbers.
7556
7557 * dwarf2read.c (dw2_get_file_names): Delete arg "objfile".
7558 All callers updated.
7559 (dw2_print_stats): Print #read CUs too.
7560 (dump_die_shallow): Print signatured types better.
7561
7562 * dwarf2read.c (struct dwarf2_per_cu_data): Rename member
7563 info_or_types_section to section. All uses updated.
7564 (struct dwo_unit): Ditto.
7565
7566 2013-03-28 Pedro Alves <palves@redhat.com>
7567
7568 * NEWS (New options): New section.
7569 (New options): Mention set/show remote trace-status-packet.
7570 * remote.c (PACKET_qTStatus): New enumeration value.
7571 (remote_get_trace_status): Skip sending qTStatus if the packet is
7572 disabled. Use packet_ok.
7573 (_initialize_remote): Register a configuration command for
7574 qTStatus packet.
7575
7576 2013-03-28 Doug Evans <dje@google.com>
7577
7578 * symfile.c (find_separate_debug_file): Add comment.
7579 (terminate_after_last_dir_separator): Tweak comment.
7580
7581 * dwarf2read.c (create_partial_symtab): Add forward decl.
7582 (create_partial_symtab): Move to be closer to other psymtab functions.
7583 (process_psymtab_comp_unit_reader, process_psymtab_comp_unit): Ditto.
7584
7585 * dwarf2read.c (dwarf2_physname): Move declaration to better spot.
7586 (compute_symtab_includes): Remove unnecessary forward declaration.
7587 (die_needs_namespace): Add comment marking group of functions for
7588 dwarf2 name computation.
7589
7590 * typeprint.c (_initialize_typeprint): Improve type help text.
7591
7592 * python/python.c (finish_python_initialization): Provide suggestion
7593 for how to tell gdb to find its python files.
7594
7595 2013-03-28 Pedro Alves <palves@redhat.com>
7596
7597 PR gdb/15294
7598
7599 * source.c (_initialize_source): Change back "set listsize" to an
7600 integer command.
7601
7602 2013-03-27 Gareth McMullin <gareth@blacksphere.co.nz>
7603
7604 PR gdb/15275
7605 * remote.c (remote_get_trace_status): Include putpkt in TRY_CATCH.
7606
7607 2013-03-27 Pedro Alves <palves@redhat.com>
7608
7609 * top.c (history_size): Rename to ...
7610 (history_size_setshow_var): ... this. Add comment.
7611 (show_commands): Use readline's 'history_length' instead of
7612 computing the history length by calling history_get in a loop.
7613 (set_history_size_command): Error out for sizes over INT_MAX.
7614 Restore previous history size on invalid size.
7615 (init_history): If HISTSIZE is negative, leave the history size as
7616 zero. Add comments.
7617 (init_main): Adjust.
7618
7619 2013-03-27 Pedro Alves <palves@redhat.com>
7620
7621 * coff-pe-read.c (_initialize_coff_pe_read): Rename "set debug
7622 coff_pe_read" command to "set debug coff-pe-read".
7623
7624 2013-03-27 Markus Metzger <markus.t.metzger@intel.com>
7625
7626 * record.c (command_size_to_target_size): Fix size comparison.
7627 Change parameter type from pointer to integer to integer.
7628 Update all users.
7629
7630 2013-03-27 Pierre Muller <muller@sourceware.org>
7631
7632 * windows-nat.c (handle_output_debug_string): Avoid typecast
7633 from integer of different size warning.
7634
7635 2013-03-26 Joel Brobecker <brobecker@adacore.com>
7636
7637 * windows-nat.c (handle_output_debug_string): Add empty line
7638 after local block variable definition.
7639
7640 2013-03-26 Pedro Alves <palves@redhat.com>
7641
7642 * ser-tcp.c (wait_for_connect): Make 'polls' parameter unsigned.
7643 (net_open): Make 'polls' local unsigned.
7644
7645 2013-03-26 Pedro Alves <palves@redhat.com>
7646
7647 * remote.c (_initialize_remote): Make "set remoteaddresssize"
7648 a zuinteger command instead of uinteger.
7649
7650 2013-03-26 Pedro Alves <palves@redhat.com>
7651
7652 * record-full.c (record_full_insn_num): Make it unsigned.
7653 (record_full_check_insn_num, record_full_message)
7654 (record_full_registers_change, record_full_xfer_partial): Remove
7655 record_full_insn_max_num check (it's always != 0).
7656 (record_full_info, record_full_restore): Use %u as format string.
7657 (): Use %u as format string.
7658 (set_record_full_insn_max_num): Remove record_full_insn_max_num
7659 check (it's always != 0).
7660
7661 2013-03-26 Pedro Alves <palves@redhat.com>
7662
7663 * dcache.c (_initialize_dcache): Make the "set dcache line-size"
7664 and "set dcache size" commands zuinteger instead of uinteger.
7665
7666 2013-03-26 Pedro Alves <palves@redhat.com>
7667
7668 * cris-tdep.c (_initialize_cris_tdep): Make the "set cris-version"
7669 command zuinteger instead of uinteger.
7670
7671 2013-03-26 Pedro Alves <palves@redhat.com>
7672
7673 * coff-pe-read.c (_initialize_coff_pe_read): Make the command
7674 zuinteger instead of uinteger.
7675
7676 2013-03-26 Pedro Alves <palves@redhat.com>
7677
7678 * record.c (record_insn_history_size_setshow_var)
7679 (record_call_history_size_setshow_var): New globals.
7680 (command_size_to_target_size): New function.
7681 (cmd_record_insn_history, cmd_record_call_history): Use
7682 command_size_to_target_size instead of cast.
7683 (validate_history_size, set_record_insn_history_size)
7684 (set_record_call_history_size): New functions.
7685 (_initialize_record): Install set_record_insn_history_size and
7686 set_record_call_history_size as "set" hooks of "set record
7687 instruction-history-size" and "set record
7688 function-call-history-size".
7689
7690 2013-03-26 Pedro Alves <palves@redhat.com>
7691
7692 * top.c (gdb_rl_operate_and_get_next): Replace max_input_history
7693 use with history_max_entries use. Remove FIXME note.
7694
7695 2013-03-26 Markus Metzger <markus.t.metzger@intel.com>
7696
7697 * record-btrace.c (record_btrace_close): Call
7698 record_btrace_auto_disable.
7699
7700 2013-03-25 Joel Brobecker <brobecker@adacore.com>
7701
7702 * rs6000-nat.c (fixup_breakpoints): Delete declaration.
7703
7704 2013-03-25 Doug Evans <dje@google.com>
7705
7706 * contrib/cc-with-tweaks.sh: Check exit code of dwp.
7707
7708 2013-03-25 Tom Tromey <tromey@redhat.com>
7709
7710 PR symtab/11462:
7711 * c-exp.y (exp): Add new productions for destructors after '.' and
7712 '->'.
7713 (write_destructor_name): New function.
7714
7715 2013-03-25 Tom Tromey <tromey@redhat.com>
7716
7717 PR c++/9197:
7718 * opencl-lang.c (evaluate_subexp_opencl) <STRUCTOP_STRUCT>: Use
7719 value_struct_elt, not lookup_struct_elt_type.
7720 * eval.c (evaluate_subexp_standard) <STRUCTOP_STRUCT,
7721 STRUCTOP_PTR>: Use value_struct_elt, not lookup_struct_elt_type.
7722 * expression.h (EVAL_AVOID_SIDE_EFFECTS): Update comment.
7723
7724 2013-03-25 Yao Qi <yao@codesourcery.com>
7725
7726 * ctf.c [USE_WIN32API]: Undef 'mkdir' and use 'mkdir'
7727 instead of '_mkdir'.
7728
7729 2013-03-23 Eli Zaretskii <eliz@gnu.org>
7730
7731 * windows-nat.c (windows_get_absolute_argv0): New function.
7732 * windows-nat.h: Add its prototype.
7733
7734 * main.c (get_init_files): Use filename_ncmp instead of strncmp.
7735 Use IS_DIR_SEPARATOR instead of looking for a character inside
7736 SLASH_STRING. Include filenames.h.
7737 (captured_main) [__MINGW32__]: Make argv[0] absolute, so that
7738 relocate_gdb_directory works when passed gdb_program_name.
7739 Include windows-nat.h.
7740
7741 2013-03-22 Jan Kratochvil <jan.kratochvil@redhat.com>
7742
7743 * exceptions.h (enum errors): New entry TARGET_CLOSE_ERROR.
7744 * remote.c (trace_error): Remove the special handling of '2'.
7745 (readchar) <SERIAL_EOF>
7746 (readchar) <SERIAL_ERROR>
7747 (getpkt_or_notif_sane_1): Use TARGET_CLOSE_ERROR for them.
7748 (remote_get_trace_status): Call throw_exception if EX is
7749 TARGET_CLOSE_ERROR.
7750 * utils.c (perror_with_name): Rename to ...
7751 (throw_perror_with_name): ... here. New parameter errcode, describe it
7752 in the function comment.
7753 (perror_with_name): New function wrapper.
7754 * utils.h (enum errors): New stub declaration.
7755 (throw_perror_with_name): New declaration.
7756
7757 2013-03-22 Pedro Alves <palves@redhat.com>
7758 Yao Qi <yao@codesourcery.com>
7759 Mark Kettenis <kettenis@gnu.org>
7760
7761 * cli/cli-setshow.c (do_set_command) <var_uinteger>:
7762 Don't let the user set the value to UINT_MAX directly.
7763 <var_integer>: Don't let the user set the value to INT_MAX
7764 directly.
7765
7766 2013-03-22 Jan Kratochvil <jan.kratochvil@redhat.com>
7767
7768 * remote.c (remote_unpush_target): New function.
7769 (remote_open_1): Remove two pop_target calls, update one comment, add
7770 comment to target_preopen call. Replace pop_target call by
7771 remote_unpush_target call.
7772 (interrupt_query, readchar, getpkt_or_notif_sane_1): Replace
7773 pop_target calls by remote_unpush_target calls.
7774
7775 2013-03-22 Pedro Alves <palves@redhat.com>
7776
7777 * linux-nat.c (linux_child_follow_fork): Don't call
7778 linux_enable_event_reporting.
7779 (linux_handle_extended_wait): Don't call
7780 linux_enable_event_reporting.
7781
7782 2013-03-22 Pedro Alves <palves@redhat.com>
7783
7784 * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code): Define INSN macro,
7785 use it to rewrite the trampoline buffers with type gdb_byte[], and
7786 undefine the macro. Remove char* cast.
7787
7788 2013-03-21 Doug Evans <dje@google.com>
7789
7790 New commands "mt set per-command {space,time,symtab} {on,off}".
7791 * NEWS: Add entry.
7792 * event-top.c: #include "maint.h".
7793 * main.c: #include "maint.h".
7794 * maint.c: #include <sys/time.h>, <time.h>, block.h, top.h,
7795 timeval-utils.h, maint.h, cli/cli-setshow.h.
7796 (per_command_time, per_command_space): New static globals.
7797 (per_command_symtab): New static global.
7798 (per_command_setlist, per_command_showlist): New static globals.
7799 (struct cmd_stats): Move here from utils.c.
7800 (set_per_command_time): Renamed from set_display_time in utils.c
7801 and moved here. All callers updated.
7802 (set_per_command_space): Renamed from set_display_space in utils.c
7803 and moved here. All callers updated.
7804 (count_symtabs_and_blocks): New function.
7805 (report_command_stats): Moved here from utils.c. Add support for
7806 printing symtab stats. Only print data if enabled before command
7807 executed.
7808 (make_command_stats_cleanup): Ditto.
7809 (sert_per_command_cmd, show_per_command_cmd): New functions.
7810 (_initialize_maint_cmds): Add new commands
7811 mt set per-command {space,time,symtab} {on,off}.
7812 * maint.h: New file.
7813 * top.c: #include "maint.h".
7814 * utils.c (reset_prompt_for_continue_wait_time): New function.
7815 (get_prompt_for_continue_wait_time): New function.
7816 * utils.h (reset_prompt_for_continue_wait_time): Declare
7817 (get_prompt_for_continue_wait_time): Declare.
7818 (make_command_stats_cleanup): Moved to maint.h.
7819 (set_display_time, set_display_space): Moved to maint.h and renamed
7820 to set_per_command_time, set_per_command_space.
7821 * cli/cli-setshow.c (parse_cli_boolean_value): Renamed from
7822 parse_binary_operation and made non-static. Don't call error,
7823 just return an error marker. All callers updated.
7824 * cli/cli-setshow.h (parse_cli_boolean_value): Declare.
7825
7826 2013-03-21 Tom Tromey <tromey@redhat.com>
7827
7828 * symfile.c (alloc_section_addr_info): Update header. Don't set
7829 'num_sections' field.
7830 (build_section_addr_info_from_section_table): Set 'num_sections'.
7831 (build_section_addr_info_from_bfd): Likewise.
7832 (build_section_addr_info_from_objfile): Remove dead loop
7833 condition.
7834 (free_section_addr_info): Unconditionally call xfree.
7835 (relative_addr_info_to_section_offsets, addrs_section_sort)
7836 (addr_info_make_relative, syms_from_objfile_1): Remove dead loop
7837 condition.
7838 (syms_from_objfile_1): Remove dead 'if' condition. Check
7839 'num_sections'.
7840 (add_symbol_file_command): Set 'num_sections'.
7841 * symfile-mem.c (symbol_file_add_from_memory): Set
7842 'num_sections'.
7843 * somread.c (som_symfile_offsets): Remove dead loop condition.
7844 * machoread.c (macho_symfile_offsets): Remove dead 'if'.
7845 * jit.c (jit_bfd_try_read_symtab): Set 'num_sections'.
7846
7847 2013-03-21 Tom Tromey <tromey@redhat.com>
7848
7849 * tracepoint.h (decode_agent_options): Add 'trace_string'
7850 argument.
7851 * tracepoint.c (decode_agent_options): Add 'trace_string'
7852 argument.
7853 (validate_actionline): Update.
7854 (collect_symbol): Add 'trace_string' argument.
7855 (struct add_local_symbols_data) <trace_string>: New field.
7856 (do_collect_symbol): Update.
7857 (add_local_symbols): Add 'trace_string' argument.
7858 (encode_actions_1): Update.
7859 (trace_dump_actions): Update.
7860 * dwarf2loc.c (access_memory): Update.
7861 * ax.h (struct agent_expr) <tracing, trace_string>: New fields.
7862 * ax-general.c (new_agent_expr): Update.
7863 * ax-gdb.h (gen_trace_for_expr, gen_trace_for_var)
7864 (gen_trace_for_return_address): Add argument.
7865 (trace_kludge, trace_string_kludge): Remove.
7866 * ax-gdb.c (trace_kludge, trace_string_kludge): Remove.
7867 (gen_traced_pop, gen_fetch, gen_bitfield_ref, gen_expr): Update.
7868 (gen_trace_for_var): Add 'trace_string' argument.
7869 (gen_trace_for_expr, gen_trace_for_return_address): Likewise.
7870 (gen_printf, agent_eval_command_one): Update.
7871
7872 2013-03-21 Tom Tromey <tromey@redhat.com>
7873
7874 PR exp/15109:
7875 * c-exp.y (yylex): Rewrite to push all tokens onto the FIFO.
7876 Handle FILENAME token.
7877
7878 2013-03-21 Tom Tromey <tromey@redhat.com>
7879
7880 * c-exp.y (YYPRINT): Define.
7881 (c_print_token): New function.
7882
7883 2013-03-21 Tom Tromey <tromey@redhat.com>
7884
7885 * c-exp.y (%union) <sym, ivar, ivec>: Remove.
7886
7887 2013-03-21 Yao Qi <yao@codesourcery.com>
7888
7889 * ctf.c: Include "gdb_stat.h".
7890 [USE_WIN32API]: New macro 'mkdir'.
7891 (ctf_start): Use permission bits macros if they are defined.
7892
7893 2013-03-20 Keith Seitz <keiths@redhat.com>
7894
7895 * breakpoint.h (struct breakpoint): Add comment to
7896 extra_string indicating that this member is mallod'd.
7897 * breakpoint.c (base_breakpoint_dtor): Free extra_string.
7898
7899 2013-03-20 Pedro Alves <palves@redhat.com>
7900
7901 PR gdb/15289
7902
7903 * cli/cli-setshow.c (do_set_command)
7904 <var_uinteger, var_zuinteger>: Use LONGEST for variable holding
7905 the result of parsing the command argument. Throw error if the
7906 value is greater than UINT_MAX. Print the invalid value with
7907 plongest.
7908 <var_integer, var_zinteger>: Use LONGEST for variable holding the
7909 result of parsing the command argument. Throw error if the value
7910 is greater than INT_MAX, not greater or equal. Also throw error
7911 if the value is less than INT_MIN. Print the invalid value with
7912 plongest.
7913 <var_zuinteger_unlimited>: Throw error if the value is greater
7914 than INT_MAX, not greater or equal.
7915 (do_show_command) <var_integer, var_zinteger,
7916 var_zuinteger_unlimited>: Use %d for printing int, not %u.
7917
7918 2013-03-20 Tom Tromey <tromey@redhat.com>
7919
7920 * ax-gdb.c (gen_var_ref): Unconditionally call via computed ops,
7921 if possible.
7922 * dwarf2read.c (read_func_scope): Remove old FIXME.
7923 * eval.c (evaluate_subexp_standard): Check SYMBOL_COMPUTED_OPS,
7924 not LOC_COMPUTED.
7925 * findvar.c (symbol_read_needs_frame, default_read_var_value):
7926 Unconditionally call via computed ops, if possible.
7927 * printcmd.c (address_info): Unconditionally call via computed ops,
7928 if possible.
7929 * stack.c (read_frame_arg): Unconditionally call via computed ops,
7930 if possible.
7931 * symtab.c (register_symbol_computed_impl): Sanity check 'ops'.
7932 * tracepoint.c (scope_info): Unconditionally call via computed ops,
7933 if possible.
7934
7935 2013-03-20 Jan Kratochvil <jan.kratochvil@redhat.com>
7936 Tom Tromey <tromey@redhat.com>
7937
7938 PR symtab/8421:
7939 * coffread.c (coff_register_index): New global.
7940 (process_coff_symbol, coff_read_enum_type): Set
7941 SYMBOL_ACLASS_INDEX.
7942 (_initialize_coffread): Initialize new global.
7943 * dwarf2loc.c (locexpr_find_frame_base_location)
7944 (dwarf2_block_frame_base_locexpr_funcs)
7945 (loclist_find_frame_base_location)
7946 (dwarf2_block_frame_base_loclist_funcs): New.
7947 (dwarf_expr_frame_base_1): Call SYMBOL_BLOCK_OPS, remove internal_error.
7948 (dwarf2_locexpr_funcs, dwarf2_loclist_funcs): Add location_has_loclist.
7949 * dwarf2loc.h (dwarf2_block_frame_base_locexpr_funcs)
7950 (dwarf2_block_frame_base_loclist_funcs): New.
7951 * dwarf2read.c (dwarf2_locexpr_index, dwarf2_loclist_index)
7952 (dwarf2_locexpr_block_index, dwarf2_loclist_block_index): New
7953 globals.
7954 (read_func_scope): Update.
7955 (fixup_go_packaging, mark_common_block_symbol_computed)
7956 (var_decode_location, new_symbol_full, dwarf2_const_value):
7957 Set SYMBOL_ACLASS_INDEX.
7958 (dwarf2_symbol_mark_computed): Likewise. Add 'is_block' argument.
7959 (_initialize_dwarf2_read): Initialize new globals.
7960 * jit.c (finalize_symtab): Set SYMBOL_ACLASS_INDEX.
7961 * jv-lang.c (add_class_symbol): Set SYMBOL_ACLASS_INDEX.
7962 * mdebugread.c (mdebug_register_index, mdebug_regparm_index): New
7963 globals.
7964 (parse_symbol, psymtab_to_symtab_1): Set SYMBOL_ACLASS_INDEX.
7965 (_initialize_mdebugread): Initialize new globals.
7966 * psympriv.h (struct partial_symbol) <aclass>: Update comment.
7967 * stabsread.c (patch_block_stabs): Set SYMBOL_ACLASS_INDEX.
7968 (stab_register_index, stab_regparm_index): New globals.
7969 (define_symbol, read_enum_type, common_block_end): Set
7970 SYMBOL_ACLASS_INDEX.
7971 (_initialize_stabsread): Initialize new globals.
7972 * symtab.c (next_aclass_value, symbol_impl, symbol_impls): New
7973 globals.
7974 (MAX_SYMBOL_IMPLS): New define.
7975 (register_symbol_computed_impl, register_symbol_block_impl)
7976 (register_symbol_register_impl)
7977 (initialize_ordinary_address_classes): New functions.
7978 (_initialize_symtab): Call initialize_ordinary_address_classes.
7979 * symtab.h (enum address_class) <LOC_FINAL_VALUE>: New constant.
7980 (struct symbol_impl): New.
7981 (SYMBOL_ACLASS_BITS): New define.
7982 (struct symbol) <aclass, ops>: Remove fields.
7983 <aclass_index>: New field.
7984 (symbol_impls): Declare.
7985 (SYMBOL_CLASS, SYMBOL_COMPUTED_OPS, SYMBOL_REGISTER_OPS): Redefine.
7986 (SYMBOL_IMPL, SYMBOL_ACLASS_INDEX): New defines.
7987 (register_symbol_computed_impl, register_symbol_block_impl)
7988 (register_symbol_register_impl): Declare.
7989 (struct symbol_computed_ops): Add location_has_loclist.
7990 (struct symbol_block_ops): New.
7991 (SYMBOL_BLOCK_OPS): New.
7992 * xcoffread.c (process_xcoff_symbol): Set SYMBOL_ACLASS_INDEX.
7993
7994 2013-03-20 Tom Tromey <tromey@redhat.com>
7995
7996 * psymtab.c (find_pc_sect_psymbol, fixup_psymbol_section)
7997 (print_partial_symbols, recursively_search_psymtabs): Use
7998 PSYMBOL_CLASS.
7999
8000 2013-03-20 Pierre Muller <muller@sourceware.org>
8001
8002 * contrib/ari/gdb_ari.sh (OP eol rule): Also check
8003 addtion, subtraction, multiplication and division binary operator.
8004
8005 2013-03-20 Jan Kratochvil <jan.kratochvil@redhat.com>
8006
8007 Code cleanup.
8008 * bfd-target.c (target_bfd_xclose): Remove parameter quitting.
8009 * bsd-kvm.c (bsd_kvm_close): Likewise.
8010 * bsd-uthread.c (bsd_uthread_close): Likewise.
8011 * corelow.c (core_close): Likewise.
8012 (core_close_cleanup): Remove parameter quitting from a caller.
8013 * event-top.c (async_disconnect): Likewise.
8014 * exec.c (exec_close_1): Remove parameter quitting.
8015 * go32-nat.c (go32_close): Likewise.
8016 * linux-nat.c (linux_nat_close): Remove parameter quitting. Remove
8017 parameter quitting from a caller.
8018 * mips-linux-nat.c (super_close): Remove parameter quitting from the
8019 variable.
8020 (mips_linux_close): Remove parameter quitting. Remove parameter
8021 quitting from a caller.
8022 * monitor.c (monitor_close): Remove parameter quitting.
8023 * monitor.h (monitor_close): Likewise.
8024 * record-btrace.c (record_btrace_close): Likewise.
8025 * record-full.c (record_full_close): Likewise.
8026 * remote-m32r-sdi.c (m32r_close): Remove parameter quitting and remove
8027 it also from fprintf_unfiltered.
8028 * remote-mips.c (mips_close): Remove parameter quitting.
8029 (mips_detach): Remove parameter quitting from a caller.
8030 * remote-sim.c (gdbsim_close): Remove parameter quitting.
8031 (gdbsim_close): Remove duplicate function comment. Remove parameter
8032 quitting and remove it also from printf_filtered.
8033 * remote.c (remote_close): Remove parameter quitting.
8034 * solib-svr4.c (enable_break): Remove parameter quitting from a caller.
8035 * target.c (update_current_target): Remove parameter int from to_close
8036 de_fault.
8037 (push_target, unpush_target, pop_target): Remove parameter quitting from
8038 a caller.
8039 (pop_all_targets_above, pop_all_targets): Remove parameter quitting.
8040 Remove parameter quitting from a caller.
8041 (target_preopen): Remove parameter quitting from a caller.
8042 (target_close): Remove parameter quitting. Remove parameter quitting
8043 from a caller two times. Remove parameter quitting also from
8044 fprintf_unfiltered.
8045 * target.h (struct target_ops): Remove parameter quitting and as int
8046 from fields to_xclose and to_close.
8047 (extern struct target_ops current_target):
8048 (target_close, pop_all_targets): Remove parameter quitting. Update the
8049 comment.
8050 (pop_all_targets_above): Remove parameter quitting.
8051 * top.c (quit_target): Remove parameter quitting from a caller.
8052 * tracepoint.c (tfile_close): Remove parameter quitting.
8053 * windows-nat.c (windows_close): Remove parameter quitting.
8054
8055 2013-03-20 Corinna Vinschen <vinschen@redhat.com>
8056
8057 * windows-nat.c (handle_output_debug_string): Replace call
8058 to string_to_core_addr with call to strtoull.
8059
8060 2013-03-20 Yao Qi <yao@codesourcery.com>
8061
8062 * ctf.c (ctf_save_metadata_header): Define macro HOST_ENDIANNESS
8063 and write it to CTF metadata.
8064
8065 2013-03-19 Corinna Vinschen <vinschen@redhat.com>
8066
8067 * windows-nat.c (handle_output_debug_string): Change type of n to
8068 SIZE_T to avoid crash on 64 bit systems.
8069
8070 2013-03-17 Eli Zaretskii <eliz@gnu.org>
8071
8072 * python/python-internal.h (HAVE_SNPRINTF)
8073 [_WIN32 && HAVE_DECL_SNPRINTF]: Define, to avoid compiler warnings
8074 about redefinition of snprintf by pyerrors.h.
8075
8076 2013-03-15 Steve Ellcey <sellcey@mips.com>
8077
8078 * remote-sim.c (sim_command_completer): Make char arguments const.
8079
8080 2013-03-15 Tom Tromey <tromey@redhat.com>
8081
8082 PR c++/15116:
8083 * gdbtypes.c (types_equal): Handle TYPE_CODE_FUNC.
8084
8085 2013-03-14 Tom Tromey <tromey@redhat.com>
8086
8087 * gdb_bfd.c (struct gdb_bfd_data) <crc_computed, crc>:
8088 New fields.
8089 (get_file_crc): Move from symfile.c.
8090 (gdb_bfd_crc): New function.
8091 * gdb_bfd.h (gdb_bfd_crc): Declare.
8092 * objfiles.h (struct objfile) <crc32, crc32_p>: Remove.
8093 * symfile.c (get_file_crc): Move to gdb_bfd.c.
8094 (separate_debug_file_exists): Use gdb_bfd_crc.
8095
8096 2013-03-14 Tom Tromey <tromey@redhat.com>
8097
8098 * symfile.c (get_debug_link_info): Remove.
8099 (find_separate_debug_file_by_debuglink): Use
8100 bfd_get_debug_link_info.
8101
8102 2013-03-14 Tom Tromey <tromey@redhat.com>
8103
8104 * symtab.c (error_in_psymtab_expansion): New function.
8105 (lookup_symbol_aux_quick)
8106 (basic_lookup_transparent_type_quick): Remove "last resort"
8107 code. Use error_in_psymtab_expansion.
8108
8109 2013-03-14 Doug Evans <dje@google.com>
8110 Jan Kratochvil <jan.kratochvil@redhat.com>
8111
8112 * dwarf2read.c (dw2_map_symtabs_matching_filename): Put continue after
8113 any successful compare_filenames_for_search or FILENAME_CMP.
8114 * psymtab.c (partial_map_symtabs_matching_filename): Likewise.
8115 * symtab.c (iterate_over_some_symtabs): Likewise.
8116
8117 2013-03-14 Jan Kratochvil <jan.kratochvil@redhat.com>
8118
8119 * source.c (print_source_lines_base): Make a local copy of
8120 symtab_to_fullname.
8121
8122 2013-03-14 Hui Zhu <hui_zhu@mentor.com>
8123 Jan Kratochvil <jan.kratochvil@redhat.com>
8124
8125 * source.c (print_source_lines_base): Suppress "file" for TUI.
8126
8127 2013-03-14 Keith Seitz <keiths@redhat.com>
8128 Alan Matsuoka <alanm@redhat.com>
8129
8130 PR c++/15203
8131 PR c++/15210
8132 * cp-namespace.c (cp_lookup_nested_symbol): Handle TYPE_CODE_FUNC and
8133 TYPE_CODE_METHOD.
8134 * elfread.c (elf_symtab_read): Handle BSF_GNU_UNIQUE for certain
8135 symbols.
8136
8137 2013-03-14 Yao Qi <yao@codesourcery.com>
8138
8139 * tracepoint.c (tfile_write_status): Write 'stop_desc' of trace
8140 status to tfile if trace is stopped by command 'tstop'.
8141
8142 2013-03-14 Yao Qi <yao@codesourcery.com>
8143
8144 * tracepoint.c (tfile_write_status): Write trace notes and user
8145 name into tfile if they are not NULL.
8146
8147 2013-03-14 Hui Zhu <hui@codesourcery.com>
8148 Yao Qi <yao@codesourcery.com>
8149
8150 * Makefile.in (REMOTE_OBS): Add ctf.o.
8151 (SFILES): Add ctf.c.
8152 (HFILES_NO_SRCDIR): Add ctf.h.
8153 * ctf.c, ctf.h: New files.
8154 * tracepoint.c: Include 'ctf.h'.
8155 (collect_pseudocommand): Remove static.
8156 (trace_save_command): Parse option "-ctf".
8157 Produce different trace file writers per option.
8158 Adjust output message.
8159 (trace_save_tfile, trace_save_ctf): New.
8160 * tracepoint.h (trace_save_tfile, trace_save_ctf): Declare.
8161 * mi/mi-main.c: Include 'ctf.h'.
8162 (mi_cmd_trace_save): Handle option '-ctf'. Call either
8163 trace_save_tfile or trace_save_ctf.
8164 * NEWS: Mention these changes.
8165
8166 2013-03-14 Yao Qi <yao@codesourcery.com>
8167
8168 * tracepoint.c (trace_file_writer_xfree): New.
8169 (struct tfile_writer_data): New.
8170 (tfile_dtor, tfile_can_target_save, tfile_start): New.
8171 (tfile_write_header, tfile_write_regblock_type): New.
8172 (tfile_write_status, tfile_write_uploaded_tsv): New.
8173 (tfile_write_uploaded_tp, tfile_write_definition_end): New.
8174 (tfile_write_raw_data, (tfile_end): New.
8175 (tfile_write_ops): New global variable.
8176 (TRACE_WRITE_R_BLOCK): New macro.
8177 (TRACE_WRITE_M_BLOCK_HEADER): New macro.
8178 (TRACE_WRITE_M_BLOCK_MEMORY): New macro.
8179 (TRACE_WRITE_V_BLOCK): New macro.
8180 (trace_save): Add extra one parameter WRITER. Make it static.
8181 Use WRITER to writer trace.
8182 (tfile_trace_file_writer_new): New.
8183 (trace_save_command): Caller update.
8184 (trace_save_tfile): Write trace data in TFILE format.
8185 * tracepoint.h (struct trace_frame_write_ops): New.
8186 (struct trace_file_write_ops): New.
8187 (struct trace_file_writer): New.
8188 (trace_save): Remove its declaration.
8189 (trace_save_tfile): Declare it.
8190 * mi/mi-main.c (mi_cmd_trace_save): Call trace_save_tfile
8191 instead of trace_save.
8192
8193 2013-03-13 Pedro Alves <palves@redhat.com>
8194
8195 * hppa-hpux-nat.c (hppa_hpux_save_state_offset): Make static.
8196
8197 2013-03-13 Pedro Alves <palves@redhat.com>
8198
8199 * dbxread.c (read_ofile_symtab, process_one_symbol): Remove
8200 commented out code.
8201 * demangle.c (current_demangling_style_string): Make it const.
8202 (set_demangling_command): Assert the demangling style is known.
8203 Remove all handling of unknown styles. Set
8204 'current_demangling_style_string' to an element of the
8205 demangling_style_names array.
8206 (set_demangling_style): Delete.
8207 (_initialize_demangler): Set current_demangling_style_string to the
8208 element of the demangling_style_names array that corresponds to
8209 the default demangling style. Remove FIXME note. Don't call
8210 set_demangling_style.
8211 * gdb-demangle.h (set_demangling_style): Remove declaration.
8212
8213 2013-03-13 Pedro Alves <palves@redhat.com>
8214
8215 * ada-lang.c (struct add_partial_datum) <text, text0, word>: Make
8216 fields const.
8217 (ada_make_symbol_completion_list): Make "text0" parameter const.
8218 * ax-gdb.c (agent_eval_command_one): Make "exp" parameter const.
8219 * breakpoint.c (condition_completer): Make "text" and "word"
8220 parameters const. Adjust.
8221 (check_tracepoint_command): Adjust to validate_actionline
8222 prototype change.
8223 (catch_syscall_completer): Make "text" and "word" parameters
8224 const.
8225 * cli/cli-cmds.c (show_user): Make "comname" local const.
8226 (valid_command_p): Make "command" parameter const.
8227 (alias_command): Make "alias_prefix" and "command_prefix" locals
8228 const.
8229 * cli/cli-decode.c (add_cmd): Make "name" parameter const.
8230 (add_alias_cmd): Make "name" and "oldname" parameters const.
8231 Adjust. No longer make copy of OLDNAME.
8232 (add_prefix_cmd, add_abbrev_prefix_cmd, add_set_or_show_cmd)
8233 (add_setshow_cmd_full, add_setshow_enum_cmd)
8234 (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
8235 (add_setshow_filename_cmd, add_setshow_string_cmd)
8236 (add_setshow_string_noescape_cmd)
8237 (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
8238 (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
8239 (add_setshow_zuinteger_unlimited_cmd, add_setshow_zuinteger_cmd)
8240 (delete_cmd, add_info, add_info_alias, add_com, add_com_alias):
8241 Make "name" parameter const.
8242 (help_cmd): Rename "command" parameter to "arg". New const local
8243 "command".
8244 (find_cmd): Make "command" parameter const.
8245 (lookup_cmd_1): Make "text" parameter pointer to const. Adjust to
8246 deprecated_cmd_warning prototype change.
8247 (undef_cmd_error): Make "cmdtype" parameter const.
8248 (lookup_cmd): Make "line" parameter const.
8249 (deprecated_cmd_warning): Change type of "text" parameter to
8250 pointer to const char, from pointer to pointer to char. Adjust.
8251 (lookup_cmd_composition): Make "text" parameter const.
8252 (complete_on_cmdlist, complete_on_enum): Make "text" and "word"
8253 parameters const.
8254 * cli/cli-decode.h (struct cmd_list_element) <name>: Make field
8255 const.
8256 * cli/cli-script.c (validate_comname): Make "tem" local const.
8257 (define_command): New const local "tem_c". Use it in calls to
8258 lookup_cmd.
8259 (document_command): Make "tem" and "comfull" locals const.
8260 (show_user_1): Make "prefix" and "name" parameters const.
8261 * cli-script.h (show_user_1): Make "prefix" and "name" parameters
8262 const.
8263 * command.h (add_cmd, add_alias_cmd, add_prefix_cmd)
8264 (add_abbrev_prefix_cmd, completer_ftype, lookup_cmd, lookup_cmd_1)
8265 (deprecated_cmd_warning, lookup_cmd_composition, add_com)
8266 (add_com_alias, add_info, add_info_alias, complete_on_cmdlist)
8267 (complete_on_enum, add_setshow_enum_cmd)
8268 (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
8269 (add_setshow_filename_cmd, add_setshow_string_cmd)
8270 (add_setshow_string_noescape_cmd)
8271 (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
8272 (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
8273 (add_setshow_zuinteger_cmd, add_setshow_zuinteger_unlimited_cmd):
8274 Change prototypes, constifying strings.
8275 * completer.c (noop_completer, filename_completer): Make "text"
8276 and "prefix" parameters const.
8277 (location_completer, expression_completer)
8278 (complete_line_internal): Make "text" and "prefix" parameters
8279 const and adjust.
8280 (command_completer, signal_completer): Make "text" and "prefix"
8281 parameters const.
8282 * completer.h (noop_completer, filename_completer)
8283 (expression_completer, location_completer, command_completer)
8284 (signal_completer): Change prototypes.
8285 * corefile.c (complete_set_gnutarget): Make "text" and "word"
8286 parameters const.
8287 * cp-abi.c (cp_abi_completer): Likewise.
8288 * expression.h (parse_expression_for_completion): Change
8289 prototype.
8290 * f-lang.c (f_make_symbol_completion_list): Make "text" and "word"
8291 parameters const.
8292 * infcmd.c (_initialize_infcmd): Make "cmd_name" local const.
8293 * infrun.c (handle_completer): Make "text" and "word" parameters
8294 const.
8295 * interps.c (interpreter_completer): Make "text" and "word"
8296 parameters const.
8297 * language.h (struct language_defn)
8298 <la_make_symbol_completion_list>: Make "text" and "word"
8299 parameters const.
8300 * parse.c (parse_exp_1): Move const hack to parse_exp_in_context.
8301 (parse_exp_in_context): Rename to ...
8302 (parse_exp_in_context_1): ... this.
8303 (parse_exp_in_context): Reimplement, with const hack from
8304 parse_exp_1.
8305 (parse_expression_for_completion): Make "string" parameter const.
8306 * printcmd.c (decode_format): Make "string_ptr" parameter pointer
8307 to pointer to const char. Adjust.
8308 (print_command_1): Make "exp" parameter const.
8309 (output_command): Rename to ...
8310 (output_command_const): ... this. Make "exp" parameter const.
8311 (output_command): Reimplement.
8312 (x_command): Adjust.
8313 (display_command): Rename "exp" parameter to "arg". New "exp"
8314 local, const version of "arg".
8315 * python/py-auto-load.c (gdbpy_initialize_auto_load): Make
8316 "cmd_name" local const.
8317 * python/py-cmd.c (cmdpy_destroyer): Cast const away in xfree
8318 call.
8319 (cmdpy_completer): Make "text" and "word" parameters const.
8320 (gdbpy_parse_command_name): Make "prefix_text2" local const.
8321 * python/py-param.c (add_setshow_generic): Make "tmp_name" local
8322 const.
8323 * remote.c (_initialize_remote): Make "cmd_name" local const.
8324 * symtab.c (language_search_unquoted_string): Make "text" and "p"
8325 parameters const. Adjust.
8326 (completion_list_add_fields): Make "sym_text", "text" and "word"
8327 parameters const.
8328 (struct add_name_data) <sym_text, text, word>: Make fields const.
8329 (default_make_symbol_completion_list_break_on): Make "text" and
8330 "word" parameters const. Adjust locals.
8331 (default_make_symbol_completion_list)
8332 (make_symbol_completion_list, make_symbol_completion_type)
8333 (make_symbol_completion_list_fn): Make "text" and "word"
8334 parameters const.
8335 (make_file_symbol_completion_list): Make "text", "word" and
8336 "srcfile" parameters const. Adjust locals.
8337 (add_filename_to_list): Make "text" and "word" parameters const.
8338 (struct add_partial_filename_data) <text, word>: Make fields
8339 const.
8340 (make_source_files_completion_list): Make "text" and "word"
8341 parameters const.
8342 * symtab.h (default_make_symbol_completion_list_break_on)
8343 (default_make_symbol_completion_list, make_symbol_completion_list)
8344 (make_symbol_completion_type enum type_code)
8345 (make_symbol_completion_list_fn make_file_symbol_completion_list)
8346 (make_source_files_completion_list): Change prototype.
8347 * top.c (execute_command): Adjust to pass pointer to pointer to
8348 const char to lookup_cmd, and to deprecated_cmd_warning prototype
8349 change.
8350 (set_verbose): Make "cmdname" local const.
8351 * tracepoint.c (decode_agent_options): Make "exp" parameter const,
8352 and adjust.
8353 (validate_actionline): Make "line" parameter a pointer to const
8354 char, and adjust.
8355 (encode_actions_1): Make "action_exp" local const, and adjust.
8356 (encode_actions): Adjust.
8357 (replace_comma): Delete.
8358 (trace_dump_actions): Make "action_exp" and "next_comma" locals
8359 const, and adjust. Don't frob the action string while splitting
8360 it at commas. Instead, make a copy of each split substring in
8361 turn.
8362 (trace_dump_command): Adjust to validate_actionline prototype
8363 change.
8364 * tracepoint.h (decode_agent_options, decode_agent_options)
8365 (encode_actions, validate_actionline): Change prototypes.
8366 * valprint.h (output_command): Delete declaration.
8367 (output_command_const): Declare.
8368 * value.c (function_destroyer): Cast const away in xfree call.
8369
8370 2013-03-13 Pedro Alves <palves@redhat.com>
8371
8372 * ada-lang.c (ada_decode_symbol): Cast away constness of GSYMBOL
8373 rather than casting 'const char * const *' to 'const char **'.
8374 * ada-lex.l (processInt): Make "trailer" local const. Remove
8375 'const char **' cast.
8376 * arm-linux-tdep.c (arm_stap_parse_special_token): Add 'char *'
8377 locals, and use those as strtol output pointer, instead than doing
8378 invalid casts to from 'const char **' to 'char **'.
8379 (_initialize_demangle): Remove cast.
8380 * i386-tdep.c (i386_stap_parse_special_token): : Add 'char *'
8381 locals, and use those as strtol output pointer, instead than doing
8382 invalid casts to from 'const char **' to 'char **'.
8383 * solib-dsbt.c (dsbt_get_initial_loadmaps): Remove 'gdb_byte**'
8384 casts.
8385 * stap-probe.c (stap_parse_register_operand)
8386 (stap_parse_single_operand): Likewise.
8387
8388 2013-03-13 Yao Qi <yao@codesourcery.com>
8389
8390 * tracepoint.c (tfile_get_trace_state_variable_value): Look for
8391 the last matched 'V' blcok in trace frame.
8392
8393 2013-03-12 Joel Brobecker <brobecker@adacore.com>
8394
8395 * NEWS: Create a new section for the next release branch.
8396 Rename the section of the current branch, now that it has
8397 been cut.
8398
8399 2013-03-12 Joel Brobecker <brobecker@adacore.com>
8400
8401 GDB 7.6 branch created (branch timestamp: 2013-03-12 22:15 UTC)
8402 * version.in: Bump version to 7.6.50.20130312-cvs.
8403
8404 2013-03-12 Keith Seitz <keiths@redhat.com>
8405
8406 * mi/mi-cmds.h (mi_execute_command): Make "cmd" const.
8407 * mi/mi-interp.c (mi_interpreter_exec): Make "command" const.
8408 Remove temporary copy of input string.
8409 (mi_execute_command_wrapper): Make "cmd" const.
8410 * mi/mi-main.c (mi_execute_command): Make "string_ptr" const.
8411 * mi/mi-parse.c (mi_parse_argv): Make "args" const.
8412 Use const strings.
8413 (mi_parse): Make "cmd" const.
8414 Use const strings.
8415 * mi/mi-parse.h (mi_parse): Make "cmd" const.
8416
8417 2013-03-12 Keith Seitz <keiths@redhat.com>
8418
8419 * ada-lang.c (ada_read_renaming_var_value): Pass const
8420 pointer to expression string to parse_exp_1.
8421 (create_excep_cond_exprs): Likewise.
8422 * ax-gdb.c (agent_eval_command_one): Likewise.
8423 (maint_agent_printf_command): Likewise.
8424 Constify much of the string handling/parsing.
8425 * breakpoint.c (set_breakpoint_condition): Pass const
8426 pointer to expression string to parse_exp_1.
8427 (update_watchpoint): Likewise.
8428 (parse_cmd_to_aexpr): Constify string handling.
8429 Pass const pointer to parse_exp_1.
8430 (init_breakpoint_sal): Pass const pointer to parse_exp_1.
8431 (find_condition_and_thread): Likewise.
8432 Make TOK const.
8433 (watch_command_1): Make "arg" const.
8434 Constify string handling.
8435 Copy the expression string instead of changing the input
8436 string.
8437 (update_breakpoint_location): Pass const pointer to
8438 parse_exp_1.
8439 * eval.c (parse_and_eval_address): Make "exp" const.
8440 (parse_to_comma_and_eval): Make "expp" const.
8441 (parse_and_eval): Make "exp" const.
8442 * expression.h (parse_expression): Make argument const.
8443 (parse_exp_1): Make first argument const.
8444 * findcmd.c (parse_find_args): Treat "args" as const.
8445 * linespec.c (parse_linespec): Pass const pointer to
8446 linespec_expression_to_pc.
8447 (linespec_expression_to_pc): Make "exp_ptr" const.
8448 * parse.c (parse_exp_1): Make "stringptr" const.
8449 Make a copy of the expression to pass to parse_exp_in_context until
8450 this whole interface can be constified.
8451 (parse_expression): Make "string" const.
8452 * printcmd.c (ui_printf): Treat "arg" as const.
8453 Handle const strings.
8454 * tracepoint.c (validate_actionline): Pass const pointer to
8455 all calls to parse_exp_1.
8456 (encode_actions_1): Likewise.
8457 * value.h (parse_to_comma_and_eval): Make argument const.
8458 (parse_and_eval_address): Likewise.
8459 (parse_and_eval): Likewise.
8460 * varobj.c (varobj_create): Pass const pointer to parse_exp_1.
8461 (varobj_set_value): Likewise.
8462 * cli/cli-cmds.c (disassemble_command): Treat "arg" as const and
8463 constify string handling.
8464 Pass const pointers to parse_and_eval_address and
8465 parse_to_comman_and_eval.
8466 * cli/cli-utils.c (skip_to_space): Rename to ...
8467 (skip_to_space_const): ... this. Handle const strings.
8468 * cli/cli-utils.h (skip_to_space): Turn into macro which invokes
8469 skip_to_space_const.
8470 (skip_to_space_const): Declare.
8471 * common/format.c (parse_format_string): Make "arg" const.
8472 Handle const strings.
8473 * common/format.h (parse_format_string): Make "arg" const.
8474 * gdbserver/ax.c (ax_printf): Make "format" const.
8475 * python/python.c (gdbpy_parse_and_eval): Do not make a copy
8476 of the expression string.
8477
8478 2013-03-12 Hui Zhu <hui@codesourcery.com>
8479
8480 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Update error message.
8481
8482 2013-03-12 Yao Qi <yao@codesourcery.com>
8483 Hui Zhu <hui@codesourcery.com>
8484
8485 * dwarf2loc.c (access_memory): Change nbits to nbytes in gdb_assert.
8486 (dwarf2_compile_expr_to_ax): Call access_memory in DW_OP_deref and
8487 DW_OP_deref_size.
8488
8489 2013-03-12 Paul Hilfinger <hilfingr@adacore.com>
8490
8491 * ada-lex.l (rules): Only recognize 'thread' as a
8492 delimiter when followed by numerals, as for c-exp.y.
8493 Use new rewind_to_char function to rewind the input for
8494 expression-delimiting tokens.
8495 (rewind_to_char): New function.
8496
8497 2013-03-11 Pedro Alves <palves@redhat.com>
8498 Jan Kratochvil <jan.kratochvil@redhat.com>
8499
8500 * configure: Regenerate.
8501 * configure.ac (check dynamic export flag): Link python test with
8502 $PYTHON_LIBS.
8503
8504 2013-03-11 Doug Evans <dje@google.com>
8505 Keith Seitz <keiths@redhat.com>
8506
8507 * linespec.c (find_linespec_symbols): Call find_function_symbols
8508 first, and then call lookup_prefix_sym/find_method.
8509
8510 2013-03-11 Pedro Alves <palves@redhat.com>
8511
8512 * charset.c (convert_between_encodings): Don't cast between
8513 different pointer to pointer types. Instead, make the 'inp' local
8514 be of the type iconv expects.
8515 (wchar_iterate): Don't cast between different pointer to pointer
8516 types. Instead, use new pointer local of the type iconv expects.
8517 * target.c (target_read_stralloc, target_fileio_read_stralloc):
8518 Add new local of type char pointer, and use it to get a
8519 char/string view of the byte buffer, instead of casting between
8520 pointer to pointer types.
8521
8522 2013-03-11 Hafiz Abid Qadeer <abidh@codesourcery.com>
8523
8524 * remote.c (remote_set_trace_buffer_size): Move != operator
8525 to the start of next line to fix an ARI warning.
8526
8527 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8528
8529 * NEWS: Add record changes.
8530
8531 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8532
8533 * record-btrace.c (btrace_insn_history): Omit the pc prefix in
8534 the instruction history disassembly.
8535 * disasm.c (dump_insns): Omit the pc prefix, if requested.
8536 * disasm.h (DISASSEMBLY_OMIT_PC): New.
8537
8538 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8539
8540 * Makefile.in (SFILES): Add record-btrace.c
8541 (COMMON_OBS): Add record-btrace.o
8542 * record-btrace.c: New.
8543 * objfiles.c: Include btrace.h.
8544 (free_objfile): call btrace_free_objfile.
8545
8546 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8547
8548 * target.c (target_call_history, target_call_history_from,
8549 target_call_history_range): New.
8550 * target.h (target_ops) <to_call_history, to_call_history_from,
8551 to_call_history_range>: New fields.
8552 (target_call_history, target_call_history_from,
8553 target_call_history_range): New declaration.
8554 * record.c (get_call_history_modifiers, cmd_record_call_history,
8555 record_call_history_size): New.
8556 (_initialize_record): Add the "record function-call-history" command.
8557 Add "set/show record function-call-history-size" commands.
8558 * record.h (record_print_flag): New.
8559
8560 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8561
8562 * target.h (target_ops) <to_insn_history, to_insn_history_from,
8563 to_insn_history_range>: New fields.
8564 (target_insn_history): New.
8565 (target_insn_history_from): New.
8566 (target_insn_history_range): New.
8567 * target.c (target_insn_history): New.
8568 (target_insn_history_from): New.
8569 (target_insn_history_range): New.
8570 * record.c: Include cli/cli-utils.h, disasm.h, ctype.h.
8571 (record_insn_history_size): New.
8572 (get_insn_number): New.
8573 (get_context_size): New.
8574 (no_chunk): New.
8575 (get_insn_history_modifiers): New.
8576 (cmd_record_insn_history): New.
8577 (_initialize_record): Add "set/show record instruction-history-size"
8578 command. Add "record instruction-history" command.
8579
8580 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8581
8582 * record.h (record_disconnect): New.
8583 (record_detach): New.
8584 (record_mourn_inferior): New.
8585 (record_kill): New.
8586 * record-full.c (record_disconnect, record_detach,
8587 record_mourn_inferior, record_kill): Move to...
8588 * record.c: ...here.
8589 (DEBUG): New.
8590 (record_stop): New.
8591 (record_unpush): New.
8592 (cmd_record_stop): Call record_stop. Replace unpush_target
8593 call with record_unpush call.
8594 (record_disconnect, record_detach): Assert that the target
8595 is of record stratum. Call record_unpush, record_stop, and
8596 DEBUG.
8597 (record_mourn_inferior, record_kill): Assert that the target
8598 is of record stratum. Call record_unpush and DEBUG.
8599
8600 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8601
8602 * record-full.h, record-full.c (record_memory_query): Rename
8603 to ...
8604 (record_full_memory_query): ...this. Update all users.
8605 (record_arch_list_add_reg): Rename to ...
8606 (record_full_arch_list_add_reg): ...this. Update all users.
8607 (record_arch_list_add_mem): Rename to ...
8608 (record_full_arch_list_add_mem): ...this. Update all users.
8609 (record_arch_list_add_end): Rename to ...
8610 (record_full_arch_list_add_end): ...this. Update all users.
8611 (record_gdb_operation_disable_set): Rename to ...
8612 (record_full_gdb_operation_disable_set): ...this.
8613 Update all users.
8614
8615 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8616
8617 * record-full.c (DEFAULT_RECORD_INSN_MAX_NUM): Renamed to ...
8618 (DEFAULT_RECORD_FULL_INSN_MAX_NUM): ... this. Updated all users.
8619 (RECORD_IS_REPLAY): Renamed to ...
8620 (RECORD_FULL_IS_REPLAY): ... this. Updated all users.
8621 (RECORD_FILE_MAGIC): Renamed to ...
8622 (RECORD_FULL_FILE_MAGIC): ... this. Updated all users.
8623 (record_mem_entry): Renamed to ...
8624 (record_full_mem_entry): ... this. Updated all users.
8625 (record_reg_entry): Renamed to ...
8626 (record_full_reg_entry): ... this. Updated all users.
8627 (record_end_entry): Renamed to ...
8628 (record_full_end_entry): ... this. Updated all users.
8629 (record_type) <record_end, record_reg, record_mem>: Renamed
8630 to ...
8631 (record_full_type) <record_full_end, record_full_reg,
8632 record_full_mem>: ... this. Updated all users.
8633 (record_entry): Renamed to ...
8634 (record_full_entry): ... this. Updated all users.
8635 (record_core_buf_entry): Renamed to ...
8636 (record_full_core_buf_entry): ... this. Updated all users.
8637 (record_core_regbuf): Renamed to ...
8638 (record_full_core_regbuf): ... this. Updated all users.
8639 (record_core_start): Renamed to ...
8640 (record_full_core_start): ... this. Updated all users.
8641 (record_core_end): Renamed to ...
8642 (record_full_core_end): ... this. Updated all users.
8643 (record_core_buf_list): Renamed to ...
8644 (record_full_core_buf_list): ... this. Updated all users.
8645 (record_first): Renamed to ...
8646 (record_full_first): ... this. Updated all users.
8647 (record_list): Renamed to ...
8648 (record_full_list): ... this. Updated all users.
8649 (record_arch_list_head): Renamed to ...
8650 (record_full_arch_list_head): ... this. Updated all users.
8651 (record_arch_list_tail): Renamed to ...
8652 (record_full_arch_list_tail): ... this. Updated all users.
8653 (record_stop_at_limit): Renamed to ...
8654 (record_full_stop_at_limit): ... this. Updated all users.
8655 (record_insn_max_num): Renamed to ...
8656 (record_full_insn_max_num): ... this. Updated all users.
8657 (record_insn_num): Renamed to ...
8658 (record_full_insn_num): ... this. Updated all users.
8659 (record_insn_count): Renamed to ...
8660 (record_full_insn_count): ... this. Updated all users.
8661 (record_ops): Renamed to ...
8662 (record_full_ops): ... this. Updated all users.
8663 (record_core_ops): Renamed to ...
8664 (record_full_core_ops): ... this. Updated all users.
8665 (set_record_cmdlist): Renamed to ...
8666 (set_record_full_cmdlist): ... this. Updated all users.
8667 (show_record_cmdlist): Renamed to ...
8668 (show_record_full_cmdlist): ... this. Updated all users.
8669 (record_cmdlist): Renamed to ...
8670 (record_full_cmdlist): ... this. Updated all users.
8671 (record_beneath_to_resume_ops): Renamed to ...
8672 (record_full_beneath_to_resume_ops): ... this. Updated all users.
8673 (record_beneath_to_resume): Renamed to ...
8674 (record_full_beneath_to_resume): ... this. Updated all users.
8675 (record_beneath_to_wait_ops): Renamed to ...
8676 (record_full_beneath_to_wait_ops): ... this. Updated all users.
8677 (record_beneath_to_wait): Renamed to ...
8678 (record_full_beneath_to_wait): ... this. Updated all users.
8679 (record_beneath_to_store_registers_ops): Renamed to ...
8680 (record_full_beneath_to_store_registers_ops): ... this.
8681 Updated all users.
8682 (record_beneath_to_store_registers): Renamed to ...
8683 (record_full_beneath_to_store_registers): ... this.
8684 Updated all users.
8685 (record_beneath_to_xfer_partial_ops): Renamed to ...
8686 (record_full_beneath_to_xfer_partial_ops): ... this.
8687 Updated all users.
8688 (record_beneath_to_xfer_partial): Renamed to ...
8689 (record_full_beneath_to_xfer_partial): ... this.
8690 Updated all users.
8691 (record_beneath_to_insert_breakpoint): Renamed to ...
8692 (record_full_beneath_to_insert_breakpoint): ... this.
8693 Updated all users.
8694 (record_beneath_to_stopped_by_watchpoint): Renamed to ...
8695 (record_full_beneath_to_stopped_by_watchpoint): ... this.
8696 Updated all users.
8697 (record_beneath_to_stopped_data_address): Renamed to ...
8698 (record_full_beneath_to_stopped_data_address): ... this.
8699 Updated all users.
8700 (record_beneath_to_async): Renamed to ...
8701 (record_full_beneath_to_async): ... this. Updated all users.
8702 (record_goto_insn): Renamed to ...
8703 (record_full_goto_insn): ... this. Updated all users.
8704 (record_save): Renamed to ...
8705 (record_full_save): ... this. Updated all users.
8706 (record_reg_alloc): Renamed to ...
8707 (record_full_reg_alloc): ... this. Updated all users.
8708 (record_reg_release): Renamed to ...
8709 (record_full_reg_release): ... this. Updated all users.
8710 (record_mem_alloc): Renamed to ...
8711 (record_full_mem_alloc): ... this. Updated all users.
8712 (record_mem_release): Renamed to ...
8713 (record_full_mem_release): ... this. Updated all users.
8714 (record_end_alloc): Renamed to ...
8715 (record_full_end_alloc): ... this. Updated all users.
8716 (record_end_release): Renamed to ...
8717 (record_full_end_release): ... this. Updated all users.
8718 (record_entry_release): Renamed to ...
8719 (record_full_entry_release): ... this. Updated all users.
8720 (record_list_release): Renamed to ...
8721 (record_full_list_release): ... this. Updated all users.
8722 (record_list_release_following): Renamed to ...
8723 (record_full_list_release_following): ... this.
8724 Updated all users.
8725 (record_list_release_first): Renamed to ...
8726 (record_full_list_release_first): ... this. Updated all users.
8727 (record_arch_list_add): Renamed to ...
8728 (record_full_arch_list_add): ... this. Updated all users.
8729 (record_get_loc): Renamed to ...
8730 (record_full_get_loc): ... this. Updated all users.
8731 (record_check_insn_num): Renamed to ...
8732 (record_full_check_insn_num): ... this. Updated all users.
8733 (record_arch_list_cleanups): Renamed to ...
8734 (record_full_arch_list_cleanups): ... this. Updated all users.
8735 (record_message): Renamed to ...
8736 (record_full_message): ... this. Updated all users.
8737 (record_message_wrapper): Renamed to ...
8738 (record_full_message_wrapper): ... this. Updated all users.
8739 (record_message_wrapper_safe): Renamed to ...
8740 (record_full_message_wrapper_safe): ... this. Updated all users.
8741 (record_gdb_operation_disable): Renamed to ...
8742 (record_full_gdb_operation_disable): ... this. Updated all users.
8743 (record_hw_watchpoint): Renamed to ...
8744 (record_full_hw_watchpoint): ... this. Updated all users.
8745 (record_exec_insn): Renamed to ...
8746 (record_full_exec_insn): ... this. Updated all users.
8747 (record_restore): Renamed to ...
8748 (record_full_restore): ... this. Updated all users.
8749 (record_async_inferior_event_token): Renamed to ...
8750 (record_full_async_inferior_event_token): ... this.
8751 Updated all users.
8752 (record_async_inferior_event_handler): Renamed to ...
8753 (record_full_async_inferior_event_handler): ... this.
8754 Updated all users.
8755 (record_core_open_1): Renamed to ...
8756 (record_full_core_open_1): ... this. Updated all users.
8757 (record_open_1): Renamed to ...
8758 (record_full_open_1): ... this. Updated all users.
8759 (record_open): Renamed to ...
8760 (record_full_open): ... this. Updated all users.
8761 (record_close): Renamed to ...
8762 (record_full_close): ... this. Updated all users.
8763 (record_resume_step): Renamed to ...
8764 (record_full_resume_step): ... this. Updated all users.
8765 (record_resumed): Renamed to ...
8766 (record_full_resumed): ... this. Updated all users.
8767 (record_execution_dir): Renamed to ...
8768 (record_full_execution_dir): ... this. Updated all users.
8769 (record_resume): Renamed to ...
8770 (record_full_resume): ... this. Updated all users.
8771 (record_get_sig): Renamed to ...
8772 (record_full_get_sig): ... this. Updated all users.
8773 (record_sig_handler): Renamed to ...
8774 (record_full_sig_handler): ... this. Updated all users.
8775 (record_wait_cleanups): Renamed to ...
8776 (record_full_wait_cleanups): ... this. Updated all users.
8777 (record_wait_1): Renamed to ...
8778 (record_full_wait_1): ... this. Updated all users.
8779 (record_wait): Renamed to ...
8780 (record_full_wait): ... this. Updated all users.
8781 (record_stopped_by_watchpoint): Renamed to ...
8782 (record_full_stopped_by_watchpoint): ... this. Updated all users.
8783 (record_disconnect): Renamed to ...
8784 (record_full_disconnect): ... this. Updated all users.
8785 (record_detach): Renamed to ...
8786 (record_full_detach): ... this. Updated all users.
8787 (record_mourn_inferior): Renamed to ...
8788 (record_full_mourn_inferior): ... this. Updated all users.
8789 (record_kill): Renamed to ...
8790 (record_full_kill): ... this. Updated all users.
8791 (record_stopped_data_address): Renamed to ...
8792 (record_full_stopped_data_address): ... this. Updated all users.
8793 (record_registers_change): Renamed to ...
8794 (record_full_registers_change): ... this. Updated all users.
8795 (record_store_registers): Renamed to ...
8796 (record_full_store_registers): ... this. Updated all users.
8797 (record_xfer_partial): Renamed to ...
8798 (record_full_xfer_partial): ... this. Updated all users.
8799 (record_breakpoint): Renamed to ...
8800 (record_full_breakpoint): ... this. Updated all users.
8801 (record_breakpoint_p): Renamed to ...
8802 (record_full_breakpoint_p): ... this. Updated all users.
8803 (record_breakpoints): Renamed to ...
8804 (record_full_breakpoints): ... this. Updated all users.
8805 (record_sync_record_breakpoints): Renamed to ...
8806 (record_full_sync_record_breakpoints): ... this.
8807 Updated all users.
8808 (record_init_record_breakpoints): Renamed to ...
8809 (record_full_init_record_breakpoints): ... this.
8810 Updated all users.
8811 (record_insert_breakpoint): Renamed to ...
8812 (record_full_insert_breakpoint): ... this. Updated all users.
8813 (record_remove_breakpoint): Renamed to ...
8814 (record_full_remove_breakpoint): ... this. Updated all users.
8815 (record_can_execute_reverse): Renamed to ...
8816 (record_full_can_execute_reverse): ... this. Updated all users.
8817 (record_get_bookmark): Renamed to ...
8818 (record_full_get_bookmark): ... this. Updated all users.
8819 (record_goto_bookmark): Renamed to ...
8820 (record_full_goto_bookmark): ... this. Updated all users.
8821 (record_async): Renamed to ...
8822 (record_full_async): ... this. Updated all users.
8823 (record_can_async_p): Renamed to ...
8824 (record_full_can_async_p): ... this. Updated all users.
8825 (record_is_async_p): Renamed to ...
8826 (record_full_is_async_p): ... this. Updated all users.
8827 (record_execution_direction): Renamed to ...
8828 (record_full_execution_direction): ... this. Updated all users.
8829 (record_info): Renamed to ...
8830 (record_full_info): ... this. Updated all users.
8831 (record_delete): Renamed to ...
8832 (record_full_delete): ... this. Updated all users.
8833 (record_is_replaying): Renamed to ...
8834 (record_full_is_replaying): ... this. Updated all users.
8835 (record_goto_entry): Renamed to ...
8836 (record_full_goto_entry): ... this. Updated all users.
8837 (record_goto_begin): Renamed to ...
8838 (record_full_goto_begin): ... this. Updated all users.
8839 (record_goto_end): Renamed to ...
8840 (record_full_goto_end): ... this. Updated all users.
8841 (record_goto): Renamed to ...
8842 (record_full_goto): ... this. Updated all users.
8843 (init_record_ops): Renamed to ...
8844 (init_record_full_ops): ... this. Updated all users.
8845 (record_core_resume): Renamed to ...
8846 (record_full_core_resume): ... this. Updated all users.
8847 (record_core_kill): Renamed to ...
8848 (record_full_core_kill): ... this. Updated all users.
8849 (record_core_fetch_registers): Renamed to ...
8850 (record_full_core_fetch_registers): ... this. Updated all users.
8851 (record_core_prepare_to_store): Renamed to ...
8852 (record_full_core_prepare_to_store): ... this. Updated all users.
8853 (record_core_store_registers): Renamed to ...
8854 (record_full_core_store_registers): ... this. Updated all users.
8855 (record_core_xfer_partial): Renamed to ...
8856 (record_full_core_xfer_partial): ... this. Updated all users.
8857 (record_core_insert_breakpoint): Renamed to ...
8858 (record_full_core_insert_breakpoint): ... this. Updated all users.
8859 (record_core_remove_breakpoint): Renamed to ...
8860 (record_full_core_remove_breakpoint): ... this. Updated all users.
8861 (record_core_has_execution): Renamed to ...
8862 (record_full_core_has_execution): ... this. Updated all users.
8863 (init_record_core_ops): Renamed to ...
8864 (init_record_full_core_ops): ... this. Updated all users.
8865 (cmd_record_restore): Renamed to ...
8866 (cmd_record_full_restore): ... this. Updated all users.
8867 (record_save_cleanups): Renamed to ...
8868 (record_full_save_cleanups): ... this. Updated all users.
8869 (cmd_record_start): Renamed to ...
8870 (cmd_record_full_start): ... this. Updated all users.
8871 (set_record_insn_max_num): Renamed to ...
8872 (set_record_full_insn_max_num): ... this. Updated all users.
8873 (set_record_command): Renamed to ...
8874 (set_record_full_command): ... this. Updated all users.
8875 (show_record_command): Renamed to ...
8876 (show_record_full_command): ... this. Updated all users.
8877 (_initialize_record): Renamed to ...
8878 (_initialize_record_full): ... this. Updated all users.
8879
8880 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8881
8882 * record.h: Split into this and ...
8883 * record-full.h: ... this.
8884 * record.c: Split into this and ...
8885 * record-full.c: ... this.
8886 * target.h (target_ops): Add new fields to_info_record,
8887 to_save_record, to_delete_record, to_record_is_replaying,
8888 to_goto_record_begin, to_goto_record_end, to_goto_record.
8889 (target_info_record): New.
8890 (target_save_record): New.
8891 (target_supports_delete_record): New.
8892 (target_delete_record): New.
8893 (target_record_is_replaying): New.
8894 (target_goto_record_begin): New.
8895 (target_goto_record_end): New.
8896 (target_goto_record): New.
8897 * target.c (target_info_record): New.
8898 (target_save_record): New.
8899 (target_supports_delete_record): New.
8900 (target_delete_record): New.
8901 (target_record_is_replaying): New.
8902 (target_goto_record_begin): New.
8903 (target_goto_record_end): New.
8904 (target_goto_record): New.
8905 * record.h: Declare struct cmd_list_element.
8906 (record_cmdlist): New declaration.
8907 (set_record_cmdlist): New declaration.
8908 (show_record_cmdlist): New declaration.
8909 (info_record_cmdlist): New declaration.
8910 (cmd_record_goto): New declaration.
8911 * record.c: Remove unnecessary includes.
8912 Include inferior.h.
8913 (cmd_record_goto): Remove declaration.
8914 (record_cmdlist): Now extern. Initialize.
8915 (set_record_cmdlist): Now extern. Initialize.
8916 (show_record_cmdlist): Now extern. Initialize.
8917 (info_record_cmdlist): Now extern. Initialize.
8918 (find_record_target): New.
8919 (require_record_target): New.
8920 (cmd_record_start): Update.
8921 (cmd_record_delete): Remove target-specific code.
8922 Call target_delete_record.
8923 (cmd_record_stop): Unpush any record target.
8924 (set_record_insn_max_num): Move to record-full.c
8925 (set_record_command): Add comment.
8926 (show_record_command): Add comment.
8927 (info_record_command): Update comment.
8928 Remove target-specific code.
8929 Call the record target's to_info_record.
8930 (cmd_record_start): New.
8931 (cmd_record_goto): Now extern.
8932 Remove target-specific code.
8933 Call target_goto_begin, target_goto_end, or target_goto.
8934 (_initialize_record): Move record target ops initialization to
8935 record-full.c.
8936 Change "record" command help text.
8937 Move "record restore", "record set", and "record show" commands to
8938 record-full.c.
8939 * Makefile.in (SFILES): Add record-full.c.
8940 (HFILES_NO_SRCDIR): Add record-full.h.
8941 (COMMON_OBS): Add record-full.o.
8942 * amd64-linux-tdep.c: Include record-full.h instead of record.h.
8943 * arm-tdep.c: Include record-full.h.
8944 * i386-linux-tdep.c: Include record-full.h instead of record.h.
8945 * i386-tdep.c: Include record-full.h.
8946 * infrun.c: Include record-full.h.
8947 * linux-record.c: Include record-full.h.
8948 * moxie-tdep.c: Include record-full.h.
8949 * record-full.c: Include record-full.h.
8950 Change module comment.
8951 (set_record_full_cmdlist): New.
8952 (show_record_full_cmdlist): New.
8953 (record_full_cmdlist): New.
8954 (record_goto_insn): New declaration.
8955 (record_save): New declaration.
8956 (record_check_insn_num): Change query string.
8957 (record_info): New.
8958 (record_delete): New.
8959 (record_is_replaying): New.
8960 (record_goto_entry): New.
8961 (record_goto_begin): New.
8962 (record_goto_end): New.
8963 (record_goto): New.
8964 (init_record_ops): Update.
8965 (init_record_core_ops): Update.
8966 (cmd_record_save): Rename to record_save. Remove target and arg checks.
8967 (cmd_record_start): New.
8968 (set_record_insn_max_num): Moved from record.c
8969 (set_record_full_command): New.
8970 (show_record_full_command): New.
8971 (_initialize_record_full): New.
8972
8973 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8974
8975 * target.h (add_deprecated_target_alias): New.
8976 * target.c (add_deprecated_target_alias): New.
8977
8978 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8979
8980 * common/linux-btrace.c: Include sys/ptrace, sys/types, sys/wait.h,
8981 and signal.h.
8982 (linux_supports_btrace): Add kernel and
8983 cpuid check.
8984 (kernel_supports_btrace): New function.
8985 (cpu_supports_btrace): New function.
8986 (intel_supports_btrace): New function.
8987
8988 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8989
8990 * target.h (enum target_object): Add TARGET_OBJECT_BTRACE.
8991 * remote.c: Include btrace.h.
8992 (struct btrace_target_info): New struct.
8993 (remote_supports_btrace): New function.
8994 (send_Qbtrace): New function.
8995 (remote_enable_btrace): New function.
8996 (remote_disable_btrace): New function.
8997 (remote_teardown_btrace): New function.
8998 (remote_read_btrace): New function.
8999 (init_remote_ops): Add btrace ops.
9000 (enum <unnamed>): Add btrace packets.
9001 (struct protocol_feature remote_protocol_features[]): Add btrace packets.
9002 (_initialize_remote): Add packet configuration for branch tracing.
9003
9004 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
9005
9006 * features/btrace.dtd: New file.
9007 * Makefile.in (XMLFILES): Add btrace.dtd.
9008 * btrace.h (parse_xml_btrace): New declaration.
9009 * btrace.c: Include xml-support.h.
9010 (parse_xml_btrace): New function.
9011 (parse_xml_btrace_block): New function.
9012 (block_attributes): New struct.
9013 (btrace_attributes): New struct.
9014 (btrace_children): New struct.
9015 (btrace_elements): New struct.
9016
9017 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
9018
9019 * amd64-linux-nat.c: Include btrace.h and linux-btrace.h.
9020 (amd64_linux_enable_btrace): New.
9021 (amd64_linux_disable_btrace): New.
9022 (amd64_linux_teardown_btrace): New.
9023 (_initialize_amd64_linux_nat): Initialize btrace ops.
9024 * i386-linux.nat.c: Include btrace.h and linux-btrace.h.
9025 (i386_linux_enable_btrace): New.
9026 (i386_linux_disable_btrace): New.
9027 (i386_linux_teardown_btrace): New.
9028 (_initialize_i386_linux_nat): Initialize btrace ops.
9029 * config/i386/linux.mh: Add linux-btrace.o.
9030 * config/i386/linux64.mh: Add linux-btrace.o.
9031
9032 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
9033
9034 * common/linux_btrace.h: New file.
9035 * common/linux_btrace.c: New file.
9036 * Makefile.in (SFILES): Add btrace.c.
9037 (HFILES_NO_SRCDIR): Add common/linux-btrace.h.
9038 (COMMON_OBS): Add btrace.o.
9039 (linux-btrace.o): New rule.
9040
9041 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
9042
9043 * target.h: Include btrace.h.
9044 (struct target_ops) <to_supports_btrace, to_enable_btrace,
9045 to_disable_btrace, to_teardown_btrace, to_read_btrace>: New.
9046 * target.c (target_supports_btrace): New function.
9047 (target_enable_btrace): New function.
9048 (target_disable_btrace): New function.
9049 (target_teardown_btrace): New function.
9050 (target_read_btrace): New function.
9051 * btrace.h: New file.
9052 * btrace.c: New file.
9053 * Makefile.in: Add btrace.c.
9054 * gdbthread.h: Include btrace.h.
9055 (struct thread_info): Add btrace field.
9056 * thread.c: Include btrace.h.
9057 (clear_thread_inferior_resources): Call target_teardown_btrace.
9058 * common/btrace-common.h: New file.
9059
9060 2013-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
9061
9062 * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Call also kill
9063 for CHILD, ignore PTRACE_KILL errors, move the inner block variable
9064 kill_status to outer block.
9065
9066 2013-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
9067
9068 Fix entry-values if the callee called a noreturn function.
9069 * dwarf2-frame-tailcall.c (dwarf2_tailcall_sniffer_first): Use
9070 get_frame_address_in_block. Add new comment.
9071
9072 2013-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
9073
9074 Fix entry-values in C++ across CUs.
9075 * dwarf2loc.c (call_site_to_target_addr) <FIELD_LOC_KIND_PHYSNAME>: Use
9076 lookup_minimal_symbol. Add a comment.
9077 * dwarf2read.c
9078 (read_call_site_scope) <is_ref_attr> <die_is_declaration>: Prefer
9079 DW_AT_linkage_name.
9080
9081 2013-03-08 Yao Qi <yao@codesourcery.com>
9082
9083 * tracepoint.c (_initialize_tracepoint): Indent the code.
9084
9085 2013-03-08 Pedro Alves <palves@redhat.com>
9086
9087 * findcmd.c (put_bits): Change type of parameter to 'gdb_byte *'.
9088 (parse_find_args, find_command): Change type of pattern buffer
9089 locals to 'gdb_byte *'.
9090
9091 2013-03-08 Stan Shebs <stan@codesourcery.com>
9092 Hafiz Abid Qadeer <abidh@codesourcery.com>
9093
9094 * NEWS: Mention set and show trace-buffer-size commands.
9095 Mention new packet.
9096 * target.h (struct target_ops): New method
9097 to_set_trace_buffer_size.
9098 (target_set_trace_buffer_size): New macro.
9099 * target.c (update_current_target): Set up new method.
9100 * tracepoint.c (trace_buffer_size): New global.
9101 (start_tracing): Send it to the target.
9102 (set_trace_buffer_size): New function.
9103 (_initialize_tracepoint): Add new setshow for trace-buffer-size.
9104 * remote.c (remote_set_trace_buffer_size): New function.
9105 (_initialize_remote): Use it.
9106 (QTBuffer:size) New remote command.
9107 (PACKET_QTBuffer_size): New enum.
9108 (remote_protocol_features): Add an entry for
9109 PACKET_QTBuffer_size.
9110
9111 2013-03-08 Tom Tromey <tromey@redhat.com>
9112
9113 * remote-m32r-sdi.c (m32r_load): Call skip_spaces on correct
9114 variable.
9115
9116 2013-03-07 Pedro Alves <palves@redhat.com>
9117
9118 * target.c (target_read_stralloc, target_fileio_read_alloc):
9119 *Cast pointer to 'gdb_byte *' in target call.
9120
9121 2013-03-07 Pedro Alves <palves@redhat.com>
9122
9123 * corefile.c (read_memory_string): Cast pointer to gdb_byte* in
9124 call.
9125
9126 2013-03-07 Keith Seitz <keiths@redhat.com>
9127
9128 * breakpoint.c (catch_syscall_split_args): Use skip_spaces.
9129 (trace_pass_command): Likewise.
9130 * cli/cli-cmds.c: Include cli/cli-utils.h.
9131 (source_command): Use skip-spaces.
9132 (disassemble_command): Likewise.
9133 * findcmd.c: Include cli/cli-utils.h.
9134 (parse_find_args): Use skip_spaces.
9135 * go32-nat.c: Include cli/cli-utils.h.
9136 (go32_sldt): Use skip_spaces.
9137 (go32_sgdt): Likewise.
9138 (go32_sidt): Likewise.
9139 (go32_pde): Likewise.
9140 (go32_pte): Likewise.
9141 (go32_pte_for_address): Likewise.
9142 * infcmd.c: Include cli/cli-utils.h.
9143 (registers_info): Use skip_spaces.
9144 * linux-tdep.c (read_mapping): Use skip_spaces_const.
9145 (linux_info_proc): Likewise.
9146 * linux-thread-db.c: Include cli/cli-utils.h.
9147 (info_auto_load_libthread_db): Use skip_spaces_const.
9148 * m32r-rom.c: Include cli/cli-utils.h.
9149 (m32r_upload_command): Use skip_spaces.
9150 * maint.c: Include cli/cli-utils.h.
9151 (maintenance_translate_address): Use skip_spaces.
9152 * mi/mi-parse.c: Include cli/cli-utils.h.
9153 (mi_parse_argv): Use skip_spaces.
9154 (mi_parse): Likewise.
9155 * minsyms.c: Include cli/cli-utils.h.
9156 (msymbol_hash_iw): Use skip_spaces_const.
9157 * objc-lang.c: Include cli/cli-utils.h.
9158 (parse_selector): Use skip_spaces.
9159 (parse_method): Likewise.
9160 * python/python.c: Include cli/cli-utils.h.
9161 (python_interactive_command)[HAVE_PYTHON]: Use skip_spaces.
9162 (python_command)[HAVE_PYTHON]: Likewise.
9163 (python_interactive_command)[!HAVE_PYTHON]: Likewise.
9164 * remote-m32r-sdi.c: Include cli/cli-utils.h.
9165 (m32r_load): Use skip_spaces.
9166 * serial.c: Include cli/cli-utils.h.
9167 (serial_open): Use skip_spaces_const.
9168 * stack.c: Include cli/cli-utils.h.
9169 (parse_frame_specification_1): Use skip_spaces_const.
9170 * symfile.c: Include cli/cli-utils.h.
9171 (set_ext_lang_command): Use skip_spaces.
9172 * symtab.c: Include cli/cli-utils.h.
9173 (rbreak_command): Use skip_spaces.
9174 * thread.c (thread_name_command): Use skip_spaces.
9175 * tracepoint.c (validate_actionline): Use skip_spaces.
9176 (encode_actions_1): Likewise.
9177 (trace_find_range_command): Likewise.
9178 (trace_find_outside_command): Likewise.
9179 (trace_dump_actions): Likewise.
9180
9181 2013-03-07 Pedro Alves <palves@redhat.com>
9182
9183 * c-lang.c (parse_one_string): Cast argument to gdb_byte *.
9184 * expprint.c (print_subexp_standard): Likewise.
9185 * utils.c (host_char_to_target): Likewise.
9186 * valprint.c (generic_emit_char, generic_printstr): Likewise.
9187 * varobj.c (value_get_print_value): Change type of local to char*.
9188 Cast it gdb_byte * in call to language printer.
9189
9190 2013-03-07 Pedro Alves <palves@redhat.com>
9191
9192 * charset.c (struct wchar_iterator) <input>: Change type to 'const
9193 gdb_byte *'.
9194 (make_wchar_iterator): Remove cast to char*.
9195 (wchar_iterate): Change type of local.
9196
9197 2013-03-07 Pedro Alves <palves@redhat.com>
9198
9199 * regcache.c (regcache_xmalloc_1): Call XCALLOC with signed char
9200 for 'regcache->register_status'.
9201
9202 2013-03-07 Pedro Alves <palves@redhat.com>
9203
9204 * breakpoint.c (breakpoint_xfer_memory): Change type of local to
9205 int.
9206
9207 2013-03-07 Pedro Alves <palves@redhat.com>
9208
9209 * stap-probe.c (handle_stap_probe): Add cast to char*.
9210
9211 2013-03-07 Pedro Alves <palves@redhat.com>
9212
9213 * linux-record.c (record_linux_system_call) <gdb_sys_msgrcv,
9214 RECORD_MSGRCV>: Pass a signed variable to
9215 regcache_raw_read_signed, instead of an unsigned one.
9216
9217 2013-03-07 Pedro Alves <palves@redhat.com>
9218
9219 * remote-notif.c (notif_debug): Change type to int.
9220 * remote-notif.h (notif_debug): Likewise.
9221
9222 2013-03-07 Pedro Alves <palves@redhat.com>
9223
9224 * ser-tcp.c (tcp_retry_limit): Change type to unsigned int.
9225
9226 2013-03-07 Pedro Alves <palves@redhat.com>
9227
9228 * remote.c (hex2bin, bin2hex): Move extern declarations to ...
9229 * remote.h (hex2bin, bin2hex): ... here.
9230 * tracepoint.c (hex2bin, bin2hex): Remove extern declarations.
9231
9232 2013-03-07 Eli Zaretskii <eliz@gnu.org>
9233
9234 * utils.c (initialize_utils): Improve doc strings of "set/show
9235 width", "set/show height", and "set/show pagination".
9236
9237 2013-03-06 Keith Seitz <keiths@redhat.com>
9238
9239 * ax-gdb.c (gen_printf): Make FORMAT const.
9240 * ax-gdb.h (gen_printf): Likewise.
9241 * ax-general.c (ax_string): Make STR const.
9242 * ax.h (ax_string): Likewise.
9243
9244 2013-03-06 Doug Evans <dje@google.com>
9245
9246 * elfread.c (elf_symfile_read): Move debugging printf to more
9247 logical location.
9248
9249 2013-03-06 Pedro Alves <palves@redhat.com>
9250
9251 * python/py-utils.c (target_string_to_unicode): Delete function.
9252 * python/python-internal.h (target_string_to_unicode): Delete
9253 declaration.
9254
9255 2013-03-06 Pierre Muller <muller@sourceware.org>
9256
9257 * linespec.c (get_current_search_block): ARI fix, use (void)
9258 for empty parameter list.
9259
9260 2013-03-05 Doug Evans <dje@google.com>
9261
9262 * ada-lang.c (ada_lookup_symbol_list_worker): New function, contents
9263 of old ada_lookup_symbol_list. In !full_search case, don't
9264 search superblocks.
9265 (ada_lookup_symbol_list): Delete arg full_search, all callers
9266 updated. Call ada_lookup_symbol_list_worker.
9267 (ada_iterate_over_symbols): Call ada_lookup_symbol_list_worker.
9268 * ada-lang.h (ada_lookup_symbol_list): Update.
9269 * language.h (language_defn): Update comment for
9270 la_iterate_over_symbols.
9271 * linespec.c (iterate_over_file_blocks): New function.
9272 (iterate_over_all_matching_symtabs): Call it.
9273 (lookup_prefix_sym): Ditto.
9274 (get_current_search_block): New function.
9275 (get_search_block): Delete.
9276 (find_label_symbols): Call get_current_search_block.
9277 (add_matching_symbols_to_info): Call iterate_over_file_blocks.
9278 * symtab.c (iterate_over_symbols): Don't search superblocks.
9279
9280 2013-03-05 Yao Qi <yao@codesourcery.com>
9281
9282 * cli/cli-decode.c (add_setshow_zuinteger_unlimited_cmd): Change
9283 parameter VAR's type from "unsigned int" to "int".
9284 * command.h (var_zuinteger_unlimited): Update its comments.
9285 (add_setshow_zuinteger_unlimited_cmd): Update the declaration.
9286
9287 2013-03-05 Corinna Vinschen <vinschen@redhat.de>
9288
9289 * NEWS: Mention new target x86_64-*-cygwin*.
9290
9291 2013-03-05 Corinna Vinschen <vinschen@redhat.de>
9292
9293 * configure.host: Add x86_64-*-cygwin* as host.
9294 * configure.tgt: Add x86_64-*-cygwin* as target.
9295 * config/i386/cygwin64.mh: New file.
9296
9297 2013-03-04 Jan Kratochvil <jan.kratochvil@redhat.com>
9298
9299 * linespec.c (decode_line_2): Fix duplicate request off by two message.
9300
9301 2013-03-04 Jan Kratochvil <jan.kratochvil@redhat.com>
9302
9303 * linespec.c (struct linespec_canonical_name): New.
9304 (struct linespec_state): Change canonical_names type to it.
9305 (add_sal_to_sals): Change variable canonical_name to canonical. Change
9306 xrealloc element size. Initialize the different CANONICAL fields.
9307 (canonical_to_fullform): New.
9308 (filter_results): Use it. Add variables canonical, fullform and
9309 cleanup.
9310 (struct decode_line_2_item, decode_line_2_compare_items): New.
9311 (decode_line_2): Remove variables iter and item_names, add variables
9312 items and items_count. Modify the code for these new variables.
9313
9314 2013-03-04 Corinna Vinschen <vinschen@redhat.com>
9315
9316 * coff-pe-read.c (read_pe_exported_syms): Don't return without
9317 calling do_cleanup.
9318
9319 2013-03-04 Luis Machado <lgustavo@codesourcery.com>
9320
9321 * tracepoint.c (build_traceframe_info): Add code for byte order.
9322
9323 2013-03-02 Kevin Buettner <kevinb@redhat.com>
9324
9325 * v850-tdep.c: (v850e2_register_name): Revise system register
9326 names to match current V850E2M architecture specifications.
9327 Update register number enum comments too.
9328
9329 2013-03-01 Jiong Wang <jiwang@tilera.com>
9330 Pedro Alves <palves@redhat.com>
9331
9332 * tilegx-tdep.c (tilegx_analyze_prologue): Limit bundle reading
9333 to END_ADDR.
9334 (tilegx_skip_prologue): Limit prologue analysis to section end.
9335
9336 2013-03-01 Jan Kratochvil <jan.kratochvil@redhat.com>
9337
9338 * dwarf2loc.c (call_site_find_chain_1): New variable save_callee_pc,
9339 use it.
9340
9341 2013-03-01 Pedro Alves <palves@redhat.com>
9342
9343 Use gdb_byte for bytes from the program being debugged.
9344
9345 * arm-tdep.c (arm_store_return_value, arm_get_longjmp_target):
9346 Change type of local 'buf' to gdb_byte.
9347 * avr-tdep.c (avr_frame_prev_register, avr_push_dummy_call): Likewise.
9348 * bfin-tdep.c (bfin_push_dummy_call): Likewise.
9349 * cris-tdep.c (cris_sigcontext_addr)
9350 (cris_sigtramp_frame_unwind_cache): Likewise.
9351 * frv-linux-tdep.c (frv_linux_pc_in_sigtramp)
9352 (frv_linux_sigcontext_reg_addr, frv_linux_sigtramp_frame_cache):
9353 Likewise.
9354 * frv-tdep.c (frv_pseudo_register_write, frv_analyze_prologue): Likewise.
9355 * hppa-hpux-tdep.c (hppa32_hpux_find_global_pointer)
9356 (hppa32_hpux_search_dummy_call_sequence)
9357 (hppa_hpux_supply_save_state): Likewise.
9358 * hppa-linux-tdep.c (insns_match_pattern)
9359 (hppa_linux_find_global_pointer): Likewise.
9360 * hppa-tdep.c (hppa_in_function_epilogue_p)
9361 (skip_prologue_hard_way, hppa_frame_cache): Likewise.
9362 * i386-nto-tdep.c (i386nto_sigcontext_addr): Likewise.
9363 * i386fbsd-tdep.c (i386fbsd_supply_uthread)
9364 (i386fbsd_collect_uthread): Likewise.
9365 * ia64-hpux-tdep.c (ia64_hpux_push_dummy_code): Likewise.
9366 * ia64-linux-tdep.c (ia64_linux_sigcontext_register_address): Likewise.
9367 * ia64-tdep.c (examine_prologue, ia64_frame_cache)
9368 (ia64_frame_prev_register, ia64_sigtramp_frame_cache)
9369 (ia64_sigtramp_frame_prev_register, ia64_access_reg)
9370 (ia64_access_rse_reg, ia64_libunwind_frame_this_id)
9371 (ia64_libunwind_frame_prev_register)
9372 (ia64_libunwind_sigtramp_frame_this_id)
9373 (ia64_find_global_pointer_from_dynamic_section)
9374 (find_extant_func_descr, find_func_descr, ia64_dummy_id)
9375 (ia64_unwind_pc): Likewise.
9376 * iq2000-tdep.c (iq2000_store_return_value): Likewise.
9377 * m68hc11-tdep.c (m68hc11_push_dummy_call)
9378 (m68hc11_extract_return_value): Likewise.
9379 * m68klinux-nat.c (fetch_register, store_register): Likewise.
9380 * mep-tdep.c (mep_pseudo_cr32_read, mep_pseudo_cr32_write)
9381 (mep_get_insn, mep_push_dummy_call): Likewise.
9382 * mips-linux-tdep.c (mips_linux_get_longjmp_target)
9383 (mips_linux_in_dynsym_stub): Likewise.
9384 * mn10300-tdep.c (mep_pseudo_cr32_write): Likewise.
9385 * ppc-linux-nat.c (fetch_register, store_register): Likewise.
9386 * regcache.c (dump_endian_bytes): Change type of parameter 'buf'
9387 to gdb_byte.
9388 * remote-mips.c (mips_set_register): Likewise.
9389 * remote-sim.c (gdbsim_fetch_register): Likewise.
9390 * score-tdep.c (score7_fetch_inst): Change type of parameter
9391 'memblock' and local 'buf' to gdb_byte.
9392 (score7_malloc_and_get_memblock): Change return type to gdb_byte.
9393 Change type of local 'buf' to gdb_byte. Adjust.
9394 (score7_adjust_memblock_ptr): Change type of parameter 'memblock'
9395 to gdb_byte**.
9396 (score7_analyze_prologue): Change type of 'memblock' and
9397 'memblock_ptr' locals to gdb_byte*.
9398 * sh64-tdep.c (sh64_extract_return_value)
9399 (sh64_store_return_value): Change type of local 'buf' to gdb_byte.
9400 * solib-darwin.c (darwin_current_sos, darwin_read_exec_load_addr):
9401 * solib-pa64.c (pa64_solib_create_inferior_hook)
9402 (pa64_open_symbol_file_object): Remove local 'buf'.
9403 * solib-som.c (som_solib_create_inferior_hook, link_map_start)
9404 (som_open_symbol_file_object): Likewise.
9405 * solib-spu.c (spu_current_sos): Likewise.
9406 * spu-linux-nat.c (spu_fetch_inferior_registers): Likewise.
9407 * spu-multiarch.c (parse_spufs_run, spu_fetch_registers)
9408 (spu_store_registers): Likewise.
9409 * target.c (debug_print_register): Likewise.
9410 * tic6x-tdep.c (tic6x_get_longjmp_target): Likewise.
9411 * xstormy16-tdep.c (xstormy16_store_return_value)
9412 (xstormy16_push_dummy_call, xstormy16_resolve_jmp_table_entry)
9413 (xstormy16_find_jmp_table_entry): Likewise.
9414
9415 2013-03-01 Jiong Wang <jiwang@tilera.com>
9416
9417 * tilegx-tdep.c (tilegx_get_longjmp_target): New function.
9418 (tilegx_gdbarch_init): Install it.
9419
9420 2013-02-28 Tom Tromey <tromey@redhat.com>
9421
9422 * python/py-arch.c (archpy_disassemble): Use PyInt_Check and
9423 PyLong_Check.
9424
9425 2013-02-28 Doug Evans <dje@google.com>
9426
9427 * python/py-finishbreakpoint.c (bpfinishpy_init): gcc -Wall lint.
9428 * python/python.c (gdbpy_find_pc_line): Ditto.
9429
9430 2013-02-28 Tom Tromey <tromey@redhat.com>
9431
9432 * contrib/excheck.py: New file.
9433 * contrib/exsummary.py: New file.
9434 * contrib/gcc-with-excheck: New file.
9435
9436 2013-02-28 Tom Tromey <tromey@redhat.com>
9437
9438 * python/python.c (gdbpy_print_stack): Call begin_line and
9439 fprintf_filtered inside TRY_CATCH.
9440
9441 2013-02-28 Tom Tromey <tromey@redhat.com>
9442
9443 * python/python.c (gdbpy_find_pc_line): Call find_pc_line
9444 inside TRY_CATCH.
9445
9446 2013-02-28 Tom Tromey <tromey@redhat.com>
9447
9448 * py-finishbreakpoint.c (bpfinishpy_init): Reorganize to call
9449 frame_object_to_frame_info inside TRY_CATCH.
9450
9451 2013-02-28 Tom Tromey <tromey@redhat.com>
9452
9453 * py-block.c (gdbpy_block_for_pc): Call block_for_pc inside
9454 TRY_CATCH.
9455
9456 2013-02-28 Tom Tromey <tromey@redhat.com>
9457
9458 * objfiles.h (ALL_PSPACE_OBJFILES): Remove trailing backlash.
9459
9460 2013-02-27 Corinna Vinschen <vinschen@redhat.com>
9461
9462 * windows-nat.c: Throughout, fix format strings and casts of
9463 printf-like functions to avoid type related warnings on all
9464 platforms.
9465 (handle_output_debug_string): Fetch context information address
9466 from debug string using string_to_core_addr.
9467
9468 2013-02-27 Jiong Wang <jiwang@tilera.com>
9469
9470 * regformats/reg-tilegx.dat (name): Change abi name to "tilegx".
9471 * regformats/reg-tilegx32.dat: New.
9472
9473 2013-02-27 Jiong Wang <jiwang@tilera.com>
9474
9475 * configure.tgt (tilegx-*-linux*): Enable gdbserver.
9476
9477 2013-02-27 Jiong Wang <jiwang@tilera.com>
9478
9479 * configure.tgt (tilegx-*-linux*): Replace whitespace with tab.
9480
9481 2013-02-27 Yao Qi <yao@codesourcery.com>
9482 Pedro Alves <palves@redhat.com>
9483
9484 * tracepoint.c (tfile_trace_find): For tfind
9485 pc/tp/range/outside, look for the next trace frame instead of
9486 always starting from frame 0.
9487
9488 2013-02-26 Anthony Green <green@moxielogic.com>
9489
9490 * configure.tgt: Add support for moxie-*-rtems* target.
9491
9492 2013-02-25 Pedro Alves <palves@redhat.com>
9493
9494 * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Change
9495 warning text.
9496
9497 2013-02-24 Maciej W. Rozycki <macro@codesourcery.com>
9498
9499 * mips-tdep.c (mips32_scan_prologue): Reset frame_offset to zero
9500 if $fp is used as the virtual frame pointer.
9501
9502 2013-02-23 Alan Modra <amodra@gmail.com>
9503
9504 * elfread.c (elf_symtab_read): Do not use udata.p here to find
9505 symbol size.
9506 * ppc64-tdep.c (ppc64_elf_make_msymbol_special): New function.
9507 * ppc64-tdep.h (ppc64_elf_make_msymbol_special): Declare.
9508 * ppc-linux-tdep.c (ppc_linux_init_abi): Set up to use the above.
9509 * ppcfbsd-tdep.c (ppcfbsd_init_abi): Likewise.
9510
9511 2013-02-22 Jan Kratochvil <jan.kratochvil@redhat.com>
9512
9513 Code cleanup.
9514 * elfread.c (build_id_bfd_get): Make the return type const.
9515 (build_id_verify): Make the check parameter const.
9516 (build_id_to_debug_filename): Make the build_id parameter and variable
9517 data const.
9518 (find_separate_debug_file_by_buildid): Make the variable build_id const.
9519
9520 2013-02-21 Alan Modra <amodra@gmail.com>
9521
9522 * elfread.c (build_id_bfd_get): Adjust for elf_tdata changes.
9523
9524 2013-02-20 Siva Chandra Reddy <sivachandra@google.com>
9525
9526 Add a new method 'disassemble' to gdb.Architecture class.
9527 * python/py-arch.c (archpy_disassmble): Implementation of the
9528 new method gdb.Architecture.disassemble.
9529 (arch_object_methods): Add entry for the new method.
9530
9531 2013-02-20 Jiong Wang <jiwang@tilera.com>
9532
9533 * MAINTAINERS (Write After Approval): Add myself to the list.
9534
9535 2013-02-19 Pedro Alves <palves@redhat.com>
9536
9537 Garbage collect 'struct monitor_ops'::load_routine.
9538
9539 * monitor.h (struct monitor_ops) <load_routine>: Remove field.
9540 * monitor.c (monitor_load): No longer call
9541 current_monitor->load_routine.
9542 * dbug-rom.c (init_dbug_cmds): Don't set 'load_routine'.
9543 * m32r-rom.c (init_m32r_cmds): Don't set 'load_routine'.
9544 * ppcbug-rom.c (init_ppc_cmds): Don't set 'load_routine'.
9545
9546 2013-02-19 Pedro Alves <palves@redhat.com>
9547
9548 PR gdb/15161
9549
9550 Harmonize with generic_load.
9551
9552 * monitor.c: Include "readline/readline.h".
9553 (monitor_load): Rename parameter 'file' to 'args'. Use build_argv
9554 instead of sscanf. Use CORE_ADDR/strtoulst instead of unsigned
9555 long/strtol for the 'load_offset' local. Error out if no argument
9556 is given or if too many arguments are given. Tilde expand the
9557 passed in file name.
9558
9559 2013-02-19 Kai Tietz <ktietz@redhat.com>
9560
9561 PR gdb/15161
9562 * symfile.c (load_section_data): Change type of load_offset
9563 to CORE_ADDR.
9564 (generic_load): User strtoulst instead of strtoul for conversion
9565 of load_offset.
9566
9567 2013-02-19 Jiong Wang <jiwang@tilera.com>
9568
9569 * tilegx-tdep.c (tilegx_analyze_prologue): add check for
9570 for return address, "lr" register, saved on stack.
9571 * tilegx-tdep.c (tilegx_frame_cache): update "PC" reg
9572 after we invoke tilegx_analyze_prologue.
9573
9574 2013-02-19 Jiong Wang <jiwang@tilera.com>
9575
9576 * tilegx-tdep.c (itilegx_gdbarch_init): char type should be signed.
9577
9578 2013-02-19 Jiong Wang <jiwang@tilera.com>
9579
9580 * tilegx-tdep.c (tilegx_skip_prologue): Use skip_prologue_using_sal.
9581
9582 2013-02-19 Jiong Wang <jiwang@tilera.com>
9583
9584 * tilegx-tdep.c (INT_SWINT_1_SIGRETURN): New macro.
9585 (tilegx_write_pc): New function.
9586 (tilegx_cannot_reference_register): Return zero if REGNO
9587 is TILEGX_FAULTNUM_REGNUM.
9588 (tilegx_gdbarch_init): Add call to set_gdbarch_write_pc.
9589 (tilegx_register_name): Add handling of "faultnum" register.
9590 * tilegx-tdep.h (enum tilegx_regnum): Add TILEGX_FAULTNUM_REGNUM.
9591 * tilegx-linux-tdep.c (tilegx_linux_supply_regset): Add
9592 handling of TILEGX_FAULTNUM_REGNUM.
9593 * tilegx-linux-nat.c (regmap): Add entry for TILEGX_FAULTNUM_REGNUM.
9594
9595 2013-02-19 Jiong Wang <jiwang@tilera.com>
9596
9597 * tilegx-tdep.c (tilegx_push_dummy_call): args pushed on stack
9598 should be aligned to 64bit.
9599
9600 2013-02-19 Kai Tietz <ktietz@redhat.com>
9601
9602 * windows-nat.c (windows_xfer_memory): Fix debug-output
9603 for LLP64.
9604
9605 2013-02-19 Lei Liu <lei.liu2@windriver.com>
9606
9607 * mips-linux-nat.c (mips64_linux_regsets_store_registers):
9608 Don't check DSP register number if HAVE_DSP is not set.
9609
9610 2013-02-19 Alan Modra <amodra@gmail.com>
9611
9612 * elfread.c (struct build_id): Delete. Use struct elf_build_id
9613 throughout file instead.
9614 (build_id_bfd_get): Update to use new elf_tdata build_id field.
9615 Don't xmalloc return value.
9616 (build_id_verify): Similarly. Don't xfree.
9617 (build_id_to_debug_filename): Update.
9618 (find_separate_debug_file_by_buildid): Update, don't xfree.
9619
9620 2013-02-18 Tom Tromey <tromey@redhat.com>
9621
9622 PR gdb/15102:
9623 * dwarf2read.c (read_subrange_type): Use result of
9624 'check_typedef'.
9625
9626 2013-02-16 Yuanhui Zhang <asmwarrior@gmail.com>
9627
9628 * frame.c: Remove one extra white space after #include
9629 directive.
9630
9631 2013-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
9632
9633 * contrib/cc-with-tweaks.sh: Extend the comment for -p option.
9634
9635 2013-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
9636
9637 * gdb-gdb.gdb.in: Wrap set complaints, b internal_error, b info_command
9638 and dir commands into an if block.
9639
9640 2013-02-15 Sanimir Agovic <sanimir.agovic@intel.com>
9641
9642 * python/py-breakpoint (struct pybp_code): Use int instead of
9643 enum type_code.
9644
9645 2013-02-15 Pedro Alves <pedro@codesourcery.com>
9646 Hafiz Abid Qadeer <abidh@codesourcery.com>
9647
9648 * NEWS: Mention new field "trace-file".
9649 * tracepoint.c (trace_status_mi): Output "trace-file" field.
9650 (tfile_open): Record the trace file's filename in the trace
9651 status.
9652 (tfile_files_info): Mention the name of the trace file.
9653 Check the "filename" field explicitely.
9654 (trace_status_command): Explicitely check "filename" field.
9655 (trace_find_command): Ditto.
9656 (trace_find_pc_command): Ditto.
9657 (trace_find_tracepoint_command): Ditto.
9658 (trace_find_line_command): Ditto.
9659 (trace_find_range_command): Ditto.
9660 (trace_find_outside_command): Ditto.
9661 * tracepoint.h (struct trace_status) <from_file>: Rename it
9662 to "filename" and make it hold the trace file's filename
9663 instead of a boolean.
9664 * remote.c (remote_get_trace_status): Initialize "filename"
9665 field with NULL instead of 0.
9666
9667 2013-02-15 Yao Qi <yao@codesourcery.com>
9668
9669 * remote.c: Fix a typo.
9670
9671 2013-02-14 Pierre Muller <muller@sourceware.org>
9672
9673 * contrib/ari/gdb_ari.sh (GNU/Linux rule): Remove.
9674
9675 2013-02-14 Pedro Alves <palves@redhat.com>
9676
9677 * utils.c (savestring): Don't #undef it. Move function to
9678 common/common-utils.c.
9679 * common/common-utils.c: Include gdb_string.h.
9680 (savestring): Move here from utils.c.
9681 * common/common-utils.h (savestring): Declare.
9682
9683 2013-02-14 Pedro Alves <palves@redhat.com>
9684
9685 * utils.c (savestring): Rename parameter 'size' to 'len'.
9686
9687 2013-02-14 Pedro Alves <palves@redhat.com>
9688 Yufeng Zhang <yufeng.zhang@arm.com>
9689
9690 * aarch64-linux-nat.c (aarch64_init_debug_reg_state): Delete.
9691 (aarch64_inferior_data, struct aarch64_inferior_data):
9692 Delete.
9693 (struct aarch64_process_info): New.
9694 (aarch64_process_list): New global.
9695 (aarch64_find_process_pid, aarch64_add_process)
9696 (aarch64_process_info_get): New functions.
9697 (aarch64_inferior_data_get): Delete.
9698 (aarch64_process_info_get): New function.
9699 (aarch64_forget_process): New function.
9700 (aarch64_get_debug_reg_state): New parameter 'pid'. Reimplement.
9701 (aarch64_linux_prepare_to_resume): Pass the lwp's pid to
9702 aarch64_get_debug_reg_state.
9703 (aarch64_notify_debug_reg_change): Use iterate_over_lwps
9704 instead of linux_nat_iterate_watchpoint_lwps.
9705 (aarch64_linux_new_fork): New function.
9706 (aarch64_linux_child_post_startup_inferior): Use
9707 aarch64_forget_process instead of aarch64_init_debug_reg_state.
9708 (aarch64_handle_breakpoint, aarch64_linux_insert_hw_breakpoint)
9709 (aarch64_linux_remove_hw_breakpoint)
9710 (aarch64_handle_aligned_watchpoint)
9711 (aarch64_handle_unaligned_watchpoint)
9712 (aarch64_linux_insert_watchpoint)
9713 (aarch64_linux_remove_watchpoint)
9714 (aarch64_linux_stopped_data_address): Adjust to pass the current
9715 process id to aarch64_debug_reg_state.
9716 (_initialize_aarch64_linux_nat): Install aarch64_linux_new_fork as
9717 linux_nat_new_fork hook, and aarch64_forget_process as
9718 linux_nat_forget_process hook; remove the call to
9719 register_inferior_data_with_cleanup.
9720
9721 2013-02-14 Pedro Alves <palves@redhat.com>
9722
9723 * eval.c (evaluate_subexp_for_address) <default_case_after_eval,
9724 EVAL_AVOID_SIDE_EFFECTS>: Swap and handle TYPE_CODE_REF before
9725 lval_memory.
9726
9727 2013-02-14 Pedro Alves <pedro@codesourcery.com>
9728 Hafiz Abid Qadeer <abidh@codesourcery.com>
9729
9730 * tracepoint.h (validate_trace_state_variable_name): Declare.
9731 * tracepoint.c (validate_trace_state_variable_name): New.
9732 (trace_variable_command): Parse the trace state variable's name
9733 without using parse_expression. Do several validations.
9734 * mi/mi-main.c (mi_cmd_trace_define_variable): Don't parse the
9735 trace state variable's name with parse_expression. Validate it.
9736
9737 2013-02-14 Yao Qi <yao@codesourcery.com>
9738
9739 * infcmd.c (breakpoint_proceeded): Remove it.
9740
9741 2013-02-14 Yao Qi <yao@codesourcery.com>
9742
9743 * tracepoint.c (end_actions_pseudocommand): Make it static.
9744 (while_stepping_pseudocommand): Likewise.
9745 * tracepoint.h (end_actions_pseudocommand): Remove the
9746 declaration.
9747 (while_stepping_pseudocommand): Likewise.
9748
9749 2013-02-14 Yao Qi <yao@codesourcery.com>
9750
9751 * cli/cli-decode.c (help_cmd): Remove the declaration of
9752 "cmdlist".
9753 (help_all): Likewise.
9754
9755 2013-02-13 Pedro Alves <palves@redhat.com>
9756
9757 * amd64-linux-nat.c (update_debug_registers_callback):
9758 Update comment.
9759 (amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use
9760 iterate_over_lwps.
9761 (amd64_linux_prepare_to_resume): Pass the lwp's pid to
9762 i386_debug_reg_state.
9763 (amd64_linux_new_fork): New function.
9764 (_initialize_amd64_linux_nat): Install amd64_linux_new_fork as
9765 linux_nat_new_fork hook, and i386_forget_process as
9766 linux_nat_forget_process hook.
9767 * i386-linux-nat.c (update_debug_registers_callback):
9768 Update comment.
9769 (i386_linux_dr_set_control, i386_linux_dr_set_addr): Use
9770 iterate_over_lwps.
9771 (i386_linux_prepare_to_resume): Pass the lwp's pid to
9772 i386_debug_reg_state.
9773 (i386_linux_new_fork): New function.
9774 (_initialize_i386_linux_nat): Install i386_linux_new_fork as
9775 linux_nat_new_fork hook, and i386_forget_process as
9776 linux_nat_forget_process hook.
9777 * i386-nat.c (i386_init_dregs): Delete.
9778 (i386_inferior_data, struct i386_inferior_data):
9779 Delete.
9780 (struct i386_process_info): New.
9781 (i386_process_list): New global.
9782 (i386_find_process_pid, i386_add_process, i386_process_info_get):
9783 New functions.
9784 (i386_inferior_data_get): Delete.
9785 (i386_process_info_get): New function.
9786 (i386_debug_reg_state): New parameter 'pid'. Reimplement.
9787 (i386_forget_process): New function.
9788 (i386_cleanup_dregs): Rewrite.
9789 (i386_update_inferior_debug_regs, i386_insert_watchpoint)
9790 (i386_remove_watchpoint, i386_region_ok_for_watchpoint)
9791 (i386_stopped_data_address, i386_insert_hw_breakpoint)
9792 (i386_remove_hw_breakpoint): Adjust to pass the current process id
9793 to i386_debug_reg_state.
9794 (i386_use_watchpoints): Don't register inferior data.
9795 * i386-nat.h (i386_debug_reg_state): Add new 'pid' parameter, and
9796 adjust comment.
9797 (i386_forget_process): Declare.
9798 * linux-fork.c (delete_fork): Call linux_nat_forget_process.
9799 * linux-nat.c (linux_nat_new_fork, linux_nat_forget_process_hook):
9800 New static globals.
9801 (linux_child_follow_fork): Don't call linux_nat_new_thread here.
9802 (add_initial_lwp): New, factored out from ...
9803 (add_lwp): ... this. Don't check the number of lwps before
9804 calling linux_nat_new_thread.
9805 (linux_nat_iterate_watchpoint_lwps): Delete.
9806 (linux_nat_attach): Use add_initial_lwp instead of add_lwp.
9807 (linux_handle_extended_wait): Call the linux_nat_new_fork hook on
9808 forks and vforks.
9809 (linux_nat_wait_1): Use add_initial_lwp instead of add_lwp for the
9810 initial lwp.
9811 (linux_nat_kill, linux_nat_mourn_inferior): Call
9812 linux_nat_forget_process.
9813 (linux_nat_set_new_fork, linux_nat_set_forget_process)
9814 (linux_nat_forget_process): New functions.
9815 * linux-nat.h (linux_nat_iterate_watchpoint_lwps_ftype): Delete
9816 type.
9817 (linux_nat_iterate_watchpoint_lwps): Delete declaration.
9818 (linux_nat_new_fork_ftype, linux_nat_forget_process_ftype): New
9819 types.
9820 (linux_nat_set_new_fork, linux_nat_set_forget_process)
9821 (linux_nat_forget_process): New declarations.
9822
9823 * amd64fbsd-nat.c (super_mourn_inferior): New global.
9824 (amd64fbsd_mourn_inferior): New function.
9825 (_initialize_amd64fbsd_nat): Override to_mourn_inferior.
9826 * windows-nat.c (windows_detach): Call i386_cleanup_dregs.
9827
9828 2013-02-13 Marcus Shawcroft <marcus.shawcroft@arm.com>
9829
9830 * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity):
9831 Adding _().
9832
9833 2013-02-13 Marcus Shawcroft <marcus.shawcroft@arm.com>
9834
9835 * aarch64-linux-nat.c (debug_reg_change_callback)
9836 (aarch64_linux_get_debug_reg_capacity): ARI fix: Replace %llx with
9837 %s and phex().
9838
9839 2013-02-13 Marcus Shawcroft <marcus.shawcroft@arm.com>
9840
9841 * aarch64-linux-nat.c (dr_changed_t): ARI fix: Replace long long
9842 with LONGEST.
9843
9844 2013-02-13 Pedro Alves <palves@redhat.com>
9845 Hafiz Abid Qadeer <abidh@codesourcery.com>
9846
9847 * c-lang.c (c_op_print_tab): Add entry for UNOP_PLUS.
9848
9849 2013-02-12 Tom Tromey <tromey@redhat.com>
9850
9851 PR symtab/11464:
9852 * c-exp.y (lex_one_token): Initialize other fields of yylval on
9853 NAME return.
9854 (classify_inner_name): Remove 'first_name' argument, add
9855 'context'. Remove unused variable.
9856 (yylex): Explicitly maintain the context type. Exit loop earlier
9857 if NAME result is seen.
9858
9859 2013-02-12 Pedro Alves <palves@redhat.com>
9860
9861 * amd64-darwin-tdep.c: Add (C) after Copyright.
9862 * cli/cli-cmds.h: Ditto.
9863 * cli/cli-decode.c: Ditto.
9864 * cli/cli-decode.h: Ditto.
9865 * cli/cli-dump.c: Ditto.
9866 * cli/cli-dump.h: Ditto.
9867 * cli/cli-interp.c: Ditto.
9868 * cli/cli-logging.c: Ditto.
9869 * cli/cli-script.c: Ditto.
9870 * cli/cli-script.h: Ditto.
9871 * cli/cli-setshow.c: Ditto.
9872 * cli/cli-setshow.h: Ditto.
9873 * cli/cli-utils.c: Ditto.
9874 * cli/cli-utils.h: Ditto.
9875 * config/alpha/nm-osf3.h: Ditto.
9876 * config/djgpp/djconfig.sh: Ditto.
9877 * config/i386/nm-fbsd.h: Ditto.
9878 * config/i386/nm-i386gnu.h: Ditto.
9879 * config/nm-linux.h: Ditto.
9880 * config/nm-nto.h: Ditto.
9881 * config/rs6000/nm-rs6000.h: Ditto.
9882 * config/sparc/nm-sol2.h: Ditto.
9883 * darwin-nat-info.c: Ditto.
9884 * dfp.c: Ditto.
9885 * dfp.h: Ditto.
9886 * gdb-demangle.h: Ditto.
9887 * i386-darwin-nat.c: Ditto.
9888 * i386-darwin-tdep.c: Ditto.
9889 * linux-fork.h: Ditto.
9890 * m32c-tdep.c: Ditto.
9891 * microblaze-linux-tdep.c: Ditto.
9892 * microblaze-rom.c: Ditto.
9893 * microblaze-tdep.c: Ditto.
9894 * microblaze-tdep.h: Ditto.
9895 * mips-linux-tdep.h: Ditto.
9896 * ppc-ravenscar-thread.c: Ditto.
9897 * ppc-ravenscar-thread.h: Ditto.
9898 * prologue-value.c: Ditto.
9899 * prologue-value.h: Ditto.
9900 * ravenscar-thread.c: Ditto.
9901 * ravenscar-thread.h: Ditto.
9902 * sparc-ravenscar-thread.c: Ditto.
9903 * sparc-ravenscar-thread.h: Ditto.
9904 * tilegx-linux-tdep.c: Ditto.
9905 * unwind_stop_reasons.def: Ditto.
9906 * windows-nat.h: Ditto.
9907 * xtensa-linux-tdep.c: Ditto.
9908 * xtensa-xtregs.c: Ditto.
9909 * regformats/regdat.sh: Ditto.
9910 * regformats/regdef.h: Ditto.
9911
9912 2013-02-12 Pedro Alves <palves@redhat.com>
9913
9914 * break-catch-sig.c: Update copyright years.
9915
9916 2013-02-11 Siva Chandra Reddy <sivachandra@google.com>
9917
9918 Add support for a destructor for ui_out data and use it to
9919 provide a ui_out destructor.
9920 * ui-out.h: Declare the new ui_out destructor.
9921 (ui_out_impl): Add a field for data destructor in ui_out_impl.
9922 * ui-out.c (default_data_destroy): Add a default data destructor
9923 which does nothing.
9924 (default_ui_out_impl): Set the new data_destroy field to
9925 default_data_destroy
9926 (uo_data_destroy): Local function which invokes the data
9927 destructor if present.
9928 (clear_table): Local function which clears the table data of a
9929 ui_out object.
9930 (ui_out_destroy): Public function which frees a ui_out object.
9931 (ui_out_table_end): Use the new clear_table function.
9932 * cli-out.c (cli_ui_out_impl): Set the new data_destroy field to
9933 NULL.
9934 * mi/mi-out.c (mi_ui_out_impl): Set the new data_destroy field
9935 to NULL.
9936
9937 2013-02-11 Doug Evans <dje@google.com>
9938
9939 * printcmd.c (printf_c_string,printf_wide_c_string): New functions.
9940 (printf_decfloat): New function. Broken out from ui_printf.
9941 Remove unnecessary code to shift the entire format string down.
9942 (printf_pointer): New function.
9943 (ui_printf): Code to print C strings, wide C strings, decfloats,
9944 and pointers moved to separate functions.
9945
9946 2013-02-11 Sergio Durigan Junior <sergiodj@redhat.com>
9947
9948 * valops.c (value_assign): Handling bitfield offset in
9949 `lval_internalvar_component' case.
9950
9951 2013-02-08 Doug Evans <dje@google.com>
9952
9953 * common/format.c (parse_format_string): Fix whitespace.
9954
9955 2013-02-08 Matthew Gretton-Dann <matthew.gretton-dann@linaro.org>
9956
9957 * stack.c (return_command): Work around uninitialized variable
9958 warning.
9959
9960 2013-02-08 Yufeng Zhang <yufeng.zhang@arm.com>
9961
9962 * aarch64-linux-tdep.c (AARCH64_LINUX_SIZEOF_GREGSET): Change the
9963 number of the registers from 36 to 34.
9964
9965 2013-02-08 Marcus Shawcroft <marcus.shawcroft@arm.com>
9966
9967 * NEWS: Mention new AArch64 native and target support.
9968
9969 2013-02-08 Marcus Shawcroft <marcus.shawcroft@arm.com>
9970
9971 * MAINTAINERS (Write After Approval): Add myself.
9972
9973 2013-02-08 Jim MacArthur <jim.macarthur@arm.com>
9974 Marcus Shawcroft <marcus.shawcroft@arm.com>
9975 Nigel Stephens <nigel.stephens@arm.com>
9976 Yufeng Zhang <yufeng.zhang@arm.com>
9977
9978 * aarch64-linux-nat.c: New file.
9979 * config/aarch64/linux.mh: New file.
9980 * configure.host: Add AArch64.
9981 * Makefile.in (ALLDEPFILES): Add aarch64-linux-nat.c.
9982
9983 2013-02-07 Doug Evans <dje@google.com>
9984
9985 * cli/cli-cmds.c (_initialize_cli_cmds): Clarify argument to
9986 disassemble command.
9987
9988 2013-02-07 Marcus Shawcroft <marcus.shawcroft@arm.com>
9989
9990 * aarch64-linux-tdep.c (aarch64_linux_init_abi): Call
9991 set_gdbarch_fetch_tls_load_module_address.
9992
9993 2013-02-06 David S. Miller <davem@davemloft.net>
9994
9995 * sparc-tdep.c (sparc32_return_value): Handle writing return value when
9996 using RETURN_VALUE_ABI_PRESERVES_ADDRESS.
9997 * value.c (struct_return_convention): New function.
9998 (using_struct_return): Implement in terms of struct_return_convention.
9999 * value.h (struct_return_convention): Declare.
10000 * stack.c (return_command): Allow successful overriding of the return
10001 value when RETURN_VALUE_ABI_PRESERVES_ADDRESS.
10002
10003 2013-02-06 Tom Tromey <tromey@redhat.com>
10004
10005 * python/py-type.c (typy_strip_typedefs): Don't call check_typedef
10006 outside of TRY_CATCH.
10007
10008 2013-02-06 Yao Qi <yao@codesourcery.com>
10009
10010 * mi/mi-interp.c: Include "tracepoint.h".
10011 (mi_tsv_modified): Declare.
10012 (mi_tsv_created, mi_tsv_deleted): Update declaration.
10013 (mi_interpreter_init): Call observer_attach_tsv_modified.
10014 (mi_tsv_modified): New.
10015 (mi_tsv_created, mi_tsv_deleted): Update.
10016 * tracepoint.c (trace_variable_command): Call
10017 observer_notify_tsv_modified if the initial value of tsv is
10018 changed.
10019 (delete_trace_state_variable): Call
10020 observer_notify_tsv_deleted earlier.
10021 (trace_variable_command): Caller update.
10022 (create_tsv_from_upload): Likewise.
10023 * observer.sh: Declare "struct trace_state_variable".
10024
10025 * NEWS: Mention the new MI notification "=tsv-modified".
10026
10027 2013-02-05 Doug Evans <dje@google.com>
10028
10029 * completer.c (location_completer): Fix typo in comment.
10030
10031 2013-02-05 Jan Kratochvil <jan.kratochvil@redhat.com>
10032
10033 * breakpoint.c (add_location_to_breakpoint): Insert the location with
10034 ADDRESS sorted.
10035
10036 2013-02-05 Marcus Shawcroft <marcus.shawcroft@arm.com>
10037
10038 * aarch64-tdep.c (aarch64_analyze_prologue): ARI fix:
10039 Refactor if statement to avoid trailing || operator.
10040
10041 2013-02-05 Andreas Tobler <andreast@fgznet.ch>
10042
10043 * NEWS: Add PowerPC FreeBSD as a new native configuration.
10044
10045 2013-02-04 Andreas Tobler <andreast@fgznet.ch>
10046
10047 * Makefile.in (ALL_TARGET_OBS): Add powerpc FreeBSD files.
10048 * configure.host: Add powerpc*-*-freebsd* target.
10049 * configure.tgt: Add target info for powerpc*-*-freebsd*.
10050 * ppcfbsd-nat.c, ppcfbsd-tdep.h, ppcfbsd-tdep.c: New files.
10051 * config/powerpc/fbsd.mh: New file.
10052
10053 2013-02-04 Sergio Durigan Junior <sergiodj@redhat.com>
10054 Denys Vlasenko <dvlasenk@redhat.com>
10055 Pedro Alves <palves@redhat.com>
10056
10057 * gdbarch.sh (elfcore_write_linux_prpsinfo): New F hook.
10058 (struct elf_internal_linux_prpsinfo): Forward declare.
10059 * gdbarch.h, gdbarch.c: Regenerate.
10060 * linux-tdep.c: Include `cli/cli-utils.h'.
10061 (linux_fill_prpsinfo): New function.
10062 (linux_make_corefile_notes): Use linux_fill_prpsinfo. If there's
10063 an elfcore_write_linux_prpsinfo hook, use it, otherwise, use
10064 elfcore_write_linux_prpsinfo32 or elfcore_write_linux_prpsinfo64
10065 depending on gdbarch pointer bitness.
10066 * ppc-linux-tdep.c: Include elf-bfd.h.
10067 (ppc_linux_init_abi): Hook in elfcore_write_ppc_linux_prpsinfo32
10068 on 32-bit.
10069
10070 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
10071 Marcus Shawcroft <marcus.shawcroft@arm.com>
10072 Nigel Stephens <nigel.stephens@arm.com>
10073 Yufeng Zhang <yufeng.zhang@arm.com>
10074
10075 * configure.tgt (aarch64*-*-linux*): Set build_gdbserver=yes.
10076
10077 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
10078 Marcus Shawcroft <marcus.shawcroft@arm.com>
10079 Nigel Stephens <nigel.stephens@arm.com>
10080 Yufeng Zhang <yufeng.zhang@arm.com>
10081
10082 * aarch64-newlib-tdep.c: New file.
10083 * configure.tgt: Add aarch64-newlib-tdep.o to gdb_target_obs of
10084 aarch64*-*-elf.
10085 * defs.h (enum gdb_osabi): Add GDB_OSABI_NEWLIB.
10086 * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-newlib-tdep.o.
10087 (ALLDEPFILES): Add aarch64-newlib-tdep.c.
10088 * osabi.c (gdb_osabi_names): Add "Newlib".
10089
10090 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
10091 Marcus Shawcroft <marcus.shawcroft@arm.com>
10092 Nigel Stephens <nigel.stephens@arm.com>
10093 Yufeng Zhang <yufeng.zhang@arm.com>
10094
10095 * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-linux-tdep.o.
10096 (ALLDEPFILES): Add aarch64-linux-tdep.c.
10097 * aarch64-linux-tdep.c: New file.
10098 * aarch64-linux-tdep.h: New file.
10099 * aarch64-tdep.h (gdbarch_tdep): Define gregset and fpregset.
10100 * configure.tgt: Add aarch64-none-linux-gnu.
10101
10102 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
10103 Marcus Shawcroft <marcus.shawcroft@arm.com>
10104 Nigel Stephens <nigel.stephens@arm.com>
10105 Yufeng Zhang <yufeng.zhang@arm.com>
10106
10107 * Makefile.in (ALL_64_TARGET_OBS): Add arch64-tdep.o.
10108 (HFILES_NO_SRCDIR): Add aarch64-tdep.h.
10109 (ALLDEPFILES): Add aarch64-tdep.c.
10110 * aarch64-tdep.c: New file.
10111 * aarch64-tdep.h: New file.
10112 * configure.tgt: Add AArch64.
10113 * features/Makefile (WHICH): Add aarch64 and aarch64-without-fpu.
10114 (aarch64-expedite): New definition.
10115 * features/aarch64-core.xml: New file.
10116 * features/aarch64-fpu.xml: New file.
10117 * features/aarch64-without-fpu.c: New file (generated).
10118 * features/aarch64-without-fpu.xml: New file.
10119 * features/aarch64.c: New file (generated).
10120 * features/aarch64.xml: New file.
10121 * regformats/aarch64-without-fpu.dat: New file (generated).
10122 * regformats/aarch64.dat: New file (generated).
10123
10124 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10125
10126 * contrib/expect-read1.c: New file.
10127 * contrib/expect-read1.sh: New file.
10128
10129 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10130
10131 * dwarf2read.c (file_file_name): New function with code from
10132 file_full_name.
10133 (file_full_name): Move most of the code to file_file_name.
10134 (macro_start_file): Rename variable full_name to file_name and use
10135 file_file_name for it. Add comp_dir parameter to new_macro_table.
10136 * macrocmd.c (show_pp_source_pos): New variable fullname. Replace any
10137 macro_source_file->filename access by macro_source_fullname call.
10138 * macroscope.c (_initialize_macroscope): Update the new_macro_table
10139 caller.
10140 * macrotab.c (struct macro_table): New field comp_dir.
10141 (macro_include): New variables link_fullname and source_fullname.
10142 Replace any macro_source_file->filename access by macro_source_fullname
10143 call.
10144 (macro_lookup_inclusion): Remove the partial filenames checking code.
10145 (check_for_redefinition): New variables source_fullname and
10146 found_key_fullname. Replace any macro_source_file->filename access by
10147 macro_source_fullname call.
10148 (macro_undef): New variables source_fullname and key_fullname. Replace
10149 any macro_source_file->filename access by macro_source_fullname call.
10150 (macro_lookup_definition): New variables retval and source_fullname.
10151 Replace any macro_source_file->filename access by macro_source_fullname
10152 call.
10153 (foreach_macro): New variable key_fullname. Replace any
10154 macro_source_file->filename access by macro_source_fullname call.
10155 (foreach_macro_in_scope): New variable datum_fullname. Replace any
10156 macro_source_file->filename access by macro_source_fullname call.
10157 (new_macro_table): Add parameter comp_dir. Initialize T with it.
10158 (macro_source_fullname): New function.
10159 * macrotab.h (struct macro_source_file): Extent the filename field
10160 comment.
10161 (new_macro_table): New parameter comp_dir, add a comment for it.
10162 (macro_source_fullname): new declaration.
10163
10164 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10165
10166 * dwarf2read.c (dw2_map_symtabs_matching_filename): Move variable
10167 this_real_name to outer block. Use it also for
10168 compare_filenames_for_search.
10169 (dw2_expand_symtabs_matching): New variable this_real_name. Use it
10170 with dw2_get_real_path for file_matcher, considering also
10171 BASENAMES_MAY_DIFFER.
10172 (file_full_name): Prepend COMP_DIR even for relative lh->INCLUDE_DIRS.
10173
10174 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10175
10176 * dwarf2read.c (dw2_expand_symtabs_matching): Add basenames parameter
10177 to the file_matcher parameter. Pass 0 to it.
10178 (dwarf2_create_include_psymtab): Copy also DIRNAME.
10179 * psymtab.c (partial_map_symtabs_matching_filename): Drop handling of
10180 NULL psymtab_to_fullname result.
10181 (psymtab_to_fullname): Remove variable r. Never return NULL, assemble
10182 an expected filename instead.
10183 (expand_symtabs_matching_via_partial): Add basenames parameter to the
10184 file_matcher parameter. Call also psymtab_to_fullname, after newly
10185 considering BASENAMES_MAY_DIFFER.
10186 * source.c (rewrite_source_path): Remove static.
10187 * source.h (rewrite_source_path): New declaration.
10188 * symfile.h (struct quick_symbol_functions): Add basenames parameter to
10189 the expand_symtabs_matching field. Comment it.
10190 * symtab.c (file_matches): New function comment. Add parameter
10191 basenames, implement it.
10192 (search_symbols_file_matches): Add basenames parameter. Update the
10193 file_matches caller.
10194 (search_symbols): Match FILES also against symtab_to_fullname.
10195 Optimize it for BASENAMES_MAY_DIFFER.
10196
10197 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10198
10199 * source.c (print_source_lines_base): Print for TUI also "fullname".
10200 * tui/tui-data.c (init_content_element): Change tui_locator_element
10201 field to full_name.
10202 * tui/tui-data.h (struct tui_locator_element): Likewise.
10203 * tui/tui-disasm.c (tui_show_disassem_and_update_source): Rename
10204 tui_update_locator_filename calls to tui_update_locator_fullname.
10205 Replace symtab->filename refererence by symtab_to_fullname call.
10206 * tui/tui-out.c (tui_field_string): Check for "fullname" now.
10207 * tui/tui-source.c (tui_set_source_content): Change tui_locator_element
10208 field to full_name. Replace symtab->filename refererence by
10209 symtab_to_fullname call.
10210 (tui_show_symtab_source): Rename parameter to fullname. Change
10211 tui_locator_element field to full_name.
10212 * tui/tui-stack.c: Include source.h.
10213 (tui_set_locator_filename): Rename the declaration to ...
10214 (tui_set_locator_fullname): ... here. Rename its parameter to
10215 fullname, updates its comment.
10216 (tui_set_locator_info): Rename its parameter to fullname.
10217 (tui_set_locator_filename): Rename the definition to ...
10218 (tui_set_locator_fullname): ... here. Rename its parameter to
10219 fullname, updates its comment. Change tui_locator_element field to
10220 full_name.
10221 (tui_set_locator_info): Rename its parameter to fullname.
10222 (tui_set_locator_info): Rename callee to tui_set_locator_fullname.
10223 (tui_update_locator_filename): Rename to ...
10224 (tui_update_locator_fullname): ... here. Rename callee to
10225 tui_set_locator_fullname.
10226 (tui_show_frame_info): Replace symtab->filename refererence by
10227 symtab_to_fullname call.
10228 * tui/tui-stack.h (tui_update_locator_filename): Rename to ...
10229 (tui_update_locator_fullname): ... here.
10230 * tui/tui-winsource.c (tui_display_main): Rename the callee to
10231 tui_update_locator_fullname. Replace symtab->filename refererence by
10232 symtab_to_fullname call.
10233 * tui/tui.c (tui_show_source): Rename its parameter to fullname.
10234 Rename the callee to tui_update_locator_fullname.
10235 * tui/tui.h (tui_show_source): Rename its parameter to fullname.
10236
10237 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10238
10239 * ada-lang.c (user_select_syms): Replace symtab->filename refererences
10240 by symtab_to_filename_for_display calls.
10241 * breakpoint.c (print_breakpoint_location, resolve_sal_pc): Likewise.
10242 (clear_command): New variable sal_fullname, initialize it. Replace
10243 compare_filenames_for_search by filename_cmp with sal_fullname.
10244 (say_where, update_static_tracepoint): Replace symtab->filename
10245 refererences by symtab_to_filename_for_display calls.
10246 * cli/cli-cmds.c (edit_command, list_command, ambiguous_line_spec):
10247 Likewise.
10248 * dwarf2read.c: Include source.h.
10249 (fixup_go_packaging): Replace symtab->filename refererences by
10250 symtab_to_filename_for_display calls.
10251 * linespec.c (add_sal_to_sals): Rename variable filename to fullname.
10252 Replace symtab->filename refererences by symtab_to_filename_for_display
10253 calls.
10254 (create_sals_line_offset, convert_linespec_to_sals): New variable
10255 fullname, initialize it, replace symtab->filename reference by the
10256 variable.
10257 * linux-fork.c: Include source.h.
10258 (info_checkpoints_command): Replace symtab->filename refererences by
10259 symtab_to_filename_for_display calls.
10260 * macroscope.c (sal_macro_scope): Replace symtab->filename refererences
10261 by symtab_to_filename_for_display calls.
10262 * mdebugread.c: Include source.h.
10263 (psymtab_to_symtab_1): Replace symtab->filename refererences by
10264 symtab_to_filename_for_display calls.
10265 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file)
10266 (mi_cmd_file_list_exec_source_files): Likewise.
10267 * printcmd.c: Include source.h.
10268 (build_address_symbolic): Replace symtab->filename refererences by
10269 symtab_to_filename_for_display calls.
10270 * psymtab.c (partial_map_symtabs_matching_filename)
10271 (read_psymtabs_with_fullname): Call compare_filenames_for_search also
10272 with psymtab_to_fullname.
10273 * python/py-symtab.c (stpy_str): Replace symtab->filename refererences
10274 by symtab_to_filename_for_display calls.
10275 (stpy_get_filename): New variable filename, initialize it, use instead
10276 of symtab->filename refererences.
10277 (salpy_str): Make variable filename const char *. Replace
10278 symtab->filename refererences by symtab_to_filename_for_display calls.
10279 * skip.c: Include source.h and filenames.h.
10280 (skip_file_command): Remove const from the symtab variable. Replace
10281 symtab->filename refererences by symtab_to_fullname call.
10282 (function_name_is_marked_for_skip): New variables searched_for_fullname
10283 and fullname. Use them to search also with symtab's fullname.
10284 * source.c (find_source_lines): Replace symtab->filename refererences
10285 by symtab_to_filename_for_display calls.
10286 (print_source_lines_base): New variable filename, use it instead of
10287 symtab->filename. Replace symtab->filename refererences by
10288 symtab_to_filename_for_display calls.
10289 (line_info, forward_search_command): Replace symtab->filename
10290 refererences by symtab_to_filename_for_display calls.
10291 (reverse_search_command): Replace symtab->filename refererences by
10292 symtab_to_filename_for_display calls. New variable filename for it.
10293 * stack.c (frame_info): Likewise.
10294 * symmisc.c: Include source.h.
10295 (dump_objfile, dump_symtab_1, maintenance_print_symbols)
10296 (maintenance_info_symtabs): Replace symtab->filename refererences by
10297 symtab_to_filename_for_display calls.
10298 * symtab.c (iterate_over_some_symtabs): Call
10299 compare_filenames_for_search also with symtab_to_fullname.
10300 (lookup_symbol_aux_quick, basic_lookup_transparent_type_quick): Replace
10301 symtab->filename refererences by symtab_to_filename_for_display calls.
10302 (find_line_symtab): Replace symtab->filename refererences by
10303 symtab_to_filename_for_display calls.
10304 (file_matches): Replace filename_cmp by compare_filenames_for_search.
10305 (print_symbol_info): Make the last parameter const char *. New
10306 variable s_filename. Use it in the function.
10307 (symtab_symbol_info): Make the last_filename variable const char *.
10308 Replace symtab->filename refererences by symtab_to_filename_for_display
10309 calls.
10310 (rbreak_command): New variable fullname. Use it. Replace
10311 symtab->filename refererence by symtab_to_filename_for_display call.
10312 * tracepoint.c (set_traceframe_context, trace_find_line_command)
10313 (print_one_static_tracepoint_marker): Replace symtab->filename
10314 refererences by symtab_to_filename_for_display calls.
10315 * tui/tui-source.c (tui_set_source_content): New variables filename and
10316 s_filename. Replace symtab->filename refererences by this variable.
10317 Replace other symtab->filename refererences by
10318 symtab_to_filename_for_display calls.
10319
10320 2013-02-03 Eldar Gaynetdinov <hal9000ed2k@gmail.com>
10321 Jan Kratochvil <jan.kratochvil@redhat.com>
10322
10323 Add a new variable that controls a way in which filenames are
10324 displayed.
10325 * NEWS (set filename-display): New entry.
10326 * source.c (filename_display_basename, filename_display_relative)
10327 (filename_display_absolute, filename_display_kind_names)
10328 (filename_display_string, show_filename_display_string)
10329 (symtab_to_filename_for_display): New.
10330 (_initialize_source): Added initialization of 'filename-display'
10331 variable.
10332 * source.h (symtab_to_filename_for_display): Added declaration.
10333 * stack.c (print_frame): Added new variable and calling of a new
10334 function and condition with this variable. Changed third argument of
10335 calling of a function.
10336
10337 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10338
10339 * tui/tui-data.c (init_win_info, tui_del_window, tui_free_window):
10340 Rename field reference filename to fullname.
10341 * tui/tui-data.h (struct tui_source_info): Rename field filename to
10342 fullname. New comment for it.
10343 * tui/tui-source.c (tui_set_source_content): Rename field reference
10344 filename to fullname. Initialize field by symtab_to_fullname now.
10345 * tui/tui-winsource.c (tui_update_breakpoint_info): Rename field
10346 reference filename to fullname. Use symtab_to_fullname during
10347 comparison.
10348
10349 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10350
10351 Code cleanup.
10352 * dwarf2read.c (dw2_expand_symtabs_with_filename): Rename to ...
10353 (dw2_expand_symtabs_with_fullname): ... here. Rename parameter
10354 filename to fullname. Rename variable this_name to this_fullname.
10355 Lowercase FILENAME_CMP call.
10356 (dw2_find_symbol_file): New comment for the returned string.
10357 (dwarf2_gdb_index_functions): Rename the function to
10358 dw2_expand_symtabs_with_fullname.
10359 * psymtab.c (read_psymtabs_with_filename): Rename to ...
10360 (read_psymtabs_with_fullname): ... here. Rename parameter filename to
10361 fullname.
10362 (psym_functions): Rename the function to read_psymtabs_with_fullname.
10363 * symfile.h (struct quick_symbol_functions): Rename field
10364 expand_symtabs_with_filename to expand_symtabs_with_fullname and its
10365 parameter filename to fullname. Document returned string meaning for
10366 find_symbol_file.
10367 * symtab.c (find_line_symtab): Rename the called function to
10368 expand_symtabs_with_fullname.
10369
10370 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10371
10372 Code cleanup.
10373 * breakpoint.c (clear_command): Remove variable is_abs, unify the
10374 call of filename_cmp with compare_filenames_for_search.
10375 * dwarf2read.c (dw2_map_symtabs_matching_filename): Remove variable
10376 is_abs, unify the call of FILENAME_CMP with
10377 compare_filenames_for_search. New gdb_asserts for real_path and name.
10378 Unify the call of compare_filenames_for_search with FILENAME_CMP.
10379 * psymtab.c (partial_map_symtabs_matching_filename): Likewise.
10380 * symfile.h (struct quick_symbol_functions): Extend the comment for
10381 map_symtabs_matching_filename.
10382 * symtab.c (compare_filenames_for_search): Remove the function comment
10383 relative path requirement. Handle absolute filenames, with a comment.
10384 (iterate_over_some_symtabs): Remove variable is_abs, unify the call of
10385 FILENAME_CMP with compare_filenames_for_search. New gdb_asserts for
10386 real_path and name. Unify the call of compare_filenames_for_search
10387 with FILENAME_CMP.
10388 (iterate_over_symtabs): New gdb_assert on REAL_PATH.
10389
10390 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10391
10392 Code cleanup.
10393 * breakpoint.c (print_breakpoint_location): Replace bp_location field
10394 source_file references by symtab field references. Remove variables
10395 sal and fullname.
10396 (momentary_breakpoint_from_master, add_location_to_breakpoint):
10397 (clear_command, say_where): Replace bp_location field source_file
10398 references by symtab field references.
10399 (bp_location_dtor): Remove the source_file reference.
10400 (update_static_tracepoint): Replace bp_location field source_file
10401 references by symtab field references.
10402 (breakpoint_free_objfile): New function.
10403 * breakpoint.h (struct bp_location): Extend the comment for line_number.
10404 Replace the field source_file by field symtab, extend its comment.
10405 (breakpoint_free_objfile): New declaration.
10406 * objfiles.c (free_objfile): Call breakpoint_free_objfile.
10407 * tui/tui-winsource.c (tui_update_breakpoint_info): Replace bp_location
10408 field source_file references by symtab field references.
10409
10410 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10411
10412 Replace xfullpath calls by gdb_realpath calls.
10413 * cli/cli-cmds.c (find_and_open_script): Remove xfullpath from the
10414 function comment.
10415 * dwarf2read.c (dw2_map_expand_apply): Remove parameter full_path.
10416 Remove it from the iterate_over_some_symtabs call.
10417 (dw2_map_symtabs_matching_filename): Remove parameter full_path.
10418 Remove it from the dw2_map_expand_apply calls, remove a block handling
10419 it.
10420 * psymtab.c (partial_map_expand_apply): Remove parameter full_path.
10421 Remove it from the iterate_over_some_symtabs call.
10422 (partial_map_symtabs_matching_filename): Remove parameter full_path.
10423 Remove it from the partial_map_expand_apply calls, remove a block
10424 handling it. Drop gdb_realpath call and cleanups from the real_path
10425 handling.
10426 * source.c (openp): Drop the comment part about xfullpath. Replace
10427 xfullpath calls by gdb_realpath calls.
10428 (find_and_open_source): Replace xfullpath call by gdb_realpath call.
10429 * symfile.h (struct quick_symbol_functions): Remove parameter full_path
10430 from method map_symtabs_matching_filename and its comment.
10431 * symmisc.c (maintenance_print_msymbols): Replace xfullpath call by
10432 gdb_realpath call.
10433 * symtab.c (iterate_over_some_symtabs): Remove parameter full_path,
10434 remove it also from the function comment, remove a block handling it.
10435 Drop gdb_realpath call and cleanups from the real_path handling.
10436 (iterate_over_symtabs): Drop variable full_path and its use.
10437 * symtab.h (iterate_over_some_symtabs): Remove parameter full_path.
10438 * utils.c (xfullpath): Remove.
10439 * utils.h (xfullpath): Remove.
10440
10441 2013-02-01 Andreas Tobler <andreast@fgznet.ch>
10442
10443 * Makefile.in (ALL_TARGET_OBS): Add ppc64-tdep.o.
10444 (HFILES_NO_SRCDIR): Add ppc64-tdep.h.
10445 (ALLDEPFILES): Add ppc64-tdep.c.
10446 * configure.tgt (powerpc-*-linux* | powerpc64-*-linux*): Add
10447 ppc64-tdep.o to gdb_target_obs.
10448 * ppc64-tdep.h: New file.
10449 * ppc64-tdep.c: New file.
10450 (insn_d, insn_ds, insn_xfx, ppc64_desc_entry_point): Move from
10451 ppc-linux-tdep.c to here.
10452 (PPC64_STANDARD_LINKAGE1_LEN, PPC64_STANDARD_LINKAGE2_LEN)
10453 (PPC64_STANDARD_LINKAGE2_LEN): Likewise and use ARRAY_SIZE macro.
10454 (ppc64_standard_linkage1_target, ppc64_standard_linkage2_target)
10455 (ppc64_standard_linkage3_target, ppc64_skip_trampoline_code): Move
10456 from ppc-linux-tdep.c to here.
10457 (ppc64_convert_from_func_ptr_addr): Rename from
10458 ppc64_linux_convert_from_func_ptr_addr to
10459 ppc64_convert_from_func_ptr_addr and move from ppc-linux-tdep.c to
10460 here.
10461 * rs6000-tdep.c:
10462 (read_insn): Move from ppc-linux-tdep.c to here.
10463 (insns_match_pattern, insn_d_field, insn_ds_field): Move
10464 from ppc-linux-tdep.c to here and rename them with the ppc_ prefix.
10465 * ppc-linux-tdep.c: Include ppc64-tdep.h.
10466 Removed above functions.
10467 (ppc_linux_init_abi): Adjust.
10468
10469 2013-02-01 Aleksandar Ristovski <aristovski@qnx.com>
10470
10471 * ada-valprint.c (ada_print_floating): Remove unused 'len'.
10472
10473 2013-02-01 Aleksandar Ristovski <aristovski@qnx.com>
10474
10475 * ada-lang.c (assign_aggregate): Remove unused 'is_array_aggregate'.
10476
10477 2013-02-01 Pedro Alves <palves@redhat.com>
10478
10479 * dummy-frame.c (deprecated_pc_in_call_dummy): Delete function.
10480 * frame.h (deprecated_pc_in_call_dummy): Delete declaration.
10481
10482 2013-02-01 Jan Kratochvil <jan.kratochvil@redhat.com>
10483
10484 * elfread.c (elf_symfile_read): Limit separate debug info additions to
10485 files with no separate debug info.
10486 * objfiles.c (add_separate_debug_objfile): Add gdb_assert calls.
10487 * symfile.c (read_symbols): Call find_separate_debug_file_in_section
10488 only for files with no separate debug info.
10489
10490 2013-01-31 Tom Tromey <tromey@redhat.com>
10491
10492 * jit.c (jit_program_space_data): Rename from jit_inferior_data;
10493 change type.
10494 (struct jit_program_space_data): Rename from jit_inferior_data.
10495 Update comments.
10496 (get_jit_program_space_data): Rename from get_jit_inferior_data.
10497 Change return type. Attach data to program space.
10498 (jit_program_space_data_cleanup): Rename from
10499 jit_inferior_data_cleanup; change argument type.
10500 (jit_read_descriptor): Change 'inf_data' argument to 'ps_data',
10501 change type.
10502 (jit_register_code): Update.
10503 (jit_update_inferior_cache): Remove.
10504 (jit_breakpoint_deleted): Get jit data from the location's program
10505 space.
10506 (jit_breakpoint_re_set_internal): Rename 'inf_data' argument to
10507 'ps_data', change type.
10508 (jit_inferior_init, jit_breakpoint_re_set_internal)
10509 (jit_event_handler): Update.
10510 (free_objfile_data): Get data from objfile's program space.
10511 (_initialize_jit): Update.
10512
10513 2013-01-31 Tom Tromey <tromey@redhat.com>
10514
10515 PR gdb/13987:
10516 * jit.c (struct jit_inferior_data) <cached_code_address,
10517 jit_breakpoint>: New fields.
10518 (jit_breakpoint_re_set_internal): Fix logging. Only create
10519 breakpoint if cached address has changed.
10520 (jit_update_inferior_cache, jit_breakpoint_deleted): New
10521 functions.
10522 (_initialize_jit): Register breakpoint deleted observer.
10523
10524 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
10525
10526 * infrun.c (handle_syscall_event): Remove unused gdbarch.
10527 (save_infcall_suspend_state): Ifdef out unused inf.
10528 (restore_infcall_suspend_state): Ifdef out unused inf.
10529 * jit.c (jit_register_code): Remove unused i, b, inf_data.
10530 (jit_frame_sniffer): Remove unused inf_data.
10531
10532 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
10533
10534 * c-exp.y (classify_inner_name): Remove unused type.
10535 * c-lang.c (c_printstr): Remove unused byte_order, i, things_printed,
10536 in_quotes, need_comma, wchar_buf, output, cleanup, iter, finished,
10537 need_escape.
10538 (c_get_string): Remove unused kind.
10539 * c-typeprint.c (c_type_print_args): Remove unused i, len, args, table2.
10540
10541 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
10542
10543 * charset.c (intermediate_encoding): Remove unused i.
10544 * completer.c (signal_completer): Remove unused i.
10545 * continuations.c (discard_my_continuations_1): Remove unused
10546 continuation_ptr.
10547 * corelow.c (core_close): Remove unuseD name.
10548 (get_core_siginfo): Remove unused pid.
10549 * cp-namespace.c (cp_lookup_symbol_imports_or_template): Remove unused
10550 i, cps.
10551 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Remove unused base_offset.
10552 (loclist_describe_location): Remove unused first.
10553 * event-top.c (command_line_handler): Remove unused got_eof.
10554 * exec.c (exec_close_1): Remove unused need_symtab_cleanup.
10555 (resize_section_table): Remove unused old_value.
10556 * gdb_bfd.c (gdb_bfd_map_section): Remove unused header.
10557 * gnu-v3-abi.c (compute_vtable_size): Remove unused addr.
10558 * i386-tdep.c (i386_process_record): Remove unused rex.
10559 * infcmd.c (get_return_value): Remove unused uiout.
10560 * jv-lang.c (type_from_class): Remove unused is_array.
10561 * jv-valprint.c (java_val_print): Remove unused i.
10562 * linux-nat.c (linux_nat_stop_lwp): Remove unused ptid.
10563 * linux-thread-db.c (thread_db_find_new_threads_2): Remove unuseD pid.
10564 * m2-typeprint.c (m2_print_type): Remove unused code.
10565 * macroexp.c (get_character_constant): Remove unused body_start.
10566 (macro_stringify): Remove unused result.
10567 * objc-lang.c (find_methods): Remove unused gdbarch.
10568 * objfiles.c (filter_overlapping_sections): Remove unused abfd1, abfd2.
10569 * regcache.c (regcache_cooked_read): Remove unused gdbarch.
10570 * stack.c (print_frame_args): Remove unused summary.
10571 * thread.c (thread_apply_command): Remove unused p.
10572 * valarith.c (value_x_unop): Remove unused mangle_ptr.
10573 * valops.c (search_struct_method): Remove unused skip.
10574 * valprint.c (generic_val_print): Remove unused byte_order.
10575 * varobj.c (varobj_update): Remove unused changed.
10576 * cli/cli-cmds.c (complete_command): Remove unused next_item.
10577 (alias_command): Remove unused c.
10578 * mi/mi-cmd-catch.c (mi_catch_load_unload): Remove unused c.
10579 * mi/mi-main.c (mi_cmd_data_write_register_values): Remove unused
10580 format.
10581 (mi_cmd_data_write_memory): Remove unused word_format.
10582 (mi_cmd_data_write_memory_bytes): Remove unused r.
10583 * python/py-gdb-readline.c (gdbpy_readline_wrapper): Remove unused
10584 p_start, p_end.
10585 * python/python.c (_initialize_python): Remove unused cmd_name, cmd.
10586 * tui/tui-disasm.c (tui_set_disassem_content): Remove unused
10587 line_width.
10588
10589 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
10590
10591 * dwarf2-frame.c (dwarf2_compile_cfa_to_ax): Remove unused num_regs.
10592 * symtab.c (iterate_over_symtabs): Remove unused s.
10593 (find_pc_sect_symtab): Remove unused pspAce.
10594 (find_pc_sect_line): Remove unused alt_symtab.
10595 (find_pcs_for_symtab_line): Remove unused ix, previous_function.
10596 (completion_list_add_name): Remove unused newsize.
10597
10598 2013-01-31 Tom Tromey <tromey@redhat.com>
10599
10600 PR c++/14998:
10601 * dwarf2read.c (read_tag_ptr_to_member_type): Handle
10602 TYPE_CODE_FUNC.
10603
10604 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
10605
10606 * target.c (target_read_string): Remove unused origlen.
10607
10608 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
10609
10610 * auto-load.c (auto_load_expand_dir_vars): Remove unused dir_vec.
10611 * ax-gdb.c (gen_printf): Remove unused expr, i, bot, fr, flen, fmt.
10612 * ax-general.c (ax_print): Remove unused is_float.
10613 * blockframe.c (block_innermost_frame): Remove unused start, end.
10614 * break-catch-sig.c (catch_signal_command): Remove unused gdbarch.
10615
10616 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
10617
10618 * solib-svr4.c (svr4_keep_data_in_core): Remove unused lmo.
10619 (svr4_read_so_list): Remove unused lmo.
10620 * solib-target.c (solib_target_relocate_section_addresses): Remove
10621 unused flags.
10622
10623 2013-01-30 Tom Tromey <tromey@redhat.com>
10624
10625 * hppa-tdep.c (read_unwind_info): Use SECT_OFF_TEXT, not "0".
10626
10627 2013-01-30 Tom Tromey <tromey@redhat.com>
10628
10629 * symfile.c (get_file_crc): Use bfd_calc_gnu_debuglink_crc32.
10630 * utils.c (gnu_debuglink_crc32): Remove.
10631 * utils.h (gnu_debuglink_crc32): Don't declare.
10632
10633 2013-01-30 Tom Tromey <tromey@redhat.com>
10634
10635 * dwarf2read.c (compute_delayed_physnames, read_call_site_scope)
10636 (read_structure_type, read_enumeration_type): Remove cast.
10637
10638 2013-01-30 Tom Tromey <tromey@redhat.com>
10639
10640 * dwarf2read.c (read_namespace_type): Remove cast.
10641 (read_typedef): Likewise.
10642
10643 2013-01-29 Tom Tromey <tromey@redhat.com>
10644
10645 * dwarf2read.c (free_dwo_file): Remove assert.
10646
10647 2013-01-29 Tom Tromey <tromey@redhat.com>
10648
10649 * value.c (deprecated_set_value_modifiable): Remove.
10650 * value.h (deprecated_set_value_modifiable): Remove.
10651
10652 2013-01-28 Doug Evans <dje@google.com>
10653
10654 * dwarf2loc.c (dwarf2_find_location_expression): Don't add base address
10655 to addresses from dwo files.
10656
10657 2013-01-25 Siva Chandra Reddy <sivachandra@google.com>
10658
10659 * valops.c (find_overload_match): Remove unused argument 'lax'.
10660 * value.h: Remove unused argument 'lax' from the declaration of
10661 find_overload_match.
10662 * eval.c (value_subexp_standard): Do not pass a 'lax' argument
10663 to find_overload_match.
10664 * valarith.c (value_user_defined_cpp_op): Do not pass a 'lax'
10665 argument to find_overload_match.
10666
10667 2013-01-25 Tom Tromey <tromey@redhat.com>
10668
10669 * dwarf2read.c (processing_has_namespace_info): Remove.
10670 (struct dwarf2_cu) <processing_has_namespace_info>: New field.
10671 (process_die, read_func_scope, dwarf2_start_symtab)
10672 (new_symbol_full): Update.
10673
10674 2013-01-25 Tom Tromey <tromey@redhat.com>
10675
10676 * cp-namespace.c (cp_set_block_scope): Remove.
10677 * cp-support.h (cp_set_block_scope): Remove.
10678 * dbxread.c: Include block.h.
10679 (cp_set_block_scope): New function.
10680 (process_one_symbol): Update.
10681 * dwarf2read.c (read_func_scope): Use block_set_scope.
10682
10683 2013-01-25 Pedro Alves <palves@redhat.com>
10684
10685 * remote.c (add_current_inferior_and_thread): Tweak comment.
10686
10687 2013-01-25 Tom Tromey <tromey@redhat.com>
10688
10689 * cp-namespace.c (cp_scan_for_anonymous_namespaces): Update.
10690 (cp_add_using_directive): Add 'copy_names' argument.
10691 * cp-support.h (cp_add_using_directive): Update.
10692 (struct using_direct) <import_src, import_dest, alias,
10693 declaration>: Now const.
10694 * dwarf2read.c (read_import_statement): Use obconcat.
10695 Don't copy names passed to cp_add_using_directive.
10696
10697 2013-01-25 Tom Tromey <tromey@redhat.com>
10698
10699 * c-exp.y (qualified_name): Use TYPE_SAFE_NAME.
10700
10701 2013-01-25 Pedro Alves <palves@redhat.com>
10702
10703 * remote.c (stop_reply_extract_thread): New.
10704 (add_current_inferior_and_thread): New parameter 'wait_status'.
10705 Handle it.
10706 (remote_start_remote): Pass wait status to
10707 add_current_inferior_and_thread.
10708 (extended_remote_run): Update comment.
10709 (extended_remote_create_inferior_1): Pass wait status to
10710 add_current_inferior_and_thread.
10711
10712 2013-01-25 Andrew Burgess <aburgess@broadcom.com>
10713 Ulrich Weigand <uweigand@de.ibm.com>
10714
10715 * valarith.c (value_vector_widen): New function for replicating a
10716 scalar into a vector.
10717 (value_binop): Use value_vector_widen to widen scalar to vector
10718 rather than casting, this better matches gcc C behaviour.
10719 * valops.c (value_casst): Update logic for casting between vector
10720 types, and for casting from scalar to vector, try to match gcc C
10721 behaviour.
10722 * value.h (value_vector_widen): Declare.
10723 * opencl-lang.c (opencl_value_cast): New opencl specific casting
10724 function, handle special case for casting scalar to vector.
10725 (opencl_relop): Use opencl_value_cast.
10726 (evaluate_subexp_opencl): Use opencl_value_cast instead of
10727 value_cast, and handle BINOP_ASSIGN, UNOP_CAST, and UNOP_CAST_TYPE
10728 in order to use opencl_value_cast.
10729
10730 2013-01-25 Yao Qi <yao@codesourcery.com>
10731
10732 * event-loop.c: Include "queue.h".
10733 (gdb_event_p): New typedef.
10734 (DECLARE_QUEUE_P): Use.
10735 (DEFINE_QUEUE_P): Use.
10736 (async_queue_event): Remove.
10737 (gdb_event_xfree): New.
10738 (initialize_event_loop): New.
10739 (process_event): Use QUEUE macros.
10740 (event_queue): Remove.
10741 (gdb_wait_for_event): Caller update.
10742 (check_async_event_handlers): Likewise.
10743 (poll_timers): Likewise.
10744 * event-loop.h (initialize_event_loop): Declare.
10745 * event-loop.c (gdb_event_xfree): New.
10746 * top.c (gdb_init): Call initialize_event_loop.
10747
10748 2013-01-25 Yao Qi <yao@codesourcery.com>
10749
10750 * event-loop.c (async_queue_event): Remove one parameter
10751 'position'. Remove code handling 'position' == TAIL.
10752 (gdb_wait_for_event): Caller update.
10753 (check_async_event_handlers): Caller update.
10754 (poll_timers): Caller update.
10755 * event-loop.h (enum queue_position): Remove.
10756
10757 2013-01-25 Maxim Kuvyrkov <maxim@kugelworks.com>
10758
10759 * MAINTAINERS: Update my email.
10760
10761 2013-01-25 Yao Qi <yao@codesourcery.com>
10762
10763 * main.c (print_gdb_help): Remove "--epoch" from the help
10764 message.
10765
10766 2013-01-24 Ulrich Weigand  <uweigand@de.ibm.com>
10767
10768 * symtab.c (skip_prologue_using_sal): Consider a file
10769 change the same as an increased line number
10770
10771 2013-01-24 Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
10772
10773 * MAINTAINERS (Write After Approval): Add myself to the list.
10774
10775 2013-01-24 Tom Tromey <tromey@redhat.com>
10776
10777 * ada-lang.h (ada_decode_symbol): Make return type const.
10778 * ada-lang.c (ada_decode_symbol): Likewise.
10779
10780 2013-01-23 Doug Evans <dje@google.com>
10781
10782 * linespec.c (find_linespec_symbols): Make static.
10783
10784 2013-01-23 Tiago Stürmer Daitx <tdaitx@linux.vnet.ibm.com>
10785
10786 * ppc-sysv-tdep.c (ppc64_sysv_abi_return_value): Set correct
10787 type on float conversion for complex type.
10788
10789 2013-01-23 Siva Chandra Reddy <sivachandra@google.com>
10790
10791 Add a new class gdb.Architecture which exposes GDB's
10792 internal representation of architecture via GDB Python API.
10793 * Makefile.in: Add entries corresponding to the new file
10794 python/py-arch.c.
10795 * NEWS (Python Scripting): Add entries for the new class
10796 gdb.Architecture and the new method gdb.Frame.architecture.
10797 * python/py-arch.c: Implement gdb.Architecture class.
10798 * python/py-frame.c (frapy_arch): Implement the method
10799 gdb.Frame.architecture().
10800 (frame_object_methods): Add 'architecture' to the method table.
10801 * python/python-internal.h: Add declarations of new utility
10802 functions.
10803 * python/python.c (_initialize_python): Initialize
10804 gdb.Architecture class.
10805
10806 2013-01-23 Doug Evans <dje@google.com>
10807
10808 Work around binutils/15021.
10809 * dwarf2read.c (dwarf2_per_cu_data): Split imported_symtabs and
10810 type_unit_group out of union s. All uses updated.
10811 (read_index_from_section): Watch for index version 8.
10812 (follow_die_sig): If using .gdb_index version <= 7, record the TU as
10813 an imported symtab.
10814 (write_psymtabs_to_index): Increment version number to 8.
10815
10816 2013-01-22 Pedro Alves <palves@redhat.com>
10817
10818 * annotate.c (breakpoint_changed): Skip if breakpoint is not
10819 user-visible.
10820
10821 2013-01-22 Pedro Alves <palves@redhat.com>
10822
10823 * annotate.c (annotate_breakpoints_changed): Rename to ...
10824 (annotate_breakpoints_invalid): ... this. Make static.
10825 (breakpoint_changed): Adjust.
10826 (_initialize_annotate): Always install the observers. Install a
10827 "breakpoint_created" observer.
10828 * annotate.h (annotate_breakpoints_changed): Delete declaration.
10829 * breakpoint.c (set_breakpoint_condition)
10830 (breakpoint_set_commands, do_map_commands_command)
10831 (init_raw_breakpoint, clear_command, set_ignore_count)
10832 (enable_breakpoint_disp): No longer call
10833 annotate_breakpoints_changed.
10834
10835 2013-01-22 Pedro Alves <palves@redhat.com>
10836
10837 * annotate.c: Include "inferior.h".
10838 (frames_invalid_emitted)
10839 (breakpoints_invalid_emitted): New globals.
10840 (async_background_execution_p): New function.
10841 (annotate_breakpoints_changed, annotate_frames_invalid): Skip
10842 emitting the annotation if it has already been emitted.
10843 (annotate_display_prompt): New function.
10844 * annotate.h (annotate_display_prompt): New declaration.
10845 * event-top.c: Include annotate.h.
10846 (display_gdb_prompt): Call annotate_display_prompt.
10847
10848 2013-01-22 Pedro Alves <palves@redhat.com>
10849
10850 * annotate.c (ignore_count_changed): Delete.
10851 (annotate_breakpoints_changed): Don't clear ignore_count_changed.
10852 (annotate_ignore_count_change): Delete.
10853 (annotate_stopped): Don't emit a delayed breakpoints-changed
10854 annotation.
10855 * annotate.h (annotate_ignore_count_change): Delete.
10856 * breakpoint.c (bpstat_check_breakpoint_conditions): Don't call
10857 annotate_ignore_count_change.
10858
10859 2013-01-22 Tom Tromey <tromey@redhat.com>
10860
10861 * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>: Only
10862 require_rvalue for a register location.
10863
10864 2013-01-21 Marc Khouzam <marc.khouzam@ericsson.com>
10865
10866 * breakpoint.c (print_one_breakpoint_location): Add MI
10867 field 'thread-groups' when printing a breakpoint.
10868 (output_thread_groups): New function.
10869
10870 2013-01-21 Siva Chandra Reddy <sivachandra@google.com>
10871
10872 * python/lib/gdb/commands/explore.py
10873 (CompoundExplorer.explore_expr): Correct the name of a method
10874 being invoked.
10875 (ExploreTypeCommand.invoke): Add a missing 'return'.
10876
10877 2013-01-21 Tom Tromey <tromey@redhat.com>
10878
10879 * gdb_obstack.h (obconcat): Move declaration here, from...
10880 * symfile.h (obconcat): ... here.
10881 * gdb_obstack.c: New file.
10882 (obconcat): Move from...
10883 * symfile.c (obconcat): ... here.
10884 * Makefile.in (SFILES): Add gdb_obstack.c.
10885 (COMMON_OBS): Add gdb_obstack.o.
10886
10887 2013-01-21 Tom Tromey <tromey@redhat.com>
10888
10889 * symfile.h (obsavestring): Don't declare.
10890 * symfile.c (obsavestring): Remove.
10891 * ada-exp.y: Use obstack_copy0, not obsavestring.
10892 * ada-lang.c: Use obstack_copy0, not obsavestring.
10893 * coffread.c: Use obstack_copy0, not obsavestring.
10894 * cp-namespace.c: Use obstack_copy0, not obsavestring.
10895 * dbxread.c: Use obstack_copy0, not obsavestring.
10896 * dwarf2read.c: Use obstack_copy0, not obsavestring.
10897 * jit.c: Use obstack_copy0, not obsavestring.
10898 * mdebugread.c: Use obstack_copy0, not obsavestring.
10899 * psymtab.c: Use obstack_copy0, not obsavestring.
10900 * stabsread.c: Use obstack_copy0, not obsavestring.
10901 * xcoffread.c: Use obstack_copy0, not obsavestring.
10902
10903 2013-01-21 Tom Tromey <tromey@redhat.com>
10904
10905 * dwarf2read.c (fixup_go_packaging): Save package name
10906 on objfile obstack.
10907 * gdbtypes.c (init_type): Don't copy name.
10908
10909 2013-01-21 Tom Tromey <tromey@redhat.com>
10910
10911 * dwarf2read.c (struct partial_die_info) <name, scope>: Now
10912 const.
10913 (struct attribute) <u.str>: Now const.
10914 (struct fnfieldlist) <name>: Now const.
10915 (dw2_get_file_names_reader, init_cutu_and_read_dies): Update.
10916 (partial_die_parent_scope): Make return type const.
10917 (partial_die_full_name, add_partial_symbol): Update.
10918 (dwarf2_compute_name, dwarf2_full_name, dwarf2_physname): Make
10919 'name' const.
10920 (find_file_and_directory): Make 'name' and 'comp_dir' const.
10921 (read_file_scope, read_func_scope, dwarf2_add_field)
10922 (dwarf2_add_member_fn, read_structure_type)
10923 (process_enumeration_scope, read_array_type, read_module_type)
10924 (read_base_type, read_subrange_type): Update.
10925 (dwarf2_start_symtab): Make 'name' and 'comp_dir' const.
10926 (new_symbol_full, guess_full_die_structure_name): Update.
10927 (dwarf2_canonicalize_name): Return const type. Make 'name' const.
10928 (dwarf2_name): Return const type.
10929 (dwarf_decode_macro_bytes, dwarf_decode_macros): Make 'comp_dir'
10930 const.
10931
10932 2013-01-21 Tom Tromey <tromey@redhat.com>
10933
10934 * gdbtypes.c (init_type): Make 'name' const.
10935 * gdbtypes.h (init_type): Update.
10936
10937 2013-01-21 Tom Tromey <tromey@redhat.com>
10938
10939 * buildsym.c (patch_subfile_names): Use set_last_source_file.
10940 (start_symtab): Make 'name' and 'dirname' const. Use
10941 set_last_source_file.
10942 (restart_symtab, reset_symtab_globals): Use set_last_source_file.
10943 (last_source_file): Define. Now static.
10944 (set_last_source_file, get_last_source_file): New functions.
10945 * buildsym.h (last_source_file): Don't declare.
10946 (start_symtab): Update.
10947 (set_last_source_file, get_last_source_file): Declare.
10948 * coffread.c (complete_symtab): Use set_last_source_file.
10949 (coff_end_symtab): Likewise.
10950 (coff_symtab_read): Use set_last_source_file, get_last_source_file.
10951 * dbxread.c (read_dbx_symtab, read_ofile_symtab): Use
10952 set_last_source_file.
10953 (process_one_symbol): Use get_last_source_file.
10954 * mdebugread.c (parse_partial_symbols): Use set_last_source_file.
10955 (psymtab_to_symtab_1): Use get_last_source_file.
10956 * xcoffread.c (process_linenos): Use get_last_source_file.
10957 (complete_symtab): Use set_last_source_file.
10958 (read_xcoff_symtab): Use set_last_source_file, get_last_source_file.
10959 (scan_xcoff_symtab): Use set_last_source_file.
10960
10961 2013-01-21 Tom Tromey <tromey@redhat.com>
10962
10963 * symtab.c (struct demangled_name_entry) <mangled>: Now const.
10964 (symbol_set_names): Remove casts. Handle field const-ness.
10965
10966 2013-01-21 Tom Tromey <tromey@redhat.com>
10967
10968 * dwarf2read.c (new_symbol_full): Remove cast.
10969 * symtab.c (symbol_set_demangled_name): Make 'name' const.
10970 * symtab.h (symbol_set_demangled_name): Update.
10971
10972 2013-01-21 Tom Tromey <tromey@redhat.com>
10973
10974 * main.c (captured_main): Call bfd_init.
10975
10976 2013-01-21 Tom Tromey <tromey@redhat.com>
10977
10978 * gnu-v2-abi.c (_initialize_gnu_v2_abi): Don't set default ABI.
10979 * gnu-v3-abi.c (_initialize_gnu_v3_abi): Set default ABI.
10980 * minsyms.c (install_minimal_symbols): Don't check for _Z symbols.
10981 * NEWS: Update.
10982
10983 2013-01-21 Jan Kratochvil <jan.kratochvil@redhat.com>
10984
10985 * symmisc.c (maintenance_print_msymbols): Check also ST_DEV.
10986
10987 2013-01-21 Jan Kratochvil <jan.kratochvil@redhat.com>
10988
10989 Fix gdb.fortran/common-block.exp crash in PIE mode.
10990 * dwarf2read.c (new_symbol_full) <DW_TAG_common_block>: Use
10991 LOC_COMMON_BLOCK.
10992 * f-valprint.c (info_common_command_for_block): Expect
10993 LOC_COMMON_BLOCK in gdb_assert.
10994 * symtab.h (struct general_symbol_info): Update comment for the
10995 common_block member.
10996 (domain_enum): Extend comment for the COMMON_BLOCK_DOMAIN member.
10997 (enum address_class): New member LOC_COMMON_BLOCK.
10998
10999 2013-01-18 David Blaikie <dblaikie@gmail.com>
11000
11001 * MAINTAINERS (Write After Approval): Add "David Blaikie".
11002
11003 2013-01-18 Tom Tromey <tromey@redhat.com>
11004
11005 PR c++/14999:
11006 * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>:
11007 Call require_rvalue.
11008
11009 2013-01-18 Yao Qi <yao@codesourcery.com>
11010
11011 * dbxread.c (dbx_psymtab_to_symtab): Delete the declaration.
11012 (dbx_read_symtab): New declaration.
11013 (dbx_psymtab_to_symtab): Delete.
11014 (dbx_read_symtab): Rename from dbx_psymtab_to_symtab.
11015 Rename parameter PST to SELF. Exchanged two parameters.
11016 (start_psymtab): Caller update.
11017 * dwarf2read.c (dwarf2_psymtab_to_symtab): Delete the declaration.
11018 (dwarf2_read_symtab): New declaration.
11019 (dwarf2_psymtab_to_symtab): Delete.
11020 (dwarf2_read_symtab): Rename from dwarf2_psymtab_to_symtab.
11021 Rename parameter PST to SELF. Exchanged two parameters.
11022 (create_partial_symtab): Caller update.
11023 * mdebugread.c (mdebug_psymtab_to_symtab): Delete.
11024 (mdebug_read_symtab): Rename from mdebug_psymtab_to_symtab.
11025 Rename parameter PST to SELF. Exchanged two parameters.
11026 (parse_partial_symbols, new_psymtab): Caller update.
11027 * psympriv.h (struct partial_symtab) <read_symtab>: Exchange
11028 two parameters.
11029 * psymtab.c (psymtab_to_symtab): Caller update.
11030 * xcoffread.c (xcoff_psymtab_to_symtab): Delete.
11031 (xcoff_read_symtab): Rename from xcoff_psymtab_to_symtab.
11032 Rename parameter PST to SELF. Exchanged two parameters.
11033 (xcoff_start_psymtab): Caller update.
11034
11035 2013-01-18 Yao Qi <yao@codesourcery.com>
11036
11037 * infrun.c (proceed): Rename local variable 'oneproc' to
11038 'force_step'.
11039
11040 2013-01-17 Doug Evans <dje@google.com>
11041
11042 * dwarf2read.c (dw2_build_type_unit_groups_reader): Delete.
11043 (dw2_build_type_unit_groups): Delete. All uses updated.
11044
11045 * symtab.h (struct symbol_search): Add comment.
11046
11047 2013-01-17 Jan Kratochvil <jan.kratochvil@redhat.com>
11048
11049 * symtab.c (compare_filenames_for_search): New comment for
11050 HAS_DRIVE_SPEC.
11051
11052 2013-01-17 Tom Tromey <tromey@redhat.com>
11053
11054 * cp-abi.c (cp_abi_completer): Fix typo in assignment.
11055
11056 2013-01-17 Jan Kratochvil <jan.kratochvil@redhat.com>
11057
11058 * symtab.c (iterate_over_some_symtabs): New variable cleanups,
11059 initialize it by existing make_cleanup. Call new do_cleanups.
11060
11061 2013-01-17 Tom Tromey <tromey@redhat.com>
11062
11063 * cp-abi.c (cp_abi_completer): New function.
11064 (_initialize_cp_abi): Set completer for "set cp-abi".
11065
11066 2013-01-17 Tom Tromey <tromey@redhat.com>
11067
11068 * mem-break.c: Remove obsolete comment.
11069 * bfin-tdep.c (bfin_breakpoint_from_pc): Fix comment.
11070
11071 2012-01-17 Sanjoy Das <sanjoy@playingwithpointers.com>
11072
11073 * jit.c (jit_reader_load_command): Interpret the jit reader name
11074 as an absolute path if it begins with a forward slash.
11075
11076 2012-01-17 Sanjoy Das <sanjoy@playingwithpointers.com>
11077
11078 PR gdb/14550
11079
11080 * jit.c (finalize_symtab): Ensure that only the global block has a
11081 NULL superblock.
11082
11083 2013-01-17 Pedro Alves <palves@redhat.com>
11084
11085 * acinclude.m4: Include ../config/plugins.m4,
11086 ../config/largefile.m4 and ../config/lead-dot.m4. Add comments.
11087 * Makefile.in (aclocal_m4_deps): Update.
11088 * aclocal.m4: Renegerate.
11089
11090 2013-01-16 Doug Evans <dje@google.com>
11091
11092 * contrib/cc-with-tweaks.sh: Add references to Fission docs.
11093
11094 2013-01-16 Pedro Alves <palves@redhat.com>
11095 Tom Tromey <tromey@redhat.com>
11096
11097 PR cli/7221:
11098 * NEWS: Add "catch signal".
11099 * breakpoint.c (base_breakpoint_ops): No longer static.
11100 (bpstat_explains_signal): New function.
11101 (init_catchpoint): No longer static.
11102 (base_breakpoint_explains_signal): New function.
11103 (base_breakpoint_ops): Initialize new field.
11104 * breakpoint.h (enum bpstat_signal_value): New.
11105 (struct breakpoint_ops) <explains_signal>: New field.
11106 (bpstat_explains_signal): Remove macro, declare as function.
11107 (base_breakpoint_ops, init_catchpoint): Declare.
11108 * break-catch-sig.c: New file.
11109 * inferior.h (signal_catch_update): Declare.
11110 * infrun.c (signal_catch): New global.
11111 (handle_syscall_event): Update for change to
11112 bpstat_explains_signal.
11113 (handle_inferior_event): Likewise. Always handle random signals
11114 via bpstats.
11115 (signal_cache_update): Check signal_catch.
11116 (signal_catch_update): New function.
11117 (_initialize_infrun): Initialize signal_catch.
11118 * Makefile.in (SFILES): Add break-catch-sig.c.
11119 (COMMON_OBS): Add break-catch-sig.o.
11120
11121 2013-01-16 Tom Tromey <tromey@redhat.com>
11122
11123 * breakpoint.c (print_one_catch_fork, print_one_catch_vfork)
11124 (print_one_catch_solib, print_one_catch_syscall)
11125 (print_one_catch_exec, print_one_exception_catchpoint): Emit
11126 "catch-type".
11127
11128 2013-01-16 Yao Qi <yao@codesourcery.com>
11129
11130 * printcmd.c (current_display_number): Make it static.
11131
11132 2013-01-16 Yao Qi <yao@codesourcery.com>
11133
11134 * infcmd.c (step_once): Don't check '!single_inst' as it was
11135 checked before.
11136
11137 2013-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
11138
11139 * dwarf2read.c (psymtab_include_file_name): Extend the function comment.
11140
11141 2013-01-14 Tom Tromey <tromey@redhat.com>
11142
11143 * cli/cli-decode.c (add_setshow_string_noescape_cmd): Return the
11144 set command.
11145 * command.h (add_setshow_string_noescape_cmd): Update.
11146 * corefile.c (set_gnutarget_command): Remove trailing whitespace.
11147 (complete_set_gnutarget): New function.
11148 (_initialize_core): Set the "set gnutarget" completer.
11149
11150 2013-01-14 Tom Tromey <tromey@redhat.com>
11151
11152 PR symtab/14442:
11153 * c-typeprint.c (cp_type_print_method_args): Handle 'restrict'.
11154 (c_type_print_modifier): Likewise.
11155 * dwarf2read.c (read_tag_restrict_type): New function.
11156 (read_type_die_1): Handle DW_TAG_restrict_type.
11157 * gdbtypes.c (make_restrict_type): New function.
11158 (recursive_dump_type): Handle TYPE_RESTRICT.
11159 * gdbtypes.h (enum type_flag_values): Renumber.
11160 (enum type_instance_flag_value): Add
11161 TYPE_INSTANCE_FLAG_RESTRICT.
11162 (TYPE_RESTRICT): New macro.
11163 (make_restrict_type): Declare.
11164
11165 2013-01-14 Tom Tromey <tromey@redhat.com>
11166
11167 PR symtab/14931:
11168 * psymtab.c (struct psymtab_state): New.
11169 (discard_psymtabs_upto, make_cleanup_discard_psymtabs): New
11170 functions.
11171 * psympriv.h (make_cleanup_discard_psymtabs): Declare.
11172 * dwarf2read.c (dwarf2_build_psymtabs): Catch exceptions.
11173
11174 2013-01-14 Richard Sharman <richard_sharman@mitel.com>
11175 Pedro Alves <palves@redhat.com>
11176
11177 PR remote/14786
11178
11179 * remote.c (remote_threads_info): Make a copy of the reply from
11180 qfThreadInfo and use that instead of rs->buf.
11181
11182 2013-01-14 Yao Qi <yao@codesourcery.com>
11183
11184 * dbxread.c (dbx_psymtab_to_symtab_1): Don't check PST is NULL.
11185 (dbx_psymtab_to_symtab): Likewise.
11186 * dwarf2read.c (dwarf2_psymtab_to_symtab): Likewise.
11187 * mdebugread.c (mdebug_psymtab_to_symtab): Likewise.
11188 * xcoffread.c (xcoff_psymtab_to_symtab_1): Likewise.
11189
11190 2013-01-13 Jan Kratochvil <jan.kratochvil@redhat.com>
11191
11192 * parse.c (parse_exp_in_context): New variable inner_chain. Call
11193 make_cleanup_restore_current_language. Call set_language. Move
11194 OLD_CHAIN and INNER_CHAIN cleanups.
11195 * utils.c (do_restore_current_language)
11196 (make_cleanup_restore_current_language): New functions.
11197 * utils.h (make_cleanup_restore_current_language): New declaration.
11198
11199 2013-01-13 Jan Kratochvil <jan.kratochvil@redhat.com>
11200
11201 * source.c (symtab_to_fullname): Apply rewrite_source_path also for
11202 non-existing files.
11203
11204 * source.c (symtab_to_fullname): Do not prepend DIRNAME for
11205 non-existing files if FILENAME is already absolute.
11206
11207 2013-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
11208
11209 * macrocmd.c (macro_inform_no_debuginfo): Use puts_filtered instead of
11210 fputs_filtered. Append trailing newline.
11211
11212 2013-01-11 Yao Qi <yao@codesourcery.com>
11213 Stan Shebs <stan@codesourcery.com>
11214
11215 * psymtab.c (init_psymbol_list): Clarify the comment.
11216
11217 2013-01-11 Yao Qi <yao@codesourcery.com>
11218
11219 * breakpoint.c (print_one_breakpoint_location): Remove dead code.
11220 (update_dprintf_command_list): Assert that 'printf_line' is
11221 non-null. Remove condition check.
11222
11223 2013-01-10 Jan Kratochvil <jan.kratochvil@redhat.com>
11224
11225 Code cleanup.
11226 * psymtab.c (psymtab_to_fullname, psymtab_to_fullname): Make the return
11227 type const char *.
11228 * tui/tui-source.c (tui_source_is_displayed): Make the parameter fname
11229 const char *.
11230 * tui/tui-source.h (tui_source_is_displayed): Likewise.
11231
11232 2013-01-09 Anthony Green <green@moxielogic.com>
11233
11234 * cp-abi.c (cplus_print_vtable): Don't return value from void
11235 function.
11236 * ada-lang.c (re_set_catch_assert): Ditto.
11237
11238 2013-01-09 Doug Evans <dje@google.com>
11239
11240 * symfile.h (quick_symbol_functions): Delete member
11241 pre_expand_symtabs_matching. All uses removed.
11242 * dwarf2read.c (dw2_lookup_symbol): Implement.
11243 (dw2_do_expand_symtabs_matching): Delete.
11244 (dw2_pre_expand_symtabs_matching): Delete.
11245 (struct dw2_symtab_iterator): New type.
11246 (dw2_symtab_iter_init, dw2_symtab_iter_next): New functions.
11247 (dw2_expand_symtabs_for_function): Rewrite.
11248 (dwarf2_gdb_index_functions): Update.
11249 * psymtab.c (pre_expand_symtabs_matching_psymtabs): Delete.
11250 (psym_functions): Update.
11251
11252 2013-01-09 Tom Tromey <tromey@redhat.com>
11253
11254 * config/pa/hpux.mh (NATDEPFILES): Remove somread.o.
11255 * configure: Rebuild.
11256 * configure.ac: Add somread.o to the build if BFD has SOM
11257 support.
11258 * somread.c: Include som/aout.h, not syms.h.
11259 (som_symtab_read): Use som_external_symbol_dictionary_record.
11260 Unpack records manually.
11261 (_initialize_somread): Declare.
11262
11263 2012-01-08 Mike Frysinger <vapier@gentoo.org>
11264
11265 * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx) [__x86_64__]:
11266 Cast return_address to 64bits.
11267
11268 2013-01-08 Hui Zhu <hui_zhu@mentor.com>
11269
11270 * printcmd.c: Remove define of function output_command.
11271 * tracepoint.c: Remove extern of function output_command.
11272 * valprint.h: (output_command): New extern.
11273
11274 2013-01-07 Tom Tromey <tromey@redhat.com>
11275
11276 * objc-lang.c (objc_emit_char, objc_printchar, objc_printstr):
11277 Remove.
11278 (objc_language_defn): Use c_printchar, c_printstr,
11279 c_emit_char.
11280
11281 2013-01-07 Tom Tromey <tromey@redhat.com>
11282
11283 PR cli/7719:
11284 * NEWS: Update.
11285 * ada-valprint.c (printstr, print_field_values): Remove
11286 "inspect_it" code.
11287 * cp-valprint.c (cp_print_value_fields): Remove "inspect_it"
11288 code.
11289 * jv-valprint.c (java_print_value_fields): Remove "inspect_it"
11290 code.
11291 * m2-lang.c (m2_printstr): Remove "inspect_it" code.
11292 * main.c (captured_main): Remove "epoch" argument.
11293 * objc-lang.c (objc_printstr): Remove "inspect_it" code.
11294 * p-lang.c (pascal_printstr): Remove "inspect_it" code.
11295 * p-valprint.c (pascal_object_print_value_fields): Remove
11296 "inspect_it" code.
11297 * printcmd.c (print_command_1): Remove 'inspect' argument.
11298 (print_command, call_command): Update.
11299 (inspect_command): Remove.
11300 (_initialize_printcmd): Make "inspect" an alias for "print".
11301 * top.c (epoch_interface): Remove.
11302 * top.h (epoch_interface): Remove.
11303 * valprint.c (user_print_options): Update.
11304 (print_converted_chars_to_obstack): Remove "inspect_it" code.
11305 * valprint.h (struct value_print_options) <inspect_it>: Remove
11306 field.
11307
11308 2013-01-04 Tom Tromey <tromey@redhat.com>
11309
11310 * valprint.h (read_string): Add 'extern'.
11311
11312 2013-01-07 Joel Brobecker <brobecker@adacore.com>
11313
11314 * darwin-nat.c: Fix typo in TASK_DYLD_INFO_COUNT macro test
11315 used to decide whether to define darwin_read_dyld_info or not.
11316
11317 2013-01-03 Pierre Muller <muller@sourceware.org>
11318
11319 * main.c (relocate_gdb_directory): Avoid calling stat function
11320 if DIR is empty.
11321
11322 2013-01-03 Yao Qi <yao@codesourcery.com>
11323
11324 * psymtab.c (fixup_psymbol_section): Update declaration.
11325 (fixup_psymbol_section): Remove code returning value.
11326
11327 2013-01-03 Yao Qi <yao@codesourcery.com>
11328
11329 * symtab.h: Remove some out of date comments.
11330 (enum exception_event_kind): Move it ...
11331 * breakpoint.c: ... here.
11332
11333 2013-01-02 Iain Sandoe <developer@sandoe-acoustics.co.uk>
11334
11335 PR gdb/14405
11336 * darwin-nat.c (darwin_read_dyld_info): Only build if
11337 TASK_DYLD_INFO_COUNT is defined.
11338 (darwin_xfer_partial): Call darwin_read_dyld_info only if
11339 TASK_DYLD_INFO_COUNT is defined.
11340
11341 2013-01-02 Tom Tromey <tromey@redhat.com>
11342
11343 * symfile.h (struct ecoff_debug_hack): Remove.
11344 * objfiles.c: Don't include mdebugread.h.
11345
11346 2013-01-02 Tom Tromey <tromey@redhat.com>
11347
11348 * config/i386/darwin.mh (NATDEPFILES): Remove machoread.o.
11349 * configure.ac: Check for Mach-O support in BFD. Update
11350 CONFIG_OBS.
11351 * configure: Rebuild.
11352
11353 2013-01-02 Tom Tromey <tromey@redhat.com>
11354
11355 * acinclude.m4 (GDB_AC_CHECK_BFD): New macro.
11356 * configure.ac: Use GDB_AC_CHECK_BFD.
11357 * configure: Rebuild.
11358
11359 2013-01-01 Maxim Kuvyrkov <maxim.kuvyrkov@gmail.com>
11360
11361 * MAINTAINERS: Update my email.
11362
11363 2013-01-01 Joel Brobecker <brobecker@adacore.com>
11364
11365 * cli/cli-script.h (make_cleanup_free_command_lines): Make extern.
11366
11367 2013-01-01 Joel Brobecker <brobecker@adacore.com>
11368
11369 * rs6000-nat.c (bss_data_overlap): New function.
11370 (vmap_symtab): Use it to adjust the .bss section's offset.
11371
11372 2013-01-01 Joel Brobecker <brobecker@adacore.com>
11373
11374 Update year range in copyright notice of all files.
11375
11376 2013-01-01, 13 Joel Brobecker <brobecker@adacore.com>
11377
11378 * top.c (print_gdb_version): Update copyright year.
11379
11380 For older changes see ChangeLog-2012.
11381 \f
11382 Local Variables:
11383 mode: change-log
11384 left-margin: 8
11385 fill-column: 74
11386 version-control: never
11387 coding: utf-8
11388 End:
This page took 0.265834 seconds and 4 git commands to generate.