S/390: Disassemble 31-bit binaries with "zarch" opcode set by default
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2013-10-30 Maciej W. Rozycki <macro@codesourcery.com>
2
3 * linux-tdep.c (linux_corefile_thread_callback): Preinitialize
4 siginfo_size.
5
6 2013-10-29 Tom Tromey <tromey@redhat.com>
7
8 * utils.c (reg): Move undefinition...
9 * gdb_curses.h: ... here. Update comment to mention AIX.
10
11 2013-10-29 Nicolas Blanc <nicolas.blanc@intel.com>
12
13 * exec.h (add_target_sections_of_objfile): New declaration.
14 * exec.c (add_target_sections_of_objfile): New function.
15 * symfile.c (add_symbol_file_command): Update current target sections.
16 (remove_symbol_file_command): New command.
17 (symfile_free_objfile): New function.
18 (_initialize_symfile): Register observer for free_objfile events.
19 * NEWS: Add description of the remove-symbol-file command.
20 * breakpoint.c (disable_breakpoints_in_freed_objfile): New function.
21 * objfiles.c (free_objfile): Notify free_objfile.
22 (is_addr_in_objfile): New function.
23 * objfiles.h (is_addr_in_objfile): New declaration.
24 * printcmd.c (clear_dangling_display_expressions): Act upon free_objfile
25 events instead of solib_unloaded events.
26 (_initialize_printcmd): Register observer for free_objfile instead
27 of solib_unloaded notifications.
28 * solib.c (remove_user_added_objfile): New function.
29 (_initialize_symfile): Add remove-symbol-file.
30
31 2013-10-29 Andrew Burgess <aburgess@broadcom.com>
32
33 * infcmd.c (default_print_one_register_info): Use val_print to
34 print all values even optimized out or unavailable ones. Don't
35 try to print a raw form of optimized out or unavailable values.
36
37 2013-10-29 Yao Qi <yao@codesourcery.com>
38
39 * auto-load.c (auto_load_pspace_data_cleanup): Get data from
40 parameter 'arg' instead of from program_space_data.
41 * objfiles.c (objfiles_pspace_data_cleanup): Likewise.
42 * solib-darwin.c (darwin_pspace_data_cleanup): Likewise.
43 * solib-dsbt.c (dsbt_pspace_data_cleanup): Likewise.
44 * solib-svr4.c (svr4_pspace_data_cleanup): Likewise.
45 * inflow.c (inflow_inferior_data_cleanup): Get data from
46 parameter 'arg' instead of inferior_data.
47 * registry.h: Add comments.
48
49 2013-10-28 Pedro Alves <palves@redhat.com>
50
51 * breakpoint.c (watchpoints_triggered)
52 <!target_stopped_data_address>: Hardcode return 1.
53
54 2013-10-28 Pedro Alves <palves@redhat.com>
55
56 * infrun.c (process_event_stop_test): Remove unnecessary scoping
57 level and reindent.
58
59 2013-10-28 Pedro Alves <palves@redhat.com>
60
61 * infrun.c (process_event_stop_test): New function, factored out
62 from handle_inferior_event.
63 (handle_inferior_event): 'process_event_stop_test' is now a
64 function instead of a goto label -- adjust.
65
66 2013-10-28 Pedro Alves <palves@redhat.com>
67
68 * infrun.c (handle_inferior_event): Move process_event_stop_test
69 goto label to the else branch of the ecs->random_signal check,
70 along with FRAME and GDBARCH re-fetching.
71
72 2013-10-28 Pedro Alves <palves@redhat.com>
73
74 * infrun.c (switch_back_to_stepped_thread): New function, factored
75 out from handle_inferior_event.
76 (handle_inferior_event): Adjust to call
77 switch_back_to_stepped_thread. Call it also at the tail of the
78 random signal handling, and return, instead of also handling
79 random signals just before the stepping tests.
80
81 2013-10-28 Pedro Alves <palves@redhat.com>
82
83 * infrun.c (clear_stop_func): Delete.
84 (handle_inferior_event): Don't call clear_stop_func and don't
85 clear 'ecs->random_signal'.
86
87 2013-10-27 Yao Qi <yao@codesourcery.com>
88
89 * varobj.c (struct varobj_root) <lang>: Rename to 'lang_ops'.
90 (varobj_create, varobj_get_path_expr): Update.
91 (varobj_value_has_mutated, varobj_update): Likewise.
92 (create_child_with_value, new_root_variable): Likewise.
93 (number_of_children, name_of_variable): Likewise.
94 (value_of_child, my_value_of_variable): Likewise.
95 (varobj_value_is_changeable_p): Likewise.
96
97 2013-10-25 Yao Qi <yao@codesourcery.com>
98
99 * language.h (struct lang_varobj_ops): Declare.
100 (struct language_defn) <la_varobj_ops>: New field.
101 * ada-lang.c: Include "varobj.h"
102 (defn ada_language_defn): Initialize field 'la_varobj_ops' with
103 ada_varobj_ops.
104 * c-lang.c: Include "varobj.h"
105 (c_language_defn): Initialize field 'la_varobj_ops' with
106 c_varobj_ops.
107 (cplus_language_defn): Initialize field 'la_varobj_ops' with
108 cplus_varobj_ops.
109 (asm_language_defn): Initialize field 'la_varobj_ops' with
110 default_varobj_ops.
111 (minimal_language_defn): Likewise.
112 * d-lang.c (d_language_defn): Likewise.
113 * f-lang.c (f_language_defn): Likewise.
114 * go-lang.c (go_language_defn): Likewise.
115 * m2-lang.c (m2_language_defn): Likewise.
116 * objc-lang.c (objc_language_defn): Likewise.
117 * opencl-lang.c (opencl_language_defn): Likewise.
118 * p-lang.c (pascal_language_defn): Likewise.
119 * language.c (unknown_language_defn): Likewise.
120 (auto_language_defn): Likewise.
121 (local_language_defn): Likewise.
122 * jv-lang.c (java_language_defn): Initialize field
123 'la_varobj_ops' with java_varobj_ops.
124 * varobj.c (varobj_create): Update.
125 * varobj.h (default_varobj_ops): Define macro.
126
127 2013-10-25 Pedro Alves <palves@redhat.com>
128
129 * cp-valprint.c (cp_print_value_fields): No longer handle a NULL
130 static field value.
131 (cp_print_static_field): If the value is entirely optimized out,
132 print <optimized out> here.
133 * jv-valprint.c (java_print_value_fields): No longer handle a NULL
134 static field value.
135 * p-valprint.c (pascal_object_print_static_field): If the value is
136 entirely optimized out, print <optimized out> here.
137 * valops.c (do_search_struct_field)
138 (value_struct_elt_for_reference): No longer handle a NULL static
139 field value.
140 * value.c (value_static_field): Return an optimized out value
141 instead of NULL.
142
143 2013-10-25 Yao Qi <yao@codesourcery.com>
144
145 * remote.c (remote_traceframe_info): Return early if
146 traceframe is not selected.
147
148 2013-10-25 Yao Qi <yao@codesourcery.com>
149
150 * tracepoint.c (traceframe_fun): Remove.
151 (traceframe_sal): Remove.
152 (set_traceframe_context): Add local variables.
153
154 2013-10-25 Joel Brobecker <brobecker@adacore.com>
155
156 * varobj.h (struct lang_varobj_ops): Remove spaces between '*'
157 and parameter name.
158
159 2013-10-24 Maciej W. Rozycki <macro@codesourcery.com>
160
161 * linux-tdep.c (linux_corefile_thread_callback): Propagate any
162 failure from register information collection.
163
164 2013-10-24 Maciej W. Rozycki <macro@codesourcery.com>
165
166 * linux-tdep.c (linux_corefile_thread_data): Remove `num_notes'
167 member.
168 (linux_corefile_thread_callback): Update accordingly.
169 (linux_make_corefile_notes): Likewise.
170
171 2013-10-24 Pedro Alves <palves@redhat.com>
172
173 * NEWS (New options): Mention set/show startup-with-shell.
174 * config/alpha/nm-osf3.h (START_INFERIOR_TRAPS_EXPECTED): Set to 2
175 instead of 3.
176 * fork-child.c (fork_inferior, startup_inferior): Handle 'set
177 startup-with-shell'.
178 (show_startup_with_shell): New function.
179 (_initialize_fork_child): Register the set/show startup-with-shell
180 commands.
181 * inf-ptrace.c (inf_ptrace_create_inferior): Remove comment.
182 * inf-ttrace.c (inf_ttrace_him): Remove comment.
183 * procfs.c (procfs_init_inferior): Remove comment.
184 * infcmd.c (startup_with_shell): New global.
185 * inferior.h (startup_with_shell): Declare global.
186 (STARTUP_WITH_SHELL): Delete.
187 (START_INFERIOR_TRAPS_EXPECTED): Set to 1 by default instead of 2.
188
189 2013-10-23 Pedro Alves <palves@redhat.com>
190
191 * common/gdb_signals.h (gdb_signal_to_symbol_string): Declare.
192 * common/signals.c: Include "gdb_assert.h".
193 (signals): New field 'symbol'.
194 (SET): Use the 'symbol' parameter.
195 (gdb_signal_to_symbol_string): New function.
196 * infrun.c (handle_inferior_event) <random signal>: In debug
197 output, print the random signal enum as string in addition to its
198 number.
199 * target/waitstatus.c (target_waitstatus_to_string): Print the
200 signal's enum value as string instead of the (POSIX) signal name.
201
202 2013-10-23 Gary Benson <gbenson@redhat.com>
203
204 PR 16013
205 * common/linux-osdata.c (command_from_pid): Reduced size of cmd
206 from 32 to 18. Adjusted fscanf format string accordingly.
207 (Avoids leaving cmd unterminated.)
208 (print_sockets): Do not parse tlen, inode, sl, timeout, txq, rxq,
209 trun, retn or extra. (Avoids leaving extra unterminated.) Check
210 that local_address and remote_address will not overflow.
211 (linux_xfer_osdata_modules): Parse lines using strtok to avoid
212 leaving dependencies unterminated. Parse size as "%u" to match
213 definition.
214
215 2013-10-22 Pedro Alves <palves@redhat.com>
216
217 * infrun.c (handle_inferior_event) <thread hop>: Don't clear or
218 set ecs->random signal.
219
220 2013-10-22 Pedro Alves <palves@redhat.com>
221
222 * infrun.c (keep_going): Update comments.
223
224 2013-10-22 Pedro Alves <palves@redhat.com>
225
226 * remote.c (remote_parse_stop_reply) <'T'/'S'/'X' replies>: Map
227 invalid signal numbers to GDB_SIGNAL_UNKNOWN.
228
229 2013-10-22 Pedro Alves <palves@redhat.com>
230
231 * include/gdb/signals.def (TARGET_EXC_BAD_ACCESS): Rename to
232 GDB_EXC_BAD_ACCESS.
233 (TARGET_EXC_BAD_INSTRUCTION): Rename to GDB_EXC_BAD_INSTRUCTION.
234 (TARGET_EXC_ARITHMETIC): Rename to GDB_EXC_ARITHMETIC.
235 (TARGET_EXC_EMULATION): Rename to GDB_EXC_EMULATION.
236 (TARGET_EXC_SOFTWARE): Rename to GDB_EXC_SOFTWARE.
237 (TARGET_EXC_BREAKPOINT): Rename to GDB_EXC_BREAKPOINT.
238 (GDB_SIGNAL_LAST): Change description string.
239 * common/signals.c (gdb_signal_from_host, do_gdb_signal_to_host):
240 Adjust to signal renaming.
241 * darwin-nat.c (darwin_decode_message): Likewise.
242
243 2013-10-22 Jose E. Marchesi <jose.marchesi@oracle.com>
244
245 * MAINTAINERS (Write After Approval): Add myself to the list.
246
247 2013-10-18 Andrew Burgess <aburgess@broadcom.com>
248
249 * breakpoint.c (update_watchpoint): If hardware watchpoints are
250 forced off, downgrade them to software watchpoints if possible,
251 and error out if not possible.
252 (watch_command_1): Move watchpoint type selection closer to
253 watchpoint creation, and extend the comments.
254
255 2013-10-18 Pedro Alves <palves@redhat.com>
256
257 PR gdb/16062
258 * infrun.c (handle_inferior_event): Keep going if we got a random
259 signal we should not stop for, instead of falling through to the
260 step tests.
261
262 2013-10-18 Yao Qi <yao@codesourcery.com>
263
264 * c-varobj.c (cplus_number_of_children): Fix indentation.
265
266 2013-10-17 Tom Tromey <tromey@redhat.com>
267
268 PR gdb/15995:
269 * printcmd.c (printcmd): Call gdb_flush.
270
271 2013-10-17 Tom Tromey <tromey@redhat.com>
272
273 * elfread.c (struct elfinfo) <stabindexsect>: Remove.
274 (elf_locate_sections): Update.
275
276 2013-10-17 Yao Qi <yao@codesourcery.com>
277
278 * Makefile.in (HFILES_NO_SRCDIR): Remove ada-varobj.h.
279 * ada-varobj.c: Remove the include of ada-varobj.h.
280 (ada_varobj_get_number_of_children): Declare.
281 (ada_varobj_get_name_of_child): Make it static.
282 (ada_varobj_get_path_expr_of_child): Likewise.
283 (ada_varobj_get_value_of_child): Likewise.
284 (ada_varobj_get_type_of_child): Likewise.
285 (ada_varobj_get_value_of_array_variable): Likewise.
286 * ada-varobj.h: Remove.
287
288 2013-10-17 Yao Qi <yao@codesourcery.com>
289
290 * Makefile.in (SFILES): Add c-varobj.c and jv-varobj.c.
291 (COMMON_OBS): Add c-varobj.o and jv-varobj.o.
292 * ada-varobj.c: Include "varobj.h".
293 (ada_number_of_children): New. Moved from varobj.c.
294 (ada_name_of_variable, ada_name_of_child): Likewise.
295 (ada_path_expr_of_child, ada_value_of_child): Likewise.
296 (ada_type_of_child, ada_value_of_variable): Likewise.
297 (ada_value_is_changeable_p, ada_value_has_mutated): Likewise.
298 (ada_varobj_ops): New.
299 * c-varobj.c, jv-varobj.c: New file. Moved from varobj.c.
300 * gdbtypes.c (get_target_type): New. Moved from varobj.c.
301 * gdbtypes.h (get_target_type): Declare.
302 * varobj.c: Remove the inclusion of "ada-varobj.h" and
303 "ada-lang.h".
304 (ANONYMOUS_STRUCT_NAME): Move it to c-varobj.c.
305 (ANONYMOUS_UNION_NAME): Likewise.
306 (get_type, get_value_type, get_target_type): Remove declarations.
307 (value_get_print_value, varobj_value_get_print_value): Likewise.
308 (c_number_of_children, c_name_of_variable): Likewise.
309 (c_name_of_child, c_path_expr_of_child): Likewise.
310 (c_value_of_child, c_type_of_child): Likewise.
311 (c_value_of_variable, cplus_number_of_children): Likewise.
312 (cplus_class_num_children, cplus_name_of_variable): Likewise.
313 (cplus_name_of_child, cplus_path_expr_of_child): Likewise.
314 (cplus_value_of_child, cplus_type_of_child): Likewise.
315 (cplus_value_of_variable, java_number_of_children): Likewise.
316 (java_name_of_variable, java_name_of_child): Likewise.
317 (java_path_expr_of_child, java_value_of_child): Likewise.
318 (java_type_of_child, java_value_of_variable): Likewise.
319 (ada_number_of_children, ada_name_of_variable): Likewise.
320 (ada_name_of_child, ada_path_expr_of_child): Likewise.
321 (ada_value_of_child, ada_type_of_child): Likewise.
322 (ada_value_of_variable, ada_value_is_changeable_p): Likewise.
323 (ada_value_has_mutated): Likewise.
324 (struct language_specific): Move it to varobj.h.
325 (CPLUS_FAKE_CHILD): Move it to varobj.h.
326 (restrict_range): Rename it varobj_restrict_range. Make it extern.
327 Callers update.
328 (get_path_expr_parent): Rename it to varobj_get_path_expr_parent.
329 Make it extern.
330 (is_anonymous_child): Move it to c-varobj.c and rename to
331 varobj_is_anonymous_child. Caller update.
332 (get_type): Move it to c-varobj.c.
333 (get_value_type): Rename it varobj_get_value_type. Make it
334 extern.
335 (get_target_type): Move it gdbtypes.c.
336 (varobj_formatted_print_options): New function.
337 (value_get_print_value): Rename it to
338 varobj_value_get_print_value and make it extern.
339 (varobj_value_is_changeable_p): Make it extern.
340 (adjust_value_for_child_access): Move it to c-varobj.c.
341 (default_value_is_changeable_p): Rename it to
342 varobj_default_value_is_changeable_p. Make it extern.
343 (c_number_of_children, c_name_of_variable): Move it to c-varobj.c
344 (c_name_of_child, c_path_expr_of_child): Likewise.
345 (c_value_of_child, c_type_of_child): Likewise.
346 (c_value_of_variable, cplus_number_of_children): Likewise.
347 (cplus_class_num_children, cplus_name_of_variable): Likewise.
348 (cplus_name_of_child, cplus_path_expr_of_child): Likewise.
349 (cplus_value_of_child, cplus_type_of_child): Likewise.
350 (cplus_value_of_variable): Likewise.
351 (java_number_of_children, java_name_of_variable): Move it to jv-varobj.c.
352 (java_name_of_child, java_path_expr_of_child): Likewise.
353 (java_value_of_child, java_type_of_child): Likewise.
354 (java_value_of_variable): Likewise.
355 (ada_number_of_children, ada_name_of_variable): Move it to ada-varobj.c.
356 (ada_name_of_child, ada_path_expr_of_child): Likewise.
357 (ada_value_of_child, ada_type_of_child): Likewise.
358 (ada_value_of_variable, ada_value_is_changeable_p): Likewise.
359 (ada_value_has_mutated): Likewise.
360 * varobj.h (CPLUS_FAKE_CHILD): New macro, moved from varobj.c.
361 (struct lang_varobj_ops): New. Renamed by 'struct language_specific'.
362 (c_varobj_ops, cplus_varobj_ops): Declare.
363 (java_varobj_ops, ada_varobj_ops): Declare.
364 (varobj_default_value_is_changeable_p): Declare.
365 (varobj_value_is_changeable_p): Declare.
366 (varobj_get_value_type, varobj_is_anonymous_child): Declare.
367 (varobj_get_path_expr_parent): Declare.
368 (varobj_value_get_print_value): Declare.
369 (varobj_formatted_print_options): Declare.
370 (varobj_restrict_range): Declare.
371
372 2013-10-17 Luis Machado <lgustavo@codesourcery.com>
373
374 * target/waitstatus.h (target_waitkind): Remove spurious
375 character from the comments.
376
377 2013-10-17 Joel Brobecker <brobecker@adacore.com>
378
379 * gdbarch.sh (get_longjmp_target): Add method documentation.
380 * gdbarch.h: Regenerate.
381
382 2013-10-16 Tom Tromey <tromey@redhat.com>
383
384 * dbxread.c (read_dbx_symtab) <bss_ext_symbol>: Remove unused
385 label.
386
387 2013-10-16 Luis Machado <lgustavo@codesourcery.com>
388
389 * gcore.in: Call GDB using the full path to the gcore script.
390 Error out if the GDB binary is not found.
391
392 2013-10-16 Sergio Durigan Junior <sergiodj@redhat.com>
393
394 PR gdb/16014
395 * dwarf2read.c (dw2_get_real_path): Remove unnecessary call to
396 sizeof.
397
398 2013-10-16 Sergio Durigan Junior <sergiodj@redhat.com>
399
400 PR gdb/16042
401 * target.c (target_disable_btrace): Fix invalid return value for
402 void function.
403 (target_teardown_btrace): Likewise.
404
405 2013-10-14 Yao Qi <yao@codesourcery.com>
406
407 * varobj.c (struct varobj): Move most of the fields to
408 varobj.h.
409 (struct varobj_dynamic): New struct.
410 (varobj_get_display_hint) [HAVE_PYTHON]: Adjust.
411 (varobj_has_more): Likewise.
412 (dynamic_varobj_has_child_method): Likewise.
413 (update_dynamic_varobj_children): Likewise.
414 (varobj_get_num_children): Likewise.
415 (varobj_list_children, varobj_pretty_printed_p): Likewise.
416 (install_new_value_visualizer): Likewise.
417 (install_new_value_visualizer, install_new_value): Likewise.
418 (varobj_update, new_variable, free_variable): Likewise.
419 (my_value_of_variable, value_get_print_value): Likewise.
420 (install_visualizer): Change the type of parameter 'var' to
421 'struct varobjd_dynamic *'. Callers update.
422 * varobj.h (struct varobj): Moved from varobj.c.
423 (struct varobj) <dynamic>: New field.
424
425 2013-10-13 Sandra Loosemore <sandra@codesourcery.com>
426
427 * nios2-tdep.c (nios2_reg_names): Use "sstatus" rather than "ba"
428 as the preferred name of r30.
429 * nios2-linux-tdep.c (reg_offsets): Likewise.
430 * features/nios2-cpu.xml: Likewise.
431 * features/nios2-linux.c: Regenerated.
432 * features/nios2.c: Regenerated.
433 * regformats/nios2-linux.dat: Regenerated.
434
435 2013-10-13 Jan Kratochvil <jan.kratochvil@redhat.com>
436
437 Canonicalize directories for EXEC_FILENAME.
438 * exec.c (exec_file_attach): Use gdb_realpath_keepfile for
439 exec_filename.
440 * utils.c (gdb_realpath_keepfile): New function.
441 * utils.h (gdb_realpath_keepfile): New declaration.
442
443 2013-10-11 Doug Evans <dje@google.com>
444
445 * Makefile.in (GDBFLAGS): New variable.
446 (run): New rule.
447
448 2013-10-11 Joel Brobecker <brobecker@adacore.com>
449
450 * NEWS: Add entry documenting the new "-catch-assert" and
451 "-catch-exception" GDB/MI commands.
452
453 2013-10-11 Joel Brobecker <brobecker@adacore.com>
454
455 * breakpoint.h (init_ada_exception_breakpoint): Add parameter
456 "enabled".
457 * breakpoint.c (init_ada_exception_breakpoint): Add parameter
458 "enabled". Set B->ENABLE_STATE accordingly.
459 * ada-lang.h (ada_exception_catchpoint_kind): Move here from
460 ada-lang.c.
461 (create_ada_exception_catchpoint): Add declaration.
462 * ada-lang.c (ada_exception_catchpoint_kind): Move to ada-lang.h.
463 (create_ada_exception_catchpoint): Make non-static. Add new
464 parameter "disabled". Use it in call to
465 init_ada_exception_breakpoint.
466 (catch_ada_exception_command): Add parameter "enabled" in call
467 to create_ada_exception_catchpoint.
468 (catch_assert_command): Likewise.
469
470 * mi/mi-cmds.h (mi_cmd_catch_assert, mi_cmd_catch_exception):
471 Add declarations.
472 * mi/mi-cmds.c (mi_cmds): Add the "catch-assert" and
473 "catch-exception" commands.
474 * mi/mi-cmd-catch.c: Add #include "ada-lang.h".
475 (mi_cmd_catch_assert, mi_cmd_catch_exception): New functions.
476
477 2013-10-11 Joel Brobecker <brobecker@adacore.com>
478
479 * ada-lang.c (enum ada_exception_catchpoint_kind): Renames
480 "enum exception_catchpoint_kind". Replace the "ex_" prefix
481 of all its enumerates with "ada_". Update the rest of this
482 file throughout.
483
484 2013-10-11 Joel Brobecker <brobecker@adacore.com>
485
486 * ada-lang.c (ada_decode_exception_location): Delete.
487 (create_ada_exception_catchpoint): Remove arguments "sal",
488 "addr_string" and "ops". Add argument "ex_kind" instead.
489 Adjust implementation accordingly, calling ada_exception_sal
490 to get the entities it no longer gets passed as arguments.
491 Document the function's arguments.
492 (catch_ada_exception_command): Use catch_ada_exception_command_split
493 instead of ada_decode_exception_location, and update call to
494 create_ada_exception_catchpoint.
495 (catch_ada_assert_command_split): Renames
496 ada_decode_assert_location. Remove parameters "addr_string" and
497 "ops", and now returns void. Adjust implementation accordingly.
498 Update the function documentation.
499 (catch_assert_command): Use catch_ada_assert_command_split
500 instead of ada_decode_assert_location. Update call to
501 create_ada_exception_catchpoint.
502
503 2013-10-11 Joel Brobecker <brobecker@adacore.com>
504
505 * utils.h (perror_warning_with_name): Add declaration.
506 * utils.c (perror_warning_with_name): New function.
507 * cli/cli-cmds.c (source_script_with_search): Add call to
508 perror_warning_with_name if from_tty is nul.
509
510 2013-10-11 Joel Brobecker <brobecker@adacore.com>
511
512 * utils.c (perror_string): New function, extracted out of
513 throw_perror_with_name.
514 (throw_perror_with_name): Rework to use perror_string.
515
516 2013-10-11 Yao Qi <yao@codesourcery.com>
517
518 * remote.c (discard_pending_stop_replies_in_queue): Update
519 declaration.
520 (struct stop_reply) <rs>: New field.
521 (remove_stop_reply_of_remote_state): New function.
522 (discard_pending_stop_replies_in_queue): Add parameter 'rs'.
523 Callers update. Pass remove_stop_reply_of_remote_state to
524 QUEUE_iterate.
525 (remote_parse_stop_reply): Initialize field 'rs'.
526
527 2013-10-10 Will Newton <will.newton@linaro.org>
528
529 * aarch64-linux-tdep.c (aarch64_linux_init_abi): Call
530 linux_init_abi.
531
532 2013-10-10 Joel Brobecker <brobecker@adacore.com>
533
534 * cli/cli-cmds.c (show_baud_rate): Moved to serial.c as
535 serial_baud_show_cmd.
536 (_initialize_cli_cmds): Delete the code creating the
537 "set/show remotebaud" commands.
538 * serial.c (baud_rate): Move here from top.c.
539 (serial_baud_show_cmd): Move here from cli/cli-cmds.c.
540 (_initialize_serial): Create "set/show serial baud" commands.
541 Add "set/show remotebaud" command aliases.
542 * top.c (baud_rate): Moved to serial.c.
543 * NEWS: Document the new "set/show serial baud" commands,
544 replacing "set/show remotebaud".
545
546 2013-10-09 Pedro Alves <palves@redhat.com>
547
548 * breakpoint.c (insert_bp_location): Use memory_error_message to
549 build the memory error string.
550 * c-lang.c: Include "gdbcore.h".
551 (c_get_string): Use memory_error to throw error.
552 (target_xfer_memory_error): Delete.
553 (memory_error_message): New, factored out from
554 target_xfer_memory_error.
555 (memory_error): Change parameter type to target_xfer_error.
556 Rewrite.
557 (read_memory): Use memory_error instead of
558 target_xfer_memory_error.
559 * gdbcore.h: Include "target.h".
560 (memory_error): Change parameter type to target_xfer_error.
561 (memory_error_message): Declare function.
562 * target.c (target_read_memory, target_read_stack)
563 (target_write_memory, target_write_raw_memory): Return
564 TARGET_XFER_E_IO on error. Adjust comments.
565 (get_target_memory): Pass TARGET_XFER_E_IO to memory_error,
566 instead of EIO.
567 * target.h (target_read, target_insert_breakpoint)
568 (target_remove_breakpoint): Adjust comments.
569 * valprint.c (partial_memory_read): Rename parameter, and adjust
570 comment.
571 (val_print_string): Use memory_error_message to build the memory
572 error string.
573
574 2013-10-09 Jan Kratochvil <jan.kratochvil@redhat.com>
575
576 * common/filestuff.c (gdb_fopen_cloexec): Remove initialization of
577 result variable. Rename variable fopen_e_ever_failed to
578 fopen_e_ever_failed_einval. Retry fopen only for errno EINVAL.
579
580 2013-10-09 Pedro Alves <palves@redhat.com>
581
582 * monitor.c (monitor_write_memory, monitor_write_memory_bytes)
583 (monitor_write_memory_longlongs, monitor_write_memory_block):
584 Constify 'myaddr' parameter.
585 (monitor_xfer_memory): Adjust interface as monitor_xfer_partial
586 helper.
587 (monitor_xfer_partial): New function.
588 (init_base_monitor_ops): Don't install a deprecated_xfer_memory
589 hook. Install a to_xfer_partial hook.
590
591 2013-10-09 Tom Tromey <tromey@redhat.com>
592
593 * dwarf2read.c (dwarf2_get_dwz_file): Update for type change in
594 bfd_get_alt_debug_link_info.
595
596 2013-10-09 Jan Kratochvil <jan.kratochvil@redhat.com>
597
598 New flag OBJF_NOT_FILENAME.
599 * auto-load.c (auto_load_objfile_script): Check also OBJF_NOT_FILENAME.
600 * jit.c (jit_object_close_impl): Use OBJF_NOT_FILENAME for
601 allocate_objfile.
602 (jit_bfd_try_read_symtab): Use OBJF_NOT_FILENAME for
603 symbol_file_add_from_bfd.
604 * jv-lang.c (get_dynamics_objfile): Use OBJF_NOT_FILENAME for
605 allocate_objfile.
606 * objfiles.c (allocate_objfile): Assert OBJF_NOT_FILENAME if NAME is
607 NULL.
608 * objfiles.h (OBJF_NOT_FILENAME): New.
609
610 2013-10-08 Tom Tromey <tromey@redhat.com>
611
612 * Makefile.in (SFILES): Add build-id.c.
613 (HFILES_NO_SRCDIR): Add build-id.h.
614 * build-id.c: New file, largely from elfread.c. Modified
615 most functions.
616 * build-id.h: New file.
617 * dwarf2read.c (dwarf2_get_dwz_file): Update for change to
618 bfd_get_alt_debug_link_info. Verify dwz file's build-id.
619 Search for dwz file using build-id.
620 * elfread.c (build_id_bfd_get, build_id_verify)
621 (build_id_to_debug_filename, find_separate_debug_file): Remove.
622
623 2013-10-08 Joel Brobecker <brobecker@adacore.com>
624
625 * ada-lang.c (compare_names_with_case): Renamed from
626 compare_names, adding a new parameter "casing" and its handling.
627 New function documentation.
628 (compare_names): New function, implemented using
629 compare_names_with_case.
630
631 2013-10-08 Joel Brobecker <brobecker@adacore.com>
632
633 * ada-lang.c (ada_exception_sal): Remove advance declaration.
634
635 2013-10-07 Tom Tromey <tromey@redhat.com>
636
637 * objfiles.c (free_objfile_per_bfd_storage): Delete the
638 demangled_names_hash.
639 (free_objfile): Don't delete the demangled_names_hash.
640 * objfiles.h (struct objfile_per_bfd_storage)
641 <demangled_names_hash>: New field.
642 (struct objfile) <demangled_names_hash>: Move to
643 objfile_per_bfd_storage.
644 * symfile.c (reread_symbols): Don't delete the
645 demangled_names_hash.
646 * symtab.c (create_demangled_names_hash): Update.
647 (symbol_set_names): Update.
648
649 2013-10-07 Tom Tromey <tromey@redhat.com>
650
651 * gdb_bfd.c (struct gdb_bfd_data) <relocation_computed,
652 needs_relocations>: New fields.
653 (gdb_bfd_requires_relocations): New function.
654 * gdb_bfd.h (gdb_bfd_requires_relocations): Declare.
655 * objfiles.c (get_objfile_bfd_data): Disallow sharing if
656 the BFD needs relocations applied.
657
658 2013-10-07 Pedro Alves <palves@redhat.com>
659
660 PR breakpoints/11568
661 * breakpoint.c (remove_threaded_breakpoints): Say "no longer in
662 the thread list" instead of "gone".
663
664 2013-10-06 Sergio Durigan Junior <sergiodj@redhat.com>
665
666 * NEWS: Mention new convenience variable $_exitsignal.
667 * corelow.c (core_open): Reset exit convenience variables. Set
668 $_exitsignal to the uncaught signal which generated the corefile.
669 * infrun.c (handle_inferior_event): Reset exit convenience
670 variables. Set $_exitsignal for TARGET_WAITKIND_SIGNALLED.
671 (clear_exit_convenience_vars): New function.
672 * inferior.h (clear_exit_convenience_vars): New prototype.
673
674 2013-10-06 Yao Qi <yao@codesourcery.com>
675
676 * varobj.h: Add comments to enum varobj_languages.
677
678 2013-10-04 Doug Evans <dje@google.com>
679
680 Add support for DWP file format version 2.
681 * NEWS: Mention support for DWP file format version 2.
682 * dwarf2read.c (dwarf2_section_info): Convert asection field to a
683 union of asection, containing_section. New fields virtual_offset
684 and is_virtual. Change type of readin filed from int to char.
685 (dwo_sections, dwo_file): Tweak comments.
686 (dwp_v2_section_ids): New enum.
687 (dwp_sections): New fields abbrev, info, line, loc, macinfo, macro,
688 str_offsets, types.
689 (virtual_v1_dwo_sections): Renamed from virtual_dwo_sections.
690 All uses updated.
691 (virtual_v2_dwo_sections): New struct.
692 (dwp_hash_table): New fields version, nr_columns. Change type of
693 section_pool field to a union.
694 (dwp_file): New field version.
695 (dwarf2_has_info): Check for virtual sections.
696 (get_containing_section): New function.
697 (get_section_bfd_owner, get_section_bfd_section): Call it.
698 (dwarf2_locate_sections): Update.
699 (dwarf2_section_empty_p): Update.
700 (dwarf2_read_section): Handle virtual sections.
701 (locate_dwz_sections): Update.
702 (create_dwp_hash_table): Document and handle V2 format.
703 (locate_v1_virtual_dwo_sections): Renamed from
704 locate_virtual_dwo_sections and update. All callers updated.
705 (create_dwo_unit_in_dwp_v1): Renamed from create_dwo_in_dwp.
706 Delete arg htab. Rename arg section_index to unit_index.
707 All callers updated.
708 (MAX_NR_V1_DWO_SECTIONS): Renamed from MAX_NR_DWO_SECTIONS.
709 All uses updated.
710 (create_dwp_v2_section, create_dwo_unit_in_dwp_v2): New functions.
711 (lookup_dwo_unit_in_dwp): Add V2 support.
712 (dwarf2_locate_dwo_sections): Update.
713 (dwarf2_locate_common_dwp_sections): Renamed from
714 dwarf2_locate_dwp_sections and update. All callers updated.
715 (dwarf2_locate_v2_dwp_sections): New function.
716 (open_and_init_dwp_file): Add V2 support.
717 (read_str_index): New locals str_section, str_offsets_section.
718
719 2013-10-04 Pedro Alves <palves@redhat.com>
720
721 * common/ptid.c (null_ptid, minus_one_ptid, ptid_build)
722 (pid_to_ptid, ptid_get_pid, ptid_get_lwp, ptid_get_tid)
723 (ptid_equal, ptid_is_pid, ptid_lwp_p, ptid_tid_p): Replace
724 describing comments with references to ptid.h.
725 * common/ptid.h: Remove intro description of constructors,
726 accessors and predicates.
727 (struct ptid): Reformat.
728 (minus_one_ptid, ptid_build, pid_to_ptid, ptid_get_pid)
729 (ptid_get_lwp, ptid_get_tid, ptid_equal, ptid_is_pid): Change
730 describing comments.
731
732 2013-10-04 Joel Brobecker <brobecker@adacore.com>
733
734 * aix-thread.c (sync_threadlists): Add missing ')' in call
735 to ptid_build.
736
737 2013-10-04 Joel Brobecker <brobecker@adacore.com>
738
739 * procfs.c (procfs_init_inferior): Fix typo causing the build
740 to fail.
741
742 2013-10-04 Joel Brobecker <brobecker@adacore.com>
743
744 * aix-thread.c (ptrace32): Remove cast to addr_ptr.
745
746 2013-10-04 Joel Brobecker <brobecker@adacore.com>
747
748 * mi/mi-main.c (run_one_inferior): Add function description.
749 Make ARG a pointer to an integer whose value determines whether
750 we should "run" or "start" the program.
751 (mi_cmd_exec_run): Add handling of the "--start" option.
752 Reject all other command-line options.
753 * NEWS: Add entry for "-exec-run"'s new "--start" option.
754
755 2013-10-04 Yao Qi <yao@codesourcery.com>
756
757 * remote-notif.h (REMOTE_NOTIF_ID): New enum.
758 (struct notif_client) <pending_event>: Moved
759 to struct remote_notif_state.
760 <id>: New field.
761 (struct remote_notif_state) <pending_event>: New field.
762 (notif_event_xfree): Declare.
763 * remote-notif.c (handle_notification): Adjust.
764 (notif_event_xfree): New function.
765 (do_notif_event_xfree): Call notif_event_xfree.
766 (remote_notif_state_xfree): Call notif_event_xfree to free
767 each element in field pending_event.
768 * remote.c (discard_pending_stop_replies): Remove declaration.
769 (discard_pending_stop_replies_in_queue): Declare.
770 (remote_close): Call discard_pending_stop_replies_in_queue
771 instead of discard_pending_stop_replies.
772 (remote_start_remote): Adjust.
773 (stop_reply_xfree): Call notif_event_xfree.
774 (notif_client_stop): Adjust initialization.
775 (remote_notif_remove_all): Rename it to ...
776 (remove_stop_reply_for_inferior): ... this. Update comments.
777 Don't check INF is NULL.
778 (discard_pending_stop_replies): Return early if notif_state is
779 NULL. Adjust. Don't check INF is NULL.
780 (remote_notif_get_pending_events): Adjust.
781 (discard_pending_stop_replies_in_queue): New function.
782 (remote_wait_ns): Likewise.
783
784 2013-10-04 Yao Qi <yao@codesourcery.com>
785
786 * remote-notif.c (DECLARE_QUEUE_P): Remove.
787 (notif_queue): Remove.
788 (remote_notif_process): Add one parameter 'notif_queue'.
789 Update comments. Callers update.
790 (remote_async_get_pending_events_token): Remove.
791 (remote_notif_register_async_event_handler): Remove.
792 (remote_notif_unregister_async_event_handler): Remove.
793 (handle_notification): Add parameter 'notif_queue'. Update
794 comments. Callers update.
795 (notif_xfree): Remove.
796 (remote_notif_state_allocate): New function.
797 (remote_notif_state_xfree): New function.
798 (_initialize_notif): Remove code to allocate queue.
799 * remote-notif.h (DECLARE_QUEUE_P): Moved from remote-notif.c.
800 (struct remote_notif_state): New.
801 (handle_notification): Update declaration.
802 (remote_notif_process): Likewise.
803 (remote_notif_register_async_event_handler): Remove.
804 (remote_notif_unregister_async_event_handler): Remove.
805 (remote_notif_state_allocate): Declare.
806 (remote_notif_state_xfree): Declare.
807 * remote.c (struct remote_state) <notif_state>: New field.
808 (remote_close): Don't call
809 remote_notif_unregister_async_event_handler. Call
810 remote_notif_state_xfree.
811 (remote_open_1): Don't call
812 remote_notif_register_async_event_handler. Call
813 remote_notif_state_allocate.
814
815 2013-10-04 Yao Qi <yao@codesourcery.com>
816
817 * varobj.c (create_child_with_value): Remove 'const' from the
818 type of parameter 'name'.
819 (varobj_add_child): Likewise.
820 (install_dynamic_child): Remove 'const' from the type of
821 parameter 'name'.
822 (varobj_add_child): Likewise.
823 (create_child_with_value): Likewise. Update comments. Don't
824 duplicate 'name'.
825 (update_dynamic_varobj_children): Duplicate 'name'
826 and pass it to install_dynamic_child.
827
828 2013-10-03 Phil Muldoon <pmuldoon@redhat.com>
829
830 * python/py-value.c (convert_value_from_python): Move PyInt_Check
831 conversion logic to occur after PyLong_Check. Comment on order
832 change significance.
833 * python/py-arch.c (archpy_disassemble): Comment on order of
834 conversion for integers and longs.
835
836 2013-10-03 Pedro Alves <palves@redhat.com>
837
838 * common/linux-ptrace.c (linux_check_ptrace_features): Factor out
839 the PTRACE_O_TRACESYSGOOD and PTRACE_O_TRACEFORK to separate
840 functions. Always test for PTRACE_O_TRACESYSGOOD even if
841 PTRACE_O_TRACEFORK is not supported.
842 (linux_test_for_tracesysgood): New function.
843 (linux_test_for_tracefork): New function, factored out from
844 linux_check_ptrace_features, and also don't kill child_pid here.
845
846 2013-10-03 Tristan Gingold <gingold@adacore.com>
847
848 * i386-darwin-nat.c (i386_darwin_dr_set): Fix argument type.
849 Remove verbose error reporting. Use detected state to
850 thread_set_state call.
851 (i386_darwin_dr_get): Fix return type. Remove verbose error
852 report.
853 Remove trailing spaces.
854
855 2013-10-02 Pedro Alves <palves@redhat.com>
856
857 * cp-valprint.c (cp_print_value_fields): Adjust calls to
858 val_print_optimized_out.
859 * jv-valprint.c (java_print_value_fields): Likewise.
860 * p-valprint.c (pascal_object_print_value_fields): Likewise.
861 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full)
862 <DWARF_VALUE_REGISTER>: If the register was not saved, return a
863 new optimized out value.
864 * findvar.c (address_from_register): Likewise.
865 * frame.c (put_frame_register): Tweak error string to say the
866 register was not saved, rather than optimized out.
867 * infcmd.c (default_print_one_register_info): Adjust call to
868 val_print_optimized_out. Use value_of_register instead of
869 get_frame_register_value.
870 * mi/mi-main.c (output_register): Use value_of_register instead of
871 get_frame_register_value.
872 * valprint.c (valprint_check_validity): Likewise.
873 (val_print_optimized_out): New value parameter. If the value is
874 lval_register, print <not saved> instead.
875 (value_check_printable, val_print_scalar_formatted): Adjust calls
876 to val_print_optimized_out.
877 * valprint.h (val_print_optimized_out): New value parameter.
878 * value.c (struct value) <optimized_out>: Extend comment.
879 (error_value_optimized_out): New function.
880 (require_not_optimized_out): Use it. Use a different string for
881 lval_register values.
882 * value.h (error_value_optimized_out): New declaration.
883 * NEWS: Mention <not saved>.
884
885 2013-10-02 Joel Brobecker <brobecker@adacore.com>
886
887 * symtab.c (compare_search_syms): Use FILENAME_CMP instead of
888 strcmp to compare two symtab filenames.
889
890 2013-10-02 Joel Brobecker <brobecker@adacore.com>
891
892 * symtab.c (search_symbols_equal): Delete.
893 (sort_search_symbols_remove_dups): Replace call to
894 search_symbols_equal by call to compare_search_syms,
895 adjusting as necessary.
896
897 2013-10-02 Phil Muldoon <pmuldoon@redhat.com>
898
899 PR python/15579
900
901 * python/python.c: Document gdb.execute command in Python help.
902
903 2013-10-02 Phil Muldoon <pmuldoon@redhat.com>
904
905 * python/py-frame.c (frame_info_to_frame_object): Use
906 gdbpy_convert_exception. Clean up Python object on failure.
907
908 2013-10-02 Phil Muldoon <pmuldoon@redhat.com>
909
910 * python/lib/gdb/command/frame_filters.py
911 (InfoFrameFilter.list_frame_filters): Retrieve exception manually.
912 (ShowFrameFilterPriority.invoke): Ditto.
913
914 2013-10-01 Keith Seitz <keiths@redhat.com>
915
916 * linespec.c (struct ls_parser): Make 'saved_arg' const.
917 (parse_linespec): Make 'argptr' const.
918 Remove temporary cast of 'argptr' to const char **.
919 (decode_line_full): Pass const pointer to parse_linespec.
920 (decode_line_1): Likewise.
921 (decode_objc): Make local variable 'new_argptr' const.
922 (find_function_symbols): Remove temporary cast to char *
923 to find_imps.
924 * objc-lang.c (find_imps): Make argument 'method' const.
925 Return const.
926 * objc-lang.h (find_imps): Likewise.
927
928 2013-10-01 Keith Seitz <keiths@redhat.com>
929
930 * completer.c (skip_quoted_chars): Make all arguments const.
931 Return const.
932 (skip_quoted): Likewise.
933 * completer.h (skip_quoted_chars): Likewise.
934 (skip_quoted): Likewise.
935 * defs.h (skip_quoted): Remove duplicate declaration.
936 * jv-exp.y: Include completer.h.
937 (yylex): Remove unneccessary cast to char * fro skip_quoted.
938 * p-exp.y: Include completer.h.
939
940 2013-10-01 Keith Seitz <keiths@redhat.com>
941
942 * c-exp.y (parse_number): Make first argument const.
943 Make a copy of the input to manipulate.
944 (c_parse_escape): Make first argument const.
945 Make local variable 'tokptr' const.
946 (parse_string_or_char): Make first two arguments const.
947 (macro_original_text): Make const.
948 (lex_one_token): Make local variable 'tokstart' const.
949 Likewise for local variables named 'p'.
950 Cast away const for struct stoken (temporary).
951 * c-lang.h (c_parse_escpae): Make first argument const.
952 * cli/cli-cmds.c (echo_command): Make local variable 'p'
953 const.
954 * cli/cli-setshow.c (do_set_command): Likewise for 'p' in
955 var_string case.
956 * f-exp.y (parse_number): Make first argument const.
957 (match_string_literal): Make local variable 'tokstart'
958 const.
959 (yylex): Make local variable 'p' const.
960 Cast away const for struct stoken (temporary).
961 * go-exp.y (parse_number): Make first argument const.
962 (parse_string_or_char): Likewise.
963 Make local variable 'tokstart' const.
964 (lex_one_token): Likewise for numerous locals called 'p'.
965 Cast away const for struct stoken (temporary).
966 * jv-exp.y (parse_number): Make first argument const.
967 Make local variables 'tokstart' and 'tokptr' const.
968 Cast away const for call to skip_quoted (temporary).
969 (yylex): Make local variable 'p' const.
970 Cast away const for struct stoken (temporary).
971 * m2-exp.y (parse_number): Make local variable 'p' const.
972 (yylex): Likewise for 'tokstart'.
973 Cast away const for struct stoken (temporary).
974 Make local variable 'p' const.
975 * macroexp.c (get_character_constant): Pass a const string
976 to c_parse_escape.
977 (get_string_literal): Likewise.
978 (macro_expand_next): Make first argument const.
979 Cast away const for init_shared_buffer.
980 * macroexp.h (macro_expand_next): Make first argument const.
981 * p-exp.y (yylex): Make a local copy of 'lexptr'.
982 Pass a const string to c_parse_escape.
983 Make local variables 'p' and 'namestart' const.
984 * parse.c (lexptr): Make const.
985 (prev_lexptr): Likewise.
986 (find_template_name_end): Return const.
987 Make argument const, too.
988 (parse_exp_in_context): Make first argument const.
989 Remove the entire const_hack.
990 (parse_exp_in_context_1): Make first argument const.
991 * parser-defs.h (find_template_name_end): Return const.
992 Make argument const, too.
993 (lexptr): Make const.
994 (prev_lexptr): Likewise.
995 * utils.c (parse_escape): Make second argument const.
996 * utils.h (parse_escape): Likewise.
997
998 2013-10-01 Keith Seitz <keiths@redhat.com>
999
1000 * ada-exp.y (write_object_renaming): Update: struct stoken.ptr
1001 is now const.
1002 (block_lookup): Make 'raw_name' and 'name' const.
1003 * ada-lex.l (processString): Update for struct stoken.ptr.
1004 * c-exp.y (qualified_name : TYPENAME COLONCOLON '~' name): Likewise.
1005 (operator_stoken): Likewise.
1006 (lex_one_token): Remove temporary cast to char * for
1007 'yylval.sval.ptr'.
1008 * f-exp.y (yylex): Likewise.
1009 * gdb-types.c (lookup_struct_elt_type): Make argument 'name' const.
1010 * gdbtypes.h (lookup_struct_elt_type): Likewisee.
1011 * go-exp.y (lex_one_token): Remove temporary cast to char * for
1012 'yylval.sval.ptr'.
1013 * jv-exp.y (QualifiedName): Update for struct stoken.ptr.
1014 (yylex): Remove temporary cast to char * for 'yylval.sval.ptr'.
1015 * linespec.c (struct ls_parser): Make 'stream' const.
1016 (find_parameter_list_end): Make argument 'input' and local
1017 variable 'p' const.
1018 (linespec_lexer_lex_string): Make local variables 'start' and
1019 'p' const.
1020 Use skip_spaces_const instead of skip_spaces.
1021 (linespec_lexer_peek_token): Make local variable 'saved_stream'
1022 const.
1023 (parse_linespec): Temporarily cast 'argptr' to const for
1024 'parser->lexer.stream'.
1025 * m2-exp.y (yylex): Remove temporary cast to char * for
1026 'yylval.sval.ptr'.
1027 * objc-lang.c (add_msglist): Make local variable 'p' const.
1028 * p-exp.y (exp : exp '['): Update for struct stoken.ptr.
1029 (exp : STRING): Make 'sp' const.
1030 (parse_number): Make argument 'p' const.
1031 * parser-defs.h (struct stoken): Make 'ptr' const.
1032
1033 2013-10-01 Doug Evans <dje@google.com>
1034
1035 * cli/cli-decode.c: Remove unnecessary inclusion of tui/tui.h.
1036
1037 2013-10-01 Yao Qi <yao@codesourcery.com>
1038
1039 * varobj.c (c_value_of_root): Remove declaration.
1040 (cplus_value_of_root, java_value_of_root): Likewise.
1041 (ada_value_of_root): Likewise.
1042 (struct language_specific) <value_of_root>: Remove.
1043 (languages): Update initialization.
1044 (check_scope): Move earlier.
1045 (c_value_of_root): Move earlier and rename to ...
1046 (value_of_root_1): ... this.
1047 (value_of_root): Caller update.
1048 (cplus_value_of_root, java_value_of_root): Remove.
1049 (ada_value_of_root): Remove.
1050
1051 2013-10-01 Yao Qi <yao@codesourcery.com>
1052
1053 * varobj.c (varobj_format_string): Remove "unknown".
1054 (languages): Remove the first element.
1055 * varobj.h (enum varobj_languages): Remove vlang_c.
1056
1057 2013-10-01 Yao Qi <yao@codesourcery.com>
1058
1059 * varobj.c (struct language_specific) <language>: Remove.
1060 (languages): Update the initialization.
1061
1062 2013-10-01 Yao Qi <yao@codesourcery.com>
1063
1064 * arm-wince-tdep.c: Remove inclusion of "solib.h" and
1065 "solib-target.h". Include "windows-tdep.h".
1066 (arm_wince_init_abi): Call windows_init_abi. Remove call to
1067 set_solib_ops and set_gdbarch_has_dos_based_file_system.
1068 * configure.tgt (arm*-wince-pe | arm*-*-mingw32ce*): Append
1069 windows-tdep.o to gdb_target_obs.
1070
1071 2013-10-01 Yao Qi <yao@codesourcery.com>
1072
1073 * amd64-windows-tdep.c: Remove inclusion of "solib.h" and
1074 "solib-target.h".
1075 (amd64_windows_init_abi): Don't call set_solib_ops and
1076 set_gdbarch_iterate_over_objfiles_in_search_order. Call
1077 windows_init_abi instead.
1078 * i386-cygwin-tdep.c: Remove inclusion of "solib.h" and
1079 "solib-target.h".
1080 (i386_cygwin_init_abi): Don't call set_solib_ops,
1081 set_gdbarch_has_dos_based_file_system and
1082 set_gdbarch_iterate_over_objfiles_in_search_order. Call
1083 windows_init_abi instead.
1084 * windows-tdep.c: Include "solib.h" and "solib-target.h".
1085 (windows_init_abi): New function.
1086 (windows_iterate_over_objfiles_in_search_order): Make it
1087 static.
1088 * windows-tdep.h (windows_init_abi): Declare.
1089 (windows_iterate_over_objfiles_in_search_order): Remove
1090 declaration.
1091
1092 2013-10-01 Jerome Guitton <guitton@adacore.com>
1093
1094 Checked in by Joel Brobecker <brobecker@adacore.com>
1095 * system-gdbinit/elinos.py (get_elinos_environment): Return an
1096 incomplete dictionnary instead of None in case of missing
1097 environment variables.
1098 (elinos_init): in case of an incomplete environment, best
1099 effort to load system libraries instead of abort.
1100
1101 2013-10-01 Joel Brobecker <brobecker@adacore.com>
1102
1103 * ada-lang.c (ada_has_this_exception_support): Ignore
1104 mst_solib_trampoline minimal symbols.
1105
1106 2013-09-30 Tristan Gingold <gingold@adacore.com>
1107
1108 * i386-darwin-nat.c (darwin_complete_target): Install methods for
1109 hardware watchpoint.
1110 (i386_darwin_dr_set): Support 32 and 64 bit states.
1111 (i386_darwin_dr_get): Likewise.
1112 (i386_darwin_dr_set_control): Make static.
1113 (i386_darwin_dr_set_addr, i386_darwin_dr_get_addr)
1114 (i386_darwin_dr_get_status, i386_darwin_dr_get_control): Likewise.
1115
1116 2013-09-30 Luis Machado <lgustavo@codesourcery.com>
1117
1118 * aarch64-linux-nat.c: Replace PIDGET with ptid_get_pid.
1119 Replace TIDGET with ptid_get_lwp.
1120 Replace GET_LWP with ptid_get_lwp.
1121 * aix-thread.c (BUILD_THREAD, BUILD_LWP): Remove.
1122 Replace BUILD_THREAD with ptid_build.
1123 Replace BUILD_LWP with ptid_build.
1124 Replace PIDGET with ptid_get_pid.
1125 Replace TIDGET with ptid_get_lwp.
1126 * alphabsd-nat.c: Replace PIDGET with ptid_get_pid.
1127 * amd64-linux-nat.c: Replace PIDGET with ptid_get_pid.
1128 Replace TIDGET with ptid_get_lwp.
1129 * amd64bsd-nat.c: Replace PIDGET with ptid_get_pid.
1130 * arm-linux-nat.c: Replace PIDGET with ptid_get_pid.
1131 Replace TIDGET with ptid_get_lwp.
1132 Replace GET_LWP with ptid_get_lwp.
1133 * armnbsd-nat.c: Replace PIDGET with ptid_get_pid.
1134 * auxv.c: Likewise.
1135 * breakpoint.c: Likewise.
1136 * common/ptid.c (ptid_is_pid): Condense check for
1137 null_ptid and minus_one_ptid.
1138 (ptid_lwp_p): New function.
1139 (ptid_tid_p): New function.
1140 * common/ptid.h: Update comments for accessors.
1141 (ptid_lwp_p): New prototype.
1142 (ptid_tid_p): New prototype.
1143 * defs.h (PIDGET, TIDGET, MERGEPID): Do not define.
1144 * gcore.c: Replace PIDGET with ptid_get_pid.
1145 * gdbthread.h: Likewise.
1146 * gnu-nat.c: Likewise.
1147 * hppa-linux-nat.c: Replace PIDGET with ptid_get_pid.
1148 Replace TIDGET with ptid_get_lwp.
1149 * hppabsd-nat.c: Replace PIDGET with ptid_get_pid.
1150 * hppanbsd-nat.c: Likewise.
1151 * i386-linux-nat.c: Replace PIDGET with ptid_get_pid.
1152 Replace TIDGET with ptid_get_lwp.
1153 * i386bsd-nat.c: Replace PIDGET with ptid_get_pid.
1154 * ia64-linux-nat.c: Replace PIDGET with ptid_get_pid.
1155 * infcmd.c: Likewise.
1156 * inferior.h: Likewise.
1157 * inflow.c: Likewise.
1158 * infrun.c: Likewise.
1159 * linux-fork.c: Likewise.
1160 * linux-nat.c: Replace PIDGET with ptid_get_pid.
1161 Replace GET_PID with ptid_get_pid.
1162 Replace is_lwp with ptid_lwp_p.
1163 Replace GET_LWP with ptid_get_lwp.
1164 Replace BUILD_LWP with ptid_build.
1165
1166 2013-09-28 Mike Frysinger <vapier@gentoo.org>
1167
1168 * common/linux-btrace.c: Move sys/syscall.h out of the
1169 HAVE_LINUX_PERF_EVENT_H check and wrap it in HAVE_SYS_SYSCALL_H.
1170 Also check for SYS_perf_event_open before attempting to buid.
1171
1172 2013-09-27 Doug Evans <dje@google.com>
1173
1174 * dwarf2read.c (dwarf2_section_info): Add comment.
1175 (dwp_file): Split loaded_cutus into loaded_cus, loaded_tus.
1176 All uses updated.
1177 (dwarf2_section_empty_p): Rename arg from "info" to "section".
1178 (dwarf2_read_section): Delete unused local "header". Add section
1179 name to error message.
1180 (create_dwo_in_dwp): Tweak comment.
1181 (MAX_NR_DWO_SECTIONS): Combine count of .debug_macro + .debug_macinfo.
1182
1183 * dwarf2read.c (die_reader_specs): Tweak comment.
1184 (get_section_bfd_owner, get_section_bfd_section): New functions.
1185 (get_section_name, get_section_file_name): New functions.
1186 (get_section_id, get_section_flags): New functions.
1187 (*): Use new functions to access section fields.
1188
1189 * dwarf2read.c (struct dwo_file): Add/tweak comments.
1190 (lookup_dwo_unit_in_dwp): Renamed from lookup_dwo_in_dwp. Remove
1191 arg "htab". All callers updated.
1192 (create_debug_types_hash_table): Remove redundant copy of
1193 abbrev_section.
1194 (create_dwo_in_dwp): Tweak comments.
1195 (read_str_index): Tweak comment. Record dwarf form name in static
1196 local.
1197
1198 2013-09-27 Pedro Alves <palves@redhat.com>
1199
1200 * remote.h (REMOTE_SYSROOT_PREFIX): New define.
1201 (remote_filename_p): Add comment.
1202 * remote.c (remote_filename_p): Adjust to use
1203 REMOTE_SYSROOT_PREFIX.
1204 * solib.c (solib_find): When deciding whether we need to add a
1205 directory separator, check whether the sysroot is "remote:"
1206 instead of checking whether the patch has a drive spec. Add
1207 comments.
1208
1209 2013-09-27 Pedro Alves <palves@redhat.com>
1210
1211 * remote.c (struct stop_reply) <solibs_changed, replay_event>:
1212 Delete fields.
1213 (remote_parse_stop_reply): Adjust, setting event->ws.kind
1214 directly.
1215
1216 2013-09-26 Jan Kratochvil <jan.kratochvil@redhat.com>
1217
1218 Fix set debug frame output.
1219 * frame.c (fprint_frame_type): Add TAILCALL_FRAME entry. Move
1220 SENTINEL_FRAME entry lower to match enum frame_type order.
1221
1222 2013-09-26 Pierre Muller <muller@sourceware.org>
1223
1224 Replace constant values 8 to 15 by AMD64_R8_REGNUM to
1225 AMD64_R15_REGNUM when a register index is expected.
1226 * amd64-windows-tdep.c (amd64_windows_dummy_call_integer_regs):
1227 Substitute in array.
1228 * amd64-tdep.c (amd64_dwarf_regmap): Ditto.
1229 (amd64_push_arguments): Substitute in integer_regnum array.
1230
1231 2013-09-25 Doug Evans <dje@google.com>
1232
1233 * objfiles.c (allocate_objfile): Move comment to better place.
1234
1235 New option "set debug symfile on".
1236 * NEWS: Mention "set debug symfile".
1237 * Makefile.in (SFILES): Add symfile-debug.c.
1238 (COMMON_OBS): Add symfile-debug.o.
1239 * elfread.c (elf_symfile_read): Use objfile_set_sym_fns to set the
1240 objfile's symbol functions.
1241 * objfiles.h (objfile_set_sym_fns): Declare.
1242 * symfile-debug.c: New file.
1243 * symfile.c (syms_from_objfile_1): Use objfile_set_sym_fns to set the
1244 objfile's symbol functions.
1245 (reread_symbols): Ditto.
1246
1247 * symfile.h (struct sym_fns): Delete member "sym_flavour".
1248 All uses updated.
1249 (add_symtab_fns): Update prototype.
1250 * symfile.c (sym_fns_ptr): Delete. Replace with ...
1251 (registered_sym_fns): ... this.
1252 (symtab_fns): Update.
1253 (add_symtab_fns): New arg "flavour". All callers updated.
1254 (find_sym_fns): Rewrite to use new sym_fns registry.
1255
1256 * symfile.h (struct sym_fns): Add "objfile" argument to
1257 sym_read_linetable. All uses updated.
1258
1259 * symtab.c (domain_name, search_domain_name): New functions.
1260 * symtab.h (domain_name, search_domain_name): Declare.
1261
1262 * symfile.h (struct quick_symbol_functions): Reorg arg list of
1263 map_matching_symbols so objfile is first. All uses updated.
1264 * dwarf2read.c (dw2_map_matching_symbols): Update signature.
1265 * psymtab.c (map_matching_symbols_psymtab): Update signature.
1266
1267 2013-09-25 Andreas Arnez <arnez@linux.vnet.ibm.com>
1268
1269 PR shlibs/8882
1270 * solib-svr4.c (svr4_read_so_list): Skip the vDSO when reading
1271 link map entries.
1272
1273 2013-09-24 Doug Evans <dje@google.com>
1274
1275 * objfiles.c (free_objfile): Move comment.
1276
1277 2013-09-24 Joel Brobecker <brobecker@adacore.com>
1278
1279 * ada-exp.y (string_to_operator): Delete.
1280 (dummy_string_to_ada_operator): Delete.
1281
1282 2013-09-24 Joel Brobecker <brobecker@adacore.com>
1283
1284 Revert:
1285 * i386-tdep.h (enum amd64_reg_class): New, moved here from
1286 amd64-tdep.c.
1287 (struct gdbarch_tdep): Add fields call_dummy_num_integer_regs,
1288 call_dummy_integer_regs, and classify.
1289 * amd64-tdep.h (amd64_classify): Add declaration.
1290 * amd64-tdep.c (amd64_dummy_call_integer_regs): New static constant.
1291 (amd64_reg_class): Delete, moved to i386-tdep.h.
1292 (amd64_classify): Make non-static. Move declaration to amd64-tdep.h.
1293 Replace call to amd64_classify by call to tdep->classify.
1294 (amd64_push_arguments): Get the list of registers to use for
1295 passing integer parameters from the gdbarch tdep structure,
1296 rather than using a hardcoded one. Replace calls to amd64_classify
1297 by calls to tdep->classify.
1298 (amd64_push_dummy_call): Get the register number used for
1299 the "hidden" argument from tdep->call_dummy_integer_regs.
1300 (amd64_init_abi): Initialize tdep->call_dummy_num_integer_regs
1301 and tdep->call_dummy_integer_regs. Set tdep->classify.
1302
1303 2013-09-24 Joel Brobecker <brobecker@adacore.com>
1304
1305 Revert:
1306 * i386-tdep.h (gdbarch_tdep): Add field memory_args_by_pointer.
1307 * amd64-tdep.c (amd64_push_arguments): Add handling of architectures
1308 where tdep->memory_args_by_pointer is non-zero.
1309
1310 2013-09-24 Joel Brobecker <brobecker@adacore.com>
1311
1312 Revert:
1313 * i386-tdep.h (struct gdbarch_tdep): Add new field
1314 integer_param_regs_saved_in_caller_frame.
1315 * amd64-tdep.c (amd64_push_dummy_call): Allocate some memory on
1316 stack if tdep->integer_param_regs_saved_in_caller_frame is set.
1317
1318 2013-09-24 Joel Brobecker <brobecker@adacore.com>
1319
1320 * amd64-windows-tdep.c: #include "value.h"
1321 (amd64_windows_classify): Delete.
1322 (amd64_windows_passed_by_integer_register)
1323 (amd64_windows_passed_by_xmm_register)
1324 (amd64_windows_passed_by_pointer)
1325 (amd64_windows_adjust_args_passed_by_pointer)
1326 (amd64_windows_store_arg_in_reg, amd64_windows_push_arguments)
1327 (amd64_windows_push_dummy_call): New functions.
1328 (amd64_windows_init_abi): Remove setting of
1329 tdep->call_dummy_num_integer_regs, tdep->call_dummy_integer_regs,
1330 tdep->classify, tdep->memory_args_by_pointer and
1331 tdep->integer_param_regs_saved_in_caller_frame.
1332 Add call to set_gdbarch_push_dummy_call.
1333
1334 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1335
1336 * dwarf2read.c (open_and_init_dwp_file): Try open_dwp_file also with
1337 objfile->original_name.
1338
1339 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1340
1341 Pass down original filename for objfile.
1342 * coffread.c (coff_symfile_read): Update symbol_file_add_separate call.
1343 * elfread.c (elf_symfile_read): Likewise.
1344 * jit.c (jit_object_close_impl): Update allocate_objfile call, no
1345 longer set ORIGINAL_NAME.
1346 (jit_bfd_try_read_symtab): Update symbol_file_add_from_bfd call.
1347 * jv-lang.c (get_dynamics_objfile): Update allocate_objfile call.
1348 * machoread.c (macho_add_oso_symfile): Add parameter name. Update
1349 symbol_file_add_from_bfd call.
1350 (macho_symfile_read_all_oso): Update two macho_add_oso_symfile calls.
1351 (macho_check_dsym): Add parameter filenamep. Change function comment.
1352 Set *filenamep.
1353 (macho_symfile_read): New variable dsym_filename. Update
1354 macho_check_dsym call. Use it for symbol_file_add_separate.
1355 * objfiles.c (allocate_objfile): Add parameter name. New comment for
1356 it. Use it for objfile->original_name.
1357 (objfile_name): Return OBFD's filename, if available.
1358 * objfiles.h (allocate_objfile): Add new parameter name.
1359 * solib.c (solib_read_symbols): Update symbol_file_add_from_bfd call.
1360 * symfile-mem.c (symbol_file_add_from_memory): Update
1361 symbol_file_add_from_bfd call.
1362 * symfile.c (read_symbols): Update symbol_file_add_separate call, new
1363 comment for it.
1364 (symbol_file_add_with_addrs): New parameter name, add function comment
1365 for it. Remove variable name. Update allocate_objfile call.
1366 (symbol_file_add_separate): New parameter name, add function comment
1367 for it. Update symbol_file_add_with_addrs call.
1368 (symbol_file_add_from_bfd): New parameter name. Update
1369 symbol_file_add_with_addrs call.
1370 (symbol_file_add): Update symbol_file_add_from_bfd call.
1371 (reread_symbols): New variable original_name. Save
1372 objfile->original_name by it.
1373 * symfile.h (symbol_file_add_from_bfd, symbol_file_add_separate): Add
1374 second parameter.
1375
1376 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1377
1378 Code cleanup: Add objfile_name accessor function.
1379 * ada-lang.c (is_known_support_routine): Use objfile_name.
1380 * auto-load.c (source_gdb_script_for_objfile)
1381 (auto_load_objfile_script): Likewise.
1382 * coffread.c (coff_symtab_read, read_one_sym): Likewise.
1383 * dbxread.c (dbx_symfile_read): Likewise.
1384 * dwarf2-frame.c (dwarf2_build_frame_info): Likewise.
1385 * dwarf2loc.c (locexpr_describe_location_piece): Likewise.
1386 * dwarf2read.c (dwarf2_get_dwz_file, dwarf2_read_index)
1387 (dw2_symtab_iter_next, dw2_expand_symtabs_matching)
1388 (lookup_dwp_signatured_type, lookup_dwo_unit)
1389 (dwarf2_build_psymtabs_hard, scan_partial_symbols, process_queue)
1390 (fixup_go_packaging, process_imported_unit_die, dwarf2_physname)
1391 (read_import_statement, create_dwo_cu, open_and_init_dwp_file)
1392 (lookup_dwo_cutu, read_call_site_scope, dwarf2_ranges_read)
1393 (dwarf2_record_block_ranges, read_common_block, read_typedef)
1394 (read_subrange_type, load_partial_dies, read_partial_die)
1395 (read_addr_index_1, read_str_index, dwarf_decode_lines_1)
1396 (die_containing_type, build_error_marker_type, lookup_die_type)
1397 (follow_die_ref_or_sig, follow_die_ref, dwarf2_fetch_die_loc_sect_off)
1398 (dwarf2_fetch_constant_bytes, follow_die_sig, get_signatured_type)
1399 (get_DW_AT_signature_type, write_psymtabs_to_index)
1400 (save_gdb_index_command): Likewise.
1401 * elfread.c (find_separate_debug_file_by_buildid, elf_symfile_read):
1402 Likewise.
1403 * expprint.c (dump_subexp_body_standard): Likewise.
1404 * gdbtypes.c (type_name_no_tag_or_error): Likewise.
1405 * jit.c (jit_object_close_impl): Use the objfile field name renamed to
1406 original_name.
1407 * linux-thread-db.c (try_thread_db_load_from_pdir_1): New variable
1408 obj_name, use objfile_name for it, use the variable.
1409 (try_thread_db_load_from_pdir, has_libpthread, thread_db_new_objfile):
1410 Use objfile_name.
1411 * machoread.c (macho_symtab_read, macho_check_dsym)
1412 (macho_symfile_relocate): Likewise.
1413 * maint.c (maintenance_translate_address): Likewise.
1414 * minidebug.c (find_separate_debug_file_in_section): Likewise.
1415 * minsyms.c (install_minimal_symbols): Likewise.
1416 * objfiles.c (allocate_objfile): Use the objfile field name renamed to
1417 original_name.
1418 (filter_overlapping_sections): Use objfile_name.
1419 (objfile_name): New function.
1420 * objfiles.h (struct objfile): Rename field name to original_name.
1421 (objfile_name): New prototype.
1422 * printcmd.c (sym_info, address_info): Use objfile_name.
1423 * probe.c (parse_probes, collect_probes, compare_probes)
1424 (info_probes_for_ops): Likewise.
1425 * progspace.c (clone_program_space): Likewise.
1426 * psymtab.c (require_partial_symbols, dump_psymtab, allocate_psymtab)
1427 (maintenance_info_psymtabs): Likewise.
1428 * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile)
1429 (source_section_scripts): Likewise.
1430 * python/py-objfile.c (objfpy_get_filename): Likewise.
1431 * python/py-progspace.c (pspy_get_filename): Likewise.
1432 * solib-aix.c (solib_aix_get_toc_value): Likewise.
1433 * solib-som.c (match_main, som_solib_section_offsets): Likewise.
1434 * solib.c (solib_read_symbols): Likewise.
1435 * stabsread.c (scan_file_globals): Likewise.
1436 * stap-probe.c (handle_stap_probe): Likewise.
1437 * symfile.c (symbol_file_clear, separate_debug_file_exists)
1438 (find_separate_debug_file_by_debuglink): Likewise.
1439 (reread_symbols): Likewise. Use the objfile field name renamed to
1440 original_name.
1441 (allocate_symtab): Use objfile_name.
1442 * symmisc.c (print_symbol_bcache_statistics, print_objfile_statistics)
1443 (dump_objfile, dump_msymbols, dump_symtab_1)
1444 (maintenance_print_msymbols, maintenance_print_objfiles)
1445 (maintenance_info_symtabs, maintenance_check_symtabs): Likewise.
1446 * target.c (target_translate_tls_address, target_info): Likewise.
1447 * xcoffread.c (xcoff_initial_scan): Make variable name const. Use
1448 objfile_name.
1449
1450 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1451
1452 Code cleanup.
1453 * probe.c (parse_probes): Rename variable objfile_name to
1454 objfile_namestr.
1455
1456 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1457
1458 Remove solib-sunos.c.
1459 * Makefile.in (ALLDEPFILES): Remove solib-sunos.c.
1460 * config/m68k/obsd.mh (NATDEPFILES): Remove solib-sunos.o.
1461 * objfiles.c (rt_common_objfile): Remove.
1462 (free_objfile): Remove rt_common_objfile comparison.
1463 * objfiles.h (rt_common_objfile): Remove.
1464 * solib-sunos.c: Remove.
1465 * symfile.c (reread_symbols): Remove solib-sunos.c comment.
1466
1467 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1468
1469 Remove a.out NetBSD and OpenBSD hosts.
1470 * NEWS (Removed native configurations): New.
1471 * config/arm/nbsdaout.mh: Remove.
1472 * config/i386/nbsdaout.mh: Remove.
1473 * config/i386/obsdaout.mh: Remove.
1474 * config/m68k/nbsdaout.mh: Remove.
1475 * config/sparc/nbsdaout.mh: Remove.
1476 * config/vax/nbsdaout.mh: Remove.
1477 * configure.host (arm*-*-netbsd*, i[34567]86-*-netbsd*)
1478 (i[34567]86-*-openbsd[0-2].*, i[34567]86-*-openbsd3.[0-3])
1479 (m68*-*-netbsd*, sparc-*-netbsd*, vax-*-netbsd*): Add them to obsolete
1480 error.
1481 (arm*-*-netbsd*, i[34567]86-*-netbsd*, i[34567]86-*-openbsd[0-2].*)
1482 (i[34567]86-*-openbsd3.[0-3], m68*-*-netbsd*, sparc-*-netbsdaout*)
1483 (sparc-*-netbsd*, vax-*-netbsd*): Remove.
1484
1485 2013-09-23 Tom Tromey <tromey@redhat.com>
1486
1487 * linespec.c (struct minsym_and_objfile): Remove.
1488 (minsym_and_objfile_d): Remove.
1489 (struct linespec, struct collect_info, linespec_parse_basic)
1490 (convert_linespec_to_sals, linespec_parser_delete, decode_objc)
1491 (compare_msymbols, find_method, find_function_symbols)
1492 (find_linespec_symbols, struct collect_minsyms, compare_msyms)
1493 (add_minsym, search_minsyms_for_name): Update.
1494
1495 2013-09-23 Andrew Burgess <aburgess@broadcom.com>
1496
1497 * regcache.c: Add include of valprint.h.
1498 (dump_endian_bytes): Delete.
1499 (regcache_dump): Use print_hex_chars not dump_endian_bytes.
1500
1501 2013-09-23 Andrew Burgess <aburgess@broadcom.com>
1502
1503 * sh64-tdep.c (sh64_do_fp_register): Use print_hex_chars.
1504
1505 2013-09-19 Pedro Alves <palves@redhat.com>
1506
1507 * breakpoint.c (remove_threaded_breakpoints): Skip non-user
1508 breakpoints.
1509
1510 2013-09-19 Pedro Alves <palves@redhat.com>
1511 Thomas Schwinge <thomas@codesourcery.com>
1512 Yue Lu <hacklu.newborn@gmail.com>
1513
1514 * gnu-nat.c (gnu_read_inferior, gnu_write_inferior): Make static.
1515 Take a gdb_byte pointer instead of a char pointer.
1516
1517 * gnu-nat.c (gnu_xfer_memory): Adjust interface as
1518 gnu_xfer_partial helper.
1519 (gnu_xfer_partial): New function.
1520 (gnu_target): Don't install a deprecated_xfer_memory hook.
1521 Install a to_xfer_partial hook.
1522
1523 2013-09-19 Jan Kratochvil <jan.kratochvil@redhat.com>
1524
1525 Constification.
1526 * main.c (captured_main): Replace catch_command_errors by
1527 catch_command_errors_const. Twice.
1528 * symfile.c (symbol_file_add_main_1): Make args parameter const.
1529 (symbol_file_add): Make name parameter const.
1530 (symbol_file_add_main, symbol_file_add_main_1): Make args parameter const.
1531 (symfile_bfd_open): Make name parameter const, rename it to cname. Add
1532 variable name. Change their usage accordingly.
1533 * symfile.h (symbol_file_add, symfile_bfd_open): Make first parameter
1534 const.
1535 (symbol_file_add_main): Make args parameter const.
1536
1537 2013-09-18 Raunaq Bathija <raunaq12@in.ibm.com>
1538 Ulrich Weigand <uweigand@de.ibm.com>
1539
1540 * xcoffread.c (struct coff_symbol): Use CORE_ADDR as type
1541 of c_value member.
1542 (read_xcoff_symtab): Use CORE_ADDR as type of fcn_start_addr.
1543
1544 2013-09-18 Pedro Alves <palves@redhat.com>
1545 Yue Lu <hacklu.newborn@gmail.com>
1546
1547 * gnu-nat.c (inf_validate_procs, gnu_wait, gnu_resume)
1548 (gnu_create_inferior)
1549 (gnu_attach, gnu_thread_alive, gnu_pid_to_str, cur_thread)
1550 (set_sig_thread_cmd): Use the lwpid field of ptids to
1551 store/extract thread ids instead of the tid field.
1552 * i386gnu-nat.c (gnu_fetch_registers): Adjust.
1553
1554 2013-09-18 Andrew Burgess <aburgess@broadcom.com>
1555
1556 * infcmd.c (default_print_one_register_info): Add detection of
1557 optimized out values.
1558 (default_print_registers_info): Switch to using
1559 get_frame_register_value.
1560
1561 2013-09-18 Markus Metzger <markus.t.metzger@intel.com>
1562
1563 * infrun.c (handle_inferior_event): Check if we know the
1564 function start address before setting a resume breakpoint.
1565
1566 2013-09-18 Pedro Alves <palves@redhat.com>
1567
1568 * gnu-nat.c (set_sig_thread_cmd): Compare the thread's ptid to
1569 minus_one_ptid instead of looking at the ptid's tid field and
1570 comparing that to -1.
1571
1572 2013-09-18 Andrew Burgess <aburgess@broadcom.com>
1573
1574 * main.h (get_gdb_program_name): Remove extra whitespace.
1575
1576 2013-09-18 Andrew Burgess <aburgess@broadcom.com>
1577
1578 * main.h (get_gdb_program_name): Add declaration.
1579 * main.c (get_gdb_program_name): Add definition.
1580
1581 2013-09-17 Doug Evans <dje@google.com>
1582
1583 * dwarf2read.c: Move definitions of complaint functions to after
1584 forward declarations of local functions.
1585
1586 2013-09-17 Muhammad Waqas <mwaqas@codesourcery.com>
1587 Pedro Alves <palves@redhat.com>
1588
1589 PR gdb/11568
1590 * breakpoint.c (remove_threaded_breakpoints): New function.
1591 (_initialize_breakpoint): Attach remove_threaded_breakpoints
1592 as thread_exit observer.
1593
1594 2013-09-17 Pedro Alves <palves@redhat.com>
1595
1596 PR gdb/15911
1597 * ada-tasks.c (task_command_1): Adjust call to print_stack_frame.
1598 * bsd-kvm.c (bsd_kvm_open, bsd_kvm_proc_cmd, bsd_kvm_pcb_cmd):
1599 * corelow.c (core_open):
1600 * frame.h (print_stack_frame, print_frame_info): New
1601 'set_current_sal' parameter.
1602 * infcmd.c (finish_command, kill_command): Adjust call to
1603 print_stack_frame.
1604 * inferior.c (inferior_command): Likewise.
1605 * infrun.c (normal_stop): Likewise.
1606 * linux-fork.c (linux_fork_context): Likewise.
1607 * record-full.c (record_full_goto_entry, record_full_restore):
1608 Likewise.
1609 * remote-mips.c (common_open): Likewise.
1610 * stack.c (print_stack_frame): New 'set_current_sal' parameter.
1611 Use it.
1612 (print_frame_info): New 'set_current_sal' parameter. Set the last
1613 displayed sal depending on the new paremeter instead of looking at
1614 print_what.
1615 (backtrace_command_1, select_and_print_frame, frame_command)
1616 (current_frame_command, up_command, down_command): Adjust call to
1617 print_stack_frame.
1618 * thread.c (print_thread_info, restore_selected_frame)
1619 (do_captured_thread_select): Adjust call to print_stack_frame.
1620 * tracepoint.c (tfind_1): Likewise.
1621 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames)
1622 (mi_cmd_stack_info_frame): Likewise.
1623 * mi/mi-interp.c (mi_on_normal_stop): Likewise.
1624 * mi/mi-main.c (mi_cmd_exec_return, mi_cmd_trace_find): Likewise.
1625
1626 2013-09-16 Sergio Durigan Junior <sergiodj@redhat.com>
1627
1628 * value.c (isvoid_internal_fn): Replace "parameter" with
1629 "argument".
1630
1631 2013-09-16 Stan Shebs <stan@codesourcery.com>
1632
1633 * README: Update references to writing code for GDB.
1634 * configure.ac (build_warnings): Remove obsolete comment.
1635 * configure: Regenerate.
1636 * gdbarch.sh: Remove references to gdbint.texinfo.
1637 * gdbarch.h: Regenerate.
1638 * gdbtypes.c (objfile_type): Remove comments referencing internals
1639 manual and D10V.
1640
1641 2013-09-16 Sergio Durigan Junior <sergiodj@redhat.com>
1642
1643 * NEWS: Mention new convenience function $_isvoid.
1644 * value.c (isvoid_internal_fn): New function.
1645 (_initialize_values): Add new convenience function $_isvoid.
1646
1647 2013-09-16 Pierre Muller <muller@sourceware.org>
1648
1649 * arm-linux-tdep.c: Add "elf/common.h" header.
1650 Remove AT_HWCAP macro definintion as it is provided in
1651 added include file.
1652 * s390-tdep.c: Remove system header <elf.h>
1653 Add "elf/common.h" header for AT_HWCAP definition.
1654 (s390_core_read_description): Use correct CORE_ADDR
1655 for hwcap local variable used as third parameter
1656 of function target_auxv_search.
1657
1658 2013-09-14 Pierre Muller <muller@sourceware.org>
1659 Tom Tromey <tromey@redhat.com>
1660 Pedro Alves <palves@redhat.com>
1661
1662 * common/filestuff.c (gdb_fopen_cloexec): Do not try to use "e"
1663 mode if operating system doesn't know O_CLOEXEC.
1664
1665 2013-09-13 Jan Kratochvil <jan.kratochvil@redhat.com>
1666
1667 Code cleanup.
1668 * symfile.c (reread_symbols): Move variable obfd_filename to a more
1669 inner block.
1670
1671 2013-09-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
1672
1673 * NEWS: Mention TDB support.
1674 * features/s390-tdb.xml: New file.
1675 * features/s390-te-linux64.xml: New file.
1676 * features/s390x-te-linux64.xml: New file.
1677 * features/Makefile (WHICH): Add new tdescs above.
1678 (s390-te-linux64-expedite): Set.
1679 (s390x-te-linux64-expedite): Set.
1680 * features/s390-te-linux64.c: New file (generated).
1681 * features/s390x-te-linux64.c: New file (generated).
1682 * regformats/s390-te-linux64.dat: New file (generated).
1683 * regformats/s390x-te-linux64.dat: New file (generated).
1684 * s390-tdep.h (HWCAP_S390_HIGH_GPRS): Define.
1685 (HWCAP_S390_TE): Likewise.
1686 (S390_TDB_DWORD0_REGNUM): Likewise.
1687 (S390_TDB_DWORD0_REGNUM): Likewise.
1688 (S390_TDB_ABORT_CODE_REGNUM): Likewise.
1689 (S390_TDB_CONFLICT_TOKEN_REGNUM): Likewise.
1690 (S390_TDB_ATIA_REGNUM): Likewise.
1691 (S390_TDB_R0_REGNUM): Likewise.
1692 (S390_TDB_R1_REGNUM): Likewise.
1693 (S390_TDB_R2_REGNUM): Likewise.
1694 (S390_TDB_R3_REGNUM): Likewise.
1695 (S390_TDB_R4_REGNUM): Likewise.
1696 (S390_TDB_R5_REGNUM): Likewise.
1697 (S390_TDB_R6_REGNUM): Likewise.
1698 (S390_TDB_R7_REGNUM): Likewise.
1699 (S390_TDB_R8_REGNUM): Likewise.
1700 (S390_TDB_R9_REGNUM): Likewise.
1701 (S390_TDB_R10_REGNUM): Likewise.
1702 (S390_TDB_R11_REGNUM): Likewise.
1703 (S390_TDB_R12_REGNUM): Likewise.
1704 (S390_TDB_R13_REGNUM): Likewise.
1705 (S390_TDB_R14_REGNUM): Likewise.
1706 (S390_TDB_R15_REGNUM): Likewise.
1707 (S390_NUM_REGS): Increase.
1708 (S390_IS_TDBREGSET_REGNUM): New macro.
1709 (s390_regmap_tdb): Declare.
1710 (s390_sizeof_tdbregset): Define.
1711 (tdesc_s390_te_linux64): Declare.
1712 (tdesc_s390x_te_linux64): Likewise.
1713 * s390-tdep.c: Add includes for "auxv.h", <elf.h>,
1714 "features/s390-te-linux64.c", and "features/s390x-te-linux64.c".
1715 (s390_regmap_tdb): New regmap.
1716 (s390_supply_tdb_regset): New function.
1717 (s390_tdb_regset): New regset.
1718 (s390_linux64v2_regset_sections): Add TDB regset to list.
1719 (s390x_linux64v2_regset_sections): Likewise.
1720 (s390_regset_from_core_section): Recognize TDB core note section.
1721 (s390_core_read_description): If HWCAP indicates TE support,
1722 select tdesc_s390_te_linux64 or tdesc_s390_s390x_te_linux64.
1723 (s390_gdbarch_init): Handle TDB regset.
1724 (_initialize_s390_tdep): Initialize new tdescs.
1725 * s390-nat.c (HWCAP_S390_HIGH_GPRS): Remove define.
1726 (have_regset_tdb): New variable.
1727 (s390_native_supply): Support register invalidation.
1728 (fetch_regset): Invalidate registers if ptrace yields ENODATA.
1729 (check_regset): Treat ENODATA as "regset exists".
1730 (s390_linux_fetch_inferior_registers): Add TDB.
1731 (s390_read_description): Check for TDB existence and select
1732 appropriate tdesc.
1733 * gdbserver/Makefile.in (clean): Add removal of new makefile
1734 targets.
1735 (s390-te-linux64.c): New makefile target.
1736 (s390x-te-linux64.c): Likewise.
1737 * gdbserver/configure.srv (srv_regobj): Append new objects
1738 s390-te-linux64.o and s390x-te-linux64.o.
1739 (srv_xmlfiles): Append new files s390-te-linux64.xml,
1740 s390x-te-linux64.xml, and s390-tdb.xml.
1741 * gdbserver/linux-s390-low.c (init_registers_s390_te_linux64): New
1742 declaration.
1743 (tdesc_s390_te_linux64): Likewise.
1744 (init_registers_s390x_te_linux64): Likewise.
1745 (tdesc_s390x_te_linux64): Likewise.
1746 (s390_check_regset): Treat ENODATA as "regset exists".
1747 (s390_arch_setup): Add TDB regset support.
1748 (initialize_low_arch): Initialize registers for new tdescs.
1749
1750 2013-09-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
1751
1752 * s390-tdep.h (S390_IS_GREGSET_REGNUM): New macro.
1753 (S390_IS_FPREGSET_REGNUM): New macro.
1754 * s390-tdep.c (s390_dwarf_regmap): Make const.
1755 (regnum_is_gpr_full): New function for replacing repeated code.
1756 (s390_pseudo_register_name): Use it.
1757 (s390_pseudo_register_type): Likewise.
1758 (s390_pseudo_register_read): Likewise.
1759 (s390_pseudo_register_write): Likewise.
1760 (s390_unwind_pseudo_register): Likewise.
1761 (s390_regmap_gregset): New format for regmap.
1762 (s390x_regmap_gregset): Likewise.
1763 (s390_regmap_fpregset): Likewise.
1764 (s390_regmap_upper): Likewise.
1765 (s390_regmap_last_break): Likewise.
1766 (s390_regmap_system_call): Likewise.
1767 (s390_supply_regset): Adjust to new regmap format.
1768 (s390_collect_regset): Likewise.
1769 * s390-nat.c (s390_native_supply): Adjust to new regmap format.
1770 (s390_native_collect): Likewise.
1771 (supply_gregset): Likewise.
1772 (fill_gregset): Likewise.
1773 (supply_fpregset): Likewise.
1774 (fill_fpregset): Likewise.
1775 (fetch_regset): Likewise.
1776 (store_regset): Likewise.
1777 (s390_linux_fetch_inferior_registers): Likewise.
1778 (s390_linux_fetch_inferior_registers): Likewise.
1779
1780 2013-09-12 Andrew Pinski <apinski@cavium.com>
1781
1782 * aarch64-linux-nat.c (aarch64_linux_set_debug_regs): Zero out regs.
1783
1784 2013-09-10 Andreas Arnez <arnez@linux.vnet.ibm.com>
1785
1786 * config/s390/s390.mh (NATDEPFILES): Add linux-waitpid.o.
1787
1788 2013-09-09 Andrew Burgess <aburgess@broadcom.com>
1789
1790 * top.c (quit_confirm): Remove use of deprecated_init_ui_hook.
1791
1792 2013-09-06 Pedro Alves <palves@redhat.com>
1793
1794 * remote-sim.c (dump_mem, gdbsim_fetch_register)
1795 (gdbsim_store_register, gdbsim_kill, gdbsim_load)
1796 (gdbsim_create_inferior, gdbsim_open, gdbsim_close)
1797 (gdbsim_detach, gdbsim_resume_inferior, gdbsim_wait)
1798 (gdbsim_files_info, gdbsim_mourn_inferior): Send debug output to
1799 gdb_stdlog.
1800
1801 2013-09-06 Pedro Alves <palves@redhat.com>
1802
1803 * remote-sim.c (dump_mem): Constify buf parameter.
1804 gdbsim_xfer_inferior_memory): Rename to ...
1805 (gdbsim_xfer_memory): ... this. Adjust interface as
1806 target_xfer_partial helper.
1807 (gdbsim_xfer_partial): New function.
1808 (init_gdbsim_ops): Don't install a deprecated_xfer_memory hook.
1809 Install a to_xfer_partial hook. Send output to gdb_stdlog.
1810
1811 2013-09-06 Pedro Alves <palves@redhat.com>
1812
1813 * remote-sim.c (gdbsim_xfer_inferior_memory): Use
1814 host_address_to_string, and send debug output to gdb_stdlog.
1815
1816 2013-09-06 Ricard Wanderlof <ricardw@axis.com>
1817
1818 * Makefile.in (ALL_TARGET_OBS): Add cris-linux-tdep.o.
1819 * configure.tgt: Add cris-linux-tdep.o and linux-tdep.o to
1820 gdb_target_obs for cris target.
1821 * cris-tdep.c (struct gdbarch_tdep): Move to cris-tdep.h.
1822 (cris_gdbarch_init): Move calls to
1823 set_gdbarch_fetch_tls_load_module_address and
1824 set_solib_svr4_fetch_link_map_offsets to cris-linux-tdep.c.
1825 Add call to gdbarch_init_osabi.
1826 * cris-linux-tdep.c: New file.
1827 * cris-tdep.h: New file.
1828
1829 2013-09-06 Andrew Burgess <aburgess@broadcom.com>
1830
1831 * tui/tui-io.c (tui_initialize_io): Remove legacy comment referring
1832 to deprecated_init_ui_hook.
1833
1834 2013-09-06 Andrew Burgess <aburgess@broadcom.com>
1835
1836 * cli/cli-interp.c (_initialize_cli_interp): Add a
1837 command_loop_proc to interp_procs.
1838 * event-top.c (cli_command_loop): Change signature to match
1839 interp_command_loop_ftype.
1840 * event-top.h (cli_command_loop): Same.
1841 * interps.c (interp_new): Require every interpreter to have a
1842 command_loop_proc.
1843 (current_interp_command_loop): Just call the command_loop_proc on
1844 the current interpreter.
1845 * tui/tui-interp.c (_initialize_tui_interp): Add a
1846 command_loop_proc to interp_procs.
1847
1848 2013-09-06 Ricard Wanderlof <ricardw@axis.com>
1849
1850 * cris-tdep.c (cris_gdbarch_init): Add call to
1851 get_gdbarch_fetch_tls_load_module_address.
1852
1853 2013-09-06 Ricard Wanderlof <ricardw@axis.com>
1854
1855 * cris-tdep.c (cris_elf_greg_t): Rename from elf_greg_t.
1856 (cris_elf_gregset_t): Rename from elf_gregset_t.
1857 (crisv32_elf_gregset_t): Adjust.
1858 (cris_supply_gregset, fetch_core_registers): Adjust.
1859
1860 2013-09-06 Ricard Wanderlof <ricardw@axis.com>
1861
1862 * cris-tdep.c (elf_greg_t): Change typedef to unsigned char[4]
1863
1864 2013-09-05 Andrew Burgess <aburgess@broadcom.com>
1865
1866 * defs.h (deprecated_command_loop_hook): Remove, including
1867 references in comments.
1868 * interps.c (current_interp_command_loop): No longer use
1869 deprecated_command_loop_hook.
1870 (clear_interpreter_hooks): Remove deprecated_command_loop_hook
1871 setup.
1872 * top.c (deprecated_command_loop_hook): Remove.
1873
1874 2013-09-05 Pedro Alves <palves@redhat.com>
1875
1876 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): 'dwarf_regnum'
1877 local is now int instead of ULONGEST. Print it with %d
1878 instead of paddress.
1879
1880 2013-09-05 Tristan Gingold <gingold@adacore.com>
1881
1882 * MAINTAINERS: Remove avr maintainership.
1883
1884 2013-09-05 Pedro Alves <palves@redhat.com>
1885
1886 * findvar.c (value_of_register): Rework in terms of
1887 value_of_register_lazy.
1888
1889 2013-09-05 Muhammad Bilal <mbilal@codesourcery.com>
1890
1891 * symfile.c (add_symbol_file_command): Remove trailing
1892 whitespaces and blank line after comment.
1893
1894 2013-09-05 Pedro Alves <palves@redhat.com>
1895
1896 * tui/tui-regs.c (tui_register_format): Don't look at the
1897 register's name here. Return string representing register
1898 value instead of storing it in the data element.
1899 (tui_get_register): Compare register string representations
1900 instead of register value states and contents.
1901
1902 2013-09-05 Pedro Alves <palves@redhat.com>
1903
1904 PR tui/15933
1905 * tui/tui-regs.c (tui_show_registers): Show registers of the
1906 selected frame, not the current frame.
1907
1908 2013-09-05 Ricard Wanderlof <ricardw@axis.com>
1909
1910 * MAINTAINERS (Write After Approval): Add myself to the list.
1911
1912 2013-09-04 Doug Evans <dje@google.com>
1913
1914 * dwarf2read.c (queue_and_load_all_dwo_tus): New function.
1915 (queue_and_load_dwo_tu): New function.
1916 (lookup_dwo_signatured_type): Set per_cu.tu_read.
1917 (maybe_queue_comp_unit): Rename this_cu argument to dependent_cu.
1918 Make dependent_cu optional.
1919 (dw2_do_instantiate_symtab): If we just loaded a CU from a DWO,
1920 and an older .gdb_index is in use, queue and load all its TUs too.
1921
1922 2013-09-04 Jan Kratochvil <jan.kratochvil@redhat.com>
1923
1924 Code cleanup: Change OPF_DISABLE_REALPATH to OPF_RETURN_REALPATH.
1925 * cli/cli-cmds.c (find_and_open_script): Add OPF_RETURN_REALPATH to
1926 variable search_flags.
1927 * defs.h (OPF_DISABLE_REALPATH): Rename to ...
1928 (OPF_RETURN_REALPATH): ... here.
1929 * dwarf2read.c (try_open_dwop_file): Set OPF_RETURN_REALPATH for flags.
1930 * exec.c (exec_file_attach): Remove OPF_DISABLE_REALPATH from openp
1931 call. Twice.
1932 * nto-tdep.c (nto_find_and_open_solib): Add OPF_RETURN_REALPATH for
1933 openp call.
1934 * solib.c (solib_find): Likewise. Four times.
1935 * source.c (openp): Change OPF_DISABLE_REALPATH to OPF_RETURN_REALPATH
1936 in the function comment and for the realpath_fptr variable.
1937 (source_full_path_of): Add OPF_RETURN_REALPATH for openp call.
1938 (find_and_open_source): Likewise. Twice.
1939 * symfile.c (symfile_bfd_open): Likewise, also twice.
1940
1941 2013-09-04 Doug Evans <dje@google.com>
1942
1943 * progspace.c (save_current_space_and_thread): Remove unnecessary
1944 call to save_current_inferior.
1945
1946 2013-09-04 Andrew Burgess <aburgess@broadcom.com>
1947
1948 * sh64-tdep.c (sh64_do_register): Return after printing message
1949 about unavailable register contents.
1950
1951 2013-09-04 Muhammad Bilal <mbilal@codesourcery.com>
1952 Pedro Alves <palves@redhat.com>
1953
1954 * symfile.c (add_symbol_file_command): Error out on unknown
1955 option. Handle EXPECTING_SEC_ADDR/EXPECTING_SEC_NAME before '-'
1956 options and collapse into single conditional branch.
1957
1958 2013-09-03 Luis Machado <lgustavo@codesourcery.com>
1959
1960 * inf-child.c (inf_child_follow_fork): New parameter
1961 detach_fork.
1962 * inf-ptrace.c (inf_ptrace_follow_fork): Likewise.
1963 * inf-ttrace.c (inf_ttrace_follow_fork): Likewise.
1964 * inferior.h (detach_fork): Remove.
1965 * infrun.c (detach_fork): Adjust comment and make it
1966 static.
1967 (follow_fork): Pass detach_fork parameter to
1968 target_follow_fork.
1969 * linux-nat.c (linux_child_follow_fork): New parameter
1970 detach_fork.
1971 * target.c (target_follow_fork): New parameter detach_fork.
1972 Pass detach_fork as parameter and print its value.
1973 * target.h (struct target_ops) <to_follow_fork>: New int
1974 parameter.
1975 (target_follow_fork): New parameter detach_fork.
1976
1977 2013-09-03 Joel Brobecker <brobecker@adacore.com>
1978
1979 * solib-ia64-hpux.c (ia64_hpux_relocate_section_addresses):
1980 Replace sec->bfd by sec->the_bfd_section->owner.
1981
1982 2013-09-03 Yao Qi <yao@codesourcery.com>
1983
1984 * linux-tdep.c (linux_is_uclinux): New function. Code moved
1985 from linux_has_shared_address_space.
1986 (linux_has_shared_address_space): Call linux_is_uclinux.
1987 * linux-tdep.h (linux_is_uclinux): Declare.
1988 * m68klinux-tdep.c (m68k_linux_get_sigtramp_info): Call
1989 linux_is_uclinux.
1990
1991 2013-09-03 Yao Qi <yao@codesourcery.com>
1992
1993 * config/djgpp/fnchange.lst: Remove entry of
1994 i386-interix-nat.c and i386-interix-tdep.c.
1995 * configure.ac: Remove '*-*-interix*'.
1996 * configure: Re-generated.
1997 * defs.h (enum gdb_osabi): Remove GDB_OSABI_INTERIX.
1998 * i386-cygwin-tdep.c (i386_cygwin_osabi_sniffer): Remove
1999 obsolete comments.
2000 * osabi.c (gdb_osabi_names): Remove "Interix".
2001
2002 2013-09-03 Yao Qi <yao@codesourcery.com>
2003
2004 * arch-utils.c: Fix typo in the comment to gdbarch_update_p.
2005
2006 2013-09-02 Markus Metzger <markus.t.metzger@intel.com>
2007
2008 * record.h (record_print_flag) <record_print_src_line,
2009 record_print_insn_range>: Rename into ...
2010 (record_print_flag) <record_print_src_line,
2011 record_print_insn_range>: ... this. Update all users.
2012
2013 2013-09-02 Pierre Muller <muller@sourceware.org>
2014
2015 * windows-nat.c (windows_xfer_memory): Handle ERROR_PARTIAL_COPY
2016 error code.
2017
2018 2013-09-02 Pierre Muller <muller@sourceware.org>
2019
2020 * windows-nat.c (windows_xfer_memory): Fix compilation failure
2021 by use of plongest function.
2022
2023 2013-09-02 Tristan Gingold <gingold@adacore.com>
2024
2025 * NEWS: Add entry mentioning support for native Windows x64
2026 SEH data.
2027
2028 * amd64-windows-tdep.c: #include "objfiles.h", "frame-unwind.h",
2029 "coff/internal.h", "coff/i386.h", "coff/pe.h" and "libcoff.h".
2030 (struct amd64_windows_frame_cache): New struct.
2031 (amd64_windows_w2gdb_regnum): New global.
2032 (pc_in_range, amd64_windows_frame_decode_epilogue)
2033 (amd64_windows_frame_decode_insns, amd64_windows_find_unwind_info)
2034 (amd64_windows_frame_cache, amd64_windows_frame_prev_register)
2035 (amd64_windows_frame_this_id): New functions.
2036 (amd64_windows_frame_unwind): New static global.
2037 (amd64_windows_skip_prologue): New function.
2038 (amd64_windows_init_abi): Call frame_unwind_prepend_unwinder
2039 with amd64_windows_frame_unwind. Call set_gdbarch_skip_prologue
2040 with amd64_windows_skip_prologue.
2041
2042 2013-08-30 Joel Brobecker <brobecker@adacore.com>
2043
2044 GDB 7.6.1 released.
2045
2046 2013-08-30 Pedro Alves <palves@redhat.com>
2047
2048 * mi/mi-main.c (mi_cmd_trace_find): Use LOC_AND_ADDRESS instead of
2049 SRC_AND_LOC.
2050
2051 2013-08-30 Pedro Alves <palves@redhat.com>
2052
2053 * thread.c (restore_selected_frame): Use SRC_AND_LOC, and change
2054 warning text.
2055
2056 2013-08-30 Pedro Alves <palves@redhat.com>
2057
2058 * bsd-kvm.c (bsd_kvm_open, bsd_kvm_proc_cmd, bsd_kvm_pcb_cmd):
2059 Adjust arguments to print_stack_frame.
2060
2061 2013-08-30 Pedro Alves <palves@redhat.com>
2062
2063 * ada-tasks.c (task_command_1): Write SRC_AND_LOC instead '1'.
2064
2065 2013-08-30 Pedro Alves <palves@redhat.com>
2066
2067 * frame.h (show_and_print_stack_frame): Delete declaration.
2068
2069 2013-08-30 Phil Muldoon <pmuldoon@redhat.com>
2070
2071 PR python/15461
2072
2073 * python/py-arch.c (ARCHPY_REQUIRE_VALID): New macro.
2074 (archpy_name): Check for valid architecture.
2075 (archpy_disassemble): Ditto.
2076
2077 2013-08-29 Joel Brobecker <brobecker@adacore.com>
2078
2079 * rs6000-nat.c (rs6000_ptrace32): Cast "addr" to "uintptr_t"
2080 instead of "long long" in call to ptrace64.
2081
2082 2013-08-29 Andrew Burgess <aburgess@broadcom.com>
2083
2084 * mi/mi-interp.c (mi_command_loop): Change signature to match
2085 interp_command_loop_ftype.
2086 (mi1_command_loop): Remove.
2087 (mi2_command_loop): Remove.
2088 (mi3_command_loop): Remove.
2089 (mi_interpreter_resume): Remove setting of
2090 deprecated_command_loop_hook.
2091 (_initialize_mi_interp): Set mi_command_loop as the command loop
2092 callback.
2093
2094 2013-08-29 Sanimir Agovic <sanimir.agovic@intel.com>
2095
2096 * valops.c (do_search_struct_field): Pass v2 instead of base_type to
2097 value_type.
2098
2099 2013-08-29 Sanimir Agovic <sanimir.agovic@intel.com>
2100
2101 * value.c (allocate_value_contents): Make static.
2102 * value.h (allocate_value_contents): Remove prototype.
2103
2104 2013-08-29 Sanimir Agovic <sanimir.agovic@intel.com>
2105
2106 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Use value_at_lazy instead
2107 of assembling value via allocate_value_lazy and attribute setter.
2108 * findvar.c (default_read_var_value): Use value_at_lazy instead of
2109 assembling value via allocate_value_lazy and attribute setter.
2110 * valops.c (do_search_struct_field): Use value_at_lazy instead of
2111 assembling value via allocate_value_lazy and attribute setter.
2112
2113 2013-08-29 Sanimir Agovic <sanimir.agovic@intel.com>
2114
2115 * value.c (value_from_contents_and_address): Replace allocate_value and
2116 memcpy with value_from_contents.
2117
2118 2013-08-29 Phil Muldoon <pmuldoon@redhat.com>
2119
2120 * python/py-framefilter.c (py_print_frame): Remove usage of
2121 PyString_AsString. Use python_string_to_host_string instead.
2122 Refactor function to work with a string as a new allocation
2123 instead of a pointer.
2124 (py_print_frame): Ditto.
2125 * python/lib/gdb/frames.py (return_list): Cain iterators together
2126 instead of adding them as a list.
2127 (_sort_list): Call return_list, and remove duplicate code.
2128 (execute_frame_filters): Convert iterator to a list with list().
2129 * python/lib/gdb/command/frame_filters.py
2130 (SetFrameFilterPriority._set_filter_priority): Convert priority
2131 attribute to an integer.
2132 * python/lib/gdb/FrameIterator.py (FrameIterator.next): Define
2133 wrapper function __next__.
2134 * python/lib/gdb/FrameDecorator.py: If basestring not defined,
2135 define as "str".
2136
2137 2013-08-29 Phil Muldoon <pmuldoon@redhat.com>
2138
2139 PR python/15752
2140 * python/py-framefilter.c (apply_frame_filter): Check
2141 gdb_python_initialized. Exit if the Python frame-filter code
2142 cannot be initialized.
2143
2144 2013-08-29 Phil Muldoon <pmuldoon@redhat.com>
2145
2146 PR cli/15842
2147 * top.c (print_gdb_version): Remove erroneous newline after help
2148 text.
2149
2150 2013-08-29 Yao Qi <yao@codesourcery.com>
2151
2152 * varobj.c (install_dynamic_child): Remove trailing space.
2153 Add one blank line after variable declaration.
2154
2155 2013-08-28 Jan Kratochvil <jan.kratochvil@redhat.com>
2156
2157 PR gdb/15415
2158 * corefile.c (get_exec_file): Use exec_filename.
2159 * defs.h (OPF_DISABLE_REALPATH): New definition. Add new comment.
2160 * exec.c (exec_close): Free EXEC_FILENAME.
2161 (exec_file_attach): New variable canonical_pathname. Use
2162 OPF_DISABLE_REALPATH. Call gdb_realpath explicitly. Set
2163 EXEC_FILENAME.
2164 * exec.h (exec_filename): New.
2165 * inferior.c (print_inferior, inferior_command): Use
2166 PSPACE_EXEC_FILENAME.
2167 * mi/mi-main.c (print_one_inferior): Likewise.
2168 * progspace.c (clone_program_space, print_program_space): Likewise.
2169 * progspace.h (struct program_space): New field pspace_exec_filename.
2170 * source.c (openp): Describe OPF_DISABLE_REALPATH. New variable
2171 realpath_fptr, initialize it from OPF_DISABLE_REALPATH, use it.
2172
2173 2013-08-28 Will Newton <will.newton@linaro.org>
2174
2175 * common/linux-ptrace.c: Include stdint.h unconditionally.
2176
2177 2013-08-28 Jan Kratochvil <jan.kratochvil@redhat.com>
2178
2179 Code cleanup.
2180 * nto-tdep.c (nto_find_and_open_solib): Use OPF_TRY_CWD_FIRST.
2181
2182 2013-08-28 Yao Qi <yao@codesourcery.com>
2183 Pedro Alves <palves@redhat.com>
2184
2185 * event-top.c (gdb_setup_readline): Call stderr_fileopen
2186 instead of stdio_fileopen.
2187 * main.c (captured_main) [__MINGW32__]: Set stderr unbuffered.
2188 .Call stderr_fileopen instead of stdio_fileopen.
2189 * ui-file.c [__MINGW32__] (stderr_file_write): New function.
2190 [__MINGW32__] (stderr_file_fputs): New function.
2191 (stderr_fileopen): New function.
2192 * ui-file.h (stderr_fileopen): Declare.
2193
2194 2013-08-27 Doug Evans <dje@google.com>
2195
2196 * dwarf2read.c (struct dwarf2_cu): Tweak comment.
2197 (struct dwarf2_per_cu_data): Ditto.
2198 (maybe_queue_comp_unit): Delete forward decl. Add comment.
2199 (process_imported_unit_die): Ditto.
2200 (follow_die_sig_1): Simplify assert.
2201
2202 2013-08-27 Pedro Alves <palves@redhat.com>
2203
2204 * windows-nat.c (windows_xfer_memory): Adjust prototype to follow
2205 xfer_partial's interface. Return TARGET_XFER_E_IO on error.
2206 (windows_xfer_partial): Defer TARGET_OBJECT_MEMORY handling to
2207 windows_xfer_memory directly.
2208 (init_windows_ops): Don't install a deprecated_xfer_memory method.
2209
2210 2013-08-27 Pedro Alves <palves@redhat.com>
2211
2212 * darwin-nat.c (darwin_xfer_memory): Delete.
2213 (_initialize_darwin_inferior): Don't install a
2214 deprecated_xfer_memory method.
2215
2216 2013-08-27 Pedro Alves <pedro@codesourcery.com>
2217 Yao Qi <yao@codesourcery.com>
2218
2219 * mi/mi-cmd-stack.c (list_args_or_locals): Adjust prototype.
2220 (parse_no_frames_option): Remove.
2221 (mi_cmd_stack_list_locals): Handle --skip-unavailable.
2222 (mi_cmd_stack_list_args): Adjust.
2223 (mi_cmd_stack_list_variables): Handle --skip-unavailable.
2224 (list_arg_or_local): Add new parameter 'skip_unavailable'. Return
2225 early if SKIP_UNAVAILABLE is true and ARG->val is unavailable.
2226 Caller update.
2227 (list_args_or_locals): New parameter 'skip_unavailable'.
2228 Handle it.
2229 * valprint.c (scalar_type_p): Rename to ...
2230 (val_print_scalar_type_p): ... this. Make extern.
2231 (val_print, value_check_printable): Adjust.
2232 * valprint.h (val_print_scalar_type_p): Declare.
2233 * value.c (value_entirely_unavailable): New function.
2234 * value.h (value_entirely_unavailable): Declare.
2235
2236 * NEWS: Mention the new option "--skip-unavailable" to MI
2237 commands '-stack-list-locals', '-stack-list-arguments' and
2238 '-stack-list-variables'.
2239
2240 2013-08-27 Yao Qi <yao@codesourcery.com>
2241
2242 * mi/mi-cmd-stack.c (parse_no_frames_option): Remove.
2243 (mi_cmd_stack_list_args): Use mi_getopt_silent to handle
2244 options.
2245 * mi/mi-getopt.c (mi_getopt): Remove.
2246 (mi_getopt_1): Renamed from mi_getopt. Add one parameter
2247 'error_on_unknown'.
2248 (mi_getopt): Call mi_getopt_1.
2249 (mi_getopt_silent): New.
2250 * mi/mi-getopt.h (mi_getopt_silent): Declare.
2251
2252 2013-08-26 Doug Evans <dje@google.com>
2253
2254 PR symtab/15885
2255 * dwarf2read.c (dw2_dump): Print some minimal information indicating
2256 .gdb_index is in use.
2257 * symfile.c (reread_symbols): Reset objfile->sf.
2258
2259 * NEWS: Document "mt print objfiles" now takes optional regexp.
2260 * symmisc.c (maintenance_print_objfiles): Argument is now an optional
2261 regexp of objfiles to print.
2262 (_initialize_symmisc): Update doc string for "mt print objfiles".
2263
2264 * dwarf2read.c (write_psymtabs_to_index): Move error checks ahead of
2265 missing debug info checks.
2266
2267 2013-08-26 Raunaq Bathija <raunaq12@in.ibm.com>
2268 Ulrich Weigand <uweigand@de.ibm.com>
2269
2270 * xcoffread.c (arrange_linetable): Add fix to correctly handle
2271 line tables generated by XLC compiled binaries.
2272
2273 2013-08-23 Doug Evans <dje@google.com>
2274
2275 * symmisc.c (dump_symtab): Delete prototype.
2276 (dump_msymbols, dump_objfile): Ditto.
2277 (maintenance_info_symtabs): Mark as dont_repeat.
2278 (_initialize_symmisc): Improve doc string for "mt info symtabs".
2279
2280 * elfread.c (elf_symfile_read): Move "Done reading minimal symbols"
2281 debugging printf to better location.
2282
2283 2013-08-23 Pedro Alves <palves@redhat.com>
2284
2285 * target.c (target_read_live_memory): Change type of 'ret' local
2286 to LONGEST.
2287
2288 2013-08-23 Pedro Alves <palves@redhat.com>
2289
2290 * remote.c (remote_write_bytes_aux, remote_write_bytes)
2291 (remote_read_bytes): Change return type to LONGEST, and adjust to
2292 return a target_xfer_error on error.
2293 (remote_xfer_memory): Delete.
2294 (remote_flash_write): Change type of 'ret' local to LONGEST.
2295 (remote_xfer_partial, remote_xfer_partial): Adjust.
2296 (init_remote_ops): Don't install a deprecated_xfer_memory hook.
2297
2298 2013-08-23 Pierre Muller <muller@sourceware.org>
2299
2300 ARI fix: Push # directives to start of line.
2301 * rs6000-nat.c (rs6000_ptrace32, rs6000_ptrace64): Rule applied.
2302
2303 2013-08-12 Muhammad Waqas <mwaqas@codesourcery.com>
2304
2305 PR gdb/15501
2306 * breakpoint.c (enable_command, disable_command): Iterate over
2307 all specified breakpoint locations.
2308
2309 2013-08-22 Luis Machado <lgustavo@codesourcery.com>
2310
2311 * common/linux-ptrace.c (linux_fork_to_function): Push #
2312 directives to the start of the line.
2313 (linux_check_ptrace_features): Fix warning message to use
2314 the "_" markup.
2315
2316 2013-08-22 Luis Machado <lgustavo@codesourcery.com>
2317
2318 * Makefile.in (HFILES_NO_SRCDIR): Add nat/linux-nat.h and
2319 nat/linux-waitpid.h.
2320 (linux-waitpid.o): New object file rule.
2321 * common/linux-ptrace.c: Include nat/linux-waitpid.h.
2322 (current_ptrace_options): Moved from linux-nat.c.
2323 (linux_ptrace_test_ret_to_nx): Use type casts for ptrace
2324 parameters.
2325 (linux_fork_to_function): New function.
2326 (linux_grandchild_function): Likewise.
2327 (linux_child_function): Likewise.
2328 (linux_check_ptrace_features): New function, heavily
2329 based on linux-nat.c:linux_test_for_tracefork.
2330 (linux_enable_event_reporting): New function.
2331 (ptrace_supports_feature): Likewise.
2332 (linux_supports_tracefork): Likewise.
2333 (linux_supports_traceclone): Likewise.
2334 (linux_supports_tracevforkdone): Likewise.
2335 (linux_supports_tracesysgood): Likewise.
2336 * common/linux-ptrace.h (HAS_NOMMU): Moved from
2337 gdbserver/linux-low.c.
2338 (linux_enable_event_reporting): New declaration.
2339 (linux_supports_tracefork): Likewise.
2340 (linux_supports_traceclone): Likewise.
2341 (linux_supports_tracevforkdone): Likewise.
2342 (linux_supports_tracesysgood): Likewise.
2343 * config.in (PTRACE_TYPE_ARG4): Regenerate.
2344 * config/aarch64/linux.mh (NATDEPFILES): Add linux-waitpid.o.
2345 * config/alpha/alpha-linux.mh (NATDEPFILES): Likewise.
2346 * config/arm/linux.mh (NATDEPFILES): Likewise.
2347 * config/i386/linux.mh (NATDEPFILES): Likewise.
2348 * config/i386/linux64.mh (NATDEPFILES): Likewise.
2349 * config/ia64/linux.mh (NATDEPFILES): Likewise.
2350 * config/m32r/linux.mh (NATDEPFILES): Likewise.
2351 * config/m68k/linux.mh (NATDEPFILES): Likewise.
2352 * config/mips/linux.mh (NATDEPFILES): Likewise.
2353 * config/pa/linux.mh (NATDEPFILES): Likewise..
2354 * config/powerpc/linux.mh (NATDEPFILES): Likewise..
2355 * config/powerpc/ppc64-linux.mh (NATDEPFILES): Likewise.
2356 * config/powerpc/spu-linux.mh (NATDEPFILES): Likewise.
2357 * config/sparc/linux.mh (NATDEPFILES): Likewise.
2358 * config/sparc/linux64.mh (NATDEPFILES): Likewise.
2359 * config/tilegx/linux.mh (NATDEPFILES): Likewise.
2360 * config/xtensa/linux.mh (NATDEPFILES): Likewise.
2361 * configure.ac (AC_CACHE_CHECK): Add void * to the list of
2362 ptrace's 4th argument's types.
2363 Check the type of PTRACE_TYPE_ARG4.
2364 * configure: Regenerate.
2365 * linux-nat.c: Include nat/linux-nat.h and nat/linux-waitpid.h.
2366 (SYSCALL_SIGTRAP): Moved to nat/linux-nat.h.
2367 (linux_supports_tracefork_flag): Remove.
2368 (linux_supports_tracesysgood_flag): Likewise.
2369 (linux_supports_tracevforkdone_flag): Likewise.
2370 (current_ptrace_options): Moved to
2371 common/linux-ptrace.c.
2372 (linux_tracefork_child): Remove.
2373 (my_waitpid): Remove.
2374 (linux_test_for_tracefork): Renamed to
2375 linux_check_ptrace_features and moved to common/linux-ptrace.c.
2376 (linux_test_for_tracesysgood): Remove.
2377 (linux_supports_tracesysgood): Remove.
2378 (linux_supports_tracefork): Remove.
2379 (linux_supports_tracevforkdone): Remove.
2380 (linux_enable_tracesysgood): Remove.
2381 (linux_enable_event_reporting): Remove.
2382 (linux_init_ptrace): New function.
2383 (linux_child_post_attach): Call linux_init_ptrace.
2384 (linux_child_post_startup_inferior): Call linux_init_ptrace.
2385 (linux_child_follow_fork): Call linux_supports_tracefork
2386 and linux_supports_tracevforkdone.
2387 (linux_child_insert_fork_catchpoint): Call
2388 linux_supports_tracefork.
2389 (linux_child_insert_vfork_catchpoint): Likewise.
2390 (linux_child_set_syscall_catchpoint): Call
2391 linux_supports_tracesysgood.
2392 (lin_lwp_attach_lwp): Call linux_supports_tracefork.
2393 * nat/linux-nat.h: New file.
2394 * nat/linux-waitpid.c: New file.
2395 * nat/linux-waitpid.h: New file.
2396
2397 2013-08-22 Samuel Bronson <naesten@gmail.com>
2398
2399 ARM Linux support for `catch syscall'.
2400 * syscalls/arm-linux.py: New file.
2401 * syscalls/arm-linux.xml: Likewise.
2402 * arm-linux-tdep.c (arm_linux_get_syscall_number): New function.
2403 (arm_linux_init_abi): Register the new function and syscall xml file.
2404 * data-directory/Makefile.in: Install the new syscall xml file.
2405 * NEWS: Brag about this.
2406
2407 2013-08-22 Pedro Alves <palves@redhat.com>
2408
2409 PR gdb/15871
2410 * corefile.c (target_xfer_memory_error): New function.
2411 (memory_error): Defer EIO to target_memory_error.
2412 (read_memory): Use target_xfer_partial, and handle finer-grained
2413 target xfer errors.
2414 * target.c (target_xfer_error_to_string): New function.
2415 (memory_xfer_partial_1): If memory is known to be
2416 unavailable, return TARGET_XFER_E_UNAVAILABLE instead of -1.
2417 (target_xfer_partial): Make extern.
2418 * target.h (enum target_xfer_error): New enum.
2419 (target_xfer_error_to_string): Declare function.
2420 (target_xfer_partial): Declare function.
2421 (struct target_ops) <xfer_partial>: Adjust describing comment.
2422
2423 2013-08-22 Alan Modra <amodra@gmail.com>
2424
2425 * configure.host: Support powerpc64le-linux and powerpcle-linux hosts.
2426 * configure.tgt: Likewise as targets.
2427
2428 2013-08-20 Doug Evans <dje@google.com>
2429
2430 * buildsym.c (subfile_stack): Move here from buildsym.h.
2431 (pending_macros): Ditto.
2432 (get_macro_table): New function.
2433 (buildsym_init): Initialize subfile_stack.
2434 * coffread.c (type_vector,type_vector_length): Moved here from
2435 buildsym.h.
2436 (INITIAL_TYPE_VECTOR_LENGTH): Ditto.
2437 (coff_symtab_read): Use it.
2438 * dbxread.c (read_ofile_symtab): Delete init of subfile_stack.
2439 * dwarf2read.c (macro_start_file): Replace uses of pending_macros
2440 with call to get_macro_table.
2441 * stabsread.c (type_vector,type_vector_length): Moved here from
2442 buildsym.h.
2443 (INITIAL_TYPE_VECTOR_LENGTH): Ditto.
2444 * buildsym.h (get_macro_table): Declare.
2445
2446 2013-08-20 Tom Tromey <tromey@redhat.com>
2447
2448 * dbxread.c (record_minimal_symbol): Make 'name' argument const.
2449 Update.
2450 (read_dbx_dynamic_symtab): Make 'name' const. Remove casts.
2451
2452 2013-08-20 Doug Evans <dje@google.com>
2453
2454 * blockframe.c: Remove #include "psymtab.h".
2455 * cp-support.c: Ditto.
2456 * source.c: Ditto.
2457 * stack.c: Ditto.
2458
2459 2013-08-20 Tom Tromey <tromey@redhat.com>
2460
2461 PR python/15816:
2462 * exceptions.h (return_mask): Now an enum.
2463 (RETURN_MASK_QUIT, RETURN_MASK_ERROR, RETURN_MASK_ALL): Now
2464 enum constants.
2465
2466 2013-08-20 Tom Tromey <tromey@redhat.com>
2467
2468 * cp-namespace.c (cp_lookup_symbol_imports_or_template): Use
2469 get_objfile_arch.
2470 * elfread.c (elf_rel_plt_read, elf_gnu_ifunc_record_cache)
2471 (elf_gnu_ifunc_resolve_by_got): Use get_objfile_arch.
2472 * jit.c (jit_object_close_impl): Update.
2473 * jv-lang.c (get_dynamics_objfile): Update.
2474 * linespec.c (add_minsym): Use get_dynamics_objfile.
2475 * objfiles.c (get_objfile_bfd_data): Initialize 'gdbarch' field.
2476 (allocate_objfile): Don't initialize 'gdbarch' field.
2477 (get_objfile_arch): Update.
2478 * objfiles.h (struct objfile_per_bfd_storage) <gdbarch>: New field,
2479 moved from...
2480 (struct objfile) <gdbarch>: ... here. Remove.
2481 * stap-probe.c (stap_can_evaluate_probe_arguments): Use
2482 get_objfile_arch.
2483 * symfile.c (init_entry_point_info): Use get_objfile_arch.
2484
2485 2013-08-20 Alan Modra <amodra@gmail.com>
2486
2487 * doublest.c (convert_floatformat_to_doublest): Use fmt->split_half
2488 for IBM long double nan and inf.
2489 (floatformat_is_negative, floatformat_classify,
2490 floatformat_mantissa): Similarly.
2491 (floatformat_ieee_single, floatformat_ieee_double,
2492 floatformat_ieee_quad, floatformat_arm_ext,
2493 floatformat_ia64_spill): Delete unused vars.
2494 (_initialize_doublest): Delete unused function.
2495 * gdbtypes.c (floatformats_ibm_long_double): Use new big- and
2496 little-endian variants of floatformat_ibm_long_double.
2497
2498 2013-08-19 Luis Machado <lgustavo@codesourcery.com>
2499
2500 * Makefile.in (SFILES): Remove common/target-common.c and
2501 add target/waitstatus.c.
2502 (HFILES_NO_SRCDIR): Remove common/target-common.h and add
2503 target/resume.h, target/wait.h and target/waitstatus.h.
2504 (COMMON_OBS): Remove target-common.o and add
2505 waitstatus.o.
2506 (target-common.o): Remove.
2507 (waitstatus.o): New target object file.
2508 * common/target-common.c: Move contents to
2509 target/waitstatus.c and remove.
2510 * common/target-common.h: Move contents to other files and
2511 remove.
2512 (enum resume_kind: Move to target/resume.h.
2513 (TARGET_WNOHANG): Move to target/wait.h.
2514 (enum target_waitkind): Move to target/waitstatus.h.
2515 (struct target_waitstatus): Likewise.
2516 * target.h: Do not include target-common.h and
2517 include target/resume.h, target/wait.h and
2518 target/waitstatus.h.
2519 * target/resume.h: New file.
2520 * target/wait.h: New file.
2521 * target/waitstatus.h: New file.
2522 * target/waitstatus.c: New file.
2523
2524 2013-08-19 Pedro Alves <palves@redhat.com>
2525
2526 * linux-nat.c (linux_test_for_tracefork)
2527 (linux_test_for_tracesysgood, linux_child_follow_fork)
2528 (lin_lwp_attach_lwp, linux_nat_resume): Don't block child signals.
2529 (linux_nat_wait_1): Extend comment.
2530 (linux_async_pipe): Add comment.
2531
2532 2013-08-15 Kevin Buettner <kevinb@redhat.com>
2533
2534 * rl78-tdep.c (RL78_RAW_PC_REGNUM): New enum.
2535 (RL78_PC_REGNUM): Move to list of pseudo-register enums.
2536 (rl78_register_type, rl78_register_name, rl78_register_reggroup_p):
2537 Update to account for fact that PC is now a pseudo-register.
2538 (rl78_pseudo_register_write, rl78_pseudo_register_read): Add
2539 cases for RL78_PC_REGNUM.
2540
2541 2013-08-15 Muhammad Bilal <mbilal@codesourcery.com>
2542
2543 PR cli/15841
2544 * top.c (quit_force): Skip writing history file
2545 if input is not from terminal.
2546
2547 2013-08-14 Tom Tromey <tromey@redhat.com>
2548
2549 * remote.c (struct remote_state) <echo_nextthread, nextthread,
2550 resultthreadlist>: New fields.
2551 (OPAQUETHREADBYTES, threadref, MAXTHREADLISTRESULTS): Move earlier.
2552 (remote_get_threadlist, remote_threadlist_iterator): Use
2553 new fields. Remove static variables.
2554
2555 2013-08-14 Tom Tromey <tromey@redhat.com>
2556
2557 * remote.c (struct remote_state) <remote_stopped_by_watchpoint_p,
2558 remote_watch_data_address>: New fields.
2559 (remote_stopped_by_watchpoint_p, remote_watch_data_address): Remove.
2560 (process_stop_reply, remote_wait_as)
2561 (remote_check_watch_resources, remote_stopped_data_address): Update.
2562
2563 2013-08-14 Tom Tromey <tromey@redhat.com>
2564
2565 * remote.c (struct remote_state) <async_client_callback,
2566 async_client_context>: New fields.
2567 (async_client_callback, async_client_context): Remove.
2568 (remote_async_serial_handler, remote_async): Update.
2569
2570 2013-08-14 Tom Tromey <tromey@redhat.com>
2571
2572 * remote.c (sizeof_pkt): Remove.
2573 (remote_trace_find): Use rs->buf_size, not sizeof_pkt.
2574
2575 2013-08-14 Tom Tromey <tromey@redhat.com>
2576
2577 * remote.c (struct remote_state) <use_threadinfo_query,
2578 use_threadextra_query>: New fields.
2579 (remote_threads_info, remote_threads_extra_info)
2580 (remote_open_1): Update.
2581
2582 2013-08-14 Tom Tromey <tromey@redhat.com>
2583
2584 * remote.c (struct remote_state) <finished_object,
2585 finished_annex, finished_offset>: New fields.
2586 (remote_read_qxfer): Use remote_state fields; remove static
2587 variables.
2588
2589 2013-08-14 Tom Tromey <tromey@redhat.com>
2590
2591 * remote.c (struct remote_state) <last_sent_step>:
2592 New field.
2593 (last_sent_step): Remove.
2594 (remote_resume, remote_wait_as): Update.
2595
2596 2013-08-14 Tom Tromey <tromey@redhat.com>
2597
2598 * remote.c (struct remote_state) <last_sent_signal>:
2599 New field.
2600 (last_sent_signal): Remove.
2601 (new_remote_state, remote_resume, remote_wait_as): Update.
2602
2603 2013-08-14 Tom Tromey <tromey@redhat.com>
2604
2605 * remote.c (struct remote_state) <last_program_signals_packet>:
2606 New field.
2607 (last_program_signals_packet): Remove.
2608 (remote_program_signals, remote_open_1): Update.
2609
2610 2013-08-14 Tom Tromey <tromey@redhat.com>
2611
2612 * remote.c (struct remote_state) <last_pass_packet>:
2613 New field.
2614 (last_pass_packet): Remove.
2615 (remote_pass_signals, remote_open_1): Update.
2616
2617 2013-08-14 Tom Tromey <tromey@redhat.com>
2618
2619 * remote.c (struct remote_state) <remote_traceframe_number>:
2620 New field.
2621 (remote_traceframe_number): Remove.
2622 (new_remote_state, remote_open_1, set_remote_traceframe)
2623 (remote_trace_find): Update.
2624
2625 2013-08-14 Tom Tromey <tromey@redhat.com>
2626
2627 * remote.c (struct remote_state) <general_thread, continue_thread>:
2628 New fields.
2629 (general_thread, continue_thread): Remove.
2630 (record_currthread, set_thread, set_general_process)
2631 (remote_open_1, extended_remote_attach_1, remote_wait_as)
2632 (extended_remote_mourn_1): Update.
2633
2634 2013-08-14 Tom Tromey <tromey@redhat.com>
2635
2636 * remote.c (struct remote_state) <remote_desc>: New field.
2637 (remote_desc): Remove.
2638 (remote_threads_info, remote_threads_extra_info, remote_close)
2639 (send_interrupt_sequence, remote_start_remote, remote_open_1)
2640 (readchar, remote_xfer_partial, remote_rcmd, packet_command)
2641 (remote_hostio_send_command, remote_file_put, remote_file_get)
2642 (remote_file_delete, remote_can_async_p, remote_is_async_p)
2643 (remote_async, remote_new_objfile, set_range_stepping): Update.
2644
2645 2013-08-14 Tom Tromey <tromey@redhat.com>
2646
2647 * remote.c (remote_state): Now a pointer.
2648 (get_remote_state_raw): Update.
2649 (new_remote_state): New function.
2650 (_initialize_remote): Use new_remote_state.
2651
2652 2013-08-14 Tom Tromey <tromey@redhat.com>
2653
2654 * remote.c (remote_protocol_features): Now const.
2655
2656 2013-08-14 Tom Tromey <tromey@redhat.com>
2657
2658 * remote.c (crc32_table, crc32): Remove.
2659 (remote_verify_memory): Use xcrc32.
2660
2661 2013-08-13 Sergio Durigan Junior <sergiodj@redhat.com>
2662
2663 * value.h (create_internalvar_type_lazy): Adjust prototype
2664 declaration.
2665
2666 2013-08-13 Andrew Burgess <aburgess@broadcom.com>
2667
2668 * common/format.c (parse_format_string): Don't allow '#' flag for
2669 pointer arguments in format string.
2670
2671 2013-08-13 Pierre Muller <muller@sourceware.org>
2672
2673 * utils.c (init_page_info): Only call tgetnum function
2674 if rl_get_screen_size did not return useful values.
2675
2676 2013-08-12 Ali Anwar <ali_anwar@codesourcery.com>
2677
2678 PR breakpoints/15117
2679 * linespec.c (linespec_parse_basic): Check for convenience
2680 variable or history value while parsing.
2681
2682 2013-08-12 Sergio Durigan Junior <sergiodj@redhat.com>
2683
2684 Revert implementation of gdbarch_gdb_signal_{to,from}_target for
2685 AVR.
2686 * avr-tdep.c: Remove include of "linux-tdep.h". Remove enum with
2687 different signals between the generic Linux kernel implementation
2688 and AVR's.
2689 (avr_linux_gdb_signal_from_target): Delete.
2690 (avr_linux_gdb_signal_to_target): Delete.
2691 (avr_gdbarch_init): Don't set gdbarch_gdb_signal_{to,from}_target.
2692
2693 2013-08-09 Doug Evans <dje@google.com>
2694
2695 * dwarf2read.c (create_addrmap_from_index): Ignore bad address table
2696 entries.
2697
2698 2013-08-09 Sergio Durigan Junior <sergiodj@redhat.com>
2699
2700 * linux-tdep.c: Define enum with generic signal numbers.
2701 (linux_gdb_signal_from_target): New function.
2702 (linux_gdb_signal_to_target): Likewise.
2703 (linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
2704 methods to the functions above.
2705 * linux-tdep.h (linux_gdb_signal_from_target): New prototype.
2706 (linux_gdb_signal_to_target): Likewise.
2707 * alpha-linux-tdep.c: Define new enum with signals different
2708 from generic Linux kernel.
2709 (alpha_linux_gdb_signal_from_target): New function.
2710 (alpha_linux_gdb_signal_to_target): Likewise.
2711 (alpha_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
2712 with the functions mentioned above.
2713 * avr-tdep.c: Define enum with differences between Linux kernel
2714 and AVR signals.
2715 (avr_linux_gdb_signal_from_target): New function.
2716 (avr_linux_gdb_signal_to_target): Likewise.
2717 (avr_gdbarch_init): Set gdbarch_gdb_signal_{to,from}_target to
2718 the functions mentioned above.
2719 * sparc-linux-tdep.c: Define enum with differences between SPARC
2720 and generic Linux kernel signal numbers.
2721 (sparc32_linux_gdb_signal_from_target): New function.
2722 (sparc32_linux_gdb_signal_to_target): Likewise.
2723 (sparc32_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
2724 to the functions defined above.
2725 * xtensa-linux-tdep.c: Define enum with differences between
2726 Xtensa and Linux kernel generic signals.
2727 (xtensa_linux_gdb_signal_from_target): New function.
2728 (xtensa_linux_gdb_signal_to_target): Likewise.
2729 (xtensa_linux_init_abi): Set gdbarch_gdb_signal_to_target
2730 to the functions defined above.
2731 * mips-linux-tdep.c: Define enum with differences between
2732 signals in MIPS and Linux kernel generic ones.
2733 (mips_gdb_signal_to_target): New function.
2734 (mips_gdb_signal_from_target): Redefine to use new enum, handle
2735 only different signals from the Linux kernel generic.
2736 (mips_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
2737 the functions defined above.
2738 * mips-linux-tdep.h (enum mips_signals): Remove.
2739
2740 2013-08-09 Pedro Alves <palves@redhat.com>
2741
2742 * avr-tdep.c (XMALLOC): Delete macro.
2743 * cli/cli-dump.c (XMALLOC): Delete macro.
2744
2745 2013-08-09 Pedro Alves <palves@redhat.com>
2746
2747 * cli/cli-dump.c: Don't include cli/cli-dump.h.
2748 (scan_expression_with_cleanup, scan_filename_with_cleanup)
2749 (fopen_with_cleanup, add_dump_command): Make static.
2750 * cli/cli-dump.h: Delete file.
2751 * Makefile.in (HFILES_NO_SRCDIR): Remove reference to
2752 cli/cli-dump.h.
2753
2754 2013-08-09 Pedro Alves <palves@redhat.com>
2755
2756 * tracepoint.c (tfile_start): Show tilde-expanded filename in
2757 error message.
2758
2759 2013-08-09 Pedro Alves <palves@redhat.com>
2760
2761 * breakpoint.c (save_breakpoints): Show tilde-expanded filename in
2762 error message.
2763
2764 2013-08-09 Pedro Alves <palves@redhat.com>
2765
2766 * gcore.c (create_gcore_bfd): Don't use tilde_expand here.
2767 (gcore_command): Use tilde_expand here, and when showing the
2768 filename to the user, show the expanded version.
2769
2770 2013-08-09 Yao Qi <yao@codesourcery.com>
2771
2772 * stack.c (read_frame_arg): Set 'entryval_error' to NULL if
2773 'entryval' is set.
2774
2775 2013-08-08 Azat Khuzhin <a3at.mail@gmail.com> (tiny change)
2776
2777 * gcore.c (create_gcore_bfd): Use tilde_expand.
2778
2779 2013-08-08 Yao Qi <yao@codesourcery.com>
2780
2781 * frame.h (read_frame_local): Declare.
2782 * mi/mi-cmd-stack.c (list_args_or_locals): Call
2783 read_frame_local.
2784 * stack.c (read_frame_local): New.
2785
2786 2013-08-08 Yao Qi <yao@codesourcery.com>
2787
2788 * mi/mi-cmd-stack.c: Update comments to function
2789 list_args_or_locals.
2790
2791 2013-08-07 Tom Tromey <tromey@redhat.com>
2792
2793 PR symtab/15028:
2794 * dwarf2read.c (struct process_psymtab_comp_unit_data): New.
2795 (process_psymtab_comp_unit_reader): Use it.
2796 (process_psymtab_comp_unit): Update. Add "pretend_language"
2797 argument.
2798 (dwarf2_build_psymtabs_hard): Update.
2799 (scan_partial_symbols): Pass CU's language to
2800 process_psymtab_comp_unit.
2801
2802 2013-08-07 Tom Tromey <tromey@redhat.com>
2803
2804 * dwarf2read.c (dw2_get_primary_filename_reader): Remove.
2805 (dwarf2_gdb_index_functions): Update.
2806 * psymtab.c (find_symbol_file_from_partial): Remove.
2807 (psym_functions): Update.
2808 * symfile.h (struct quick_symbol_functions) <find_symbol_file>:
2809 Remove.
2810
2811 2013-08-07 Tom Tromey <tromey@redhat.com>
2812
2813 * symfile.c (set_initial_language): Look up "main" symbol
2814 and use its language.
2815 * symtab.c (find_main_filename): Remove.
2816 * symtab.h (find_main_filename): Remove.
2817
2818 2013-08-07 Tom Tromey <tromey@redhat.com>
2819
2820 * dwarf2read.c (recursively_compute_inclusions): Add
2821 "immediate_parent" argument. Set symtab's "user" field
2822 if not set.
2823 (compute_symtab_includes): Update.
2824
2825 2013-08-07 Tom Tromey <tromey@redhat.com>
2826
2827 * linespec.c (convert_linespec_to_sals): Use maybe_add_address
2828 when adding label symbols.
2829
2830 2013-08-07 Raunaq Bathija <raunaq12@in.ibm.com>
2831 Ulrich Weigand <uweigand@de.ibm.com>
2832
2833 * configure.tgt (powerpc64-*-aix*): Match powerpc64 running aix.
2834 * configure.host (powerpc64-*-aix*): Likewise.
2835
2836 2013-08-07 Raunaq Bathija <raunaq12@in.ibm.com>
2837 Ulrich Weigand <uweigand@de.ibm.com>
2838
2839 * gdb_ptrace.h: Use ptrace64 instead of ptrace if HAVE_PTRACE64
2840 is defined.
2841 * rs6000-nat.c: Check for __ld_info64_ if compiling 64 BIT gdb.
2842 (rs6000_ptrace32): Call ptrace64 instead of ptrace if present.
2843 (rs6000_ptrace64): Call ptace64 instead of ptracex if present.
2844 * configure.ac: Check for ptrace64.
2845 * configure, config.in: Regenerate.
2846
2847 2013-08-07 Raunaq Bathija <raunaq12@in.ibm.com>
2848 Ulrich Weigand <uweigand@de.ibm.com>
2849
2850 * aixthread.c: Call ptrace64 instead of ptracex if defined.
2851 Call ptrace64 instead of ptrace if defined.
2852 Add macro addr_ptr to take care of ptrace address argument.
2853 (pdc_read_regs): Likewise.
2854 (pdc_write_regs): Likewise.
2855 (aix_thread_resume): Likewise.
2856 (fetch_regs_kernel_thread): Likewise.
2857 (store_regs_kernel_thread): Likewise.
2858
2859 2013-08-07 Anton Blanchard <anton@samba.org>
2860
2861 * MAINTAINERS: Add myself to Write After Approval.
2862
2863 2013-08-05 Tom Tromey <tromey@redhat.com>
2864
2865 * aix-thread.c (_initialize_aix_thread): Use
2866 complete_target_initialization.
2867 * bsd-uthread.c (_initialize_bsd_uthread): Use
2868 complete_target_initialization.
2869 * dec-thread.c (_initialize_dec_thread): Use
2870 complete_target_initialization.
2871 * ravenscar-thread.c (_initialize_ravenscar): Use
2872 complete_target_initialization.
2873 * sol-thread.c (_initialize_sol_thread): Use
2874 complete_target_initialization.
2875 * spu-multiarch.c (_initialize_spu_multiarch): Use
2876 complete_target_initialization.
2877
2878 2013-08-05 Tom Tromey <tromey@redhat.com>
2879
2880 * ada-exp.y (write_var_or_type): Use bound_minimal_symbol.
2881 * ada-lang.c (ada_lookup_simple_minsym): Return
2882 bound_minimal_symbol.
2883 * ada-lang.h (ada_lookup_simple_minsym): Update.
2884 * c-exp.y (variable): Use lookup_bound_minimal_symbol.
2885 * f-exp.y (variable): Use lookup_bound_minimal_symbol.
2886 * go-exp.y (variable): Use lookup_bound_minimal_symbol.
2887 * jv-exp.y (push_expression_name): Use lookup_bound_minimal_symbol.
2888 * m2-exp.y (variable): Use lookup_bound_minimal_symbol.
2889 * minsyms.c (msymbol_objfile): Remove.
2890 (lookup_minimal_symbol_internal): New function, from
2891 lookup_minimal_symbol.
2892 (lookup_minimal_symbol): Rewrite using
2893 lookup_minimal_symbol_internal.
2894 (lookup_bound_minimal_symbol): New function.
2895 * minsyms.h (msymbol_objfile): Remove.
2896 (lookup_bound_minimal_symbol): Declare.
2897 * p-exp.y (variable): Use lookup_bound_minimal_symbol.
2898 * parse.c (write_exp_msymbol): Change parameter to a
2899 bound_minimal_symbol.
2900 (write_dollar_variable): Use lookup_bound_minimal_symbol.
2901 * parser-defs.h (write_exp_msymbol): Update.
2902 * printcmd.c (address_info): Use lookup_bound_minimal_symbol.
2903 * symfile.c (simple_read_overlay_table): Use
2904 lookup_bound_minimal_symbol.
2905 * symtab.c (skip_prologue_sal): Don't use msymbol_objfile.
2906 (search_symbols): Likewise.
2907 (print_msymbol_info): Take a bound_minimal_symbol argument.
2908 (symtab_symbol_info, rbreak_command): Update.
2909 * symtab.h (struct symbol_search) <msymbol>: Change type
2910 to bound_minimal_symbol.
2911 * valops.c (find_function_in_inferior): Use
2912 lookup_bound_minimal_symbol.
2913 * value.c (value_fn_field): Use lookup_bound_minimal_symbol.
2914
2915 2013-08-05 Jan Kratochvil <jan.kratochvil@redhat.com>
2916
2917 Code cleanup.
2918 * remote.c (cleanup_sigint_signal_handler): Rename the declaration
2919 to ...
2920 (async_cleanup_sigint_signal_handler): ... this.
2921 (initialize_sigint_signal_handler): Remove declaration.
2922 (handle_remote_sigint): Rename the declaration to ...
2923 (async_handle_remote_sigint): ... this.
2924 (handle_remote_sigint_twice): Rename the declaration to ...
2925 (async_handle_remote_sigint_twice): ... this.
2926 (async_remote_interrupt, async_remote_interrupt_twice)
2927 (remote_interrupt): Remove the declarations.
2928 (remote_interrupt_twice): Rename the declaration ...
2929 (sync_remote_interrupt_twice): ... this.
2930 (sigint_remote_twice_token): Rename the variable to ...
2931 (async_sigint_remote_twice_token): ... this.
2932 (sigint_remote_token): Rename the variable to ...
2933 (async_sigint_remote_token): ... this.
2934 (initialize_sigint_signal_handler): Rename the function to ...
2935 (async_initialize_sigint_signal_handler): ... this. Update the name
2936 inside.
2937 (handle_remote_sigint): Rename the function to ...
2938 (async_handle_remote_sigint): ... this. Update the names inside.
2939 (handle_remote_sigint_twice): Rename the function to ...
2940 (async_handle_remote_sigint_twice): ... this. Update the names inside.
2941 (cleanup_sigint_signal_handler): Rename the function to ...
2942 (async_cleanup_sigint_signal_handler): ... this.
2943 (remote_interrupt): Rename the function to ...
2944 (sync_remote_interrupt): this. Update the names inside.
2945 (remote_interrupt_twice): Rename the function to ...
2946 (sync_remote_interrupt_twice): this. Update the names inside.
2947 (remote_terminal_inferior, remote_terminal_ours, remote_wait_as)
2948 (_initialize_remote): Update the names inside.
2949
2950 2013-08-02 Tom Tromey <tromey@redhat.com>
2951
2952 PR symtab/15719:
2953 * breakpoint.c (update_watchpoint, watchpoint_check)
2954 (watch_command_1): Update.
2955 * eval.c (fetch_subexp_value): Add "preserve_errors"
2956 parameter.
2957 * ppc-linux-nat.c (check_condition): Update.
2958 * value.h (fetch_subexp_value): Update.
2959
2960 2013-08-02 Andrew Burgess <aburgess@broadcom.com>
2961
2962 * mi/mi-interp.c (mi_interpreter_resume): Remove call to
2963 add_file_handler.
2964
2965 2013-08-01 Doug Evans <dje@google.com>
2966
2967 PR symtab/15691
2968 * dwarf2read.c (struct dwarf2_per_cu_data): New member tu_read.
2969 (fill_in_sig_entry_from_dwo_entry): Reorganize asserts.
2970 Add assert of sig_entry->dwo_unit == NULL.
2971 (lookup_dwo_signatured_type): Don't assign TU to a DWO if the TU
2972 had already been read.
2973 (read_signatured_type): Set per_cu.tu_read.
2974
2975 PR symtab/15695
2976 * valops.c (value_struct_elt): Add missing call to check_typedef.
2977 (value_find_oload_method_list): Ditto.
2978
2979 * symtab.c (do_free_search_symbols_cleanup): Change arg to,
2980 effectively, struct symbol_search **.
2981 (make_cleanup_free_search_symbols): Change arg to struct
2982 symbol_search **. All callers updated.
2983 (compare_search_syms): Compare symtab file name and block as well.
2984 (search_symbols_equal): New function.
2985 (sort_search_symbols_remove_dups): Renamed from sort_search_symbols.
2986 New args new_head, new_tail. Result is now void. Remove dups after
2987 sorting the symbols.
2988 (search_symbols): Sort all found symbols once, after all have been
2989 found, and remove duplicates. Simplify cleanup tracking of result.
2990 * symtab.h (make_cleanup_free_search_symbols): Update prototype.
2991
2992 Further workarounds for binutils/15021.
2993 * dwarf2read.c (recursively_compute_inclusions): Change type of result
2994 parameter to VEC (symtab_ptr) **. New parameter all_type_symtabs.
2995 Watch for duplicate symtabs coming from type units.
2996 (compute_symtab_includes): Update call to
2997 recursively_compute_inclusions. Build vector of included symtabs
2998 instead of per_cus.
2999 * symtab.h (symtab_ptr): New typedef.
3000 (DEF_VEC_P (symtab_ptr)): New VEC type.
3001 * linespec.c (symtab_p): Delete. All uses updated to use symtab_ptr
3002 instead.
3003
3004 2013-08-01 Andrew Burgess <aburgess@broadcom.com>
3005
3006 * cli/cli-script.c (script_from_file): Remove use of
3007 error_pre_print.
3008 * main.c (captured_main): Remove use of error_pre_print and
3009 quit_pre_print.
3010 * utils.c (error_pre_print, quit_pre_print): Remove.
3011 * utils.h (error_pre_print, quit_pre_print): Likewise.
3012
3013 2013-08-01 Yao Qi <yao@codesourcery.com>
3014
3015 * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Parse argv
3016 with mi_getopt.
3017 (mi_cmd_stack_list_variables): Likewise.
3018
3019 2013-07-31 Andrew Burgess <aburgess@broadcom.com>
3020
3021 * exceptions.c (deprecated_throw_reason): Remove.
3022 * exceptions.h (deprecated_throw_reason): Remove.
3023
3024 2013-07-31 Andrew Burgess <aburgess@broadcom.com>
3025
3026 * remote-mips.c (mips_error): Replace use of
3027 deprecated_throw_reason with throw_verror. Use the error message
3028 passed to mips_error as the error message for throw_verror.
3029
3030 2013-07-31 Andrew Burgess <aburgess@broadcom.com>
3031
3032 * monitor.c (monitor_interrupt_query): Replace use of
3033 deprecated_throw_reason with quit.
3034 * nto-procfs.c (interrupt_query): Likewise.
3035 * remote-fileio.c (remote_fileio_sig_exit): Likewise.
3036 * remote-mips.c (mips_kill): Likewise.
3037 * remote.c (interrupt_query): Likewise.
3038
3039 2013-07-31 Andrew Burgess <aburgess@broadcom.com>
3040
3041 * utils.c (internal_verror): Replace use of deprecated_throw_reason
3042 with call to fatal.
3043
3044 2013-07-31 Pedro Alves <pedro@codesourcery.com>
3045 Yao Qi <yao@codesourcery.com>
3046
3047 * tracepoint.c (trace_dump_command): Select the current frame.
3048
3049 2013-07-30 Doug Evans <dje@google.com>
3050
3051 * dwarf2read.c (process_queue): Add type signature to debug output.
3052
3053 2013-07-30 Andrew Burgess <aburgess@broadcom.com>
3054
3055 * value.c (value_fetch_lazy): Mark optimized out values as such
3056 rather than raising an error.
3057
3058 2013-07-30 Andrew Burgess <aburgess@broadcom.com>
3059
3060 * value.c (value_fetch_lazy): Ensure parent value is not lazy
3061 before checking which bits of the parent, not the child, value are
3062 valid.
3063
3064 2013-07-30 Muhammad Bilal <mbilal@codesorcery.com>
3065
3066 PR gdb/15715
3067 * top.c: Include "filenames.h".
3068 (set_history_filename): New function.
3069 (init_main): Install it as set hook of the "set history filename"
3070 command.
3071
3072 2013-07-30 Sanimir Agovic <sanimir.agovic@intel.com>
3073
3074 * dwarf2read.c (dwarf2_get_ref_die_offset): Constify struct
3075 attribute parameter.
3076 (dwarf2_const_value_data): Constify struct attribute parameter.
3077 (dwarf2_const_value): Constify struct attribute parameter.
3078 (dwarf2_const_value_attr): Constify struct attribute parameter.
3079 (lookup_die_type): Constify struct attribute parameter.
3080 (dwarf2_get_attr_constant_value): Constify struct attribute parameter.
3081 (follow_die_ref_or_sig): Constify struct attribute parameter.
3082 (follow_die_ref): Constify struct attribute parameter.
3083 (follow_die_sig): Constify struct attribute parameter.
3084 (get_DW_AT_signature_type): Constify struct attribute parameter.
3085 (get_type_unit_group): Constify struct attribute parameter.
3086 (fill_in_loclist_baton): Constify struct attribute parameter.
3087 (dwarf2_symbol_mark_computed): Constify struct attribute parameter.
3088 (type_unit_group): Constify struct attribute parameter.
3089
3090 2013-07-30 Sanimir Agovic <sanimir.agovic@intel.com>
3091
3092 * dwarf2read.c (attr_form_is_block): Make argument const.
3093 (attr_form_is_section_offset): Make argument const.
3094 (attr_form_is_constant): Make argument const.
3095 (attr_form_is_ref): Make argument const.
3096
3097 2013-07-30 Sanimir Agovic <sanimir.agovic@intel.com>
3098
3099 * dwarf2read.c (attr_is_ref): Rename to attr_form_is_ref.
3100 All uses updated.
3101 (attr_form_is_ref): Moved below attr_form_is_constant.
3102
3103 2013-07-29 Doug Evans <dje@google.com>
3104
3105 * main.c (captured_command_loop): Tweak comment.
3106
3107 * target.c (target_async_permitted_1): Fix comment.
3108
3109 * symtab.c (iterate_over_some_symtabs): Add comment.
3110
3111 * symtab.c (iterate_over_some_symtabs): Fix indentation.
3112
3113 2013-07-27 Yao Qi <yao@codesourcery.com>
3114
3115 * NEWS: Mention that GDBserver now supports hardware
3116 watchpoints on the MIPS GNU/Linux target.
3117
3118 2013-07-27 Yao Qi <yao@codesourcery.com>
3119
3120 * Makefile.in (HFILES_NO_SRCDIR): Add
3121 common/mips-linux-watch.h.
3122 (mips-linux-watch.o): New rule.
3123 * common/mips-linux-watch.c: New.
3124 * common/mips-linux-watch.h: New.
3125 * config/mips/linux.mh (NATDEPFILES): Add mips-linux-watch.o
3126 * mips-linux-nat.c: Include mips-linux-watch.h.
3127 (W_BIT, R_BIT, I_BIT, W_MASK, R_MASK, I_MASK, IRW_MASK): Move
3128 to common/mips-linux-watch.h.
3129 (MAX_DEBUG_REGISTER): Likewise.
3130 (enum pt_watch_style): Likewise.
3131 (struct mips32_watch_regs): Likewise.
3132 (struct mips64_watch_regs): Likewise.
3133 (struct pt_watch_regs): Likewise.
3134 (struct mips_watchpoint): Likewise.
3135 (mips_linux_watch_get_irw_mask): Move to
3136 common/mips-linux-watch.c.
3137 (get_reg_mask, mips_linux_watch_get_num_valid): Likewise.
3138 (mips_linux_watch_get_watchlo): Likewise.
3139 (mips_linux_watch_set_watchlo): Likewise.
3140 (mips_linux_watch_get_watchhi): Likewise.
3141 (mips_linux_watch_set_watchhi): Likewise.
3142 (mips_linux_read_watch_registers): Likewise.
3143 (mips_linux_watch_type_to_irw): Likewise.
3144 (mips_linux_stopped_data_address, fill_mask): Likewise.
3145 (mips_linux_watch_try_one_watch): Likewise.
3146 (mips_linux_watch_populate_regs): Likewise.
3147
3148 2013-07-27 Yao Qi <yao@codesourcery.com>
3149
3150 * mips-linux-nat.c (get_irw_mask): Rename to ...
3151 (mips_linux_watch_get_irw_mask): ... this. Rename parameter
3152 'set' to 'n'. Update function comment. All callers changed.
3153 (get_reg_mask): Rename parameter 'set' to 'n'. Update
3154 function comment. All callers changed.
3155 (get_num_valid): Rename to ...
3156 (mips_linux_watch_get_num_valid): ... this. Rename parameter
3157 'set' to 'n'. Update function comment. All callers changed.
3158 (get_watchlo): Rename to ...
3159 (mips_linux_watch_get_watchlo): ... this. Rename parameter
3160 'set' to 'n'. Update function comment. All callers changed.
3161 (set_watchlo): Rename to ...
3162 (mips_linux_watch_set_watchlo): ... this. Rename parameter
3163 'set' to 'n'. Update function comment. All callers changed.
3164 (get_watchhi): Rename to ...
3165 (mips_linux_watch_get_watchhi): ... this. Update function
3166 comment. All callers changed.
3167 (set_watchhi): Rename to ...
3168 (mips_linux_watch_set_watchhi): ... this. Update function
3169 comment. All callers changed.
3170 (mips_linux_read_watch_registers): Update function comment.
3171 Add new parameters 'lwpid', 'watch_readback', and
3172 'watch_readback_valid'. Update.
3173 (type_to_irw): Rename to ...
3174 (mips_linux_watch_type_to_irw): ... this. Update function
3175 comment. All callers changed.
3176 (fill_mask): Update function comment.
3177 (try_one_watch): Rename to ...
3178 (mips_linux_watch_try_one_watch): ... this. Change the type
3179 of parameter 'irw' from 'unsigned' to 'uint32_t'.
3180 (populate_regs_from_watches): Rename to ...
3181 (mips_linux_watch_populate_regs): ... this. Add parameter
3182 'current_watches'. All callers changed.
3183
3184 2013-07-27 Yao Qi <yao@codesourcery.com>
3185
3186 * mips-linux-nat.c (MAX_DEBUG_REGISTER): Move it earlier in
3187 the code.
3188 (PTRACE_SET_WATCH_REGS, enum pt_watch_style): Remove.
3189 (struct mips32_watch_regs, struct mips64_watch_regs): Remove.
3190 (struct pt_watch_regs): Likewise.
3191 [!PTRACE_GET_WATCH_REGS] (PTRACE_SET_WATCH_REGS): New macro.
3192 [!PTRACE_GET_WATCH_REGS] (enum pt_watch_style): New.
3193 [!PTRACE_GET_WATCH_REGS] (struct mips32_watch_regs): New.
3194 [!PTRACE_GET_WATCH_REGS] (struct mips64_watch_regs): New.
3195 [!PTRACE_GET_WATCH_REGS] (struct pt_watch_regs): New.
3196
3197 2013-07-27 Yao Qi <yao@codesourcery.com>
3198
3199 * breakpoint.h: Include break-common.h.
3200 (enum target_hw_bp_type): Move to ...
3201 * common/break-common.h: ... here. New.
3202
3203 2013-07-26 Cyril Nikolaev <cyril@nichtverstehen.de>
3204
3205 * inflow.c (terminal_init_inferior_with_pgrp): Save inferior
3206 process group regardless of having tty on stdin.
3207
3208 2013-07-25 Doug Evans <dje@google.com>
3209
3210 * linux-fork.h (detach_fork): Delete.
3211
3212 2013-07-25 Tom Tromey <tromey@redhat.com>
3213
3214 PR remote/15256, PR remote/15266:
3215 * bfd-target.c (target_bfd_reopen): Initialize to_magic.
3216 * monitor.c (monitor_detach): Use unpush_target.
3217 * remote-m32r-sdi.c (m32r_detach): Use unpush_target.
3218 * remote-mips.c (mips_detach): Use unpush_target. Don't
3219 call mips_close.
3220 * remote-sim.c (gdbsim_detach): Use unpush_target.
3221 * target.c (pop_target): Remove.
3222 (pop_all_targets_above): Don't call target_close.
3223 (target_close): Assert that the target is unpushed.
3224 * target.h (pop_target): Don't declare.
3225 * tracepoint.c (tfile_open): Use unpush_target.
3226
3227 2013-07-25 Tom Tromey <tromey@redhat.com>
3228
3229 * linux-thread-db.c (init_thread_db_ops): Call
3230 complete_target_initialization.
3231 (_initialize_thread_db): Don't call add_target.
3232 * target.c (complete_target_initialization): New function.
3233 (add_target_with_completer): Call it.
3234 * target.h (complete_target_initialization): Declare.
3235
3236 2013-07-25 Mark Kettenis <kettenis@gnu.org>
3237
3238 * hppa-tdep.h (enum hppa_regnum): Add members for all space registers.
3239 * hppaobsd-tdep.c (HPPAOBSD_SIZEOF_GREGS): Add comment.
3240 (HPPANBSD_SIZEOF_GREGS): New define.
3241 (hppaobsd_supply_gregset): Handle additional registers.
3242 * hppabsd-nat.c (hppabsd_gregset_supplies_p): Adjust to indicate
3243 we provide more registers now.
3244 (hppabsd_supply_gregset): Supply additional registers.
3245 (hppabsd_collect_gregset): Collect additional registers.
3246
3247 2013-07-25 Mark Kettenis <kettenis@gnu.org>
3248
3249 * hppabsd-tdep.c: Include "dwarf2-frame.h".
3250 (hppabsd_dwarf2_frame_init_reg): New function.
3251 (hppabsd_init_abi): Hook in the DWARF CFI frame unwinder.
3252
3253 2013-07-25 Andrew Burgess <aburgess@broadcom.com>
3254
3255 * mi/mi-main.c (output_register): Make MI 'r' format use standard
3256 'z' format code. Remove error for optimized out values, standard
3257 code will handle these fine.
3258
3259 2013-07-25 Andrew Burgess <aburgess@broadcom.com>
3260
3261 * NEWS: Mention new 'z' formatter.
3262 * printcmd.c (print_scalar_formatted): Add new 'z' formatter.
3263 (_initialize_printcmd): Mention 'z' formatter in help text of the
3264 'x' command.
3265
3266 2013-07-24 Maciej W. Rozycki <macro@codesourcery.com>
3267
3268 * mips-tdep.c (micromips_deal_with_atomic_sequence): Correct
3269 formatting.
3270
3271 2013-07-24 Sergio Durigan Junior <sergiodj@redhat.com>
3272
3273 * breakpoint.c (create_longjmp_master_breakpoint): Check if probe
3274 interface can evaluate arguments. Fallback to the old mode if it
3275 cannot.
3276 (create_exception_master_breakpoint): Likewise.
3277 * elfread.c (elf_can_evaluate_probe_arguments): New function.
3278 (struct sym_probe_fns elf_probe_fns): Export function above to the
3279 probe interface.
3280 * probe.c (can_evaluate_probe_arguments): New function.
3281 * probe.h (struct probe_ops) <can_evaluate_probe_arguments>: New
3282 function pointer.
3283 (can_evaluate_probe_arguments): New function prototype.
3284 * solib-svr4.c (svr4_create_solib_event_breakpoints): Check if
3285 probe interface can evaluate arguments. Fallback to the old mode
3286 if it cannot.
3287 * stap-probe.c (stap_get_probe_argument_count): Check if probe
3288 interface can evaluate arguments. Warning the user if it cannot.
3289 (stap_can_evaluate_probe_arguments): New function.
3290 (struct probe_ops stap_probe_ops): Export function above to the
3291 probe interface.
3292 * symfile.h (struct sym_probe_fns) <can_evaluate_probe_arguments>:
3293 New function pointer.
3294
3295 2013-07-24 Luis Machado <lgustavo@codesourcery.com>
3296
3297 * Makefile.in (SFILES): Add common/target-common.c.
3298 Add common/target-common.h to headers.
3299 (COMMON_OBS): Add target-common.o.
3300 (target-common.o): New target.
3301 * linux-nat.h (resume_kind): Move to common/target-common.h.
3302 * target.c (target_waitstatus_to_string): Move to
3303 common/target-common.c.
3304 * target.h: Include target-common.h.
3305 (target_waitkind): Move to common/target-common.h.
3306 (target_waitstatus): Likewise.
3307 (TARGET_WNOHANG): Likewise.
3308 * common/target-common.c: New file.
3309 * common/target-common.h: New file.
3310
3311 2013-07-24 Doug Evans <dje@google.com>
3312
3313 * dwarf2read.c (lookup_dwo_cutu): Change missing DWO complaint to
3314 a warning.
3315
3316 2013-07-23 Yao Qi <yao@codesourcery.com>
3317
3318 * i386-tdep.c (i386_in_stack_tramp_p): Remove unused
3319 parameter 'gdbarch'.
3320 (i386_stack_tramp_frame_sniffer): Caller update.
3321 * i386-linux-tdep.c (i386_linux_core_read_xcr0): Remove
3322 parameter 'gdbarch' and 'target'.
3323 (i386_linux_core_read_description): Caller update.
3324 * amd64-linux-tdep.c (amd64_linux_core_read_description):
3325 Likewise.
3326 * i386-linux-tdep.h (i386_linux_core_read_xcr0): Update
3327 declaration.
3328
3329 2013-07-23 Tom Tromey <tromey@redhat.com>
3330
3331 * dwarf2read.c (init_cutu_and_read_dies): Revert patch from
3332 2013-07-22.
3333
3334 2013-07-22 Doug Evans <dje@google.com>
3335
3336 * exec.h (remove_target_sections): Delete arg abfd.
3337 * exec.c (exec_close): Update call to remove_target_sections.
3338 (remove_target_sections): Delete arg abfd.
3339 * solib.c (update_solib_list): Ditto.
3340 (reload_shared_libraries_1): Ditto.
3341 (clear_solib): Ditto, and unconditionally call remove_target_sections.
3342 * target.h (struct target_section): Rename key to owner.
3343 All uses updated.
3344
3345 2013-07-22 Tom Tromey <tromey@redhat.com>
3346
3347 * solib-som.c (som_open_symbol_file_object): Call do_cleanups.
3348
3349 2013-07-22 Tom Tromey <tromey@redhat.com>
3350
3351 * dwarf2read.c (init_cutu_and_read_dies): Remove 'free_cu_cleanup'.
3352 Simplify cleanup handling.
3353
3354 2013-07-22 Tom Tromey <tromey@redhat.com>
3355
3356 * dwarf2read.c (dwarf_decode_line_header): Call do_cleanups
3357 on all return paths.
3358
3359 2013-07-22 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
3360
3361 * ppc-linux-nat.c (PPC_DEBUG_FEATURE_DATA_BP_DAWR): New define.
3362 (ppc_linux_region_ok_for_hw_watchpoint): Add checking to use the new
3363 DAWR interface for longer ranges hardware watchpoint (up to 512 bytes).
3364
3365 2013-07-22 Phil Muldoon <pmuldoon@redhat.com>
3366
3367 * top.c (print_gdb_version): Add help, apropos description and
3368 url to online documentation.
3369
3370 2013-07-19 Hui Zhu <hui@codesourcery.com>
3371
3372 PR gdb/15692
3373 * mi/mi-cmd-break.c (mi_argv_to_format): Handle double quotes.
3374
3375 2013-07-19 Yao Qi <yao@codesourcery.com>
3376
3377 * target.c (update_current_target): Change the default action
3378 of 'to_traceframe_info' from tcomplain to return_zero.
3379 * target.h (struct target_ops) <to_traceframe_info>: Add more
3380 comments.
3381 * valops.c (read_value_memory): Call
3382 traceframe_available_memory unconditionally.
3383
3384 2013-07-18 Yao Qi <yao@codesourcery.com>
3385
3386 * coffread.c (coff_symfile_read): Iterate over minimal symbols,
3387 if the name is prefixed by "__imp_" or "_imp_", look for minimal
3388 symbol without prefix. If found, set its type to
3389 'mst_solib_trampoline'.
3390
3391 2013-07-17 Doug Evans <dje@google.com>
3392
3393 * NEWS: Mention "set print raw frame-arguments".
3394 * gdbcmd.h (setprintrawlist, showprintrawlist): Declare.
3395 * stack.c (print_raw_frame_arguments): New static global.
3396 (print_frame_arg): Set opts.raw from print_raw_frame_arguments.
3397 (_initialize_stack): New command "set/show print raw frame-arguments".
3398 * valprint.c (setprintrawlist, showprintrawlist): New globals.
3399 (set_print_raw, show_print_raw): New functions.
3400 (_initialize_valprint): New prefix command "set/show print raw".
3401 * valprint.h (value_print_options): Improve comments.
3402
3403 * cli/cli-cmds.c (init_cmd_lists): Delete unnecessary initialization
3404 of all *list variables.
3405
3406 * gdbcmd.h (togglelist): Delete.
3407 * cli/cli-cmds.c (togglelist): Delete.
3408 (init_cmd_lists): Update.
3409 * cli/cli-cmds.h (togglelist): Delete.
3410
3411 2013-07-17 Tom Tromey <tromey@redhat.com>
3412
3413 * dwarf2read.c (dwarf2_per_objfile_free): Clear
3414 dwarf2_per_objfile.
3415
3416 2013-07-16 Doug Evans <dje@google.com>
3417
3418 * nto-tdep.c (nto_relocate_section_addresses): Update,
3419 target_section.bfd deleted.
3420 * ppc64-tdep.c (ppc64_convert_from_func_ptr_addr): Ditto.
3421 * s390-tdep.c (s390_load): Ditto.
3422 * solib-aix.c (solib_aix_relocate_section_addresses): Ditto.
3423
3424 2013-07-16 Andrew Burgess <aburgess@broadcom.com>
3425
3426 * common/format.c (parse_format_string): Add checks for NULL
3427 character before calling strchr.
3428
3429 2013-07-16 Doug Evans <dje@google.com>
3430
3431 * solist.h (target_so_ops.find_and_open_solib): Clarify usage of
3432 temp_pathname argument.
3433 * nto-tdep.c (nto_find_and_open_solib): Fix setting of temp_pathname
3434 when opening the file fails.
3435
3436 * target.h (struct target_section): Delete member bfd.
3437 All users updated to use the_bfd_section->owner instead.
3438 * exec.c (add_to_section_table): Assert bfd is expected value.
3439 Remove initialization of target_section.bfd.
3440 (remove_target_sections): Update.
3441 (section_table_available_memory): Update.
3442 (section_table_xfer_memory_partial): Update.
3443 (print_section_info): Update.
3444 (exec_set_section_address): Update.
3445 * record-full.c (record_full_core_xfer_partial): Update.
3446 * solib-svr4.c (svr4_relocate_section_addresses): Update.
3447 * solib-target.c (solib_target_relocate_section_addresses): Update.
3448 * symfile.c (build_section_addr_info_from_section_table): Update.
3449 * target.c (memory_xfer_live_readonly_partial): Update.
3450 (memory_xfer_partial_1): Update.
3451
3452 2013-07-15 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
3453
3454 * ppc-linux-nat.c: Since the new PowerPC specific ptrace interface is
3455 now available for embedded (BookE) and server (BookS) processors,
3456 correct mentions of 'booke' and adjust comments accordingly in order to
3457 avoid confusion. Rename struct 'booke_debug_info' to 'hwdebug_info'.
3458 (have_ptrace_booke_interface): Rename function and variable
3459 'have_ptrace_booke_interface' to 'have_ptrace_hwdebug_interface'.
3460 Rename struct 'booke_debug_info' to 'hwdebug_info'. Update all uses.
3461 (booke_cmp_hw_point): Rename function 'booke_cmp_hw_point' to
3462 'hwdebug_point_cmp'. Update all uses.
3463 (booke_find_thread_points_by_tid): Rename function
3464 'booke_find_thread_points_by_tid' to
3465 'hwdebug_find_thread_points_by_tid'. Update all uses.
3466 (booke_insert_point): Rename function 'booke_insert_point' to
3467 'hwdebug_insert_point'. Update all uses.
3468 (booke_remove_point): Rename function 'booke_remove_point' to
3469 'hwdebug_remove_point'. Update all uses.
3470
3471 2013-07-15 Maciej W. Rozycki <macro@codesourcery.com>
3472
3473 * mips-tdep.c (mips_gdbarch_init): Replace hardcoded magic
3474 numbers with enum values.
3475
3476 2013-07-15 Ali Anwar <ali_anwar@codesourcery.com>
3477
3478 PR threads/13217
3479 * thread.c (thread_apply_all_command): Check for valid threads
3480 and thread count.
3481 (thread_array_cleanup): New struct.
3482 (set_thread_refcount): New function.
3483
3484 2013-07-11 Andrew Burgess <aburgess@broadcom.com>
3485
3486 * infcmd.c (default_print_one_register_info): Reuse function
3487 print_hex_chars.
3488
3489 2013-07-10 Tom Tromey <tromey@redhat.com>
3490
3491 * Makefile.in (GDB_WARN_CFLAGS_NO_DEFS, ADA_EXP_C): New macros.
3492 (ada-exp.o): New target.
3493
3494 2013-07-10 Sergio Durigan Junior <sergiodj@redhat.com>
3495
3496 * mt-tdep.c (mt_registers_info): Call
3497 get_no_prettyformat_print_options instead of
3498 get_raw_print_options (regression by last patch from Doug
3499 Evans).
3500
3501 2013-07-09 Pedro Alves <palves@redhat.com>
3502
3503 Checked in by Joel Brobecker <brobecker@adacore.com>.
3504 * ada-lang.c (coerce_unspec_val_to_type): Use
3505 value_optimized_out_const.
3506 * value.c (value_optimized_out_const): New function.
3507 * value.h (value_optimized_out_const): New declaration.
3508
3509 2013-07-09 Doug Evans <dje@google.com>
3510
3511 * defs.h (enum val_prettyformat): Renamed from val_prettyprint.
3512 Enum values rename as well. All uses updated.
3513 * valprint.h (value_print_options): Rename member pretty to
3514 pretty format. Rename member prettyprint_arrays to
3515 prettyformat_arrays. Rename member prettyprint_structs to
3516 prettyformat_structs. All uses updated.
3517 (get_no_prettyformat_print_options): Renamed from
3518 get_raw_print_options.
3519 * valprint.c (get_no_prettyformat_print_options): Renamed from
3520 get_raw_print_options. All callers updated.
3521 (show_prettyformat_structs): Renamed from show_prettyprint_structs.
3522 All callers updated.
3523 (show_prettyformat_arrays): Renamed from show_prettyprint_arrays.
3524 All callers updated.
3525 (_initialize_valprint): Improve help text for "set print pretty" and
3526 "set print arrays".
3527
3528 2013-07-09 Andrew Burgess <aburgess@broadcom.com>
3529
3530 * value.c (value_bits_valid): Revert previous change, and change
3531 by Pedro on 2013-07-04, due to regressions in
3532 gdb.dwarf2/implptr.exp and gdb.dwarf2/pieces.exp.
3533
3534 2013-07-08 Andrew Burgess <aburgess@broadcom.com>
3535 Pedro Alves <palves@redhat.com>
3536
3537 * value.c (value_bits_valid): If the value is not lval_computed
3538 or has no check validity handler then the answer is the
3539 optimized_out flag, otherwise defer to the handler.
3540
3541 2013-07-06 Eli Zaretskii <eliz@gnu.org>
3542
3543 * top.c (print_gdb_configuration): Explain in output of
3544 --configuration what does "relocatable" mean.
3545
3546 * main.c (print_gdb_help): Regroup options in the --help text.
3547 See http://sourceware.org/ml/gdb-patches/2013-04/msg00362.html for
3548 the relevant discussions.
3549
3550 2013-07-06 Yao Qi <yao@codesourcery.com>
3551
3552 * breakpoint.h (struct breakpoint_ops) <create_breakpoints_sal>:
3553 Remove parameter 'lsal'.
3554 * breakpoint.c (create_breakpoint): Move local variable 'lsal'
3555 to inner block. Caller update.
3556 (base_breakpoint_create_breakpoints_sal): Update.
3557 (bkpt_create_breakpoints_sal): Likewise.
3558 (tracepoint_create_breakpoints_sal): Likewise.
3559 (strace_marker_create_breakpoints_sal): Get 'lsal' from the
3560 element 0 of vector 'canonical->sals'.
3561
3562 2013-07-05 Luis Machado <lgustavo@codesourcery.com>
3563
3564 * rs6000-tdep.c (rs6000_stab_reg_to_regnum): Return the real
3565 register number instead of the pseudo register one.
3566 (rs6000_dwarf2_reg_to_regnum): Likewise.
3567
3568 2013-07-04 Pedro Alves <palves@redhat.com>
3569
3570 * findvar.c (value_of_register): Use allocate_optimized_out_value
3571 if the register has been optimized out, instead of
3572 set_value_optimized_out.
3573 * frame-unwind.c (frame_unwind_got_optimized): Use
3574 allocate_optimized_out_value.
3575
3576 2013-07-04 Pedro Alves <palves@redhat.com>
3577
3578 * value.c (value_bits_valid): If the value is not lval_computed,
3579 or doesn't have a check_validity hook, assume the value is entirely
3580 valid.
3581
3582 2013-07-04 Andrew Burgess <aburgess@broadcom.com>
3583
3584 * stack.c (read_frame_arg): No longer fetch lazy values.
3585 * value.c (value_optimized_out): If the value is not already
3586 marked optimized out, and is lazy then fetch it.
3587 (value_primitive_field): Move optimized out check to later in the
3588 function, after we have loaded any lazy values.
3589 (value_fetch_lazy): Use optimized out flag directly rather than
3590 calling optimized_out method.
3591
3592 2013-07-04 Andrew Burgess <aburgess@broadcom.com>
3593
3594 * valops.c: Don't include "user-regs.h".
3595 (value_fetch_lazy): Moved to value.c.
3596 * value.c: Include "user-regs.h".
3597 (value_fetch_lazy): Moved from valops.c.
3598
3599 2013-07-04 Yao Qi <yao@codesourcery.com>
3600
3601 Revert:
3602 2013-06-27 Yao Qi <yao@codesourcery.com>
3603
3604 * common/create-version.sh: Update comments. Handle the case
3605 that TARGET_ALIAS is empty.
3606
3607 2013-07-03 Pedro Alves <palves@redhat.com>
3608
3609 * Makefile.in (config.status): Depend on development.sh.
3610 (aclocal_m4_deps): Add libmcheck.m4.
3611 * acinclude.m4: Include libmcheck.m4.
3612 * configure.ac: Source development.sh instead of setting
3613 'development' here. --enable-libmcheck/--disable-libmcheck code
3614 factored out to GDB_AC_LIBMCHECK. Run it.
3615 * development.sh: New file.
3616 * libmcheck.m4: New file.
3617 * configure: Regenerate.
3618
3619 2013-07-02 Tom Tromey <tromey@redhat.com>
3620
3621 * contrib/ari/update-web-ari.sh: Update for version.in change.
3622
3623 2013-07-02 Tom Tromey <tromey@redhat.com>
3624
3625 * common/ptid.h: Comment fixes.
3626
3627 2013-07-01 Tom Tromey <tromey@redhat.com>
3628
3629 * dwarf2read.c (dwarf2_get_dwz_file): Return NULL if
3630 .gnu_debugaltlink not found. Use bfd_get_alt_debug_link_info.
3631 (dwarf2_read_index, create_all_comp_units): Update.
3632
3633 2013-07-01 Tom Tromey <tromey@redhat.com>
3634
3635 * configure.ac (build_warnings): Add -Wold-style-definition.
3636 * configure: Rebuild.
3637 * machoread.c (_initialize_machoread): Use "(void)".
3638 * macrocmd.c (macro_inform_no_debuginfo): Fix formatting;
3639 use "(void)".
3640
3641 2013-07-01 Tom Tromey <tromey@redhat.com>
3642
3643 * configure.ac (build_warnings): Add -Wold-style-declaration.
3644 * configure: Rebuild.
3645 * dsrec.c (make_srec): Use "static const", not "const static".
3646 * h8300-tdep.c (h8300_breakpoint_from_pc): Use "static const",
3647 not "const static".
3648 * mi/mi-parse.c (mi_no_values, mi_simple_values, mi_all_values):
3649 Use "static const", not "const static".
3650 * mn10300-tdep.c (mn10300_breakpoint_from_pc): Use "static const",
3651 not "const static".
3652 * moxie-tdep.c (moxie_breakpoint_from_pc): Use "static const",
3653 not "const static".
3654 * rs6000-tdep.c (rs6000_breakpoint_from_pc): Use "static const",
3655 not "const static".
3656 * v850-tdep.c (v850_breakpoint_from_pc): Use "static const",
3657 not "const static".
3658 (v850_dbtrap_breakpoint_from_pc): Likewise.
3659 * xstormy16-tdep.c (xstormy16_breakpoint_from_pc): Use "static const",
3660 not "const static".
3661
3662 2013-07-01 Tom Tromey <tromey@redhat.com>
3663
3664 * configure.ac (build_warnings): Add -Wmissing-parameter-type.
3665 * configure: Rebuild.
3666
3667 2013-07-01 Pedro Alves <palves@redhat.com>
3668
3669 * defs.h: Include "pathmax.h".
3670 * utils.c: Don't include sys/param.h.
3671 (gdb_realpath): Remove code that checks for MAXPATHLEN.
3672 * solib-ia64-hpux.c (ia64_hpux_handle_load_event): Use PATH_MAX
3673 instead of MAXPATHLEN.
3674 * solib-sunos.c: Don't include sys/param.h.
3675 * xcoffread.c: Don't include sys/param.h.
3676 * bsd-kvm.c: Don't include sys/param.h.
3677 * darwin-nat.c: Don't include sys/param.h.
3678 (darwin_pid_to_exec_file): Use PATH_MAX instead of MAXPATHLEN.
3679 * darwin-nat-info.c: Don't include sys/param.h.
3680 * fbsd-nat.c (fbsd_pid_to_exec_file): Use PATH_MAX instead of
3681 MAXPATHLEN.
3682 * i386obsd-nat.c: Don't include sys/param.h.
3683 * inf-child.c: Don't include sys/param.h.
3684 (inf_child_fileio_readlink): Use PATH_MAX instead of MAXPATHLEN.
3685 * linux-fork.c: Don't include sys/param.h.
3686 (fork_save_infrun_state): Use PATH_MAX instead of MAXPATHLEN.
3687 * linux-nat.c: Don't include sys/param.h.
3688 (linux_child_pid_to_exec_file, linux_proc_pending_signals)
3689 (linux_proc_pending_signals): Use PATH_MAX instead of MAXPATHLEN.
3690 * m68klinux-nat.c: Don't include sys/param.h.
3691 * nbsd-nat.c: Don't include sys/param.h.
3692 (nbsd_pid_to_exec_file): Use PATH_MAX instead of MAXPATHLEN.
3693 * ppc-linux-nat.c: Don't include sys/param.h.
3694 * rs6000-nat.c: Don't include sys/param.h.
3695 * spu-linux-nat.c. Don't include sys/param.h.
3696 * windows-nat.c: Don't include sys/param.h.
3697 * xtensa-linux-nat.c: Don't include sys/param.h.
3698 * config/i386/nm-fbsd.h: Don't include sys/param.h.
3699
3700 2013-07-01 Pedro Alves <palves@redhat.com>
3701
3702 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add pathmax.
3703 * gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/pathmax.m4.
3704 * gnulib/aclocal.m4: Regenerate.
3705 * gnulib/config.in: Regenerate.
3706 * gnulib/configure: Regenerate.
3707 * gnulib/import/pathmax.h: New file.
3708 * gnulib/import/Makefile.am: Regenerate.
3709 * gnulib/import/Makefile.in: Regenerate.
3710 * gnulib/import/m4/gnulib-cache.m4: Regenerate.
3711 * gnulib/import/m4/gnulib-comp.m4: Regenerate.
3712 * gnulib/import/m4/pathmax.m4: New file.
3713
3714 2013-07-01 Pedro Alves <palves@redhat.com>
3715
3716 * configure.ac (GDBINIT): Define, depending on host.
3717 * go32-nat.c (init_go32_ops): Don't override gdbinit here.
3718 * top.c (PATH_MAX): Delete fallback definition.
3719 (GDBINIT_FILENAME): Delete.
3720 (gdbinit): Reimplement as const char array set to the GDBINIT
3721 string constant.
3722 * top.h (gdbinit): Make const.
3723 * configure, config.in: Regenerate.
3724
3725 2013-07-01 Pedro Alves <palves@redhat.com>
3726
3727 * cli/cli-cmds.c (source_script): Make 'file' parameter const.
3728 * cli/cli-cmds.h (source_script): Likewise.
3729 * exceptions.c (catch_command_errors_const): New function.
3730 * exceptions.h (catch_command_errors_const): Declare.
3731 * main.c (get_init_files): Make parameters const, and adjust.
3732 (captured_main): Make 'system_gdbinit', 'home_gdbinit' and
3733 'local_gdbinit' locals const. Adjust to use
3734 catch_command_errors_const.
3735 (print_gdb_help): Make 'system_gdbinit', 'home_gdbinit' and
3736 'local_gdbinit' locals const.
3737
3738 2013-07-01 Pedro Alves <palves@redhat.com>
3739
3740 * defs.h: Don't check HAVE_UNISTD_H before including <unistd.h>.
3741 (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO): Delete.
3742 * tracepoint.c: Don't check HAVE_UNISTD_H before including
3743 <unistd.h>.
3744
3745 2013-07-01 Pedro Alves <palves@redhat.com>
3746
3747 Import the "unistd" gnulib module.
3748 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add "unistd".
3749 * gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/off_t.m4,
3750 import/m4/ssize_t.m4, import/m4/sys_types_h.m4 and
3751 import/m4/unistd_h.m4.
3752 * gnulib/aclocal.m4: Renenerate.
3753 * gnulib/config.in: Renenerate.
3754 * gnulib/configure: Renenerate.
3755 * gnulib/import/Makefile.am: Renenerate.
3756 * gnulib/import/Makefile.in: Renenerate.
3757 * gnulib/import/m4/gnulib-cache.m4: Renenerate.
3758 * gnulib/import/m4/gnulib-comp.m4: Renenerate.
3759 * gnulib/import/m4/off_t.m4: New file.
3760 * gnulib/import/m4/ssize_t.m4: New file.
3761 * gnulib/import/m4/sys_types_h.m4: New file.
3762 * gnulib/import/m4/unistd_h.m4: New file.
3763 * gnulib/import/sys_types.in.h: New file.
3764 * gnulib/import/unistd.c: New file.
3765 * gnulib/import/unistd.in.h: New file.
3766
3767 2013-07-01 Pedro Alves <palves@redhat.com>
3768
3769 * utils.c <pathconf/_PC_PATH_MAX use>: Check if _PC_PATH_MAX is
3770 defined instead of checking HAVE_UNISTD_H.
3771
3772 2013-07-01 Pedro Alves <palves@redhat.com>
3773
3774 Reimport gnulib from scratch.
3775 * gnulib/Makefile.in (aclocal_m4_deps): Remove reference to
3776 import/m4/onceonly.m4.
3777 * gnulib/aclocal.m4: Renegerate.
3778 * gnulib/config.in: Renegerate.
3779 * gnulib/configure: Renegerate.
3780 * gnulib/import/Makefile.in: Renegerate.
3781 * gnulib/import/extra/update-copyright: Renegerate.
3782 * gnulib/import/m4/onceonly.m4: Delete.
3783
3784 2013-07-01 Pedro Alves <palves@redhat.com>
3785
3786 * tui/tui-regs.c (pagination_enabled): Delete declaration.
3787
3788 2013-06-30 Jan Kratochvil <jan.kratochvil@redhat.com>
3789
3790 Code cleanup.
3791 * remote.c (async_remote_interrupt_twice): Make it static.
3792 * remote.h (async_remote_interrupt_twice): Remove the declaration.
3793
3794 2013-06-29 Sergio Durigan Junior <sergiodj@redhat.com>
3795
3796 * ia64-linux-tdep.c: Include <ctype.h>.
3797 (ia64_linux_stap_is_single_operand): New function.
3798 (ia64_linux_init_abi): Initialize SystemTap related attributes.
3799
3800 2013-06-28 Tom Tromey <tromey@redhat.com>
3801
3802 * Makefile.in (version.c): Use version.in, not
3803 common/version.in.
3804 * common/create-version.sh: Likewise.
3805 * common/version.in: Move...
3806 * version.in: ...here.
3807
3808 2013-06-28 Pedro Alves <palves@redhat.com>
3809
3810 * infrun.c (set_observer_mode): Don't declare pagination_enabled
3811 here.
3812 * utils.h (pagination_enabled): Declare.
3813
3814 2013-06-28 Pedro Alves <palves@redhat.com>
3815
3816 * infrun.c (non_stop, non_stop_1, set_non_stop, show_non_stop):
3817 Move higher up in file.
3818
3819 2013-06-28 Tom Tromey <tromey@redhat.com>
3820
3821 * tracepoint.c (deprecated_readline_begin_hook)
3822 (deprecated_readline_hook, deprecated_readline_end_hook): Don't
3823 declare.
3824
3825 2013-06-28 Pedro Alves <palves@redhat.com>
3826
3827 PR tui/14880
3828 * tui/tui-regs.c (tui_get_register): Fetch value contents before
3829 checking if they're available.
3830 * value.c (value_available_contents_eq): Change comment.
3831 * value.h (value_available_contents_eq): Expand comment.
3832
3833 2013-06-27 Tom Tromey <tromey@redhat.com>
3834
3835 * target.c (find_run_target): Remove.
3836 * target.h (find_run_target): Remove.
3837
3838 2013-06-27 Tom Tromey <tromey@redhat.com>
3839
3840 * corelow.c (core_gdbarch): Now static.
3841
3842 2013-06-27 Tom Tromey <tromey@redhat.com>
3843
3844 * target.c (target_struct_index): Remove.
3845
3846 2013-06-27 Pedro Alves <palves@redhat.com>
3847
3848 * infrun.c: Remove comment describing the 'stepping over runtime
3849 loader dynamic symbol resolution code' mechanism; moved to
3850 gdbint.texinfo.
3851
3852 2013-06-27 Pedro Alves <palves@redhat.com>
3853
3854 * exceptions.c (catch_command_errors): Remove spurious space.
3855 * exceptions.h (catch_command_errors): Second parameter is "arg",
3856 not "command".
3857
3858 2013-06-27 Yao Qi <yao@codesourcery.com>
3859
3860 * common/create-version.sh: Update comments. Handle the case
3861 that TARGET_ALIAS is empty.
3862
3863 2013-06-26 Pedro Alves <palves@redhat.com>
3864
3865 * infrun.c (SOLIB_IN_DYNAMIC_LINKER): Delete macro and describing
3866 comment.
3867
3868 2013-06-26 Pedro Alves <palves@redhat.com>
3869
3870 * infrun.c: Update comments on stepping over runtime loader
3871 dynamic symbol resolution code.
3872
3873 2013-06-26 Sergio Durigan Junior <sergiodj@redhat.com>
3874
3875 * ax-gdb.h (union exp_element): Forward declare.
3876 * parser-defs.h: Include expression.h.
3877
3878 2013-06-26 Maciej W. Rozycki <macro@codesourcery.com>
3879
3880 * mips-tdep.c (fetch_mips_16): Use unmake_compact_addr.
3881
3882 2013-06-26 Dmitry Kozlov <ddk@codesourcery.com>
3883
3884 * tracepoint.c (trace_save): Extend tsave to save starttime, stoptime.
3885
3886 2013-06-26 Dmitry Kozlov <ddk@codesourcery.com>
3887
3888 Fix trace-status to output proper start-time and stop-time.
3889 * tracepoint.c (trace_status_command): Fix type of printf arg to
3890 prevent improper type conversion.
3891 (trace_status_mi): Likewise.
3892
3893 2013-06-26 Maciej W. Rozycki <macro@codesourcery.com>
3894
3895 * mips-tdep.c (mips_next_pc): Fix a typo.
3896
3897 2013-06-26 Maciej W. Rozycki <macro@codesourcery.com>
3898
3899 * mips-tdep.c (micromips_scan_prologue): Fix a typo.
3900
3901 2013-06-26 Pedro Alves <pedro@codesourcery.com>
3902 Yao Qi <yao@codesourcery.com>
3903
3904 * mi/mi-cmds.c (mi_cmds): Register -trace-frame-collected.
3905 * mi/mi-cmds.h (mi_cmd_trace_frame_collected): Declare.
3906 * mi/mi-main.c (print_variable_or_computed): New function.
3907 (mi_cmd_trace_frame_collected): New function.
3908 * tracepoint.c (find_trace_state_variable_by_number): New.
3909 (struct traceframe_info): Move to tracepoint.h
3910 (struct collection_list): Likewise.
3911 (do_collect_symbol): Include locals and arguments in the
3912 collected variables list.
3913 (clear_collection_list): Clear wholly collected variables list
3914 and computed variables list.
3915 (append_exp): New function.
3916 (encode_actions_1): Include variables in the wholly
3917 collected variables list. Include memory ranges and
3918 full-fledged expressions in the computed expressions list.
3919 (encode_actions): Move some code to ...
3920 Return the cleanup chain.
3921 (encode_actions_rsp): ... here. New function.
3922 (get_traceframe_location, get_traceframe_info): Remove static.
3923 * tracepoint.h (struct memrange): Moved from tracepoint.c.
3924 (struct collection_list): Moved from tracepoint.c. Add two
3925 new fields 'wholly_collected' and 'computed'.
3926 (find_trace_state_variable_by_number): Declare.
3927 (encode_actions): Adjust declaration.
3928 (encode_actions_rsp): Declare.
3929 (get_traceframe_info, get_traceframe_location): Declare.
3930
3931 * NEWS: Mention new MI command -trace-frame-collected.
3932
3933 2013-06-26 Pedro Alves <pedro@codesourcery.com>
3934 Yao Qi <yao@codesourcery.com>
3935
3936 * ctf.c (ctf_traceframe_info): Push trace state variables
3937 present in the trace data into the traceframe info object.
3938 * breakpoint.c (DEF_VEC_I): Remove.
3939 * common/filestuff.c (DEF_VEC_I): Likewise.
3940 * dwarf2loc.c (DEF_VEC_I): Likewise.
3941 * mi/mi-main.c (DEF_VEC_I): Likewise.
3942 * common/gdb_vecs.h (DEF_VEC_I): Define vector for int.
3943 * features/traceframe-info.dtd: Add tvar element and its
3944 attributes.
3945 * tracepoint.c (free_traceframe_info): Free vector 'tvars'.
3946 (build_traceframe_info): Push trace state variables present in
3947 the trace data into the traceframe info object.
3948 (traceframe_info_start_tvar): New function.
3949 (tvar_attributes): New.
3950 (traceframe_info_children): Add "tvar" element.
3951 * tracepoint.h (struct traceframe_info) <tvars>: New field.
3952
3953 * NEWS: Mention the change in GDB and GDBserver.
3954
3955 2013-06-26 Pedro Alves <pedro@codesourcery.com>
3956 Yao Qi <yao@codesourcery.com>
3957
3958 * tracepoint.c (trace_dump_command): Move code to ...
3959 (get_traceframe_location): ... here. New.
3960
3961 2013-06-26 Pedro Alves <pedro@codesourcery.com>
3962 Yao Qi <yao@codesourcery.com>
3963
3964 * tracepoint.c (trace_dump_command): GDB emits an error
3965 instead of a warning when a traceframe is not selected.
3966
3967 2013-06-26 Pedro Alves <pedro@codesourcery.com>
3968 Yao Qi <yao@codesourcery.com>
3969
3970 * tracepoint.c (tracepoint_list, stepping_list): Remove.
3971 (clear_collection_list): Free fields 'aexpre_list' and 'list'
3972 in collection_list.
3973 (do_clear_collection_list, init_collection_list): New.
3974 (encode_actions): Add local variables 'tracepoint_list' and
3975 'stepping_list'. Call init_collection_list and make cleanup
3976 which calls do_clear_collection_list. Don't call
3977 clear_collection_list.
3978 (_initialize_tracepoint): Delete references to
3979 'tracepoint_list' and 'stepping_list'.
3980
3981 2013-06-25 Tom Tromey <tromey@redhat.com>
3982
3983 * common/create-version.sh (date): Use "$", not "$$" in sed
3984 expression.
3985
3986 2013-06-25 Kevin Buettner <kevinb@redhat.com>
3987
3988 * NEWS (New targets): Add entry for TI MSP430.
3989
3990 2013-06-25 Yao Qi <yao@codesourcery.com>
3991
3992 * remote.c (remote_start_remote): Move code to upload tsv
3993 earlier.
3994
3995 2013-06-25 Yao Qi <yao@codesourcery.com>
3996 Hui Zhu <hui@codesourcery.com>
3997 Pedro Alves <palves@redhat.com>
3998
3999 PR breakpoints/15075
4000 PR breakpoints/15434
4001 * breakpoint.c (bpstat_stop_status): Call
4002 b->ops->after_condition_true.
4003 (update_dprintf_command_list): Don't append "continue" command
4004 to the command list of dprintf breakpoint.
4005 (base_breakpoint_after_condition_true): New function.
4006 (base_breakpoint_ops): Add base_breakpoint_after_condition_true.
4007 (dprintf_after_condition_true): New function.
4008 (initialize_breakpoint_ops): Set dprintf_after_condition_true.
4009 * breakpoint.h (breakpoint_ops): Add after_condition_true.
4010
4011 2013-06-24 Kevin Buettner <kevinb@redhat.com>
4012
4013 * Makefile.in (ALL_TARGET_OBS): Add msp430-tdep.o.
4014 (ALLDEPFILES): Add msp430-tdep.c.
4015 * configure.tgt (msp430*-*-elf): New target.
4016 * msp430-tdep.c: New file.
4017
4018 2013-06-24 Maciej W. Rozycki <macro@codesourcery.com>
4019
4020 * mips-tdep.c (mips_elf_make_msymbol_special): Handle MIPS16 and
4021 microMIPS synthetic symbols.
4022
4023 2013-06-24 Maciej W. Rozycki <macro@codesourcery.com>
4024
4025 * objfiles.h (pc_in_section): New prototype.
4026 (in_plt_section): Remove name argument, replace prototype with
4027 static inline function.
4028 * mips-tdep.h: Include "objfiles.h".
4029 (in_mips_stubs_section): New function.
4030 * hppa-tdep.h (gdbarch_tdep): Remove name argument of
4031 in_solib_call_trampoline member.
4032 (hppa_in_solib_call_trampoline): Remove name argument.
4033 * objfiles.c (pc_in_section): New function.
4034 (in_plt_section): Remove function.
4035 * mips-linux-tdep.c: Include "objfiles.h".
4036 (mips_linux_in_dynsym_stub): Call in_mips_stubs_section. Remove
4037 name argument. Return 1 rather than the low 16-bit halfword of
4038 any instruction examined.
4039 (mips_linux_in_dynsym_resolve_code): Update
4040 mips_linux_in_dynsym_stub call accordingly.
4041 * mips-tdep.c (mips_stub_frame_sniffer): Use in_mips_stubs_section
4042 rather than an equivalent hand-coded sequence.
4043 * hppa-hpux-tdep.c (in_opd_section): Remove function.
4044 (hppa32_hpux_in_solib_call_trampoline): Remove name argument.
4045 (hppa64_hpux_in_solib_call_trampoline): Likewise.
4046 (hppa64_hpux_find_global_pointer): Use pc_in_section rather than
4047 in_opd_section.
4048 * hppa-tdep.c (hppa_stub_unwind_sniffer): Remove name argument
4049 on call to tdep->in_solib_call_trampoline.
4050 (hppa_in_solib_call_trampoline): Remove name argument, update
4051 according to in_plt_section change.
4052 (hppa_skip_trampoline_code): Update according to in_plt_section
4053 change.
4054 * aarch64-tdep.c (aarch64_stub_unwind_sniffer): Likewise.
4055 * arm-symbian-tdep.c (arm_symbian_skip_trampoline_code):
4056 Likewise.
4057 * arm-tdep.c (arm_stub_unwind_sniffer): Likewise.
4058 * hppa-linux-tdep.c (hppa_linux_find_global_pointer): Likewise.
4059 * hppabsd-tdep.c (hppabsd_find_global_pointer): Likewise.
4060 * nios2-tdep.c (nios2_stub_frame_sniffer): Likewise.
4061 * nto-tdep.c (nto_relocate_section_addresses): Likewise.
4062 * s390-tdep.c (s390_stub_frame_sniffer): Likewise.
4063 * sh-tdep.c (sh_stub_unwind_sniffer): Likewise.
4064 * solib-dsbt.c (dsbt_in_dynsym_resolve_code): Likewise.
4065 * solib-frv.c (frv_in_dynsym_resolve_code): Likewise.
4066 * solib-svr4.c (svr4_in_dynsym_resolve_code): Likewise.
4067 * solib-target.c (solib_target_in_dynsym_resolve_code): Likewise.
4068 * sparc-tdep.c (sparc_analyze_prologue): Likewise.
4069 * tic6x-tdep.c (tic6x_stub_unwind_sniffer): Likewise.
4070
4071 2013-06-24 Joel Brobecker <brobecker@adacore.com>
4072
4073 * common/create-version.sh: Fix expansion of $host_alias
4074 and $target_alias in generation of HOST_NAME and TARGET_NAME
4075 (resp.).
4076
4077 2013-06-24 Tom Tromey <tromey@redhat.com>
4078
4079 * common/create-version.sh: New file.
4080 * Makefile.in (version.c): Use bfd/version.h, common/version.in,
4081 create-version.sh.
4082 (HFILES_NO_SRCDIR): Use common/version.h.
4083 * version.in: Move to ...
4084 * common/version.in: ... here. Replace date with "DATE".
4085 * version.h: Move to ...
4086 * common/version.h: ... here.
4087
4088 2013-06-21 Joel Brobecker <brobecker@adacore.com>
4089
4090 * gdb/gnulib/Makefile.in: Update date in copyright header.
4091 * gdb/gnulib/configure.ac: Ditto.
4092 * gdb/gnulib/update-gnulib.sh: Ditto.
4093
4094 2013-06-21 Joel Brobecker <brobecker@adacore.com>
4095
4096 * copyright.py (EXCLUDE_LIST): Replace "gdb/gnulib" by
4097 "gdb/gnulib/import".
4098
4099 2013-06-21 Will Newton <will.newton@linaro.org>
4100
4101 * doublest.c (ldfrexp): Remove function.
4102 (convert_doublest_to_floatformat): Call frexpl instead of
4103 ldfrexp.
4104
4105 2013-06-21 Will Newton <will.newton@linaro.org>
4106
4107 * gnulib/update-gnulib.sh(IMPORTED_GNULIB_MODULES): Add frexpl.
4108 * gnulib/aclocal.m4: Regenerate.
4109 * gnulib/config.in: Regenerate.
4110 * gnulib/configure: Regenerate.
4111 * gnulib/import/Makefile.am: Update.
4112 * gnulib/import/Makefile.in: Update.
4113 * gnulib/import/m4/gnulib-cache.m4: Update.
4114 * gnulib/import/m4/gnulib-comp.m4: Update.
4115 * gnulib/import/float+.h: Import.
4116 * gnulib/import/float.c: Import.
4117 * gnulib/import/float.in.h: Import.
4118 * gnulib/import/fpucw.h: Import.
4119 * gnulib/import/frexp.c: Import.
4120 * gnulib/import/frexpl.c: Import.
4121 * gnulib/import/isnan.c: Import.
4122 * gnulib/import/isnand-nolibm.h: Import.
4123 * gnulib/import/isnand.c: Import.
4124 * gnulib/import/isnanl-nolibm.h: Import.
4125 * gnulib/import/isnanl.c: Import.
4126 * gnulib/import/itold.c: Import.
4127 * gnulib/import/m4/exponentd.m4: Import.
4128 * gnulib/import/m4/exponentl.m4: Import.
4129 * gnulib/import/m4/float_h.m4: Import.
4130 * gnulib/import/m4/fpieee.m4: Import.
4131 * gnulib/import/m4/frexp.m4: Import.
4132 * gnulib/import/m4/frexpl.m4: Import.
4133 * gnulib/import/m4/isnand.m4: Import.
4134 * gnulib/import/m4/isnanl.m4: Import.
4135 * gnulib/import/m4/math_h.m4: Import.
4136 * gnulib/import/math.c: Import.
4137 * gnulib/import/math.in.h: Import.
4138
4139 2013-06-21 Jan Kratochvil <jan.kratochvil@redhat.com>
4140
4141 * common/linux-btrace.c (cpu_supports_btrace): Remove variable vendor,
4142 replace strcmp with signature_INTEL_ebx, signature_INTEL_ecx and
4143 signature_INTEL_edx comparisons.
4144
4145 2013-06-20 Doug Evans <dje@google.com>
4146
4147 symtab/15652
4148 * dwarf2read.c (try_open_dwop_file): New arg search_cwd.
4149 All callers updated.
4150 (open_dwp_file): If we can't find the dwp file, search the basename
4151 in debug-file-directory.
4152
4153 * dwarf2read.c (struct dwp_file): Fix comment.
4154 (open_and_init_dwp_file): Set dwp_file->name to bfd's file name.
4155
4156 * source.c (openp): Document OPF_TRY_CWD_FIRST+OPF_SEARCH_IN_PATH
4157 better.
4158
4159 2013-06-20 Yao Qi <yao@codesourcery.com>
4160
4161 * breakpoint.c (create_breakpoint): Fix code indentation.
4162
4163 2013-06-20 Yao Qi <yao@codesourcery.com>
4164
4165 * breakpoint.c (create_breakpoints_sal_default): Remove
4166 parameter 'lsal'. Update declaration.
4167 (bkpt_create_breakpoints_sal): Caller update.
4168 (tracepoint_create_breakpoints_sal): Likewise.
4169
4170 2013-06-20 Pedro Alves <pedro@codesourcery.com>
4171 Yao Qi <yao@codesourcery.com>
4172
4173 * NEWS: Mention the new option '--skip-unavailable' of command
4174 -data-list-register-values.
4175 * mi/mi-main.c (mi_cmd_data_list_register_values): Accept the
4176 --skip-unavailable option. Adjust to use output_register.
4177 (output_register): Add new 'skip_unavailable' parameter.
4178 Handle it.
4179
4180 2013-06-19 Mike Frysinger <vapier@gentoo.org>
4181
4182 * Makefile.in (HFILES_NO_SRCDIR): Add common/i386-cpuid.h and
4183 common/i386-gcc-cpuid.h.
4184 * common/i386-cpuid.h: New wrapper header around i386-gcc-cpuid.h.
4185 * common/i386-gcc-cpuid.h: Rename from testsuite/gdb.arch/i386-cpuid.h.
4186 Copy the latest version from upstream gcc.
4187 * common/linux-btrace.c: Include i386-cpuid.h.
4188 (intel_supports_btrace): Delete x86 ifdefs and replace inline asm with
4189 call to i386_cpuid.
4190 (cpu_supports_btrace): Likewise.
4191 * go32-nat.c: Include i386-cpuid.h.
4192 (go32_sysinfo): Add (disabled) calls to i386_cpuid with comments.
4193
4194 2013-06-19 Doug Evans <dje@google.com>
4195
4196 * symfile.c (symfile_bfd_open): Delete unnecessary declaration.
4197 (get_section_index): Ditto.
4198
4199 2013-06-19 Tom Tromey <tromey@redhat.com>
4200
4201 * breakpoint.c (_initialize_breakpoint): Remove trailing \n from
4202 "dprintf" help.
4203
4204 2013-06-18 Doug Evans <dje@google.com>
4205
4206 * dwarf2read.c (dw2_symtab_iter_next): Check value of cu_index
4207 before using it.
4208 (dw2_expand_symtabs_matching): Fix symbol kind validity check.
4209 Move test of cu_index closer to use. Print complaint if cu_index
4210 is bad.
4211
4212 2013-06-18 Joel Brobecker <brobecker@adacore.com>
4213
4214 * machoread.c (oso_vector): Delete this global.
4215 (macho_register_oso): Add new parameter "oso_vector_ptr".
4216 Use it instead of the "oso_vector" global.
4217 (macho_symtab_read, macho_symfile_read_all_oso): Likewise.
4218 (macho_symfile_read): Use a local oso_vector, to be free'ed
4219 at the end of this function, in place of the old "oso_vector"
4220 global. Update various function calls accordingly. Use one
4221 single cleanup chain for the entire function.
4222
4223 2013-06-18 Joel Brobecker <brobecker@adacore.com>
4224
4225 * dwarf2read.c (dwarf2_per_objfile_free): Replace uses of
4226 DWARF2_PER_OBJFILE by uses of DATA instead.
4227
4228 2013-06-18 Tom Tromey <tromey@redhat.com>
4229
4230 * break-catch-sig.c (signal_catchpoint_explains_signal): Add 'sig'
4231 argument.
4232 * breakpoint.c (bpstat_explains_signal): Add 'sig' argument.
4233 Special case signals other than GDB_SIGNAL_TRAP.
4234 (explains_signal_watchpoint): New function.
4235 (base_breakpoint_explains_signal): Add 'sig' argument.
4236 (initialize_breakpoint_ops): Set 'explains_signal' method for
4237 watchpoints.
4238 * breakpoint.h (struct breakpoint_ops) <explains_signal>: Add
4239 signal argument.
4240 (bpstat_explains_signal): Likewise.
4241 * infrun.c (handle_syscall_event, handle_inferior_event): Update.
4242
4243 2013-06-18 Tom Tromey <tromey@redhat.com>
4244
4245 * python/py-inferior.c (gdbpy_selected_inferior): Don't incref.
4246
4247 2013-06-18 Tom Tromey <tromey@redhat.com>
4248
4249 * python/python.c (finish_python_initialization): Decref
4250 'pythondir' on failure path as well.
4251
4252 2013-06-18 Tom Tromey <tromey@redhat.com>
4253
4254 PR symtab/15391:
4255 * dwarf2loc.c (read_pieced_value): Truncate this_size_bits
4256 after taking bits_to_skip into account. Sign extend byte_offset.
4257 * utils.h (gdb_sign_extend): Declare.
4258 * utils.c (gdb_sign_extend): New function.
4259
4260 2013-06-18 Jan Kratochvil <jan.kratochvil@redhat.com>
4261
4262 * dwarf2read.c (write_psymtabs_to_index): Ignore NULL PSYMTAB.
4263
4264 2013-06-17 Pierre Muller <muller@sourceware.org>
4265
4266 * corelow.c (core_open): Print GDB signal name instead of target
4267 signal number.
4268
4269 2013-06-17 Mike Frysinger <vapier@gentoo.org>
4270
4271 * .gitignore: Add /gcore.
4272
4273 2013-06-13 Doug Evans <dje@google.com>
4274
4275 * dwarf2read.c (try_open_dwop_file): Work around behaviour of
4276 OPF_TRY_CWD_FIRST to not search path if the file contains a '/'.
4277
4278 2013-06-12 Phil Muldoon <pmuldoon@redhat.com>
4279
4280 * stack.c (backtrace_command_1): Fix indentation.
4281
4282 2013-06-11 Joel Brobecker <brobecker@adacore.com>
4283
4284 * window-nat.c (thread_rec): Add missing empty line after
4285 local variable declaration.
4286
4287 2013-06-11 Joel Brobecker <brobecker@adacore.com>
4288
4289 * windows-nat.c (thread_rec): Revert format used to print
4290 error code returned by SuspendThread from %d back to %u.
4291
4292 2013-06-11 Joel Brobecker <brobecker@adacore.com>
4293
4294 * windows-nat.c (windows_continue): Add "0x" prefix for thread
4295 ID in debug trace.
4296 (get_windows_debug_event): Likewise, for all debug traces.
4297
4298 2013-06-11 Joel Brobecker <brobecker@adacore.com>
4299
4300 * window-nat.c (thread_rec): Add thread ID in SuspendThread
4301 warning message.
4302
4303 2013-06-08 Pedro Alves <pedro@codesourcery.com>
4304 Yao Qi <yao@codesourcery.com>
4305
4306 * mi/mi-main.c (get_register): Remove declaration.
4307 (output_register): Declare.
4308 (mi_cmd_data_list_register_values): Remove local variable
4309 'tuple_cleanup'. Move some code into output_register.
4310 (get_register): Renamed to ...
4311 (output_register): ... this. Output the register's
4312 "number" ui_out tuple here.
4313
4314 2013-06-07 Pedro Alves <palves@redhat.com>
4315
4316 * darwin-nat.c: Fix formating in copyright header.
4317 * darwin-nat.h: Likewise.
4318 * gnu-nat.c: Likewise.
4319 * machoread.c: Likewise.
4320
4321 2013-06-07 Pedro Alves <palves@redhat.com>
4322
4323 PR server/14823
4324 * regformats/regdat.sh: Output #include tdesc.h. Make globals
4325 static. Output a global target description pointer.
4326 (init_registers_${name}): Adjust to initialize a
4327 target description structure.
4328
4329 2013-06-07 Will Newton <will.newton@linaro.org>
4330
4331 * printcmd.c (build_address_symbolic): Call
4332 gdbarch_addr_bits_remove for text minimal symbols.
4333
4334 2013-06-07 Will Newton <will.newton@linaro.org>
4335
4336 * MAINTAINERS: Add myself to Write After Approval.
4337
4338 2013-06-07 Yao Qi <yao@codesourcery.com>
4339
4340 * tracepoint.c (start_tracing): Move code to ...
4341 (trace_reset_local_state): ... here. New.
4342 (disconnect_tracing): Don't call set_current_traceframe,
4343 set_tracepoint_num, and set_traceframe_context. Call
4344 trace_reset_local_state instead.
4345 (tfile_close): Call trace_reset_local_state.
4346 * ctf.c (ctf_close): Likewise.
4347 * remote.c (remote_close): Likewise.
4348 * tracepoint.h (trace_reset_local_state): Declare.
4349
4350 2013-06-06 Doug Evans <dje@google.com>
4351
4352 * dwarf2read.c: Whitespace fixes for DWP file format documentation,
4353 and fix header docs.
4354
4355 2013-06-05 Doug Evans <dje@google.com>
4356 Keith Seitz <keiths@redhat.com>
4357
4358 PR 15519
4359 * cp-namespace.c (find_symbol_in_baseclass): Call
4360 cp_lookup_symbol_in_namespace instead of cp_lookup_symbol_namespace.
4361 Check result of call to lookup_symbol_static.
4362 Call lookup_static_symbol_aux unconditionally.
4363 Call check_typedef on base types before accessing them.
4364 (cp_lookup_nested_symbol): Fix comment.
4365
4366 2013-06-05 Luis Machado <lgustavo@codesourcery.com>
4367
4368 * gnu-v3-abi.c (gnuv3_skip_trampoline): Handle thunk
4369 minimal symbols pointing to function descriptors.
4370
4371 2013-06-05 Tom Tromey <tromey@redhat.com>
4372
4373 * python/py-utils.c (gdb_pymodule_addobject): Cast away const.
4374
4375 2013-06-04 Sergio Durigan Junior <sergiodj@redhat.com>
4376 Pedro Alves <palves@redhat.com>
4377
4378 * remote.c (remote_wait_as): Restore signal handler before returning
4379 when GDB gets a notification.
4380
4381 2013-06-04 Gary Benson <gbenson@redhat.com>
4382
4383 PR 2328
4384 * breakpoint.h (handle_solib_event): Moved function declaration
4385 to solib.h.
4386 * breakpoint.c (handle_solib_event): Moved function to solib.c.
4387 (bpstat_stop_status): Pass new argument to handle_solib_event.
4388 * solib.h (update_solib_breakpoints): New function declaration.
4389 (handle_solib_event): Moved function declaration from
4390 breakpoint.h.
4391 * solib.c (update_solib_breakpoints): New function.
4392 (handle_solib_event): Moved function from breakpoint.c.
4393 Updated to call solib_ops->handle_event if not NULL.
4394 * solist.h (target_so_ops): New fields "update_breakpoints" and
4395 "handle_event".
4396 * infrun.c (set_stop_on_solib_events): New function.
4397 (_initialize_infrun): Use the above for "set
4398 stop-on-solib-events".
4399 (handle_inferior_event): Pass new argument to handle_solib_event.
4400 * solib-svr4.c (probe.h): New include.
4401 (svr4_free_library_list): New forward declaration.
4402 (probe_action): New enum.
4403 (probe_info): New struct.
4404 (probe_info): New static variable.
4405 (NUM_PROBES): New definition.
4406 (svr4_info): New fields "using_xfer", "probes_table" and
4407 "solib_list".
4408 (free_probes_table): New function.
4409 (free_solib_list): New function.
4410 (svr4_pspace_data_cleanup): Free probes table and solib list.
4411 (svr4_copy_library_list): New function.
4412 (svr4_current_sos_via_xfer_libraries): New parameter "annex".
4413 (svr4_read_so_list): New parameter "prev_lm".
4414 (svr4_current_sos_direct): Renamed from "svr4_current_sos".
4415 (svr4_current_sos): New function.
4416 (probe_and_action): New struct.
4417 (hash_probe_and_action): New function.
4418 (equal_probe_and_action): Likewise.
4419 (register_solib_event_probe): Likewise.
4420 (solib_event_probe_at): Likewise.
4421 (solib_event_probe_action): Likewise.
4422 (solist_update_full): Likewise.
4423 (solist_update_incremental): Likewise.
4424 (disable_probes_interface_cleanup): Likewise.
4425 (svr4_handle_solib_event): Likewise.
4426 (svr4_update_solib_event_breakpoint): Likewise.
4427 (svr4_update_solib_event_breakpoints): Likewise.
4428 (svr4_create_solib_event_breakpoints): Likewise.
4429 (enable_break): Free probes table before creating breakpoints.
4430 Use svr4_create_solib_event_breakpoints to create breakpoints.
4431 (svr4_solib_create_inferior_hook): Free the solib list.
4432 (_initialize_svr4_solib): Initialise
4433 svr4_so_ops.handle_solib_event and svr4_so_ops.update_breakpoints.
4434
4435 2013-06-04 Gary Benson <gbenson@redhat.com>
4436
4437 * target.h (target_ops): New field
4438 "to_augmented_libraries_svr4_read".
4439 (target_augmented_libraries_svr4_read): New macro.
4440 * target.c (update_current_target): Handle
4441 to_augmented_libraries_svr4_read.
4442 * remote.c (remote_state): New field
4443 "augmented_libraries_svr4_read".
4444 (remote_augmented_libraries_svr4_read_feature): New function.
4445 (remote_protocol_features): Add entry for
4446 "augmented-libraries-svr4-read".
4447 (remote_augmented_libraries_svr4_read): New function.
4448 (init_remote_ops): Initialize
4449 remote_ops.to_augmented_libraries_svr4_read.
4450
4451 2013-06-04 Gary Benson <gbenson@redhat.com>
4452
4453 * NEWS: Update.
4454
4455 2013-06-04 Gary Benson <gbenson@redhat.com>
4456
4457 * objfiles.h (inhibit_section_map_updates): New function
4458 declaration.
4459 (resume_section_map_updates): Likewise.
4460 (resume_section_map_updates_cleanup): Likewise.
4461 * objfiles.c (objfile_pspace_info): Removed field
4462 "objfiles_changed_p". New fields "new_objfiles_available",
4463 "section_map_dirty" and "inhibit_updates".
4464 (allocate_objfile): Set new_objfiles_available.
4465 (free_objfile): Set section_map_dirty.
4466 (objfile_relocate1): Likewise.
4467 (in_plt_section): Likewise.
4468 (find_pc_section): Update the conditions under which the
4469 section map will be updated.
4470 (inhibit_section_map_updates): New function.
4471 (resume_section_map_updates): Likewise.
4472 (resume_section_map_updates_cleanup): Likewise.
4473
4474 2013-06-04 Gary Benson <gbenson@redhat.com>
4475
4476 * probe.h (get_probe_argument_count): New declaration.
4477 (evaluate_probe_argument): Likewise.
4478 * probe.c (get_probe_argument_count): New function.
4479 (evaluate_probe_argument): Likewise.
4480 (probe_safe_evaluate_at_pc): Use the above new functions.
4481
4482 2013-06-04 Alan Modra <amodra@gmail.com>
4483
4484 * ppc-tdep.h (ppc_insns_match_pattern): Update prototype.
4485 * rs6000-tdep.c (read_insn): Add frame param, don't assume big-endian.
4486 (ppc_insns_match_pattern): Add frame param. Avoid multiple
4487 target mem reads on optional insns.
4488 * ppc-linux-tdep.c (ppc_skip_trampoline_code): Update
4489 ppc_insns_match_pattern calls.
4490 * ppc64-tdep.c (ppc64_standard_linkage2, ppc64_standard_linkage3):
4491 Add match for power7 thread safety insns, and new order of
4492 std 2,40(1) insn. Correct code shown for _dl_runtime_resolve
4493 invocation in comment, and update rest of comment.
4494 (PPC64_STANDARD_LINKAGE1_LEN, PPC64_STANDARD_LINKAGE2_LEN,
4495 PPC64_STANDARD_LINKAGE3_LEN): Delete.
4496 (ppc64_standard_linkage2_target): Update insn offsets.
4497 (ppc64_skip_trampoline_code): Use a single insn buffer. Match newer
4498 stubs first. Update calls.
4499
4500 2013-06-04 Yao Qi <yao@codesourcery.com>
4501
4502 * solib.c (solib_find): Don't need dir separator if path has
4503 drive spec.
4504
4505 2013-06-03 Joel Brobecker <brobecker@adacore.com>
4506
4507 Revert (indirectly causes a SIGSEGV):
4508 * machoread.c (macho_symfile_read): Assign first cleanup to
4509 'back_to'.
4510
4511 2013-06-03 Yao Qi <yao@codesourcery.com>
4512
4513 * mi/mi-cmd-var.c (mi_no_values, mi_simple_values): Move to
4514 mi-parse.c. Make them static.
4515 (mi_all_values): Likewise.
4516 (mi_parse_values_option): Move to mi-parse.c. Rename it to
4517 mi_parse_print_values. Make it external.
4518 * mi/mi-cmds.h (mi_no_values, mi_simple_values, mi_all_values):
4519 Remove the declarations.
4520 * mi/mi-parse.c (mi_parse_print_values): Moved from mi-cmd-var.c.
4521 * mi/mi-parse.h (mi_parse_print_values): Declare.
4522 * mi/mi-cmd-stack.c: Include mi-parse.h.
4523 (parse_print_values): Remove
4524 (mi_cmd_stack_list_locals): Call mi_parse_print_values instead
4525 of parse_print_values.
4526 (mi_cmd_stack_list_args, mi_cmd_stack_list_variables): Likewise.
4527
4528 2013-05-31 Pedro Alves <pedro@codesourcery.com>
4529 Yao Qi <yao@codesourcery.com>
4530
4531 * tracepoint.c (all_tracepoint_actions_and_cleanup): Declare.
4532 (encode_actions): Move code to ...
4533 (all_tracepoint_actions_and_cleanup): ... here. New.
4534 (trace_dump_command): Likewise.
4535
4536 2013-05-30 Tom Tromey <tromey@redhat.com>
4537
4538 * symmisc.c (maintenance_expand_symtabs): Call do_cleanups.
4539
4540 2013-05-30 Tom Tromey <tromey@redhat.com>
4541
4542 * xml-support.c (gdb_xml_create_parser_and_cleanup): Rename from
4543 gdb_xml_create_parser_and_cleanup_1. Return a cleanup. Remove
4544 'old_chain' argument. Add 'parser_result' argument.
4545 (gdb_xml_create_parser_and_cleanup): Remove old version.
4546 (gdb_xml_parse_quick): Update.
4547 (xml_process_xincludes): Update.
4548 * xml-support.h (gdb_xml_create_parser_and_cleanup): Don't
4549 declare.
4550
4551 2013-05-30 Tom Tromey <tromey@redhat.com>
4552
4553 * probe.c (collect_probes): Check arguments for NULL before
4554 calling compile_rx_or_error.
4555 * utils.c (compile_rx_or_error): Require 'rx' to be non-NULL.
4556 Remove NULL return.
4557
4558 2013-05-30 Tom Tromey <tromey@redhat.com>
4559
4560 * infrun.c (adjust_pc_after_break): Introduce an outer null
4561 cleanup.
4562
4563 2013-05-30 Tom Tromey <tromey@redhat.com>
4564
4565 * mi/mi-cmd-var.c (varobj_update_one): Add an outer null cleanup.
4566
4567 2013-05-30 Tom Tromey <tromey@redhat.com>
4568
4569 * cli/cli-script.c (read_command_lines_1): Use a null cleanup
4570 for 'old_chain'. Do not check 'head' before processing
4571 cleanups.
4572
4573 2013-05-30 Tom Tromey <tromey@redhat.com>
4574
4575 * mi/mi-cmd-stack.c (list_arg_or_local): Remove
4576 "cleanup_tuple".
4577
4578 2013-05-30 Tom Tromey <tromey@redhat.com>
4579
4580 * dbxread.c (dbx_read_symtab): Declare 'back_to' in a more
4581 inner scope. Unconditionally call do_cleanups.
4582
4583 2013-05-30 Tom Tromey <tromey@redhat.com>
4584
4585 * source.c (find_and_open_source): Call do_cleanups.
4586
4587 2013-05-30 Tom Tromey <tromey@redhat.com>
4588
4589 * linux-thread-db.c (thread_db_load_search): Unconditionally
4590 call do_cleanups.
4591
4592 2013-05-30 Tom Tromey <tromey@redhat.com>
4593
4594 * solib-aix.c (solib_aix_bfd_open): Don't use a null cleanup
4595 for 'cleanup'; instead use a later one.
4596
4597 2013-05-30 Tom Tromey <tromey@redhat.com>
4598
4599 * python/py-breakpoint.c (bppy_get_commands): Use
4600 explicit, unconditional return.
4601 * python/py-frame.c (frapy_read_var): Likewise.
4602 * python/python.c (gdbpy_decode_line): Likewise.
4603
4604 2013-05-30 Tom Tromey <tromey@redhat.com>
4605
4606 * cp-namespace.c (cp_lookup_symbol_imports_or_template): Call
4607 do_cleanups on all return paths.
4608
4609 2013-05-30 Tom Tromey <tromey@redhat.com>
4610
4611 * top.c (execute_command): Discard 'cleanup_if_error' cleanups.
4612
4613 2013-05-30 Tom Tromey <tromey@redhat.com>
4614
4615 * stabsread.c (read_struct_type): Call do_cleanups along
4616 all return paths.
4617
4618 2013-05-30 Maciej W. Rozycki <macro@codesourcery.com>
4619
4620 * mips-linux-tdep.c: Adjust formatting throughout.
4621
4622 2013-05-30 Tom Tromey <tromey@redhat.com>
4623
4624 * mipsread.c (read_alphacoff_dynamic_symtab): Call do_cleanups
4625 along all return paths.
4626
4627 2013-05-30 Tom Tromey <tromey@redhat.com>
4628
4629 * symfile.c (find_separate_debug_file): Call do_cleanups
4630 along all return paths.
4631
4632 2013-05-30 Tom Tromey <tromey@redhat.com>
4633
4634 * symtab.c (search_symbols): Introduce a null cleanup for
4635 'retval_chain'.
4636
4637 2013-05-30 Tom Tromey <tromey@redhat.com>
4638
4639 * python/py-value.c (valpy_binop): Call do_cleanups before
4640 exiting loop.
4641
4642 2013-05-30 Tom Tromey <tromey@redhat.com>
4643
4644 * python/py-prettyprint.c (print_children): Remove extra
4645 do_cleanups call.
4646
4647 2013-05-30 Tom Tromey <tromey@redhat.com>
4648
4649 * python/py-frame.c (frapy_read_var): Call do_cleanups along
4650 all return paths.
4651
4652 2013-05-30 Tom Tromey <tromey@redhat.com>
4653
4654 * python/py-breakpoint.c (bppy_get_commands): Call do_cleanups
4655 along all return paths.
4656
4657 2013-05-30 Tom Tromey <tromey@redhat.com>
4658
4659 * cli/cli-logging.c (set_logging_redirect): Unconditionally
4660 call do_cleanups.
4661
4662 2013-05-30 Tom Tromey <tromey@redhat.com>
4663
4664 * varobj.c (c_value_of_root): Call do_cleanups along all
4665 return paths.
4666
4667 2013-05-30 Tom Tromey <tromey@redhat.com>
4668
4669 * tracepoint.c (trace_dump_command): Unconditionally call
4670 do_cleanups.
4671
4672 2013-05-30 Tom Tromey <tromey@redhat.com>
4673
4674 * breakpoint.c (output_thread_groups, parse_cmd_to_aexpr): Call
4675 do_cleanups earlier.
4676
4677 2013-05-30 Tom Tromey <tromey@redhat.com>
4678
4679 * machoread.c (macho_symfile_read): Assign first cleanup to
4680 'back_to'.
4681
4682 2013-05-30 Tom Tromey <tromey@redhat.com>
4683
4684 * m32r-rom.c (m32r_load): Call do_cleanups at all returns.
4685
4686 2013-05-30 Tom Tromey <tromey@redhat.com>
4687
4688 * mi/mi-main.c (list_available_thread_groups): Call do_cleanups.
4689
4690 2013-05-30 Tom Tromey <tromey@redhat.com>
4691
4692 * inf-ptrace.c (inf_ptrace_create_inferior): Unconditionally
4693 call discard_cleanups.
4694 (inf_ptrace_attach): Likewise.
4695
4696 2013-05-30 Tom Tromey <tromey@redhat.com>
4697
4698 * remote-mips.c (mips_exit_debug): Call do_cleanups on all
4699 return paths.
4700 (mips_initialize): Likewise.
4701 (common_open): Call do_cleanups.
4702
4703 2013-05-30 Tom Tromey <tromey@redhat.com>
4704
4705 * utils.c (internal_vproblem): Call do_cleanups.
4706
4707 2013-05-30 Tom Tromey <tromey@redhat.com>
4708
4709 * linespec.c (find_linespec_symbols): Don't reassign to 'cleanup'.
4710
4711 2013-05-30 Tom Tromey <tromey@redhat.com>
4712
4713 * cli/cli-script.c (setup_user_args): Don't return after error.
4714
4715 2013-05-30 Tom Tromey <tromey@redhat.com>
4716
4717 * somread.c (som_symtab_read): Call do_cleanups.
4718
4719 2013-05-30 Tom Tromey <tromey@redhat.com>
4720
4721 * printcmd.c (print_command_1): Unconditionally call do_cleanups.
4722
4723 2013-05-30 Tom Tromey <tromey@redhat.com>
4724
4725 * cli/cli-cmds.c (cd_command, alias_command): Call do_cleanups.
4726 * cli/cli-dump.c (restore_binary_file): Call do_cleanups.
4727 * interps.c (interpreter_exec_cmd): Call do_cleanups.
4728 * source.c (show_substitute_path_command): Call do_cleanups.
4729 (unset_substitute_path_command, set_substitute_path_command):
4730 Likewise.
4731 * symfile.c (load_command): Call do_cleanups.
4732
4733 2013-05-30 Tom Tromey <tromey@redhat.com>
4734
4735 * contrib/cleanup_check.py: New file.
4736 * contrib/gcc-with-excheck: Add option parsing.
4737
4738 2013-05-30 Joel Brobecker <brobecker@adacore.com>
4739
4740 * windows-nat.c (windows_delete_thread): Add missing space
4741 in cast expression.
4742
4743 2013-05-30 Hafiz Abid Qadeer <abidh@codesourcery.com>
4744
4745 * inferior.c (top level): Include tilde.h.
4746 (add_inferior_command): Call tilde_expand on the value of 'exec'
4747 argument.
4748
4749 2013-05-30 Pedro Alves <pedro@codesourcery.com>
4750 Yao Qi <yao@codesourcery.com>
4751
4752 * tracepoint.c (encode_actions_1): Remove parameter 't'.
4753 Caller update.
4754 (encode_actions): Likewise.
4755 * remote.c (remote_download_tracepoint): Caller update.
4756 * tracepoint.h (encode_actions): Update declaration.
4757
4758 2013-05-30 Pedro Alves <palves@redhat.com>
4759
4760 * python/python-internal.h (gdb_Py_DECREF): Cast OP to PyObject
4761 pointer.
4762
4763 2013-05-30 Yao Qi <yao@codesourcery.com>
4764
4765 * remote.c (remote_check_symbols): Remove unused parameter
4766 'objfile'.
4767 Declaration update.
4768 (remote_start_remote, remote_new_objfile): Caller update.
4769
4770 2013-05-30 Yao Qi <yao@codesourcery.com>
4771
4772 * mi/mi-cmds.c (mi_cmds): Define MI command
4773 '-exec-arguments' by macro DEF_MI_CMD_CLI_1 instead of
4774 DEF_MI_CMD_CLI.
4775
4776 2013-05-29 Pedro Alves <palves@redhat.com>
4777
4778 * remote.c (remote_insert_breakpoint, remote_remove_breakpoint)
4779 (remote_insert_watchpoint, remote_remove_watchpoint)
4780 (remote_insert_hw_breakpoint, remote_remove_hw_breakpoint)
4781 (remote_verify_memory, compare_sections_command)
4782 (remote_search_memory): Set the general process/thread on the
4783 remote side.
4784
4785 2013-05-29 Pedro Alves <palves@redhat.com>
4786
4787 * aarch64-tdep.c: Don't include "features/aarch64-without-fpu.c".
4788 (_initialize_aarch64_tdep): Don't call
4789 initialize_tdesc_aarch64_without_fpu.
4790 * features/Makefile (WHICH): Remove reference to
4791 aarch64-without-fpu.
4792 * features/aarch64-without-fpu.c: Delete file.
4793 * regformats/aarch64-without-fpu.dat: Delete file.
4794
4795 2013-05-28 Yao Qi <yao@codesourcery.com>
4796
4797 * tracepoint.c (stringify_collection_list): Remove parameter
4798 'string'.
4799 (encode_actions): Caller update. Remove local variables.
4800
4801 2013-05-24 Yao Qi <yao@codesourcery.com>
4802
4803 * tracepoint.c (TFILE_PID): Remove.
4804 (tfile_open): Don't add thread and inferior.
4805 (tfile_close): Don't set 'inferior_ptid'. Don't call
4806 exit_inferior_silent.
4807 (tfile_thread_alive): Remove.
4808 (init_tfile_ops): Don't set field 'to_thread_alive' of
4809 tfile_ops.
4810
4811 2013-05-23 Doug Evans <dje@google.com>
4812
4813 * contrib/cc-with-tweaks.sh (-p): Handle no dwo files.
4814
4815 2013-05-23 Pedro Alves <palves@redhat.com>
4816
4817 * common/filestuff.c [USE_WIN32API]: Define HAVE_SOCKETS.
4818 [HAVE_SYS_SOCKET_H]: Define HAVE_SOCKETS.
4819 (socket_mark_cloexec, gdb_socketpair_cloexec, gdb_socket_cloexec):
4820 Only define if HAVE_SOCKETS is defined.
4821 * configure.ac: Check for sys/socket.h.
4822 * config.in, configure: Regenerate.
4823
4824 2013-05-23 Pedro Alves <palves@redhat.com>
4825
4826 * dwarf2read.c (create_dwp_hash_table, create_dwo_in_dwp)
4827 (open_and_init_dwp_file): Use %s/pulongest instead of %u for
4828 printing uint32_t variables.
4829
4830 2013-05-23 Pedro Alves <palves@redhat.com>
4831
4832 * NEWS: Mention GDBserver range stepping support.
4833
4834 2013-05-23 Yao Qi <yao@codesourcery.com>
4835 Pedro Alves <palves@redhat.com>
4836
4837 * gdbthread.h (struct thread_control_state) <may_range_step>: New
4838 field.
4839 * infcmd.c (step_once, until_next_command): Enable range stepping.
4840 * infrun.c (displaced_step_prepare): Disable range stepping.
4841 (resume): Disable range stepping if stepping over a breakpoint or
4842 we have software watchpoints. If range stepping is enabled,
4843 assert the thread is in the stepping range.
4844 (clear_proceed_status_thread): Clear may_range_step.
4845 (handle_inferior_event): Disable range stepping as soon as we know
4846 the thread that hit the event. Re-enable it whenever we're going
4847 to step with a step range.
4848 * remote.c (struct vCont_action_support) <r>: New field.
4849 (use_range_stepping): New global.
4850 (remote_vcont_probe): Handle 'r' action.
4851 (append_resumption): Append an 'r' action if the thread may range
4852 step.
4853 (show_range_stepping): New function.
4854 (set_range_stepping): New function.
4855 (_initialize_remote): Call add_setshow_boolean_cmd to register the
4856 'set range-stepping' and 'show range-stepping' commands.
4857 * NEWS: Mention range stepping, the new vCont;r action, and the
4858 new "set/show range-stepping" commands.
4859
4860 2013-05-23 Yao Qi <yao@codesourcery.com>
4861 Pedro Alves <palves@redhat.com>
4862
4863 * remote.c (struct vCont_action_support): New struct.
4864 (struct remote_state) <support_vCont_t>: Remove field.
4865 <vCont_actions_support>: New field.
4866 (remote_vcont_probe, remote_stop_ns): Update.
4867
4868 2013-05-23 Yao Qi <yao@codesourcery.com>
4869 Pedro Alves <palves@redhat.com>
4870
4871 * gdbthread.h (pc_in_thread_step_range): New declaration.
4872 * thread.c (pc_in_thread_step_range): New function.
4873 * infrun.c (handle_inferior_event): Use it.
4874
4875 2013-05-23 Joel Brobecker <brobecker@adacore.com>
4876
4877 * mi/mi-cmd-break.c (mi_argv_to_format): Use xsnprintf instead
4878 of sprintf.
4879
4880 2013-05-22 Keith Seitz <keiths@redhat.com>
4881
4882 * ada-lang.c (is_known_support_routine): Add explicit free of
4883 'func_name' from find_frame_funname.
4884 (ada_unhandled_exception_name_addr_from_raise): Add cleanups
4885 for func_name from find_frame_funname.
4886 * python/py-frame.c (frapy_name): Add explicit free of
4887 'name' from find_frame_funname.
4888 * stack.c (find_frame_funname): Add comment explaining that
4889 funcp must be freed by the caller.
4890 Return copy of symbol names instead of pointers.
4891 (print_frame): Add a cleanup for 'funname' from
4892 find_frame_funname.
4893 * stack.h (find_frame_funname): Remove "const" from
4894 'funname' parameter.
4895
4896 2013-05-22 Tom Tromey <tromey@redhat.com>
4897
4898 PR c++/15401:
4899 * c-valprint.c (c_value_print): Use value_addr for
4900 references. Convert back to reference type with value_ref.
4901
4902 2013-05-22 Eli Zaretskii <eliz@gnu.org>
4903
4904 * windows-nat.c (handle_unload_dll): Don't call solib_add for the
4905 unloaded DLL, it will be done by handle_solib_event. See
4906 http://sourceware.org/ml/gdb-patches/2013-05/msg00713.html for the
4907 details.
4908
4909 2013-05-22 Phil Muldoon <pmuldoon@redhat.com>
4910
4911 * ui-out.c: Create typedef ui_out_level_p and define vector
4912 operations for that type.
4913 (struct ui_out): Use a vector instead of an array.
4914 (current_level): Return level from a vector.
4915 (push_level): Create a level in a vector.
4916 (pop_level): Delete a level in a vector.
4917 (ui_out_new): Create initial level zero level, and store in a
4918 vector.
4919 (ui_out_destroy): Add vector cleanup.
4920
4921 2013-05-22 Pedro Alves <palves@redhat.com>
4922
4923 * python/python-internal.h (gdb_Py_DECREF): Tag with
4924 "ARI: editCase function".
4925
4926 2013-05-21 Paul Pluzhnikov <ppluzhnikov@google.com>
4927
4928 * solib-svr4.c (svr4_free_so): Protect against NULL dereference.
4929
4930 2013-05-21 Pedro Alves <palves@redhat.com>
4931
4932 * python/py-prettyprint.c (apply_val_pretty_printer): Check
4933 whether PRINTER is NULL before installing a Py_DECREF cleanup.
4934 * python/py-utils.c (py_decref): Don't check for NULL before
4935 calling Py_DECREF.
4936
4937 2013-05-21 Pedro Alves <palves@redhat.com>
4938
4939 * python/py-utils.c (py_decref): Remove extra braces.
4940 (gdb_pymodule_addobject): Remove extra braces.
4941 * python-internal.h (gdb_Py_DECREF): New static inline function.
4942 (Py_DECREF): Redefine as calling gdb_Py_DECREF.
4943
4944 2013-05-21 Philippe Waroquiers <philippe.waroquiers@skynet.be>
4945
4946 * breakpoints.c (detach_breakpoints): Do not
4947 detach breakpoints locations with loc_type bp_loc_other.
4948
4949 2013-05-21 Jan Kratochvil <jan.kratochvil@redhat.com>
4950
4951 Workaround Python 2.6.
4952 * python/py-utils.c (gdb_pymodule_addobject): Wrap Py_DECREF into
4953 a block.
4954
4955 2013-05-21 Jan Kratochvil <jan.kratochvil@redhat.com>
4956
4957 Code cleanup: constification.
4958 * solib.c (solib_ops): Make return type and ops variable type const.
4959 (set_solib_ops): Make the new_ops parameter and ops variable const.
4960 (solib_find, solib_map_sections, clear_so, free_so, update_solib_list)
4961 (solib_add, solib_keep_data_in_core, clear_solib)
4962 (solib_create_inferior_hook, in_solib_dynsym_resolve_code)
4963 (reload_shared_libraries, solib_global_lookup): Make the ops variable
4964 const.
4965 * solib.h (set_solib_ops): Make the new_ops parameter const.
4966
4967 2013-05-21 Joel Brobecker <brobecker@adacore.com>
4968
4969 * data-directory/Makefile.in (SYSTEM_GDBINIT_SRCDIR): New
4970 variable.
4971 (VPATH): Add SYSTEM_GDBINIT_SRCDIR.
4972 (SYSTEM_GDBINIT_DIR, SYSTEM_GDBINIT_INSTALL_DIR)
4973 (SYSTEM_GDBINIT_FILES): New variables.
4974 (all): Add stamp-system-gdbinit.
4975 (stamp-system-gdbinit): New rule.
4976 (clean-system-gdbinit, install-system-gdbinit)
4977 (uninstall-system-gdbinit): New rules. Make them .PHONY.
4978 (install-only): Add dependency on install-system-gdbinit.
4979 (uninstall): Add dependency on uninstall-system-gdbinit.
4980 (clean): Add dependency on clean-system-gdbinit.
4981 * system-gdbinit/elinos.py: New file.
4982 * system-gdbinit/wrs-linux.py: New file.
4983
4984 2013-05-21 Joel Brobecker <brobecker@adacore.com>
4985
4986 * ada-lang.c (old_renaming_is_invisible): Fix cleanup leak.
4987
4988 2013-05-21 Hui Zhu <hui@codesourcery.com>
4989
4990 * breakpoint.c (dprintf_breakpoint_ops): Remove its static.
4991 * breakpoint.h (dprintf_breakpoint_ops): Add extern.
4992 * mi/mi-cmd-break.c (ctype.h): New include.
4993 (gdb_obstack.h): New include.
4994 (mi_argv_to_format, mi_cmd_break_insert_1): New.
4995 (mi_cmd_break_insert): Call mi_cmd_break_insert_1.
4996 (mi_cmd_dprintf_insert): New.
4997 * mi/mi-cmds.c (mi_cmds): Add "dprintf-insert".
4998 * mi/mi-cmds.h (mi_cmd_dprintf_insert): New extern.
4999
5000 2013-05-20 Tom Tromey <tromey@redhat.com>
5001
5002 * python/py-prettyprint.c (search_pp_list): Decref 'attr'.
5003
5004 2013-05-20 Tom Tromey <tromey@redhat.com>
5005
5006 * python/py-value.c (valpy_get_dynamic_type): Simplify
5007 dynamic_type assignment. Use Py_XINCREF.
5008
5009 2013-05-20 Tom Tromey <tromey@redhat.com>
5010
5011 * python/py-type.c (typy_fields): Unconditionally decref 'r'.
5012
5013 2013-05-20 Tom Tromey <tromey@redhat.com>
5014
5015 * python/py-frame.c (frapy_older, frapy_newer, gdbpy_newest_frame)
5016 (gdbpy_selected_frame): Move object-construction code
5017 out of TRY_CATCH.
5018
5019 2013-05-20 Tom Tromey <tromey@redhat.com>
5020
5021 * python/py-arch.c (gdbpy_initialize_arch): Use
5022 gdb_pymodule_addobject.
5023 * python/py-block.c (gdbpy_initialize_blocks): Use
5024 gdb_pymodule_addobject.
5025 * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Use
5026 gdb_pymodule_addobject.
5027 * python/py-cmd.c (gdbpy_initialize_breakpoints): Use
5028 gdb_pymodule_addobject.
5029 * python/py-event.c (gdbpy_initialize_event_generic): Use
5030 gdb_pymodule_addobject.
5031 * python/py-evtregistry.c (gdbpy_initialize_eventregistry): Use
5032 gdb_pymodule_addobject.
5033 * python/py-evts.c (add_new_registry): Use
5034 gdb_pymodule_addobject.
5035 (gdbpy_initialize_py_events): Likewise.
5036 * python/py-finishbreakpoint.c
5037 (gdbpy_initialize_finishbreakpoints): Use
5038 gdb_pymodule_addobject.
5039 * python/py-frame.c (gdbpy_initialize_frames): Use
5040 gdb_pymodule_addobject.
5041 * python/py-function.c (gdbpy_initialize_functions): Use
5042 gdb_pymodule_addobject.
5043 * python/py-inferior.c (gdbpy_initialize_inferior): Use
5044 gdb_pymodule_addobject.
5045 * python/py-infthread.c (gdbpy_initialize_thread): Use
5046 gdb_pymodule_addobject.
5047 * python/py-objfile.c (gdbpy_initialize_objfile): Use
5048 gdb_pymodule_addobject.
5049 * python/py-param.c (gdbpy_initialize_parameters): Use
5050 gdb_pymodule_addobject.
5051 * python/py-progspace.c (gdbpy_initialize_pspace): Use
5052 gdb_pymodule_addobject.
5053 * python/py-symbol.c (gdbpy_initialize_symbols): Use
5054 gdb_pymodule_addobject.
5055 * python/py-symtab.c (gdbpy_initialize_symtabs): Use
5056 gdb_pymodule_addobject.
5057 * python/py-type.c (gdbpy_initialize_types): Use
5058 gdb_pymodule_addobject.
5059 * python/py-utils.c (gdb_pymodule_addobject): New function.
5060 * python/py-value.c (gdbpy_initialize_values): Use
5061 gdb_pymodule_addobject.
5062 * python/python-internal.h (gdb_pymodule_addobject): Declare.
5063 * python/python.c (_initialize_python): Use
5064 gdb_pymodule_addobject.
5065
5066 2013-05-20 Tom Tromey <tromey@redhat.com>
5067
5068 * python/py-cmd.c (cmdpy_completer): Use explicit decref.
5069 * python/py-param.c (get_set_value, get_show_value): Use
5070 explicit decrefs.
5071 * python/python.c (start_type_printers, apply_type_printers):
5072 Use explicit decrefs.
5073
5074 2013-05-20 Tom Tromey <tromey@redhat.com>
5075
5076 * python/py-evts.c (gdbpy_initialize_py_events): Don't
5077 incref the module.
5078
5079 2013-05-20 Tom Tromey <tromey@redhat.com>
5080
5081 * python/python.c (gdbpy_run_events): Decref the result
5082 of PyObject_CallObject.
5083
5084 2013-05-20 Tom Tromey <tromey@redhat.com>
5085
5086 * python/py-symtab.c (set_sal): Use
5087 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION. Return -1 on error.
5088 (symtab_and_line_to_sal_object): Update.
5089
5090 2013-05-20 Tom Tromey <tromey@redhat.com>
5091
5092 * python/py-param.c (compute_enum_values): Decref 'item'.
5093
5094 2013-05-20 Tom Tromey <tromey@redhat.com>
5095
5096 * mi/mi-main.c: Include python-internal.h.
5097 (mi_cmd_list_features): Check gdb_python_initialized.
5098 * python/py-inferior.c (python_on_normal_stop, python_on_resume)
5099 (python_inferior_exit, python_new_objfile, add_thread_object)
5100 (delete_thread_object, py_free_inferior): Check
5101 gdb_python_initialized.
5102 * python/py-prettyprint.c (apply_val_pretty_printer): Check
5103 gdb_python_initialized.
5104 * python/py-type.c (save_objfile_types): Check
5105 gdb_python_initialized.
5106 * python/python-internal.h (gdb_python_initialized): Declare.
5107 * python/python.c (ensure_python_env): Throw exception if
5108 Python not initialized.
5109 (before_prompt_hook, source_python_script_for_objfile)
5110 (start_type_printers, apply_type_printers,
5111 free_type_printers): Check gdb_python_initialized.
5112 * varobj.c (varobj_get_display_hint)
5113 (dynamic_varobj_has_child_method, update_dynamic_varobj_children)
5114 (install_new_value_visualizer, varobj_set_visualizer)
5115 (value_get_print_value): Check gdb_python_initialized.
5116
5117 2013-05-20 Tom Tromey <tromey@redhat.com>
5118
5119 * python/py-arch.c (gdbpy_initialize_arch): Return 'int'.
5120 Check errors.
5121 * python/py-auto-load.c (gdbpy_initialize_auto_load): Return 'int'.
5122 * python/py-block.c (gdbpy_initialize_blocks): Return 'int'.
5123 Check errors.
5124 * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Return 'int'.
5125 Check errors.
5126 * python/py-cmd.c (gdbpy_initialize_commands): Return 'int'.
5127 Check errors.
5128 * python/py-event.c (gdbpy_initialize_event): Return 'int'.
5129 Check errors.
5130 * python/py-event.h (GDBPY_NEW_EVENT_TYPE): Change generated
5131 init function to return 'int'.
5132 * python/py-evtregistry.c (gdbpy_initialize_eventregistry):
5133 Return 'int'. Check errors.
5134 * python/py-evts.c (gdbpy_initialize_py_events): Return 'int'.
5135 Check errors.
5136 * python/py-finishbreakpoint.c (gdbpy_initialize_finishbreakpoints):
5137 Return 'int'. Check errors.
5138 * python/py-frame.c (gdbpy_initialize_frames): Return 'int'.
5139 Check errors.
5140 * python/py-function.c (gdbpy_initialize_functions): Return 'int'.
5141 Check errors.
5142 * python/py-gdb-readline.c (gdbpy_initialize_gdb_readline):
5143 Check errors.
5144 * python/py-inferior.c (gdbpy_initialize_inferior): Return 'int'.
5145 Check errors.
5146 * python/py-infthread.c (gdbpy_initialize_thread): Return 'int'.
5147 Check errors.
5148 * python/py-lazy-string.c (gdbpy_initialize_lazy_string): Return 'int'.
5149 Check errors.
5150 * python/py-objfile.c (gdbpy_initialize_objfile): Return 'int'.
5151 Check errors.
5152 * python/py-param.c (gdbpy_initialize_parameters): Return 'int'.
5153 Check errors.
5154 * python/py-progspace.c (gdbpy_initialize_pspace): Return 'int'.
5155 Check errors.
5156 * python/py-symbol.c (gdbpy_initialize_symbols): Return 'int'.
5157 Check errors.
5158 * python/py-symtab.c (gdbpy_initialize_symtabs): Return 'int'.
5159 Check errors.
5160 * python/py-type.c (gdbpy_initialize_types): Return 'int'.
5161 Check errors.
5162 * python/py-value.c (gdbpy_initialize_values): Return 'int'.
5163 Check errors.
5164 * python/python-internal.h (gdbpy_initialize_auto_load,
5165 gdbpy_initialize_values, gdbpy_initialize_frames,
5166 gdbpy_initialize_symtabs, gdbpy_initialize_commands,
5167 gdbpy_initialize_symbols, gdbpy_initialize_symtabs,
5168 gdbpy_initialize_blocks, gdbpy_initialize_types,
5169 gdbpy_initialize_functions, gdbpy_initialize_pspace,
5170 gdbpy_initialize_objfile, gdbpy_initialize_breakpoints,
5171 gdbpy_initialize_finishbreakpoints,
5172 gdbpy_initialize_lazy_string, gdbpy_initialize_parameters,
5173 gdbpy_initialize_thread, gdbpy_initialize_inferior,
5174 gdbpy_initialize_eventregistry, gdbpy_initialize_event,
5175 gdbpy_initialize_py_events, gdbpy_initialize_stop_event,
5176 gdbpy_initialize_signal_event,
5177 gdbpy_initialize_breakpoint_event,
5178 gdbpy_initialize_continue_event,
5179 gdbpy_initialize_exited_event, gdbpy_initialize_thread_event,
5180 gdbpy_initialize_new_objfile_event, gdbpy_initialize_arch):
5181 Update. Use CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
5182 * python/python.c (gdb_python_initialized): New global.
5183 (gdbpy_initialize_events): Return 'int'. Check errors.
5184 (_initialize_python): Check errors. Set
5185 gdb_python_initialized.
5186
5187 2013-05-20 Tom Tromey <tromey@redhat.com>
5188
5189 * python/py-finishbreakpoint.c (bpfinishpy_out_of_scope):
5190 Decref the reslut of PyObject_CallMethod.
5191
5192 2013-05-20 Tom Tromey <tromey@redhat.com>
5193
5194 * python/py-event.c (gdbpy_initialize_event_generic): Return
5195 early if PyType_Ready fails.
5196
5197 2013-05-20 Tom Tromey <tromey@redhat.com>
5198
5199 * python/py-type.c (make_fielditem): Add gdb_assert_not_reached
5200 as 'default' in the switch.
5201
5202 2013-05-20 Tom Tromey <tromey@redhat.com>
5203
5204 * python/py-inferior.c (gdbpy_inferiors): Update. Hoist
5205 get_addr_from_python calls out of TRY_CATCH.
5206 (infpy_write_memory, infpy_search_memory): Likewise.
5207 * python/py-utils.c (get_addr_from_python): Return negative
5208 value on error. Use TRY_CATCH.
5209 * python/python-internal.h (get_addr_from_python): Use
5210 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
5211
5212 2013-05-20 Tom Tromey <tromey@redhat.com>
5213
5214 * python/py-event.c (evpy_emit_event): Decref the
5215 result of PyObject_CallFunctionObjArgs.
5216
5217 2013-05-20 Tom Tromey <tromey@redhat.com>
5218
5219 * python/py-cmd.c (cmdpy_completer): Use iterator protocol.
5220 Correctly decref.
5221
5222 2013-05-20 Tom Tromey <tromey@redhat.com>
5223
5224 * python/py-cmd.c (cmdpy_init): Decref 'ds_obj'.
5225
5226 2013-05-20 Tom Tromey <tromey@redhat.com>
5227
5228 * python/py-event.h (gdbpy_initialize_event_generic): Use
5229 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
5230 * python/py-evts.c (add_new_registry): Use
5231 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
5232 * python/python-internal.h
5233 (CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION): New macro.
5234
5235 2013-05-20 Tom Tromey <tromey@redhat.com>
5236
5237 * python/py-arch.c (archpy_disassemble): Update.
5238 * python/py-type.c (typy_get_composite, typy_lookup_typename)
5239 (typy_lookup_type): Use GDB_PY_HANDLE_EXCEPTION.
5240 * python/py-utils.c (gdbpy_convert_exception): Return 'void'.
5241 * python/python-internal.h (CPYCHECKER_SETS_EXCEPTION): New
5242 macro.
5243 (GDB_PY_HANDLE_EXCEPTION): Update.
5244 (gdbpy_convert_exception): Update. Use CPYCHECKER_SETS_EXCEPTION.
5245
5246 2013-05-20 Tom Tromey <tromey@redhat.com>
5247
5248 * python/python-internal.h (events_object_type): Remove.
5249
5250 2013-05-20 Tom Tromey <tromey@redhat.com>
5251
5252 * python/py-event.h (evpy_emit_event): Use
5253 CPYCHECKER_STEALS_REFERENCE_TO_ARG.
5254 * python/python-internal.h (CPYCHECKER_STEALS_REFERENCE_TO_ARG):
5255 New macro.
5256
5257 2013-05-20 Tom Tromey <tromey@redhat.com>
5258
5259 * py-evtregistry.c (create_event_object): Decref
5260 eventregistry_object if PyList_New fails.
5261
5262 2013-05-20 Tom Tromey <tromey@redhat.com>
5263
5264 * py-cmd.c (gdbpy_string_to_argv): Check result of
5265 PyList_New.
5266
5267 2013-05-20 Tom Tromey <tromey@redhat.com>
5268
5269 * python/python.c (before_prompt_hook): Add cleanup to
5270 decref 'hook'.
5271
5272 2013-05-20 Tom Tromey <tromey@redhat.com>
5273
5274 * python/py-function.c (fnpy_init): Decref result of
5275 PyObject_GetAttrString.
5276
5277 2013-05-20 Tom Tromey <tromey@redhat.com>
5278
5279 * python/py-threadevent.c (get_event_thread): Use
5280 CPYCHECKER_RETURNS_BORROWED_REF.
5281 * python/python-internal.h (CPYCHECKER_RETURNS_BORROWED_REF):
5282 New define.
5283 (pspace_to_pspace_object, objfile_to_objfile_object)
5284 (find_thread_object): Use it.
5285
5286 2013-05-20 Tom Tromey <tromey@redhat.com>
5287
5288 * python/py-arch.c (arch_object_type): Use
5289 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5290 * python/py-block.c (block_syms_iterator_object_type):
5291 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5292 * python/py-bpevent.c (breakpoint_event_object_type):
5293 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5294 * python/py-cmd.c (cmdpy_object_type): Use
5295 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5296 * python/py-continueevent.c (continue_event_object_type):
5297 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5298 * python/py-event.h (GDBPY_NEW_EVENT_TYPE):
5299 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5300 * python/py-events.h (thread_event_object_type):
5301 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5302 * python/py-evtregistry.c (eventregistry_object_type): Use
5303 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5304 * python/py-exitedevent.c (exited_event_object_type):
5305 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5306 * python/py-finishbreakpoint.c (finish_breakpoint_object_type):
5307 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5308 * python/py-function.c (fnpy_object_type): Use
5309 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5310 * python/py-inferior.c (inferior_object_type, membuf_object_type):
5311 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5312 * python/py-infthread.c (thread_object_type): Use
5313 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5314 * python/py-lazy-string.c (lazy_string_object_type):
5315 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5316 * python/py-newobjfileevent.c (new_objfile_event_object_type):
5317 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5318 * python/py-objfile.c (objfile_object_type): Use
5319 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5320 * python/py-param.c (parmpy_object_type):
5321 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5322 * python/py-progspace.c (pspace_object_type):
5323 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5324 * python/py-signalevent.c (signal_event_object_type):
5325 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5326 * python/py-symtab.c (symtab_object_type, sal_object_type): Use
5327 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5328 * python/py-type.c (type_object_type, field_object_type)
5329 (type_iterator_object_type): Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5330 * python/py-internal.h (CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF): New
5331 define.
5332 (value_object_type, block_object_type, symbol_object_type)
5333 (event_object_type, stop_event_object_type, breakpoint_object_type)
5334 (frame_object_type): Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
5335
5336 2013-05-20 Andreas Tobler <andreas@fgznet.ch>
5337
5338 * Makefile.in (ALL_TARGET_OBS): Add ppcfbsd-tdep.o.
5339 (ALLDEPFILES): Add ppcfbsd-nat.c and ppcfbsd-tdep.c.
5340
5341 2013-05-20 Doug Evans <dje@google.com>
5342
5343 When reading CU, stay in DWO. Be more tolerent of bad debug info.
5344 For Fission.
5345 * dwarf2read.c (struct dwarf2_per_cu_data): New member
5346 reading_dwo_directly.
5347 (struct signatured_type): New member dwo_unit.
5348 (struct die_reader_specs): New member comp_dir.
5349 (create_signatured_type_table_from_index): Use malloc for
5350 all_type_units instead of objfile's obstack.
5351 (create_all_type_units): Ditto.
5352 (fill_in_sig_entry_from_dwo_entry): New function.
5353 (add_type_unit): New function.
5354 (lookup_dwo_signatured_type): New function.
5355 (lookup_dwp_signatured_type): New function.
5356 (lookup_signatured_type): New arg cu. All callers updated.
5357 (init_cu_die_reader): Initialize comp_dir.
5358 (read_cutu_die_from_dwo): New arg stub_comp_dir. All callers updated.
5359 Change assert of matching type signatures to call error on mismatch.
5360 (lookup_dwo_unit): Add assert.
5361 (init_tu_and_read_dwo_dies): New function.
5362 (init_cutu_and_read_dies): Call it.
5363 (build_type_unit_groups): Handle case of no type unit groups created.
5364 (hash_dwo_file, eq_dwo_file): Handle missing comp_dir.
5365 (lookup_dwo_cutu): Tweak complaint.
5366 (dwarf2_free_abbrev_table): Check for NULL abbrev_table.
5367 (dwarf2_per_objfile_free): Free all_type_units.
5368
5369 2013-05-20 Joel Brobecker <brobecker@adacore.com>
5370
5371 * windows-nat.c (handle_unload_dll): Add missing empty line.
5372
5373 2013-05-20 Joel Brobecker <brobecker@adacore.com>
5374
5375 * dwarf2read.c (prototyped_function_p): New function.
5376 (read_subroutine_type): Use it.
5377
5378 2013-05-20 Joel Brobecker <brobecker@adacore.com>
5379
5380 * rs6000-aix-tdep.c: De-indent some example code provided
5381 as a comment.
5382
5383 2013-05-17 Edjunior Machado <emachado@linux.vnet.ibm.com>
5384
5385 * ppc-linux-nat.c (ppc_linux_region_ok_for_hw_watchpoint): Check if the
5386 region is ok for a hardware watchpoint using the new ptrace interface
5387 on Power servers.
5388
5389 2013-05-17 Doug Evans <dje@google.com>
5390
5391 * NEWS: Mention new maintenance commands check-symtabs, and
5392 expand-symtabs, and renamed check-psymtabs.
5393 * psymtab.c (maintenance_check_psymtabs): Renamed from
5394 maintenance_check_symtabs. Only process already-expanded symbol
5395 tables.
5396 (_initialize_psymtab): Update.
5397 * symmisc.c (maintenance_check_symtabs): New function.
5398 (maintenance_expand_name_matcher): New function
5399 (maintenance_expand_file_matcher): New function
5400 (maintenance_expand_symtabs): New function.
5401 (_initialize_symmisc): Add "mt check-symtabs" and "mt expand-symtabs"
5402 commands.
5403
5404 2013-05-17 Tom Tromey <tromey@redhat.com>
5405
5406 * python/py-inferior.c (infpy_read_memory): Don't call
5407 PyErr_SetString if PyObject_New fails.
5408 * python/py-frame.c (frame_info_to_frame_object): Don't call
5409 PyErr_SetString if PyObject_New fails.
5410
5411 2013-05-17 Pavel Chupin <pavel.v.chupin@intel.com>
5412
5413 * acinclude.m4: Add check for dlopen in libdl.
5414 * configure.ac: Ditto.
5415 * configure: Regenerate.
5416
5417 2013-05-17 Phil Muldoon <pmuldoon@redhat.com>
5418
5419 * frame.c (frame_stash): Convert to htab.
5420 (frame_addr_hash): New function.
5421 (frame_addr_hash_eq): New function.
5422 (frame_stash_create): Convert function to create
5423 a hash table.
5424 (frame_stash_add): Convert function to add an entry to a hash
5425 table.
5426 (frame_stash_find): Convert function to search the hash table.
5427 (frame_stash_invalidate): Convert function to empty the hash
5428 table.
5429 (get_frame_id): Only add to stash if a frame_id is created.
5430 (_initialize_frame): Call frame_stash_create.
5431
5432 2013-05-16 Yue Lu <hacklu.newborn@gmail.com> (tiny change)
5433
5434 * configure.ac: Ensure MIG is available when building for GNU Hurd
5435 hosts.
5436 * configure: Regenerate.
5437
5438 2013-05-16 Joel Brobecker <brobecker@adacore.com>
5439
5440 * dwarf2read.c (set_cu_language): Add DW_LANG_UPC handling.
5441
5442 2013-05-16 Joel Brobecker <brobecker@adacore.com>
5443
5444 * ada-lang.c (ada_make_symbol_completion_list): Make sure
5445 all cleanups are done before returning from this function.
5446
5447 2013-05-15 Joel Brobecker <brobecker@adacore.com>
5448
5449 * utils.h: #include "exceptions.h".
5450 (enum errors): Remove partial declaration.
5451
5452 2013-05-15 Joel Brobecker <brobecker@adacore.com>
5453
5454 * gdbarch.sh (core_xfer_shared_libraries_aix): New method.
5455 * gdbarch.h, gdbarch.c: Regenerate.
5456 * corelow.c (core_xfer_partial): Add TARGET_OBJECT_LIBRARIES_AIX
5457 handling.
5458
5459 * rs6000-aix-tdep.h: New file.
5460 * Makefile.in (HFILES_NO_SRCDIR): Add rs6000-aix-tdep.h.
5461 * rs6000-aix-tdep.c: Include "rs6000-aix-tdep.h" and
5462 "xml-utils.h".
5463 (struct field_info, struct ld_info_desc): New types.
5464 (ld_info32_desc, ld_info64_desc): New static constants.
5465 (struct ld_info): New type.
5466 (rs6000_aix_extract_ld_info): New function.
5467 (rs6000_aix_shared_library_to_xml): Likewise.
5468 (rs6000_aix_ld_info_to_xml): Likewise.
5469 (rs6000_aix_core_xfer_shared_libraries_aix): Likewise.
5470 (rs6000_aix_init_osabi): Add call to
5471 set_gdbarch_core_xfer_shared_libraries_aix.
5472 * rs6000-nat.c: Add "rs6000-aix-tdep.h" include.
5473 Remove "xml-utils.h" include.
5474 (LdInfo): Delete typedef.
5475 (ARCH64_DECL, LDI_FIELD, LDI_NEXT, LDI_FD, LDI_FILENAME):
5476 Delete macros.
5477 (rs6000_ptrace_ldinfo): Change return type to gdb_byte *.
5478 Adjust code accordingly.
5479 (rs6000_core_ldinfo): Delete, folded into
5480 rs6000_aix_core_xfer_shared_libraries_aix.
5481 (rs6000_xfer_shared_library): Delete.
5482 (rs6000_xfer_shared_libraries): Reimplement.
5483
5484 2013-05-15 Markus Metzger <markus.t.metzger@intel.com>
5485
5486 * record.c (record_goto_cmdlist): New.
5487 (cmd_record_goto): Split into this ...
5488 (cmd_record_goto_begin): ... this
5489 (cmd_record_goto_end): ... and this.
5490 (_initialize_record): Change "record goto" to prefix command.
5491 Add commands for "record goto begin" and "record goto end".
5492 Add an alias for "record goto start" to "record goto begin".
5493
5494 2013-05-14 Jan Kratochvil <jan.kratochvil@redhat.com>
5495
5496 * linespec.c (convert_linespec_to_sals): New comment for
5497 SOURCE_FILENAME assignment.
5498
5499 2013-05-14 Jan Kratochvil <jan.kratochvil@redhat.com>
5500
5501 * cleanups.c (restore_my_cleanups): Replace gdb_assert by
5502 internal_warning.
5503
5504 2013-05-14 Tom Tromey <tromey@redhat.com>
5505
5506 * eval.c (parse_and_eval_long): Make 'exp' const.
5507 * value.h (parse_and_eval_long): Update.
5508
5509 2013-05-14 Tom Tromey <tromey@redhat.com>
5510
5511 * ui-file.c (gdb_fopen): Make arguments const.
5512 * ui-file.h (gdb_fopen): Make arguments const.
5513
5514 2013-05-14 Tom Tromey <tromey@redhat.com>
5515
5516 * remote.c (remote_set_trace_notes): Make arguments const.
5517 * target.c (update_current_target): Update cast.
5518 * target.h (to_set_trace_notes): Make arguments const.
5519
5520 2013-05-14 Tom Tromey <tromey@redhat.com>
5521
5522 * go32-nat.c (go32_terminal_info): Make 'args' const.
5523 * inferior.h (child_terminal_info): Update.
5524 * inflow.c (child_terminal_info): Make 'args' const.
5525 * target.c (default_terminal_info): Make 'args' const.
5526 (debug_to_terminal_save_ours): Likewise.
5527 * target.h (struct target_ops) <to_terminal_info>: Make argument
5528 const.
5529
5530 2013-05-13 Tom Tromey <tromey@redhat.com>
5531
5532 * gcore.c (create_gcore_bfd): Make 'filename' const.
5533 * gcore.h (create_gcore_bfd): Make 'filename' const.
5534 * record-full.c (record_full_save): Make 'recfilename' const.
5535 * target.c (target_save_record): Make 'filename' const.
5536 * target.h (struct target_ops) <to_save_record>: Make 'filename'
5537 const.
5538 (target_save_record): Likewise.
5539
5540 2013-05-13 Tom Tromey <tromey@redhat.com>
5541
5542 PR gdb/15338:
5543 * dwarf2read.c (dwarf2_record_block_ranges): Ensure that the
5544 ranges section has been read.
5545
5546 2013-05-13 Tom Tromey <tromey@redhat.com>
5547
5548 PR exp/15364:
5549 * eval.c (evaluate_subexp_standard) <STRUCTOP_STRUCT,
5550 STRUCTOP_PTR>: Return a not_lval value for
5551 EVAL_AVOID_SIDE_EFFECTS.
5552 * opencl-lang.c (evaluate_subexp_opencl): Return a not_lval value
5553 for EVAL_AVOID_SIDE_EFFECTS.
5554
5555 2013-05-13 Joel Brobecker <brobecker@adacore.com>
5556
5557 * rs6000-aix-tdep.c (rs6000_push_dummy_call): Convert
5558 floating point registers to register type before storing
5559 value.
5560 * rs6000-lynx178-tdep.c (rs6000_lynx178_push_dummy_call):
5561 Likewise.
5562
5563 2013-05-10 Joel Brobecker <brobecker@adacore.com>
5564 Tom Tromey <tromey@redhat.com>
5565
5566 * common/filestuff.c (mark_fd_no_cloexec, unmark_fd_no_cloexec):
5567 New functions.
5568 * common/filestuff.c (mark_fd_no_cloexec, unmark_fd_no_cloexec):
5569 Declare.
5570 * darwin-nat.c (darwin_pre_ptrace): Use mark_fd_no_cloexec.
5571 (darwin_ptrace_him): Use unmark_fd_no_cloexec.
5572 * inf-ttrace.c (do_cleanup_pfds): Use unmark_fd_no_cloexec.
5573 (inf_ttrace_prepare): Use mark_fd_no_cloexec.
5574
5575 2013-05-10 Freddie Chopin <freddie_chopin@op.pl>
5576 Tom Tromey <tromey@redhat.com>
5577
5578 PR build/15414:
5579 * configure: Rebuild.
5580 * configure.ac (build_warnings): Do not use -Wformat-nonliteral
5581 with -Wno-format.
5582
5583 2013-05-10 Pedro Alves <palves@redhat.com>
5584
5585 * remote.c (_initialize_remote): Fix spelling of
5586 qXfer:traceframe-info:read packet in packet config command.
5587
5588 2013-05-10 David Taylor <dtaylor@emc.com>
5589
5590 PR remote/15455
5591
5592 * remote.c (remote_trace_set_readonly_regions): Do not overwrite
5593 "QTro" at start of packet.
5594
5595 2013-05-10 Joel Brobecker <brobecker@adacore.com>
5596
5597 * solib-aix.c (solib_aix_relocate_section_addresses):
5598 For the .bss section action, apply the same offset as
5599 the .data section.
5600
5601 2013-05-10 Joel Brobecker <brobecker@adacore.com>
5602
5603 * solib-aix.c (solib_aix_relocate_section_addresses):
5604 Remove FIXME comment.
5605
5606 2013-05-10 Joel Brobecker <brobecker@adacore.com>
5607
5608 PR tdep/15420:
5609 * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
5610 New functions, directly copied from sparc-sol-thread.c.
5611 * sparc-sol-thread.c: Delete.
5612 * configure.ac: Remove code handling sparc-solaris-thread.c.
5613 * configure: Regenerate.
5614
5615 2013-05-10 Phil Muldoon <pmuldoon@redhat.com>
5616
5617 * stack.c (backtrace_command_1): Add "no-filters", and Python frame
5618 filter logic.
5619 (backtrace_command): Add "no-filters" option parsing.
5620 (_initialize_stack): Alter help to reflect "no-filters" option.
5621 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-framefilter.o
5622 (SUBDIR_PYTHON_SRCS): Add py-framefilter.c
5623 (py-frame.o): Add target
5624 * data-directory/Makefile.in (PYTHON_DIR): Add Python frame
5625 filter files.
5626 * python/python.h: Add new frame filter constants, and flag enum.
5627 (apply_frame_filter): Add definition.
5628 * python/python.c (apply_frame_filter): New non-Python
5629 enabled function.
5630 * python/py-utils.c (py_xdecref): New function.
5631 (make_cleanup_py_xdecref): Ditto.
5632 * python/py-objfile.c: Declare frame_filters dictionary.
5633 (objfpy_dealloc): Add frame_filters dealloc.
5634 (objfpy_new): Initialize frame_filters attribute.
5635 (objfile_to_objfile_object): Ditto.
5636 (objfpy_get_frame_filters): New function.
5637 (objfpy_set_frame_filters): New function.
5638 * python/py-progspace.c: Declare frame_filters dictionary.
5639 (pspy_dealloc): Add frame_filters dealloc.
5640 (pspy_new): Initialize frame_filters attribute.
5641 (pspacee_to_pspace_object): Ditto.
5642 (pspy_get_frame_filters): New function.
5643 (pspy_set_frame_filters): New function.
5644 * python/py-framefilter.c: New file.
5645 * python/lib/gdb/command/frame_filters.py: New file.
5646 * python/lib/gdb/frames.py: New file.
5647 * python/lib/gdb/__init__.py: Initialize global frame_filters
5648 dictionary
5649 * python/lib/gdb/FrameDecorator.py: New file.
5650 * python/lib/gdb/FrameIterator.py: New file.
5651 * mi/mi-cmds.c (mi_cmds): Add frame filters command.
5652 * mi/mi-cmds.h: Declare.
5653 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames): Add
5654 --no-frame-filter logic, and Python frame filter logic.
5655 (stack_enable_frame_filters): New function.
5656 (parse_no_frame_option): Ditto.
5657 (mi_cmd_stack_list_frames): Add --no-frame-filter and Python frame
5658 filter logic.
5659 (mi_cmd_stack_list_locals): Ditto.
5660 (mi_cmd_stack_list_args): Ditto.
5661 (mi_cmd_stack_list_variables): Ditto.
5662 * NEWS: Add frame filter note.
5663
5664 2013-05-09 Doug Evans <dje@google.com>
5665
5666 * symfile.c (syms_from_objfile_1): Delete args offsets, num_offsets.
5667 All callers updated.
5668 (syms_from_objfile): Ditto. Make static.
5669 (symbol_file_add_with_addrs): Renamed from
5670 symbol_file_add_with_addrs_or_offsets. Delete args offsets,
5671 num_offsets. All callers updated.
5672 * symfile.h (syms_from_objfile): Delete.
5673
5674 * symfile.c (decrement_reading_symtab): Add assert.
5675 (increment_reading_symtab): Ditto.
5676
5677 2013-05-09 Joel Brobecker <brobecker@adacore.com>
5678
5679 * source.c (forward_search_command): Replace call to getc
5680 by call to fgetc.
5681 (reverse_search_command): Likewise.
5682
5683 2013-05-08 Doug Evans <dje@google.com>
5684
5685 * psymtab.c (expand_symtabs_matching_via_partial): Fix file name
5686 matching test.
5687
5688 2013-05-08 Joel Brobecker <brobecker@adacore.com>
5689
5690 * sol-thread.c (info_cb): Factorize the code a little.
5691
5692 2013-05-08 Joel Brobecker <brobecker@adacore.com>
5693
5694 * sol-thread.c (info_cb): Rework the output of the "maintenance
5695 info sol-threads" command a bit.
5696
5697 2013-05-08 Joel Brobecker <brobecker@adacore.com>
5698
5699 * sol-thread.c (info_cb) [ti.ti_state == TD_THR_SLEEP]:
5700 Replace ti.ti_startfunc by ti.ti_pc.
5701
5702 2013-05-08 Joel Brobecker <brobecker@adacore.com>
5703
5704 * solib-aix.c (solib_aix_free_library_list): New function
5705 for the case where HAVE_LIBEXPAT is not defined.
5706
5707 2013-05-07 Sergio Durigan Junior <sergiodj@redhat.com>
5708
5709 PR breakpoints/15413:
5710 * breakpoint.c (condition_completer): Simplify the code to
5711 disconsider multiple locations of breakpoints when completing the
5712 "condition" command.
5713
5714 2013-05-07 Pierre Muller <muller@sourceware.org>
5715
5716 * common/linux-btrace.c: ARI fix: Include "gdb_wait.h"
5717 instead of <sys/wait.h>.
5718
5719 2013-05-07 Pierre Muller <muller@sourceware.org>
5720
5721 * nios2-tdep.c (nios2_dwarf_reg_to_regnum): ARI fix: remove
5722 trailing new line from warning message.
5723
5724 2013-05-07 Pierre Muller <muller@sourceware.org>
5725
5726 * contrib/ari/gdb_ari.sh (SOLIB_ADD, SOLIB_CREATE_INFERIOR_HOOK)
5727 (PC_SOLIB): Change type from ari_deprecate to ari_regression.
5728
5729 2013-05-07 Joel Brobecker <brobecker@adacore.com>
5730
5731 * rs6000-nat.c (rs6000_core_ldinfo): Remove '\n' at end of
5732 error message (ARI fix).
5733
5734 2013-05-07 Joel Brobecker <brobecker@adacore.com>
5735
5736 * features/library-list-aix.dtd: Replace library-list by
5737 library-list-aix.
5738 * rs6000-nat.c: Replace library-list by library-list-aix
5739 throughout.
5740 * solib-aix.c: Likewise.
5741
5742 2013-05-07 Joel Brobecker <brobecker@adacore.com>
5743
5744 * target.h (enum target_object) [TARGET_OBJECT_LIBRARIES_AIX]:
5745 Renames TARGET_OBJECT_AIX_LIBRARIES.
5746 * rs6000-nat.c: Replace TARGET_OBJECT_AIX_LIBRARIES with
5747 TARGET_OBJECT_LIBRARIES_AIX throughout.
5748 * solib-aix.c: Likwise.
5749
5750 2013-05-07 Yao Qi <yao@codesourcery.com>
5751
5752 * solib-dsbt.c (struct dsbt_info) <enable_break2_done>: Remove.
5753 (get_dsbt_info, enable_break, dsbt_clear_solib): Update.
5754
5755 2013-05-07 Yao Qi <yao@codesourcery.com>
5756
5757 * solib-dsbt.c (enable_break): Declare.
5758 (dsbt_current_sos): Remove call to enable_break2.
5759 (enable_break2): Rename to enable_break. Set solib breakpoint
5760 on '_dl_debug_state'.
5761 (enable_break): Remove.
5762
5763 2013-05-07 Luis Machado <lgustavo@codesourcery.com>
5764
5765 * ppc-linux-nat.c (ppc_linux_new_thread): Clear the new thread's
5766 debug state prior to replicating existing hardware watchpoints or
5767 breakpoints.
5768
5769 2013-05-07 Jan Kratochvil <jan.kratochvil@redhat.com>
5770
5771 * gcore.c (gcore_create_callback): Ignore sections with
5772 separate_debug_objfile_backlink != NULL.
5773
5774 2013-05-06 Sandra Loosemore <sandra@codesourcery.com>
5775 Andrew Jenner <andrew@codesourcery.com>
5776 Chung-Lin Tang <cltang@codesourcery.com>
5777 Julian Brown <julian@codesourcery.com>
5778
5779 Based on the nios2-elf port from Altera Corporation.
5780
5781 * Makefile.in (ALL_TARGET_OBS): Add nios2-tdep.o and
5782 nios2-linux-tdep.o.
5783 (HFILES_NO_SRCDIR): Add nios2-tdep.h.
5784 (ALLDEPFILES): Add nios2-tdep.c and nios2-linux-tdep.c.
5785 * configure.tgt: Add nios2*-*-linux* and nios2*-*-* targets.
5786 * nios2-tdep.h: New.
5787 * nios2-tdep.c: New.
5788 * nios2-linux-tdep.c: New.
5789 * features/Makefile (WHICH): Add nios2-linux.
5790 (nios2-linux-expedite): Set.
5791 * features/nios2-cpu.xml: New.
5792 * features/nios2.xml: New.
5793 * features/nios2-linux.xml: New.
5794 * features/nios2.c: New (autogenerated).
5795 * features/nios2-linux.c: New (autogenerated).
5796 * regformats/nios2-linux.dat: New (autogenerated).
5797 * NEWS (Changes since GDB 7.6): Add new Nios II targets
5798 and commands.
5799
5800 2013-05-06 Doug Evans <dje@google.com>
5801
5802 * symfile.c: Whitespace cleanup.
5803
5804 * solist.h (struct target_so_ops): New member clear_so.
5805 * solib-svr4.c (svr4_clear_so): New function.
5806 (_initialize_svr4_solib): Set svr4_so_ops.clear_so.
5807 * solib.c (clear_so): Renamed from free_so_symbols.
5808 All callers updated. Call target clear_so if it exists.
5809
5810 2013-05-06 Tom Tromey <tromey@redhat.com>
5811
5812 * ada-lang.c (ada_value_primitive_packed_val): Don't
5813 call value_incref.
5814 * value.c (set_value_parent): Incref the new parent and decref
5815 the old parent.
5816 (value_copy, value_primitive_field): Use set_value_parent.
5817
5818 2013-05-06 Tom Tromey <tromey@redhat.com>
5819
5820 * dwarf2loc.c (invalid_synthetic_pointer): Move earlier.
5821 (indirect_pieced_value): Call dwarf2_fetch_constant_bytes
5822 if needed.
5823 * dwarf2loc.h (dwarf2_fetch_constant_bytes): Declare.
5824 * dwarf2read.c (write_constant_as_bytes)
5825 (dwarf2_fetch_constant_bytes): New functions.
5826
5827 2013-05-06 Tom Tromey <tromey@redhat.com>
5828
5829 * dwarf2read.c (dwarf2_const_value_data): Remove unused
5830 parameters.
5831 (dwarf2_const_value_attr): Update.
5832
5833 2013-05-06 Tom Tromey <tromey@redhat.com>
5834
5835 * somread.c (som_symfile_offsets): Add 'const' to addrs.
5836 * machoread.c (macho_symfile_offsets): Add 'const' to addrs.
5837 * xcoffread.c (xcoff_symfile_offsets): Add 'const' to addrs.
5838 Remove declaration.
5839
5840 2013-05-06 Tom Tromey <tromey@redhat.com>
5841
5842 * dwarf2read.c (dwarf2_const_value_attr): Use 'obstack', not
5843 objfile's obstack.
5844
5845 2013-05-06 Doug Evans <dje@google.com>
5846
5847 * dbxread.c (process_one_symbol): Constify section_offsets parameter.
5848 * stabsread.h (process_one_symbol): Update declaration.
5849 * dwarf2read.c (dw2_relocate): Constify new_offsets, delta parameters.
5850 * elfread.c (elf_symfile_relocate_probe): Ditto.
5851 * psymtab.c (relocate_psymtabs): Ditto.
5852 * objfiles.c (objfile_relocate1): Constify new_offsets parameter.
5853 (objfile_relocate): Ditto.
5854 * objfiles.h (objfile_relocate): Update declaration.
5855 * symfile.c (relative_addr_info_to_section_offsets): Constify
5856 addrs parameter.
5857 (default_symfile_offsets): Ditto.
5858 (syms_from_objfile_1): Constify offsets parameter.
5859 (syms_from_objfile): Ditto.
5860 (symbol_file_add_with_addrs_or_offsets): Ditto.
5861 (symfile_map_offsets_to_segments): Constify data parameter.
5862 * symfile.h (struct quick_symbol_functions): Constify new_offsets,
5863 delta parameters of member relocate.
5864 (struct sym_probe_fns): Constify new_offsets,
5865 delta parameters of member sym_relocate_probe.
5866 (struct sym_fns): Constify section_addr_info parameter of member
5867 sym_offsets.
5868 (relative_addr_info_to_section_offsets): Update declaration.
5869 (default_symfile_offsets): Ditto.
5870 (syms_from_objfile): Ditto.
5871 (symfile_map_offsets_to_segments): Ditto.
5872
5873 * symfile.c (syms_from_objfile_1): Use correct section count when
5874 objfile->sf == NULL.
5875
5876 2013-05-06 Mike Frysinger <vapier@gentoo.org>
5877
5878 * common/linux-btrace.c (intel_supports_btrace): Fix indentation.
5879
5880 2013-05-06 Doug Evans <dje@google.com>
5881
5882 * psympriv.h (struct partial_symtab): Augment comment for member
5883 section_offsets.
5884
5885 2013-05-06 Joel Brobecker <brobecker@adacore.com>
5886
5887 Reimplement shared library support on ppc-aix...
5888 * target.h (TARGET_OBJECT_AIX_LIBRARIES): New target_object enum.
5889 * features/library-list-aix.dtd: New file.
5890 * solib-aix.h, solib-aix.c: New file.
5891 * rs6000-aix-tdep.c: #include "solib.h" and "solib-aix.h".
5892 (rs6000_find_toc_address_hook): Delete.
5893 (rs6000_push_dummy_call): Rewrite code setting the TOC value.
5894 (rs6000_aix_init_osabi): Register solib_aix_so_ops.
5895 * rs6000-nat.c: Remove "xcoffsolib.h" include. Include
5896 "xml-utils.h".
5897 (map_vmap, vmap_exec, vmap_ldinfo, add_vmap, objfile_symbol_add)
5898 (vmap_symtab, fixup_breakpoints): Delete.
5899 (rs6000_xfer_shared_libraries): New function.
5900 (rs6000_xfer_partial): Add TARGET_OBJECT_AIX_LIBRARIES handling.
5901 (vmap_secs, bss_data_overlap, vmap_add_symbols): Delete.
5902 (xcoff_relocate_symtab, xcoff_relocate_core): Delete.
5903 (rs6000_ptrace_ldinfo, rs6000_core_ldinfo)
5904 (rs6000_xfer_shared_library): New function.
5905 (find_toc_address): Delete.
5906 (_initialize_rs6000_nat): Do not set rs6000_find_toc_address_hook.
5907 * rs6000-tdep.h (rs6000_find_toc_address_hook): Remove.
5908 * xcoffread.c (record_minimal_symbol): Reloate symbol address
5909 before creating minimal symbol. Adjust function description
5910 accordingly.
5911 (scan_xcoff_symtab): Replace call to
5912 prim_record_minimal_symbol_and_info by call to
5913 record_minimal_symbol.
5914 (xcoff_symfile_offsets): Reimplement mostly as a wrapper
5915 around default_symfile_offsets.
5916 * configure.tgt: Add solib-aix.o to gdb_target_obs for
5917 powerpc-aix targets.
5918 * config/rs6000/nm-rs6000.h: Delete.
5919 * config/powerpc/aix.mh (NAT_FILE): Delete.
5920 (NATDEPFILES): Remove xcoffsolib.o.
5921 * Makefile.in (XMLFILES): Add library-list-aix.dtd.
5922 (ALL_TARGET_OBS): Add solib-aix.o.
5923 (HFILES_NO_SRCDIR): Remove xcoffsolib.h and
5924 config/rs6000/nm-rs6000.h. Add solib-aix.h.
5925 (ALLDEPFILES): Add solib-aix.c. Remove xcoffsolib.c.
5926 * xcoffsolib.h, xcoffsolib.c: Delete.
5927
5928 * solib.c (reload_shared_libraries): Remove reference to
5929 SOLIB_CREATE_INFERIOR_HOOK.
5930 * breakpoint.c (handle_solib_event): Remove reference to SOLIB_ADD.
5931 (disable_breakpoints_in_shlibs): Remove reference to PC_SOLIB.
5932 (momentary_bkpt_re_set): Replace SOLIB_ADD by solib_add in
5933 comment.
5934 * corelow.c (deprecated_core_resize_section_table): Delete.
5935 * exec.c: Remove include of xcoffsolib.h".
5936 (map_vmap, vmap): Delete.
5937 (exec_close_1): Remove references to vmap.
5938 (exec_file_attach): Remove vmap handling code, and reference
5939 to DEPRECATED_IBM6000_TARGET.
5940 (bfdsec_to_vmap): Delete.
5941 (exec_files_info): Remove block of code handling VMAP.
5942 * infcmd.c (post_create_inferior): Remove reference to
5943 SOLIB_CREATE_INFERIOR_HOOK and SOLIB_ADD.
5944 * infrun.c (follow_exec): Remove reference to
5945 SOLIB_CREATE_INFERIOR_HOOK.
5946 * stack.c (print_frame): Remove reference to PC_SOLIB.
5947 * solib-dsbt.c (dsbt_current_sos): Adjust comment.
5948 (dsbt_relocate_main_executable): Likewise.
5949 * solib-frv.c (frv_current_sos): Likewise.
5950
5951 2013-05-06 Joel Brobecker <brobecker@adacore.com>
5952
5953 * sol-thread.c (rw_common): Cast BUF to "gdb_byte *" in calls
5954 to target_write_memory and target_read_memory.
5955
5956 2013-05-06 Joel Brobecker <brobecker@adacore.com>
5957
5958 * darwin-nat.c (darwin_setup_fake_stop_event): New function.
5959 (darwin_attach): Adjust using darwin_setup_fake_stop_event.
5960
5961 2013-05-06 Joel Brobecker <brobecker@adacore.com>
5962
5963 * darwin-nat.c: Replace all "%x" instances in format strings
5964 into "0x%x" throughout.
5965
5966 2013-05-06 Joel Brobecker <brobecker@adacore.com>
5967
5968 * darwin-nat.c (darwin_mourn_inferior): Replace call to
5969 gdb_assert by call to MACH_CHECK_ERROR.
5970 (darwin_attach_pid): Raise an error rather than a failed
5971 assertion when various system calls failed. Report a warning
5972 instead of raising a failed assertion when PREV_NOT is not NULL
5973 after call to mach_port_request_notification.
5974 (darwin_ptrace_me): Raise an error rather than a failed
5975 assertion when read returns nonzero.
5976
5977 2013-05-06 Joel Brobecker <brobecker@adacore.com>
5978
5979 * amd64-darwin-tdep.c: Remove #include "gdb_assert.h".
5980
5981 2013-05-05 Jan Kratochvil <jan.kratochvil@redhat.com>
5982
5983 * cleanups.c (restore_my_cleanups): New gdb_assert for SENTINEL_CLEANUP.
5984
5985 2013-05-05 Jan Kratochvil <jan.kratochvil@redhat.com>
5986
5987 * event-top.c (display_gdb_prompt): Call missing do_cleanups.
5988 * infcmd.c (get_return_value) <!stop_regs>: Do not overwrite CLEANUP.
5989 * symfile.c (symfile_bfd_open): New variable back_to. Do not leave
5990 a stale cleanup. Fix double free of NAME.
5991
5992 2013-05-04 Eli Zaretskii <eliz@gnu.org>
5993
5994 * windows-nat.c (windows_delete_thread): Accept an additional
5995 argument, the thread's exit code, and announce thread death when
5996 print_thread_events is non-zero and we are deleting a thread that
5997 is not the main thread.
5998 (get_windows_debug_event): Pass thread exit code to
5999 windows_delete_thread.
6000
6001 2013-05-03 Kevin Buettner <kevinb@redhat.com>
6002
6003 * v850-tdep.c (elf-bfd.h, elf/v850.h): Include.
6004 (R_149_REGNUM, E_NUM_OF_V850E2_REGS, E_SELID_1_R0_REGNUM)
6005 (E_SELID_1_R31_REGNUM, E_SELID_2_R0_REGNUM, E_SELID_2_R31_REGNUM)
6006 (E_SELID_3_R0_REGNUM, E_SELID_3_R31_REGNUM, E_SELID_4_R0_REGNUM)
6007 (E_SELID_4_R31_REGNUM, E_SELID_5_R0_REGNUM, E_SELID_5_R31_REGNUM)
6008 (E_SELID_6_R0_REGNUM, E_SELID_6_R31_REGNUM, E_SELID_7_R0_REGNUM, E_SELID_7_R31_REGNUM)
6009 (E_VR0_REGNUM, E_VR31_REGNUM, E_NUM_OF_V850E3V5_REGS): Define.
6010 (v850_abi, V850_ABI_GCC, V850_ABI_RH850): New enum and constants.
6011 (gdbarch_tdep): New struct.
6012 (v850e2_register_name): Use E_NUM_OF_V850E2_REGS instead of
6013 E_NUM_REGS.
6014 (v850e3v5_register_name): New function.
6015 (v850_register_type): v850e3v5 vector registers are 64-bits wide.
6016 (v850_use_struct_convention): Add `gdbarch' parameter. Add new
6017 code handling the struct return conventions for the RH850 ABI.
6018 Update all callers.
6019 (v850_eight_byte_align_p): New function.
6020 (v850_push_call_dummy): Push structs by value, not by reference
6021 for the RH850 ABI. Add support for eight byte alignment.
6022 (v850_dbtrap_breakpoint_from_pc): New function.
6023 (v850_gdbarch_init): Add ABI detection code. Register
6024 v850e3v5_register_name for the v850e3v5 architecture. Set the
6025 number of registers for v850e3v5. Register
6026 v850_dbtrap_breakpoint_from_pc as appropriate.
6027 (_initialize_gdbarch_init): Registration bfd_arch_v850_rh850.
6028
6029 2013-05-03 Doug Evans <dje@google.com>
6030
6031 * objfiles.c (objfile_relocate): Use gdb_bfd_count_sections instead
6032 of bfd_count_sections.
6033 * solib-target.c (solib_target_relocate_section_addresses): Ditto.
6034 * symfile.c (default_symfile_offsets): Ditto.
6035 (syms_from_objfile_1): Ditto. Make dummy addrs list an array of
6036 one entry, not bfd_count_sections entries.
6037
6038 2013-05-03 Kevin Buettner <kevinb@redhat.com>
6039
6040 * rl78-tdep.c (rl78_register_reggroup_p): Include SP in the
6041 `save' and `restore' register groups. Don't include SPL
6042 or SPH in these groups.
6043 (rl78_dwarf_reg_to_regnum): Adjust mapping for
6044 RL78_PC_REGNUM. Add mappings for RL78_PSW_REGNUM,
6045 RL78_ES_REGNUM, and RL78_CS_REGNUM.
6046 (rl78_gdbarch_init): Set `dwarf2_addr_size' to 4. Invoke
6047 dwarf2_append_unwinders().
6048
6049 2013-05-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
6050
6051 * break-catch-sig.c (signal_catchpoint_breakpoint_hit): Do not
6052 ignore SIGINT and SIGTRAP in case these internal signals are
6053 caught explicitely.
6054
6055 2013-05-01 Joel Brobecker <brobecker@adacore.com>
6056
6057 * darwin-nat.c (darwin_read_write_inferior): Change types
6058 of parameters rdaddr and wraddr to "gdb_byte *". Change type
6059 of copy_count to "mach_msg_type_number_t".
6060 (darwin_read_dyld_info): Change type of parameter
6061 rdaddr to "gdb_byte *".
6062
6063 2013-05-01 Joel Brobecker <brobecker@adacore.com>
6064
6065 * solib-ia64-hpux.c (ia64_hpux_read_dynamic_info): Change cast
6066 of &info->load_map from "char *" to "gdb_byte *".
6067
6068 2013-05-01 Joel Brobecker <brobecker@adacore.com>
6069
6070 * ia64-tdep.c (ia64_access_fpreg): Change cast of val
6071 from "char *" to "gdb_byte *".
6072 (ia64_access_rse_fpreg, ia64_access_mem): Likewise.
6073
6074 2013-04-30 Doug Evans <dje@google.com>
6075
6076 * dwarf2read.c (lookup_dwo_unit): Return NULL if DWO not found.
6077 (init_cutu_and_read_dies): Flag a complaint, not error, for bad
6078 DWO stub. If DWO isn't found, just use stub.
6079 (lookup_dwo_cutu): Don't try DWO if there's a DWP file.
6080
6081 * dwarf2read.c (dw2_find_symbol_file): Initialize filename before
6082 calling init_cutu_and_read_dies.
6083
6084 2013-03-27 Walfred Tedeschi <walfred.tedeschi@intel.com>
6085
6086 * target-descriptions.c (maint_print_c_tdesc_cmd):
6087 Add case to parse structures as register types and
6088 bitfields.
6089
6090 2013-04-30 Walfred Tedeschi <walfred.tedeschi@intel.com>
6091
6092 * MAINTAINERS (Write After Approval): Add myself to the list.
6093
6094 2013-04-30 Joel Brobecker <brobecker@adacore.com>
6095
6096 * sol-thread.c (rw_common): Change type of parameter "buf"
6097 to "gdb_byte *".
6098 (ps_pdwrite, ps_ptwrite): Cast parameter "buf" in call to
6099 rw_common to "gdb_byte *" instead of "char *".
6100
6101 2013-04-30 Joel Brobecker <brobecker@adacore.com>
6102
6103 * sol-thread.c (info_cb) [ti.ti_startfunc != 0]: Change type
6104 of local variable msym to const struct bound_minimal_symbol.
6105 Adjust use accordingly.
6106 [ti.ti_state == TD_THR_SLEEP]: Likewise.
6107
6108 2013-04-30 Samuel Thibault <samuel.thibault@gnu.org>
6109
6110 * i386gnu-nat.c (CREG_OFFSET): New macro.
6111 (creg_offset): New array.
6112 (CREG_ADDR): Use creg_offset instead of reg_offset.
6113
6114 2013-04-30 Joel Brobecker <brobecker@adacore.com>
6115
6116 * mep-tdep.c (mep_write_pc): Delete.
6117 (mep_gdbarch_init): Remove call to set_gdbarch_write_pc.
6118 Add call to set_gdbarch_pc_regnum.
6119
6120 2013-04-30 Joel Brobecker <brobecker@adacore.com>
6121
6122 * common/filestuff.c: Replace #include <dirent.h> by
6123 #include "gdb_dirent.h".
6124
6125 2013-04-30 Joel Brobecker <brobecker@adacore.com>
6126
6127 * common/filestuff.c: Replace #include <sys/stat.h> by
6128 #include "gdb_stat.h".
6129
6130 2013-04-29 Pierre Muller <muller@sourceware.org>
6131
6132 * dwarf2read.c (handle_DW_AT_stmt_list): Avoid ARI warning for
6133 editCase function rule.
6134 (get_DW_AT_signature_type): Likewise.
6135
6136 2013-04-29 Joel Brobecker <brobecker@adacore.com>
6137
6138 * m32r-tdep.c (m32r_write_pc): Delete.
6139 (m32r_gdbarch_init): Remove call to set_gdbarch_write_pc.
6140 Add call to set_gdbarch_pc_regnum.
6141
6142 2013-04-29 Pierre Muller <muller@sourceware.org>
6143
6144 * ./contrib/ari/gdb_ari.sh (editCase rule): Fix spelling error.
6145
6146 2013-04-29 Joel Brobecker <brobecker@adacore.com>
6147
6148 * dwarf2read.c (get_DW_AT_signature_type): Add ARI marker.
6149
6150 2013-04-28 Yao Qi <yao@codesourcery.com>
6151
6152 * solib-dsbt.c (fetch_loadmap): Re-indent.
6153 (displacement_from_map, enable_break2): Likewise.
6154 (dsbt_relocate_section_addresses): Likewise.
6155
6156 2013-04-26 Joel Brobecker <brobecker@adacore.com>
6157
6158 GDB 7.6 released.
6159
6160 2013-04-25 Andreas Kaufmann <Andreas.Kaufmann@synopsys.com>
6161
6162 PR corefiles/14983:
6163 * dwarf2read.c (process_full_comp_unit): Always create a static
6164 block.
6165
6166 2013-04-25 Hui Zhu <hui@codesourcery.com>
6167
6168 * breakpoint.c (build_target_command_list): Change loc->cond_bytecode
6169 to loc->cmd_bytecode.
6170
6171 2013-04-24 Doug Evans <dje@google.com>
6172
6173 * dwarf2read.c (setup_type_unit_groups): Fix comment.
6174
6175 2013-04-22 Keith Seitz <keiths@redhat.com>
6176
6177 * tracepoint.c (trace_save): Call the writer's start method.
6178
6179 2013-04-24 Muhammad Bilal <mbilal@codesourcery.com>
6180
6181 PR gdb/10462
6182 * cli/cli-decode.c (lookup_command): Show an error if there is no space
6183 before argument.
6184
6185 2013-04-23 Tom Tromey <tromey@redhat.com>
6186
6187 * common/filestuff.c: Check USE_WIN32API before including
6188 sys/socket.h.
6189 (HAVE_F_GETFD): New define.
6190 (mark_cloexec): Check HAVE_F_GETFD.
6191 (gdb_open_cloexec): Change 'mode' to unsigned long.
6192 (gdb_socketpair_cloexec): Check HAVE_SOCKETPAIR.
6193 (gdb_pipe_cloexec): Check HAVE_PIPE.
6194 * common/filestuff.h (gdb_open_cloexec): Change 'mode' to unsigned
6195 long.
6196
6197 2013-04-23 Hui Zhu <hui@codesourcery.com>
6198
6199 PR gdb/15293
6200 * breakpoint.c (bpstat_what): Add BPSTAT_WHAT_SINGLE to bp_dprintf.
6201
6202 2013-04-23 Hui Zhu <hui@codesourcery.com>
6203
6204 PR gdb/15165
6205 * breakpoint.c (dprintf_print_recreate): New.
6206 (save_breakpoints): Let it not save dprintf commands.
6207 (initialize_breakpoint_ops): Set dprintf_print_recreate.
6208
6209 2013-04-22 Tom Tromey <tromey@redhat.com>
6210
6211 PR gdb/7912:
6212 * Makefile.in (SFILES): Add filestuff.c
6213 (COMMON_OBS): Add filestuff.o.
6214 (filestuff.o): New target.
6215 * auto-load.c (auto_load_objfile_script_1): Use
6216 gdb_fopen_cloexec.
6217 * auxv.c (procfs_xfer_auxv): Use gdb_open_cloexec.
6218 * cli/cli-cmds.c (shell_escape): Call close_most_fds.
6219 * cli/cli-dump.c (fopen_with_cleanup): Use gdb_fopen_cloexec.
6220 * common/agent.c (gdb_connect_sync_socket): Use
6221 gdb_socket_cloexec.
6222 * common/filestuff.c: New file.
6223 * common/filestuff.h: New file.
6224 * common/linux-osdata.c (linux_common_core_of_thread)
6225 (command_from_pid, commandline_from_pid, print_source_lines)
6226 (linux_xfer_osdata_shm, linux_xfer_osdata_sem)
6227 (linux_xfer_osdata_msg, linux_xfer_osdata_modules): Use
6228 gdb_fopen_cloexec.
6229 * common/linux-procfs.c (linux_proc_get_int)
6230 (linux_proc_pid_has_state): Use gdb_fopen_cloexec.
6231 * config.in, configure: Rebuild.
6232 * configure.ac: Don't check for sys/socket.h. Check for
6233 fdwalk, pipe2.
6234 * corelow.c (core_open): Use gdb_open_cloexec.
6235 * dwarf2read.c (write_psymtabs_to_index): Use gdb_fopen_cloexec.
6236 * fork-child.c (fork_inferior): Call close_most_fds.
6237 * gdb_bfd.c (gdb_bfd_open): Use gdb_open_cloexec.
6238 * inf-child.c (inf_child_fileio_readlink): Use gdb_open_cloexec.
6239 * linux-nat.c (linux_nat_thread_name, linux_proc_pending_signals):
6240 Use gdb_fopen_cloexec.
6241 (linux_proc_xfer_partial, linux_proc_xfer_spu): Use
6242 gdb_open_cloexec.
6243 (linux_async_pipe): Use gdb_pipe_cloexec.
6244 * remote-fileio.c (remote_fileio_func_open): Use
6245 gdb_open_cloexec.
6246 * remote.c (remote_file_put, remote_file_get): Use
6247 gdb_fopen_cloexec.
6248 * ser-pipe.c (pipe_open): Use gdb_socketpair_cloexec,
6249 close_most_fds.
6250 * ser-tcp.c (net_open): Use gdb_socket_cloexec.
6251 * ser-unix.c (hardwire_open): Use gdb_open_cloexec.
6252 * solib.c (solib_find): Use gdb_open_cloexec.
6253 * source.c (openp, find_and_open_source): Use gdb_open_cloexec.
6254 * tracepoint.c (tfile_start): Use gdb_fopen_cloexec.
6255 (tfile_open): Use gdb_open_cloexec.
6256 * tui/tui-io.c (tui_initialize_io): Use gdb_pipe_cloexec.
6257 * ui-file.c (gdb_fopen): Use gdb_fopen_cloexec.
6258 * xml-support.c (xml_fetch_content_from_file): Use
6259 gdb_fopen_cloexec.
6260 * main.c (captured_main): Call notice_open_fds.
6261
6262 2013-04-22 Edjunior Machado <emachado@linux.vnet.ibm.com>
6263
6264 * remote-sim.c (dump_mem): Change the type of 'buf' parameter from
6265 'char *' to 'gdb_byte *'.
6266 (gdbsim_store_register): Change the type of 'tmp' from 'char' to
6267 'gdb_byte'.
6268
6269 2013-04-22 Yao Qi <yao@codesourcery.com>
6270
6271 * infrun.c: Fix typo in comment.
6272
6273 2013-04-22 Andrew Haley <aph@redhat.com>
6274
6275 * arm-tdep.c (BranchDest): Cast result as "unsigned long",
6276 instead of "long".
6277
6278 2013-04-20 Yao Qi <yao@codesourcery.com>
6279
6280 * ctf.c (ctf_fetch_registers): Change the type of 'regs' from
6281 'char *' to 'gdb_byte *'. Cast the return value of
6282 'bt_ctf_get_char_array' to 'gdb_byte *'.
6283
6284 2013-04-19 Pedro Alves <palves@redhat.com>
6285
6286 * configure.ac (build_warnings): Replace -Wno-pointer-sign with
6287 -Wpointer-sign.
6288 * configure: Regenerate.
6289
6290 2013-04-19 Pedro Alves <palves@redhat.com>
6291
6292 * ser-tcp.c (net_read_prim): Cast second argument to recv to
6293 'void *'.
6294
6295 2013-04-19 Pedro Alves <palves@redhat.com>
6296
6297 * monitor.c (monitor_write_memory, monitor_write_memory_bytes):
6298 Change type of 'myaddr' parameter to gdb_byte pointer.
6299 (monitor_write_memory_longlongs): Likewise. Cast 'myaddr' pointer
6300 to 'long long' pointer instead of to 'unsigned long long'.
6301 (monitor_write_memory_block, monitor_read_memory_single)
6302 (monitor_read_memory): Change type of 'myaddr' parameter to
6303 gdb_byte pointer.
6304
6305 2013-04-19 Pedro Alves <palves@redhat.com>
6306
6307 * record.c (validate_history_size): Make parameter 'setting'
6308 unsigned.
6309
6310 2013-04-19 Pedro Alves <palves@redhat.com>
6311
6312 * ctf.c (ctf_write_uploaded_tsv, ctf_write_uploaded_tp): Add casts
6313 to 'gdb_byte *'.
6314
6315 2013-04-19 Pedro Alves <palves@redhat.com>
6316
6317 * cp-valprint.c (cp_print_class_member): Change type of 'fieldno'
6318 local to int.
6319
6320 2013-04-19 Pedro Alves <palves@redhat.com>
6321
6322 * ada-lang.c (print_it_exception): Add cast to gdb_byte *.
6323 * ada-tasks.c (read_fat_string_value): Likewise.
6324
6325 2013-04-19 Pedro Alves <palves@redhat.com>
6326
6327 * dwarf2-frame.c (execute_cfa_program): Make 'bytes_read' local
6328 unsigned. Pass 'tmp' to safe_read_uleb128 instead of the signed
6329 'offset', and adjust.
6330
6331 2013-04-19 Pedro Alves <palves@redhat.com>
6332
6333 * dwarf2read.c (dwarf2_get_dwz_file): Add cast to const char *.
6334 (read_index_from_section): Add cast to 'char *'.
6335
6336 2013-04-19 Pedro Alves <palves@redhat.com>
6337
6338 * xcoffread.c (xcoff_initial_scan): Add cast to 'char *'.
6339
6340 2013-04-19 Pedro Alves <palves@redhat.com>
6341
6342 * coff-pe-read.c (read_pe_exported_syms): Handle strings as char.
6343
6344 2013-04-19 Pedro Alves <palves@redhat.com>
6345
6346 * record-full.c (record_full_get_bookmark): Change local 'ret'
6347 type to char * and add cast to gdb_byte *.
6348 (record_full_goto_bookmark): Handle 'bookmark' argument as a
6349 string.
6350 * reverse.c (goto_bookmark_command): Add casts to gdb_byte *.
6351
6352 2013-04-19 Pedro Alves <palves@redhat.com>
6353
6354 * python/py-inferior.c (infpy_write_memory): Add cast to gdb_byte
6355 * python/py-prettyprint.c (print_string_repr): Change type of
6356 'output' local to char *. Add cast to gdb_byte * in
6357 LA_PRINT_STRING call.
6358 (print_children): Change type of 'output' local to char *.
6359 * python/py-value.c (valpy_string): Add cast to const char * in
6360 PyUnicode_Decode call.
6361
6362 2013-04-19 Pedro Alves <palves@redhat.com>
6363
6364 * remote-mips.c (mips_cksum): Rename 'data' parameter to 'datastr'
6365 and change its type to 'const char *'. Adjust.
6366 (mips_send_packet): Add cast to 'char *', and remove cast to
6367 'unsigned char *'.
6368 (mips_receive_packet): Remove cast to 'unsigned char *'.
6369 (mips_load_srec): Use bfd_byte.
6370 (pmon_makeb64, pmon_zeroset): Make 'chksum' parameter unsigned.
6371 (pmon_checkset): Make 'value' parameter unsigned.
6372
6373 2013-04-19 Pedro Alves <palves@redhat.com>
6374
6375 * common/agent.c (agent_run_command): Add cast to gdb_byte *.
6376
6377 2013-04-19 Pedro Alves <palves@redhat.com>
6378
6379 * remote.c (remote_write_bytes_aux, compare_sections_command)
6380 (remote_read_qxfer)
6381 (remote_search_memory, remote_hostio_pwrite, remote_hostio_pread)
6382 (remote_hostio_readlink, remote_bfd_iovec_pread)
6383 (remote_set_trace_notes): Use gdb_byte when RSP buffer is used as
6384 binary buffer, and char when buffer is used as string.
6385 * tracepoint.c (encode_source_string, tfile_write_uploaded_tp)
6386 (trace_save, tfile_open, traceframe_walk_blocks)
6387 (tfile_fetch_registers): Likewise.
6388
6389 2013-04-19 Pedro Alves <palves@redhat.com>
6390
6391 * ser-base.c (ser_base_write): Change prototype -- take 'void *'
6392 buffer and size_t size. Adjust.
6393 * ser-base.h (ser_base_write): Adjust.
6394 * ser-go32.c (cnts): Change type to size_t.
6395 (dos_write): Change prototype -- take 'void *'
6396 buffer and size_t size. Adjust.
6397 (dos_info): Print elements of 'cnts' as unsigned long.
6398 * serial.c (serial_write): Likewise.
6399 * serial.h (serial_write): Adjust.
6400 (struct serial_ops) <write>: Change prototype -- take 'void *'
6401 buffer and size_t size. Adjust.
6402
6403 2013-04-19 Pedro Alves <palves@redhat.com>
6404
6405 * c-lang.c (evaluate_subexp_c): Cast result of obstack_base to
6406 gdb_byte *.
6407 * linux-tdep.c (linux_make_mappings_corefile_notes): Likewise.
6408
6409 2013-04-19 Pedro Alves <palves@redhat.com>
6410
6411 * alpha-tdep.c (alpha_extract_return_value): Use
6412 regcache_cooked_read_unsigned to read 'v0'.
6413
6414 2013-04-19 Pedro Alves <palves@redhat.com>
6415
6416 * xtensa-tdep.c (execute_l32e, execute_s32e): Change type of
6417 parameters 'at', 'as' and 'offset' to uint32_t.
6418
6419 2013-04-19 Pedro Alves <palves@redhat.com>
6420
6421 * aarch64-tdep.c (aarch64_analyze_prologue): Change type of local
6422 'is64' to signed 'int'.
6423
6424 2013-04-19 Pedro Alves <palves@redhat.com>
6425
6426 * s390-tdep.c (is_rs, is_rsy, is_rx, is_rxy): Change type of 'd2'
6427 parameter to int *.
6428
6429 2013-04-19 Pedro Alves <palves@redhat.com>
6430
6431 * ppc-linux-tdep.c (ppc_skip_trampoline_code): Change local
6432 'insnbuf' buffer type to unsigned int[].
6433
6434 2013-04-19 Pedro Alves <palves@redhat.com>
6435
6436 * mips-tdep.c (mips_read_pc): Change local 'pc' type to LONGEST.
6437
6438 2013-04-19 Pedro Alves <palves@redhat.com>
6439
6440 * mep-tdep.c (mep_get_insn): Change 'insn' parameter type to
6441 unsigned long *.
6442
6443 2013-04-19 Pedro Alves <palves@redhat.com>
6444
6445 * alpha-tdep.c (heuristic_fence_post): Change type to int.
6446 (alpha_heuristic_proc_start): Adjust to check -1 instead of
6447 UINT_MAX.
6448 * mips-tdep.c (heuristic_fence_post): Change type to int.
6449 (heuristic_proc_start): Adjust to check -1 instead of UINT_MAX.
6450
6451 2013-04-19 Pedro Alves <palves@redhat.com>
6452
6453 * cris-tdep.c (usr_cmd_cris_version): Make unsigned.
6454 (struct gdbarch_tdep) <cris_version>: Make unsigned.
6455 (cris_spec_reg_applicable, cris_gdbarch_init): Adjust locals.
6456
6457 2013-04-19 Pedro Alves <palves@redhat.com>
6458
6459 * avr-tdep.c (avr_io_reg_read_command): New local 'bufstr'. Use
6460 it to get a string view of the byte buffer.
6461 * i386-cygwin-tdep.c (core_process_module_section): Change local 'buf'
6462 type to gdb_byte *. Adjust.
6463 * linux-tdep.c (linux_info_proc, linux_find_memory_regions_full):
6464 Change local to char *.
6465 * solib-darwin.c (find_program_interpreter): Change return type to
6466 char *. Adjust.
6467 (darwin_solib_get_all_image_info_addr_at_init): Adjust.
6468 * solib-dsbt.c (enable_break2): Change local 'buf' to char *.
6469 * solib-frv.c (enable_break2): Change local 'buf' to char *.
6470 * solib-spu.c (spu_current_sos): Add gdb_byte * cast.
6471 * solib-svr4.c (find_program_interpreter): Change return type to
6472 char *. Adjust.
6473 (enable_break): Change local 'interp_name' to char *.
6474 * spu-multiarch.c (spu_xfer_partial): Add cast to 'char *'.
6475 * spu-tdep.c (spu_pseudo_register_read_spu): Add cast to 'char *'.
6476 (spu_pseudo_register_write_spu): Use char for string buffer.
6477 Adjust.
6478 (info_spu_event_command, info_spu_signal_command): Add casts to
6479 'char *'.
6480
6481 2013-04-19 Pedro Alves <palves@redhat.com>
6482
6483 * aarch64-tdep.c (aarch64_default_breakpoint): Change type to
6484 gdb_byte[].
6485 (aarch64_breakpoint_from_pc): Change return type to gdb_byte *.
6486 * ada-lang.c (ada_value_assign): Use gdb_byte.
6487 * alphanbsd-tdep.c (sigtramp_retcode): Change type to gdb_byte[].
6488 (alphanbsd_sigtramp_offset): Use gdb_byte.
6489 * arm-linux-tdep.c (arm_linux_arm_le_breakpoint)
6490 (arm_linux_arm_be_breakpoint, eabi_linux_arm_le_breakpoint)
6491 (eabi_linux_arm_be_breakpoint, arm_linux_thumb_be_breakpoint)
6492 (arm_linux_thumb_le_breakpoint, arm_linux_thumb2_be_breakpoint)
6493 (arm_linux_thumb2_le_breakpoint): Change type to gdb_byte[].
6494 * arm-tdep.c (arm_stub_unwind_sniffer)
6495 (arm_displaced_init_closure): Use gdb_byte.
6496 (arm_default_arm_le_breakpoint, arm_default_arm_be_breakpoint)
6497 (arm_default_thumb_le_breakpoint)
6498 (arm_default_thumb_be_breakpoint): Change type to gdb_byte[].
6499 * arm-tdep.h (struct gdbarch_tdep) <arm_breakpoint,
6500 thumb_breakpoint, thumb2_breakpoint>: Change type to gdb_byte *.
6501 * arm-wince-tdep.c (arm_wince_le_breakpoint)
6502 (arm_wince_thumb_le_breakpoint): Change type to gdb_byte[].
6503 * armnbsd-tdep.c (arm_nbsd_arm_le_breakpoint)
6504 (arm_nbsd_arm_be_breakpoint, arm_nbsd_thumb_le_breakpoint)
6505 (arm_nbsd_thumb_be_breakpoint): Change type to gdb_byte[].
6506 * armobsd-tdep.c (arm_obsd_thumb_le_breakpoint)
6507 (arm_obsd_thumb_be_breakpoint): Change type to gdb_byte[].
6508 * cris-tdep.c (push_stack_item, cris_push_dummy_call)
6509 (cris_store_return_value, cris_extract_return_value): Use
6510 gdb_byte.
6511 (constraint): Change type of parameter to char * from signed
6512 char*. Use gdb_byte.
6513 * dwarf2loc.c (read_pieced_value, write_pieced_value): Change type
6514 of local buffer to gdb_byte *.
6515 * dwarf2read.c (read_index_from_section): Use gdb_byte.
6516 (create_dwp_hash_table): Change type of locals to gdb_byte *.
6517 (add_address_entry): Change type of local buffer to gdb_byte[].
6518 * frv-tdep.c (frv_adjust_breakpoint_address, find_func_descr)
6519 (frv_push_dummy_call): Use gdb_byte.
6520 * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code)
6521 (hppa_hpux_supply_ss_fpblock, hppa_hpux_supply_ss_wide)
6522 (hppa_hpux_supply_save_state): Use gdb_byte.
6523 * hppa-tdep.c (hppa32_push_dummy_call)
6524 (hppa64_convert_code_addr_to_fptr): Use gdb_byte.
6525 * ia64-tdep.c (extract_bit_field, replace_bit_field)
6526 (slotN_contents, replace_slotN_contents): Change type of parameter
6527 to gdb_byte *.
6528 (fetch_instruction, ia64_pseudo_register_write)
6529 (ia64_register_to_value, ia64_value_to_register)
6530 (ia64_extract_return_value, ia64_store_return_value)
6531 (ia64_push_dummy_call): Use gdb_byte.
6532 * m32c-tdep.c (m32c_return_value): Remove cast.
6533 * m68hc11-tdep.c (m68hc11_pseudo_register_write)
6534 (m68hc11_push_dummy_call, m68hc11_store_return_value): Use
6535 gdb_byte.
6536 * mipsnbsd-tdep.c (mipsnbsd_get_longjmp_target): Use gdb_byte.
6537 * mn10300-tdep.c (mn10300_store_return_value)
6538 (mn10300_breakpoint_from_pc, mn10300_push_dummy_call): Use
6539 gdb_byte.
6540 * moxie-tdep.c (moxie_process_readu): Use gdb_byte.
6541 (moxie_process_record): Remove casts.
6542 * ppc-ravenscar-thread.c (supply_register_at_address)
6543 (ppc_ravenscar_generic_store_registers): Use gdb_byte.
6544 * ravenscar-thread.c (get_running_thread_id): Use gdb_byte.
6545 * remote-m32r-sdi.c (m32r_fetch_register): Use gdb_byte.
6546 * remote-mips.c (mips_xfer_memory): Use gdb_byte.
6547 * remote.c (compare_sections_command): Use gdb_byte.
6548 * score-tdep.c (score7_free_memblock): Change type of parameter to
6549 gdb_byte *.
6550 * sh-tdep.c (sh_justify_value_in_reg): Change return type to
6551 gdb_byte *. Use gdb_byte.
6552 (sh_push_dummy_call_fpu): Use gdb_byte.
6553 (sh_extract_return_value_nofpu, sh_extract_return_value_fpu)
6554 (sh_store_return_value_nofpu, sh_store_return_value_fpu)
6555 (sh_register_convert_to_virtual, sh_register_convert_to_raw):
6556 Change parameter type to 'gdb_byte *'. Use gdb_byte.
6557 (sh_pseudo_register_read, sh_pseudo_register_write): Use gdb_byte.
6558 * sh64-tdep.c (sh64_push_dummy_call): Use gdb_byte.
6559 (sh64_store_return_value, sh64_register_convert_to_virtual):
6560 Change parameter type to 'gdb_byte *'. Use gdb_byte.
6561 (sh64_pseudo_register_write): Use gdb_byte.
6562 * solib-darwin.c (darwin_current_sos): Add casts to 'gdb_byte *'.
6563 * solib-irix.c (fetch_lm_info): Likewise. Use gdb_byte for byte
6564 buffer.
6565 (irix_current_sos): Use gdb_byte.
6566 * solib-som.c (som_current_sos): Use gdb_byte.
6567 * sparc-ravenscar-thread.c (supply_register_at_address)
6568 (sparc_ravenscar_generic_store_registers): Use gdb_byte.
6569 * spu-multiarch.c (spu_xfer_partial): Add cast to 'char *'.
6570 * spu-tdep.c (spu_get_overlay_table): Use gdb_byte.
6571 * tic6x-tdep.c (tic6x_breakpoint_from_pc): Change return type to
6572 'gdb_byte *'.
6573 * tic6x-tdep.h (struct gdbarch_tdep) <breakpoint>: Change type to
6574 'gdb_byte *'.
6575 * tracepoint.c (tfile_fetch_registers): Use gdb_byte.
6576 * xstormy16-tdep.c (xstormy16_extract_return_value)
6577 (xstormy16_store_return_value): Change parameter type to
6578 'gdb_byte *'. Adjust.
6579 (xstormy16_push_dummy_call): Use gdb_byte.
6580 * xtensa-tdep.c (xtensa_scan_prologue, call0_ret)
6581 (call0_analyze_prologue, execute_code): Use gdb_byte.
6582
6583 2013-04-19 Vladimir Kargov <kargov@gmail.com>
6584 Pedro Alves <palves@redhat.com>
6585
6586 * i387-tdep.c (i387_print_float_info): Use gdb_byte for pointer to
6587 value contents.
6588
6589 2013-04-17 Doug Evans <dje@google.com>
6590
6591 * dwarf2read.c (struct signatured_type): New member type.
6592 (struct attribute): Replace member signatured_type with signature.
6593 (DW_SIGNATURE): Replaces DW_SIGNATURE_TYPE.
6594 (read_call_site_scope): Call follow_die_ref instead of
6595 follow_die_ref_or_sig.
6596 (read_structure_type): Rewrite handling of signatured types.
6597 (read_enumeration_type): Ditto.
6598 (read_attribute_value): Update.
6599 (build_error_marker_type): New function.
6600 (lookup_die_type): Add assert. Rewrite handling of signatured types.
6601 Don't call error for bad types, just build an error marker type.
6602 (dump_die_shallow): Update.
6603 (follow_die_sig_1): Renamed from follow_die_sig.
6604 Don't call error for bad types, instead return NULL.
6605 (follow_die_sig): New function.
6606 (get_signatured_type, get_DW_AT_signature_type): New functions.
6607
6608 2013-04-17 Yufeng Zhang <yufeng.zhang@arm.com>
6609
6610 * aarch64-tdep.c (aarch64_write_pc): Removed.
6611 (aarch64_gdbarch_init): Remove set_gdbarch_write_pc of the above
6612 function.
6613
6614 2013-04-17 Yao Qi <yao@codesourcery.com>
6615
6616 * top.c (print_gdb_configuration): Print configure-time
6617 parameter on using libbabeltrace or not.
6618
6619 2013-04-16 Pedro Alves <palves@redhat.com>
6620
6621 * copyright.py (EXCLUDE_LIST): Add gdb/common/glibc_thread_db.h.
6622
6623 2013-04-16 Pedro Alves <palves@redhat.com>
6624
6625 * common/glibc_thread_db.h: Update from upstream glibc
6626 (git 568035b7874a099087b77f7bba3e36a1173787b0).
6627
6628 2013-04-16 Pedro Alves <palves@redhat.com>
6629
6630 * common/gdb_thread_db.h [!HAVE_THREAD_DB_H]: Factor out to ...
6631 * common/glibc_thread_db.h: ... this new file ...
6632 * common/gdb_thread_db.h [!HAVE_THREAD_DB_H]: ... and include it.
6633
6634 2013-04-16 Will Newton <will.newton@gmail.com>
6635 Pedro Alves <palves@redhat.com>
6636
6637 PR build/11881
6638
6639 * common/gdb_thread_db.h (LIBTHREAD_DB_SO)
6640 (LIBTHREAD_DB_SEARCH_PATH): Move outside of #ifdef
6641 HAVE_THREAD_DB_H.
6642
6643 2013-04-16 Pedro Alves <palves@redhat.com>
6644 Eli Zaretskii <eliz@gnu.org>
6645
6646 * NEWS: Mention "set foo unlimited".
6647
6648 2013-04-15 Doug Evans <dje@google.com>
6649
6650 * dwarf2read.c (struct dwo_file): Replace member "cus" with "cu".
6651 (struct create_dwo_cu_data): Renamed from create_dwo_info_table_data.
6652 (create_dwo_cu_reader): Renamed from
6653 create_dwo_debug_info_hash_table_reader.
6654 (create_dwo_cu): Renamed from create_dwo_debug_info_hash_table.
6655 Remove support for multiple CUs in a DWO file.
6656 (open_and_init_dwo_file, lookup_dwo_cutu): Update.
6657
6658 * dwarf2read.c (create_debug_types_hash_table): Use hex_string
6659 instead of phex.
6660 (lookup_dwo_unit, create_dwo_debug_info_hash_table_reader): Ditto.
6661 (create_dwo_in_dwp): Ditto.
6662
6663 2013-04-15 Tom Tromey <tromey@redhat.com>
6664
6665 * NEWS: Move recent entries into "since 7.6" section.
6666
6667 2013-04-15 Tom Tromey <tromey@redhat.com>
6668
6669 PR c++/13588:
6670 * NEWS: Update.
6671 * break-catch-throw.c (struct exception_catchpoint)
6672 <exception_rx, pattern>: New fields.
6673 (fetch_probe_arguments, dtor_exception_catchpoint)
6674 (check_status_exception_catchpoint)
6675 (print_one_detail_exception_catchpoint): New functions.
6676 (handle_gnu_v3_exceptions): Add "except_rx" argument.
6677 Compile regular expression if needed.
6678 (extract_exception_regexp): New function.
6679 (catch_exception_command_1): Use extract_exception_regexp.
6680 (compute_exception): Use fetch_probe_arguments.
6681 (initialize_throw_catchpoint_ops): Set dtor, print_one_detail,
6682 and check_status fields.
6683 * cp-abi.c (cplus_typename_from_type_info): New function.
6684 * cp-abi.h (cplus_typename_from_type_info): Declare.
6685 (struct cp_abi_ops) <get_typename_from_type_info>: New field.
6686 * gdb_regex.h (compile_rx_or_error): Declare.
6687 * gnu-v3-abi.c (gnuv3_get_typename_from_type_info): Update
6688 comment.
6689 (init_gnuv3_ops): Set get_type_from_type_info field.
6690 * probe.c (compile_rx_or_error): Move...
6691 * utils.c (compile_rx_or_error): ... here.
6692
6693 2013-04-15 Tom Tromey <tromey@redhat.com>
6694
6695 PR c++/15176:
6696 * NEWS: Update.
6697 * break-catch-throw.c (compute_exception): New function.
6698 (exception_funcs): New global.
6699 (_initialize_break_catch_throw): Create $_exception.
6700 * cp-abi.c (cplus_type_from_type_info): New function.
6701 * cp-abi.h (cplus_type_from_type_info): Declare.
6702 (struct cp_abi_ops) <get_type_from_type_info>: New field.
6703 * gnu-v3-abi.c (gnuv3_get_typename_from_type_info)
6704 (gnuv3_get_type_from_type_info): New functions.
6705 (init_gnuv3_ops): Set get_type_from_type_info ABI field.
6706
6707 2013-04-15 Tom Tromey <tromey@redhat.com>
6708
6709 * break-catch-throw.c (struct exception_names): New.
6710 (exception_functions): Change type.
6711 (re_set_exception_catchpoint): Look for SDT probes.
6712
6713 2013-04-15 Tom Tromey <tromey@redhat.com>
6714
6715 PR c++/10119:
6716 * break-catch-throw.c (exception_functions): New global.
6717 (gnu_v3_exception_catchpoint_ops): Move earlier.
6718 (struct exception_catchpoint): New.
6719 (classify_exception_breakpoint): Rewrite.
6720 (re_set_exception_catchpoint): New function.
6721 (handle_gnu_v3_exceptions): Return void. Use init_catchpoint.
6722 Allocate a struct exception_catchpoint.
6723 (catch_exception_command_1): Update.
6724 (initialize_throw_catchpoint_ops): Set 're_set' method.
6725
6726 2013-04-15 Tom Tromey <tromey@redhat.com>
6727
6728 * Makefile.in (SFILES): Add break-catch-throw.c
6729 (COMMON_OBS): Add break-catch-throw.o.
6730 * break-catch-throw.c: New file.
6731 * breakpoint.c: Move exception-catching code to new file.
6732 (ep_parse_optional_if_clause): No longer static.
6733 * breakpoint.h (ep_parse_optional_if_clause): Declare.
6734
6735 2013-04-15 Tom Tromey <tromey@redhat.com>
6736
6737 PR c++/9065:
6738 * NEWS: Update.
6739 * breakpoint.c (watchpoint_exp_is_const): Add OP_TYPEID.
6740 * c-exp.y (TYPEID): New token.
6741 (exp): Add new TYPEID productions.
6742 (ident_tokens): Add "typeid".
6743 * cp-abi.c (cplus_typeid, cplus_typeid_type): New functions.
6744 * cp-abi.h (cplus_typeid, cplus_typeid_type): Declare.
6745 (struct cp_abi_ops) <get_typeid, get_typeid_type>: New fields.
6746 * eval.c (evaluate_subexp_standard) <OP_TYPEID>: New case.
6747 * expprint.c (dump_subexp_body_standard) <OP_TYPEID>: New
6748 case.
6749 * gnu-v3-abi.c (std_type_info_gdbarch_data): New global.
6750 (build_std_type_info_type, gnuv3_get_typeid_type)
6751 (gnuv3_get_typeid): New functions.
6752 (init_gnuv3_ops): Initialize std_type_info_gdbarch_data. Set
6753 new fields on ABI object.
6754 * parse.c (operator_length_standard) <OP_TYPEID>: New case.
6755 * std-operator.def (OP_TYPEID): New.
6756
6757 2013-04-15 Tom Tromey <tromey@redhat.com>
6758
6759 * elfread.c (elf_symtab_read): Install versioned symbol under
6760 unversioned name as well.
6761
6762 2013-04-15 Tom Tromey <tromey@redhat.com>
6763
6764 PR c++/11990:
6765 * c-lang.c (cplus_language_defn): Use gdb_demangle.
6766 * c-typeprint.c (c_type_print_base): Use gdb_demangle.
6767 * cp-support.c (mangled_name_to_comp): Use gdb_demangle.
6768 (gdb_demangle): New function.
6769 * cp-support.h (gdb_demangle): Declare.
6770 * dwarf2read.c (dwarf2_physname, fixup_partial_die)
6771 (dwarf2_name): Use gdb_demangle.
6772 * gdbtypes.c (check_stub_method): Use gdb_demangle.
6773 * gnu-v3-abi.c (gnuv3_rtti_type): Strip @plt and version
6774 suffixes from name.
6775 (gnuv3_print_method_ptr): Use gdb_demangle.
6776 * jv-lang.c (java_demangle): Use gdb_demangle.
6777 * jv-typeprint.c (java_type_print_base): Use gdb_demangle.
6778 * language.c (unk_lang_demangle): Use gdb_demangle.
6779 * symtab.c (symbol_find_demangled_name)
6780 (demangle_for_lookup): Use gdb_demangle.
6781
6782 2013-04-15 Tom Tromey <tromey@redhat.com>
6783
6784 PR c++/12824:
6785 * NEWS: Update.
6786 * breakpoint.c (enum exception_event_kind) <EX_EVENT_RETHROW>:
6787 New constant.
6788 (classify_exception_breakpoint): New function.
6789 (print_it_exception_catchpoint, print_one_exception_catchpoint)
6790 (print_mention_exception_catchpoint)
6791 (print_recreate_exception_catchpoint, handle_gnu_v3_exceptions)
6792 (catch_exception_command_1): Handle "rethrow" catchpoint.
6793 (catch_rethrow_command): New function.
6794 (_initialize_breakpoint): Add "catch rethrow" command.
6795
6796 2013-04-15 Pierre Muller <muller@sourceware.org>
6797
6798 * contrib/ari/gdb_ari.sh (write_pc rule): Do not consider
6799 set_gdbarch_write_pc as deprecated anymore.
6800
6801 2013-04-15 Joel Brobecker <brobecker@adacore.com>
6802
6803 * spu-tdep.c (spu_write_pc): Add empty line after local variable
6804 declarations.
6805
6806 2013-04-13 Yao Qi <yao@codesourcery.com>
6807
6808 * ctf.c (_initialize_ctf): Include "completer.h".
6809 Call add_target_with_completer instead of add_target.
6810
6811 2013-04-12 Jan Kratochvil <jan.kratochvil@redhat.com>
6812
6813 Fix GDB regression related to PR binutils/14813.
6814 * jit.c (mem_bfd_iovec_close): Return 0 for success.
6815 * minidebug.c (lzma_close): Add return value comment.
6816 * remote.c (remote_bfd_iovec_close): Return 0 for success.
6817 * solib-spu.c (spu_bfd_iovec_close): Likewise.
6818 * spu-linux-nat.c (spu_bfd_iovec_close): Likewise.
6819
6820 2013-04-12 Jan Kratochvil <jan.kratochvil@redhat.com>
6821
6822 * config.in: Regenerate.
6823
6824 2013-04-12 Tom Tromey <tromey@redhat.com>
6825
6826 * dwarf2-frame.c (struct comp_unit) <dwarf_frame_buffer>: Now
6827 const.
6828 * dwarf2read.c (struct dwarf2_section_info) <buffer>: Now const.
6829 (struct die_reader_specs) <buffer>: Likewise.
6830 (die_reader_func_ftype): Make 'info_ptr' const.
6831 (struct line_header) <include_dirs, statement_program_start,
6832 statement_program_end>: Now const.
6833 (struct file_entry) <name>: Likewise.
6834 (struct partial_die_info) <sibling>: Likewise.
6835 (struct dwarf_block) <data>: Likewise.
6836 (dwarf2_read_section): Remove cast.
6837 (dwarf2_get_section_info): Make 'bufp' const.
6838 (read_index_from_section): Constify.
6839 (dw2_get_file_names_reader): Make 'info_ptr' const.
6840 (dw2_get_primary_filename_reader): Likewise.
6841 (read_comp_unit_head): Make 'info_ptr' and return type const.
6842 (read_and_check_comp_unit_head, read_and_check_type_unit_head):
6843 Likewise.
6844 (read_abbrev_offset): Constify.
6845 (dwarf2_create_include_psymtab): Make 'name' const.
6846 (create_debug_types_hash_table): Update.
6847 (read_cutu_die_from_dwo): Make 'result_info_ptr' const.
6848 (init_cutu_and_read_dies, init_cutu_and_read_dies_no_follow):
6849 Constify.
6850 (process_psymtab_comp_unit_reader, build_type_psymtabs_reader)
6851 (load_partial_comp_unit_reader): Make 'info_ptr' const.
6852 (read_comp_units_from_section): Constify.
6853 (peek_abbrev_code, peek_die_abbrev, skip_children, skip_one_die)
6854 (locate_pdi_sibling, load_full_comp_unit_reader): Make 'info_ptr'
6855 const.
6856 (dwarf2_compute_name, setup_type_unit_groups): Constify.
6857 (create_dwo_debug_info_hash_table): Make 'info_ptr' const.
6858 (create_dwp_hash_table, dwarf2_ranges_read)
6859 (dwarf2_record_block_ranges): Constify.
6860 (read_die_and_children, read_die_and_siblings_1)
6861 (read_die_and_siblings): Make 'info_ptr' and 'new_info_ptr'
6862 const.
6863 (read_full_die_1, read_full_die): Make 'info_ptr' const.
6864 (abbrev_table_read_table): Constify.
6865 (load_partial_dies): Make 'info_ptr' const.
6866 (read_partial_die, read_attribute_value, read_attribute): Make
6867 'info_ptr' and return type const.
6868 (read_address, read_initial_length)
6869 (read_checked_initial_length_and_offset, read_offset)
6870 (read_offset_1, read_n_bytes, read_direct_string): Make 'buf'
6871 const.
6872 (read_direct_string): Make 'buf' and return type const.
6873 (read_indirect_string_at_offset, read_indirect_string_from_dwz)
6874 (read_indirect_string): Make return type const.
6875 (read_unsigned_leb128, read_signed_leb128): Make 'buf' const.
6876 (read_addr_index_from_leb128, dwarf2_read_addr_index_reader): Make
6877 'info_ptr' const.
6878 (read_str_index): Make return type const.
6879 (add_include_dir): Make 'include_dir' const.
6880 (add_file_name): Make 'name' const.
6881 (dwarf_decode_line_header): Constify.
6882 (psymtab_include_file_name): Make return type const.
6883 (dwarf_decode_lines_1, dwarf_decode_lines): Constify.
6884 (dwarf2_start_subfile): Make 'filename' const.
6885 (dwarf2_const_value_attr): Make 'bytes' const.
6886 (read_signatured_type_reader): Make 'info_ptr' const.
6887 (decode_locdesc): Constify.
6888 (skip_form_bytes): Make 'bytes', 'buffer_end', and return type
6889 const.
6890 (skip_unknown_opcode): Make 'opcode_definitions', 'mac_ptr',
6891 'mac_end', and return type const.
6892 (dwarf_parse_macro_header): Make 'mac_ptr' and return type const.
6893 (dwarf_decode_macro_bytes): Make 'mac_ptr', 'mac_end', and return
6894 type const.
6895 (per_cu_header_read_in): Constify.
6896 * symfile.h (dwarf2_get_section_info): Update.
6897
6898 2013-04-12 Tom Tromey <tromey@redhat.com>
6899
6900 * symtab.h (struct general_symbol_info) <value.bytes>: Make const.
6901
6902 2013-04-12 Eli Zaretskii <eliz@gnu.org>
6903
6904 * NEWS: Mention "show configuration", --configuration.
6905 * top.c (print_gdb_configuration): New function, displays the
6906 details about GDB configure-time parameters.
6907 (print_gdb_version): Mention "show configuration".
6908 * cli/cli-cmds.c (show_configuration): New function.
6909 (_initialize_cli_cmds): Add the "show configuration" command.
6910 * main.c (captured_main) <print_configuration>: New static var.
6911 <long_options>: Use it.
6912 If --configuration was given, call print_gdb_configuration.
6913
6914 2013-04-11 Jan Kratochvil <jan.kratochvil@redhat.com>
6915 Pedro Alves <palves@redhat.com>
6916
6917 * Makefile.in (HAVE_NATIVE_GCORE_TARGET): New.
6918 (generated_files): Add gcore.
6919 (install-only, uninstall): Add gcore if HAVE_NATIVE_GCORE_TARGET or
6920 HAVE_NATIVE_GCORE_HOST.
6921 (gcore): New.
6922 * NEWS (Changes since GDB 7.6): Mention newly installed gcore.
6923 * config/alpha/alpha-osf3.mh, config/i386/fbsd.mh,
6924 config/i386/fbsd64.mh, config/i386/i386gnu.mh, config/i386/i386sol2.mh,
6925 config/i386/sol2-64.mh, config/mips/irix5.mh, config/mips/irix6.mh,
6926 config/powerpc/fbsd.mh, config/sparc/fbsd.mh, config/sparc/sol2.mh:
6927 Add HAVE_NATIVE_GCORE_HOST.
6928 * configure: Regenerate.
6929 * configure.ac (HAVE_NATIVE_GCORE_TARGET): New, set it, AC_SUBST it.
6930 New AC_SUBST fir GDB_TRANSFORM_NAME and GCORE_TRANSFORM_NAME. New
6931 AC_CONFIG_FILES for gcore.
6932 * configure.tgt: Add gdb_have_gcore to the initial comment. Set
6933 gdb_have_gcore.
6934 * gdb_gcore.sh: Rename to ...
6935 * gcore.in: ... here. Remove gcore.sh comment. Use GDB_TRANSFORM_NAME
6936 and GCORE_TRANSFORM_NAME substitutions.
6937
6938 Fix parsing tabs in ${gdb_target_obs}.
6939 * configure.tgt (gdb_have_gcore): Replace case with for and if.
6940
6941 2013-04-11 Jan Kratochvil <jan.kratochvil@redhat.com>
6942
6943 * remote.c (unpush_and_perror): Add output message final dot.
6944
6945 2013-04-11 Yao Qi <yao@codesourcery.com>
6946
6947 * tracepoint.c (tfile_interp_line): Fit parameters line and
6948 utpp in one line.
6949
6950 2013-04-10 Joel Brobecker <brobecker@adacore.com>
6951
6952 * solib.c (solib_map_sections): Remove code overwriting
6953 SO->SO_NAME with the bfd's filename.
6954
6955 2013-04-10 Pedro Alves <palves@redhat.com>
6956
6957 * cli/cli-decode.c (integer_unlimited_completer): New function.
6958 (add_setshow_integer_cmd, add_setshow_uinteger_cmd)
6959 (add_setshow_zuinteger_unlimited_cmd): Install the "unlimited"
6960 completer.
6961 * cli/cli-setshow.c: Include "cli/cli-utils.h".
6962 (is_unlimited_literal): New function.
6963 (do_set_command): Handle literal "unlimited" arguments.
6964 * frame.c (_initialize_frame) <set backtrace limit>: Document
6965 "unlimited".
6966 * printcmd.c (_initialize_printcmd) <set print
6967 max-symbolic-offset>: Add help text.
6968 * record-full.c (_initialize_record_full) <set record full
6969 insn-number-max>: Likewise.
6970 * record.c (_initialize_record) <set record
6971 instruction-history-size, set record function-call-history-size>:
6972 Add help text.
6973 * ser-tcp.c (_initialize_ser_tcp) <set tcp connect-timeout>: Add
6974 help text.
6975 * tracepoint.c (_initialize_tracepoint) <set trace-buffer-size>:
6976 Likewise.
6977 * source.c (_initialize_source) <set listsize>: Add help text.
6978 * utils.c (initialize_utils) <set height, set width>: Likewise.
6979 <set pagination>: Mention "set height unlimited".
6980 * valprint.c (_initialize_valprint) <set print elements, set print
6981 repeats>: Document "unlimited".
6982
6983 2013-04-10 Pedro Alves <palves@redhat.com>
6984
6985 * cli/cli-cmds.c (quit_command): Call query_if_trace_running
6986 instead of disconnect_tracing.
6987 * infcmd.c (detach_command, disconnect_command): Call
6988 query_if_trace_running. Adjust.
6989 * top.c: Include "tracepoint.h".
6990 (quit_target): Delete. Contents moved ...
6991 (quit_force): ... here. Wrap each stage of teardown in
6992 TRY_CATCH. Call disconnect_tracing before detaching.
6993
6994 2013-04-10 Hui Zhu <hui@codesourcery.com>
6995 Yao Qi <yao@codesourcery.com>
6996
6997 * configure.ac: Check libbabeltrace is installed.
6998 * config.in: Regenerate.
6999 * configure: Regenerate.
7000 * Makefile.in (LIBBABELTRACE): New.
7001 (CLIBS): Add LIBBABELTRACE.
7002 * ctf.c: Include "exec.h".
7003 (CTF_EVENT_ID_STATUS, CTF_EVENT_ID_TSV_DEF): New macros.
7004 (CTF_EVENT_ID_TP_DEF, ctf_save_write_int32): New macros.
7005 (ctf_save_metadata_header): Define new type aliases in
7006 metadata.
7007 (ctf_write_header): Define event type "tsv_def" and "tp_def"
7008 in metadata. Start a new faked packet for trace status.
7009 (ctf_write_status): Write trace status to CTF.
7010 (ctf_write_uploaded_tsv): Write TSV to CTF.
7011 (ctf_write_uploaded_tp): Write tracepoint definition to CTF.
7012 (ctf_write_definition_end): End the faked packet.
7013
7014 (ctx, ctf_iter, trace_dirname): New.
7015 (start_pos): New variable.
7016 (ctf_destroy, ctf_open_dir, ctf_open): New.
7017 (SET_INT32_FIELD, SET_ARRAY_FIELD, SET_STRING_FIELD): New
7018 macros.
7019 (ctf_read_tsv, ctf_read_tp, ctf_close, ctf_files_info): New.
7020 (ctf_fetch_registers, ctf_xfer_partial): New.
7021 (ctf_get_trace_state_variable_value): New.
7022 (ctf_get_tpnum_from_frame_event): New.
7023 (ctf_get_traceframe_address): New.
7024 (ctf_trace_find, ctf_has_stack): New.
7025 (ctf_has_registers, ctf_traceframe_info, init_ctf_ops): New.
7026 (ctf_get_trace_status, ctf_read_status): New.
7027 (_initialize_ctf): New.
7028 * tracepoint.c (get_tracepoint_number): New
7029 (get_uploaded_tsv): Remove 'static'.
7030 (struct traceframe_info, trace_regblock_size): Move it to ...
7031 * tracepoint.h: ... here.
7032 (get_tracepoint_number): Declare it.
7033 (get_uploaded_tsv): Declare it.
7034
7035 * NEWS: Mention new configure option.
7036
7037 2013-04-10 Pedro Alves <palves@redhat.com>
7038 Hui Zhu <hui@codesourcery.com>
7039
7040 * breakpoint.c (dprintf_re_set): New.
7041 (initialize_breakpoint_ops): Set dprintf_breakpoint_ops re_set
7042 to dprintf_re_set.
7043
7044 2013-04-09 Joel Brobecker <brobecker@adacore.com>
7045
7046 * configure.tgt (gdb_target_obs) <powerpc-*-aix* | rs6000-*-*>:
7047 Remove solib-svr4.o from the list.
7048
7049 2013-04-09 Joel Brobecker <brobecker@adacore.com>
7050
7051 * varobj.c (update_dynamic_varobj_children) [!HAVE_PYTHON]:
7052 Use gdb_assert_not_reached instead of invalid boolean expression.
7053
7054 2013-04-09 Pedro Alves <palves@redhat.com>
7055
7056 * remote.c (unpush_and_perror): New function.
7057 (readchar, remote_serial_write): Use it.
7058
7059 2013-04-09 Markus Metzger <markus.t.metzger@intel.com>
7060
7061 * NEWS: Mention new btrace RSP packets.
7062
7063 2013-04-08 Tom Tromey <tromey@redhat.com>
7064
7065 * symmisc.c (dump_msymbols): Cast fprintf_filtered argument to
7066 long.
7067
7068 2013-04-08 Tom Tromey <tromey@redhat.com>
7069
7070 * maint.c (print_bfd_section_info): Print the section index.
7071 * symmisc.c (dump_msymbols): Print the section index.
7072
7073 2013-04-08 Tom Tromey <tromey@redhat.com>
7074
7075 PR symtab/8424:
7076 * blockframe.c (find_pc_partial_function_gnu_ifunc): Check
7077 SYMBOL_SECTION, not SYMBOL_OBJ_SECTION.
7078 * breakpoint.c (resolve_sal_pc): Update.
7079 * elfread.c (elf_gnu_ifunc_record_cache): Update.
7080 * findvar.c (struct minsym_lookup_data) <objfile>: New field.
7081 (minsym_lookup_iterator_cb): Use it.
7082 (default_read_var_value): Update.
7083 * hppa-hpux-tdep.c (hppa64_hpux_in_solib_call_trampoline):
7084 Update.
7085 * infcmd.c (jump_command): Update.
7086 * linespec.c (minsym_found): Update.
7087 * maint.c (maintenance_translate_address): Update.
7088 * minsyms.c (lookup_minimal_symbol_by_pc_section_1): Update.
7089 (prim_record_minimal_symbol_full): Don't set SYMBOL_OBJ_SECTION.
7090 * parse.c (write_exp_msymbol): Update.
7091 * printcmd.c (address_info): Update.
7092 * psymtab.c (find_pc_sect_psymbol): Update.
7093 (fixup_psymbol_section): Check SYMBOL_SECTION, not
7094 SYMBOL_OBJ_SECTION.
7095 (add_psymbol_to_bcache): Correctly initialize SYMBOL_SECTION.
7096 Don't initialize SYMBOL_OBJ_SECTION.
7097 * spu-tdep.c (spu_catch_start): Update.
7098 * stabsread.c (define_symbol): Don't set SYMBOL_SECTION.
7099 * symmisc.c (dump_msymbols, print_symbol): Update.
7100 * symtab.c (fixup_section): Don't set 'obj_section'. Change
7101 how fallback section is computed.
7102 (fixup_symbol_section): Update.
7103 (find_pc_sect_symtab, find_function_start_sal, skip_prologue_sal):
7104 Update.
7105 (allocate_symbol, initialize_symbol, allocate_template_symbol):
7106 Initialize SYMBOL_SECTION.
7107 * symtab.h (struct general_symbol_info) <section>: Update comment.
7108 <obj_section>: Remove.
7109 (SYMBOL_OBJ_SECTION): Add 'objfile' argument. Rewrite.
7110 (SYMBOL_OBJFILE): New macro.
7111
7112 2013-04-08 Tom Tromey <tromey@redhat.com>
7113
7114 * coffread.c (record_minimal_symbol): Update.
7115 * dbxread.c (record_minimal_symbol): Update.
7116 * elfread.c (record_minimal_symbol): Update.
7117 * machoread.c (macho_symtab_add_minsym): Update.
7118 * mdebugread.c (record_minimal_symbol, parse_partial_symbols):
7119 Update.
7120 * minsyms.c (prim_record_minimal_symbol): Update.
7121 (prim_record_minimal_symbol_full): Remove 'bfd_section'
7122 argument.
7123 (prim_record_minimal_symbol_and_info): Likewise.
7124 * minsyms.h (prim_record_minimal_symbol_full)
7125 (prim_record_minimal_symbol_and_info): Update.
7126 * symtab.c (allocate_symbol, initialize_symbol)
7127 (allocate_template_symbol): Initialize SYMBOL_SECTION.
7128 * xcoffread.c (record_minimal_symbol, scan_xcoff_symtab):
7129 Update.
7130
7131 2013-04-08 Tom Tromey <tromey@redhat.com>
7132
7133 PR symtab/8423:
7134 * solib-som.c (som_solib_section_offsets): Use BFD section
7135 indices. Set offsets for all sections.
7136 * somread.c (som_symtab_read): Compute BFD section for
7137 symbol. Use prim_record_minimal_symbol_and_info.
7138 (som_symfile_read): Fix comment.
7139 (struct find_section_offset_arg): New.
7140 (find_section_offset, set_section_index): New functions.
7141 (som_symfile_offsets): Use set_section_index to compute
7142 section indices.
7143
7144 2013-04-08 Tom Tromey <tromey@redhat.com>
7145
7146 * coffread.c (cs_to_section): Use gdb_bfd_section_index.
7147 * elfread.c (record_minimal_symbol, elf_symtab_read): Use
7148 gdb_bfd_section_index.
7149 * gdb_bfd.c (gdb_bfd_section_index, gdb_bfd_count_sections):
7150 New functions.
7151 * gdb_bfd.h (gdb_bfd_section_index, gdb_bfd_count_sections):
7152 Declare.
7153 * machoread.c (macho_symtab_add_minsym, macho_symfile_offsets):
7154 Update.
7155 * objfiles.c (add_to_objfile_sections_full): New function.
7156 (add_to_objfile_sections): Use it.
7157 (build_section_table): Rewrite.
7158 (objfile_relocate1): Use gdb_bfd_section_index. Update.
7159 * objfiles.h (obj_section_offset): Use gdb_bfd_section_index.
7160 (struct objfile) <sections>: Update comment.
7161 (ALL_OBJFILE_OSECTIONS): Skip sections where the_bfd_section
7162 is NULL.
7163 (ALL_OBJSECTIONS): Use it.
7164 * solib-dsbt.c (dsbt_relocate_main_executable): Update.
7165 * solib-frv.c (frv_relocate_main_executable): Update.
7166 * solib-target.c (solib_target_relocate_section_addresses):
7167 Use gdb_bfd_section_index.
7168 * symfile.c (build_section_addr_info_from_section_table):
7169 Use gdb_bfd_section_index.
7170 (build_section_addr_info_from_bfd, place_section): Likewise.
7171 * symtab.c (fixup_section): Update.
7172 * xcoffread.c (find_targ_sec): Use gdb_bfd_section_index.
7173
7174 2013-04-08 Tom Tromey <tromey@redhat.com>
7175
7176 * minsyms.h (struct bound_minimal_symbol): New.
7177 (lookup_minimal_symbol_and_objfile): Return bound_minimal_symbol.
7178 Remove objfile argument.
7179 (lookup_minimal_symbol_by_pc_section, lookup_minimal_symbol_by_pc):
7180 Return bound_minimal_symbol.
7181 * minsyms.c (lookup_minimal_symbol_by_pc_1)
7182 (lookup_minimal_symbol_by_pc_section, lookup_minimal_symbol_by_pc):
7183 Return bound_minimal_symbol.
7184 (in_gnu_ifunc_stub): Update.
7185 (lookup_minimal_symbol_and_objfile): Return bound_minimal_symbol.
7186 Remove 'objfile_p' argument.
7187 (lookup_solib_trampoline_symbol_by_pc): Update.
7188 * ada-tasks.c, amd64-windows-tdep.c, arm-tdep.c,
7189 arm-wince-tdep.c, block.c, blockframe.c, breakpoint.c, btrace.c,
7190 c-valprint.c, dwarf2loc.c, elfread.c, frame.c, frv-tdep.c,
7191 glibc-tdep.c, gnu-v2-abi.c, gnu-v3-abi.c, hppa-hpux-tdep.c,
7192 i386-tdep.c, ia64-tdep.c, infcall.c, infcmd.c, jit.c,
7193 linux-fork.c, m32c-tdep.c, m68hc11-tdep.c, maint.c,
7194 mips-tdep.c, p-valprint.c, parse.c, ppc-linux-tdep.c,
7195 ppc-sysv-tdep.c, printcmd.c, rs6000-tdep.c, sh64-tdep.c,
7196 stack.c, symtab.c, tui/tui-disasm.c: Update.
7197
7198 2013-04-08 Tom Tromey <tromey@redhat.com>
7199
7200 * ada-lang.c (ada_decode_symbol): Check and set 'ada_mangled'.
7201 Use symbol's obstack, not an objfile.
7202 * coffread.c (process_coff_symbol): Update.
7203 * dwarf2read.c (fixup_go_packaging, new_symbol_full): Update.
7204 * jv-lang.c (add_class_symbol): Update.
7205 * mdebugread.c (new_symbol): Update.
7206 * minsyms.c (prim_record_minimal_symbol_full)
7207 (terminate_minimal_symbol_table): Update.
7208 * psymtab.c (add_psymbol_to_bcache): Clear entire symbol. Update.
7209 * stabsread.c (define_symbol, read_enum_type): Update.
7210 * symtab.c (symbol_set_demangled_name, symbol_get_demangled_name):
7211 Handle Ada specially.
7212 (symbol_set_language): Add 'obstack' argument.
7213 (symbol_set_names): Update.
7214 (symbol_natural_name, symbol_demangled_name): Always use
7215 ada_decode_symbol.
7216 * symtab.h (struct general_symbol_info)
7217 <language_specific::obstack>: New field.
7218 <ada_mangled>: New field.
7219 (SYMBOL_SET_LANGUAGE): Add 'obstack' argument.
7220 (symbol_set_language): Update.
7221
7222 2013-04-08 Tom Tromey <tromey@redhat.com>
7223
7224 * symtab.c (symbol_init_cplus_specific, symbol_set_demangled_name):
7225 Take an obstack, not an objfile.
7226 (symbol_set_names): Update.
7227 * symtab.h (symbol_set_demangled_name): Update.
7228
7229 2013-04-08 Tom Tromey <tromey@redhat.com>
7230
7231 * coffread.c (process_coff_symbol, coff_read_enum_type): Call
7232 allocate_symbol.
7233 * dwarf2read.c (fixup_go_packaging): Call allocate_symbol.
7234 (read_func_scope): Call allocate_template_symbol.
7235 (new_symbol_full): Call allocate_symbol.
7236 * jit.c (finalize_symtab): Call allocate_symbol.
7237 * jv-lang.c (add_class_symbol): Call allocate_symbol.
7238 * mdebugread.c (parse_symbol, new_block): Call allocate_symbol.
7239 * stabsread.c (patch_block_stabs, define_symbol, read_enum_type)
7240 (common_block_end): Call allocate_symbol.
7241 * symtab.c (allocate_symbol, initialize_symbol)
7242 (allocate_template_symbol): New functions.
7243 * symtab.c (allocate_symbol, initialize_symbol)
7244 (allocate_template_symbol): Declare.
7245 * xcoffread.c (process_xcoff_symbol): Call initialize_symbol.
7246
7247 2013-04-08 Pedro Alves <palves@redhat.com>
7248 Keith Seitz <keiths@redhat.com>
7249
7250 * breakpoint.c (create_breakpoint): Rename
7251 "parse_condition_and_thread" parameter to "parse_arg". Update
7252 describing comment. If !PARSE_ARG, then error out if ARG is not
7253 the empty string after extracting the location.
7254 * breakpoint.h (create_breakpoint): Rename
7255 "parse_condition_and_thread" parameter to "parse_arg".
7256
7257 2013-04-08 Aleksandar Ristovski <aristovski@qnx.com
7258
7259 * solib-svr4.c (lm_addr_check): Add const qualifier to 'so' arg.
7260
7261 2013-04-07 Yao Qi <yao@codesourcery.com>
7262
7263 * remote.c (remote_trace_find): Change type of parameters 'addr1'
7264 and 'addr2' to CORE_ADDR.
7265 * target.c (update_current_target): Update.
7266 * target.h (struct target_ops) <to_trace_find>: Change parameter
7267 type to CORE_ADDR.
7268 * tracepoint.c (tfind_1): Change type of parameters 'addr1' and
7269 'addr2' to CORE_ADDR.
7270 (tfile_trace_find): Likewise.
7271 (tfile_get_traceframe_address): Change return type to CORE_ADDR.
7272 Change local variable 'addr' to type CORE_ADDR.
7273 * tracepoint.h (tfind_1): Update declaration.
7274
7275 2013-04-06 Eli Zaretskii <eliz@gnu.org>
7276
7277 * windows-nat.c (windows_get_absolute_argv0): Move from here...
7278 * mingw-hdep.c (windows_get_absolute_argv0): ...to here.
7279 Include main.h.
7280
7281 * windows-nat.h (windows_get_absolute_argv0): Move prototype from
7282 here...
7283 * main.h (windows_get_absolute_argv0): ...to here.
7284
7285 2013-04-05 Doug Evans <dje@google.com>
7286
7287 * dwarf2read.c (struct dwarf2_per_objfile): Tweak comment.
7288 (read_cutu_die_from_dwo): Add comments.
7289 (read_structure_type): Update comment.
7290 (read_enumeration_type, read_namespace_type): Update comment.
7291 (read_die_type, get_die_type_at_offset, get_die_type): Update comment.
7292
7293 2013-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
7294
7295 Convert man pages to texinfo, new gdbinit.5 texinfo page.
7296 * Makefile.in (gdb.z): Remove.
7297 (install-only): Remove $(man1dir) and gdb.1 installation.
7298 * gdb.1: Remove.
7299
7300 2013-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
7301
7302 Fix compatibility with Linux kernel 3.8.3.
7303 * linux-tdep.c (linux_find_memory_regions_full): Move variable number
7304 to more inner block. Remove parsing of NUMBER from outer block.
7305 Parse NUMBER only if KEYWORD has been identified.
7306
7307 2013-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
7308
7309 Fix variable name shadowing.
7310 * linux-tdep.c (linux_find_memory_regions_full): Rename outer variable
7311 filename to mapsfilename and update its uses.
7312
7313 2013-04-05 Eli Zaretskii <eliz@gnu.org>
7314
7315 * Makefile.in (TAGS): Avoid warning from etags when $GDB_NM_FILE is
7316 empty. See http://sourceware.org/ml/gdb-patches/2012-08/msg00504.html
7317 and http://sourceware.org/ml/gdb-patches/2013-04/msg00055.html for
7318 details of the problem.
7319
7320 2013-04-04 Pedro Alves <palves@redhat.com>
7321 Hui Zhu <hui@codesourcery.com>
7322
7323 * breakpoint.c (validate_commands_for_breakpoint): If validating a
7324 tracepoint, reset its STEP_COUNT and call validate_actionline.
7325
7326 2013-04-03 Doug Evans <dje@google.com>
7327
7328 * dwarf2read.c (read_die_and_siblings_1): Renamed from
7329 read_die_and_siblings.
7330 (read_die_and_siblings): New function.
7331 (read_cutu_die_from_dwo): Dump die if requested.
7332 (read_die_and_children): Call read_full_die_1 and
7333 read_die_and_siblings_1.
7334 (read_full_die): Dump die if requested.
7335
7336 * dwarf2read.c (read_comp_units_from_section): Add debugging printf.
7337
7338 * dwarf2read.c (struct dwo_file): New member comp_dir.
7339 Rename member name to dwo_name. All uses updated.
7340 (hash_dwo_file): Include comp_dir in computation.
7341 (eq_dwo_file): Ditto.
7342 (lookup_dwo_file_slot): New arg comp_dir. All callers updated.
7343 (create_dwo_in_dwp, lookup_dwo_in_dwp, open_and_init_dwo_file): Ditto.
7344
7345 * psymtab.c (read_psymtabs_with_fullname): Don't call
7346 psymtab_to_fullname if the basenames are different.
7347
7348 2013-04-03 Jan Kratochvil <jan.kratochvil@redhat.com>
7349
7350 * NEWS (Changes in GDB 7.6): Update the data-disassemble for "fullname".
7351 New entry about "fullname" presence.
7352
7353 2013-04-03 Pedro Alves <palves@redhat.com>
7354
7355 * NEWS: Mention x86_64/Cygwin as new native configuration.
7356
7357 2013-04-02 Doug Evans <dje@google.com>
7358
7359 * dwarf2read.c (read_structure_type): Fix typo in comment.
7360
7361 2013-04-02 Pedro Alves <palves@redhat.com>
7362
7363 * NEWS: Mention "set/show debug aarch64", "set/show debug
7364 coff-pe-read" and "set/show debug mach-o".
7365
7366 2013-04-02 Pedro Alves <palves@redhat.com>
7367
7368 * NEWS: Mention "set/show remote trace-buffer-size-packet".
7369
7370 2013-04-02 Eli Zaretskii <eliz@gnu.org>
7371
7372 * Makefile.in (HFILES_NO_SRCDIR): Remove call-cmds.h.
7373 gdb_string.h is now in common/.
7374
7375 2013-04-02 Pedro Alves <palves@redhat.com>
7376
7377 * NEWS: Move "set debug notification" and "set trace-buffer-size"
7378 under "New options".
7379
7380 2013-04-02 Jan Kratochvil <jan.kratochvil@redhat.com>
7381
7382 Revert this patch:
7383 PR gdb/15275
7384 * remote.c (remote_get_trace_status): Include putpkt in TRY_CATCH.
7385
7386 2013-04-02 Pedro Alves <palves@redhat.com>
7387
7388 PR gdb/15275
7389
7390 * remote.c (send_interrupt_sequence): Use remote_serial_write.
7391 (remote_serial_write): New function.
7392 (putpkt_binary, getpkt_or_notif_sane_1): Use remote_serial_write.
7393
7394 2013-04-01 Jiong Wang <jiwang@tilera.com>
7395
7396 * NEWS: Mention TILE-Gx in "New native configurations" and
7397 "New targets" sections.
7398
7399 2013-04-01 Doug Evans <dje@google.com>
7400
7401 * dwarf2read.c (lookup_signatured_type_at_offset): Delete.
7402 (process_enumeration_scope): Simplify.
7403
7404 * dwarf2read.c (struct dwarf2_per_cu_data): Move member
7405 type_unit_group ...
7406 (struct signatured_type): ... to here.
7407 (sig_type_ptr): New typedef.
7408 (type_unit_group): Delete member 't.first_cu'. Move member 'tus'
7409 out of union 't'. All uses updated.
7410 (dw2_get_file_names_reader): Assert not called for a type unit.
7411 (dw2_get_file_names): Assert not called for a type unit or type
7412 unit group.
7413 (build_type_psymtabs_reader): Assert called for a type unit.
7414 (build_type_psymtab_dependencies): Assert called for a type unit group.
7415
7416 * dwarf2read.c (free_dwo_file): Add comment.
7417 (dwarf2_per_objfile_free): Unref dwp bfd.
7418
7419 2013-04-01 Aleksandar Ristovski <aristovski@qnx.com>
7420
7421 * coff-pe-read.c (add_pe_exported_sym): Remove unused 'dll_name_len'.
7422 (add_pe_forwarded_sym): Remove unused 'section', 'dll_name_len'.
7423 (read_pe_exported_syms): Remove unused 'exportix'.
7424 (pe_text_section_offset): Remove unused 'opthdr_ofs', 'num_entries',
7425 'export_rva', 'export_size', 'expptr', 'exp_funcbase', 'expdata',
7426 'erva', 'name_rvas', 'ordinals', 'nexp', 'ordbase', 'dll_name'.
7427
7428 2013-04-01 Aleksandar Ristovski <aristovski@qnx.com>
7429
7430 * breakpoint.c (parse_cond_to_aexpr): Remove unused 'old_chain'.
7431 (print_it_watchpoint): Remove unused 'bl'.
7432 (say_where): Remove unused 'uiout'.
7433 (bpstat_remove_breakpoint_callback): Remove unused 'uiout'.
7434 (bkpt_breakpoint_hit): Remove unused 'b'.
7435 (internal_bkpt_print_it): Remove unused 'uiout'.
7436 * buildsym.c (augment_type_symtab): Remove unused 'i'.
7437
7438 2013-03-31 Tiago Stürmer Daitx <tdaitx@linux.vnet.ibm.com>
7439
7440 * ppc-sysv-tdep.c (ppc64_sysv_abi_push_float): New function.
7441 (ppc64_sysv_abi_push_dummy_call): Handle complex arguments.
7442
7443 2013-03-29 Doug Evans <dje@google.com>
7444
7445 * dwarf2read.c (open_dwo_file): Renamed from open_dwop_file.
7446 Delete arg is_dwp. All callers updated.
7447 (open_dwp_file): New function.
7448 (open_and_init_dwp_file): Call it.
7449 (get_dwp_file): New function.
7450 (lookup_dwo_cutu): Call it.
7451
7452 * dwarf2read.c (open_and_init_dwp_file): Remove incorrect, and
7453 unnecessary, cleanup.
7454
7455 * dwarf2read.c (lookup_dwo_cutu): Improve complaint text.
7456
7457 * dwarf2read.c (read_cutu_die_from_dwo): New function.
7458 (lookup_dwo_unit): New function.
7459 (init_cutu_and_read_dies): Move DWO handling to new functions.
7460
7461 * dwarf2read.c (struct signatured_type): Tweak comment.
7462 (struct dwo_unit): Tweak comment.
7463 (create_debug_types_hash_table): Tweak comment. Reformat long line.
7464 (create_dwo_debug_info_hash_table): Tweak comment.
7465 (dwarf2_per_cu_offset_and_type): Tweak comment.
7466
7467 * dwarf2read.c (lookup_signatured_type): Remove complaint about
7468 missing .debug_types section.
7469
7470 2013-03-29 Yao Qi <yao@codesourcery.com>
7471
7472 * corelow.c: Include "completer.h".
7473 (_initialize_corelow): Call add_target_with_completer with
7474 argument 'filename_completer'.
7475 * tracepoint.c: Likewise.
7476 * exec.c (_initialize_exec): Likewise.
7477 * target.c (add_target): Rename to ...
7478 (add_target_with_completer): ... this. Call set_cmd_completer
7479 if parameter completer is not NULL.
7480 (add_target): New.
7481 * target.h: Include "command.h".
7482 (add_target_with_completer): Declare it.
7483
7484 2013-03-28 Joel Brobecker <brobecker@adacore.com>
7485
7486 * coffread.c (is_import_fixup_symbol): New function.
7487 (record_minimal_symbol): Use is_import_fixup_symbol to
7488 detect import fixup symbols, and discard them.
7489
7490 2013-03-28 Doug Evans <dje@google.com>
7491
7492 * dwarf2read.c (create_debug_types_hash_table): Don't allocate the
7493 types hash table until we know we need it.
7494
7495 * dwarf2read.c (create_addrmap_from_index): Complain about bad CU
7496 index numbers.
7497
7498 * dwarf2read.c (dw2_get_file_names): Delete arg "objfile".
7499 All callers updated.
7500 (dw2_print_stats): Print #read CUs too.
7501 (dump_die_shallow): Print signatured types better.
7502
7503 * dwarf2read.c (struct dwarf2_per_cu_data): Rename member
7504 info_or_types_section to section. All uses updated.
7505 (struct dwo_unit): Ditto.
7506
7507 2013-03-28 Pedro Alves <palves@redhat.com>
7508
7509 * NEWS (New options): New section.
7510 (New options): Mention set/show remote trace-status-packet.
7511 * remote.c (PACKET_qTStatus): New enumeration value.
7512 (remote_get_trace_status): Skip sending qTStatus if the packet is
7513 disabled. Use packet_ok.
7514 (_initialize_remote): Register a configuration command for
7515 qTStatus packet.
7516
7517 2013-03-28 Doug Evans <dje@google.com>
7518
7519 * symfile.c (find_separate_debug_file): Add comment.
7520 (terminate_after_last_dir_separator): Tweak comment.
7521
7522 * dwarf2read.c (create_partial_symtab): Add forward decl.
7523 (create_partial_symtab): Move to be closer to other psymtab functions.
7524 (process_psymtab_comp_unit_reader, process_psymtab_comp_unit): Ditto.
7525
7526 * dwarf2read.c (dwarf2_physname): Move declaration to better spot.
7527 (compute_symtab_includes): Remove unnecessary forward declaration.
7528 (die_needs_namespace): Add comment marking group of functions for
7529 dwarf2 name computation.
7530
7531 * typeprint.c (_initialize_typeprint): Improve type help text.
7532
7533 * python/python.c (finish_python_initialization): Provide suggestion
7534 for how to tell gdb to find its python files.
7535
7536 2013-03-28 Pedro Alves <palves@redhat.com>
7537
7538 PR gdb/15294
7539
7540 * source.c (_initialize_source): Change back "set listsize" to an
7541 integer command.
7542
7543 2013-03-27 Gareth McMullin <gareth@blacksphere.co.nz>
7544
7545 PR gdb/15275
7546 * remote.c (remote_get_trace_status): Include putpkt in TRY_CATCH.
7547
7548 2013-03-27 Pedro Alves <palves@redhat.com>
7549
7550 * top.c (history_size): Rename to ...
7551 (history_size_setshow_var): ... this. Add comment.
7552 (show_commands): Use readline's 'history_length' instead of
7553 computing the history length by calling history_get in a loop.
7554 (set_history_size_command): Error out for sizes over INT_MAX.
7555 Restore previous history size on invalid size.
7556 (init_history): If HISTSIZE is negative, leave the history size as
7557 zero. Add comments.
7558 (init_main): Adjust.
7559
7560 2013-03-27 Pedro Alves <palves@redhat.com>
7561
7562 * coff-pe-read.c (_initialize_coff_pe_read): Rename "set debug
7563 coff_pe_read" command to "set debug coff-pe-read".
7564
7565 2013-03-27 Markus Metzger <markus.t.metzger@intel.com>
7566
7567 * record.c (command_size_to_target_size): Fix size comparison.
7568 Change parameter type from pointer to integer to integer.
7569 Update all users.
7570
7571 2013-03-27 Pierre Muller <muller@sourceware.org>
7572
7573 * windows-nat.c (handle_output_debug_string): Avoid typecast
7574 from integer of different size warning.
7575
7576 2013-03-26 Joel Brobecker <brobecker@adacore.com>
7577
7578 * windows-nat.c (handle_output_debug_string): Add empty line
7579 after local block variable definition.
7580
7581 2013-03-26 Pedro Alves <palves@redhat.com>
7582
7583 * ser-tcp.c (wait_for_connect): Make 'polls' parameter unsigned.
7584 (net_open): Make 'polls' local unsigned.
7585
7586 2013-03-26 Pedro Alves <palves@redhat.com>
7587
7588 * remote.c (_initialize_remote): Make "set remoteaddresssize"
7589 a zuinteger command instead of uinteger.
7590
7591 2013-03-26 Pedro Alves <palves@redhat.com>
7592
7593 * record-full.c (record_full_insn_num): Make it unsigned.
7594 (record_full_check_insn_num, record_full_message)
7595 (record_full_registers_change, record_full_xfer_partial): Remove
7596 record_full_insn_max_num check (it's always != 0).
7597 (record_full_info, record_full_restore): Use %u as format string.
7598 (): Use %u as format string.
7599 (set_record_full_insn_max_num): Remove record_full_insn_max_num
7600 check (it's always != 0).
7601
7602 2013-03-26 Pedro Alves <palves@redhat.com>
7603
7604 * dcache.c (_initialize_dcache): Make the "set dcache line-size"
7605 and "set dcache size" commands zuinteger instead of uinteger.
7606
7607 2013-03-26 Pedro Alves <palves@redhat.com>
7608
7609 * cris-tdep.c (_initialize_cris_tdep): Make the "set cris-version"
7610 command zuinteger instead of uinteger.
7611
7612 2013-03-26 Pedro Alves <palves@redhat.com>
7613
7614 * coff-pe-read.c (_initialize_coff_pe_read): Make the command
7615 zuinteger instead of uinteger.
7616
7617 2013-03-26 Pedro Alves <palves@redhat.com>
7618
7619 * record.c (record_insn_history_size_setshow_var)
7620 (record_call_history_size_setshow_var): New globals.
7621 (command_size_to_target_size): New function.
7622 (cmd_record_insn_history, cmd_record_call_history): Use
7623 command_size_to_target_size instead of cast.
7624 (validate_history_size, set_record_insn_history_size)
7625 (set_record_call_history_size): New functions.
7626 (_initialize_record): Install set_record_insn_history_size and
7627 set_record_call_history_size as "set" hooks of "set record
7628 instruction-history-size" and "set record
7629 function-call-history-size".
7630
7631 2013-03-26 Pedro Alves <palves@redhat.com>
7632
7633 * top.c (gdb_rl_operate_and_get_next): Replace max_input_history
7634 use with history_max_entries use. Remove FIXME note.
7635
7636 2013-03-26 Markus Metzger <markus.t.metzger@intel.com>
7637
7638 * record-btrace.c (record_btrace_close): Call
7639 record_btrace_auto_disable.
7640
7641 2013-03-25 Joel Brobecker <brobecker@adacore.com>
7642
7643 * rs6000-nat.c (fixup_breakpoints): Delete declaration.
7644
7645 2013-03-25 Doug Evans <dje@google.com>
7646
7647 * contrib/cc-with-tweaks.sh: Check exit code of dwp.
7648
7649 2013-03-25 Tom Tromey <tromey@redhat.com>
7650
7651 PR symtab/11462:
7652 * c-exp.y (exp): Add new productions for destructors after '.' and
7653 '->'.
7654 (write_destructor_name): New function.
7655
7656 2013-03-25 Tom Tromey <tromey@redhat.com>
7657
7658 PR c++/9197:
7659 * opencl-lang.c (evaluate_subexp_opencl) <STRUCTOP_STRUCT>: Use
7660 value_struct_elt, not lookup_struct_elt_type.
7661 * eval.c (evaluate_subexp_standard) <STRUCTOP_STRUCT,
7662 STRUCTOP_PTR>: Use value_struct_elt, not lookup_struct_elt_type.
7663 * expression.h (EVAL_AVOID_SIDE_EFFECTS): Update comment.
7664
7665 2013-03-25 Yao Qi <yao@codesourcery.com>
7666
7667 * ctf.c [USE_WIN32API]: Undef 'mkdir' and use 'mkdir'
7668 instead of '_mkdir'.
7669
7670 2013-03-23 Eli Zaretskii <eliz@gnu.org>
7671
7672 * windows-nat.c (windows_get_absolute_argv0): New function.
7673 * windows-nat.h: Add its prototype.
7674
7675 * main.c (get_init_files): Use filename_ncmp instead of strncmp.
7676 Use IS_DIR_SEPARATOR instead of looking for a character inside
7677 SLASH_STRING. Include filenames.h.
7678 (captured_main) [__MINGW32__]: Make argv[0] absolute, so that
7679 relocate_gdb_directory works when passed gdb_program_name.
7680 Include windows-nat.h.
7681
7682 2013-03-22 Jan Kratochvil <jan.kratochvil@redhat.com>
7683
7684 * exceptions.h (enum errors): New entry TARGET_CLOSE_ERROR.
7685 * remote.c (trace_error): Remove the special handling of '2'.
7686 (readchar) <SERIAL_EOF>
7687 (readchar) <SERIAL_ERROR>
7688 (getpkt_or_notif_sane_1): Use TARGET_CLOSE_ERROR for them.
7689 (remote_get_trace_status): Call throw_exception if EX is
7690 TARGET_CLOSE_ERROR.
7691 * utils.c (perror_with_name): Rename to ...
7692 (throw_perror_with_name): ... here. New parameter errcode, describe it
7693 in the function comment.
7694 (perror_with_name): New function wrapper.
7695 * utils.h (enum errors): New stub declaration.
7696 (throw_perror_with_name): New declaration.
7697
7698 2013-03-22 Pedro Alves <palves@redhat.com>
7699 Yao Qi <yao@codesourcery.com>
7700 Mark Kettenis <kettenis@gnu.org>
7701
7702 * cli/cli-setshow.c (do_set_command) <var_uinteger>:
7703 Don't let the user set the value to UINT_MAX directly.
7704 <var_integer>: Don't let the user set the value to INT_MAX
7705 directly.
7706
7707 2013-03-22 Jan Kratochvil <jan.kratochvil@redhat.com>
7708
7709 * remote.c (remote_unpush_target): New function.
7710 (remote_open_1): Remove two pop_target calls, update one comment, add
7711 comment to target_preopen call. Replace pop_target call by
7712 remote_unpush_target call.
7713 (interrupt_query, readchar, getpkt_or_notif_sane_1): Replace
7714 pop_target calls by remote_unpush_target calls.
7715
7716 2013-03-22 Pedro Alves <palves@redhat.com>
7717
7718 * linux-nat.c (linux_child_follow_fork): Don't call
7719 linux_enable_event_reporting.
7720 (linux_handle_extended_wait): Don't call
7721 linux_enable_event_reporting.
7722
7723 2013-03-22 Pedro Alves <palves@redhat.com>
7724
7725 * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code): Define INSN macro,
7726 use it to rewrite the trampoline buffers with type gdb_byte[], and
7727 undefine the macro. Remove char* cast.
7728
7729 2013-03-21 Doug Evans <dje@google.com>
7730
7731 New commands "mt set per-command {space,time,symtab} {on,off}".
7732 * NEWS: Add entry.
7733 * event-top.c: #include "maint.h".
7734 * main.c: #include "maint.h".
7735 * maint.c: #include <sys/time.h>, <time.h>, block.h, top.h,
7736 timeval-utils.h, maint.h, cli/cli-setshow.h.
7737 (per_command_time, per_command_space): New static globals.
7738 (per_command_symtab): New static global.
7739 (per_command_setlist, per_command_showlist): New static globals.
7740 (struct cmd_stats): Move here from utils.c.
7741 (set_per_command_time): Renamed from set_display_time in utils.c
7742 and moved here. All callers updated.
7743 (set_per_command_space): Renamed from set_display_space in utils.c
7744 and moved here. All callers updated.
7745 (count_symtabs_and_blocks): New function.
7746 (report_command_stats): Moved here from utils.c. Add support for
7747 printing symtab stats. Only print data if enabled before command
7748 executed.
7749 (make_command_stats_cleanup): Ditto.
7750 (sert_per_command_cmd, show_per_command_cmd): New functions.
7751 (_initialize_maint_cmds): Add new commands
7752 mt set per-command {space,time,symtab} {on,off}.
7753 * maint.h: New file.
7754 * top.c: #include "maint.h".
7755 * utils.c (reset_prompt_for_continue_wait_time): New function.
7756 (get_prompt_for_continue_wait_time): New function.
7757 * utils.h (reset_prompt_for_continue_wait_time): Declare
7758 (get_prompt_for_continue_wait_time): Declare.
7759 (make_command_stats_cleanup): Moved to maint.h.
7760 (set_display_time, set_display_space): Moved to maint.h and renamed
7761 to set_per_command_time, set_per_command_space.
7762 * cli/cli-setshow.c (parse_cli_boolean_value): Renamed from
7763 parse_binary_operation and made non-static. Don't call error,
7764 just return an error marker. All callers updated.
7765 * cli/cli-setshow.h (parse_cli_boolean_value): Declare.
7766
7767 2013-03-21 Tom Tromey <tromey@redhat.com>
7768
7769 * symfile.c (alloc_section_addr_info): Update header. Don't set
7770 'num_sections' field.
7771 (build_section_addr_info_from_section_table): Set 'num_sections'.
7772 (build_section_addr_info_from_bfd): Likewise.
7773 (build_section_addr_info_from_objfile): Remove dead loop
7774 condition.
7775 (free_section_addr_info): Unconditionally call xfree.
7776 (relative_addr_info_to_section_offsets, addrs_section_sort)
7777 (addr_info_make_relative, syms_from_objfile_1): Remove dead loop
7778 condition.
7779 (syms_from_objfile_1): Remove dead 'if' condition. Check
7780 'num_sections'.
7781 (add_symbol_file_command): Set 'num_sections'.
7782 * symfile-mem.c (symbol_file_add_from_memory): Set
7783 'num_sections'.
7784 * somread.c (som_symfile_offsets): Remove dead loop condition.
7785 * machoread.c (macho_symfile_offsets): Remove dead 'if'.
7786 * jit.c (jit_bfd_try_read_symtab): Set 'num_sections'.
7787
7788 2013-03-21 Tom Tromey <tromey@redhat.com>
7789
7790 * tracepoint.h (decode_agent_options): Add 'trace_string'
7791 argument.
7792 * tracepoint.c (decode_agent_options): Add 'trace_string'
7793 argument.
7794 (validate_actionline): Update.
7795 (collect_symbol): Add 'trace_string' argument.
7796 (struct add_local_symbols_data) <trace_string>: New field.
7797 (do_collect_symbol): Update.
7798 (add_local_symbols): Add 'trace_string' argument.
7799 (encode_actions_1): Update.
7800 (trace_dump_actions): Update.
7801 * dwarf2loc.c (access_memory): Update.
7802 * ax.h (struct agent_expr) <tracing, trace_string>: New fields.
7803 * ax-general.c (new_agent_expr): Update.
7804 * ax-gdb.h (gen_trace_for_expr, gen_trace_for_var)
7805 (gen_trace_for_return_address): Add argument.
7806 (trace_kludge, trace_string_kludge): Remove.
7807 * ax-gdb.c (trace_kludge, trace_string_kludge): Remove.
7808 (gen_traced_pop, gen_fetch, gen_bitfield_ref, gen_expr): Update.
7809 (gen_trace_for_var): Add 'trace_string' argument.
7810 (gen_trace_for_expr, gen_trace_for_return_address): Likewise.
7811 (gen_printf, agent_eval_command_one): Update.
7812
7813 2013-03-21 Tom Tromey <tromey@redhat.com>
7814
7815 PR exp/15109:
7816 * c-exp.y (yylex): Rewrite to push all tokens onto the FIFO.
7817 Handle FILENAME token.
7818
7819 2013-03-21 Tom Tromey <tromey@redhat.com>
7820
7821 * c-exp.y (YYPRINT): Define.
7822 (c_print_token): New function.
7823
7824 2013-03-21 Tom Tromey <tromey@redhat.com>
7825
7826 * c-exp.y (%union) <sym, ivar, ivec>: Remove.
7827
7828 2013-03-21 Yao Qi <yao@codesourcery.com>
7829
7830 * ctf.c: Include "gdb_stat.h".
7831 [USE_WIN32API]: New macro 'mkdir'.
7832 (ctf_start): Use permission bits macros if they are defined.
7833
7834 2013-03-20 Keith Seitz <keiths@redhat.com>
7835
7836 * breakpoint.h (struct breakpoint): Add comment to
7837 extra_string indicating that this member is mallod'd.
7838 * breakpoint.c (base_breakpoint_dtor): Free extra_string.
7839
7840 2013-03-20 Pedro Alves <palves@redhat.com>
7841
7842 PR gdb/15289
7843
7844 * cli/cli-setshow.c (do_set_command)
7845 <var_uinteger, var_zuinteger>: Use LONGEST for variable holding
7846 the result of parsing the command argument. Throw error if the
7847 value is greater than UINT_MAX. Print the invalid value with
7848 plongest.
7849 <var_integer, var_zinteger>: Use LONGEST for variable holding the
7850 result of parsing the command argument. Throw error if the value
7851 is greater than INT_MAX, not greater or equal. Also throw error
7852 if the value is less than INT_MIN. Print the invalid value with
7853 plongest.
7854 <var_zuinteger_unlimited>: Throw error if the value is greater
7855 than INT_MAX, not greater or equal.
7856 (do_show_command) <var_integer, var_zinteger,
7857 var_zuinteger_unlimited>: Use %d for printing int, not %u.
7858
7859 2013-03-20 Tom Tromey <tromey@redhat.com>
7860
7861 * ax-gdb.c (gen_var_ref): Unconditionally call via computed ops,
7862 if possible.
7863 * dwarf2read.c (read_func_scope): Remove old FIXME.
7864 * eval.c (evaluate_subexp_standard): Check SYMBOL_COMPUTED_OPS,
7865 not LOC_COMPUTED.
7866 * findvar.c (symbol_read_needs_frame, default_read_var_value):
7867 Unconditionally call via computed ops, if possible.
7868 * printcmd.c (address_info): Unconditionally call via computed ops,
7869 if possible.
7870 * stack.c (read_frame_arg): Unconditionally call via computed ops,
7871 if possible.
7872 * symtab.c (register_symbol_computed_impl): Sanity check 'ops'.
7873 * tracepoint.c (scope_info): Unconditionally call via computed ops,
7874 if possible.
7875
7876 2013-03-20 Jan Kratochvil <jan.kratochvil@redhat.com>
7877 Tom Tromey <tromey@redhat.com>
7878
7879 PR symtab/8421:
7880 * coffread.c (coff_register_index): New global.
7881 (process_coff_symbol, coff_read_enum_type): Set
7882 SYMBOL_ACLASS_INDEX.
7883 (_initialize_coffread): Initialize new global.
7884 * dwarf2loc.c (locexpr_find_frame_base_location)
7885 (dwarf2_block_frame_base_locexpr_funcs)
7886 (loclist_find_frame_base_location)
7887 (dwarf2_block_frame_base_loclist_funcs): New.
7888 (dwarf_expr_frame_base_1): Call SYMBOL_BLOCK_OPS, remove internal_error.
7889 (dwarf2_locexpr_funcs, dwarf2_loclist_funcs): Add location_has_loclist.
7890 * dwarf2loc.h (dwarf2_block_frame_base_locexpr_funcs)
7891 (dwarf2_block_frame_base_loclist_funcs): New.
7892 * dwarf2read.c (dwarf2_locexpr_index, dwarf2_loclist_index)
7893 (dwarf2_locexpr_block_index, dwarf2_loclist_block_index): New
7894 globals.
7895 (read_func_scope): Update.
7896 (fixup_go_packaging, mark_common_block_symbol_computed)
7897 (var_decode_location, new_symbol_full, dwarf2_const_value):
7898 Set SYMBOL_ACLASS_INDEX.
7899 (dwarf2_symbol_mark_computed): Likewise. Add 'is_block' argument.
7900 (_initialize_dwarf2_read): Initialize new globals.
7901 * jit.c (finalize_symtab): Set SYMBOL_ACLASS_INDEX.
7902 * jv-lang.c (add_class_symbol): Set SYMBOL_ACLASS_INDEX.
7903 * mdebugread.c (mdebug_register_index, mdebug_regparm_index): New
7904 globals.
7905 (parse_symbol, psymtab_to_symtab_1): Set SYMBOL_ACLASS_INDEX.
7906 (_initialize_mdebugread): Initialize new globals.
7907 * psympriv.h (struct partial_symbol) <aclass>: Update comment.
7908 * stabsread.c (patch_block_stabs): Set SYMBOL_ACLASS_INDEX.
7909 (stab_register_index, stab_regparm_index): New globals.
7910 (define_symbol, read_enum_type, common_block_end): Set
7911 SYMBOL_ACLASS_INDEX.
7912 (_initialize_stabsread): Initialize new globals.
7913 * symtab.c (next_aclass_value, symbol_impl, symbol_impls): New
7914 globals.
7915 (MAX_SYMBOL_IMPLS): New define.
7916 (register_symbol_computed_impl, register_symbol_block_impl)
7917 (register_symbol_register_impl)
7918 (initialize_ordinary_address_classes): New functions.
7919 (_initialize_symtab): Call initialize_ordinary_address_classes.
7920 * symtab.h (enum address_class) <LOC_FINAL_VALUE>: New constant.
7921 (struct symbol_impl): New.
7922 (SYMBOL_ACLASS_BITS): New define.
7923 (struct symbol) <aclass, ops>: Remove fields.
7924 <aclass_index>: New field.
7925 (symbol_impls): Declare.
7926 (SYMBOL_CLASS, SYMBOL_COMPUTED_OPS, SYMBOL_REGISTER_OPS): Redefine.
7927 (SYMBOL_IMPL, SYMBOL_ACLASS_INDEX): New defines.
7928 (register_symbol_computed_impl, register_symbol_block_impl)
7929 (register_symbol_register_impl): Declare.
7930 (struct symbol_computed_ops): Add location_has_loclist.
7931 (struct symbol_block_ops): New.
7932 (SYMBOL_BLOCK_OPS): New.
7933 * xcoffread.c (process_xcoff_symbol): Set SYMBOL_ACLASS_INDEX.
7934
7935 2013-03-20 Tom Tromey <tromey@redhat.com>
7936
7937 * psymtab.c (find_pc_sect_psymbol, fixup_psymbol_section)
7938 (print_partial_symbols, recursively_search_psymtabs): Use
7939 PSYMBOL_CLASS.
7940
7941 2013-03-20 Pierre Muller <muller@sourceware.org>
7942
7943 * contrib/ari/gdb_ari.sh (OP eol rule): Also check
7944 addtion, subtraction, multiplication and division binary operator.
7945
7946 2013-03-20 Jan Kratochvil <jan.kratochvil@redhat.com>
7947
7948 Code cleanup.
7949 * bfd-target.c (target_bfd_xclose): Remove parameter quitting.
7950 * bsd-kvm.c (bsd_kvm_close): Likewise.
7951 * bsd-uthread.c (bsd_uthread_close): Likewise.
7952 * corelow.c (core_close): Likewise.
7953 (core_close_cleanup): Remove parameter quitting from a caller.
7954 * event-top.c (async_disconnect): Likewise.
7955 * exec.c (exec_close_1): Remove parameter quitting.
7956 * go32-nat.c (go32_close): Likewise.
7957 * linux-nat.c (linux_nat_close): Remove parameter quitting. Remove
7958 parameter quitting from a caller.
7959 * mips-linux-nat.c (super_close): Remove parameter quitting from the
7960 variable.
7961 (mips_linux_close): Remove parameter quitting. Remove parameter
7962 quitting from a caller.
7963 * monitor.c (monitor_close): Remove parameter quitting.
7964 * monitor.h (monitor_close): Likewise.
7965 * record-btrace.c (record_btrace_close): Likewise.
7966 * record-full.c (record_full_close): Likewise.
7967 * remote-m32r-sdi.c (m32r_close): Remove parameter quitting and remove
7968 it also from fprintf_unfiltered.
7969 * remote-mips.c (mips_close): Remove parameter quitting.
7970 (mips_detach): Remove parameter quitting from a caller.
7971 * remote-sim.c (gdbsim_close): Remove parameter quitting.
7972 (gdbsim_close): Remove duplicate function comment. Remove parameter
7973 quitting and remove it also from printf_filtered.
7974 * remote.c (remote_close): Remove parameter quitting.
7975 * solib-svr4.c (enable_break): Remove parameter quitting from a caller.
7976 * target.c (update_current_target): Remove parameter int from to_close
7977 de_fault.
7978 (push_target, unpush_target, pop_target): Remove parameter quitting from
7979 a caller.
7980 (pop_all_targets_above, pop_all_targets): Remove parameter quitting.
7981 Remove parameter quitting from a caller.
7982 (target_preopen): Remove parameter quitting from a caller.
7983 (target_close): Remove parameter quitting. Remove parameter quitting
7984 from a caller two times. Remove parameter quitting also from
7985 fprintf_unfiltered.
7986 * target.h (struct target_ops): Remove parameter quitting and as int
7987 from fields to_xclose and to_close.
7988 (extern struct target_ops current_target):
7989 (target_close, pop_all_targets): Remove parameter quitting. Update the
7990 comment.
7991 (pop_all_targets_above): Remove parameter quitting.
7992 * top.c (quit_target): Remove parameter quitting from a caller.
7993 * tracepoint.c (tfile_close): Remove parameter quitting.
7994 * windows-nat.c (windows_close): Remove parameter quitting.
7995
7996 2013-03-20 Corinna Vinschen <vinschen@redhat.com>
7997
7998 * windows-nat.c (handle_output_debug_string): Replace call
7999 to string_to_core_addr with call to strtoull.
8000
8001 2013-03-20 Yao Qi <yao@codesourcery.com>
8002
8003 * ctf.c (ctf_save_metadata_header): Define macro HOST_ENDIANNESS
8004 and write it to CTF metadata.
8005
8006 2013-03-19 Corinna Vinschen <vinschen@redhat.com>
8007
8008 * windows-nat.c (handle_output_debug_string): Change type of n to
8009 SIZE_T to avoid crash on 64 bit systems.
8010
8011 2013-03-17 Eli Zaretskii <eliz@gnu.org>
8012
8013 * python/python-internal.h (HAVE_SNPRINTF)
8014 [_WIN32 && HAVE_DECL_SNPRINTF]: Define, to avoid compiler warnings
8015 about redefinition of snprintf by pyerrors.h.
8016
8017 2013-03-15 Steve Ellcey <sellcey@mips.com>
8018
8019 * remote-sim.c (sim_command_completer): Make char arguments const.
8020
8021 2013-03-15 Tom Tromey <tromey@redhat.com>
8022
8023 PR c++/15116:
8024 * gdbtypes.c (types_equal): Handle TYPE_CODE_FUNC.
8025
8026 2013-03-14 Tom Tromey <tromey@redhat.com>
8027
8028 * gdb_bfd.c (struct gdb_bfd_data) <crc_computed, crc>:
8029 New fields.
8030 (get_file_crc): Move from symfile.c.
8031 (gdb_bfd_crc): New function.
8032 * gdb_bfd.h (gdb_bfd_crc): Declare.
8033 * objfiles.h (struct objfile) <crc32, crc32_p>: Remove.
8034 * symfile.c (get_file_crc): Move to gdb_bfd.c.
8035 (separate_debug_file_exists): Use gdb_bfd_crc.
8036
8037 2013-03-14 Tom Tromey <tromey@redhat.com>
8038
8039 * symfile.c (get_debug_link_info): Remove.
8040 (find_separate_debug_file_by_debuglink): Use
8041 bfd_get_debug_link_info.
8042
8043 2013-03-14 Tom Tromey <tromey@redhat.com>
8044
8045 * symtab.c (error_in_psymtab_expansion): New function.
8046 (lookup_symbol_aux_quick)
8047 (basic_lookup_transparent_type_quick): Remove "last resort"
8048 code. Use error_in_psymtab_expansion.
8049
8050 2013-03-14 Doug Evans <dje@google.com>
8051 Jan Kratochvil <jan.kratochvil@redhat.com>
8052
8053 * dwarf2read.c (dw2_map_symtabs_matching_filename): Put continue after
8054 any successful compare_filenames_for_search or FILENAME_CMP.
8055 * psymtab.c (partial_map_symtabs_matching_filename): Likewise.
8056 * symtab.c (iterate_over_some_symtabs): Likewise.
8057
8058 2013-03-14 Jan Kratochvil <jan.kratochvil@redhat.com>
8059
8060 * source.c (print_source_lines_base): Make a local copy of
8061 symtab_to_fullname.
8062
8063 2013-03-14 Hui Zhu <hui_zhu@mentor.com>
8064 Jan Kratochvil <jan.kratochvil@redhat.com>
8065
8066 * source.c (print_source_lines_base): Suppress "file" for TUI.
8067
8068 2013-03-14 Keith Seitz <keiths@redhat.com>
8069 Alan Matsuoka <alanm@redhat.com>
8070
8071 PR c++/15203
8072 PR c++/15210
8073 * cp-namespace.c (cp_lookup_nested_symbol): Handle TYPE_CODE_FUNC and
8074 TYPE_CODE_METHOD.
8075 * elfread.c (elf_symtab_read): Handle BSF_GNU_UNIQUE for certain
8076 symbols.
8077
8078 2013-03-14 Yao Qi <yao@codesourcery.com>
8079
8080 * tracepoint.c (tfile_write_status): Write 'stop_desc' of trace
8081 status to tfile if trace is stopped by command 'tstop'.
8082
8083 2013-03-14 Yao Qi <yao@codesourcery.com>
8084
8085 * tracepoint.c (tfile_write_status): Write trace notes and user
8086 name into tfile if they are not NULL.
8087
8088 2013-03-14 Hui Zhu <hui@codesourcery.com>
8089 Yao Qi <yao@codesourcery.com>
8090
8091 * Makefile.in (REMOTE_OBS): Add ctf.o.
8092 (SFILES): Add ctf.c.
8093 (HFILES_NO_SRCDIR): Add ctf.h.
8094 * ctf.c, ctf.h: New files.
8095 * tracepoint.c: Include 'ctf.h'.
8096 (collect_pseudocommand): Remove static.
8097 (trace_save_command): Parse option "-ctf".
8098 Produce different trace file writers per option.
8099 Adjust output message.
8100 (trace_save_tfile, trace_save_ctf): New.
8101 * tracepoint.h (trace_save_tfile, trace_save_ctf): Declare.
8102 * mi/mi-main.c: Include 'ctf.h'.
8103 (mi_cmd_trace_save): Handle option '-ctf'. Call either
8104 trace_save_tfile or trace_save_ctf.
8105 * NEWS: Mention these changes.
8106
8107 2013-03-14 Yao Qi <yao@codesourcery.com>
8108
8109 * tracepoint.c (trace_file_writer_xfree): New.
8110 (struct tfile_writer_data): New.
8111 (tfile_dtor, tfile_can_target_save, tfile_start): New.
8112 (tfile_write_header, tfile_write_regblock_type): New.
8113 (tfile_write_status, tfile_write_uploaded_tsv): New.
8114 (tfile_write_uploaded_tp, tfile_write_definition_end): New.
8115 (tfile_write_raw_data, (tfile_end): New.
8116 (tfile_write_ops): New global variable.
8117 (TRACE_WRITE_R_BLOCK): New macro.
8118 (TRACE_WRITE_M_BLOCK_HEADER): New macro.
8119 (TRACE_WRITE_M_BLOCK_MEMORY): New macro.
8120 (TRACE_WRITE_V_BLOCK): New macro.
8121 (trace_save): Add extra one parameter WRITER. Make it static.
8122 Use WRITER to writer trace.
8123 (tfile_trace_file_writer_new): New.
8124 (trace_save_command): Caller update.
8125 (trace_save_tfile): Write trace data in TFILE format.
8126 * tracepoint.h (struct trace_frame_write_ops): New.
8127 (struct trace_file_write_ops): New.
8128 (struct trace_file_writer): New.
8129 (trace_save): Remove its declaration.
8130 (trace_save_tfile): Declare it.
8131 * mi/mi-main.c (mi_cmd_trace_save): Call trace_save_tfile
8132 instead of trace_save.
8133
8134 2013-03-13 Pedro Alves <palves@redhat.com>
8135
8136 * hppa-hpux-nat.c (hppa_hpux_save_state_offset): Make static.
8137
8138 2013-03-13 Pedro Alves <palves@redhat.com>
8139
8140 * dbxread.c (read_ofile_symtab, process_one_symbol): Remove
8141 commented out code.
8142 * demangle.c (current_demangling_style_string): Make it const.
8143 (set_demangling_command): Assert the demangling style is known.
8144 Remove all handling of unknown styles. Set
8145 'current_demangling_style_string' to an element of the
8146 demangling_style_names array.
8147 (set_demangling_style): Delete.
8148 (_initialize_demangler): Set current_demangling_style_string to the
8149 element of the demangling_style_names array that corresponds to
8150 the default demangling style. Remove FIXME note. Don't call
8151 set_demangling_style.
8152 * gdb-demangle.h (set_demangling_style): Remove declaration.
8153
8154 2013-03-13 Pedro Alves <palves@redhat.com>
8155
8156 * ada-lang.c (struct add_partial_datum) <text, text0, word>: Make
8157 fields const.
8158 (ada_make_symbol_completion_list): Make "text0" parameter const.
8159 * ax-gdb.c (agent_eval_command_one): Make "exp" parameter const.
8160 * breakpoint.c (condition_completer): Make "text" and "word"
8161 parameters const. Adjust.
8162 (check_tracepoint_command): Adjust to validate_actionline
8163 prototype change.
8164 (catch_syscall_completer): Make "text" and "word" parameters
8165 const.
8166 * cli/cli-cmds.c (show_user): Make "comname" local const.
8167 (valid_command_p): Make "command" parameter const.
8168 (alias_command): Make "alias_prefix" and "command_prefix" locals
8169 const.
8170 * cli/cli-decode.c (add_cmd): Make "name" parameter const.
8171 (add_alias_cmd): Make "name" and "oldname" parameters const.
8172 Adjust. No longer make copy of OLDNAME.
8173 (add_prefix_cmd, add_abbrev_prefix_cmd, add_set_or_show_cmd)
8174 (add_setshow_cmd_full, add_setshow_enum_cmd)
8175 (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
8176 (add_setshow_filename_cmd, add_setshow_string_cmd)
8177 (add_setshow_string_noescape_cmd)
8178 (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
8179 (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
8180 (add_setshow_zuinteger_unlimited_cmd, add_setshow_zuinteger_cmd)
8181 (delete_cmd, add_info, add_info_alias, add_com, add_com_alias):
8182 Make "name" parameter const.
8183 (help_cmd): Rename "command" parameter to "arg". New const local
8184 "command".
8185 (find_cmd): Make "command" parameter const.
8186 (lookup_cmd_1): Make "text" parameter pointer to const. Adjust to
8187 deprecated_cmd_warning prototype change.
8188 (undef_cmd_error): Make "cmdtype" parameter const.
8189 (lookup_cmd): Make "line" parameter const.
8190 (deprecated_cmd_warning): Change type of "text" parameter to
8191 pointer to const char, from pointer to pointer to char. Adjust.
8192 (lookup_cmd_composition): Make "text" parameter const.
8193 (complete_on_cmdlist, complete_on_enum): Make "text" and "word"
8194 parameters const.
8195 * cli/cli-decode.h (struct cmd_list_element) <name>: Make field
8196 const.
8197 * cli/cli-script.c (validate_comname): Make "tem" local const.
8198 (define_command): New const local "tem_c". Use it in calls to
8199 lookup_cmd.
8200 (document_command): Make "tem" and "comfull" locals const.
8201 (show_user_1): Make "prefix" and "name" parameters const.
8202 * cli-script.h (show_user_1): Make "prefix" and "name" parameters
8203 const.
8204 * command.h (add_cmd, add_alias_cmd, add_prefix_cmd)
8205 (add_abbrev_prefix_cmd, completer_ftype, lookup_cmd, lookup_cmd_1)
8206 (deprecated_cmd_warning, lookup_cmd_composition, add_com)
8207 (add_com_alias, add_info, add_info_alias, complete_on_cmdlist)
8208 (complete_on_enum, add_setshow_enum_cmd)
8209 (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
8210 (add_setshow_filename_cmd, add_setshow_string_cmd)
8211 (add_setshow_string_noescape_cmd)
8212 (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
8213 (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
8214 (add_setshow_zuinteger_cmd, add_setshow_zuinteger_unlimited_cmd):
8215 Change prototypes, constifying strings.
8216 * completer.c (noop_completer, filename_completer): Make "text"
8217 and "prefix" parameters const.
8218 (location_completer, expression_completer)
8219 (complete_line_internal): Make "text" and "prefix" parameters
8220 const and adjust.
8221 (command_completer, signal_completer): Make "text" and "prefix"
8222 parameters const.
8223 * completer.h (noop_completer, filename_completer)
8224 (expression_completer, location_completer, command_completer)
8225 (signal_completer): Change prototypes.
8226 * corefile.c (complete_set_gnutarget): Make "text" and "word"
8227 parameters const.
8228 * cp-abi.c (cp_abi_completer): Likewise.
8229 * expression.h (parse_expression_for_completion): Change
8230 prototype.
8231 * f-lang.c (f_make_symbol_completion_list): Make "text" and "word"
8232 parameters const.
8233 * infcmd.c (_initialize_infcmd): Make "cmd_name" local const.
8234 * infrun.c (handle_completer): Make "text" and "word" parameters
8235 const.
8236 * interps.c (interpreter_completer): Make "text" and "word"
8237 parameters const.
8238 * language.h (struct language_defn)
8239 <la_make_symbol_completion_list>: Make "text" and "word"
8240 parameters const.
8241 * parse.c (parse_exp_1): Move const hack to parse_exp_in_context.
8242 (parse_exp_in_context): Rename to ...
8243 (parse_exp_in_context_1): ... this.
8244 (parse_exp_in_context): Reimplement, with const hack from
8245 parse_exp_1.
8246 (parse_expression_for_completion): Make "string" parameter const.
8247 * printcmd.c (decode_format): Make "string_ptr" parameter pointer
8248 to pointer to const char. Adjust.
8249 (print_command_1): Make "exp" parameter const.
8250 (output_command): Rename to ...
8251 (output_command_const): ... this. Make "exp" parameter const.
8252 (output_command): Reimplement.
8253 (x_command): Adjust.
8254 (display_command): Rename "exp" parameter to "arg". New "exp"
8255 local, const version of "arg".
8256 * python/py-auto-load.c (gdbpy_initialize_auto_load): Make
8257 "cmd_name" local const.
8258 * python/py-cmd.c (cmdpy_destroyer): Cast const away in xfree
8259 call.
8260 (cmdpy_completer): Make "text" and "word" parameters const.
8261 (gdbpy_parse_command_name): Make "prefix_text2" local const.
8262 * python/py-param.c (add_setshow_generic): Make "tmp_name" local
8263 const.
8264 * remote.c (_initialize_remote): Make "cmd_name" local const.
8265 * symtab.c (language_search_unquoted_string): Make "text" and "p"
8266 parameters const. Adjust.
8267 (completion_list_add_fields): Make "sym_text", "text" and "word"
8268 parameters const.
8269 (struct add_name_data) <sym_text, text, word>: Make fields const.
8270 (default_make_symbol_completion_list_break_on): Make "text" and
8271 "word" parameters const. Adjust locals.
8272 (default_make_symbol_completion_list)
8273 (make_symbol_completion_list, make_symbol_completion_type)
8274 (make_symbol_completion_list_fn): Make "text" and "word"
8275 parameters const.
8276 (make_file_symbol_completion_list): Make "text", "word" and
8277 "srcfile" parameters const. Adjust locals.
8278 (add_filename_to_list): Make "text" and "word" parameters const.
8279 (struct add_partial_filename_data) <text, word>: Make fields
8280 const.
8281 (make_source_files_completion_list): Make "text" and "word"
8282 parameters const.
8283 * symtab.h (default_make_symbol_completion_list_break_on)
8284 (default_make_symbol_completion_list, make_symbol_completion_list)
8285 (make_symbol_completion_type enum type_code)
8286 (make_symbol_completion_list_fn make_file_symbol_completion_list)
8287 (make_source_files_completion_list): Change prototype.
8288 * top.c (execute_command): Adjust to pass pointer to pointer to
8289 const char to lookup_cmd, and to deprecated_cmd_warning prototype
8290 change.
8291 (set_verbose): Make "cmdname" local const.
8292 * tracepoint.c (decode_agent_options): Make "exp" parameter const,
8293 and adjust.
8294 (validate_actionline): Make "line" parameter a pointer to const
8295 char, and adjust.
8296 (encode_actions_1): Make "action_exp" local const, and adjust.
8297 (encode_actions): Adjust.
8298 (replace_comma): Delete.
8299 (trace_dump_actions): Make "action_exp" and "next_comma" locals
8300 const, and adjust. Don't frob the action string while splitting
8301 it at commas. Instead, make a copy of each split substring in
8302 turn.
8303 (trace_dump_command): Adjust to validate_actionline prototype
8304 change.
8305 * tracepoint.h (decode_agent_options, decode_agent_options)
8306 (encode_actions, validate_actionline): Change prototypes.
8307 * valprint.h (output_command): Delete declaration.
8308 (output_command_const): Declare.
8309 * value.c (function_destroyer): Cast const away in xfree call.
8310
8311 2013-03-13 Pedro Alves <palves@redhat.com>
8312
8313 * ada-lang.c (ada_decode_symbol): Cast away constness of GSYMBOL
8314 rather than casting 'const char * const *' to 'const char **'.
8315 * ada-lex.l (processInt): Make "trailer" local const. Remove
8316 'const char **' cast.
8317 * arm-linux-tdep.c (arm_stap_parse_special_token): Add 'char *'
8318 locals, and use those as strtol output pointer, instead than doing
8319 invalid casts to from 'const char **' to 'char **'.
8320 (_initialize_demangle): Remove cast.
8321 * i386-tdep.c (i386_stap_parse_special_token): : Add 'char *'
8322 locals, and use those as strtol output pointer, instead than doing
8323 invalid casts to from 'const char **' to 'char **'.
8324 * solib-dsbt.c (dsbt_get_initial_loadmaps): Remove 'gdb_byte**'
8325 casts.
8326 * stap-probe.c (stap_parse_register_operand)
8327 (stap_parse_single_operand): Likewise.
8328
8329 2013-03-13 Yao Qi <yao@codesourcery.com>
8330
8331 * tracepoint.c (tfile_get_trace_state_variable_value): Look for
8332 the last matched 'V' blcok in trace frame.
8333
8334 2013-03-12 Joel Brobecker <brobecker@adacore.com>
8335
8336 * NEWS: Create a new section for the next release branch.
8337 Rename the section of the current branch, now that it has
8338 been cut.
8339
8340 2013-03-12 Joel Brobecker <brobecker@adacore.com>
8341
8342 GDB 7.6 branch created (branch timestamp: 2013-03-12 22:15 UTC)
8343 * version.in: Bump version to 7.6.50.20130312-cvs.
8344
8345 2013-03-12 Keith Seitz <keiths@redhat.com>
8346
8347 * mi/mi-cmds.h (mi_execute_command): Make "cmd" const.
8348 * mi/mi-interp.c (mi_interpreter_exec): Make "command" const.
8349 Remove temporary copy of input string.
8350 (mi_execute_command_wrapper): Make "cmd" const.
8351 * mi/mi-main.c (mi_execute_command): Make "string_ptr" const.
8352 * mi/mi-parse.c (mi_parse_argv): Make "args" const.
8353 Use const strings.
8354 (mi_parse): Make "cmd" const.
8355 Use const strings.
8356 * mi/mi-parse.h (mi_parse): Make "cmd" const.
8357
8358 2013-03-12 Keith Seitz <keiths@redhat.com>
8359
8360 * ada-lang.c (ada_read_renaming_var_value): Pass const
8361 pointer to expression string to parse_exp_1.
8362 (create_excep_cond_exprs): Likewise.
8363 * ax-gdb.c (agent_eval_command_one): Likewise.
8364 (maint_agent_printf_command): Likewise.
8365 Constify much of the string handling/parsing.
8366 * breakpoint.c (set_breakpoint_condition): Pass const
8367 pointer to expression string to parse_exp_1.
8368 (update_watchpoint): Likewise.
8369 (parse_cmd_to_aexpr): Constify string handling.
8370 Pass const pointer to parse_exp_1.
8371 (init_breakpoint_sal): Pass const pointer to parse_exp_1.
8372 (find_condition_and_thread): Likewise.
8373 Make TOK const.
8374 (watch_command_1): Make "arg" const.
8375 Constify string handling.
8376 Copy the expression string instead of changing the input
8377 string.
8378 (update_breakpoint_location): Pass const pointer to
8379 parse_exp_1.
8380 * eval.c (parse_and_eval_address): Make "exp" const.
8381 (parse_to_comma_and_eval): Make "expp" const.
8382 (parse_and_eval): Make "exp" const.
8383 * expression.h (parse_expression): Make argument const.
8384 (parse_exp_1): Make first argument const.
8385 * findcmd.c (parse_find_args): Treat "args" as const.
8386 * linespec.c (parse_linespec): Pass const pointer to
8387 linespec_expression_to_pc.
8388 (linespec_expression_to_pc): Make "exp_ptr" const.
8389 * parse.c (parse_exp_1): Make "stringptr" const.
8390 Make a copy of the expression to pass to parse_exp_in_context until
8391 this whole interface can be constified.
8392 (parse_expression): Make "string" const.
8393 * printcmd.c (ui_printf): Treat "arg" as const.
8394 Handle const strings.
8395 * tracepoint.c (validate_actionline): Pass const pointer to
8396 all calls to parse_exp_1.
8397 (encode_actions_1): Likewise.
8398 * value.h (parse_to_comma_and_eval): Make argument const.
8399 (parse_and_eval_address): Likewise.
8400 (parse_and_eval): Likewise.
8401 * varobj.c (varobj_create): Pass const pointer to parse_exp_1.
8402 (varobj_set_value): Likewise.
8403 * cli/cli-cmds.c (disassemble_command): Treat "arg" as const and
8404 constify string handling.
8405 Pass const pointers to parse_and_eval_address and
8406 parse_to_comman_and_eval.
8407 * cli/cli-utils.c (skip_to_space): Rename to ...
8408 (skip_to_space_const): ... this. Handle const strings.
8409 * cli/cli-utils.h (skip_to_space): Turn into macro which invokes
8410 skip_to_space_const.
8411 (skip_to_space_const): Declare.
8412 * common/format.c (parse_format_string): Make "arg" const.
8413 Handle const strings.
8414 * common/format.h (parse_format_string): Make "arg" const.
8415 * gdbserver/ax.c (ax_printf): Make "format" const.
8416 * python/python.c (gdbpy_parse_and_eval): Do not make a copy
8417 of the expression string.
8418
8419 2013-03-12 Hui Zhu <hui@codesourcery.com>
8420
8421 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Update error message.
8422
8423 2013-03-12 Yao Qi <yao@codesourcery.com>
8424 Hui Zhu <hui@codesourcery.com>
8425
8426 * dwarf2loc.c (access_memory): Change nbits to nbytes in gdb_assert.
8427 (dwarf2_compile_expr_to_ax): Call access_memory in DW_OP_deref and
8428 DW_OP_deref_size.
8429
8430 2013-03-12 Paul Hilfinger <hilfingr@adacore.com>
8431
8432 * ada-lex.l (rules): Only recognize 'thread' as a
8433 delimiter when followed by numerals, as for c-exp.y.
8434 Use new rewind_to_char function to rewind the input for
8435 expression-delimiting tokens.
8436 (rewind_to_char): New function.
8437
8438 2013-03-11 Pedro Alves <palves@redhat.com>
8439 Jan Kratochvil <jan.kratochvil@redhat.com>
8440
8441 * configure: Regenerate.
8442 * configure.ac (check dynamic export flag): Link python test with
8443 $PYTHON_LIBS.
8444
8445 2013-03-11 Doug Evans <dje@google.com>
8446 Keith Seitz <keiths@redhat.com>
8447
8448 * linespec.c (find_linespec_symbols): Call find_function_symbols
8449 first, and then call lookup_prefix_sym/find_method.
8450
8451 2013-03-11 Pedro Alves <palves@redhat.com>
8452
8453 * charset.c (convert_between_encodings): Don't cast between
8454 different pointer to pointer types. Instead, make the 'inp' local
8455 be of the type iconv expects.
8456 (wchar_iterate): Don't cast between different pointer to pointer
8457 types. Instead, use new pointer local of the type iconv expects.
8458 * target.c (target_read_stralloc, target_fileio_read_stralloc):
8459 Add new local of type char pointer, and use it to get a
8460 char/string view of the byte buffer, instead of casting between
8461 pointer to pointer types.
8462
8463 2013-03-11 Hafiz Abid Qadeer <abidh@codesourcery.com>
8464
8465 * remote.c (remote_set_trace_buffer_size): Move != operator
8466 to the start of next line to fix an ARI warning.
8467
8468 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8469
8470 * NEWS: Add record changes.
8471
8472 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8473
8474 * record-btrace.c (btrace_insn_history): Omit the pc prefix in
8475 the instruction history disassembly.
8476 * disasm.c (dump_insns): Omit the pc prefix, if requested.
8477 * disasm.h (DISASSEMBLY_OMIT_PC): New.
8478
8479 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8480
8481 * Makefile.in (SFILES): Add record-btrace.c
8482 (COMMON_OBS): Add record-btrace.o
8483 * record-btrace.c: New.
8484 * objfiles.c: Include btrace.h.
8485 (free_objfile): call btrace_free_objfile.
8486
8487 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8488
8489 * target.c (target_call_history, target_call_history_from,
8490 target_call_history_range): New.
8491 * target.h (target_ops) <to_call_history, to_call_history_from,
8492 to_call_history_range>: New fields.
8493 (target_call_history, target_call_history_from,
8494 target_call_history_range): New declaration.
8495 * record.c (get_call_history_modifiers, cmd_record_call_history,
8496 record_call_history_size): New.
8497 (_initialize_record): Add the "record function-call-history" command.
8498 Add "set/show record function-call-history-size" commands.
8499 * record.h (record_print_flag): New.
8500
8501 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8502
8503 * target.h (target_ops) <to_insn_history, to_insn_history_from,
8504 to_insn_history_range>: New fields.
8505 (target_insn_history): New.
8506 (target_insn_history_from): New.
8507 (target_insn_history_range): New.
8508 * target.c (target_insn_history): New.
8509 (target_insn_history_from): New.
8510 (target_insn_history_range): New.
8511 * record.c: Include cli/cli-utils.h, disasm.h, ctype.h.
8512 (record_insn_history_size): New.
8513 (get_insn_number): New.
8514 (get_context_size): New.
8515 (no_chunk): New.
8516 (get_insn_history_modifiers): New.
8517 (cmd_record_insn_history): New.
8518 (_initialize_record): Add "set/show record instruction-history-size"
8519 command. Add "record instruction-history" command.
8520
8521 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8522
8523 * record.h (record_disconnect): New.
8524 (record_detach): New.
8525 (record_mourn_inferior): New.
8526 (record_kill): New.
8527 * record-full.c (record_disconnect, record_detach,
8528 record_mourn_inferior, record_kill): Move to...
8529 * record.c: ...here.
8530 (DEBUG): New.
8531 (record_stop): New.
8532 (record_unpush): New.
8533 (cmd_record_stop): Call record_stop. Replace unpush_target
8534 call with record_unpush call.
8535 (record_disconnect, record_detach): Assert that the target
8536 is of record stratum. Call record_unpush, record_stop, and
8537 DEBUG.
8538 (record_mourn_inferior, record_kill): Assert that the target
8539 is of record stratum. Call record_unpush and DEBUG.
8540
8541 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8542
8543 * record-full.h, record-full.c (record_memory_query): Rename
8544 to ...
8545 (record_full_memory_query): ...this. Update all users.
8546 (record_arch_list_add_reg): Rename to ...
8547 (record_full_arch_list_add_reg): ...this. Update all users.
8548 (record_arch_list_add_mem): Rename to ...
8549 (record_full_arch_list_add_mem): ...this. Update all users.
8550 (record_arch_list_add_end): Rename to ...
8551 (record_full_arch_list_add_end): ...this. Update all users.
8552 (record_gdb_operation_disable_set): Rename to ...
8553 (record_full_gdb_operation_disable_set): ...this.
8554 Update all users.
8555
8556 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8557
8558 * record-full.c (DEFAULT_RECORD_INSN_MAX_NUM): Renamed to ...
8559 (DEFAULT_RECORD_FULL_INSN_MAX_NUM): ... this. Updated all users.
8560 (RECORD_IS_REPLAY): Renamed to ...
8561 (RECORD_FULL_IS_REPLAY): ... this. Updated all users.
8562 (RECORD_FILE_MAGIC): Renamed to ...
8563 (RECORD_FULL_FILE_MAGIC): ... this. Updated all users.
8564 (record_mem_entry): Renamed to ...
8565 (record_full_mem_entry): ... this. Updated all users.
8566 (record_reg_entry): Renamed to ...
8567 (record_full_reg_entry): ... this. Updated all users.
8568 (record_end_entry): Renamed to ...
8569 (record_full_end_entry): ... this. Updated all users.
8570 (record_type) <record_end, record_reg, record_mem>: Renamed
8571 to ...
8572 (record_full_type) <record_full_end, record_full_reg,
8573 record_full_mem>: ... this. Updated all users.
8574 (record_entry): Renamed to ...
8575 (record_full_entry): ... this. Updated all users.
8576 (record_core_buf_entry): Renamed to ...
8577 (record_full_core_buf_entry): ... this. Updated all users.
8578 (record_core_regbuf): Renamed to ...
8579 (record_full_core_regbuf): ... this. Updated all users.
8580 (record_core_start): Renamed to ...
8581 (record_full_core_start): ... this. Updated all users.
8582 (record_core_end): Renamed to ...
8583 (record_full_core_end): ... this. Updated all users.
8584 (record_core_buf_list): Renamed to ...
8585 (record_full_core_buf_list): ... this. Updated all users.
8586 (record_first): Renamed to ...
8587 (record_full_first): ... this. Updated all users.
8588 (record_list): Renamed to ...
8589 (record_full_list): ... this. Updated all users.
8590 (record_arch_list_head): Renamed to ...
8591 (record_full_arch_list_head): ... this. Updated all users.
8592 (record_arch_list_tail): Renamed to ...
8593 (record_full_arch_list_tail): ... this. Updated all users.
8594 (record_stop_at_limit): Renamed to ...
8595 (record_full_stop_at_limit): ... this. Updated all users.
8596 (record_insn_max_num): Renamed to ...
8597 (record_full_insn_max_num): ... this. Updated all users.
8598 (record_insn_num): Renamed to ...
8599 (record_full_insn_num): ... this. Updated all users.
8600 (record_insn_count): Renamed to ...
8601 (record_full_insn_count): ... this. Updated all users.
8602 (record_ops): Renamed to ...
8603 (record_full_ops): ... this. Updated all users.
8604 (record_core_ops): Renamed to ...
8605 (record_full_core_ops): ... this. Updated all users.
8606 (set_record_cmdlist): Renamed to ...
8607 (set_record_full_cmdlist): ... this. Updated all users.
8608 (show_record_cmdlist): Renamed to ...
8609 (show_record_full_cmdlist): ... this. Updated all users.
8610 (record_cmdlist): Renamed to ...
8611 (record_full_cmdlist): ... this. Updated all users.
8612 (record_beneath_to_resume_ops): Renamed to ...
8613 (record_full_beneath_to_resume_ops): ... this. Updated all users.
8614 (record_beneath_to_resume): Renamed to ...
8615 (record_full_beneath_to_resume): ... this. Updated all users.
8616 (record_beneath_to_wait_ops): Renamed to ...
8617 (record_full_beneath_to_wait_ops): ... this. Updated all users.
8618 (record_beneath_to_wait): Renamed to ...
8619 (record_full_beneath_to_wait): ... this. Updated all users.
8620 (record_beneath_to_store_registers_ops): Renamed to ...
8621 (record_full_beneath_to_store_registers_ops): ... this.
8622 Updated all users.
8623 (record_beneath_to_store_registers): Renamed to ...
8624 (record_full_beneath_to_store_registers): ... this.
8625 Updated all users.
8626 (record_beneath_to_xfer_partial_ops): Renamed to ...
8627 (record_full_beneath_to_xfer_partial_ops): ... this.
8628 Updated all users.
8629 (record_beneath_to_xfer_partial): Renamed to ...
8630 (record_full_beneath_to_xfer_partial): ... this.
8631 Updated all users.
8632 (record_beneath_to_insert_breakpoint): Renamed to ...
8633 (record_full_beneath_to_insert_breakpoint): ... this.
8634 Updated all users.
8635 (record_beneath_to_stopped_by_watchpoint): Renamed to ...
8636 (record_full_beneath_to_stopped_by_watchpoint): ... this.
8637 Updated all users.
8638 (record_beneath_to_stopped_data_address): Renamed to ...
8639 (record_full_beneath_to_stopped_data_address): ... this.
8640 Updated all users.
8641 (record_beneath_to_async): Renamed to ...
8642 (record_full_beneath_to_async): ... this. Updated all users.
8643 (record_goto_insn): Renamed to ...
8644 (record_full_goto_insn): ... this. Updated all users.
8645 (record_save): Renamed to ...
8646 (record_full_save): ... this. Updated all users.
8647 (record_reg_alloc): Renamed to ...
8648 (record_full_reg_alloc): ... this. Updated all users.
8649 (record_reg_release): Renamed to ...
8650 (record_full_reg_release): ... this. Updated all users.
8651 (record_mem_alloc): Renamed to ...
8652 (record_full_mem_alloc): ... this. Updated all users.
8653 (record_mem_release): Renamed to ...
8654 (record_full_mem_release): ... this. Updated all users.
8655 (record_end_alloc): Renamed to ...
8656 (record_full_end_alloc): ... this. Updated all users.
8657 (record_end_release): Renamed to ...
8658 (record_full_end_release): ... this. Updated all users.
8659 (record_entry_release): Renamed to ...
8660 (record_full_entry_release): ... this. Updated all users.
8661 (record_list_release): Renamed to ...
8662 (record_full_list_release): ... this. Updated all users.
8663 (record_list_release_following): Renamed to ...
8664 (record_full_list_release_following): ... this.
8665 Updated all users.
8666 (record_list_release_first): Renamed to ...
8667 (record_full_list_release_first): ... this. Updated all users.
8668 (record_arch_list_add): Renamed to ...
8669 (record_full_arch_list_add): ... this. Updated all users.
8670 (record_get_loc): Renamed to ...
8671 (record_full_get_loc): ... this. Updated all users.
8672 (record_check_insn_num): Renamed to ...
8673 (record_full_check_insn_num): ... this. Updated all users.
8674 (record_arch_list_cleanups): Renamed to ...
8675 (record_full_arch_list_cleanups): ... this. Updated all users.
8676 (record_message): Renamed to ...
8677 (record_full_message): ... this. Updated all users.
8678 (record_message_wrapper): Renamed to ...
8679 (record_full_message_wrapper): ... this. Updated all users.
8680 (record_message_wrapper_safe): Renamed to ...
8681 (record_full_message_wrapper_safe): ... this. Updated all users.
8682 (record_gdb_operation_disable): Renamed to ...
8683 (record_full_gdb_operation_disable): ... this. Updated all users.
8684 (record_hw_watchpoint): Renamed to ...
8685 (record_full_hw_watchpoint): ... this. Updated all users.
8686 (record_exec_insn): Renamed to ...
8687 (record_full_exec_insn): ... this. Updated all users.
8688 (record_restore): Renamed to ...
8689 (record_full_restore): ... this. Updated all users.
8690 (record_async_inferior_event_token): Renamed to ...
8691 (record_full_async_inferior_event_token): ... this.
8692 Updated all users.
8693 (record_async_inferior_event_handler): Renamed to ...
8694 (record_full_async_inferior_event_handler): ... this.
8695 Updated all users.
8696 (record_core_open_1): Renamed to ...
8697 (record_full_core_open_1): ... this. Updated all users.
8698 (record_open_1): Renamed to ...
8699 (record_full_open_1): ... this. Updated all users.
8700 (record_open): Renamed to ...
8701 (record_full_open): ... this. Updated all users.
8702 (record_close): Renamed to ...
8703 (record_full_close): ... this. Updated all users.
8704 (record_resume_step): Renamed to ...
8705 (record_full_resume_step): ... this. Updated all users.
8706 (record_resumed): Renamed to ...
8707 (record_full_resumed): ... this. Updated all users.
8708 (record_execution_dir): Renamed to ...
8709 (record_full_execution_dir): ... this. Updated all users.
8710 (record_resume): Renamed to ...
8711 (record_full_resume): ... this. Updated all users.
8712 (record_get_sig): Renamed to ...
8713 (record_full_get_sig): ... this. Updated all users.
8714 (record_sig_handler): Renamed to ...
8715 (record_full_sig_handler): ... this. Updated all users.
8716 (record_wait_cleanups): Renamed to ...
8717 (record_full_wait_cleanups): ... this. Updated all users.
8718 (record_wait_1): Renamed to ...
8719 (record_full_wait_1): ... this. Updated all users.
8720 (record_wait): Renamed to ...
8721 (record_full_wait): ... this. Updated all users.
8722 (record_stopped_by_watchpoint): Renamed to ...
8723 (record_full_stopped_by_watchpoint): ... this. Updated all users.
8724 (record_disconnect): Renamed to ...
8725 (record_full_disconnect): ... this. Updated all users.
8726 (record_detach): Renamed to ...
8727 (record_full_detach): ... this. Updated all users.
8728 (record_mourn_inferior): Renamed to ...
8729 (record_full_mourn_inferior): ... this. Updated all users.
8730 (record_kill): Renamed to ...
8731 (record_full_kill): ... this. Updated all users.
8732 (record_stopped_data_address): Renamed to ...
8733 (record_full_stopped_data_address): ... this. Updated all users.
8734 (record_registers_change): Renamed to ...
8735 (record_full_registers_change): ... this. Updated all users.
8736 (record_store_registers): Renamed to ...
8737 (record_full_store_registers): ... this. Updated all users.
8738 (record_xfer_partial): Renamed to ...
8739 (record_full_xfer_partial): ... this. Updated all users.
8740 (record_breakpoint): Renamed to ...
8741 (record_full_breakpoint): ... this. Updated all users.
8742 (record_breakpoint_p): Renamed to ...
8743 (record_full_breakpoint_p): ... this. Updated all users.
8744 (record_breakpoints): Renamed to ...
8745 (record_full_breakpoints): ... this. Updated all users.
8746 (record_sync_record_breakpoints): Renamed to ...
8747 (record_full_sync_record_breakpoints): ... this.
8748 Updated all users.
8749 (record_init_record_breakpoints): Renamed to ...
8750 (record_full_init_record_breakpoints): ... this.
8751 Updated all users.
8752 (record_insert_breakpoint): Renamed to ...
8753 (record_full_insert_breakpoint): ... this. Updated all users.
8754 (record_remove_breakpoint): Renamed to ...
8755 (record_full_remove_breakpoint): ... this. Updated all users.
8756 (record_can_execute_reverse): Renamed to ...
8757 (record_full_can_execute_reverse): ... this. Updated all users.
8758 (record_get_bookmark): Renamed to ...
8759 (record_full_get_bookmark): ... this. Updated all users.
8760 (record_goto_bookmark): Renamed to ...
8761 (record_full_goto_bookmark): ... this. Updated all users.
8762 (record_async): Renamed to ...
8763 (record_full_async): ... this. Updated all users.
8764 (record_can_async_p): Renamed to ...
8765 (record_full_can_async_p): ... this. Updated all users.
8766 (record_is_async_p): Renamed to ...
8767 (record_full_is_async_p): ... this. Updated all users.
8768 (record_execution_direction): Renamed to ...
8769 (record_full_execution_direction): ... this. Updated all users.
8770 (record_info): Renamed to ...
8771 (record_full_info): ... this. Updated all users.
8772 (record_delete): Renamed to ...
8773 (record_full_delete): ... this. Updated all users.
8774 (record_is_replaying): Renamed to ...
8775 (record_full_is_replaying): ... this. Updated all users.
8776 (record_goto_entry): Renamed to ...
8777 (record_full_goto_entry): ... this. Updated all users.
8778 (record_goto_begin): Renamed to ...
8779 (record_full_goto_begin): ... this. Updated all users.
8780 (record_goto_end): Renamed to ...
8781 (record_full_goto_end): ... this. Updated all users.
8782 (record_goto): Renamed to ...
8783 (record_full_goto): ... this. Updated all users.
8784 (init_record_ops): Renamed to ...
8785 (init_record_full_ops): ... this. Updated all users.
8786 (record_core_resume): Renamed to ...
8787 (record_full_core_resume): ... this. Updated all users.
8788 (record_core_kill): Renamed to ...
8789 (record_full_core_kill): ... this. Updated all users.
8790 (record_core_fetch_registers): Renamed to ...
8791 (record_full_core_fetch_registers): ... this. Updated all users.
8792 (record_core_prepare_to_store): Renamed to ...
8793 (record_full_core_prepare_to_store): ... this. Updated all users.
8794 (record_core_store_registers): Renamed to ...
8795 (record_full_core_store_registers): ... this. Updated all users.
8796 (record_core_xfer_partial): Renamed to ...
8797 (record_full_core_xfer_partial): ... this. Updated all users.
8798 (record_core_insert_breakpoint): Renamed to ...
8799 (record_full_core_insert_breakpoint): ... this. Updated all users.
8800 (record_core_remove_breakpoint): Renamed to ...
8801 (record_full_core_remove_breakpoint): ... this. Updated all users.
8802 (record_core_has_execution): Renamed to ...
8803 (record_full_core_has_execution): ... this. Updated all users.
8804 (init_record_core_ops): Renamed to ...
8805 (init_record_full_core_ops): ... this. Updated all users.
8806 (cmd_record_restore): Renamed to ...
8807 (cmd_record_full_restore): ... this. Updated all users.
8808 (record_save_cleanups): Renamed to ...
8809 (record_full_save_cleanups): ... this. Updated all users.
8810 (cmd_record_start): Renamed to ...
8811 (cmd_record_full_start): ... this. Updated all users.
8812 (set_record_insn_max_num): Renamed to ...
8813 (set_record_full_insn_max_num): ... this. Updated all users.
8814 (set_record_command): Renamed to ...
8815 (set_record_full_command): ... this. Updated all users.
8816 (show_record_command): Renamed to ...
8817 (show_record_full_command): ... this. Updated all users.
8818 (_initialize_record): Renamed to ...
8819 (_initialize_record_full): ... this. Updated all users.
8820
8821 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8822
8823 * record.h: Split into this and ...
8824 * record-full.h: ... this.
8825 * record.c: Split into this and ...
8826 * record-full.c: ... this.
8827 * target.h (target_ops): Add new fields to_info_record,
8828 to_save_record, to_delete_record, to_record_is_replaying,
8829 to_goto_record_begin, to_goto_record_end, to_goto_record.
8830 (target_info_record): New.
8831 (target_save_record): New.
8832 (target_supports_delete_record): New.
8833 (target_delete_record): New.
8834 (target_record_is_replaying): New.
8835 (target_goto_record_begin): New.
8836 (target_goto_record_end): New.
8837 (target_goto_record): New.
8838 * target.c (target_info_record): New.
8839 (target_save_record): New.
8840 (target_supports_delete_record): New.
8841 (target_delete_record): New.
8842 (target_record_is_replaying): New.
8843 (target_goto_record_begin): New.
8844 (target_goto_record_end): New.
8845 (target_goto_record): New.
8846 * record.h: Declare struct cmd_list_element.
8847 (record_cmdlist): New declaration.
8848 (set_record_cmdlist): New declaration.
8849 (show_record_cmdlist): New declaration.
8850 (info_record_cmdlist): New declaration.
8851 (cmd_record_goto): New declaration.
8852 * record.c: Remove unnecessary includes.
8853 Include inferior.h.
8854 (cmd_record_goto): Remove declaration.
8855 (record_cmdlist): Now extern. Initialize.
8856 (set_record_cmdlist): Now extern. Initialize.
8857 (show_record_cmdlist): Now extern. Initialize.
8858 (info_record_cmdlist): Now extern. Initialize.
8859 (find_record_target): New.
8860 (require_record_target): New.
8861 (cmd_record_start): Update.
8862 (cmd_record_delete): Remove target-specific code.
8863 Call target_delete_record.
8864 (cmd_record_stop): Unpush any record target.
8865 (set_record_insn_max_num): Move to record-full.c
8866 (set_record_command): Add comment.
8867 (show_record_command): Add comment.
8868 (info_record_command): Update comment.
8869 Remove target-specific code.
8870 Call the record target's to_info_record.
8871 (cmd_record_start): New.
8872 (cmd_record_goto): Now extern.
8873 Remove target-specific code.
8874 Call target_goto_begin, target_goto_end, or target_goto.
8875 (_initialize_record): Move record target ops initialization to
8876 record-full.c.
8877 Change "record" command help text.
8878 Move "record restore", "record set", and "record show" commands to
8879 record-full.c.
8880 * Makefile.in (SFILES): Add record-full.c.
8881 (HFILES_NO_SRCDIR): Add record-full.h.
8882 (COMMON_OBS): Add record-full.o.
8883 * amd64-linux-tdep.c: Include record-full.h instead of record.h.
8884 * arm-tdep.c: Include record-full.h.
8885 * i386-linux-tdep.c: Include record-full.h instead of record.h.
8886 * i386-tdep.c: Include record-full.h.
8887 * infrun.c: Include record-full.h.
8888 * linux-record.c: Include record-full.h.
8889 * moxie-tdep.c: Include record-full.h.
8890 * record-full.c: Include record-full.h.
8891 Change module comment.
8892 (set_record_full_cmdlist): New.
8893 (show_record_full_cmdlist): New.
8894 (record_full_cmdlist): New.
8895 (record_goto_insn): New declaration.
8896 (record_save): New declaration.
8897 (record_check_insn_num): Change query string.
8898 (record_info): New.
8899 (record_delete): New.
8900 (record_is_replaying): New.
8901 (record_goto_entry): New.
8902 (record_goto_begin): New.
8903 (record_goto_end): New.
8904 (record_goto): New.
8905 (init_record_ops): Update.
8906 (init_record_core_ops): Update.
8907 (cmd_record_save): Rename to record_save. Remove target and arg checks.
8908 (cmd_record_start): New.
8909 (set_record_insn_max_num): Moved from record.c
8910 (set_record_full_command): New.
8911 (show_record_full_command): New.
8912 (_initialize_record_full): New.
8913
8914 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8915
8916 * target.h (add_deprecated_target_alias): New.
8917 * target.c (add_deprecated_target_alias): New.
8918
8919 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8920
8921 * common/linux-btrace.c: Include sys/ptrace, sys/types, sys/wait.h,
8922 and signal.h.
8923 (linux_supports_btrace): Add kernel and
8924 cpuid check.
8925 (kernel_supports_btrace): New function.
8926 (cpu_supports_btrace): New function.
8927 (intel_supports_btrace): New function.
8928
8929 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8930
8931 * target.h (enum target_object): Add TARGET_OBJECT_BTRACE.
8932 * remote.c: Include btrace.h.
8933 (struct btrace_target_info): New struct.
8934 (remote_supports_btrace): New function.
8935 (send_Qbtrace): New function.
8936 (remote_enable_btrace): New function.
8937 (remote_disable_btrace): New function.
8938 (remote_teardown_btrace): New function.
8939 (remote_read_btrace): New function.
8940 (init_remote_ops): Add btrace ops.
8941 (enum <unnamed>): Add btrace packets.
8942 (struct protocol_feature remote_protocol_features[]): Add btrace packets.
8943 (_initialize_remote): Add packet configuration for branch tracing.
8944
8945 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8946
8947 * features/btrace.dtd: New file.
8948 * Makefile.in (XMLFILES): Add btrace.dtd.
8949 * btrace.h (parse_xml_btrace): New declaration.
8950 * btrace.c: Include xml-support.h.
8951 (parse_xml_btrace): New function.
8952 (parse_xml_btrace_block): New function.
8953 (block_attributes): New struct.
8954 (btrace_attributes): New struct.
8955 (btrace_children): New struct.
8956 (btrace_elements): New struct.
8957
8958 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8959
8960 * amd64-linux-nat.c: Include btrace.h and linux-btrace.h.
8961 (amd64_linux_enable_btrace): New.
8962 (amd64_linux_disable_btrace): New.
8963 (amd64_linux_teardown_btrace): New.
8964 (_initialize_amd64_linux_nat): Initialize btrace ops.
8965 * i386-linux.nat.c: Include btrace.h and linux-btrace.h.
8966 (i386_linux_enable_btrace): New.
8967 (i386_linux_disable_btrace): New.
8968 (i386_linux_teardown_btrace): New.
8969 (_initialize_i386_linux_nat): Initialize btrace ops.
8970 * config/i386/linux.mh: Add linux-btrace.o.
8971 * config/i386/linux64.mh: Add linux-btrace.o.
8972
8973 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8974
8975 * common/linux_btrace.h: New file.
8976 * common/linux_btrace.c: New file.
8977 * Makefile.in (SFILES): Add btrace.c.
8978 (HFILES_NO_SRCDIR): Add common/linux-btrace.h.
8979 (COMMON_OBS): Add btrace.o.
8980 (linux-btrace.o): New rule.
8981
8982 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8983
8984 * target.h: Include btrace.h.
8985 (struct target_ops) <to_supports_btrace, to_enable_btrace,
8986 to_disable_btrace, to_teardown_btrace, to_read_btrace>: New.
8987 * target.c (target_supports_btrace): New function.
8988 (target_enable_btrace): New function.
8989 (target_disable_btrace): New function.
8990 (target_teardown_btrace): New function.
8991 (target_read_btrace): New function.
8992 * btrace.h: New file.
8993 * btrace.c: New file.
8994 * Makefile.in: Add btrace.c.
8995 * gdbthread.h: Include btrace.h.
8996 (struct thread_info): Add btrace field.
8997 * thread.c: Include btrace.h.
8998 (clear_thread_inferior_resources): Call target_teardown_btrace.
8999 * common/btrace-common.h: New file.
9000
9001 2013-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
9002
9003 * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Call also kill
9004 for CHILD, ignore PTRACE_KILL errors, move the inner block variable
9005 kill_status to outer block.
9006
9007 2013-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
9008
9009 Fix entry-values if the callee called a noreturn function.
9010 * dwarf2-frame-tailcall.c (dwarf2_tailcall_sniffer_first): Use
9011 get_frame_address_in_block. Add new comment.
9012
9013 2013-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
9014
9015 Fix entry-values in C++ across CUs.
9016 * dwarf2loc.c (call_site_to_target_addr) <FIELD_LOC_KIND_PHYSNAME>: Use
9017 lookup_minimal_symbol. Add a comment.
9018 * dwarf2read.c
9019 (read_call_site_scope) <is_ref_attr> <die_is_declaration>: Prefer
9020 DW_AT_linkage_name.
9021
9022 2013-03-08 Yao Qi <yao@codesourcery.com>
9023
9024 * tracepoint.c (_initialize_tracepoint): Indent the code.
9025
9026 2013-03-08 Pedro Alves <palves@redhat.com>
9027
9028 * findcmd.c (put_bits): Change type of parameter to 'gdb_byte *'.
9029 (parse_find_args, find_command): Change type of pattern buffer
9030 locals to 'gdb_byte *'.
9031
9032 2013-03-08 Stan Shebs <stan@codesourcery.com>
9033 Hafiz Abid Qadeer <abidh@codesourcery.com>
9034
9035 * NEWS: Mention set and show trace-buffer-size commands.
9036 Mention new packet.
9037 * target.h (struct target_ops): New method
9038 to_set_trace_buffer_size.
9039 (target_set_trace_buffer_size): New macro.
9040 * target.c (update_current_target): Set up new method.
9041 * tracepoint.c (trace_buffer_size): New global.
9042 (start_tracing): Send it to the target.
9043 (set_trace_buffer_size): New function.
9044 (_initialize_tracepoint): Add new setshow for trace-buffer-size.
9045 * remote.c (remote_set_trace_buffer_size): New function.
9046 (_initialize_remote): Use it.
9047 (QTBuffer:size) New remote command.
9048 (PACKET_QTBuffer_size): New enum.
9049 (remote_protocol_features): Add an entry for
9050 PACKET_QTBuffer_size.
9051
9052 2013-03-08 Tom Tromey <tromey@redhat.com>
9053
9054 * remote-m32r-sdi.c (m32r_load): Call skip_spaces on correct
9055 variable.
9056
9057 2013-03-07 Pedro Alves <palves@redhat.com>
9058
9059 * target.c (target_read_stralloc, target_fileio_read_alloc):
9060 *Cast pointer to 'gdb_byte *' in target call.
9061
9062 2013-03-07 Pedro Alves <palves@redhat.com>
9063
9064 * corefile.c (read_memory_string): Cast pointer to gdb_byte* in
9065 call.
9066
9067 2013-03-07 Keith Seitz <keiths@redhat.com>
9068
9069 * breakpoint.c (catch_syscall_split_args): Use skip_spaces.
9070 (trace_pass_command): Likewise.
9071 * cli/cli-cmds.c: Include cli/cli-utils.h.
9072 (source_command): Use skip-spaces.
9073 (disassemble_command): Likewise.
9074 * findcmd.c: Include cli/cli-utils.h.
9075 (parse_find_args): Use skip_spaces.
9076 * go32-nat.c: Include cli/cli-utils.h.
9077 (go32_sldt): Use skip_spaces.
9078 (go32_sgdt): Likewise.
9079 (go32_sidt): Likewise.
9080 (go32_pde): Likewise.
9081 (go32_pte): Likewise.
9082 (go32_pte_for_address): Likewise.
9083 * infcmd.c: Include cli/cli-utils.h.
9084 (registers_info): Use skip_spaces.
9085 * linux-tdep.c (read_mapping): Use skip_spaces_const.
9086 (linux_info_proc): Likewise.
9087 * linux-thread-db.c: Include cli/cli-utils.h.
9088 (info_auto_load_libthread_db): Use skip_spaces_const.
9089 * m32r-rom.c: Include cli/cli-utils.h.
9090 (m32r_upload_command): Use skip_spaces.
9091 * maint.c: Include cli/cli-utils.h.
9092 (maintenance_translate_address): Use skip_spaces.
9093 * mi/mi-parse.c: Include cli/cli-utils.h.
9094 (mi_parse_argv): Use skip_spaces.
9095 (mi_parse): Likewise.
9096 * minsyms.c: Include cli/cli-utils.h.
9097 (msymbol_hash_iw): Use skip_spaces_const.
9098 * objc-lang.c: Include cli/cli-utils.h.
9099 (parse_selector): Use skip_spaces.
9100 (parse_method): Likewise.
9101 * python/python.c: Include cli/cli-utils.h.
9102 (python_interactive_command)[HAVE_PYTHON]: Use skip_spaces.
9103 (python_command)[HAVE_PYTHON]: Likewise.
9104 (python_interactive_command)[!HAVE_PYTHON]: Likewise.
9105 * remote-m32r-sdi.c: Include cli/cli-utils.h.
9106 (m32r_load): Use skip_spaces.
9107 * serial.c: Include cli/cli-utils.h.
9108 (serial_open): Use skip_spaces_const.
9109 * stack.c: Include cli/cli-utils.h.
9110 (parse_frame_specification_1): Use skip_spaces_const.
9111 * symfile.c: Include cli/cli-utils.h.
9112 (set_ext_lang_command): Use skip_spaces.
9113 * symtab.c: Include cli/cli-utils.h.
9114 (rbreak_command): Use skip_spaces.
9115 * thread.c (thread_name_command): Use skip_spaces.
9116 * tracepoint.c (validate_actionline): Use skip_spaces.
9117 (encode_actions_1): Likewise.
9118 (trace_find_range_command): Likewise.
9119 (trace_find_outside_command): Likewise.
9120 (trace_dump_actions): Likewise.
9121
9122 2013-03-07 Pedro Alves <palves@redhat.com>
9123
9124 * c-lang.c (parse_one_string): Cast argument to gdb_byte *.
9125 * expprint.c (print_subexp_standard): Likewise.
9126 * utils.c (host_char_to_target): Likewise.
9127 * valprint.c (generic_emit_char, generic_printstr): Likewise.
9128 * varobj.c (value_get_print_value): Change type of local to char*.
9129 Cast it gdb_byte * in call to language printer.
9130
9131 2013-03-07 Pedro Alves <palves@redhat.com>
9132
9133 * charset.c (struct wchar_iterator) <input>: Change type to 'const
9134 gdb_byte *'.
9135 (make_wchar_iterator): Remove cast to char*.
9136 (wchar_iterate): Change type of local.
9137
9138 2013-03-07 Pedro Alves <palves@redhat.com>
9139
9140 * regcache.c (regcache_xmalloc_1): Call XCALLOC with signed char
9141 for 'regcache->register_status'.
9142
9143 2013-03-07 Pedro Alves <palves@redhat.com>
9144
9145 * breakpoint.c (breakpoint_xfer_memory): Change type of local to
9146 int.
9147
9148 2013-03-07 Pedro Alves <palves@redhat.com>
9149
9150 * stap-probe.c (handle_stap_probe): Add cast to char*.
9151
9152 2013-03-07 Pedro Alves <palves@redhat.com>
9153
9154 * linux-record.c (record_linux_system_call) <gdb_sys_msgrcv,
9155 RECORD_MSGRCV>: Pass a signed variable to
9156 regcache_raw_read_signed, instead of an unsigned one.
9157
9158 2013-03-07 Pedro Alves <palves@redhat.com>
9159
9160 * remote-notif.c (notif_debug): Change type to int.
9161 * remote-notif.h (notif_debug): Likewise.
9162
9163 2013-03-07 Pedro Alves <palves@redhat.com>
9164
9165 * ser-tcp.c (tcp_retry_limit): Change type to unsigned int.
9166
9167 2013-03-07 Pedro Alves <palves@redhat.com>
9168
9169 * remote.c (hex2bin, bin2hex): Move extern declarations to ...
9170 * remote.h (hex2bin, bin2hex): ... here.
9171 * tracepoint.c (hex2bin, bin2hex): Remove extern declarations.
9172
9173 2013-03-07 Eli Zaretskii <eliz@gnu.org>
9174
9175 * utils.c (initialize_utils): Improve doc strings of "set/show
9176 width", "set/show height", and "set/show pagination".
9177
9178 2013-03-06 Keith Seitz <keiths@redhat.com>
9179
9180 * ax-gdb.c (gen_printf): Make FORMAT const.
9181 * ax-gdb.h (gen_printf): Likewise.
9182 * ax-general.c (ax_string): Make STR const.
9183 * ax.h (ax_string): Likewise.
9184
9185 2013-03-06 Doug Evans <dje@google.com>
9186
9187 * elfread.c (elf_symfile_read): Move debugging printf to more
9188 logical location.
9189
9190 2013-03-06 Pedro Alves <palves@redhat.com>
9191
9192 * python/py-utils.c (target_string_to_unicode): Delete function.
9193 * python/python-internal.h (target_string_to_unicode): Delete
9194 declaration.
9195
9196 2013-03-06 Pierre Muller <muller@sourceware.org>
9197
9198 * linespec.c (get_current_search_block): ARI fix, use (void)
9199 for empty parameter list.
9200
9201 2013-03-05 Doug Evans <dje@google.com>
9202
9203 * ada-lang.c (ada_lookup_symbol_list_worker): New function, contents
9204 of old ada_lookup_symbol_list. In !full_search case, don't
9205 search superblocks.
9206 (ada_lookup_symbol_list): Delete arg full_search, all callers
9207 updated. Call ada_lookup_symbol_list_worker.
9208 (ada_iterate_over_symbols): Call ada_lookup_symbol_list_worker.
9209 * ada-lang.h (ada_lookup_symbol_list): Update.
9210 * language.h (language_defn): Update comment for
9211 la_iterate_over_symbols.
9212 * linespec.c (iterate_over_file_blocks): New function.
9213 (iterate_over_all_matching_symtabs): Call it.
9214 (lookup_prefix_sym): Ditto.
9215 (get_current_search_block): New function.
9216 (get_search_block): Delete.
9217 (find_label_symbols): Call get_current_search_block.
9218 (add_matching_symbols_to_info): Call iterate_over_file_blocks.
9219 * symtab.c (iterate_over_symbols): Don't search superblocks.
9220
9221 2013-03-05 Yao Qi <yao@codesourcery.com>
9222
9223 * cli/cli-decode.c (add_setshow_zuinteger_unlimited_cmd): Change
9224 parameter VAR's type from "unsigned int" to "int".
9225 * command.h (var_zuinteger_unlimited): Update its comments.
9226 (add_setshow_zuinteger_unlimited_cmd): Update the declaration.
9227
9228 2013-03-05 Corinna Vinschen <vinschen@redhat.de>
9229
9230 * NEWS: Mention new target x86_64-*-cygwin*.
9231
9232 2013-03-05 Corinna Vinschen <vinschen@redhat.de>
9233
9234 * configure.host: Add x86_64-*-cygwin* as host.
9235 * configure.tgt: Add x86_64-*-cygwin* as target.
9236 * config/i386/cygwin64.mh: New file.
9237
9238 2013-03-04 Jan Kratochvil <jan.kratochvil@redhat.com>
9239
9240 * linespec.c (decode_line_2): Fix duplicate request off by two message.
9241
9242 2013-03-04 Jan Kratochvil <jan.kratochvil@redhat.com>
9243
9244 * linespec.c (struct linespec_canonical_name): New.
9245 (struct linespec_state): Change canonical_names type to it.
9246 (add_sal_to_sals): Change variable canonical_name to canonical. Change
9247 xrealloc element size. Initialize the different CANONICAL fields.
9248 (canonical_to_fullform): New.
9249 (filter_results): Use it. Add variables canonical, fullform and
9250 cleanup.
9251 (struct decode_line_2_item, decode_line_2_compare_items): New.
9252 (decode_line_2): Remove variables iter and item_names, add variables
9253 items and items_count. Modify the code for these new variables.
9254
9255 2013-03-04 Corinna Vinschen <vinschen@redhat.com>
9256
9257 * coff-pe-read.c (read_pe_exported_syms): Don't return without
9258 calling do_cleanup.
9259
9260 2013-03-04 Luis Machado <lgustavo@codesourcery.com>
9261
9262 * tracepoint.c (build_traceframe_info): Add code for byte order.
9263
9264 2013-03-02 Kevin Buettner <kevinb@redhat.com>
9265
9266 * v850-tdep.c: (v850e2_register_name): Revise system register
9267 names to match current V850E2M architecture specifications.
9268 Update register number enum comments too.
9269
9270 2013-03-01 Jiong Wang <jiwang@tilera.com>
9271 Pedro Alves <palves@redhat.com>
9272
9273 * tilegx-tdep.c (tilegx_analyze_prologue): Limit bundle reading
9274 to END_ADDR.
9275 (tilegx_skip_prologue): Limit prologue analysis to section end.
9276
9277 2013-03-01 Jan Kratochvil <jan.kratochvil@redhat.com>
9278
9279 * dwarf2loc.c (call_site_find_chain_1): New variable save_callee_pc,
9280 use it.
9281
9282 2013-03-01 Pedro Alves <palves@redhat.com>
9283
9284 Use gdb_byte for bytes from the program being debugged.
9285
9286 * arm-tdep.c (arm_store_return_value, arm_get_longjmp_target):
9287 Change type of local 'buf' to gdb_byte.
9288 * avr-tdep.c (avr_frame_prev_register, avr_push_dummy_call): Likewise.
9289 * bfin-tdep.c (bfin_push_dummy_call): Likewise.
9290 * cris-tdep.c (cris_sigcontext_addr)
9291 (cris_sigtramp_frame_unwind_cache): Likewise.
9292 * frv-linux-tdep.c (frv_linux_pc_in_sigtramp)
9293 (frv_linux_sigcontext_reg_addr, frv_linux_sigtramp_frame_cache):
9294 Likewise.
9295 * frv-tdep.c (frv_pseudo_register_write, frv_analyze_prologue): Likewise.
9296 * hppa-hpux-tdep.c (hppa32_hpux_find_global_pointer)
9297 (hppa32_hpux_search_dummy_call_sequence)
9298 (hppa_hpux_supply_save_state): Likewise.
9299 * hppa-linux-tdep.c (insns_match_pattern)
9300 (hppa_linux_find_global_pointer): Likewise.
9301 * hppa-tdep.c (hppa_in_function_epilogue_p)
9302 (skip_prologue_hard_way, hppa_frame_cache): Likewise.
9303 * i386-nto-tdep.c (i386nto_sigcontext_addr): Likewise.
9304 * i386fbsd-tdep.c (i386fbsd_supply_uthread)
9305 (i386fbsd_collect_uthread): Likewise.
9306 * ia64-hpux-tdep.c (ia64_hpux_push_dummy_code): Likewise.
9307 * ia64-linux-tdep.c (ia64_linux_sigcontext_register_address): Likewise.
9308 * ia64-tdep.c (examine_prologue, ia64_frame_cache)
9309 (ia64_frame_prev_register, ia64_sigtramp_frame_cache)
9310 (ia64_sigtramp_frame_prev_register, ia64_access_reg)
9311 (ia64_access_rse_reg, ia64_libunwind_frame_this_id)
9312 (ia64_libunwind_frame_prev_register)
9313 (ia64_libunwind_sigtramp_frame_this_id)
9314 (ia64_find_global_pointer_from_dynamic_section)
9315 (find_extant_func_descr, find_func_descr, ia64_dummy_id)
9316 (ia64_unwind_pc): Likewise.
9317 * iq2000-tdep.c (iq2000_store_return_value): Likewise.
9318 * m68hc11-tdep.c (m68hc11_push_dummy_call)
9319 (m68hc11_extract_return_value): Likewise.
9320 * m68klinux-nat.c (fetch_register, store_register): Likewise.
9321 * mep-tdep.c (mep_pseudo_cr32_read, mep_pseudo_cr32_write)
9322 (mep_get_insn, mep_push_dummy_call): Likewise.
9323 * mips-linux-tdep.c (mips_linux_get_longjmp_target)
9324 (mips_linux_in_dynsym_stub): Likewise.
9325 * mn10300-tdep.c (mep_pseudo_cr32_write): Likewise.
9326 * ppc-linux-nat.c (fetch_register, store_register): Likewise.
9327 * regcache.c (dump_endian_bytes): Change type of parameter 'buf'
9328 to gdb_byte.
9329 * remote-mips.c (mips_set_register): Likewise.
9330 * remote-sim.c (gdbsim_fetch_register): Likewise.
9331 * score-tdep.c (score7_fetch_inst): Change type of parameter
9332 'memblock' and local 'buf' to gdb_byte.
9333 (score7_malloc_and_get_memblock): Change return type to gdb_byte.
9334 Change type of local 'buf' to gdb_byte. Adjust.
9335 (score7_adjust_memblock_ptr): Change type of parameter 'memblock'
9336 to gdb_byte**.
9337 (score7_analyze_prologue): Change type of 'memblock' and
9338 'memblock_ptr' locals to gdb_byte*.
9339 * sh64-tdep.c (sh64_extract_return_value)
9340 (sh64_store_return_value): Change type of local 'buf' to gdb_byte.
9341 * solib-darwin.c (darwin_current_sos, darwin_read_exec_load_addr):
9342 * solib-pa64.c (pa64_solib_create_inferior_hook)
9343 (pa64_open_symbol_file_object): Remove local 'buf'.
9344 * solib-som.c (som_solib_create_inferior_hook, link_map_start)
9345 (som_open_symbol_file_object): Likewise.
9346 * solib-spu.c (spu_current_sos): Likewise.
9347 * spu-linux-nat.c (spu_fetch_inferior_registers): Likewise.
9348 * spu-multiarch.c (parse_spufs_run, spu_fetch_registers)
9349 (spu_store_registers): Likewise.
9350 * target.c (debug_print_register): Likewise.
9351 * tic6x-tdep.c (tic6x_get_longjmp_target): Likewise.
9352 * xstormy16-tdep.c (xstormy16_store_return_value)
9353 (xstormy16_push_dummy_call, xstormy16_resolve_jmp_table_entry)
9354 (xstormy16_find_jmp_table_entry): Likewise.
9355
9356 2013-03-01 Jiong Wang <jiwang@tilera.com>
9357
9358 * tilegx-tdep.c (tilegx_get_longjmp_target): New function.
9359 (tilegx_gdbarch_init): Install it.
9360
9361 2013-02-28 Tom Tromey <tromey@redhat.com>
9362
9363 * python/py-arch.c (archpy_disassemble): Use PyInt_Check and
9364 PyLong_Check.
9365
9366 2013-02-28 Doug Evans <dje@google.com>
9367
9368 * python/py-finishbreakpoint.c (bpfinishpy_init): gcc -Wall lint.
9369 * python/python.c (gdbpy_find_pc_line): Ditto.
9370
9371 2013-02-28 Tom Tromey <tromey@redhat.com>
9372
9373 * contrib/excheck.py: New file.
9374 * contrib/exsummary.py: New file.
9375 * contrib/gcc-with-excheck: New file.
9376
9377 2013-02-28 Tom Tromey <tromey@redhat.com>
9378
9379 * python/python.c (gdbpy_print_stack): Call begin_line and
9380 fprintf_filtered inside TRY_CATCH.
9381
9382 2013-02-28 Tom Tromey <tromey@redhat.com>
9383
9384 * python/python.c (gdbpy_find_pc_line): Call find_pc_line
9385 inside TRY_CATCH.
9386
9387 2013-02-28 Tom Tromey <tromey@redhat.com>
9388
9389 * py-finishbreakpoint.c (bpfinishpy_init): Reorganize to call
9390 frame_object_to_frame_info inside TRY_CATCH.
9391
9392 2013-02-28 Tom Tromey <tromey@redhat.com>
9393
9394 * py-block.c (gdbpy_block_for_pc): Call block_for_pc inside
9395 TRY_CATCH.
9396
9397 2013-02-28 Tom Tromey <tromey@redhat.com>
9398
9399 * objfiles.h (ALL_PSPACE_OBJFILES): Remove trailing backlash.
9400
9401 2013-02-27 Corinna Vinschen <vinschen@redhat.com>
9402
9403 * windows-nat.c: Throughout, fix format strings and casts of
9404 printf-like functions to avoid type related warnings on all
9405 platforms.
9406 (handle_output_debug_string): Fetch context information address
9407 from debug string using string_to_core_addr.
9408
9409 2013-02-27 Jiong Wang <jiwang@tilera.com>
9410
9411 * regformats/reg-tilegx.dat (name): Change abi name to "tilegx".
9412 * regformats/reg-tilegx32.dat: New.
9413
9414 2013-02-27 Jiong Wang <jiwang@tilera.com>
9415
9416 * configure.tgt (tilegx-*-linux*): Enable gdbserver.
9417
9418 2013-02-27 Jiong Wang <jiwang@tilera.com>
9419
9420 * configure.tgt (tilegx-*-linux*): Replace whitespace with tab.
9421
9422 2013-02-27 Yao Qi <yao@codesourcery.com>
9423 Pedro Alves <palves@redhat.com>
9424
9425 * tracepoint.c (tfile_trace_find): For tfind
9426 pc/tp/range/outside, look for the next trace frame instead of
9427 always starting from frame 0.
9428
9429 2013-02-26 Anthony Green <green@moxielogic.com>
9430
9431 * configure.tgt: Add support for moxie-*-rtems* target.
9432
9433 2013-02-25 Pedro Alves <palves@redhat.com>
9434
9435 * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Change
9436 warning text.
9437
9438 2013-02-24 Maciej W. Rozycki <macro@codesourcery.com>
9439
9440 * mips-tdep.c (mips32_scan_prologue): Reset frame_offset to zero
9441 if $fp is used as the virtual frame pointer.
9442
9443 2013-02-23 Alan Modra <amodra@gmail.com>
9444
9445 * elfread.c (elf_symtab_read): Do not use udata.p here to find
9446 symbol size.
9447 * ppc64-tdep.c (ppc64_elf_make_msymbol_special): New function.
9448 * ppc64-tdep.h (ppc64_elf_make_msymbol_special): Declare.
9449 * ppc-linux-tdep.c (ppc_linux_init_abi): Set up to use the above.
9450 * ppcfbsd-tdep.c (ppcfbsd_init_abi): Likewise.
9451
9452 2013-02-22 Jan Kratochvil <jan.kratochvil@redhat.com>
9453
9454 Code cleanup.
9455 * elfread.c (build_id_bfd_get): Make the return type const.
9456 (build_id_verify): Make the check parameter const.
9457 (build_id_to_debug_filename): Make the build_id parameter and variable
9458 data const.
9459 (find_separate_debug_file_by_buildid): Make the variable build_id const.
9460
9461 2013-02-21 Alan Modra <amodra@gmail.com>
9462
9463 * elfread.c (build_id_bfd_get): Adjust for elf_tdata changes.
9464
9465 2013-02-20 Siva Chandra Reddy <sivachandra@google.com>
9466
9467 Add a new method 'disassemble' to gdb.Architecture class.
9468 * python/py-arch.c (archpy_disassmble): Implementation of the
9469 new method gdb.Architecture.disassemble.
9470 (arch_object_methods): Add entry for the new method.
9471
9472 2013-02-20 Jiong Wang <jiwang@tilera.com>
9473
9474 * MAINTAINERS (Write After Approval): Add myself to the list.
9475
9476 2013-02-19 Pedro Alves <palves@redhat.com>
9477
9478 Garbage collect 'struct monitor_ops'::load_routine.
9479
9480 * monitor.h (struct monitor_ops) <load_routine>: Remove field.
9481 * monitor.c (monitor_load): No longer call
9482 current_monitor->load_routine.
9483 * dbug-rom.c (init_dbug_cmds): Don't set 'load_routine'.
9484 * m32r-rom.c (init_m32r_cmds): Don't set 'load_routine'.
9485 * ppcbug-rom.c (init_ppc_cmds): Don't set 'load_routine'.
9486
9487 2013-02-19 Pedro Alves <palves@redhat.com>
9488
9489 PR gdb/15161
9490
9491 Harmonize with generic_load.
9492
9493 * monitor.c: Include "readline/readline.h".
9494 (monitor_load): Rename parameter 'file' to 'args'. Use build_argv
9495 instead of sscanf. Use CORE_ADDR/strtoulst instead of unsigned
9496 long/strtol for the 'load_offset' local. Error out if no argument
9497 is given or if too many arguments are given. Tilde expand the
9498 passed in file name.
9499
9500 2013-02-19 Kai Tietz <ktietz@redhat.com>
9501
9502 PR gdb/15161
9503 * symfile.c (load_section_data): Change type of load_offset
9504 to CORE_ADDR.
9505 (generic_load): User strtoulst instead of strtoul for conversion
9506 of load_offset.
9507
9508 2013-02-19 Jiong Wang <jiwang@tilera.com>
9509
9510 * tilegx-tdep.c (tilegx_analyze_prologue): add check for
9511 for return address, "lr" register, saved on stack.
9512 * tilegx-tdep.c (tilegx_frame_cache): update "PC" reg
9513 after we invoke tilegx_analyze_prologue.
9514
9515 2013-02-19 Jiong Wang <jiwang@tilera.com>
9516
9517 * tilegx-tdep.c (itilegx_gdbarch_init): char type should be signed.
9518
9519 2013-02-19 Jiong Wang <jiwang@tilera.com>
9520
9521 * tilegx-tdep.c (tilegx_skip_prologue): Use skip_prologue_using_sal.
9522
9523 2013-02-19 Jiong Wang <jiwang@tilera.com>
9524
9525 * tilegx-tdep.c (INT_SWINT_1_SIGRETURN): New macro.
9526 (tilegx_write_pc): New function.
9527 (tilegx_cannot_reference_register): Return zero if REGNO
9528 is TILEGX_FAULTNUM_REGNUM.
9529 (tilegx_gdbarch_init): Add call to set_gdbarch_write_pc.
9530 (tilegx_register_name): Add handling of "faultnum" register.
9531 * tilegx-tdep.h (enum tilegx_regnum): Add TILEGX_FAULTNUM_REGNUM.
9532 * tilegx-linux-tdep.c (tilegx_linux_supply_regset): Add
9533 handling of TILEGX_FAULTNUM_REGNUM.
9534 * tilegx-linux-nat.c (regmap): Add entry for TILEGX_FAULTNUM_REGNUM.
9535
9536 2013-02-19 Jiong Wang <jiwang@tilera.com>
9537
9538 * tilegx-tdep.c (tilegx_push_dummy_call): args pushed on stack
9539 should be aligned to 64bit.
9540
9541 2013-02-19 Kai Tietz <ktietz@redhat.com>
9542
9543 * windows-nat.c (windows_xfer_memory): Fix debug-output
9544 for LLP64.
9545
9546 2013-02-19 Lei Liu <lei.liu2@windriver.com>
9547
9548 * mips-linux-nat.c (mips64_linux_regsets_store_registers):
9549 Don't check DSP register number if HAVE_DSP is not set.
9550
9551 2013-02-19 Alan Modra <amodra@gmail.com>
9552
9553 * elfread.c (struct build_id): Delete. Use struct elf_build_id
9554 throughout file instead.
9555 (build_id_bfd_get): Update to use new elf_tdata build_id field.
9556 Don't xmalloc return value.
9557 (build_id_verify): Similarly. Don't xfree.
9558 (build_id_to_debug_filename): Update.
9559 (find_separate_debug_file_by_buildid): Update, don't xfree.
9560
9561 2013-02-18 Tom Tromey <tromey@redhat.com>
9562
9563 PR gdb/15102:
9564 * dwarf2read.c (read_subrange_type): Use result of
9565 'check_typedef'.
9566
9567 2013-02-16 Yuanhui Zhang <asmwarrior@gmail.com>
9568
9569 * frame.c: Remove one extra white space after #include
9570 directive.
9571
9572 2013-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
9573
9574 * contrib/cc-with-tweaks.sh: Extend the comment for -p option.
9575
9576 2013-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
9577
9578 * gdb-gdb.gdb.in: Wrap set complaints, b internal_error, b info_command
9579 and dir commands into an if block.
9580
9581 2013-02-15 Sanimir Agovic <sanimir.agovic@intel.com>
9582
9583 * python/py-breakpoint (struct pybp_code): Use int instead of
9584 enum type_code.
9585
9586 2013-02-15 Pedro Alves <pedro@codesourcery.com>
9587 Hafiz Abid Qadeer <abidh@codesourcery.com>
9588
9589 * NEWS: Mention new field "trace-file".
9590 * tracepoint.c (trace_status_mi): Output "trace-file" field.
9591 (tfile_open): Record the trace file's filename in the trace
9592 status.
9593 (tfile_files_info): Mention the name of the trace file.
9594 Check the "filename" field explicitely.
9595 (trace_status_command): Explicitely check "filename" field.
9596 (trace_find_command): Ditto.
9597 (trace_find_pc_command): Ditto.
9598 (trace_find_tracepoint_command): Ditto.
9599 (trace_find_line_command): Ditto.
9600 (trace_find_range_command): Ditto.
9601 (trace_find_outside_command): Ditto.
9602 * tracepoint.h (struct trace_status) <from_file>: Rename it
9603 to "filename" and make it hold the trace file's filename
9604 instead of a boolean.
9605 * remote.c (remote_get_trace_status): Initialize "filename"
9606 field with NULL instead of 0.
9607
9608 2013-02-15 Yao Qi <yao@codesourcery.com>
9609
9610 * remote.c: Fix a typo.
9611
9612 2013-02-14 Pierre Muller <muller@sourceware.org>
9613
9614 * contrib/ari/gdb_ari.sh (GNU/Linux rule): Remove.
9615
9616 2013-02-14 Pedro Alves <palves@redhat.com>
9617
9618 * utils.c (savestring): Don't #undef it. Move function to
9619 common/common-utils.c.
9620 * common/common-utils.c: Include gdb_string.h.
9621 (savestring): Move here from utils.c.
9622 * common/common-utils.h (savestring): Declare.
9623
9624 2013-02-14 Pedro Alves <palves@redhat.com>
9625
9626 * utils.c (savestring): Rename parameter 'size' to 'len'.
9627
9628 2013-02-14 Pedro Alves <palves@redhat.com>
9629 Yufeng Zhang <yufeng.zhang@arm.com>
9630
9631 * aarch64-linux-nat.c (aarch64_init_debug_reg_state): Delete.
9632 (aarch64_inferior_data, struct aarch64_inferior_data):
9633 Delete.
9634 (struct aarch64_process_info): New.
9635 (aarch64_process_list): New global.
9636 (aarch64_find_process_pid, aarch64_add_process)
9637 (aarch64_process_info_get): New functions.
9638 (aarch64_inferior_data_get): Delete.
9639 (aarch64_process_info_get): New function.
9640 (aarch64_forget_process): New function.
9641 (aarch64_get_debug_reg_state): New parameter 'pid'. Reimplement.
9642 (aarch64_linux_prepare_to_resume): Pass the lwp's pid to
9643 aarch64_get_debug_reg_state.
9644 (aarch64_notify_debug_reg_change): Use iterate_over_lwps
9645 instead of linux_nat_iterate_watchpoint_lwps.
9646 (aarch64_linux_new_fork): New function.
9647 (aarch64_linux_child_post_startup_inferior): Use
9648 aarch64_forget_process instead of aarch64_init_debug_reg_state.
9649 (aarch64_handle_breakpoint, aarch64_linux_insert_hw_breakpoint)
9650 (aarch64_linux_remove_hw_breakpoint)
9651 (aarch64_handle_aligned_watchpoint)
9652 (aarch64_handle_unaligned_watchpoint)
9653 (aarch64_linux_insert_watchpoint)
9654 (aarch64_linux_remove_watchpoint)
9655 (aarch64_linux_stopped_data_address): Adjust to pass the current
9656 process id to aarch64_debug_reg_state.
9657 (_initialize_aarch64_linux_nat): Install aarch64_linux_new_fork as
9658 linux_nat_new_fork hook, and aarch64_forget_process as
9659 linux_nat_forget_process hook; remove the call to
9660 register_inferior_data_with_cleanup.
9661
9662 2013-02-14 Pedro Alves <palves@redhat.com>
9663
9664 * eval.c (evaluate_subexp_for_address) <default_case_after_eval,
9665 EVAL_AVOID_SIDE_EFFECTS>: Swap and handle TYPE_CODE_REF before
9666 lval_memory.
9667
9668 2013-02-14 Pedro Alves <pedro@codesourcery.com>
9669 Hafiz Abid Qadeer <abidh@codesourcery.com>
9670
9671 * tracepoint.h (validate_trace_state_variable_name): Declare.
9672 * tracepoint.c (validate_trace_state_variable_name): New.
9673 (trace_variable_command): Parse the trace state variable's name
9674 without using parse_expression. Do several validations.
9675 * mi/mi-main.c (mi_cmd_trace_define_variable): Don't parse the
9676 trace state variable's name with parse_expression. Validate it.
9677
9678 2013-02-14 Yao Qi <yao@codesourcery.com>
9679
9680 * infcmd.c (breakpoint_proceeded): Remove it.
9681
9682 2013-02-14 Yao Qi <yao@codesourcery.com>
9683
9684 * tracepoint.c (end_actions_pseudocommand): Make it static.
9685 (while_stepping_pseudocommand): Likewise.
9686 * tracepoint.h (end_actions_pseudocommand): Remove the
9687 declaration.
9688 (while_stepping_pseudocommand): Likewise.
9689
9690 2013-02-14 Yao Qi <yao@codesourcery.com>
9691
9692 * cli/cli-decode.c (help_cmd): Remove the declaration of
9693 "cmdlist".
9694 (help_all): Likewise.
9695
9696 2013-02-13 Pedro Alves <palves@redhat.com>
9697
9698 * amd64-linux-nat.c (update_debug_registers_callback):
9699 Update comment.
9700 (amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use
9701 iterate_over_lwps.
9702 (amd64_linux_prepare_to_resume): Pass the lwp's pid to
9703 i386_debug_reg_state.
9704 (amd64_linux_new_fork): New function.
9705 (_initialize_amd64_linux_nat): Install amd64_linux_new_fork as
9706 linux_nat_new_fork hook, and i386_forget_process as
9707 linux_nat_forget_process hook.
9708 * i386-linux-nat.c (update_debug_registers_callback):
9709 Update comment.
9710 (i386_linux_dr_set_control, i386_linux_dr_set_addr): Use
9711 iterate_over_lwps.
9712 (i386_linux_prepare_to_resume): Pass the lwp's pid to
9713 i386_debug_reg_state.
9714 (i386_linux_new_fork): New function.
9715 (_initialize_i386_linux_nat): Install i386_linux_new_fork as
9716 linux_nat_new_fork hook, and i386_forget_process as
9717 linux_nat_forget_process hook.
9718 * i386-nat.c (i386_init_dregs): Delete.
9719 (i386_inferior_data, struct i386_inferior_data):
9720 Delete.
9721 (struct i386_process_info): New.
9722 (i386_process_list): New global.
9723 (i386_find_process_pid, i386_add_process, i386_process_info_get):
9724 New functions.
9725 (i386_inferior_data_get): Delete.
9726 (i386_process_info_get): New function.
9727 (i386_debug_reg_state): New parameter 'pid'. Reimplement.
9728 (i386_forget_process): New function.
9729 (i386_cleanup_dregs): Rewrite.
9730 (i386_update_inferior_debug_regs, i386_insert_watchpoint)
9731 (i386_remove_watchpoint, i386_region_ok_for_watchpoint)
9732 (i386_stopped_data_address, i386_insert_hw_breakpoint)
9733 (i386_remove_hw_breakpoint): Adjust to pass the current process id
9734 to i386_debug_reg_state.
9735 (i386_use_watchpoints): Don't register inferior data.
9736 * i386-nat.h (i386_debug_reg_state): Add new 'pid' parameter, and
9737 adjust comment.
9738 (i386_forget_process): Declare.
9739 * linux-fork.c (delete_fork): Call linux_nat_forget_process.
9740 * linux-nat.c (linux_nat_new_fork, linux_nat_forget_process_hook):
9741 New static globals.
9742 (linux_child_follow_fork): Don't call linux_nat_new_thread here.
9743 (add_initial_lwp): New, factored out from ...
9744 (add_lwp): ... this. Don't check the number of lwps before
9745 calling linux_nat_new_thread.
9746 (linux_nat_iterate_watchpoint_lwps): Delete.
9747 (linux_nat_attach): Use add_initial_lwp instead of add_lwp.
9748 (linux_handle_extended_wait): Call the linux_nat_new_fork hook on
9749 forks and vforks.
9750 (linux_nat_wait_1): Use add_initial_lwp instead of add_lwp for the
9751 initial lwp.
9752 (linux_nat_kill, linux_nat_mourn_inferior): Call
9753 linux_nat_forget_process.
9754 (linux_nat_set_new_fork, linux_nat_set_forget_process)
9755 (linux_nat_forget_process): New functions.
9756 * linux-nat.h (linux_nat_iterate_watchpoint_lwps_ftype): Delete
9757 type.
9758 (linux_nat_iterate_watchpoint_lwps): Delete declaration.
9759 (linux_nat_new_fork_ftype, linux_nat_forget_process_ftype): New
9760 types.
9761 (linux_nat_set_new_fork, linux_nat_set_forget_process)
9762 (linux_nat_forget_process): New declarations.
9763
9764 * amd64fbsd-nat.c (super_mourn_inferior): New global.
9765 (amd64fbsd_mourn_inferior): New function.
9766 (_initialize_amd64fbsd_nat): Override to_mourn_inferior.
9767 * windows-nat.c (windows_detach): Call i386_cleanup_dregs.
9768
9769 2013-02-13 Marcus Shawcroft <marcus.shawcroft@arm.com>
9770
9771 * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity):
9772 Adding _().
9773
9774 2013-02-13 Marcus Shawcroft <marcus.shawcroft@arm.com>
9775
9776 * aarch64-linux-nat.c (debug_reg_change_callback)
9777 (aarch64_linux_get_debug_reg_capacity): ARI fix: Replace %llx with
9778 %s and phex().
9779
9780 2013-02-13 Marcus Shawcroft <marcus.shawcroft@arm.com>
9781
9782 * aarch64-linux-nat.c (dr_changed_t): ARI fix: Replace long long
9783 with LONGEST.
9784
9785 2013-02-13 Pedro Alves <palves@redhat.com>
9786 Hafiz Abid Qadeer <abidh@codesourcery.com>
9787
9788 * c-lang.c (c_op_print_tab): Add entry for UNOP_PLUS.
9789
9790 2013-02-12 Tom Tromey <tromey@redhat.com>
9791
9792 PR symtab/11464:
9793 * c-exp.y (lex_one_token): Initialize other fields of yylval on
9794 NAME return.
9795 (classify_inner_name): Remove 'first_name' argument, add
9796 'context'. Remove unused variable.
9797 (yylex): Explicitly maintain the context type. Exit loop earlier
9798 if NAME result is seen.
9799
9800 2013-02-12 Pedro Alves <palves@redhat.com>
9801
9802 * amd64-darwin-tdep.c: Add (C) after Copyright.
9803 * cli/cli-cmds.h: Ditto.
9804 * cli/cli-decode.c: Ditto.
9805 * cli/cli-decode.h: Ditto.
9806 * cli/cli-dump.c: Ditto.
9807 * cli/cli-dump.h: Ditto.
9808 * cli/cli-interp.c: Ditto.
9809 * cli/cli-logging.c: Ditto.
9810 * cli/cli-script.c: Ditto.
9811 * cli/cli-script.h: Ditto.
9812 * cli/cli-setshow.c: Ditto.
9813 * cli/cli-setshow.h: Ditto.
9814 * cli/cli-utils.c: Ditto.
9815 * cli/cli-utils.h: Ditto.
9816 * config/alpha/nm-osf3.h: Ditto.
9817 * config/djgpp/djconfig.sh: Ditto.
9818 * config/i386/nm-fbsd.h: Ditto.
9819 * config/i386/nm-i386gnu.h: Ditto.
9820 * config/nm-linux.h: Ditto.
9821 * config/nm-nto.h: Ditto.
9822 * config/rs6000/nm-rs6000.h: Ditto.
9823 * config/sparc/nm-sol2.h: Ditto.
9824 * darwin-nat-info.c: Ditto.
9825 * dfp.c: Ditto.
9826 * dfp.h: Ditto.
9827 * gdb-demangle.h: Ditto.
9828 * i386-darwin-nat.c: Ditto.
9829 * i386-darwin-tdep.c: Ditto.
9830 * linux-fork.h: Ditto.
9831 * m32c-tdep.c: Ditto.
9832 * microblaze-linux-tdep.c: Ditto.
9833 * microblaze-rom.c: Ditto.
9834 * microblaze-tdep.c: Ditto.
9835 * microblaze-tdep.h: Ditto.
9836 * mips-linux-tdep.h: Ditto.
9837 * ppc-ravenscar-thread.c: Ditto.
9838 * ppc-ravenscar-thread.h: Ditto.
9839 * prologue-value.c: Ditto.
9840 * prologue-value.h: Ditto.
9841 * ravenscar-thread.c: Ditto.
9842 * ravenscar-thread.h: Ditto.
9843 * sparc-ravenscar-thread.c: Ditto.
9844 * sparc-ravenscar-thread.h: Ditto.
9845 * tilegx-linux-tdep.c: Ditto.
9846 * unwind_stop_reasons.def: Ditto.
9847 * windows-nat.h: Ditto.
9848 * xtensa-linux-tdep.c: Ditto.
9849 * xtensa-xtregs.c: Ditto.
9850 * regformats/regdat.sh: Ditto.
9851 * regformats/regdef.h: Ditto.
9852
9853 2013-02-12 Pedro Alves <palves@redhat.com>
9854
9855 * break-catch-sig.c: Update copyright years.
9856
9857 2013-02-11 Siva Chandra Reddy <sivachandra@google.com>
9858
9859 Add support for a destructor for ui_out data and use it to
9860 provide a ui_out destructor.
9861 * ui-out.h: Declare the new ui_out destructor.
9862 (ui_out_impl): Add a field for data destructor in ui_out_impl.
9863 * ui-out.c (default_data_destroy): Add a default data destructor
9864 which does nothing.
9865 (default_ui_out_impl): Set the new data_destroy field to
9866 default_data_destroy
9867 (uo_data_destroy): Local function which invokes the data
9868 destructor if present.
9869 (clear_table): Local function which clears the table data of a
9870 ui_out object.
9871 (ui_out_destroy): Public function which frees a ui_out object.
9872 (ui_out_table_end): Use the new clear_table function.
9873 * cli-out.c (cli_ui_out_impl): Set the new data_destroy field to
9874 NULL.
9875 * mi/mi-out.c (mi_ui_out_impl): Set the new data_destroy field
9876 to NULL.
9877
9878 2013-02-11 Doug Evans <dje@google.com>
9879
9880 * printcmd.c (printf_c_string,printf_wide_c_string): New functions.
9881 (printf_decfloat): New function. Broken out from ui_printf.
9882 Remove unnecessary code to shift the entire format string down.
9883 (printf_pointer): New function.
9884 (ui_printf): Code to print C strings, wide C strings, decfloats,
9885 and pointers moved to separate functions.
9886
9887 2013-02-11 Sergio Durigan Junior <sergiodj@redhat.com>
9888
9889 * valops.c (value_assign): Handling bitfield offset in
9890 `lval_internalvar_component' case.
9891
9892 2013-02-08 Doug Evans <dje@google.com>
9893
9894 * common/format.c (parse_format_string): Fix whitespace.
9895
9896 2013-02-08 Matthew Gretton-Dann <matthew.gretton-dann@linaro.org>
9897
9898 * stack.c (return_command): Work around uninitialized variable
9899 warning.
9900
9901 2013-02-08 Yufeng Zhang <yufeng.zhang@arm.com>
9902
9903 * aarch64-linux-tdep.c (AARCH64_LINUX_SIZEOF_GREGSET): Change the
9904 number of the registers from 36 to 34.
9905
9906 2013-02-08 Marcus Shawcroft <marcus.shawcroft@arm.com>
9907
9908 * NEWS: Mention new AArch64 native and target support.
9909
9910 2013-02-08 Marcus Shawcroft <marcus.shawcroft@arm.com>
9911
9912 * MAINTAINERS (Write After Approval): Add myself.
9913
9914 2013-02-08 Jim MacArthur <jim.macarthur@arm.com>
9915 Marcus Shawcroft <marcus.shawcroft@arm.com>
9916 Nigel Stephens <nigel.stephens@arm.com>
9917 Yufeng Zhang <yufeng.zhang@arm.com>
9918
9919 * aarch64-linux-nat.c: New file.
9920 * config/aarch64/linux.mh: New file.
9921 * configure.host: Add AArch64.
9922 * Makefile.in (ALLDEPFILES): Add aarch64-linux-nat.c.
9923
9924 2013-02-07 Doug Evans <dje@google.com>
9925
9926 * cli/cli-cmds.c (_initialize_cli_cmds): Clarify argument to
9927 disassemble command.
9928
9929 2013-02-07 Marcus Shawcroft <marcus.shawcroft@arm.com>
9930
9931 * aarch64-linux-tdep.c (aarch64_linux_init_abi): Call
9932 set_gdbarch_fetch_tls_load_module_address.
9933
9934 2013-02-06 David S. Miller <davem@davemloft.net>
9935
9936 * sparc-tdep.c (sparc32_return_value): Handle writing return value when
9937 using RETURN_VALUE_ABI_PRESERVES_ADDRESS.
9938 * value.c (struct_return_convention): New function.
9939 (using_struct_return): Implement in terms of struct_return_convention.
9940 * value.h (struct_return_convention): Declare.
9941 * stack.c (return_command): Allow successful overriding of the return
9942 value when RETURN_VALUE_ABI_PRESERVES_ADDRESS.
9943
9944 2013-02-06 Tom Tromey <tromey@redhat.com>
9945
9946 * python/py-type.c (typy_strip_typedefs): Don't call check_typedef
9947 outside of TRY_CATCH.
9948
9949 2013-02-06 Yao Qi <yao@codesourcery.com>
9950
9951 * mi/mi-interp.c: Include "tracepoint.h".
9952 (mi_tsv_modified): Declare.
9953 (mi_tsv_created, mi_tsv_deleted): Update declaration.
9954 (mi_interpreter_init): Call observer_attach_tsv_modified.
9955 (mi_tsv_modified): New.
9956 (mi_tsv_created, mi_tsv_deleted): Update.
9957 * tracepoint.c (trace_variable_command): Call
9958 observer_notify_tsv_modified if the initial value of tsv is
9959 changed.
9960 (delete_trace_state_variable): Call
9961 observer_notify_tsv_deleted earlier.
9962 (trace_variable_command): Caller update.
9963 (create_tsv_from_upload): Likewise.
9964 * observer.sh: Declare "struct trace_state_variable".
9965
9966 * NEWS: Mention the new MI notification "=tsv-modified".
9967
9968 2013-02-05 Doug Evans <dje@google.com>
9969
9970 * completer.c (location_completer): Fix typo in comment.
9971
9972 2013-02-05 Jan Kratochvil <jan.kratochvil@redhat.com>
9973
9974 * breakpoint.c (add_location_to_breakpoint): Insert the location with
9975 ADDRESS sorted.
9976
9977 2013-02-05 Marcus Shawcroft <marcus.shawcroft@arm.com>
9978
9979 * aarch64-tdep.c (aarch64_analyze_prologue): ARI fix:
9980 Refactor if statement to avoid trailing || operator.
9981
9982 2013-02-05 Andreas Tobler <andreast@fgznet.ch>
9983
9984 * NEWS: Add PowerPC FreeBSD as a new native configuration.
9985
9986 2013-02-04 Andreas Tobler <andreast@fgznet.ch>
9987
9988 * Makefile.in (ALL_TARGET_OBS): Add powerpc FreeBSD files.
9989 * configure.host: Add powerpc*-*-freebsd* target.
9990 * configure.tgt: Add target info for powerpc*-*-freebsd*.
9991 * ppcfbsd-nat.c, ppcfbsd-tdep.h, ppcfbsd-tdep.c: New files.
9992 * config/powerpc/fbsd.mh: New file.
9993
9994 2013-02-04 Sergio Durigan Junior <sergiodj@redhat.com>
9995 Denys Vlasenko <dvlasenk@redhat.com>
9996 Pedro Alves <palves@redhat.com>
9997
9998 * gdbarch.sh (elfcore_write_linux_prpsinfo): New F hook.
9999 (struct elf_internal_linux_prpsinfo): Forward declare.
10000 * gdbarch.h, gdbarch.c: Regenerate.
10001 * linux-tdep.c: Include `cli/cli-utils.h'.
10002 (linux_fill_prpsinfo): New function.
10003 (linux_make_corefile_notes): Use linux_fill_prpsinfo. If there's
10004 an elfcore_write_linux_prpsinfo hook, use it, otherwise, use
10005 elfcore_write_linux_prpsinfo32 or elfcore_write_linux_prpsinfo64
10006 depending on gdbarch pointer bitness.
10007 * ppc-linux-tdep.c: Include elf-bfd.h.
10008 (ppc_linux_init_abi): Hook in elfcore_write_ppc_linux_prpsinfo32
10009 on 32-bit.
10010
10011 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
10012 Marcus Shawcroft <marcus.shawcroft@arm.com>
10013 Nigel Stephens <nigel.stephens@arm.com>
10014 Yufeng Zhang <yufeng.zhang@arm.com>
10015
10016 * configure.tgt (aarch64*-*-linux*): Set build_gdbserver=yes.
10017
10018 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
10019 Marcus Shawcroft <marcus.shawcroft@arm.com>
10020 Nigel Stephens <nigel.stephens@arm.com>
10021 Yufeng Zhang <yufeng.zhang@arm.com>
10022
10023 * aarch64-newlib-tdep.c: New file.
10024 * configure.tgt: Add aarch64-newlib-tdep.o to gdb_target_obs of
10025 aarch64*-*-elf.
10026 * defs.h (enum gdb_osabi): Add GDB_OSABI_NEWLIB.
10027 * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-newlib-tdep.o.
10028 (ALLDEPFILES): Add aarch64-newlib-tdep.c.
10029 * osabi.c (gdb_osabi_names): Add "Newlib".
10030
10031 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
10032 Marcus Shawcroft <marcus.shawcroft@arm.com>
10033 Nigel Stephens <nigel.stephens@arm.com>
10034 Yufeng Zhang <yufeng.zhang@arm.com>
10035
10036 * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-linux-tdep.o.
10037 (ALLDEPFILES): Add aarch64-linux-tdep.c.
10038 * aarch64-linux-tdep.c: New file.
10039 * aarch64-linux-tdep.h: New file.
10040 * aarch64-tdep.h (gdbarch_tdep): Define gregset and fpregset.
10041 * configure.tgt: Add aarch64-none-linux-gnu.
10042
10043 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
10044 Marcus Shawcroft <marcus.shawcroft@arm.com>
10045 Nigel Stephens <nigel.stephens@arm.com>
10046 Yufeng Zhang <yufeng.zhang@arm.com>
10047
10048 * Makefile.in (ALL_64_TARGET_OBS): Add arch64-tdep.o.
10049 (HFILES_NO_SRCDIR): Add aarch64-tdep.h.
10050 (ALLDEPFILES): Add aarch64-tdep.c.
10051 * aarch64-tdep.c: New file.
10052 * aarch64-tdep.h: New file.
10053 * configure.tgt: Add AArch64.
10054 * features/Makefile (WHICH): Add aarch64 and aarch64-without-fpu.
10055 (aarch64-expedite): New definition.
10056 * features/aarch64-core.xml: New file.
10057 * features/aarch64-fpu.xml: New file.
10058 * features/aarch64-without-fpu.c: New file (generated).
10059 * features/aarch64-without-fpu.xml: New file.
10060 * features/aarch64.c: New file (generated).
10061 * features/aarch64.xml: New file.
10062 * regformats/aarch64-without-fpu.dat: New file (generated).
10063 * regformats/aarch64.dat: New file (generated).
10064
10065 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10066
10067 * contrib/expect-read1.c: New file.
10068 * contrib/expect-read1.sh: New file.
10069
10070 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10071
10072 * dwarf2read.c (file_file_name): New function with code from
10073 file_full_name.
10074 (file_full_name): Move most of the code to file_file_name.
10075 (macro_start_file): Rename variable full_name to file_name and use
10076 file_file_name for it. Add comp_dir parameter to new_macro_table.
10077 * macrocmd.c (show_pp_source_pos): New variable fullname. Replace any
10078 macro_source_file->filename access by macro_source_fullname call.
10079 * macroscope.c (_initialize_macroscope): Update the new_macro_table
10080 caller.
10081 * macrotab.c (struct macro_table): New field comp_dir.
10082 (macro_include): New variables link_fullname and source_fullname.
10083 Replace any macro_source_file->filename access by macro_source_fullname
10084 call.
10085 (macro_lookup_inclusion): Remove the partial filenames checking code.
10086 (check_for_redefinition): New variables source_fullname and
10087 found_key_fullname. Replace any macro_source_file->filename access by
10088 macro_source_fullname call.
10089 (macro_undef): New variables source_fullname and key_fullname. Replace
10090 any macro_source_file->filename access by macro_source_fullname call.
10091 (macro_lookup_definition): New variables retval and source_fullname.
10092 Replace any macro_source_file->filename access by macro_source_fullname
10093 call.
10094 (foreach_macro): New variable key_fullname. Replace any
10095 macro_source_file->filename access by macro_source_fullname call.
10096 (foreach_macro_in_scope): New variable datum_fullname. Replace any
10097 macro_source_file->filename access by macro_source_fullname call.
10098 (new_macro_table): Add parameter comp_dir. Initialize T with it.
10099 (macro_source_fullname): New function.
10100 * macrotab.h (struct macro_source_file): Extent the filename field
10101 comment.
10102 (new_macro_table): New parameter comp_dir, add a comment for it.
10103 (macro_source_fullname): new declaration.
10104
10105 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10106
10107 * dwarf2read.c (dw2_map_symtabs_matching_filename): Move variable
10108 this_real_name to outer block. Use it also for
10109 compare_filenames_for_search.
10110 (dw2_expand_symtabs_matching): New variable this_real_name. Use it
10111 with dw2_get_real_path for file_matcher, considering also
10112 BASENAMES_MAY_DIFFER.
10113 (file_full_name): Prepend COMP_DIR even for relative lh->INCLUDE_DIRS.
10114
10115 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10116
10117 * dwarf2read.c (dw2_expand_symtabs_matching): Add basenames parameter
10118 to the file_matcher parameter. Pass 0 to it.
10119 (dwarf2_create_include_psymtab): Copy also DIRNAME.
10120 * psymtab.c (partial_map_symtabs_matching_filename): Drop handling of
10121 NULL psymtab_to_fullname result.
10122 (psymtab_to_fullname): Remove variable r. Never return NULL, assemble
10123 an expected filename instead.
10124 (expand_symtabs_matching_via_partial): Add basenames parameter to the
10125 file_matcher parameter. Call also psymtab_to_fullname, after newly
10126 considering BASENAMES_MAY_DIFFER.
10127 * source.c (rewrite_source_path): Remove static.
10128 * source.h (rewrite_source_path): New declaration.
10129 * symfile.h (struct quick_symbol_functions): Add basenames parameter to
10130 the expand_symtabs_matching field. Comment it.
10131 * symtab.c (file_matches): New function comment. Add parameter
10132 basenames, implement it.
10133 (search_symbols_file_matches): Add basenames parameter. Update the
10134 file_matches caller.
10135 (search_symbols): Match FILES also against symtab_to_fullname.
10136 Optimize it for BASENAMES_MAY_DIFFER.
10137
10138 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10139
10140 * source.c (print_source_lines_base): Print for TUI also "fullname".
10141 * tui/tui-data.c (init_content_element): Change tui_locator_element
10142 field to full_name.
10143 * tui/tui-data.h (struct tui_locator_element): Likewise.
10144 * tui/tui-disasm.c (tui_show_disassem_and_update_source): Rename
10145 tui_update_locator_filename calls to tui_update_locator_fullname.
10146 Replace symtab->filename refererence by symtab_to_fullname call.
10147 * tui/tui-out.c (tui_field_string): Check for "fullname" now.
10148 * tui/tui-source.c (tui_set_source_content): Change tui_locator_element
10149 field to full_name. Replace symtab->filename refererence by
10150 symtab_to_fullname call.
10151 (tui_show_symtab_source): Rename parameter to fullname. Change
10152 tui_locator_element field to full_name.
10153 * tui/tui-stack.c: Include source.h.
10154 (tui_set_locator_filename): Rename the declaration to ...
10155 (tui_set_locator_fullname): ... here. Rename its parameter to
10156 fullname, updates its comment.
10157 (tui_set_locator_info): Rename its parameter to fullname.
10158 (tui_set_locator_filename): Rename the definition to ...
10159 (tui_set_locator_fullname): ... here. Rename its parameter to
10160 fullname, updates its comment. Change tui_locator_element field to
10161 full_name.
10162 (tui_set_locator_info): Rename its parameter to fullname.
10163 (tui_set_locator_info): Rename callee to tui_set_locator_fullname.
10164 (tui_update_locator_filename): Rename to ...
10165 (tui_update_locator_fullname): ... here. Rename callee to
10166 tui_set_locator_fullname.
10167 (tui_show_frame_info): Replace symtab->filename refererence by
10168 symtab_to_fullname call.
10169 * tui/tui-stack.h (tui_update_locator_filename): Rename to ...
10170 (tui_update_locator_fullname): ... here.
10171 * tui/tui-winsource.c (tui_display_main): Rename the callee to
10172 tui_update_locator_fullname. Replace symtab->filename refererence by
10173 symtab_to_fullname call.
10174 * tui/tui.c (tui_show_source): Rename its parameter to fullname.
10175 Rename the callee to tui_update_locator_fullname.
10176 * tui/tui.h (tui_show_source): Rename its parameter to fullname.
10177
10178 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10179
10180 * ada-lang.c (user_select_syms): Replace symtab->filename refererences
10181 by symtab_to_filename_for_display calls.
10182 * breakpoint.c (print_breakpoint_location, resolve_sal_pc): Likewise.
10183 (clear_command): New variable sal_fullname, initialize it. Replace
10184 compare_filenames_for_search by filename_cmp with sal_fullname.
10185 (say_where, update_static_tracepoint): Replace symtab->filename
10186 refererences by symtab_to_filename_for_display calls.
10187 * cli/cli-cmds.c (edit_command, list_command, ambiguous_line_spec):
10188 Likewise.
10189 * dwarf2read.c: Include source.h.
10190 (fixup_go_packaging): Replace symtab->filename refererences by
10191 symtab_to_filename_for_display calls.
10192 * linespec.c (add_sal_to_sals): Rename variable filename to fullname.
10193 Replace symtab->filename refererences by symtab_to_filename_for_display
10194 calls.
10195 (create_sals_line_offset, convert_linespec_to_sals): New variable
10196 fullname, initialize it, replace symtab->filename reference by the
10197 variable.
10198 * linux-fork.c: Include source.h.
10199 (info_checkpoints_command): Replace symtab->filename refererences by
10200 symtab_to_filename_for_display calls.
10201 * macroscope.c (sal_macro_scope): Replace symtab->filename refererences
10202 by symtab_to_filename_for_display calls.
10203 * mdebugread.c: Include source.h.
10204 (psymtab_to_symtab_1): Replace symtab->filename refererences by
10205 symtab_to_filename_for_display calls.
10206 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file)
10207 (mi_cmd_file_list_exec_source_files): Likewise.
10208 * printcmd.c: Include source.h.
10209 (build_address_symbolic): Replace symtab->filename refererences by
10210 symtab_to_filename_for_display calls.
10211 * psymtab.c (partial_map_symtabs_matching_filename)
10212 (read_psymtabs_with_fullname): Call compare_filenames_for_search also
10213 with psymtab_to_fullname.
10214 * python/py-symtab.c (stpy_str): Replace symtab->filename refererences
10215 by symtab_to_filename_for_display calls.
10216 (stpy_get_filename): New variable filename, initialize it, use instead
10217 of symtab->filename refererences.
10218 (salpy_str): Make variable filename const char *. Replace
10219 symtab->filename refererences by symtab_to_filename_for_display calls.
10220 * skip.c: Include source.h and filenames.h.
10221 (skip_file_command): Remove const from the symtab variable. Replace
10222 symtab->filename refererences by symtab_to_fullname call.
10223 (function_name_is_marked_for_skip): New variables searched_for_fullname
10224 and fullname. Use them to search also with symtab's fullname.
10225 * source.c (find_source_lines): Replace symtab->filename refererences
10226 by symtab_to_filename_for_display calls.
10227 (print_source_lines_base): New variable filename, use it instead of
10228 symtab->filename. Replace symtab->filename refererences by
10229 symtab_to_filename_for_display calls.
10230 (line_info, forward_search_command): Replace symtab->filename
10231 refererences by symtab_to_filename_for_display calls.
10232 (reverse_search_command): Replace symtab->filename refererences by
10233 symtab_to_filename_for_display calls. New variable filename for it.
10234 * stack.c (frame_info): Likewise.
10235 * symmisc.c: Include source.h.
10236 (dump_objfile, dump_symtab_1, maintenance_print_symbols)
10237 (maintenance_info_symtabs): Replace symtab->filename refererences by
10238 symtab_to_filename_for_display calls.
10239 * symtab.c (iterate_over_some_symtabs): Call
10240 compare_filenames_for_search also with symtab_to_fullname.
10241 (lookup_symbol_aux_quick, basic_lookup_transparent_type_quick): Replace
10242 symtab->filename refererences by symtab_to_filename_for_display calls.
10243 (find_line_symtab): Replace symtab->filename refererences by
10244 symtab_to_filename_for_display calls.
10245 (file_matches): Replace filename_cmp by compare_filenames_for_search.
10246 (print_symbol_info): Make the last parameter const char *. New
10247 variable s_filename. Use it in the function.
10248 (symtab_symbol_info): Make the last_filename variable const char *.
10249 Replace symtab->filename refererences by symtab_to_filename_for_display
10250 calls.
10251 (rbreak_command): New variable fullname. Use it. Replace
10252 symtab->filename refererence by symtab_to_filename_for_display call.
10253 * tracepoint.c (set_traceframe_context, trace_find_line_command)
10254 (print_one_static_tracepoint_marker): Replace symtab->filename
10255 refererences by symtab_to_filename_for_display calls.
10256 * tui/tui-source.c (tui_set_source_content): New variables filename and
10257 s_filename. Replace symtab->filename refererences by this variable.
10258 Replace other symtab->filename refererences by
10259 symtab_to_filename_for_display calls.
10260
10261 2013-02-03 Eldar Gaynetdinov <hal9000ed2k@gmail.com>
10262 Jan Kratochvil <jan.kratochvil@redhat.com>
10263
10264 Add a new variable that controls a way in which filenames are
10265 displayed.
10266 * NEWS (set filename-display): New entry.
10267 * source.c (filename_display_basename, filename_display_relative)
10268 (filename_display_absolute, filename_display_kind_names)
10269 (filename_display_string, show_filename_display_string)
10270 (symtab_to_filename_for_display): New.
10271 (_initialize_source): Added initialization of 'filename-display'
10272 variable.
10273 * source.h (symtab_to_filename_for_display): Added declaration.
10274 * stack.c (print_frame): Added new variable and calling of a new
10275 function and condition with this variable. Changed third argument of
10276 calling of a function.
10277
10278 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10279
10280 * tui/tui-data.c (init_win_info, tui_del_window, tui_free_window):
10281 Rename field reference filename to fullname.
10282 * tui/tui-data.h (struct tui_source_info): Rename field filename to
10283 fullname. New comment for it.
10284 * tui/tui-source.c (tui_set_source_content): Rename field reference
10285 filename to fullname. Initialize field by symtab_to_fullname now.
10286 * tui/tui-winsource.c (tui_update_breakpoint_info): Rename field
10287 reference filename to fullname. Use symtab_to_fullname during
10288 comparison.
10289
10290 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10291
10292 Code cleanup.
10293 * dwarf2read.c (dw2_expand_symtabs_with_filename): Rename to ...
10294 (dw2_expand_symtabs_with_fullname): ... here. Rename parameter
10295 filename to fullname. Rename variable this_name to this_fullname.
10296 Lowercase FILENAME_CMP call.
10297 (dw2_find_symbol_file): New comment for the returned string.
10298 (dwarf2_gdb_index_functions): Rename the function to
10299 dw2_expand_symtabs_with_fullname.
10300 * psymtab.c (read_psymtabs_with_filename): Rename to ...
10301 (read_psymtabs_with_fullname): ... here. Rename parameter filename to
10302 fullname.
10303 (psym_functions): Rename the function to read_psymtabs_with_fullname.
10304 * symfile.h (struct quick_symbol_functions): Rename field
10305 expand_symtabs_with_filename to expand_symtabs_with_fullname and its
10306 parameter filename to fullname. Document returned string meaning for
10307 find_symbol_file.
10308 * symtab.c (find_line_symtab): Rename the called function to
10309 expand_symtabs_with_fullname.
10310
10311 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10312
10313 Code cleanup.
10314 * breakpoint.c (clear_command): Remove variable is_abs, unify the
10315 call of filename_cmp with compare_filenames_for_search.
10316 * dwarf2read.c (dw2_map_symtabs_matching_filename): Remove variable
10317 is_abs, unify the call of FILENAME_CMP with
10318 compare_filenames_for_search. New gdb_asserts for real_path and name.
10319 Unify the call of compare_filenames_for_search with FILENAME_CMP.
10320 * psymtab.c (partial_map_symtabs_matching_filename): Likewise.
10321 * symfile.h (struct quick_symbol_functions): Extend the comment for
10322 map_symtabs_matching_filename.
10323 * symtab.c (compare_filenames_for_search): Remove the function comment
10324 relative path requirement. Handle absolute filenames, with a comment.
10325 (iterate_over_some_symtabs): Remove variable is_abs, unify the call of
10326 FILENAME_CMP with compare_filenames_for_search. New gdb_asserts for
10327 real_path and name. Unify the call of compare_filenames_for_search
10328 with FILENAME_CMP.
10329 (iterate_over_symtabs): New gdb_assert on REAL_PATH.
10330
10331 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10332
10333 Code cleanup.
10334 * breakpoint.c (print_breakpoint_location): Replace bp_location field
10335 source_file references by symtab field references. Remove variables
10336 sal and fullname.
10337 (momentary_breakpoint_from_master, add_location_to_breakpoint):
10338 (clear_command, say_where): Replace bp_location field source_file
10339 references by symtab field references.
10340 (bp_location_dtor): Remove the source_file reference.
10341 (update_static_tracepoint): Replace bp_location field source_file
10342 references by symtab field references.
10343 (breakpoint_free_objfile): New function.
10344 * breakpoint.h (struct bp_location): Extend the comment for line_number.
10345 Replace the field source_file by field symtab, extend its comment.
10346 (breakpoint_free_objfile): New declaration.
10347 * objfiles.c (free_objfile): Call breakpoint_free_objfile.
10348 * tui/tui-winsource.c (tui_update_breakpoint_info): Replace bp_location
10349 field source_file references by symtab field references.
10350
10351 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
10352
10353 Replace xfullpath calls by gdb_realpath calls.
10354 * cli/cli-cmds.c (find_and_open_script): Remove xfullpath from the
10355 function comment.
10356 * dwarf2read.c (dw2_map_expand_apply): Remove parameter full_path.
10357 Remove it from the iterate_over_some_symtabs call.
10358 (dw2_map_symtabs_matching_filename): Remove parameter full_path.
10359 Remove it from the dw2_map_expand_apply calls, remove a block handling
10360 it.
10361 * psymtab.c (partial_map_expand_apply): Remove parameter full_path.
10362 Remove it from the iterate_over_some_symtabs call.
10363 (partial_map_symtabs_matching_filename): Remove parameter full_path.
10364 Remove it from the partial_map_expand_apply calls, remove a block
10365 handling it. Drop gdb_realpath call and cleanups from the real_path
10366 handling.
10367 * source.c (openp): Drop the comment part about xfullpath. Replace
10368 xfullpath calls by gdb_realpath calls.
10369 (find_and_open_source): Replace xfullpath call by gdb_realpath call.
10370 * symfile.h (struct quick_symbol_functions): Remove parameter full_path
10371 from method map_symtabs_matching_filename and its comment.
10372 * symmisc.c (maintenance_print_msymbols): Replace xfullpath call by
10373 gdb_realpath call.
10374 * symtab.c (iterate_over_some_symtabs): Remove parameter full_path,
10375 remove it also from the function comment, remove a block handling it.
10376 Drop gdb_realpath call and cleanups from the real_path handling.
10377 (iterate_over_symtabs): Drop variable full_path and its use.
10378 * symtab.h (iterate_over_some_symtabs): Remove parameter full_path.
10379 * utils.c (xfullpath): Remove.
10380 * utils.h (xfullpath): Remove.
10381
10382 2013-02-01 Andreas Tobler <andreast@fgznet.ch>
10383
10384 * Makefile.in (ALL_TARGET_OBS): Add ppc64-tdep.o.
10385 (HFILES_NO_SRCDIR): Add ppc64-tdep.h.
10386 (ALLDEPFILES): Add ppc64-tdep.c.
10387 * configure.tgt (powerpc-*-linux* | powerpc64-*-linux*): Add
10388 ppc64-tdep.o to gdb_target_obs.
10389 * ppc64-tdep.h: New file.
10390 * ppc64-tdep.c: New file.
10391 (insn_d, insn_ds, insn_xfx, ppc64_desc_entry_point): Move from
10392 ppc-linux-tdep.c to here.
10393 (PPC64_STANDARD_LINKAGE1_LEN, PPC64_STANDARD_LINKAGE2_LEN)
10394 (PPC64_STANDARD_LINKAGE2_LEN): Likewise and use ARRAY_SIZE macro.
10395 (ppc64_standard_linkage1_target, ppc64_standard_linkage2_target)
10396 (ppc64_standard_linkage3_target, ppc64_skip_trampoline_code): Move
10397 from ppc-linux-tdep.c to here.
10398 (ppc64_convert_from_func_ptr_addr): Rename from
10399 ppc64_linux_convert_from_func_ptr_addr to
10400 ppc64_convert_from_func_ptr_addr and move from ppc-linux-tdep.c to
10401 here.
10402 * rs6000-tdep.c:
10403 (read_insn): Move from ppc-linux-tdep.c to here.
10404 (insns_match_pattern, insn_d_field, insn_ds_field): Move
10405 from ppc-linux-tdep.c to here and rename them with the ppc_ prefix.
10406 * ppc-linux-tdep.c: Include ppc64-tdep.h.
10407 Removed above functions.
10408 (ppc_linux_init_abi): Adjust.
10409
10410 2013-02-01 Aleksandar Ristovski <aristovski@qnx.com>
10411
10412 * ada-valprint.c (ada_print_floating): Remove unused 'len'.
10413
10414 2013-02-01 Aleksandar Ristovski <aristovski@qnx.com>
10415
10416 * ada-lang.c (assign_aggregate): Remove unused 'is_array_aggregate'.
10417
10418 2013-02-01 Pedro Alves <palves@redhat.com>
10419
10420 * dummy-frame.c (deprecated_pc_in_call_dummy): Delete function.
10421 * frame.h (deprecated_pc_in_call_dummy): Delete declaration.
10422
10423 2013-02-01 Jan Kratochvil <jan.kratochvil@redhat.com>
10424
10425 * elfread.c (elf_symfile_read): Limit separate debug info additions to
10426 files with no separate debug info.
10427 * objfiles.c (add_separate_debug_objfile): Add gdb_assert calls.
10428 * symfile.c (read_symbols): Call find_separate_debug_file_in_section
10429 only for files with no separate debug info.
10430
10431 2013-01-31 Tom Tromey <tromey@redhat.com>
10432
10433 * jit.c (jit_program_space_data): Rename from jit_inferior_data;
10434 change type.
10435 (struct jit_program_space_data): Rename from jit_inferior_data.
10436 Update comments.
10437 (get_jit_program_space_data): Rename from get_jit_inferior_data.
10438 Change return type. Attach data to program space.
10439 (jit_program_space_data_cleanup): Rename from
10440 jit_inferior_data_cleanup; change argument type.
10441 (jit_read_descriptor): Change 'inf_data' argument to 'ps_data',
10442 change type.
10443 (jit_register_code): Update.
10444 (jit_update_inferior_cache): Remove.
10445 (jit_breakpoint_deleted): Get jit data from the location's program
10446 space.
10447 (jit_breakpoint_re_set_internal): Rename 'inf_data' argument to
10448 'ps_data', change type.
10449 (jit_inferior_init, jit_breakpoint_re_set_internal)
10450 (jit_event_handler): Update.
10451 (free_objfile_data): Get data from objfile's program space.
10452 (_initialize_jit): Update.
10453
10454 2013-01-31 Tom Tromey <tromey@redhat.com>
10455
10456 PR gdb/13987:
10457 * jit.c (struct jit_inferior_data) <cached_code_address,
10458 jit_breakpoint>: New fields.
10459 (jit_breakpoint_re_set_internal): Fix logging. Only create
10460 breakpoint if cached address has changed.
10461 (jit_update_inferior_cache, jit_breakpoint_deleted): New
10462 functions.
10463 (_initialize_jit): Register breakpoint deleted observer.
10464
10465 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
10466
10467 * infrun.c (handle_syscall_event): Remove unused gdbarch.
10468 (save_infcall_suspend_state): Ifdef out unused inf.
10469 (restore_infcall_suspend_state): Ifdef out unused inf.
10470 * jit.c (jit_register_code): Remove unused i, b, inf_data.
10471 (jit_frame_sniffer): Remove unused inf_data.
10472
10473 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
10474
10475 * c-exp.y (classify_inner_name): Remove unused type.
10476 * c-lang.c (c_printstr): Remove unused byte_order, i, things_printed,
10477 in_quotes, need_comma, wchar_buf, output, cleanup, iter, finished,
10478 need_escape.
10479 (c_get_string): Remove unused kind.
10480 * c-typeprint.c (c_type_print_args): Remove unused i, len, args, table2.
10481
10482 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
10483
10484 * charset.c (intermediate_encoding): Remove unused i.
10485 * completer.c (signal_completer): Remove unused i.
10486 * continuations.c (discard_my_continuations_1): Remove unused
10487 continuation_ptr.
10488 * corelow.c (core_close): Remove unuseD name.
10489 (get_core_siginfo): Remove unused pid.
10490 * cp-namespace.c (cp_lookup_symbol_imports_or_template): Remove unused
10491 i, cps.
10492 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Remove unused base_offset.
10493 (loclist_describe_location): Remove unused first.
10494 * event-top.c (command_line_handler): Remove unused got_eof.
10495 * exec.c (exec_close_1): Remove unused need_symtab_cleanup.
10496 (resize_section_table): Remove unused old_value.
10497 * gdb_bfd.c (gdb_bfd_map_section): Remove unused header.
10498 * gnu-v3-abi.c (compute_vtable_size): Remove unused addr.
10499 * i386-tdep.c (i386_process_record): Remove unused rex.
10500 * infcmd.c (get_return_value): Remove unused uiout.
10501 * jv-lang.c (type_from_class): Remove unused is_array.
10502 * jv-valprint.c (java_val_print): Remove unused i.
10503 * linux-nat.c (linux_nat_stop_lwp): Remove unused ptid.
10504 * linux-thread-db.c (thread_db_find_new_threads_2): Remove unuseD pid.
10505 * m2-typeprint.c (m2_print_type): Remove unused code.
10506 * macroexp.c (get_character_constant): Remove unused body_start.
10507 (macro_stringify): Remove unused result.
10508 * objc-lang.c (find_methods): Remove unused gdbarch.
10509 * objfiles.c (filter_overlapping_sections): Remove unused abfd1, abfd2.
10510 * regcache.c (regcache_cooked_read): Remove unused gdbarch.
10511 * stack.c (print_frame_args): Remove unused summary.
10512 * thread.c (thread_apply_command): Remove unused p.
10513 * valarith.c (value_x_unop): Remove unused mangle_ptr.
10514 * valops.c (search_struct_method): Remove unused skip.
10515 * valprint.c (generic_val_print): Remove unused byte_order.
10516 * varobj.c (varobj_update): Remove unused changed.
10517 * cli/cli-cmds.c (complete_command): Remove unused next_item.
10518 (alias_command): Remove unused c.
10519 * mi/mi-cmd-catch.c (mi_catch_load_unload): Remove unused c.
10520 * mi/mi-main.c (mi_cmd_data_write_register_values): Remove unused
10521 format.
10522 (mi_cmd_data_write_memory): Remove unused word_format.
10523 (mi_cmd_data_write_memory_bytes): Remove unused r.
10524 * python/py-gdb-readline.c (gdbpy_readline_wrapper): Remove unused
10525 p_start, p_end.
10526 * python/python.c (_initialize_python): Remove unused cmd_name, cmd.
10527 * tui/tui-disasm.c (tui_set_disassem_content): Remove unused
10528 line_width.
10529
10530 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
10531
10532 * dwarf2-frame.c (dwarf2_compile_cfa_to_ax): Remove unused num_regs.
10533 * symtab.c (iterate_over_symtabs): Remove unused s.
10534 (find_pc_sect_symtab): Remove unused pspAce.
10535 (find_pc_sect_line): Remove unused alt_symtab.
10536 (find_pcs_for_symtab_line): Remove unused ix, previous_function.
10537 (completion_list_add_name): Remove unused newsize.
10538
10539 2013-01-31 Tom Tromey <tromey@redhat.com>
10540
10541 PR c++/14998:
10542 * dwarf2read.c (read_tag_ptr_to_member_type): Handle
10543 TYPE_CODE_FUNC.
10544
10545 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
10546
10547 * target.c (target_read_string): Remove unused origlen.
10548
10549 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
10550
10551 * auto-load.c (auto_load_expand_dir_vars): Remove unused dir_vec.
10552 * ax-gdb.c (gen_printf): Remove unused expr, i, bot, fr, flen, fmt.
10553 * ax-general.c (ax_print): Remove unused is_float.
10554 * blockframe.c (block_innermost_frame): Remove unused start, end.
10555 * break-catch-sig.c (catch_signal_command): Remove unused gdbarch.
10556
10557 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
10558
10559 * solib-svr4.c (svr4_keep_data_in_core): Remove unused lmo.
10560 (svr4_read_so_list): Remove unused lmo.
10561 * solib-target.c (solib_target_relocate_section_addresses): Remove
10562 unused flags.
10563
10564 2013-01-30 Tom Tromey <tromey@redhat.com>
10565
10566 * hppa-tdep.c (read_unwind_info): Use SECT_OFF_TEXT, not "0".
10567
10568 2013-01-30 Tom Tromey <tromey@redhat.com>
10569
10570 * symfile.c (get_file_crc): Use bfd_calc_gnu_debuglink_crc32.
10571 * utils.c (gnu_debuglink_crc32): Remove.
10572 * utils.h (gnu_debuglink_crc32): Don't declare.
10573
10574 2013-01-30 Tom Tromey <tromey@redhat.com>
10575
10576 * dwarf2read.c (compute_delayed_physnames, read_call_site_scope)
10577 (read_structure_type, read_enumeration_type): Remove cast.
10578
10579 2013-01-30 Tom Tromey <tromey@redhat.com>
10580
10581 * dwarf2read.c (read_namespace_type): Remove cast.
10582 (read_typedef): Likewise.
10583
10584 2013-01-29 Tom Tromey <tromey@redhat.com>
10585
10586 * dwarf2read.c (free_dwo_file): Remove assert.
10587
10588 2013-01-29 Tom Tromey <tromey@redhat.com>
10589
10590 * value.c (deprecated_set_value_modifiable): Remove.
10591 * value.h (deprecated_set_value_modifiable): Remove.
10592
10593 2013-01-28 Doug Evans <dje@google.com>
10594
10595 * dwarf2loc.c (dwarf2_find_location_expression): Don't add base address
10596 to addresses from dwo files.
10597
10598 2013-01-25 Siva Chandra Reddy <sivachandra@google.com>
10599
10600 * valops.c (find_overload_match): Remove unused argument 'lax'.
10601 * value.h: Remove unused argument 'lax' from the declaration of
10602 find_overload_match.
10603 * eval.c (value_subexp_standard): Do not pass a 'lax' argument
10604 to find_overload_match.
10605 * valarith.c (value_user_defined_cpp_op): Do not pass a 'lax'
10606 argument to find_overload_match.
10607
10608 2013-01-25 Tom Tromey <tromey@redhat.com>
10609
10610 * dwarf2read.c (processing_has_namespace_info): Remove.
10611 (struct dwarf2_cu) <processing_has_namespace_info>: New field.
10612 (process_die, read_func_scope, dwarf2_start_symtab)
10613 (new_symbol_full): Update.
10614
10615 2013-01-25 Tom Tromey <tromey@redhat.com>
10616
10617 * cp-namespace.c (cp_set_block_scope): Remove.
10618 * cp-support.h (cp_set_block_scope): Remove.
10619 * dbxread.c: Include block.h.
10620 (cp_set_block_scope): New function.
10621 (process_one_symbol): Update.
10622 * dwarf2read.c (read_func_scope): Use block_set_scope.
10623
10624 2013-01-25 Pedro Alves <palves@redhat.com>
10625
10626 * remote.c (add_current_inferior_and_thread): Tweak comment.
10627
10628 2013-01-25 Tom Tromey <tromey@redhat.com>
10629
10630 * cp-namespace.c (cp_scan_for_anonymous_namespaces): Update.
10631 (cp_add_using_directive): Add 'copy_names' argument.
10632 * cp-support.h (cp_add_using_directive): Update.
10633 (struct using_direct) <import_src, import_dest, alias,
10634 declaration>: Now const.
10635 * dwarf2read.c (read_import_statement): Use obconcat.
10636 Don't copy names passed to cp_add_using_directive.
10637
10638 2013-01-25 Tom Tromey <tromey@redhat.com>
10639
10640 * c-exp.y (qualified_name): Use TYPE_SAFE_NAME.
10641
10642 2013-01-25 Pedro Alves <palves@redhat.com>
10643
10644 * remote.c (stop_reply_extract_thread): New.
10645 (add_current_inferior_and_thread): New parameter 'wait_status'.
10646 Handle it.
10647 (remote_start_remote): Pass wait status to
10648 add_current_inferior_and_thread.
10649 (extended_remote_run): Update comment.
10650 (extended_remote_create_inferior_1): Pass wait status to
10651 add_current_inferior_and_thread.
10652
10653 2013-01-25 Andrew Burgess <aburgess@broadcom.com>
10654 Ulrich Weigand <uweigand@de.ibm.com>
10655
10656 * valarith.c (value_vector_widen): New function for replicating a
10657 scalar into a vector.
10658 (value_binop): Use value_vector_widen to widen scalar to vector
10659 rather than casting, this better matches gcc C behaviour.
10660 * valops.c (value_casst): Update logic for casting between vector
10661 types, and for casting from scalar to vector, try to match gcc C
10662 behaviour.
10663 * value.h (value_vector_widen): Declare.
10664 * opencl-lang.c (opencl_value_cast): New opencl specific casting
10665 function, handle special case for casting scalar to vector.
10666 (opencl_relop): Use opencl_value_cast.
10667 (evaluate_subexp_opencl): Use opencl_value_cast instead of
10668 value_cast, and handle BINOP_ASSIGN, UNOP_CAST, and UNOP_CAST_TYPE
10669 in order to use opencl_value_cast.
10670
10671 2013-01-25 Yao Qi <yao@codesourcery.com>
10672
10673 * event-loop.c: Include "queue.h".
10674 (gdb_event_p): New typedef.
10675 (DECLARE_QUEUE_P): Use.
10676 (DEFINE_QUEUE_P): Use.
10677 (async_queue_event): Remove.
10678 (gdb_event_xfree): New.
10679 (initialize_event_loop): New.
10680 (process_event): Use QUEUE macros.
10681 (event_queue): Remove.
10682 (gdb_wait_for_event): Caller update.
10683 (check_async_event_handlers): Likewise.
10684 (poll_timers): Likewise.
10685 * event-loop.h (initialize_event_loop): Declare.
10686 * event-loop.c (gdb_event_xfree): New.
10687 * top.c (gdb_init): Call initialize_event_loop.
10688
10689 2013-01-25 Yao Qi <yao@codesourcery.com>
10690
10691 * event-loop.c (async_queue_event): Remove one parameter
10692 'position'. Remove code handling 'position' == TAIL.
10693 (gdb_wait_for_event): Caller update.
10694 (check_async_event_handlers): Caller update.
10695 (poll_timers): Caller update.
10696 * event-loop.h (enum queue_position): Remove.
10697
10698 2013-01-25 Maxim Kuvyrkov <maxim@kugelworks.com>
10699
10700 * MAINTAINERS: Update my email.
10701
10702 2013-01-25 Yao Qi <yao@codesourcery.com>
10703
10704 * main.c (print_gdb_help): Remove "--epoch" from the help
10705 message.
10706
10707 2013-01-24 Ulrich Weigand  <uweigand@de.ibm.com>
10708
10709 * symtab.c (skip_prologue_using_sal): Consider a file
10710 change the same as an increased line number
10711
10712 2013-01-24 Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
10713
10714 * MAINTAINERS (Write After Approval): Add myself to the list.
10715
10716 2013-01-24 Tom Tromey <tromey@redhat.com>
10717
10718 * ada-lang.h (ada_decode_symbol): Make return type const.
10719 * ada-lang.c (ada_decode_symbol): Likewise.
10720
10721 2013-01-23 Doug Evans <dje@google.com>
10722
10723 * linespec.c (find_linespec_symbols): Make static.
10724
10725 2013-01-23 Tiago Stürmer Daitx <tdaitx@linux.vnet.ibm.com>
10726
10727 * ppc-sysv-tdep.c (ppc64_sysv_abi_return_value): Set correct
10728 type on float conversion for complex type.
10729
10730 2013-01-23 Siva Chandra Reddy <sivachandra@google.com>
10731
10732 Add a new class gdb.Architecture which exposes GDB's
10733 internal representation of architecture via GDB Python API.
10734 * Makefile.in: Add entries corresponding to the new file
10735 python/py-arch.c.
10736 * NEWS (Python Scripting): Add entries for the new class
10737 gdb.Architecture and the new method gdb.Frame.architecture.
10738 * python/py-arch.c: Implement gdb.Architecture class.
10739 * python/py-frame.c (frapy_arch): Implement the method
10740 gdb.Frame.architecture().
10741 (frame_object_methods): Add 'architecture' to the method table.
10742 * python/python-internal.h: Add declarations of new utility
10743 functions.
10744 * python/python.c (_initialize_python): Initialize
10745 gdb.Architecture class.
10746
10747 2013-01-23 Doug Evans <dje@google.com>
10748
10749 Work around binutils/15021.
10750 * dwarf2read.c (dwarf2_per_cu_data): Split imported_symtabs and
10751 type_unit_group out of union s. All uses updated.
10752 (read_index_from_section): Watch for index version 8.
10753 (follow_die_sig): If using .gdb_index version <= 7, record the TU as
10754 an imported symtab.
10755 (write_psymtabs_to_index): Increment version number to 8.
10756
10757 2013-01-22 Pedro Alves <palves@redhat.com>
10758
10759 * annotate.c (breakpoint_changed): Skip if breakpoint is not
10760 user-visible.
10761
10762 2013-01-22 Pedro Alves <palves@redhat.com>
10763
10764 * annotate.c (annotate_breakpoints_changed): Rename to ...
10765 (annotate_breakpoints_invalid): ... this. Make static.
10766 (breakpoint_changed): Adjust.
10767 (_initialize_annotate): Always install the observers. Install a
10768 "breakpoint_created" observer.
10769 * annotate.h (annotate_breakpoints_changed): Delete declaration.
10770 * breakpoint.c (set_breakpoint_condition)
10771 (breakpoint_set_commands, do_map_commands_command)
10772 (init_raw_breakpoint, clear_command, set_ignore_count)
10773 (enable_breakpoint_disp): No longer call
10774 annotate_breakpoints_changed.
10775
10776 2013-01-22 Pedro Alves <palves@redhat.com>
10777
10778 * annotate.c: Include "inferior.h".
10779 (frames_invalid_emitted)
10780 (breakpoints_invalid_emitted): New globals.
10781 (async_background_execution_p): New function.
10782 (annotate_breakpoints_changed, annotate_frames_invalid): Skip
10783 emitting the annotation if it has already been emitted.
10784 (annotate_display_prompt): New function.
10785 * annotate.h (annotate_display_prompt): New declaration.
10786 * event-top.c: Include annotate.h.
10787 (display_gdb_prompt): Call annotate_display_prompt.
10788
10789 2013-01-22 Pedro Alves <palves@redhat.com>
10790
10791 * annotate.c (ignore_count_changed): Delete.
10792 (annotate_breakpoints_changed): Don't clear ignore_count_changed.
10793 (annotate_ignore_count_change): Delete.
10794 (annotate_stopped): Don't emit a delayed breakpoints-changed
10795 annotation.
10796 * annotate.h (annotate_ignore_count_change): Delete.
10797 * breakpoint.c (bpstat_check_breakpoint_conditions): Don't call
10798 annotate_ignore_count_change.
10799
10800 2013-01-22 Tom Tromey <tromey@redhat.com>
10801
10802 * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>: Only
10803 require_rvalue for a register location.
10804
10805 2013-01-21 Marc Khouzam <marc.khouzam@ericsson.com>
10806
10807 * breakpoint.c (print_one_breakpoint_location): Add MI
10808 field 'thread-groups' when printing a breakpoint.
10809 (output_thread_groups): New function.
10810
10811 2013-01-21 Siva Chandra Reddy <sivachandra@google.com>
10812
10813 * python/lib/gdb/commands/explore.py
10814 (CompoundExplorer.explore_expr): Correct the name of a method
10815 being invoked.
10816 (ExploreTypeCommand.invoke): Add a missing 'return'.
10817
10818 2013-01-21 Tom Tromey <tromey@redhat.com>
10819
10820 * gdb_obstack.h (obconcat): Move declaration here, from...
10821 * symfile.h (obconcat): ... here.
10822 * gdb_obstack.c: New file.
10823 (obconcat): Move from...
10824 * symfile.c (obconcat): ... here.
10825 * Makefile.in (SFILES): Add gdb_obstack.c.
10826 (COMMON_OBS): Add gdb_obstack.o.
10827
10828 2013-01-21 Tom Tromey <tromey@redhat.com>
10829
10830 * symfile.h (obsavestring): Don't declare.
10831 * symfile.c (obsavestring): Remove.
10832 * ada-exp.y: Use obstack_copy0, not obsavestring.
10833 * ada-lang.c: Use obstack_copy0, not obsavestring.
10834 * coffread.c: Use obstack_copy0, not obsavestring.
10835 * cp-namespace.c: Use obstack_copy0, not obsavestring.
10836 * dbxread.c: Use obstack_copy0, not obsavestring.
10837 * dwarf2read.c: Use obstack_copy0, not obsavestring.
10838 * jit.c: Use obstack_copy0, not obsavestring.
10839 * mdebugread.c: Use obstack_copy0, not obsavestring.
10840 * psymtab.c: Use obstack_copy0, not obsavestring.
10841 * stabsread.c: Use obstack_copy0, not obsavestring.
10842 * xcoffread.c: Use obstack_copy0, not obsavestring.
10843
10844 2013-01-21 Tom Tromey <tromey@redhat.com>
10845
10846 * dwarf2read.c (fixup_go_packaging): Save package name
10847 on objfile obstack.
10848 * gdbtypes.c (init_type): Don't copy name.
10849
10850 2013-01-21 Tom Tromey <tromey@redhat.com>
10851
10852 * dwarf2read.c (struct partial_die_info) <name, scope>: Now
10853 const.
10854 (struct attribute) <u.str>: Now const.
10855 (struct fnfieldlist) <name>: Now const.
10856 (dw2_get_file_names_reader, init_cutu_and_read_dies): Update.
10857 (partial_die_parent_scope): Make return type const.
10858 (partial_die_full_name, add_partial_symbol): Update.
10859 (dwarf2_compute_name, dwarf2_full_name, dwarf2_physname): Make
10860 'name' const.
10861 (find_file_and_directory): Make 'name' and 'comp_dir' const.
10862 (read_file_scope, read_func_scope, dwarf2_add_field)
10863 (dwarf2_add_member_fn, read_structure_type)
10864 (process_enumeration_scope, read_array_type, read_module_type)
10865 (read_base_type, read_subrange_type): Update.
10866 (dwarf2_start_symtab): Make 'name' and 'comp_dir' const.
10867 (new_symbol_full, guess_full_die_structure_name): Update.
10868 (dwarf2_canonicalize_name): Return const type. Make 'name' const.
10869 (dwarf2_name): Return const type.
10870 (dwarf_decode_macro_bytes, dwarf_decode_macros): Make 'comp_dir'
10871 const.
10872
10873 2013-01-21 Tom Tromey <tromey@redhat.com>
10874
10875 * gdbtypes.c (init_type): Make 'name' const.
10876 * gdbtypes.h (init_type): Update.
10877
10878 2013-01-21 Tom Tromey <tromey@redhat.com>
10879
10880 * buildsym.c (patch_subfile_names): Use set_last_source_file.
10881 (start_symtab): Make 'name' and 'dirname' const. Use
10882 set_last_source_file.
10883 (restart_symtab, reset_symtab_globals): Use set_last_source_file.
10884 (last_source_file): Define. Now static.
10885 (set_last_source_file, get_last_source_file): New functions.
10886 * buildsym.h (last_source_file): Don't declare.
10887 (start_symtab): Update.
10888 (set_last_source_file, get_last_source_file): Declare.
10889 * coffread.c (complete_symtab): Use set_last_source_file.
10890 (coff_end_symtab): Likewise.
10891 (coff_symtab_read): Use set_last_source_file, get_last_source_file.
10892 * dbxread.c (read_dbx_symtab, read_ofile_symtab): Use
10893 set_last_source_file.
10894 (process_one_symbol): Use get_last_source_file.
10895 * mdebugread.c (parse_partial_symbols): Use set_last_source_file.
10896 (psymtab_to_symtab_1): Use get_last_source_file.
10897 * xcoffread.c (process_linenos): Use get_last_source_file.
10898 (complete_symtab): Use set_last_source_file.
10899 (read_xcoff_symtab): Use set_last_source_file, get_last_source_file.
10900 (scan_xcoff_symtab): Use set_last_source_file.
10901
10902 2013-01-21 Tom Tromey <tromey@redhat.com>
10903
10904 * symtab.c (struct demangled_name_entry) <mangled>: Now const.
10905 (symbol_set_names): Remove casts. Handle field const-ness.
10906
10907 2013-01-21 Tom Tromey <tromey@redhat.com>
10908
10909 * dwarf2read.c (new_symbol_full): Remove cast.
10910 * symtab.c (symbol_set_demangled_name): Make 'name' const.
10911 * symtab.h (symbol_set_demangled_name): Update.
10912
10913 2013-01-21 Tom Tromey <tromey@redhat.com>
10914
10915 * main.c (captured_main): Call bfd_init.
10916
10917 2013-01-21 Tom Tromey <tromey@redhat.com>
10918
10919 * gnu-v2-abi.c (_initialize_gnu_v2_abi): Don't set default ABI.
10920 * gnu-v3-abi.c (_initialize_gnu_v3_abi): Set default ABI.
10921 * minsyms.c (install_minimal_symbols): Don't check for _Z symbols.
10922 * NEWS: Update.
10923
10924 2013-01-21 Jan Kratochvil <jan.kratochvil@redhat.com>
10925
10926 * symmisc.c (maintenance_print_msymbols): Check also ST_DEV.
10927
10928 2013-01-21 Jan Kratochvil <jan.kratochvil@redhat.com>
10929
10930 Fix gdb.fortran/common-block.exp crash in PIE mode.
10931 * dwarf2read.c (new_symbol_full) <DW_TAG_common_block>: Use
10932 LOC_COMMON_BLOCK.
10933 * f-valprint.c (info_common_command_for_block): Expect
10934 LOC_COMMON_BLOCK in gdb_assert.
10935 * symtab.h (struct general_symbol_info): Update comment for the
10936 common_block member.
10937 (domain_enum): Extend comment for the COMMON_BLOCK_DOMAIN member.
10938 (enum address_class): New member LOC_COMMON_BLOCK.
10939
10940 2013-01-18 David Blaikie <dblaikie@gmail.com>
10941
10942 * MAINTAINERS (Write After Approval): Add "David Blaikie".
10943
10944 2013-01-18 Tom Tromey <tromey@redhat.com>
10945
10946 PR c++/14999:
10947 * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>:
10948 Call require_rvalue.
10949
10950 2013-01-18 Yao Qi <yao@codesourcery.com>
10951
10952 * dbxread.c (dbx_psymtab_to_symtab): Delete the declaration.
10953 (dbx_read_symtab): New declaration.
10954 (dbx_psymtab_to_symtab): Delete.
10955 (dbx_read_symtab): Rename from dbx_psymtab_to_symtab.
10956 Rename parameter PST to SELF. Exchanged two parameters.
10957 (start_psymtab): Caller update.
10958 * dwarf2read.c (dwarf2_psymtab_to_symtab): Delete the declaration.
10959 (dwarf2_read_symtab): New declaration.
10960 (dwarf2_psymtab_to_symtab): Delete.
10961 (dwarf2_read_symtab): Rename from dwarf2_psymtab_to_symtab.
10962 Rename parameter PST to SELF. Exchanged two parameters.
10963 (create_partial_symtab): Caller update.
10964 * mdebugread.c (mdebug_psymtab_to_symtab): Delete.
10965 (mdebug_read_symtab): Rename from mdebug_psymtab_to_symtab.
10966 Rename parameter PST to SELF. Exchanged two parameters.
10967 (parse_partial_symbols, new_psymtab): Caller update.
10968 * psympriv.h (struct partial_symtab) <read_symtab>: Exchange
10969 two parameters.
10970 * psymtab.c (psymtab_to_symtab): Caller update.
10971 * xcoffread.c (xcoff_psymtab_to_symtab): Delete.
10972 (xcoff_read_symtab): Rename from xcoff_psymtab_to_symtab.
10973 Rename parameter PST to SELF. Exchanged two parameters.
10974 (xcoff_start_psymtab): Caller update.
10975
10976 2013-01-18 Yao Qi <yao@codesourcery.com>
10977
10978 * infrun.c (proceed): Rename local variable 'oneproc' to
10979 'force_step'.
10980
10981 2013-01-17 Doug Evans <dje@google.com>
10982
10983 * dwarf2read.c (dw2_build_type_unit_groups_reader): Delete.
10984 (dw2_build_type_unit_groups): Delete. All uses updated.
10985
10986 * symtab.h (struct symbol_search): Add comment.
10987
10988 2013-01-17 Jan Kratochvil <jan.kratochvil@redhat.com>
10989
10990 * symtab.c (compare_filenames_for_search): New comment for
10991 HAS_DRIVE_SPEC.
10992
10993 2013-01-17 Tom Tromey <tromey@redhat.com>
10994
10995 * cp-abi.c (cp_abi_completer): Fix typo in assignment.
10996
10997 2013-01-17 Jan Kratochvil <jan.kratochvil@redhat.com>
10998
10999 * symtab.c (iterate_over_some_symtabs): New variable cleanups,
11000 initialize it by existing make_cleanup. Call new do_cleanups.
11001
11002 2013-01-17 Tom Tromey <tromey@redhat.com>
11003
11004 * cp-abi.c (cp_abi_completer): New function.
11005 (_initialize_cp_abi): Set completer for "set cp-abi".
11006
11007 2013-01-17 Tom Tromey <tromey@redhat.com>
11008
11009 * mem-break.c: Remove obsolete comment.
11010 * bfin-tdep.c (bfin_breakpoint_from_pc): Fix comment.
11011
11012 2012-01-17 Sanjoy Das <sanjoy@playingwithpointers.com>
11013
11014 * jit.c (jit_reader_load_command): Interpret the jit reader name
11015 as an absolute path if it begins with a forward slash.
11016
11017 2012-01-17 Sanjoy Das <sanjoy@playingwithpointers.com>
11018
11019 PR gdb/14550
11020
11021 * jit.c (finalize_symtab): Ensure that only the global block has a
11022 NULL superblock.
11023
11024 2013-01-17 Pedro Alves <palves@redhat.com>
11025
11026 * acinclude.m4: Include ../config/plugins.m4,
11027 ../config/largefile.m4 and ../config/lead-dot.m4. Add comments.
11028 * Makefile.in (aclocal_m4_deps): Update.
11029 * aclocal.m4: Renegerate.
11030
11031 2013-01-16 Doug Evans <dje@google.com>
11032
11033 * contrib/cc-with-tweaks.sh: Add references to Fission docs.
11034
11035 2013-01-16 Pedro Alves <palves@redhat.com>
11036 Tom Tromey <tromey@redhat.com>
11037
11038 PR cli/7221:
11039 * NEWS: Add "catch signal".
11040 * breakpoint.c (base_breakpoint_ops): No longer static.
11041 (bpstat_explains_signal): New function.
11042 (init_catchpoint): No longer static.
11043 (base_breakpoint_explains_signal): New function.
11044 (base_breakpoint_ops): Initialize new field.
11045 * breakpoint.h (enum bpstat_signal_value): New.
11046 (struct breakpoint_ops) <explains_signal>: New field.
11047 (bpstat_explains_signal): Remove macro, declare as function.
11048 (base_breakpoint_ops, init_catchpoint): Declare.
11049 * break-catch-sig.c: New file.
11050 * inferior.h (signal_catch_update): Declare.
11051 * infrun.c (signal_catch): New global.
11052 (handle_syscall_event): Update for change to
11053 bpstat_explains_signal.
11054 (handle_inferior_event): Likewise. Always handle random signals
11055 via bpstats.
11056 (signal_cache_update): Check signal_catch.
11057 (signal_catch_update): New function.
11058 (_initialize_infrun): Initialize signal_catch.
11059 * Makefile.in (SFILES): Add break-catch-sig.c.
11060 (COMMON_OBS): Add break-catch-sig.o.
11061
11062 2013-01-16 Tom Tromey <tromey@redhat.com>
11063
11064 * breakpoint.c (print_one_catch_fork, print_one_catch_vfork)
11065 (print_one_catch_solib, print_one_catch_syscall)
11066 (print_one_catch_exec, print_one_exception_catchpoint): Emit
11067 "catch-type".
11068
11069 2013-01-16 Yao Qi <yao@codesourcery.com>
11070
11071 * printcmd.c (current_display_number): Make it static.
11072
11073 2013-01-16 Yao Qi <yao@codesourcery.com>
11074
11075 * infcmd.c (step_once): Don't check '!single_inst' as it was
11076 checked before.
11077
11078 2013-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
11079
11080 * dwarf2read.c (psymtab_include_file_name): Extend the function comment.
11081
11082 2013-01-14 Tom Tromey <tromey@redhat.com>
11083
11084 * cli/cli-decode.c (add_setshow_string_noescape_cmd): Return the
11085 set command.
11086 * command.h (add_setshow_string_noescape_cmd): Update.
11087 * corefile.c (set_gnutarget_command): Remove trailing whitespace.
11088 (complete_set_gnutarget): New function.
11089 (_initialize_core): Set the "set gnutarget" completer.
11090
11091 2013-01-14 Tom Tromey <tromey@redhat.com>
11092
11093 PR symtab/14442:
11094 * c-typeprint.c (cp_type_print_method_args): Handle 'restrict'.
11095 (c_type_print_modifier): Likewise.
11096 * dwarf2read.c (read_tag_restrict_type): New function.
11097 (read_type_die_1): Handle DW_TAG_restrict_type.
11098 * gdbtypes.c (make_restrict_type): New function.
11099 (recursive_dump_type): Handle TYPE_RESTRICT.
11100 * gdbtypes.h (enum type_flag_values): Renumber.
11101 (enum type_instance_flag_value): Add
11102 TYPE_INSTANCE_FLAG_RESTRICT.
11103 (TYPE_RESTRICT): New macro.
11104 (make_restrict_type): Declare.
11105
11106 2013-01-14 Tom Tromey <tromey@redhat.com>
11107
11108 PR symtab/14931:
11109 * psymtab.c (struct psymtab_state): New.
11110 (discard_psymtabs_upto, make_cleanup_discard_psymtabs): New
11111 functions.
11112 * psympriv.h (make_cleanup_discard_psymtabs): Declare.
11113 * dwarf2read.c (dwarf2_build_psymtabs): Catch exceptions.
11114
11115 2013-01-14 Richard Sharman <richard_sharman@mitel.com>
11116 Pedro Alves <palves@redhat.com>
11117
11118 PR remote/14786
11119
11120 * remote.c (remote_threads_info): Make a copy of the reply from
11121 qfThreadInfo and use that instead of rs->buf.
11122
11123 2013-01-14 Yao Qi <yao@codesourcery.com>
11124
11125 * dbxread.c (dbx_psymtab_to_symtab_1): Don't check PST is NULL.
11126 (dbx_psymtab_to_symtab): Likewise.
11127 * dwarf2read.c (dwarf2_psymtab_to_symtab): Likewise.
11128 * mdebugread.c (mdebug_psymtab_to_symtab): Likewise.
11129 * xcoffread.c (xcoff_psymtab_to_symtab_1): Likewise.
11130
11131 2013-01-13 Jan Kratochvil <jan.kratochvil@redhat.com>
11132
11133 * parse.c (parse_exp_in_context): New variable inner_chain. Call
11134 make_cleanup_restore_current_language. Call set_language. Move
11135 OLD_CHAIN and INNER_CHAIN cleanups.
11136 * utils.c (do_restore_current_language)
11137 (make_cleanup_restore_current_language): New functions.
11138 * utils.h (make_cleanup_restore_current_language): New declaration.
11139
11140 2013-01-13 Jan Kratochvil <jan.kratochvil@redhat.com>
11141
11142 * source.c (symtab_to_fullname): Apply rewrite_source_path also for
11143 non-existing files.
11144
11145 * source.c (symtab_to_fullname): Do not prepend DIRNAME for
11146 non-existing files if FILENAME is already absolute.
11147
11148 2013-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
11149
11150 * macrocmd.c (macro_inform_no_debuginfo): Use puts_filtered instead of
11151 fputs_filtered. Append trailing newline.
11152
11153 2013-01-11 Yao Qi <yao@codesourcery.com>
11154 Stan Shebs <stan@codesourcery.com>
11155
11156 * psymtab.c (init_psymbol_list): Clarify the comment.
11157
11158 2013-01-11 Yao Qi <yao@codesourcery.com>
11159
11160 * breakpoint.c (print_one_breakpoint_location): Remove dead code.
11161 (update_dprintf_command_list): Assert that 'printf_line' is
11162 non-null. Remove condition check.
11163
11164 2013-01-10 Jan Kratochvil <jan.kratochvil@redhat.com>
11165
11166 Code cleanup.
11167 * psymtab.c (psymtab_to_fullname, psymtab_to_fullname): Make the return
11168 type const char *.
11169 * tui/tui-source.c (tui_source_is_displayed): Make the parameter fname
11170 const char *.
11171 * tui/tui-source.h (tui_source_is_displayed): Likewise.
11172
11173 2013-01-09 Anthony Green <green@moxielogic.com>
11174
11175 * cp-abi.c (cplus_print_vtable): Don't return value from void
11176 function.
11177 * ada-lang.c (re_set_catch_assert): Ditto.
11178
11179 2013-01-09 Doug Evans <dje@google.com>
11180
11181 * symfile.h (quick_symbol_functions): Delete member
11182 pre_expand_symtabs_matching. All uses removed.
11183 * dwarf2read.c (dw2_lookup_symbol): Implement.
11184 (dw2_do_expand_symtabs_matching): Delete.
11185 (dw2_pre_expand_symtabs_matching): Delete.
11186 (struct dw2_symtab_iterator): New type.
11187 (dw2_symtab_iter_init, dw2_symtab_iter_next): New functions.
11188 (dw2_expand_symtabs_for_function): Rewrite.
11189 (dwarf2_gdb_index_functions): Update.
11190 * psymtab.c (pre_expand_symtabs_matching_psymtabs): Delete.
11191 (psym_functions): Update.
11192
11193 2013-01-09 Tom Tromey <tromey@redhat.com>
11194
11195 * config/pa/hpux.mh (NATDEPFILES): Remove somread.o.
11196 * configure: Rebuild.
11197 * configure.ac: Add somread.o to the build if BFD has SOM
11198 support.
11199 * somread.c: Include som/aout.h, not syms.h.
11200 (som_symtab_read): Use som_external_symbol_dictionary_record.
11201 Unpack records manually.
11202 (_initialize_somread): Declare.
11203
11204 2012-01-08 Mike Frysinger <vapier@gentoo.org>
11205
11206 * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx) [__x86_64__]:
11207 Cast return_address to 64bits.
11208
11209 2013-01-08 Hui Zhu <hui_zhu@mentor.com>
11210
11211 * printcmd.c: Remove define of function output_command.
11212 * tracepoint.c: Remove extern of function output_command.
11213 * valprint.h: (output_command): New extern.
11214
11215 2013-01-07 Tom Tromey <tromey@redhat.com>
11216
11217 * objc-lang.c (objc_emit_char, objc_printchar, objc_printstr):
11218 Remove.
11219 (objc_language_defn): Use c_printchar, c_printstr,
11220 c_emit_char.
11221
11222 2013-01-07 Tom Tromey <tromey@redhat.com>
11223
11224 PR cli/7719:
11225 * NEWS: Update.
11226 * ada-valprint.c (printstr, print_field_values): Remove
11227 "inspect_it" code.
11228 * cp-valprint.c (cp_print_value_fields): Remove "inspect_it"
11229 code.
11230 * jv-valprint.c (java_print_value_fields): Remove "inspect_it"
11231 code.
11232 * m2-lang.c (m2_printstr): Remove "inspect_it" code.
11233 * main.c (captured_main): Remove "epoch" argument.
11234 * objc-lang.c (objc_printstr): Remove "inspect_it" code.
11235 * p-lang.c (pascal_printstr): Remove "inspect_it" code.
11236 * p-valprint.c (pascal_object_print_value_fields): Remove
11237 "inspect_it" code.
11238 * printcmd.c (print_command_1): Remove 'inspect' argument.
11239 (print_command, call_command): Update.
11240 (inspect_command): Remove.
11241 (_initialize_printcmd): Make "inspect" an alias for "print".
11242 * top.c (epoch_interface): Remove.
11243 * top.h (epoch_interface): Remove.
11244 * valprint.c (user_print_options): Update.
11245 (print_converted_chars_to_obstack): Remove "inspect_it" code.
11246 * valprint.h (struct value_print_options) <inspect_it>: Remove
11247 field.
11248
11249 2013-01-04 Tom Tromey <tromey@redhat.com>
11250
11251 * valprint.h (read_string): Add 'extern'.
11252
11253 2013-01-07 Joel Brobecker <brobecker@adacore.com>
11254
11255 * darwin-nat.c: Fix typo in TASK_DYLD_INFO_COUNT macro test
11256 used to decide whether to define darwin_read_dyld_info or not.
11257
11258 2013-01-03 Pierre Muller <muller@sourceware.org>
11259
11260 * main.c (relocate_gdb_directory): Avoid calling stat function
11261 if DIR is empty.
11262
11263 2013-01-03 Yao Qi <yao@codesourcery.com>
11264
11265 * psymtab.c (fixup_psymbol_section): Update declaration.
11266 (fixup_psymbol_section): Remove code returning value.
11267
11268 2013-01-03 Yao Qi <yao@codesourcery.com>
11269
11270 * symtab.h: Remove some out of date comments.
11271 (enum exception_event_kind): Move it ...
11272 * breakpoint.c: ... here.
11273
11274 2013-01-02 Iain Sandoe <developer@sandoe-acoustics.co.uk>
11275
11276 PR gdb/14405
11277 * darwin-nat.c (darwin_read_dyld_info): Only build if
11278 TASK_DYLD_INFO_COUNT is defined.
11279 (darwin_xfer_partial): Call darwin_read_dyld_info only if
11280 TASK_DYLD_INFO_COUNT is defined.
11281
11282 2013-01-02 Tom Tromey <tromey@redhat.com>
11283
11284 * symfile.h (struct ecoff_debug_hack): Remove.
11285 * objfiles.c: Don't include mdebugread.h.
11286
11287 2013-01-02 Tom Tromey <tromey@redhat.com>
11288
11289 * config/i386/darwin.mh (NATDEPFILES): Remove machoread.o.
11290 * configure.ac: Check for Mach-O support in BFD. Update
11291 CONFIG_OBS.
11292 * configure: Rebuild.
11293
11294 2013-01-02 Tom Tromey <tromey@redhat.com>
11295
11296 * acinclude.m4 (GDB_AC_CHECK_BFD): New macro.
11297 * configure.ac: Use GDB_AC_CHECK_BFD.
11298 * configure: Rebuild.
11299
11300 2013-01-01 Maxim Kuvyrkov <maxim.kuvyrkov@gmail.com>
11301
11302 * MAINTAINERS: Update my email.
11303
11304 2013-01-01 Joel Brobecker <brobecker@adacore.com>
11305
11306 * cli/cli-script.h (make_cleanup_free_command_lines): Make extern.
11307
11308 2013-01-01 Joel Brobecker <brobecker@adacore.com>
11309
11310 * rs6000-nat.c (bss_data_overlap): New function.
11311 (vmap_symtab): Use it to adjust the .bss section's offset.
11312
11313 2013-01-01 Joel Brobecker <brobecker@adacore.com>
11314
11315 Update year range in copyright notice of all files.
11316
11317 2013-01-01, 13 Joel Brobecker <brobecker@adacore.com>
11318
11319 * top.c (print_gdb_version): Update copyright year.
11320
11321 For older changes see ChangeLog-2012.
11322 \f
11323 Local Variables:
11324 mode: change-log
11325 left-margin: 8
11326 fill-column: 74
11327 version-control: never
11328 coding: utf-8
11329 End:
This page took 0.275721 seconds and 4 git commands to generate.