This patch adds a new convenience variable called "$_exitsignal", which
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2013-10-06 Sergio Durigan Junior <sergiodj@redhat.com>
2
3 * NEWS: Mention new convenience variable $_exitsignal.
4 * corelow.c (core_open): Reset exit convenience variables. Set
5 $_exitsignal to the uncaught signal which generated the corefile.
6 * infrun.c (handle_inferior_event): Reset exit convenience
7 variables. Set $_exitsignal for TARGET_WAITKIND_SIGNALLED.
8 (clear_exit_convenience_vars): New function.
9 * inferior.h (clear_exit_convenience_vars): New prototype.
10
11 2013-10-06 Yao Qi <yao@codesourcery.com>
12
13 * varobj.h: Add comments to enum varobj_languages.
14
15 2013-10-04 Doug Evans <dje@google.com>
16
17 Add support for DWP file format version 2.
18 * NEWS: Mention support for DWP file format version 2.
19 * dwarf2read.c (dwarf2_section_info): Convert asection field to a
20 union of asection, containing_section. New fields virtual_offset
21 and is_virtual. Change type of readin filed from int to char.
22 (dwo_sections, dwo_file): Tweak comments.
23 (dwp_v2_section_ids): New enum.
24 (dwp_sections): New fields abbrev, info, line, loc, macinfo, macro,
25 str_offsets, types.
26 (virtual_v1_dwo_sections): Renamed from virtual_dwo_sections.
27 All uses updated.
28 (virtual_v2_dwo_sections): New struct.
29 (dwp_hash_table): New fields version, nr_columns. Change type of
30 section_pool field to a union.
31 (dwp_file): New field version.
32 (dwarf2_has_info): Check for virtual sections.
33 (get_containing_section): New function.
34 (get_section_bfd_owner, get_section_bfd_section): Call it.
35 (dwarf2_locate_sections): Update.
36 (dwarf2_section_empty_p): Update.
37 (dwarf2_read_section): Handle virtual sections.
38 (locate_dwz_sections): Update.
39 (create_dwp_hash_table): Document and handle V2 format.
40 (locate_v1_virtual_dwo_sections): Renamed from
41 locate_virtual_dwo_sections and update. All callers updated.
42 (create_dwo_unit_in_dwp_v1): Renamed from create_dwo_in_dwp.
43 Delete arg htab. Rename arg section_index to unit_index.
44 All callers updated.
45 (MAX_NR_V1_DWO_SECTIONS): Renamed from MAX_NR_DWO_SECTIONS.
46 All uses updated.
47 (create_dwp_v2_section, create_dwo_unit_in_dwp_v2): New functions.
48 (lookup_dwo_unit_in_dwp): Add V2 support.
49 (dwarf2_locate_dwo_sections): Update.
50 (dwarf2_locate_common_dwp_sections): Renamed from
51 dwarf2_locate_dwp_sections and update. All callers updated.
52 (dwarf2_locate_v2_dwp_sections): New function.
53 (open_and_init_dwp_file): Add V2 support.
54 (read_str_index): New locals str_section, str_offsets_section.
55
56 2013-10-04 Pedro Alves <palves@redhat.com>
57
58 * common/ptid.c (null_ptid, minus_one_ptid, ptid_build)
59 (pid_to_ptid, ptid_get_pid, ptid_get_lwp, ptid_get_tid)
60 (ptid_equal, ptid_is_pid, ptid_lwp_p, ptid_tid_p): Replace
61 describing comments with references to ptid.h.
62 * common/ptid.h: Remove intro description of constructors,
63 accessors and predicates.
64 (struct ptid): Reformat.
65 (minus_one_ptid, ptid_build, pid_to_ptid, ptid_get_pid)
66 (ptid_get_lwp, ptid_get_tid, ptid_equal, ptid_is_pid): Change
67 describing comments.
68
69 2013-10-04 Joel Brobecker <brobecker@adacore.com>
70
71 * aix-thread.c (sync_threadlists): Add missing ')' in call
72 to ptid_build.
73
74 2013-10-04 Joel Brobecker <brobecker@adacore.com>
75
76 * procfs.c (procfs_init_inferior): Fix typo causing the build
77 to fail.
78
79 2013-10-04 Joel Brobecker <brobecker@adacore.com>
80
81 * aix-thread.c (ptrace32): Remove cast to addr_ptr.
82
83 2013-10-04 Joel Brobecker <brobecker@adacore.com>
84
85 * mi/mi-main.c (run_one_inferior): Add function description.
86 Make ARG a pointer to an integer whose value determines whether
87 we should "run" or "start" the program.
88 (mi_cmd_exec_run): Add handling of the "--start" option.
89 Reject all other command-line options.
90 * NEWS: Add entry for "-exec-run"'s new "--start" option.
91
92 2013-10-04 Yao Qi <yao@codesourcery.com>
93
94 * remote-notif.h (REMOTE_NOTIF_ID): New enum.
95 (struct notif_client) <pending_event>: Moved
96 to struct remote_notif_state.
97 <id>: New field.
98 (struct remote_notif_state) <pending_event>: New field.
99 (notif_event_xfree): Declare.
100 * remote-notif.c (handle_notification): Adjust.
101 (notif_event_xfree): New function.
102 (do_notif_event_xfree): Call notif_event_xfree.
103 (remote_notif_state_xfree): Call notif_event_xfree to free
104 each element in field pending_event.
105 * remote.c (discard_pending_stop_replies): Remove declaration.
106 (discard_pending_stop_replies_in_queue): Declare.
107 (remote_close): Call discard_pending_stop_replies_in_queue
108 instead of discard_pending_stop_replies.
109 (remote_start_remote): Adjust.
110 (stop_reply_xfree): Call notif_event_xfree.
111 (notif_client_stop): Adjust initialization.
112 (remote_notif_remove_all): Rename it to ...
113 (remove_stop_reply_for_inferior): ... this. Update comments.
114 Don't check INF is NULL.
115 (discard_pending_stop_replies): Return early if notif_state is
116 NULL. Adjust. Don't check INF is NULL.
117 (remote_notif_get_pending_events): Adjust.
118 (discard_pending_stop_replies_in_queue): New function.
119 (remote_wait_ns): Likewise.
120
121 2013-10-04 Yao Qi <yao@codesourcery.com>
122
123 * remote-notif.c (DECLARE_QUEUE_P): Remove.
124 (notif_queue): Remove.
125 (remote_notif_process): Add one parameter 'notif_queue'.
126 Update comments. Callers update.
127 (remote_async_get_pending_events_token): Remove.
128 (remote_notif_register_async_event_handler): Remove.
129 (remote_notif_unregister_async_event_handler): Remove.
130 (handle_notification): Add parameter 'notif_queue'. Update
131 comments. Callers update.
132 (notif_xfree): Remove.
133 (remote_notif_state_allocate): New function.
134 (remote_notif_state_xfree): New function.
135 (_initialize_notif): Remove code to allocate queue.
136 * remote-notif.h (DECLARE_QUEUE_P): Moved from remote-notif.c.
137 (struct remote_notif_state): New.
138 (handle_notification): Update declaration.
139 (remote_notif_process): Likewise.
140 (remote_notif_register_async_event_handler): Remove.
141 (remote_notif_unregister_async_event_handler): Remove.
142 (remote_notif_state_allocate): Declare.
143 (remote_notif_state_xfree): Declare.
144 * remote.c (struct remote_state) <notif_state>: New field.
145 (remote_close): Don't call
146 remote_notif_unregister_async_event_handler. Call
147 remote_notif_state_xfree.
148 (remote_open_1): Don't call
149 remote_notif_register_async_event_handler. Call
150 remote_notif_state_allocate.
151
152 2013-10-04 Yao Qi <yao@codesourcery.com>
153
154 * varobj.c (create_child_with_value): Remove 'const' from the
155 type of parameter 'name'.
156 (varobj_add_child): Likewise.
157 (install_dynamic_child): Remove 'const' from the type of
158 parameter 'name'.
159 (varobj_add_child): Likewise.
160 (create_child_with_value): Likewise. Update comments. Don't
161 duplicate 'name'.
162 (update_dynamic_varobj_children): Duplicate 'name'
163 and pass it to install_dynamic_child.
164
165 2013-10-03 Phil Muldoon <pmuldoon@redhat.com>
166
167 * python/py-value.c (convert_value_from_python): Move PyInt_Check
168 conversion logic to occur after PyLong_Check. Comment on order
169 change significance.
170 * python/py-arch.c (archpy_disassemble): Comment on order of
171 conversion for integers and longs.
172
173 2013-10-03 Pedro Alves <palves@redhat.com>
174
175 * common/linux-ptrace.c (linux_check_ptrace_features): Factor out
176 the PTRACE_O_TRACESYSGOOD and PTRACE_O_TRACEFORK to separate
177 functions. Always test for PTRACE_O_TRACESYSGOOD even if
178 PTRACE_O_TRACEFORK is not supported.
179 (linux_test_for_tracesysgood): New function.
180 (linux_test_for_tracefork): New function, factored out from
181 linux_check_ptrace_features, and also don't kill child_pid here.
182
183 2013-10-03 Tristan Gingold <gingold@adacore.com>
184
185 * i386-darwin-nat.c (i386_darwin_dr_set): Fix argument type.
186 Remove verbose error reporting. Use detected state to
187 thread_set_state call.
188 (i386_darwin_dr_get): Fix return type. Remove verbose error
189 report.
190 Remove trailing spaces.
191
192 2013-10-02 Pedro Alves <palves@redhat.com>
193
194 * cp-valprint.c (cp_print_value_fields): Adjust calls to
195 val_print_optimized_out.
196 * jv-valprint.c (java_print_value_fields): Likewise.
197 * p-valprint.c (pascal_object_print_value_fields): Likewise.
198 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full)
199 <DWARF_VALUE_REGISTER>: If the register was not saved, return a
200 new optimized out value.
201 * findvar.c (address_from_register): Likewise.
202 * frame.c (put_frame_register): Tweak error string to say the
203 register was not saved, rather than optimized out.
204 * infcmd.c (default_print_one_register_info): Adjust call to
205 val_print_optimized_out. Use value_of_register instead of
206 get_frame_register_value.
207 * mi/mi-main.c (output_register): Use value_of_register instead of
208 get_frame_register_value.
209 * valprint.c (valprint_check_validity): Likewise.
210 (val_print_optimized_out): New value parameter. If the value is
211 lval_register, print <not saved> instead.
212 (value_check_printable, val_print_scalar_formatted): Adjust calls
213 to val_print_optimized_out.
214 * valprint.h (val_print_optimized_out): New value parameter.
215 * value.c (struct value) <optimized_out>: Extend comment.
216 (error_value_optimized_out): New function.
217 (require_not_optimized_out): Use it. Use a different string for
218 lval_register values.
219 * value.h (error_value_optimized_out): New declaration.
220 * NEWS: Mention <not saved>.
221
222 2013-10-02 Joel Brobecker <brobecker@adacore.com>
223
224 * symtab.c (compare_search_syms): Use FILENAME_CMP instead of
225 strcmp to compare two symtab filenames.
226
227 2013-10-02 Joel Brobecker <brobecker@adacore.com>
228
229 * symtab.c (search_symbols_equal): Delete.
230 (sort_search_symbols_remove_dups): Replace call to
231 search_symbols_equal by call to compare_search_syms,
232 adjusting as necessary.
233
234 2013-10-02 Phil Muldoon <pmuldoon@redhat.com>
235
236 PR python/15579
237
238 * python/python.c: Document gdb.execute command in Python help.
239
240 2013-10-02 Phil Muldoon <pmuldoon@redhat.com>
241
242 * python/py-frame.c (frame_info_to_frame_object): Use
243 gdbpy_convert_exception. Clean up Python object on failure.
244
245 2013-10-02 Phil Muldoon <pmuldoon@redhat.com>
246
247 * python/lib/gdb/command/frame_filters.py
248 (InfoFrameFilter.list_frame_filters): Retrieve exception manually.
249 (ShowFrameFilterPriority.invoke): Ditto.
250
251 2013-10-01 Keith Seitz <keiths@redhat.com>
252
253 * linespec.c (struct ls_parser): Make 'saved_arg' const.
254 (parse_linespec): Make 'argptr' const.
255 Remove temporary cast of 'argptr' to const char **.
256 (decode_line_full): Pass const pointer to parse_linespec.
257 (decode_line_1): Likewise.
258 (decode_objc): Make local variable 'new_argptr' const.
259 (find_function_symbols): Remove temporary cast to char *
260 to find_imps.
261 * objc-lang.c (find_imps): Make argument 'method' const.
262 Return const.
263 * objc-lang.h (find_imps): Likewise.
264
265 2013-10-01 Keith Seitz <keiths@redhat.com>
266
267 * completer.c (skip_quoted_chars): Make all arguments const.
268 Return const.
269 (skip_quoted): Likewise.
270 * completer.h (skip_quoted_chars): Likewise.
271 (skip_quoted): Likewise.
272 * defs.h (skip_quoted): Remove duplicate declaration.
273 * jv-exp.y: Include completer.h.
274 (yylex): Remove unneccessary cast to char * fro skip_quoted.
275 * p-exp.y: Include completer.h.
276
277 2013-10-01 Keith Seitz <keiths@redhat.com>
278
279 * c-exp.y (parse_number): Make first argument const.
280 Make a copy of the input to manipulate.
281 (c_parse_escape): Make first argument const.
282 Make local variable 'tokptr' const.
283 (parse_string_or_char): Make first two arguments const.
284 (macro_original_text): Make const.
285 (lex_one_token): Make local variable 'tokstart' const.
286 Likewise for local variables named 'p'.
287 Cast away const for struct stoken (temporary).
288 * c-lang.h (c_parse_escpae): Make first argument const.
289 * cli/cli-cmds.c (echo_command): Make local variable 'p'
290 const.
291 * cli/cli-setshow.c (do_set_command): Likewise for 'p' in
292 var_string case.
293 * f-exp.y (parse_number): Make first argument const.
294 (match_string_literal): Make local variable 'tokstart'
295 const.
296 (yylex): Make local variable 'p' const.
297 Cast away const for struct stoken (temporary).
298 * go-exp.y (parse_number): Make first argument const.
299 (parse_string_or_char): Likewise.
300 Make local variable 'tokstart' const.
301 (lex_one_token): Likewise for numerous locals called 'p'.
302 Cast away const for struct stoken (temporary).
303 * jv-exp.y (parse_number): Make first argument const.
304 Make local variables 'tokstart' and 'tokptr' const.
305 Cast away const for call to skip_quoted (temporary).
306 (yylex): Make local variable 'p' const.
307 Cast away const for struct stoken (temporary).
308 * m2-exp.y (parse_number): Make local variable 'p' const.
309 (yylex): Likewise for 'tokstart'.
310 Cast away const for struct stoken (temporary).
311 Make local variable 'p' const.
312 * macroexp.c (get_character_constant): Pass a const string
313 to c_parse_escape.
314 (get_string_literal): Likewise.
315 (macro_expand_next): Make first argument const.
316 Cast away const for init_shared_buffer.
317 * macroexp.h (macro_expand_next): Make first argument const.
318 * p-exp.y (yylex): Make a local copy of 'lexptr'.
319 Pass a const string to c_parse_escape.
320 Make local variables 'p' and 'namestart' const.
321 * parse.c (lexptr): Make const.
322 (prev_lexptr): Likewise.
323 (find_template_name_end): Return const.
324 Make argument const, too.
325 (parse_exp_in_context): Make first argument const.
326 Remove the entire const_hack.
327 (parse_exp_in_context_1): Make first argument const.
328 * parser-defs.h (find_template_name_end): Return const.
329 Make argument const, too.
330 (lexptr): Make const.
331 (prev_lexptr): Likewise.
332 * utils.c (parse_escape): Make second argument const.
333 * utils.h (parse_escape): Likewise.
334
335 2013-10-01 Keith Seitz <keiths@redhat.com>
336
337 * ada-exp.y (write_object_renaming): Update: struct stoken.ptr
338 is now const.
339 (block_lookup): Make 'raw_name' and 'name' const.
340 * ada-lex.l (processString): Update for struct stoken.ptr.
341 * c-exp.y (qualified_name : TYPENAME COLONCOLON '~' name): Likewise.
342 (operator_stoken): Likewise.
343 (lex_one_token): Remove temporary cast to char * for
344 'yylval.sval.ptr'.
345 * f-exp.y (yylex): Likewise.
346 * gdb-types.c (lookup_struct_elt_type): Make argument 'name' const.
347 * gdbtypes.h (lookup_struct_elt_type): Likewisee.
348 * go-exp.y (lex_one_token): Remove temporary cast to char * for
349 'yylval.sval.ptr'.
350 * jv-exp.y (QualifiedName): Update for struct stoken.ptr.
351 (yylex): Remove temporary cast to char * for 'yylval.sval.ptr'.
352 * linespec.c (struct ls_parser): Make 'stream' const.
353 (find_parameter_list_end): Make argument 'input' and local
354 variable 'p' const.
355 (linespec_lexer_lex_string): Make local variables 'start' and
356 'p' const.
357 Use skip_spaces_const instead of skip_spaces.
358 (linespec_lexer_peek_token): Make local variable 'saved_stream'
359 const.
360 (parse_linespec): Temporarily cast 'argptr' to const for
361 'parser->lexer.stream'.
362 * m2-exp.y (yylex): Remove temporary cast to char * for
363 'yylval.sval.ptr'.
364 * objc-lang.c (add_msglist): Make local variable 'p' const.
365 * p-exp.y (exp : exp '['): Update for struct stoken.ptr.
366 (exp : STRING): Make 'sp' const.
367 (parse_number): Make argument 'p' const.
368 * parser-defs.h (struct stoken): Make 'ptr' const.
369
370 2013-10-01 Doug Evans <dje@google.com>
371
372 * cli/cli-decode.c: Remove unnecessary inclusion of tui/tui.h.
373
374 2013-10-01 Yao Qi <yao@codesourcery.com>
375
376 * varobj.c (c_value_of_root): Remove declaration.
377 (cplus_value_of_root, java_value_of_root): Likewise.
378 (ada_value_of_root): Likewise.
379 (struct language_specific) <value_of_root>: Remove.
380 (languages): Update initialization.
381 (check_scope): Move earlier.
382 (c_value_of_root): Move earlier and rename to ...
383 (value_of_root_1): ... this.
384 (value_of_root): Caller update.
385 (cplus_value_of_root, java_value_of_root): Remove.
386 (ada_value_of_root): Remove.
387
388 2013-10-01 Yao Qi <yao@codesourcery.com>
389
390 * varobj.c (varobj_format_string): Remove "unknown".
391 (languages): Remove the first element.
392 * varobj.h (enum varobj_languages): Remove vlang_c.
393
394 2013-10-01 Yao Qi <yao@codesourcery.com>
395
396 * varobj.c (struct language_specific) <language>: Remove.
397 (languages): Update the initialization.
398
399 2013-10-01 Yao Qi <yao@codesourcery.com>
400
401 * arm-wince-tdep.c: Remove inclusion of "solib.h" and
402 "solib-target.h". Include "windows-tdep.h".
403 (arm_wince_init_abi): Call windows_init_abi. Remove call to
404 set_solib_ops and set_gdbarch_has_dos_based_file_system.
405 * configure.tgt (arm*-wince-pe | arm*-*-mingw32ce*): Append
406 windows-tdep.o to gdb_target_obs.
407
408 2013-10-01 Yao Qi <yao@codesourcery.com>
409
410 * amd64-windows-tdep.c: Remove inclusion of "solib.h" and
411 "solib-target.h".
412 (amd64_windows_init_abi): Don't call set_solib_ops and
413 set_gdbarch_iterate_over_objfiles_in_search_order. Call
414 windows_init_abi instead.
415 * i386-cygwin-tdep.c: Remove inclusion of "solib.h" and
416 "solib-target.h".
417 (i386_cygwin_init_abi): Don't call set_solib_ops,
418 set_gdbarch_has_dos_based_file_system and
419 set_gdbarch_iterate_over_objfiles_in_search_order. Call
420 windows_init_abi instead.
421 * windows-tdep.c: Include "solib.h" and "solib-target.h".
422 (windows_init_abi): New function.
423 (windows_iterate_over_objfiles_in_search_order): Make it
424 static.
425 * windows-tdep.h (windows_init_abi): Declare.
426 (windows_iterate_over_objfiles_in_search_order): Remove
427 declaration.
428
429 2013-10-01 Jerome Guitton <guitton@adacore.com>
430
431 Checked in by Joel Brobecker <brobecker@adacore.com>
432 * system-gdbinit/elinos.py (get_elinos_environment): Return an
433 incomplete dictionnary instead of None in case of missing
434 environment variables.
435 (elinos_init): in case of an incomplete environment, best
436 effort to load system libraries instead of abort.
437
438 2013-10-01 Joel Brobecker <brobecker@adacore.com>
439
440 * ada-lang.c (ada_has_this_exception_support): Ignore
441 mst_solib_trampoline minimal symbols.
442
443 2013-09-30 Tristan Gingold <gingold@adacore.com>
444
445 * i386-darwin-nat.c (darwin_complete_target): Install methods for
446 hardware watchpoint.
447 (i386_darwin_dr_set): Support 32 and 64 bit states.
448 (i386_darwin_dr_get): Likewise.
449 (i386_darwin_dr_set_control): Make static.
450 (i386_darwin_dr_set_addr, i386_darwin_dr_get_addr)
451 (i386_darwin_dr_get_status, i386_darwin_dr_get_control): Likewise.
452
453 2013-09-30 Luis Machado <lgustavo@codesourcery.com>
454
455 * aarch64-linux-nat.c: Replace PIDGET with ptid_get_pid.
456 Replace TIDGET with ptid_get_lwp.
457 Replace GET_LWP with ptid_get_lwp.
458 * aix-thread.c (BUILD_THREAD, BUILD_LWP): Remove.
459 Replace BUILD_THREAD with ptid_build.
460 Replace BUILD_LWP with ptid_build.
461 Replace PIDGET with ptid_get_pid.
462 Replace TIDGET with ptid_get_lwp.
463 * alphabsd-nat.c: Replace PIDGET with ptid_get_pid.
464 * amd64-linux-nat.c: Replace PIDGET with ptid_get_pid.
465 Replace TIDGET with ptid_get_lwp.
466 * amd64bsd-nat.c: Replace PIDGET with ptid_get_pid.
467 * arm-linux-nat.c: Replace PIDGET with ptid_get_pid.
468 Replace TIDGET with ptid_get_lwp.
469 Replace GET_LWP with ptid_get_lwp.
470 * armnbsd-nat.c: Replace PIDGET with ptid_get_pid.
471 * auxv.c: Likewise.
472 * breakpoint.c: Likewise.
473 * common/ptid.c (ptid_is_pid): Condense check for
474 null_ptid and minus_one_ptid.
475 (ptid_lwp_p): New function.
476 (ptid_tid_p): New function.
477 * common/ptid.h: Update comments for accessors.
478 (ptid_lwp_p): New prototype.
479 (ptid_tid_p): New prototype.
480 * defs.h (PIDGET, TIDGET, MERGEPID): Do not define.
481 * gcore.c: Replace PIDGET with ptid_get_pid.
482 * gdbthread.h: Likewise.
483 * gnu-nat.c: Likewise.
484 * hppa-linux-nat.c: Replace PIDGET with ptid_get_pid.
485 Replace TIDGET with ptid_get_lwp.
486 * hppabsd-nat.c: Replace PIDGET with ptid_get_pid.
487 * hppanbsd-nat.c: Likewise.
488 * i386-linux-nat.c: Replace PIDGET with ptid_get_pid.
489 Replace TIDGET with ptid_get_lwp.
490 * i386bsd-nat.c: Replace PIDGET with ptid_get_pid.
491 * ia64-linux-nat.c: Replace PIDGET with ptid_get_pid.
492 * infcmd.c: Likewise.
493 * inferior.h: Likewise.
494 * inflow.c: Likewise.
495 * infrun.c: Likewise.
496 * linux-fork.c: Likewise.
497 * linux-nat.c: Replace PIDGET with ptid_get_pid.
498 Replace GET_PID with ptid_get_pid.
499 Replace is_lwp with ptid_lwp_p.
500 Replace GET_LWP with ptid_get_lwp.
501 Replace BUILD_LWP with ptid_build.
502
503 2013-09-28 Mike Frysinger <vapier@gentoo.org>
504
505 * common/linux-btrace.c: Move sys/syscall.h out of the
506 HAVE_LINUX_PERF_EVENT_H check and wrap it in HAVE_SYS_SYSCALL_H.
507 Also check for SYS_perf_event_open before attempting to buid.
508
509 2013-09-27 Doug Evans <dje@google.com>
510
511 * dwarf2read.c (dwarf2_section_info): Add comment.
512 (dwp_file): Split loaded_cutus into loaded_cus, loaded_tus.
513 All uses updated.
514 (dwarf2_section_empty_p): Rename arg from "info" to "section".
515 (dwarf2_read_section): Delete unused local "header". Add section
516 name to error message.
517 (create_dwo_in_dwp): Tweak comment.
518 (MAX_NR_DWO_SECTIONS): Combine count of .debug_macro + .debug_macinfo.
519
520 * dwarf2read.c (die_reader_specs): Tweak comment.
521 (get_section_bfd_owner, get_section_bfd_section): New functions.
522 (get_section_name, get_section_file_name): New functions.
523 (get_section_id, get_section_flags): New functions.
524 (*): Use new functions to access section fields.
525
526 * dwarf2read.c (struct dwo_file): Add/tweak comments.
527 (lookup_dwo_unit_in_dwp): Renamed from lookup_dwo_in_dwp. Remove
528 arg "htab". All callers updated.
529 (create_debug_types_hash_table): Remove redundant copy of
530 abbrev_section.
531 (create_dwo_in_dwp): Tweak comments.
532 (read_str_index): Tweak comment. Record dwarf form name in static
533 local.
534
535 2013-09-27 Pedro Alves <palves@redhat.com>
536
537 * remote.h (REMOTE_SYSROOT_PREFIX): New define.
538 (remote_filename_p): Add comment.
539 * remote.c (remote_filename_p): Adjust to use
540 REMOTE_SYSROOT_PREFIX.
541 * solib.c (solib_find): When deciding whether we need to add a
542 directory separator, check whether the sysroot is "remote:"
543 instead of checking whether the patch has a drive spec. Add
544 comments.
545
546 2013-09-27 Pedro Alves <palves@redhat.com>
547
548 * remote.c (struct stop_reply) <solibs_changed, replay_event>:
549 Delete fields.
550 (remote_parse_stop_reply): Adjust, setting event->ws.kind
551 directly.
552
553 2013-09-26 Jan Kratochvil <jan.kratochvil@redhat.com>
554
555 Fix set debug frame output.
556 * frame.c (fprint_frame_type): Add TAILCALL_FRAME entry. Move
557 SENTINEL_FRAME entry lower to match enum frame_type order.
558
559 2013-09-26 Pierre Muller <muller@sourceware.org>
560
561 Replace constant values 8 to 15 by AMD64_R8_REGNUM to
562 AMD64_R15_REGNUM when a register index is expected.
563 * amd64-windows-tdep.c (amd64_windows_dummy_call_integer_regs):
564 Substitute in array.
565 * amd64-tdep.c (amd64_dwarf_regmap): Ditto.
566 (amd64_push_arguments): Substitute in integer_regnum array.
567
568 2013-09-25 Doug Evans <dje@google.com>
569
570 * objfiles.c (allocate_objfile): Move comment to better place.
571
572 New option "set debug symfile on".
573 * NEWS: Mention "set debug symfile".
574 * Makefile.in (SFILES): Add symfile-debug.c.
575 (COMMON_OBS): Add symfile-debug.o.
576 * elfread.c (elf_symfile_read): Use objfile_set_sym_fns to set the
577 objfile's symbol functions.
578 * objfiles.h (objfile_set_sym_fns): Declare.
579 * symfile-debug.c: New file.
580 * symfile.c (syms_from_objfile_1): Use objfile_set_sym_fns to set the
581 objfile's symbol functions.
582 (reread_symbols): Ditto.
583
584 * symfile.h (struct sym_fns): Delete member "sym_flavour".
585 All uses updated.
586 (add_symtab_fns): Update prototype.
587 * symfile.c (sym_fns_ptr): Delete. Replace with ...
588 (registered_sym_fns): ... this.
589 (symtab_fns): Update.
590 (add_symtab_fns): New arg "flavour". All callers updated.
591 (find_sym_fns): Rewrite to use new sym_fns registry.
592
593 * symfile.h (struct sym_fns): Add "objfile" argument to
594 sym_read_linetable. All uses updated.
595
596 * symtab.c (domain_name, search_domain_name): New functions.
597 * symtab.h (domain_name, search_domain_name): Declare.
598
599 * symfile.h (struct quick_symbol_functions): Reorg arg list of
600 map_matching_symbols so objfile is first. All uses updated.
601 * dwarf2read.c (dw2_map_matching_symbols): Update signature.
602 * psymtab.c (map_matching_symbols_psymtab): Update signature.
603
604 2013-09-25 Andreas Arnez <arnez@linux.vnet.ibm.com>
605
606 PR shlibs/8882
607 * solib-svr4.c (svr4_read_so_list): Skip the vDSO when reading
608 link map entries.
609
610 2013-09-24 Doug Evans <dje@google.com>
611
612 * objfiles.c (free_objfile): Move comment.
613
614 2013-09-24 Joel Brobecker <brobecker@adacore.com>
615
616 * ada-exp.y (string_to_operator): Delete.
617 (dummy_string_to_ada_operator): Delete.
618
619 2013-09-24 Joel Brobecker <brobecker@adacore.com>
620
621 Revert:
622 * i386-tdep.h (enum amd64_reg_class): New, moved here from
623 amd64-tdep.c.
624 (struct gdbarch_tdep): Add fields call_dummy_num_integer_regs,
625 call_dummy_integer_regs, and classify.
626 * amd64-tdep.h (amd64_classify): Add declaration.
627 * amd64-tdep.c (amd64_dummy_call_integer_regs): New static constant.
628 (amd64_reg_class): Delete, moved to i386-tdep.h.
629 (amd64_classify): Make non-static. Move declaration to amd64-tdep.h.
630 Replace call to amd64_classify by call to tdep->classify.
631 (amd64_push_arguments): Get the list of registers to use for
632 passing integer parameters from the gdbarch tdep structure,
633 rather than using a hardcoded one. Replace calls to amd64_classify
634 by calls to tdep->classify.
635 (amd64_push_dummy_call): Get the register number used for
636 the "hidden" argument from tdep->call_dummy_integer_regs.
637 (amd64_init_abi): Initialize tdep->call_dummy_num_integer_regs
638 and tdep->call_dummy_integer_regs. Set tdep->classify.
639
640 2013-09-24 Joel Brobecker <brobecker@adacore.com>
641
642 Revert:
643 * i386-tdep.h (gdbarch_tdep): Add field memory_args_by_pointer.
644 * amd64-tdep.c (amd64_push_arguments): Add handling of architectures
645 where tdep->memory_args_by_pointer is non-zero.
646
647 2013-09-24 Joel Brobecker <brobecker@adacore.com>
648
649 Revert:
650 * i386-tdep.h (struct gdbarch_tdep): Add new field
651 integer_param_regs_saved_in_caller_frame.
652 * amd64-tdep.c (amd64_push_dummy_call): Allocate some memory on
653 stack if tdep->integer_param_regs_saved_in_caller_frame is set.
654
655 2013-09-24 Joel Brobecker <brobecker@adacore.com>
656
657 * amd64-windows-tdep.c: #include "value.h"
658 (amd64_windows_classify): Delete.
659 (amd64_windows_passed_by_integer_register)
660 (amd64_windows_passed_by_xmm_register)
661 (amd64_windows_passed_by_pointer)
662 (amd64_windows_adjust_args_passed_by_pointer)
663 (amd64_windows_store_arg_in_reg, amd64_windows_push_arguments)
664 (amd64_windows_push_dummy_call): New functions.
665 (amd64_windows_init_abi): Remove setting of
666 tdep->call_dummy_num_integer_regs, tdep->call_dummy_integer_regs,
667 tdep->classify, tdep->memory_args_by_pointer and
668 tdep->integer_param_regs_saved_in_caller_frame.
669 Add call to set_gdbarch_push_dummy_call.
670
671 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
672
673 * dwarf2read.c (open_and_init_dwp_file): Try open_dwp_file also with
674 objfile->original_name.
675
676 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
677
678 Pass down original filename for objfile.
679 * coffread.c (coff_symfile_read): Update symbol_file_add_separate call.
680 * elfread.c (elf_symfile_read): Likewise.
681 * jit.c (jit_object_close_impl): Update allocate_objfile call, no
682 longer set ORIGINAL_NAME.
683 (jit_bfd_try_read_symtab): Update symbol_file_add_from_bfd call.
684 * jv-lang.c (get_dynamics_objfile): Update allocate_objfile call.
685 * machoread.c (macho_add_oso_symfile): Add parameter name. Update
686 symbol_file_add_from_bfd call.
687 (macho_symfile_read_all_oso): Update two macho_add_oso_symfile calls.
688 (macho_check_dsym): Add parameter filenamep. Change function comment.
689 Set *filenamep.
690 (macho_symfile_read): New variable dsym_filename. Update
691 macho_check_dsym call. Use it for symbol_file_add_separate.
692 * objfiles.c (allocate_objfile): Add parameter name. New comment for
693 it. Use it for objfile->original_name.
694 (objfile_name): Return OBFD's filename, if available.
695 * objfiles.h (allocate_objfile): Add new parameter name.
696 * solib.c (solib_read_symbols): Update symbol_file_add_from_bfd call.
697 * symfile-mem.c (symbol_file_add_from_memory): Update
698 symbol_file_add_from_bfd call.
699 * symfile.c (read_symbols): Update symbol_file_add_separate call, new
700 comment for it.
701 (symbol_file_add_with_addrs): New parameter name, add function comment
702 for it. Remove variable name. Update allocate_objfile call.
703 (symbol_file_add_separate): New parameter name, add function comment
704 for it. Update symbol_file_add_with_addrs call.
705 (symbol_file_add_from_bfd): New parameter name. Update
706 symbol_file_add_with_addrs call.
707 (symbol_file_add): Update symbol_file_add_from_bfd call.
708 (reread_symbols): New variable original_name. Save
709 objfile->original_name by it.
710 * symfile.h (symbol_file_add_from_bfd, symbol_file_add_separate): Add
711 second parameter.
712
713 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
714
715 Code cleanup: Add objfile_name accessor function.
716 * ada-lang.c (is_known_support_routine): Use objfile_name.
717 * auto-load.c (source_gdb_script_for_objfile)
718 (auto_load_objfile_script): Likewise.
719 * coffread.c (coff_symtab_read, read_one_sym): Likewise.
720 * dbxread.c (dbx_symfile_read): Likewise.
721 * dwarf2-frame.c (dwarf2_build_frame_info): Likewise.
722 * dwarf2loc.c (locexpr_describe_location_piece): Likewise.
723 * dwarf2read.c (dwarf2_get_dwz_file, dwarf2_read_index)
724 (dw2_symtab_iter_next, dw2_expand_symtabs_matching)
725 (lookup_dwp_signatured_type, lookup_dwo_unit)
726 (dwarf2_build_psymtabs_hard, scan_partial_symbols, process_queue)
727 (fixup_go_packaging, process_imported_unit_die, dwarf2_physname)
728 (read_import_statement, create_dwo_cu, open_and_init_dwp_file)
729 (lookup_dwo_cutu, read_call_site_scope, dwarf2_ranges_read)
730 (dwarf2_record_block_ranges, read_common_block, read_typedef)
731 (read_subrange_type, load_partial_dies, read_partial_die)
732 (read_addr_index_1, read_str_index, dwarf_decode_lines_1)
733 (die_containing_type, build_error_marker_type, lookup_die_type)
734 (follow_die_ref_or_sig, follow_die_ref, dwarf2_fetch_die_loc_sect_off)
735 (dwarf2_fetch_constant_bytes, follow_die_sig, get_signatured_type)
736 (get_DW_AT_signature_type, write_psymtabs_to_index)
737 (save_gdb_index_command): Likewise.
738 * elfread.c (find_separate_debug_file_by_buildid, elf_symfile_read):
739 Likewise.
740 * expprint.c (dump_subexp_body_standard): Likewise.
741 * gdbtypes.c (type_name_no_tag_or_error): Likewise.
742 * jit.c (jit_object_close_impl): Use the objfile field name renamed to
743 original_name.
744 * linux-thread-db.c (try_thread_db_load_from_pdir_1): New variable
745 obj_name, use objfile_name for it, use the variable.
746 (try_thread_db_load_from_pdir, has_libpthread, thread_db_new_objfile):
747 Use objfile_name.
748 * machoread.c (macho_symtab_read, macho_check_dsym)
749 (macho_symfile_relocate): Likewise.
750 * maint.c (maintenance_translate_address): Likewise.
751 * minidebug.c (find_separate_debug_file_in_section): Likewise.
752 * minsyms.c (install_minimal_symbols): Likewise.
753 * objfiles.c (allocate_objfile): Use the objfile field name renamed to
754 original_name.
755 (filter_overlapping_sections): Use objfile_name.
756 (objfile_name): New function.
757 * objfiles.h (struct objfile): Rename field name to original_name.
758 (objfile_name): New prototype.
759 * printcmd.c (sym_info, address_info): Use objfile_name.
760 * probe.c (parse_probes, collect_probes, compare_probes)
761 (info_probes_for_ops): Likewise.
762 * progspace.c (clone_program_space): Likewise.
763 * psymtab.c (require_partial_symbols, dump_psymtab, allocate_psymtab)
764 (maintenance_info_psymtabs): Likewise.
765 * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile)
766 (source_section_scripts): Likewise.
767 * python/py-objfile.c (objfpy_get_filename): Likewise.
768 * python/py-progspace.c (pspy_get_filename): Likewise.
769 * solib-aix.c (solib_aix_get_toc_value): Likewise.
770 * solib-som.c (match_main, som_solib_section_offsets): Likewise.
771 * solib.c (solib_read_symbols): Likewise.
772 * stabsread.c (scan_file_globals): Likewise.
773 * stap-probe.c (handle_stap_probe): Likewise.
774 * symfile.c (symbol_file_clear, separate_debug_file_exists)
775 (find_separate_debug_file_by_debuglink): Likewise.
776 (reread_symbols): Likewise. Use the objfile field name renamed to
777 original_name.
778 (allocate_symtab): Use objfile_name.
779 * symmisc.c (print_symbol_bcache_statistics, print_objfile_statistics)
780 (dump_objfile, dump_msymbols, dump_symtab_1)
781 (maintenance_print_msymbols, maintenance_print_objfiles)
782 (maintenance_info_symtabs, maintenance_check_symtabs): Likewise.
783 * target.c (target_translate_tls_address, target_info): Likewise.
784 * xcoffread.c (xcoff_initial_scan): Make variable name const. Use
785 objfile_name.
786
787 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
788
789 Code cleanup.
790 * probe.c (parse_probes): Rename variable objfile_name to
791 objfile_namestr.
792
793 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
794
795 Remove solib-sunos.c.
796 * Makefile.in (ALLDEPFILES): Remove solib-sunos.c.
797 * config/m68k/obsd.mh (NATDEPFILES): Remove solib-sunos.o.
798 * objfiles.c (rt_common_objfile): Remove.
799 (free_objfile): Remove rt_common_objfile comparison.
800 * objfiles.h (rt_common_objfile): Remove.
801 * solib-sunos.c: Remove.
802 * symfile.c (reread_symbols): Remove solib-sunos.c comment.
803
804 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
805
806 Remove a.out NetBSD and OpenBSD hosts.
807 * NEWS (Removed native configurations): New.
808 * config/arm/nbsdaout.mh: Remove.
809 * config/i386/nbsdaout.mh: Remove.
810 * config/i386/obsdaout.mh: Remove.
811 * config/m68k/nbsdaout.mh: Remove.
812 * config/sparc/nbsdaout.mh: Remove.
813 * config/vax/nbsdaout.mh: Remove.
814 * configure.host (arm*-*-netbsd*, i[34567]86-*-netbsd*)
815 (i[34567]86-*-openbsd[0-2].*, i[34567]86-*-openbsd3.[0-3])
816 (m68*-*-netbsd*, sparc-*-netbsd*, vax-*-netbsd*): Add them to obsolete
817 error.
818 (arm*-*-netbsd*, i[34567]86-*-netbsd*, i[34567]86-*-openbsd[0-2].*)
819 (i[34567]86-*-openbsd3.[0-3], m68*-*-netbsd*, sparc-*-netbsdaout*)
820 (sparc-*-netbsd*, vax-*-netbsd*): Remove.
821
822 2013-09-23 Tom Tromey <tromey@redhat.com>
823
824 * linespec.c (struct minsym_and_objfile): Remove.
825 (minsym_and_objfile_d): Remove.
826 (struct linespec, struct collect_info, linespec_parse_basic)
827 (convert_linespec_to_sals, linespec_parser_delete, decode_objc)
828 (compare_msymbols, find_method, find_function_symbols)
829 (find_linespec_symbols, struct collect_minsyms, compare_msyms)
830 (add_minsym, search_minsyms_for_name): Update.
831
832 2013-09-23 Andrew Burgess <aburgess@broadcom.com>
833
834 * regcache.c: Add include of valprint.h.
835 (dump_endian_bytes): Delete.
836 (regcache_dump): Use print_hex_chars not dump_endian_bytes.
837
838 2013-09-23 Andrew Burgess <aburgess@broadcom.com>
839
840 * sh64-tdep.c (sh64_do_fp_register): Use print_hex_chars.
841
842 2013-09-19 Pedro Alves <palves@redhat.com>
843
844 * breakpoint.c (remove_threaded_breakpoints): Skip non-user
845 breakpoints.
846
847 2013-09-19 Pedro Alves <palves@redhat.com>
848 Thomas Schwinge <thomas@codesourcery.com>
849 Yue Lu <hacklu.newborn@gmail.com>
850
851 * gnu-nat.c (gnu_read_inferior, gnu_write_inferior): Make static.
852 Take a gdb_byte pointer instead of a char pointer.
853
854 * gnu-nat.c (gnu_xfer_memory): Adjust interface as
855 gnu_xfer_partial helper.
856 (gnu_xfer_partial): New function.
857 (gnu_target): Don't install a deprecated_xfer_memory hook.
858 Install a to_xfer_partial hook.
859
860 2013-09-19 Jan Kratochvil <jan.kratochvil@redhat.com>
861
862 Constification.
863 * main.c (captured_main): Replace catch_command_errors by
864 catch_command_errors_const. Twice.
865 * symfile.c (symbol_file_add_main_1): Make args parameter const.
866 (symbol_file_add): Make name parameter const.
867 (symbol_file_add_main, symbol_file_add_main_1): Make args parameter const.
868 (symfile_bfd_open): Make name parameter const, rename it to cname. Add
869 variable name. Change their usage accordingly.
870 * symfile.h (symbol_file_add, symfile_bfd_open): Make first parameter
871 const.
872 (symbol_file_add_main): Make args parameter const.
873
874 2013-09-18 Raunaq Bathija <raunaq12@in.ibm.com>
875 Ulrich Weigand <uweigand@de.ibm.com>
876
877 * xcoffread.c (struct coff_symbol): Use CORE_ADDR as type
878 of c_value member.
879 (read_xcoff_symtab): Use CORE_ADDR as type of fcn_start_addr.
880
881 2013-09-18 Pedro Alves <palves@redhat.com>
882 Yue Lu <hacklu.newborn@gmail.com>
883
884 * gnu-nat.c (inf_validate_procs, gnu_wait, gnu_resume)
885 (gnu_create_inferior)
886 (gnu_attach, gnu_thread_alive, gnu_pid_to_str, cur_thread)
887 (set_sig_thread_cmd): Use the lwpid field of ptids to
888 store/extract thread ids instead of the tid field.
889 * i386gnu-nat.c (gnu_fetch_registers): Adjust.
890
891 2013-09-18 Andrew Burgess <aburgess@broadcom.com>
892
893 * infcmd.c (default_print_one_register_info): Add detection of
894 optimized out values.
895 (default_print_registers_info): Switch to using
896 get_frame_register_value.
897
898 2013-09-18 Markus Metzger <markus.t.metzger@intel.com>
899
900 * infrun.c (handle_inferior_event): Check if we know the
901 function start address before setting a resume breakpoint.
902
903 2013-09-18 Pedro Alves <palves@redhat.com>
904
905 * gnu-nat.c (set_sig_thread_cmd): Compare the thread's ptid to
906 minus_one_ptid instead of looking at the ptid's tid field and
907 comparing that to -1.
908
909 2013-09-18 Andrew Burgess <aburgess@broadcom.com>
910
911 * main.h (get_gdb_program_name): Remove extra whitespace.
912
913 2013-09-18 Andrew Burgess <aburgess@broadcom.com>
914
915 * main.h (get_gdb_program_name): Add declaration.
916 * main.c (get_gdb_program_name): Add definition.
917
918 2013-09-17 Doug Evans <dje@google.com>
919
920 * dwarf2read.c: Move definitions of complaint functions to after
921 forward declarations of local functions.
922
923 2013-09-17 Muhammad Waqas <mwaqas@codesourcery.com>
924 Pedro Alves <palves@redhat.com>
925
926 PR gdb/11568
927 * breakpoint.c (remove_threaded_breakpoints): New function.
928 (_initialize_breakpoint): Attach remove_threaded_breakpoints
929 as thread_exit observer.
930
931 2013-09-17 Pedro Alves <palves@redhat.com>
932
933 PR gdb/15911
934 * ada-tasks.c (task_command_1): Adjust call to print_stack_frame.
935 * bsd-kvm.c (bsd_kvm_open, bsd_kvm_proc_cmd, bsd_kvm_pcb_cmd):
936 * corelow.c (core_open):
937 * frame.h (print_stack_frame, print_frame_info): New
938 'set_current_sal' parameter.
939 * infcmd.c (finish_command, kill_command): Adjust call to
940 print_stack_frame.
941 * inferior.c (inferior_command): Likewise.
942 * infrun.c (normal_stop): Likewise.
943 * linux-fork.c (linux_fork_context): Likewise.
944 * record-full.c (record_full_goto_entry, record_full_restore):
945 Likewise.
946 * remote-mips.c (common_open): Likewise.
947 * stack.c (print_stack_frame): New 'set_current_sal' parameter.
948 Use it.
949 (print_frame_info): New 'set_current_sal' parameter. Set the last
950 displayed sal depending on the new paremeter instead of looking at
951 print_what.
952 (backtrace_command_1, select_and_print_frame, frame_command)
953 (current_frame_command, up_command, down_command): Adjust call to
954 print_stack_frame.
955 * thread.c (print_thread_info, restore_selected_frame)
956 (do_captured_thread_select): Adjust call to print_stack_frame.
957 * tracepoint.c (tfind_1): Likewise.
958 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames)
959 (mi_cmd_stack_info_frame): Likewise.
960 * mi/mi-interp.c (mi_on_normal_stop): Likewise.
961 * mi/mi-main.c (mi_cmd_exec_return, mi_cmd_trace_find): Likewise.
962
963 2013-09-16 Sergio Durigan Junior <sergiodj@redhat.com>
964
965 * value.c (isvoid_internal_fn): Replace "parameter" with
966 "argument".
967
968 2013-09-16 Stan Shebs <stan@codesourcery.com>
969
970 * README: Update references to writing code for GDB.
971 * configure.ac (build_warnings): Remove obsolete comment.
972 * configure: Regenerate.
973 * gdbarch.sh: Remove references to gdbint.texinfo.
974 * gdbarch.h: Regenerate.
975 * gdbtypes.c (objfile_type): Remove comments referencing internals
976 manual and D10V.
977
978 2013-09-16 Sergio Durigan Junior <sergiodj@redhat.com>
979
980 * NEWS: Mention new convenience function $_isvoid.
981 * value.c (isvoid_internal_fn): New function.
982 (_initialize_values): Add new convenience function $_isvoid.
983
984 2013-09-16 Pierre Muller <muller@sourceware.org>
985
986 * arm-linux-tdep.c: Add "elf/common.h" header.
987 Remove AT_HWCAP macro definintion as it is provided in
988 added include file.
989 * s390-tdep.c: Remove system header <elf.h>
990 Add "elf/common.h" header for AT_HWCAP definition.
991 (s390_core_read_description): Use correct CORE_ADDR
992 for hwcap local variable used as third parameter
993 of function target_auxv_search.
994
995 2013-09-14 Pierre Muller <muller@sourceware.org>
996 Tom Tromey <tromey@redhat.com>
997 Pedro Alves <palves@redhat.com>
998
999 * common/filestuff.c (gdb_fopen_cloexec): Do not try to use "e"
1000 mode if operating system doesn't know O_CLOEXEC.
1001
1002 2013-09-13 Jan Kratochvil <jan.kratochvil@redhat.com>
1003
1004 Code cleanup.
1005 * symfile.c (reread_symbols): Move variable obfd_filename to a more
1006 inner block.
1007
1008 2013-09-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
1009
1010 * NEWS: Mention TDB support.
1011 * features/s390-tdb.xml: New file.
1012 * features/s390-te-linux64.xml: New file.
1013 * features/s390x-te-linux64.xml: New file.
1014 * features/Makefile (WHICH): Add new tdescs above.
1015 (s390-te-linux64-expedite): Set.
1016 (s390x-te-linux64-expedite): Set.
1017 * features/s390-te-linux64.c: New file (generated).
1018 * features/s390x-te-linux64.c: New file (generated).
1019 * regformats/s390-te-linux64.dat: New file (generated).
1020 * regformats/s390x-te-linux64.dat: New file (generated).
1021 * s390-tdep.h (HWCAP_S390_HIGH_GPRS): Define.
1022 (HWCAP_S390_TE): Likewise.
1023 (S390_TDB_DWORD0_REGNUM): Likewise.
1024 (S390_TDB_DWORD0_REGNUM): Likewise.
1025 (S390_TDB_ABORT_CODE_REGNUM): Likewise.
1026 (S390_TDB_CONFLICT_TOKEN_REGNUM): Likewise.
1027 (S390_TDB_ATIA_REGNUM): Likewise.
1028 (S390_TDB_R0_REGNUM): Likewise.
1029 (S390_TDB_R1_REGNUM): Likewise.
1030 (S390_TDB_R2_REGNUM): Likewise.
1031 (S390_TDB_R3_REGNUM): Likewise.
1032 (S390_TDB_R4_REGNUM): Likewise.
1033 (S390_TDB_R5_REGNUM): Likewise.
1034 (S390_TDB_R6_REGNUM): Likewise.
1035 (S390_TDB_R7_REGNUM): Likewise.
1036 (S390_TDB_R8_REGNUM): Likewise.
1037 (S390_TDB_R9_REGNUM): Likewise.
1038 (S390_TDB_R10_REGNUM): Likewise.
1039 (S390_TDB_R11_REGNUM): Likewise.
1040 (S390_TDB_R12_REGNUM): Likewise.
1041 (S390_TDB_R13_REGNUM): Likewise.
1042 (S390_TDB_R14_REGNUM): Likewise.
1043 (S390_TDB_R15_REGNUM): Likewise.
1044 (S390_NUM_REGS): Increase.
1045 (S390_IS_TDBREGSET_REGNUM): New macro.
1046 (s390_regmap_tdb): Declare.
1047 (s390_sizeof_tdbregset): Define.
1048 (tdesc_s390_te_linux64): Declare.
1049 (tdesc_s390x_te_linux64): Likewise.
1050 * s390-tdep.c: Add includes for "auxv.h", <elf.h>,
1051 "features/s390-te-linux64.c", and "features/s390x-te-linux64.c".
1052 (s390_regmap_tdb): New regmap.
1053 (s390_supply_tdb_regset): New function.
1054 (s390_tdb_regset): New regset.
1055 (s390_linux64v2_regset_sections): Add TDB regset to list.
1056 (s390x_linux64v2_regset_sections): Likewise.
1057 (s390_regset_from_core_section): Recognize TDB core note section.
1058 (s390_core_read_description): If HWCAP indicates TE support,
1059 select tdesc_s390_te_linux64 or tdesc_s390_s390x_te_linux64.
1060 (s390_gdbarch_init): Handle TDB regset.
1061 (_initialize_s390_tdep): Initialize new tdescs.
1062 * s390-nat.c (HWCAP_S390_HIGH_GPRS): Remove define.
1063 (have_regset_tdb): New variable.
1064 (s390_native_supply): Support register invalidation.
1065 (fetch_regset): Invalidate registers if ptrace yields ENODATA.
1066 (check_regset): Treat ENODATA as "regset exists".
1067 (s390_linux_fetch_inferior_registers): Add TDB.
1068 (s390_read_description): Check for TDB existence and select
1069 appropriate tdesc.
1070 * gdbserver/Makefile.in (clean): Add removal of new makefile
1071 targets.
1072 (s390-te-linux64.c): New makefile target.
1073 (s390x-te-linux64.c): Likewise.
1074 * gdbserver/configure.srv (srv_regobj): Append new objects
1075 s390-te-linux64.o and s390x-te-linux64.o.
1076 (srv_xmlfiles): Append new files s390-te-linux64.xml,
1077 s390x-te-linux64.xml, and s390-tdb.xml.
1078 * gdbserver/linux-s390-low.c (init_registers_s390_te_linux64): New
1079 declaration.
1080 (tdesc_s390_te_linux64): Likewise.
1081 (init_registers_s390x_te_linux64): Likewise.
1082 (tdesc_s390x_te_linux64): Likewise.
1083 (s390_check_regset): Treat ENODATA as "regset exists".
1084 (s390_arch_setup): Add TDB regset support.
1085 (initialize_low_arch): Initialize registers for new tdescs.
1086
1087 2013-09-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
1088
1089 * s390-tdep.h (S390_IS_GREGSET_REGNUM): New macro.
1090 (S390_IS_FPREGSET_REGNUM): New macro.
1091 * s390-tdep.c (s390_dwarf_regmap): Make const.
1092 (regnum_is_gpr_full): New function for replacing repeated code.
1093 (s390_pseudo_register_name): Use it.
1094 (s390_pseudo_register_type): Likewise.
1095 (s390_pseudo_register_read): Likewise.
1096 (s390_pseudo_register_write): Likewise.
1097 (s390_unwind_pseudo_register): Likewise.
1098 (s390_regmap_gregset): New format for regmap.
1099 (s390x_regmap_gregset): Likewise.
1100 (s390_regmap_fpregset): Likewise.
1101 (s390_regmap_upper): Likewise.
1102 (s390_regmap_last_break): Likewise.
1103 (s390_regmap_system_call): Likewise.
1104 (s390_supply_regset): Adjust to new regmap format.
1105 (s390_collect_regset): Likewise.
1106 * s390-nat.c (s390_native_supply): Adjust to new regmap format.
1107 (s390_native_collect): Likewise.
1108 (supply_gregset): Likewise.
1109 (fill_gregset): Likewise.
1110 (supply_fpregset): Likewise.
1111 (fill_fpregset): Likewise.
1112 (fetch_regset): Likewise.
1113 (store_regset): Likewise.
1114 (s390_linux_fetch_inferior_registers): Likewise.
1115 (s390_linux_fetch_inferior_registers): Likewise.
1116
1117 2013-09-12 Andrew Pinski <apinski@cavium.com>
1118
1119 * aarch64-linux-nat.c (aarch64_linux_set_debug_regs): Zero out regs.
1120
1121 2013-09-10 Andreas Arnez <arnez@linux.vnet.ibm.com>
1122
1123 * config/s390/s390.mh (NATDEPFILES): Add linux-waitpid.o.
1124
1125 2013-09-09 Andrew Burgess <aburgess@broadcom.com>
1126
1127 * top.c (quit_confirm): Remove use of deprecated_init_ui_hook.
1128
1129 2013-09-06 Pedro Alves <palves@redhat.com>
1130
1131 * remote-sim.c (dump_mem, gdbsim_fetch_register)
1132 (gdbsim_store_register, gdbsim_kill, gdbsim_load)
1133 (gdbsim_create_inferior, gdbsim_open, gdbsim_close)
1134 (gdbsim_detach, gdbsim_resume_inferior, gdbsim_wait)
1135 (gdbsim_files_info, gdbsim_mourn_inferior): Send debug output to
1136 gdb_stdlog.
1137
1138 2013-09-06 Pedro Alves <palves@redhat.com>
1139
1140 * remote-sim.c (dump_mem): Constify buf parameter.
1141 gdbsim_xfer_inferior_memory): Rename to ...
1142 (gdbsim_xfer_memory): ... this. Adjust interface as
1143 target_xfer_partial helper.
1144 (gdbsim_xfer_partial): New function.
1145 (init_gdbsim_ops): Don't install a deprecated_xfer_memory hook.
1146 Install a to_xfer_partial hook. Send output to gdb_stdlog.
1147
1148 2013-09-06 Pedro Alves <palves@redhat.com>
1149
1150 * remote-sim.c (gdbsim_xfer_inferior_memory): Use
1151 host_address_to_string, and send debug output to gdb_stdlog.
1152
1153 2013-09-06 Ricard Wanderlof <ricardw@axis.com>
1154
1155 * Makefile.in (ALL_TARGET_OBS): Add cris-linux-tdep.o.
1156 * configure.tgt: Add cris-linux-tdep.o and linux-tdep.o to
1157 gdb_target_obs for cris target.
1158 * cris-tdep.c (struct gdbarch_tdep): Move to cris-tdep.h.
1159 (cris_gdbarch_init): Move calls to
1160 set_gdbarch_fetch_tls_load_module_address and
1161 set_solib_svr4_fetch_link_map_offsets to cris-linux-tdep.c.
1162 Add call to gdbarch_init_osabi.
1163 * cris-linux-tdep.c: New file.
1164 * cris-tdep.h: New file.
1165
1166 2013-09-06 Andrew Burgess <aburgess@broadcom.com>
1167
1168 * tui/tui-io.c (tui_initialize_io): Remove legacy comment referring
1169 to deprecated_init_ui_hook.
1170
1171 2013-09-06 Andrew Burgess <aburgess@broadcom.com>
1172
1173 * cli/cli-interp.c (_initialize_cli_interp): Add a
1174 command_loop_proc to interp_procs.
1175 * event-top.c (cli_command_loop): Change signature to match
1176 interp_command_loop_ftype.
1177 * event-top.h (cli_command_loop): Same.
1178 * interps.c (interp_new): Require every interpreter to have a
1179 command_loop_proc.
1180 (current_interp_command_loop): Just call the command_loop_proc on
1181 the current interpreter.
1182 * tui/tui-interp.c (_initialize_tui_interp): Add a
1183 command_loop_proc to interp_procs.
1184
1185 2013-09-06 Ricard Wanderlof <ricardw@axis.com>
1186
1187 * cris-tdep.c (cris_gdbarch_init): Add call to
1188 get_gdbarch_fetch_tls_load_module_address.
1189
1190 2013-09-06 Ricard Wanderlof <ricardw@axis.com>
1191
1192 * cris-tdep.c (cris_elf_greg_t): Rename from elf_greg_t.
1193 (cris_elf_gregset_t): Rename from elf_gregset_t.
1194 (crisv32_elf_gregset_t): Adjust.
1195 (cris_supply_gregset, fetch_core_registers): Adjust.
1196
1197 2013-09-06 Ricard Wanderlof <ricardw@axis.com>
1198
1199 * cris-tdep.c (elf_greg_t): Change typedef to unsigned char[4]
1200
1201 2013-09-05 Andrew Burgess <aburgess@broadcom.com>
1202
1203 * defs.h (deprecated_command_loop_hook): Remove, including
1204 references in comments.
1205 * interps.c (current_interp_command_loop): No longer use
1206 deprecated_command_loop_hook.
1207 (clear_interpreter_hooks): Remove deprecated_command_loop_hook
1208 setup.
1209 * top.c (deprecated_command_loop_hook): Remove.
1210
1211 2013-09-05 Pedro Alves <palves@redhat.com>
1212
1213 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): 'dwarf_regnum'
1214 local is now int instead of ULONGEST. Print it with %d
1215 instead of paddress.
1216
1217 2013-09-05 Tristan Gingold <gingold@adacore.com>
1218
1219 * MAINTAINERS: Remove avr maintainership.
1220
1221 2013-09-05 Pedro Alves <palves@redhat.com>
1222
1223 * findvar.c (value_of_register): Rework in terms of
1224 value_of_register_lazy.
1225
1226 2013-09-05 Muhammad Bilal <mbilal@codesourcery.com>
1227
1228 * symfile.c (add_symbol_file_command): Remove trailing
1229 whitespaces and blank line after comment.
1230
1231 2013-09-05 Pedro Alves <palves@redhat.com>
1232
1233 * tui/tui-regs.c (tui_register_format): Don't look at the
1234 register's name here. Return string representing register
1235 value instead of storing it in the data element.
1236 (tui_get_register): Compare register string representations
1237 instead of register value states and contents.
1238
1239 2013-09-05 Pedro Alves <palves@redhat.com>
1240
1241 PR tui/15933
1242 * tui/tui-regs.c (tui_show_registers): Show registers of the
1243 selected frame, not the current frame.
1244
1245 2013-09-05 Ricard Wanderlof <ricardw@axis.com>
1246
1247 * MAINTAINERS (Write After Approval): Add myself to the list.
1248
1249 2013-09-04 Doug Evans <dje@google.com>
1250
1251 * dwarf2read.c (queue_and_load_all_dwo_tus): New function.
1252 (queue_and_load_dwo_tu): New function.
1253 (lookup_dwo_signatured_type): Set per_cu.tu_read.
1254 (maybe_queue_comp_unit): Rename this_cu argument to dependent_cu.
1255 Make dependent_cu optional.
1256 (dw2_do_instantiate_symtab): If we just loaded a CU from a DWO,
1257 and an older .gdb_index is in use, queue and load all its TUs too.
1258
1259 2013-09-04 Jan Kratochvil <jan.kratochvil@redhat.com>
1260
1261 Code cleanup: Change OPF_DISABLE_REALPATH to OPF_RETURN_REALPATH.
1262 * cli/cli-cmds.c (find_and_open_script): Add OPF_RETURN_REALPATH to
1263 variable search_flags.
1264 * defs.h (OPF_DISABLE_REALPATH): Rename to ...
1265 (OPF_RETURN_REALPATH): ... here.
1266 * dwarf2read.c (try_open_dwop_file): Set OPF_RETURN_REALPATH for flags.
1267 * exec.c (exec_file_attach): Remove OPF_DISABLE_REALPATH from openp
1268 call. Twice.
1269 * nto-tdep.c (nto_find_and_open_solib): Add OPF_RETURN_REALPATH for
1270 openp call.
1271 * solib.c (solib_find): Likewise. Four times.
1272 * source.c (openp): Change OPF_DISABLE_REALPATH to OPF_RETURN_REALPATH
1273 in the function comment and for the realpath_fptr variable.
1274 (source_full_path_of): Add OPF_RETURN_REALPATH for openp call.
1275 (find_and_open_source): Likewise. Twice.
1276 * symfile.c (symfile_bfd_open): Likewise, also twice.
1277
1278 2013-09-04 Doug Evans <dje@google.com>
1279
1280 * progspace.c (save_current_space_and_thread): Remove unnecessary
1281 call to save_current_inferior.
1282
1283 2013-09-04 Andrew Burgess <aburgess@broadcom.com>
1284
1285 * sh64-tdep.c (sh64_do_register): Return after printing message
1286 about unavailable register contents.
1287
1288 2013-09-04 Muhammad Bilal <mbilal@codesourcery.com>
1289 Pedro Alves <palves@redhat.com>
1290
1291 * symfile.c (add_symbol_file_command): Error out on unknown
1292 option. Handle EXPECTING_SEC_ADDR/EXPECTING_SEC_NAME before '-'
1293 options and collapse into single conditional branch.
1294
1295 2013-09-03 Luis Machado <lgustavo@codesourcery.com>
1296
1297 * inf-child.c (inf_child_follow_fork): New parameter
1298 detach_fork.
1299 * inf-ptrace.c (inf_ptrace_follow_fork): Likewise.
1300 * inf-ttrace.c (inf_ttrace_follow_fork): Likewise.
1301 * inferior.h (detach_fork): Remove.
1302 * infrun.c (detach_fork): Adjust comment and make it
1303 static.
1304 (follow_fork): Pass detach_fork parameter to
1305 target_follow_fork.
1306 * linux-nat.c (linux_child_follow_fork): New parameter
1307 detach_fork.
1308 * target.c (target_follow_fork): New parameter detach_fork.
1309 Pass detach_fork as parameter and print its value.
1310 * target.h (struct target_ops) <to_follow_fork>: New int
1311 parameter.
1312 (target_follow_fork): New parameter detach_fork.
1313
1314 2013-09-03 Joel Brobecker <brobecker@adacore.com>
1315
1316 * solib-ia64-hpux.c (ia64_hpux_relocate_section_addresses):
1317 Replace sec->bfd by sec->the_bfd_section->owner.
1318
1319 2013-09-03 Yao Qi <yao@codesourcery.com>
1320
1321 * linux-tdep.c (linux_is_uclinux): New function. Code moved
1322 from linux_has_shared_address_space.
1323 (linux_has_shared_address_space): Call linux_is_uclinux.
1324 * linux-tdep.h (linux_is_uclinux): Declare.
1325 * m68klinux-tdep.c (m68k_linux_get_sigtramp_info): Call
1326 linux_is_uclinux.
1327
1328 2013-09-03 Yao Qi <yao@codesourcery.com>
1329
1330 * config/djgpp/fnchange.lst: Remove entry of
1331 i386-interix-nat.c and i386-interix-tdep.c.
1332 * configure.ac: Remove '*-*-interix*'.
1333 * configure: Re-generated.
1334 * defs.h (enum gdb_osabi): Remove GDB_OSABI_INTERIX.
1335 * i386-cygwin-tdep.c (i386_cygwin_osabi_sniffer): Remove
1336 obsolete comments.
1337 * osabi.c (gdb_osabi_names): Remove "Interix".
1338
1339 2013-09-03 Yao Qi <yao@codesourcery.com>
1340
1341 * arch-utils.c: Fix typo in the comment to gdbarch_update_p.
1342
1343 2013-09-02 Markus Metzger <markus.t.metzger@intel.com>
1344
1345 * record.h (record_print_flag) <record_print_src_line,
1346 record_print_insn_range>: Rename into ...
1347 (record_print_flag) <record_print_src_line,
1348 record_print_insn_range>: ... this. Update all users.
1349
1350 2013-09-02 Pierre Muller <muller@sourceware.org>
1351
1352 * windows-nat.c (windows_xfer_memory): Handle ERROR_PARTIAL_COPY
1353 error code.
1354
1355 2013-09-02 Pierre Muller <muller@sourceware.org>
1356
1357 * windows-nat.c (windows_xfer_memory): Fix compilation failure
1358 by use of plongest function.
1359
1360 2013-09-02 Tristan Gingold <gingold@adacore.com>
1361
1362 * NEWS: Add entry mentioning support for native Windows x64
1363 SEH data.
1364
1365 * amd64-windows-tdep.c: #include "objfiles.h", "frame-unwind.h",
1366 "coff/internal.h", "coff/i386.h", "coff/pe.h" and "libcoff.h".
1367 (struct amd64_windows_frame_cache): New struct.
1368 (amd64_windows_w2gdb_regnum): New global.
1369 (pc_in_range, amd64_windows_frame_decode_epilogue)
1370 (amd64_windows_frame_decode_insns, amd64_windows_find_unwind_info)
1371 (amd64_windows_frame_cache, amd64_windows_frame_prev_register)
1372 (amd64_windows_frame_this_id): New functions.
1373 (amd64_windows_frame_unwind): New static global.
1374 (amd64_windows_skip_prologue): New function.
1375 (amd64_windows_init_abi): Call frame_unwind_prepend_unwinder
1376 with amd64_windows_frame_unwind. Call set_gdbarch_skip_prologue
1377 with amd64_windows_skip_prologue.
1378
1379 2013-08-30 Joel Brobecker <brobecker@adacore.com>
1380
1381 GDB 7.6.1 released.
1382
1383 2013-08-30 Pedro Alves <palves@redhat.com>
1384
1385 * mi/mi-main.c (mi_cmd_trace_find): Use LOC_AND_ADDRESS instead of
1386 SRC_AND_LOC.
1387
1388 2013-08-30 Pedro Alves <palves@redhat.com>
1389
1390 * thread.c (restore_selected_frame): Use SRC_AND_LOC, and change
1391 warning text.
1392
1393 2013-08-30 Pedro Alves <palves@redhat.com>
1394
1395 * bsd-kvm.c (bsd_kvm_open, bsd_kvm_proc_cmd, bsd_kvm_pcb_cmd):
1396 Adjust arguments to print_stack_frame.
1397
1398 2013-08-30 Pedro Alves <palves@redhat.com>
1399
1400 * ada-tasks.c (task_command_1): Write SRC_AND_LOC instead '1'.
1401
1402 2013-08-30 Pedro Alves <palves@redhat.com>
1403
1404 * frame.h (show_and_print_stack_frame): Delete declaration.
1405
1406 2013-08-30 Phil Muldoon <pmuldoon@redhat.com>
1407
1408 PR python/15461
1409
1410 * python/py-arch.c (ARCHPY_REQUIRE_VALID): New macro.
1411 (archpy_name): Check for valid architecture.
1412 (archpy_disassemble): Ditto.
1413
1414 2013-08-29 Joel Brobecker <brobecker@adacore.com>
1415
1416 * rs6000-nat.c (rs6000_ptrace32): Cast "addr" to "uintptr_t"
1417 instead of "long long" in call to ptrace64.
1418
1419 2013-08-29 Andrew Burgess <aburgess@broadcom.com>
1420
1421 * mi/mi-interp.c (mi_command_loop): Change signature to match
1422 interp_command_loop_ftype.
1423 (mi1_command_loop): Remove.
1424 (mi2_command_loop): Remove.
1425 (mi3_command_loop): Remove.
1426 (mi_interpreter_resume): Remove setting of
1427 deprecated_command_loop_hook.
1428 (_initialize_mi_interp): Set mi_command_loop as the command loop
1429 callback.
1430
1431 2013-08-29 Sanimir Agovic <sanimir.agovic@intel.com>
1432
1433 * valops.c (do_search_struct_field): Pass v2 instead of base_type to
1434 value_type.
1435
1436 2013-08-29 Sanimir Agovic <sanimir.agovic@intel.com>
1437
1438 * value.c (allocate_value_contents): Make static.
1439 * value.h (allocate_value_contents): Remove prototype.
1440
1441 2013-08-29 Sanimir Agovic <sanimir.agovic@intel.com>
1442
1443 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Use value_at_lazy instead
1444 of assembling value via allocate_value_lazy and attribute setter.
1445 * findvar.c (default_read_var_value): Use value_at_lazy instead of
1446 assembling value via allocate_value_lazy and attribute setter.
1447 * valops.c (do_search_struct_field): Use value_at_lazy instead of
1448 assembling value via allocate_value_lazy and attribute setter.
1449
1450 2013-08-29 Sanimir Agovic <sanimir.agovic@intel.com>
1451
1452 * value.c (value_from_contents_and_address): Replace allocate_value and
1453 memcpy with value_from_contents.
1454
1455 2013-08-29 Phil Muldoon <pmuldoon@redhat.com>
1456
1457 * python/py-framefilter.c (py_print_frame): Remove usage of
1458 PyString_AsString. Use python_string_to_host_string instead.
1459 Refactor function to work with a string as a new allocation
1460 instead of a pointer.
1461 (py_print_frame): Ditto.
1462 * python/lib/gdb/frames.py (return_list): Cain iterators together
1463 instead of adding them as a list.
1464 (_sort_list): Call return_list, and remove duplicate code.
1465 (execute_frame_filters): Convert iterator to a list with list().
1466 * python/lib/gdb/command/frame_filters.py
1467 (SetFrameFilterPriority._set_filter_priority): Convert priority
1468 attribute to an integer.
1469 * python/lib/gdb/FrameIterator.py (FrameIterator.next): Define
1470 wrapper function __next__.
1471 * python/lib/gdb/FrameDecorator.py: If basestring not defined,
1472 define as "str".
1473
1474 2013-08-29 Phil Muldoon <pmuldoon@redhat.com>
1475
1476 PR python/15752
1477 * python/py-framefilter.c (apply_frame_filter): Check
1478 gdb_python_initialized. Exit if the Python frame-filter code
1479 cannot be initialized.
1480
1481 2013-08-29 Phil Muldoon <pmuldoon@redhat.com>
1482
1483 PR cli/15842
1484 * top.c (print_gdb_version): Remove erroneous newline after help
1485 text.
1486
1487 2013-08-29 Yao Qi <yao@codesourcery.com>
1488
1489 * varobj.c (install_dynamic_child): Remove trailing space.
1490 Add one blank line after variable declaration.
1491
1492 2013-08-28 Jan Kratochvil <jan.kratochvil@redhat.com>
1493
1494 PR gdb/15415
1495 * corefile.c (get_exec_file): Use exec_filename.
1496 * defs.h (OPF_DISABLE_REALPATH): New definition. Add new comment.
1497 * exec.c (exec_close): Free EXEC_FILENAME.
1498 (exec_file_attach): New variable canonical_pathname. Use
1499 OPF_DISABLE_REALPATH. Call gdb_realpath explicitly. Set
1500 EXEC_FILENAME.
1501 * exec.h (exec_filename): New.
1502 * inferior.c (print_inferior, inferior_command): Use
1503 PSPACE_EXEC_FILENAME.
1504 * mi/mi-main.c (print_one_inferior): Likewise.
1505 * progspace.c (clone_program_space, print_program_space): Likewise.
1506 * progspace.h (struct program_space): New field pspace_exec_filename.
1507 * source.c (openp): Describe OPF_DISABLE_REALPATH. New variable
1508 realpath_fptr, initialize it from OPF_DISABLE_REALPATH, use it.
1509
1510 2013-08-28 Will Newton <will.newton@linaro.org>
1511
1512 * common/linux-ptrace.c: Include stdint.h unconditionally.
1513
1514 2013-08-28 Jan Kratochvil <jan.kratochvil@redhat.com>
1515
1516 Code cleanup.
1517 * nto-tdep.c (nto_find_and_open_solib): Use OPF_TRY_CWD_FIRST.
1518
1519 2013-08-28 Yao Qi <yao@codesourcery.com>
1520 Pedro Alves <palves@redhat.com>
1521
1522 * event-top.c (gdb_setup_readline): Call stderr_fileopen
1523 instead of stdio_fileopen.
1524 * main.c (captured_main) [__MINGW32__]: Set stderr unbuffered.
1525 .Call stderr_fileopen instead of stdio_fileopen.
1526 * ui-file.c [__MINGW32__] (stderr_file_write): New function.
1527 [__MINGW32__] (stderr_file_fputs): New function.
1528 (stderr_fileopen): New function.
1529 * ui-file.h (stderr_fileopen): Declare.
1530
1531 2013-08-27 Doug Evans <dje@google.com>
1532
1533 * dwarf2read.c (struct dwarf2_cu): Tweak comment.
1534 (struct dwarf2_per_cu_data): Ditto.
1535 (maybe_queue_comp_unit): Delete forward decl. Add comment.
1536 (process_imported_unit_die): Ditto.
1537 (follow_die_sig_1): Simplify assert.
1538
1539 2013-08-27 Pedro Alves <palves@redhat.com>
1540
1541 * windows-nat.c (windows_xfer_memory): Adjust prototype to follow
1542 xfer_partial's interface. Return TARGET_XFER_E_IO on error.
1543 (windows_xfer_partial): Defer TARGET_OBJECT_MEMORY handling to
1544 windows_xfer_memory directly.
1545 (init_windows_ops): Don't install a deprecated_xfer_memory method.
1546
1547 2013-08-27 Pedro Alves <palves@redhat.com>
1548
1549 * darwin-nat.c (darwin_xfer_memory): Delete.
1550 (_initialize_darwin_inferior): Don't install a
1551 deprecated_xfer_memory method.
1552
1553 2013-08-27 Pedro Alves <pedro@codesourcery.com>
1554 Yao Qi <yao@codesourcery.com>
1555
1556 * mi/mi-cmd-stack.c (list_args_or_locals): Adjust prototype.
1557 (parse_no_frames_option): Remove.
1558 (mi_cmd_stack_list_locals): Handle --skip-unavailable.
1559 (mi_cmd_stack_list_args): Adjust.
1560 (mi_cmd_stack_list_variables): Handle --skip-unavailable.
1561 (list_arg_or_local): Add new parameter 'skip_unavailable'. Return
1562 early if SKIP_UNAVAILABLE is true and ARG->val is unavailable.
1563 Caller update.
1564 (list_args_or_locals): New parameter 'skip_unavailable'.
1565 Handle it.
1566 * valprint.c (scalar_type_p): Rename to ...
1567 (val_print_scalar_type_p): ... this. Make extern.
1568 (val_print, value_check_printable): Adjust.
1569 * valprint.h (val_print_scalar_type_p): Declare.
1570 * value.c (value_entirely_unavailable): New function.
1571 * value.h (value_entirely_unavailable): Declare.
1572
1573 * NEWS: Mention the new option "--skip-unavailable" to MI
1574 commands '-stack-list-locals', '-stack-list-arguments' and
1575 '-stack-list-variables'.
1576
1577 2013-08-27 Yao Qi <yao@codesourcery.com>
1578
1579 * mi/mi-cmd-stack.c (parse_no_frames_option): Remove.
1580 (mi_cmd_stack_list_args): Use mi_getopt_silent to handle
1581 options.
1582 * mi/mi-getopt.c (mi_getopt): Remove.
1583 (mi_getopt_1): Renamed from mi_getopt. Add one parameter
1584 'error_on_unknown'.
1585 (mi_getopt): Call mi_getopt_1.
1586 (mi_getopt_silent): New.
1587 * mi/mi-getopt.h (mi_getopt_silent): Declare.
1588
1589 2013-08-26 Doug Evans <dje@google.com>
1590
1591 PR symtab/15885
1592 * dwarf2read.c (dw2_dump): Print some minimal information indicating
1593 .gdb_index is in use.
1594 * symfile.c (reread_symbols): Reset objfile->sf.
1595
1596 * NEWS: Document "mt print objfiles" now takes optional regexp.
1597 * symmisc.c (maintenance_print_objfiles): Argument is now an optional
1598 regexp of objfiles to print.
1599 (_initialize_symmisc): Update doc string for "mt print objfiles".
1600
1601 * dwarf2read.c (write_psymtabs_to_index): Move error checks ahead of
1602 missing debug info checks.
1603
1604 2013-08-26 Raunaq Bathija <raunaq12@in.ibm.com>
1605 Ulrich Weigand <uweigand@de.ibm.com>
1606
1607 * xcoffread.c (arrange_linetable): Add fix to correctly handle
1608 line tables generated by XLC compiled binaries.
1609
1610 2013-08-23 Doug Evans <dje@google.com>
1611
1612 * symmisc.c (dump_symtab): Delete prototype.
1613 (dump_msymbols, dump_objfile): Ditto.
1614 (maintenance_info_symtabs): Mark as dont_repeat.
1615 (_initialize_symmisc): Improve doc string for "mt info symtabs".
1616
1617 * elfread.c (elf_symfile_read): Move "Done reading minimal symbols"
1618 debugging printf to better location.
1619
1620 2013-08-23 Pedro Alves <palves@redhat.com>
1621
1622 * target.c (target_read_live_memory): Change type of 'ret' local
1623 to LONGEST.
1624
1625 2013-08-23 Pedro Alves <palves@redhat.com>
1626
1627 * remote.c (remote_write_bytes_aux, remote_write_bytes)
1628 (remote_read_bytes): Change return type to LONGEST, and adjust to
1629 return a target_xfer_error on error.
1630 (remote_xfer_memory): Delete.
1631 (remote_flash_write): Change type of 'ret' local to LONGEST.
1632 (remote_xfer_partial, remote_xfer_partial): Adjust.
1633 (init_remote_ops): Don't install a deprecated_xfer_memory hook.
1634
1635 2013-08-23 Pierre Muller <muller@sourceware.org>
1636
1637 ARI fix: Push # directives to start of line.
1638 * rs6000-nat.c (rs6000_ptrace32, rs6000_ptrace64): Rule applied.
1639
1640 2013-08-12 Muhammad Waqas <mwaqas@codesourcery.com>
1641
1642 PR gdb/15501
1643 * breakpoint.c (enable_command, disable_command): Iterate over
1644 all specified breakpoint locations.
1645
1646 2013-08-22 Luis Machado <lgustavo@codesourcery.com>
1647
1648 * common/linux-ptrace.c (linux_fork_to_function): Push #
1649 directives to the start of the line.
1650 (linux_check_ptrace_features): Fix warning message to use
1651 the "_" markup.
1652
1653 2013-08-22 Luis Machado <lgustavo@codesourcery.com>
1654
1655 * Makefile.in (HFILES_NO_SRCDIR): Add nat/linux-nat.h and
1656 nat/linux-waitpid.h.
1657 (linux-waitpid.o): New object file rule.
1658 * common/linux-ptrace.c: Include nat/linux-waitpid.h.
1659 (current_ptrace_options): Moved from linux-nat.c.
1660 (linux_ptrace_test_ret_to_nx): Use type casts for ptrace
1661 parameters.
1662 (linux_fork_to_function): New function.
1663 (linux_grandchild_function): Likewise.
1664 (linux_child_function): Likewise.
1665 (linux_check_ptrace_features): New function, heavily
1666 based on linux-nat.c:linux_test_for_tracefork.
1667 (linux_enable_event_reporting): New function.
1668 (ptrace_supports_feature): Likewise.
1669 (linux_supports_tracefork): Likewise.
1670 (linux_supports_traceclone): Likewise.
1671 (linux_supports_tracevforkdone): Likewise.
1672 (linux_supports_tracesysgood): Likewise.
1673 * common/linux-ptrace.h (HAS_NOMMU): Moved from
1674 gdbserver/linux-low.c.
1675 (linux_enable_event_reporting): New declaration.
1676 (linux_supports_tracefork): Likewise.
1677 (linux_supports_traceclone): Likewise.
1678 (linux_supports_tracevforkdone): Likewise.
1679 (linux_supports_tracesysgood): Likewise.
1680 * config.in (PTRACE_TYPE_ARG4): Regenerate.
1681 * config/aarch64/linux.mh (NATDEPFILES): Add linux-waitpid.o.
1682 * config/alpha/alpha-linux.mh (NATDEPFILES): Likewise.
1683 * config/arm/linux.mh (NATDEPFILES): Likewise.
1684 * config/i386/linux.mh (NATDEPFILES): Likewise.
1685 * config/i386/linux64.mh (NATDEPFILES): Likewise.
1686 * config/ia64/linux.mh (NATDEPFILES): Likewise.
1687 * config/m32r/linux.mh (NATDEPFILES): Likewise.
1688 * config/m68k/linux.mh (NATDEPFILES): Likewise.
1689 * config/mips/linux.mh (NATDEPFILES): Likewise.
1690 * config/pa/linux.mh (NATDEPFILES): Likewise..
1691 * config/powerpc/linux.mh (NATDEPFILES): Likewise..
1692 * config/powerpc/ppc64-linux.mh (NATDEPFILES): Likewise.
1693 * config/powerpc/spu-linux.mh (NATDEPFILES): Likewise.
1694 * config/sparc/linux.mh (NATDEPFILES): Likewise.
1695 * config/sparc/linux64.mh (NATDEPFILES): Likewise.
1696 * config/tilegx/linux.mh (NATDEPFILES): Likewise.
1697 * config/xtensa/linux.mh (NATDEPFILES): Likewise.
1698 * configure.ac (AC_CACHE_CHECK): Add void * to the list of
1699 ptrace's 4th argument's types.
1700 Check the type of PTRACE_TYPE_ARG4.
1701 * configure: Regenerate.
1702 * linux-nat.c: Include nat/linux-nat.h and nat/linux-waitpid.h.
1703 (SYSCALL_SIGTRAP): Moved to nat/linux-nat.h.
1704 (linux_supports_tracefork_flag): Remove.
1705 (linux_supports_tracesysgood_flag): Likewise.
1706 (linux_supports_tracevforkdone_flag): Likewise.
1707 (current_ptrace_options): Moved to
1708 common/linux-ptrace.c.
1709 (linux_tracefork_child): Remove.
1710 (my_waitpid): Remove.
1711 (linux_test_for_tracefork): Renamed to
1712 linux_check_ptrace_features and moved to common/linux-ptrace.c.
1713 (linux_test_for_tracesysgood): Remove.
1714 (linux_supports_tracesysgood): Remove.
1715 (linux_supports_tracefork): Remove.
1716 (linux_supports_tracevforkdone): Remove.
1717 (linux_enable_tracesysgood): Remove.
1718 (linux_enable_event_reporting): Remove.
1719 (linux_init_ptrace): New function.
1720 (linux_child_post_attach): Call linux_init_ptrace.
1721 (linux_child_post_startup_inferior): Call linux_init_ptrace.
1722 (linux_child_follow_fork): Call linux_supports_tracefork
1723 and linux_supports_tracevforkdone.
1724 (linux_child_insert_fork_catchpoint): Call
1725 linux_supports_tracefork.
1726 (linux_child_insert_vfork_catchpoint): Likewise.
1727 (linux_child_set_syscall_catchpoint): Call
1728 linux_supports_tracesysgood.
1729 (lin_lwp_attach_lwp): Call linux_supports_tracefork.
1730 * nat/linux-nat.h: New file.
1731 * nat/linux-waitpid.c: New file.
1732 * nat/linux-waitpid.h: New file.
1733
1734 2013-08-22 Samuel Bronson <naesten@gmail.com>
1735
1736 ARM Linux support for `catch syscall'.
1737 * syscalls/arm-linux.py: New file.
1738 * syscalls/arm-linux.xml: Likewise.
1739 * arm-linux-tdep.c (arm_linux_get_syscall_number): New function.
1740 (arm_linux_init_abi): Register the new function and syscall xml file.
1741 * data-directory/Makefile.in: Install the new syscall xml file.
1742 * NEWS: Brag about this.
1743
1744 2013-08-22 Pedro Alves <palves@redhat.com>
1745
1746 PR gdb/15871
1747 * corefile.c (target_xfer_memory_error): New function.
1748 (memory_error): Defer EIO to target_memory_error.
1749 (read_memory): Use target_xfer_partial, and handle finer-grained
1750 target xfer errors.
1751 * target.c (target_xfer_error_to_string): New function.
1752 (memory_xfer_partial_1): If memory is known to be
1753 unavailable, return TARGET_XFER_E_UNAVAILABLE instead of -1.
1754 (target_xfer_partial): Make extern.
1755 * target.h (enum target_xfer_error): New enum.
1756 (target_xfer_error_to_string): Declare function.
1757 (target_xfer_partial): Declare function.
1758 (struct target_ops) <xfer_partial>: Adjust describing comment.
1759
1760 2013-08-22 Alan Modra <amodra@gmail.com>
1761
1762 * configure.host: Support powerpc64le-linux and powerpcle-linux hosts.
1763 * configure.tgt: Likewise as targets.
1764
1765 2013-08-20 Doug Evans <dje@google.com>
1766
1767 * buildsym.c (subfile_stack): Move here from buildsym.h.
1768 (pending_macros): Ditto.
1769 (get_macro_table): New function.
1770 (buildsym_init): Initialize subfile_stack.
1771 * coffread.c (type_vector,type_vector_length): Moved here from
1772 buildsym.h.
1773 (INITIAL_TYPE_VECTOR_LENGTH): Ditto.
1774 (coff_symtab_read): Use it.
1775 * dbxread.c (read_ofile_symtab): Delete init of subfile_stack.
1776 * dwarf2read.c (macro_start_file): Replace uses of pending_macros
1777 with call to get_macro_table.
1778 * stabsread.c (type_vector,type_vector_length): Moved here from
1779 buildsym.h.
1780 (INITIAL_TYPE_VECTOR_LENGTH): Ditto.
1781 * buildsym.h (get_macro_table): Declare.
1782
1783 2013-08-20 Tom Tromey <tromey@redhat.com>
1784
1785 * dbxread.c (record_minimal_symbol): Make 'name' argument const.
1786 Update.
1787 (read_dbx_dynamic_symtab): Make 'name' const. Remove casts.
1788
1789 2013-08-20 Doug Evans <dje@google.com>
1790
1791 * blockframe.c: Remove #include "psymtab.h".
1792 * cp-support.c: Ditto.
1793 * source.c: Ditto.
1794 * stack.c: Ditto.
1795
1796 2013-08-20 Tom Tromey <tromey@redhat.com>
1797
1798 PR python/15816:
1799 * exceptions.h (return_mask): Now an enum.
1800 (RETURN_MASK_QUIT, RETURN_MASK_ERROR, RETURN_MASK_ALL): Now
1801 enum constants.
1802
1803 2013-08-20 Tom Tromey <tromey@redhat.com>
1804
1805 * cp-namespace.c (cp_lookup_symbol_imports_or_template): Use
1806 get_objfile_arch.
1807 * elfread.c (elf_rel_plt_read, elf_gnu_ifunc_record_cache)
1808 (elf_gnu_ifunc_resolve_by_got): Use get_objfile_arch.
1809 * jit.c (jit_object_close_impl): Update.
1810 * jv-lang.c (get_dynamics_objfile): Update.
1811 * linespec.c (add_minsym): Use get_dynamics_objfile.
1812 * objfiles.c (get_objfile_bfd_data): Initialize 'gdbarch' field.
1813 (allocate_objfile): Don't initialize 'gdbarch' field.
1814 (get_objfile_arch): Update.
1815 * objfiles.h (struct objfile_per_bfd_storage) <gdbarch>: New field,
1816 moved from...
1817 (struct objfile) <gdbarch>: ... here. Remove.
1818 * stap-probe.c (stap_can_evaluate_probe_arguments): Use
1819 get_objfile_arch.
1820 * symfile.c (init_entry_point_info): Use get_objfile_arch.
1821
1822 2013-08-20 Alan Modra <amodra@gmail.com>
1823
1824 * doublest.c (convert_floatformat_to_doublest): Use fmt->split_half
1825 for IBM long double nan and inf.
1826 (floatformat_is_negative, floatformat_classify,
1827 floatformat_mantissa): Similarly.
1828 (floatformat_ieee_single, floatformat_ieee_double,
1829 floatformat_ieee_quad, floatformat_arm_ext,
1830 floatformat_ia64_spill): Delete unused vars.
1831 (_initialize_doublest): Delete unused function.
1832 * gdbtypes.c (floatformats_ibm_long_double): Use new big- and
1833 little-endian variants of floatformat_ibm_long_double.
1834
1835 2013-08-19 Luis Machado <lgustavo@codesourcery.com>
1836
1837 * Makefile.in (SFILES): Remove common/target-common.c and
1838 add target/waitstatus.c.
1839 (HFILES_NO_SRCDIR): Remove common/target-common.h and add
1840 target/resume.h, target/wait.h and target/waitstatus.h.
1841 (COMMON_OBS): Remove target-common.o and add
1842 waitstatus.o.
1843 (target-common.o): Remove.
1844 (waitstatus.o): New target object file.
1845 * common/target-common.c: Move contents to
1846 target/waitstatus.c and remove.
1847 * common/target-common.h: Move contents to other files and
1848 remove.
1849 (enum resume_kind: Move to target/resume.h.
1850 (TARGET_WNOHANG): Move to target/wait.h.
1851 (enum target_waitkind): Move to target/waitstatus.h.
1852 (struct target_waitstatus): Likewise.
1853 * target.h: Do not include target-common.h and
1854 include target/resume.h, target/wait.h and
1855 target/waitstatus.h.
1856 * target/resume.h: New file.
1857 * target/wait.h: New file.
1858 * target/waitstatus.h: New file.
1859 * target/waitstatus.c: New file.
1860
1861 2013-08-19 Pedro Alves <palves@redhat.com>
1862
1863 * linux-nat.c (linux_test_for_tracefork)
1864 (linux_test_for_tracesysgood, linux_child_follow_fork)
1865 (lin_lwp_attach_lwp, linux_nat_resume): Don't block child signals.
1866 (linux_nat_wait_1): Extend comment.
1867 (linux_async_pipe): Add comment.
1868
1869 2013-08-15 Kevin Buettner <kevinb@redhat.com>
1870
1871 * rl78-tdep.c (RL78_RAW_PC_REGNUM): New enum.
1872 (RL78_PC_REGNUM): Move to list of pseudo-register enums.
1873 (rl78_register_type, rl78_register_name, rl78_register_reggroup_p):
1874 Update to account for fact that PC is now a pseudo-register.
1875 (rl78_pseudo_register_write, rl78_pseudo_register_read): Add
1876 cases for RL78_PC_REGNUM.
1877
1878 2013-08-15 Muhammad Bilal <mbilal@codesourcery.com>
1879
1880 PR cli/15841
1881 * top.c (quit_force): Skip writing history file
1882 if input is not from terminal.
1883
1884 2013-08-14 Tom Tromey <tromey@redhat.com>
1885
1886 * remote.c (struct remote_state) <echo_nextthread, nextthread,
1887 resultthreadlist>: New fields.
1888 (OPAQUETHREADBYTES, threadref, MAXTHREADLISTRESULTS): Move earlier.
1889 (remote_get_threadlist, remote_threadlist_iterator): Use
1890 new fields. Remove static variables.
1891
1892 2013-08-14 Tom Tromey <tromey@redhat.com>
1893
1894 * remote.c (struct remote_state) <remote_stopped_by_watchpoint_p,
1895 remote_watch_data_address>: New fields.
1896 (remote_stopped_by_watchpoint_p, remote_watch_data_address): Remove.
1897 (process_stop_reply, remote_wait_as)
1898 (remote_check_watch_resources, remote_stopped_data_address): Update.
1899
1900 2013-08-14 Tom Tromey <tromey@redhat.com>
1901
1902 * remote.c (struct remote_state) <async_client_callback,
1903 async_client_context>: New fields.
1904 (async_client_callback, async_client_context): Remove.
1905 (remote_async_serial_handler, remote_async): Update.
1906
1907 2013-08-14 Tom Tromey <tromey@redhat.com>
1908
1909 * remote.c (sizeof_pkt): Remove.
1910 (remote_trace_find): Use rs->buf_size, not sizeof_pkt.
1911
1912 2013-08-14 Tom Tromey <tromey@redhat.com>
1913
1914 * remote.c (struct remote_state) <use_threadinfo_query,
1915 use_threadextra_query>: New fields.
1916 (remote_threads_info, remote_threads_extra_info)
1917 (remote_open_1): Update.
1918
1919 2013-08-14 Tom Tromey <tromey@redhat.com>
1920
1921 * remote.c (struct remote_state) <finished_object,
1922 finished_annex, finished_offset>: New fields.
1923 (remote_read_qxfer): Use remote_state fields; remove static
1924 variables.
1925
1926 2013-08-14 Tom Tromey <tromey@redhat.com>
1927
1928 * remote.c (struct remote_state) <last_sent_step>:
1929 New field.
1930 (last_sent_step): Remove.
1931 (remote_resume, remote_wait_as): Update.
1932
1933 2013-08-14 Tom Tromey <tromey@redhat.com>
1934
1935 * remote.c (struct remote_state) <last_sent_signal>:
1936 New field.
1937 (last_sent_signal): Remove.
1938 (new_remote_state, remote_resume, remote_wait_as): Update.
1939
1940 2013-08-14 Tom Tromey <tromey@redhat.com>
1941
1942 * remote.c (struct remote_state) <last_program_signals_packet>:
1943 New field.
1944 (last_program_signals_packet): Remove.
1945 (remote_program_signals, remote_open_1): Update.
1946
1947 2013-08-14 Tom Tromey <tromey@redhat.com>
1948
1949 * remote.c (struct remote_state) <last_pass_packet>:
1950 New field.
1951 (last_pass_packet): Remove.
1952 (remote_pass_signals, remote_open_1): Update.
1953
1954 2013-08-14 Tom Tromey <tromey@redhat.com>
1955
1956 * remote.c (struct remote_state) <remote_traceframe_number>:
1957 New field.
1958 (remote_traceframe_number): Remove.
1959 (new_remote_state, remote_open_1, set_remote_traceframe)
1960 (remote_trace_find): Update.
1961
1962 2013-08-14 Tom Tromey <tromey@redhat.com>
1963
1964 * remote.c (struct remote_state) <general_thread, continue_thread>:
1965 New fields.
1966 (general_thread, continue_thread): Remove.
1967 (record_currthread, set_thread, set_general_process)
1968 (remote_open_1, extended_remote_attach_1, remote_wait_as)
1969 (extended_remote_mourn_1): Update.
1970
1971 2013-08-14 Tom Tromey <tromey@redhat.com>
1972
1973 * remote.c (struct remote_state) <remote_desc>: New field.
1974 (remote_desc): Remove.
1975 (remote_threads_info, remote_threads_extra_info, remote_close)
1976 (send_interrupt_sequence, remote_start_remote, remote_open_1)
1977 (readchar, remote_xfer_partial, remote_rcmd, packet_command)
1978 (remote_hostio_send_command, remote_file_put, remote_file_get)
1979 (remote_file_delete, remote_can_async_p, remote_is_async_p)
1980 (remote_async, remote_new_objfile, set_range_stepping): Update.
1981
1982 2013-08-14 Tom Tromey <tromey@redhat.com>
1983
1984 * remote.c (remote_state): Now a pointer.
1985 (get_remote_state_raw): Update.
1986 (new_remote_state): New function.
1987 (_initialize_remote): Use new_remote_state.
1988
1989 2013-08-14 Tom Tromey <tromey@redhat.com>
1990
1991 * remote.c (remote_protocol_features): Now const.
1992
1993 2013-08-14 Tom Tromey <tromey@redhat.com>
1994
1995 * remote.c (crc32_table, crc32): Remove.
1996 (remote_verify_memory): Use xcrc32.
1997
1998 2013-08-13 Sergio Durigan Junior <sergiodj@redhat.com>
1999
2000 * value.h (create_internalvar_type_lazy): Adjust prototype
2001 declaration.
2002
2003 2013-08-13 Andrew Burgess <aburgess@broadcom.com>
2004
2005 * common/format.c (parse_format_string): Don't allow '#' flag for
2006 pointer arguments in format string.
2007
2008 2013-08-13 Pierre Muller <muller@sourceware.org>
2009
2010 * utils.c (init_page_info): Only call tgetnum function
2011 if rl_get_screen_size did not return useful values.
2012
2013 2013-08-12 Ali Anwar <ali_anwar@codesourcery.com>
2014
2015 PR breakpoints/15117
2016 * linespec.c (linespec_parse_basic): Check for convenience
2017 variable or history value while parsing.
2018
2019 2013-08-12 Sergio Durigan Junior <sergiodj@redhat.com>
2020
2021 Revert implementation of gdbarch_gdb_signal_{to,from}_target for
2022 AVR.
2023 * avr-tdep.c: Remove include of "linux-tdep.h". Remove enum with
2024 different signals between the generic Linux kernel implementation
2025 and AVR's.
2026 (avr_linux_gdb_signal_from_target): Delete.
2027 (avr_linux_gdb_signal_to_target): Delete.
2028 (avr_gdbarch_init): Don't set gdbarch_gdb_signal_{to,from}_target.
2029
2030 2013-08-09 Doug Evans <dje@google.com>
2031
2032 * dwarf2read.c (create_addrmap_from_index): Ignore bad address table
2033 entries.
2034
2035 2013-08-09 Sergio Durigan Junior <sergiodj@redhat.com>
2036
2037 * linux-tdep.c: Define enum with generic signal numbers.
2038 (linux_gdb_signal_from_target): New function.
2039 (linux_gdb_signal_to_target): Likewise.
2040 (linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
2041 methods to the functions above.
2042 * linux-tdep.h (linux_gdb_signal_from_target): New prototype.
2043 (linux_gdb_signal_to_target): Likewise.
2044 * alpha-linux-tdep.c: Define new enum with signals different
2045 from generic Linux kernel.
2046 (alpha_linux_gdb_signal_from_target): New function.
2047 (alpha_linux_gdb_signal_to_target): Likewise.
2048 (alpha_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
2049 with the functions mentioned above.
2050 * avr-tdep.c: Define enum with differences between Linux kernel
2051 and AVR signals.
2052 (avr_linux_gdb_signal_from_target): New function.
2053 (avr_linux_gdb_signal_to_target): Likewise.
2054 (avr_gdbarch_init): Set gdbarch_gdb_signal_{to,from}_target to
2055 the functions mentioned above.
2056 * sparc-linux-tdep.c: Define enum with differences between SPARC
2057 and generic Linux kernel signal numbers.
2058 (sparc32_linux_gdb_signal_from_target): New function.
2059 (sparc32_linux_gdb_signal_to_target): Likewise.
2060 (sparc32_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
2061 to the functions defined above.
2062 * xtensa-linux-tdep.c: Define enum with differences between
2063 Xtensa and Linux kernel generic signals.
2064 (xtensa_linux_gdb_signal_from_target): New function.
2065 (xtensa_linux_gdb_signal_to_target): Likewise.
2066 (xtensa_linux_init_abi): Set gdbarch_gdb_signal_to_target
2067 to the functions defined above.
2068 * mips-linux-tdep.c: Define enum with differences between
2069 signals in MIPS and Linux kernel generic ones.
2070 (mips_gdb_signal_to_target): New function.
2071 (mips_gdb_signal_from_target): Redefine to use new enum, handle
2072 only different signals from the Linux kernel generic.
2073 (mips_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
2074 the functions defined above.
2075 * mips-linux-tdep.h (enum mips_signals): Remove.
2076
2077 2013-08-09 Pedro Alves <palves@redhat.com>
2078
2079 * avr-tdep.c (XMALLOC): Delete macro.
2080 * cli/cli-dump.c (XMALLOC): Delete macro.
2081
2082 2013-08-09 Pedro Alves <palves@redhat.com>
2083
2084 * cli/cli-dump.c: Don't include cli/cli-dump.h.
2085 (scan_expression_with_cleanup, scan_filename_with_cleanup)
2086 (fopen_with_cleanup, add_dump_command): Make static.
2087 * cli/cli-dump.h: Delete file.
2088 * Makefile.in (HFILES_NO_SRCDIR): Remove reference to
2089 cli/cli-dump.h.
2090
2091 2013-08-09 Pedro Alves <palves@redhat.com>
2092
2093 * tracepoint.c (tfile_start): Show tilde-expanded filename in
2094 error message.
2095
2096 2013-08-09 Pedro Alves <palves@redhat.com>
2097
2098 * breakpoint.c (save_breakpoints): Show tilde-expanded filename in
2099 error message.
2100
2101 2013-08-09 Pedro Alves <palves@redhat.com>
2102
2103 * gcore.c (create_gcore_bfd): Don't use tilde_expand here.
2104 (gcore_command): Use tilde_expand here, and when showing the
2105 filename to the user, show the expanded version.
2106
2107 2013-08-09 Yao Qi <yao@codesourcery.com>
2108
2109 * stack.c (read_frame_arg): Set 'entryval_error' to NULL if
2110 'entryval' is set.
2111
2112 2013-08-08 Azat Khuzhin <a3at.mail@gmail.com> (tiny change)
2113
2114 * gcore.c (create_gcore_bfd): Use tilde_expand.
2115
2116 2013-08-08 Yao Qi <yao@codesourcery.com>
2117
2118 * frame.h (read_frame_local): Declare.
2119 * mi/mi-cmd-stack.c (list_args_or_locals): Call
2120 read_frame_local.
2121 * stack.c (read_frame_local): New.
2122
2123 2013-08-08 Yao Qi <yao@codesourcery.com>
2124
2125 * mi/mi-cmd-stack.c: Update comments to function
2126 list_args_or_locals.
2127
2128 2013-08-07 Tom Tromey <tromey@redhat.com>
2129
2130 PR symtab/15028:
2131 * dwarf2read.c (struct process_psymtab_comp_unit_data): New.
2132 (process_psymtab_comp_unit_reader): Use it.
2133 (process_psymtab_comp_unit): Update. Add "pretend_language"
2134 argument.
2135 (dwarf2_build_psymtabs_hard): Update.
2136 (scan_partial_symbols): Pass CU's language to
2137 process_psymtab_comp_unit.
2138
2139 2013-08-07 Tom Tromey <tromey@redhat.com>
2140
2141 * dwarf2read.c (dw2_get_primary_filename_reader): Remove.
2142 (dwarf2_gdb_index_functions): Update.
2143 * psymtab.c (find_symbol_file_from_partial): Remove.
2144 (psym_functions): Update.
2145 * symfile.h (struct quick_symbol_functions) <find_symbol_file>:
2146 Remove.
2147
2148 2013-08-07 Tom Tromey <tromey@redhat.com>
2149
2150 * symfile.c (set_initial_language): Look up "main" symbol
2151 and use its language.
2152 * symtab.c (find_main_filename): Remove.
2153 * symtab.h (find_main_filename): Remove.
2154
2155 2013-08-07 Tom Tromey <tromey@redhat.com>
2156
2157 * dwarf2read.c (recursively_compute_inclusions): Add
2158 "immediate_parent" argument. Set symtab's "user" field
2159 if not set.
2160 (compute_symtab_includes): Update.
2161
2162 2013-08-07 Tom Tromey <tromey@redhat.com>
2163
2164 * linespec.c (convert_linespec_to_sals): Use maybe_add_address
2165 when adding label symbols.
2166
2167 2013-08-07 Raunaq Bathija <raunaq12@in.ibm.com>
2168 Ulrich Weigand <uweigand@de.ibm.com>
2169
2170 * configure.tgt (powerpc64-*-aix*): Match powerpc64 running aix.
2171 * configure.host (powerpc64-*-aix*): Likewise.
2172
2173 2013-08-07 Raunaq Bathija <raunaq12@in.ibm.com>
2174 Ulrich Weigand <uweigand@de.ibm.com>
2175
2176 * gdb_ptrace.h: Use ptrace64 instead of ptrace if HAVE_PTRACE64
2177 is defined.
2178 * rs6000-nat.c: Check for __ld_info64_ if compiling 64 BIT gdb.
2179 (rs6000_ptrace32): Call ptrace64 instead of ptrace if present.
2180 (rs6000_ptrace64): Call ptace64 instead of ptracex if present.
2181 * configure.ac: Check for ptrace64.
2182 * configure, config.in: Regenerate.
2183
2184 2013-08-07 Raunaq Bathija <raunaq12@in.ibm.com>
2185 Ulrich Weigand <uweigand@de.ibm.com>
2186
2187 * aixthread.c: Call ptrace64 instead of ptracex if defined.
2188 Call ptrace64 instead of ptrace if defined.
2189 Add macro addr_ptr to take care of ptrace address argument.
2190 (pdc_read_regs): Likewise.
2191 (pdc_write_regs): Likewise.
2192 (aix_thread_resume): Likewise.
2193 (fetch_regs_kernel_thread): Likewise.
2194 (store_regs_kernel_thread): Likewise.
2195
2196 2013-08-07 Anton Blanchard <anton@samba.org>
2197
2198 * MAINTAINERS: Add myself to Write After Approval.
2199
2200 2013-08-05 Tom Tromey <tromey@redhat.com>
2201
2202 * aix-thread.c (_initialize_aix_thread): Use
2203 complete_target_initialization.
2204 * bsd-uthread.c (_initialize_bsd_uthread): Use
2205 complete_target_initialization.
2206 * dec-thread.c (_initialize_dec_thread): Use
2207 complete_target_initialization.
2208 * ravenscar-thread.c (_initialize_ravenscar): Use
2209 complete_target_initialization.
2210 * sol-thread.c (_initialize_sol_thread): Use
2211 complete_target_initialization.
2212 * spu-multiarch.c (_initialize_spu_multiarch): Use
2213 complete_target_initialization.
2214
2215 2013-08-05 Tom Tromey <tromey@redhat.com>
2216
2217 * ada-exp.y (write_var_or_type): Use bound_minimal_symbol.
2218 * ada-lang.c (ada_lookup_simple_minsym): Return
2219 bound_minimal_symbol.
2220 * ada-lang.h (ada_lookup_simple_minsym): Update.
2221 * c-exp.y (variable): Use lookup_bound_minimal_symbol.
2222 * f-exp.y (variable): Use lookup_bound_minimal_symbol.
2223 * go-exp.y (variable): Use lookup_bound_minimal_symbol.
2224 * jv-exp.y (push_expression_name): Use lookup_bound_minimal_symbol.
2225 * m2-exp.y (variable): Use lookup_bound_minimal_symbol.
2226 * minsyms.c (msymbol_objfile): Remove.
2227 (lookup_minimal_symbol_internal): New function, from
2228 lookup_minimal_symbol.
2229 (lookup_minimal_symbol): Rewrite using
2230 lookup_minimal_symbol_internal.
2231 (lookup_bound_minimal_symbol): New function.
2232 * minsyms.h (msymbol_objfile): Remove.
2233 (lookup_bound_minimal_symbol): Declare.
2234 * p-exp.y (variable): Use lookup_bound_minimal_symbol.
2235 * parse.c (write_exp_msymbol): Change parameter to a
2236 bound_minimal_symbol.
2237 (write_dollar_variable): Use lookup_bound_minimal_symbol.
2238 * parser-defs.h (write_exp_msymbol): Update.
2239 * printcmd.c (address_info): Use lookup_bound_minimal_symbol.
2240 * symfile.c (simple_read_overlay_table): Use
2241 lookup_bound_minimal_symbol.
2242 * symtab.c (skip_prologue_sal): Don't use msymbol_objfile.
2243 (search_symbols): Likewise.
2244 (print_msymbol_info): Take a bound_minimal_symbol argument.
2245 (symtab_symbol_info, rbreak_command): Update.
2246 * symtab.h (struct symbol_search) <msymbol>: Change type
2247 to bound_minimal_symbol.
2248 * valops.c (find_function_in_inferior): Use
2249 lookup_bound_minimal_symbol.
2250 * value.c (value_fn_field): Use lookup_bound_minimal_symbol.
2251
2252 2013-08-05 Jan Kratochvil <jan.kratochvil@redhat.com>
2253
2254 Code cleanup.
2255 * remote.c (cleanup_sigint_signal_handler): Rename the declaration
2256 to ...
2257 (async_cleanup_sigint_signal_handler): ... this.
2258 (initialize_sigint_signal_handler): Remove declaration.
2259 (handle_remote_sigint): Rename the declaration to ...
2260 (async_handle_remote_sigint): ... this.
2261 (handle_remote_sigint_twice): Rename the declaration to ...
2262 (async_handle_remote_sigint_twice): ... this.
2263 (async_remote_interrupt, async_remote_interrupt_twice)
2264 (remote_interrupt): Remove the declarations.
2265 (remote_interrupt_twice): Rename the declaration ...
2266 (sync_remote_interrupt_twice): ... this.
2267 (sigint_remote_twice_token): Rename the variable to ...
2268 (async_sigint_remote_twice_token): ... this.
2269 (sigint_remote_token): Rename the variable to ...
2270 (async_sigint_remote_token): ... this.
2271 (initialize_sigint_signal_handler): Rename the function to ...
2272 (async_initialize_sigint_signal_handler): ... this. Update the name
2273 inside.
2274 (handle_remote_sigint): Rename the function to ...
2275 (async_handle_remote_sigint): ... this. Update the names inside.
2276 (handle_remote_sigint_twice): Rename the function to ...
2277 (async_handle_remote_sigint_twice): ... this. Update the names inside.
2278 (cleanup_sigint_signal_handler): Rename the function to ...
2279 (async_cleanup_sigint_signal_handler): ... this.
2280 (remote_interrupt): Rename the function to ...
2281 (sync_remote_interrupt): this. Update the names inside.
2282 (remote_interrupt_twice): Rename the function to ...
2283 (sync_remote_interrupt_twice): this. Update the names inside.
2284 (remote_terminal_inferior, remote_terminal_ours, remote_wait_as)
2285 (_initialize_remote): Update the names inside.
2286
2287 2013-08-02 Tom Tromey <tromey@redhat.com>
2288
2289 PR symtab/15719:
2290 * breakpoint.c (update_watchpoint, watchpoint_check)
2291 (watch_command_1): Update.
2292 * eval.c (fetch_subexp_value): Add "preserve_errors"
2293 parameter.
2294 * ppc-linux-nat.c (check_condition): Update.
2295 * value.h (fetch_subexp_value): Update.
2296
2297 2013-08-02 Andrew Burgess <aburgess@broadcom.com>
2298
2299 * mi/mi-interp.c (mi_interpreter_resume): Remove call to
2300 add_file_handler.
2301
2302 2013-08-01 Doug Evans <dje@google.com>
2303
2304 PR symtab/15691
2305 * dwarf2read.c (struct dwarf2_per_cu_data): New member tu_read.
2306 (fill_in_sig_entry_from_dwo_entry): Reorganize asserts.
2307 Add assert of sig_entry->dwo_unit == NULL.
2308 (lookup_dwo_signatured_type): Don't assign TU to a DWO if the TU
2309 had already been read.
2310 (read_signatured_type): Set per_cu.tu_read.
2311
2312 PR symtab/15695
2313 * valops.c (value_struct_elt): Add missing call to check_typedef.
2314 (value_find_oload_method_list): Ditto.
2315
2316 * symtab.c (do_free_search_symbols_cleanup): Change arg to,
2317 effectively, struct symbol_search **.
2318 (make_cleanup_free_search_symbols): Change arg to struct
2319 symbol_search **. All callers updated.
2320 (compare_search_syms): Compare symtab file name and block as well.
2321 (search_symbols_equal): New function.
2322 (sort_search_symbols_remove_dups): Renamed from sort_search_symbols.
2323 New args new_head, new_tail. Result is now void. Remove dups after
2324 sorting the symbols.
2325 (search_symbols): Sort all found symbols once, after all have been
2326 found, and remove duplicates. Simplify cleanup tracking of result.
2327 * symtab.h (make_cleanup_free_search_symbols): Update prototype.
2328
2329 Further workarounds for binutils/15021.
2330 * dwarf2read.c (recursively_compute_inclusions): Change type of result
2331 parameter to VEC (symtab_ptr) **. New parameter all_type_symtabs.
2332 Watch for duplicate symtabs coming from type units.
2333 (compute_symtab_includes): Update call to
2334 recursively_compute_inclusions. Build vector of included symtabs
2335 instead of per_cus.
2336 * symtab.h (symtab_ptr): New typedef.
2337 (DEF_VEC_P (symtab_ptr)): New VEC type.
2338 * linespec.c (symtab_p): Delete. All uses updated to use symtab_ptr
2339 instead.
2340
2341 2013-08-01 Andrew Burgess <aburgess@broadcom.com>
2342
2343 * cli/cli-script.c (script_from_file): Remove use of
2344 error_pre_print.
2345 * main.c (captured_main): Remove use of error_pre_print and
2346 quit_pre_print.
2347 * utils.c (error_pre_print, quit_pre_print): Remove.
2348 * utils.h (error_pre_print, quit_pre_print): Likewise.
2349
2350 2013-08-01 Yao Qi <yao@codesourcery.com>
2351
2352 * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Parse argv
2353 with mi_getopt.
2354 (mi_cmd_stack_list_variables): Likewise.
2355
2356 2013-07-31 Andrew Burgess <aburgess@broadcom.com>
2357
2358 * exceptions.c (deprecated_throw_reason): Remove.
2359 * exceptions.h (deprecated_throw_reason): Remove.
2360
2361 2013-07-31 Andrew Burgess <aburgess@broadcom.com>
2362
2363 * remote-mips.c (mips_error): Replace use of
2364 deprecated_throw_reason with throw_verror. Use the error message
2365 passed to mips_error as the error message for throw_verror.
2366
2367 2013-07-31 Andrew Burgess <aburgess@broadcom.com>
2368
2369 * monitor.c (monitor_interrupt_query): Replace use of
2370 deprecated_throw_reason with quit.
2371 * nto-procfs.c (interrupt_query): Likewise.
2372 * remote-fileio.c (remote_fileio_sig_exit): Likewise.
2373 * remote-mips.c (mips_kill): Likewise.
2374 * remote.c (interrupt_query): Likewise.
2375
2376 2013-07-31 Andrew Burgess <aburgess@broadcom.com>
2377
2378 * utils.c (internal_verror): Replace use of deprecated_throw_reason
2379 with call to fatal.
2380
2381 2013-07-31 Pedro Alves <pedro@codesourcery.com>
2382 Yao Qi <yao@codesourcery.com>
2383
2384 * tracepoint.c (trace_dump_command): Select the current frame.
2385
2386 2013-07-30 Doug Evans <dje@google.com>
2387
2388 * dwarf2read.c (process_queue): Add type signature to debug output.
2389
2390 2013-07-30 Andrew Burgess <aburgess@broadcom.com>
2391
2392 * value.c (value_fetch_lazy): Mark optimized out values as such
2393 rather than raising an error.
2394
2395 2013-07-30 Andrew Burgess <aburgess@broadcom.com>
2396
2397 * value.c (value_fetch_lazy): Ensure parent value is not lazy
2398 before checking which bits of the parent, not the child, value are
2399 valid.
2400
2401 2013-07-30 Muhammad Bilal <mbilal@codesorcery.com>
2402
2403 PR gdb/15715
2404 * top.c: Include "filenames.h".
2405 (set_history_filename): New function.
2406 (init_main): Install it as set hook of the "set history filename"
2407 command.
2408
2409 2013-07-30 Sanimir Agovic <sanimir.agovic@intel.com>
2410
2411 * dwarf2read.c (dwarf2_get_ref_die_offset): Constify struct
2412 attribute parameter.
2413 (dwarf2_const_value_data): Constify struct attribute parameter.
2414 (dwarf2_const_value): Constify struct attribute parameter.
2415 (dwarf2_const_value_attr): Constify struct attribute parameter.
2416 (lookup_die_type): Constify struct attribute parameter.
2417 (dwarf2_get_attr_constant_value): Constify struct attribute parameter.
2418 (follow_die_ref_or_sig): Constify struct attribute parameter.
2419 (follow_die_ref): Constify struct attribute parameter.
2420 (follow_die_sig): Constify struct attribute parameter.
2421 (get_DW_AT_signature_type): Constify struct attribute parameter.
2422 (get_type_unit_group): Constify struct attribute parameter.
2423 (fill_in_loclist_baton): Constify struct attribute parameter.
2424 (dwarf2_symbol_mark_computed): Constify struct attribute parameter.
2425 (type_unit_group): Constify struct attribute parameter.
2426
2427 2013-07-30 Sanimir Agovic <sanimir.agovic@intel.com>
2428
2429 * dwarf2read.c (attr_form_is_block): Make argument const.
2430 (attr_form_is_section_offset): Make argument const.
2431 (attr_form_is_constant): Make argument const.
2432 (attr_form_is_ref): Make argument const.
2433
2434 2013-07-30 Sanimir Agovic <sanimir.agovic@intel.com>
2435
2436 * dwarf2read.c (attr_is_ref): Rename to attr_form_is_ref.
2437 All uses updated.
2438 (attr_form_is_ref): Moved below attr_form_is_constant.
2439
2440 2013-07-29 Doug Evans <dje@google.com>
2441
2442 * main.c (captured_command_loop): Tweak comment.
2443
2444 * target.c (target_async_permitted_1): Fix comment.
2445
2446 * symtab.c (iterate_over_some_symtabs): Add comment.
2447
2448 * symtab.c (iterate_over_some_symtabs): Fix indentation.
2449
2450 2013-07-27 Yao Qi <yao@codesourcery.com>
2451
2452 * NEWS: Mention that GDBserver now supports hardware
2453 watchpoints on the MIPS GNU/Linux target.
2454
2455 2013-07-27 Yao Qi <yao@codesourcery.com>
2456
2457 * Makefile.in (HFILES_NO_SRCDIR): Add
2458 common/mips-linux-watch.h.
2459 (mips-linux-watch.o): New rule.
2460 * common/mips-linux-watch.c: New.
2461 * common/mips-linux-watch.h: New.
2462 * config/mips/linux.mh (NATDEPFILES): Add mips-linux-watch.o
2463 * mips-linux-nat.c: Include mips-linux-watch.h.
2464 (W_BIT, R_BIT, I_BIT, W_MASK, R_MASK, I_MASK, IRW_MASK): Move
2465 to common/mips-linux-watch.h.
2466 (MAX_DEBUG_REGISTER): Likewise.
2467 (enum pt_watch_style): Likewise.
2468 (struct mips32_watch_regs): Likewise.
2469 (struct mips64_watch_regs): Likewise.
2470 (struct pt_watch_regs): Likewise.
2471 (struct mips_watchpoint): Likewise.
2472 (mips_linux_watch_get_irw_mask): Move to
2473 common/mips-linux-watch.c.
2474 (get_reg_mask, mips_linux_watch_get_num_valid): Likewise.
2475 (mips_linux_watch_get_watchlo): Likewise.
2476 (mips_linux_watch_set_watchlo): Likewise.
2477 (mips_linux_watch_get_watchhi): Likewise.
2478 (mips_linux_watch_set_watchhi): Likewise.
2479 (mips_linux_read_watch_registers): Likewise.
2480 (mips_linux_watch_type_to_irw): Likewise.
2481 (mips_linux_stopped_data_address, fill_mask): Likewise.
2482 (mips_linux_watch_try_one_watch): Likewise.
2483 (mips_linux_watch_populate_regs): Likewise.
2484
2485 2013-07-27 Yao Qi <yao@codesourcery.com>
2486
2487 * mips-linux-nat.c (get_irw_mask): Rename to ...
2488 (mips_linux_watch_get_irw_mask): ... this. Rename parameter
2489 'set' to 'n'. Update function comment. All callers changed.
2490 (get_reg_mask): Rename parameter 'set' to 'n'. Update
2491 function comment. All callers changed.
2492 (get_num_valid): Rename to ...
2493 (mips_linux_watch_get_num_valid): ... this. Rename parameter
2494 'set' to 'n'. Update function comment. All callers changed.
2495 (get_watchlo): Rename to ...
2496 (mips_linux_watch_get_watchlo): ... this. Rename parameter
2497 'set' to 'n'. Update function comment. All callers changed.
2498 (set_watchlo): Rename to ...
2499 (mips_linux_watch_set_watchlo): ... this. Rename parameter
2500 'set' to 'n'. Update function comment. All callers changed.
2501 (get_watchhi): Rename to ...
2502 (mips_linux_watch_get_watchhi): ... this. Update function
2503 comment. All callers changed.
2504 (set_watchhi): Rename to ...
2505 (mips_linux_watch_set_watchhi): ... this. Update function
2506 comment. All callers changed.
2507 (mips_linux_read_watch_registers): Update function comment.
2508 Add new parameters 'lwpid', 'watch_readback', and
2509 'watch_readback_valid'. Update.
2510 (type_to_irw): Rename to ...
2511 (mips_linux_watch_type_to_irw): ... this. Update function
2512 comment. All callers changed.
2513 (fill_mask): Update function comment.
2514 (try_one_watch): Rename to ...
2515 (mips_linux_watch_try_one_watch): ... this. Change the type
2516 of parameter 'irw' from 'unsigned' to 'uint32_t'.
2517 (populate_regs_from_watches): Rename to ...
2518 (mips_linux_watch_populate_regs): ... this. Add parameter
2519 'current_watches'. All callers changed.
2520
2521 2013-07-27 Yao Qi <yao@codesourcery.com>
2522
2523 * mips-linux-nat.c (MAX_DEBUG_REGISTER): Move it earlier in
2524 the code.
2525 (PTRACE_SET_WATCH_REGS, enum pt_watch_style): Remove.
2526 (struct mips32_watch_regs, struct mips64_watch_regs): Remove.
2527 (struct pt_watch_regs): Likewise.
2528 [!PTRACE_GET_WATCH_REGS] (PTRACE_SET_WATCH_REGS): New macro.
2529 [!PTRACE_GET_WATCH_REGS] (enum pt_watch_style): New.
2530 [!PTRACE_GET_WATCH_REGS] (struct mips32_watch_regs): New.
2531 [!PTRACE_GET_WATCH_REGS] (struct mips64_watch_regs): New.
2532 [!PTRACE_GET_WATCH_REGS] (struct pt_watch_regs): New.
2533
2534 2013-07-27 Yao Qi <yao@codesourcery.com>
2535
2536 * breakpoint.h: Include break-common.h.
2537 (enum target_hw_bp_type): Move to ...
2538 * common/break-common.h: ... here. New.
2539
2540 2013-07-26 Cyril Nikolaev <cyril@nichtverstehen.de>
2541
2542 * inflow.c (terminal_init_inferior_with_pgrp): Save inferior
2543 process group regardless of having tty on stdin.
2544
2545 2013-07-25 Doug Evans <dje@google.com>
2546
2547 * linux-fork.h (detach_fork): Delete.
2548
2549 2013-07-25 Tom Tromey <tromey@redhat.com>
2550
2551 PR remote/15256, PR remote/15266:
2552 * bfd-target.c (target_bfd_reopen): Initialize to_magic.
2553 * monitor.c (monitor_detach): Use unpush_target.
2554 * remote-m32r-sdi.c (m32r_detach): Use unpush_target.
2555 * remote-mips.c (mips_detach): Use unpush_target. Don't
2556 call mips_close.
2557 * remote-sim.c (gdbsim_detach): Use unpush_target.
2558 * target.c (pop_target): Remove.
2559 (pop_all_targets_above): Don't call target_close.
2560 (target_close): Assert that the target is unpushed.
2561 * target.h (pop_target): Don't declare.
2562 * tracepoint.c (tfile_open): Use unpush_target.
2563
2564 2013-07-25 Tom Tromey <tromey@redhat.com>
2565
2566 * linux-thread-db.c (init_thread_db_ops): Call
2567 complete_target_initialization.
2568 (_initialize_thread_db): Don't call add_target.
2569 * target.c (complete_target_initialization): New function.
2570 (add_target_with_completer): Call it.
2571 * target.h (complete_target_initialization): Declare.
2572
2573 2013-07-25 Mark Kettenis <kettenis@gnu.org>
2574
2575 * hppa-tdep.h (enum hppa_regnum): Add members for all space registers.
2576 * hppaobsd-tdep.c (HPPAOBSD_SIZEOF_GREGS): Add comment.
2577 (HPPANBSD_SIZEOF_GREGS): New define.
2578 (hppaobsd_supply_gregset): Handle additional registers.
2579 * hppabsd-nat.c (hppabsd_gregset_supplies_p): Adjust to indicate
2580 we provide more registers now.
2581 (hppabsd_supply_gregset): Supply additional registers.
2582 (hppabsd_collect_gregset): Collect additional registers.
2583
2584 2013-07-25 Mark Kettenis <kettenis@gnu.org>
2585
2586 * hppabsd-tdep.c: Include "dwarf2-frame.h".
2587 (hppabsd_dwarf2_frame_init_reg): New function.
2588 (hppabsd_init_abi): Hook in the DWARF CFI frame unwinder.
2589
2590 2013-07-25 Andrew Burgess <aburgess@broadcom.com>
2591
2592 * mi/mi-main.c (output_register): Make MI 'r' format use standard
2593 'z' format code. Remove error for optimized out values, standard
2594 code will handle these fine.
2595
2596 2013-07-25 Andrew Burgess <aburgess@broadcom.com>
2597
2598 * NEWS: Mention new 'z' formatter.
2599 * printcmd.c (print_scalar_formatted): Add new 'z' formatter.
2600 (_initialize_printcmd): Mention 'z' formatter in help text of the
2601 'x' command.
2602
2603 2013-07-24 Maciej W. Rozycki <macro@codesourcery.com>
2604
2605 * mips-tdep.c (micromips_deal_with_atomic_sequence): Correct
2606 formatting.
2607
2608 2013-07-24 Sergio Durigan Junior <sergiodj@redhat.com>
2609
2610 * breakpoint.c (create_longjmp_master_breakpoint): Check if probe
2611 interface can evaluate arguments. Fallback to the old mode if it
2612 cannot.
2613 (create_exception_master_breakpoint): Likewise.
2614 * elfread.c (elf_can_evaluate_probe_arguments): New function.
2615 (struct sym_probe_fns elf_probe_fns): Export function above to the
2616 probe interface.
2617 * probe.c (can_evaluate_probe_arguments): New function.
2618 * probe.h (struct probe_ops) <can_evaluate_probe_arguments>: New
2619 function pointer.
2620 (can_evaluate_probe_arguments): New function prototype.
2621 * solib-svr4.c (svr4_create_solib_event_breakpoints): Check if
2622 probe interface can evaluate arguments. Fallback to the old mode
2623 if it cannot.
2624 * stap-probe.c (stap_get_probe_argument_count): Check if probe
2625 interface can evaluate arguments. Warning the user if it cannot.
2626 (stap_can_evaluate_probe_arguments): New function.
2627 (struct probe_ops stap_probe_ops): Export function above to the
2628 probe interface.
2629 * symfile.h (struct sym_probe_fns) <can_evaluate_probe_arguments>:
2630 New function pointer.
2631
2632 2013-07-24 Luis Machado <lgustavo@codesourcery.com>
2633
2634 * Makefile.in (SFILES): Add common/target-common.c.
2635 Add common/target-common.h to headers.
2636 (COMMON_OBS): Add target-common.o.
2637 (target-common.o): New target.
2638 * linux-nat.h (resume_kind): Move to common/target-common.h.
2639 * target.c (target_waitstatus_to_string): Move to
2640 common/target-common.c.
2641 * target.h: Include target-common.h.
2642 (target_waitkind): Move to common/target-common.h.
2643 (target_waitstatus): Likewise.
2644 (TARGET_WNOHANG): Likewise.
2645 * common/target-common.c: New file.
2646 * common/target-common.h: New file.
2647
2648 2013-07-24 Doug Evans <dje@google.com>
2649
2650 * dwarf2read.c (lookup_dwo_cutu): Change missing DWO complaint to
2651 a warning.
2652
2653 2013-07-23 Yao Qi <yao@codesourcery.com>
2654
2655 * i386-tdep.c (i386_in_stack_tramp_p): Remove unused
2656 parameter 'gdbarch'.
2657 (i386_stack_tramp_frame_sniffer): Caller update.
2658 * i386-linux-tdep.c (i386_linux_core_read_xcr0): Remove
2659 parameter 'gdbarch' and 'target'.
2660 (i386_linux_core_read_description): Caller update.
2661 * amd64-linux-tdep.c (amd64_linux_core_read_description):
2662 Likewise.
2663 * i386-linux-tdep.h (i386_linux_core_read_xcr0): Update
2664 declaration.
2665
2666 2013-07-23 Tom Tromey <tromey@redhat.com>
2667
2668 * dwarf2read.c (init_cutu_and_read_dies): Revert patch from
2669 2013-07-22.
2670
2671 2013-07-22 Doug Evans <dje@google.com>
2672
2673 * exec.h (remove_target_sections): Delete arg abfd.
2674 * exec.c (exec_close): Update call to remove_target_sections.
2675 (remove_target_sections): Delete arg abfd.
2676 * solib.c (update_solib_list): Ditto.
2677 (reload_shared_libraries_1): Ditto.
2678 (clear_solib): Ditto, and unconditionally call remove_target_sections.
2679 * target.h (struct target_section): Rename key to owner.
2680 All uses updated.
2681
2682 2013-07-22 Tom Tromey <tromey@redhat.com>
2683
2684 * solib-som.c (som_open_symbol_file_object): Call do_cleanups.
2685
2686 2013-07-22 Tom Tromey <tromey@redhat.com>
2687
2688 * dwarf2read.c (init_cutu_and_read_dies): Remove 'free_cu_cleanup'.
2689 Simplify cleanup handling.
2690
2691 2013-07-22 Tom Tromey <tromey@redhat.com>
2692
2693 * dwarf2read.c (dwarf_decode_line_header): Call do_cleanups
2694 on all return paths.
2695
2696 2013-07-22 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
2697
2698 * ppc-linux-nat.c (PPC_DEBUG_FEATURE_DATA_BP_DAWR): New define.
2699 (ppc_linux_region_ok_for_hw_watchpoint): Add checking to use the new
2700 DAWR interface for longer ranges hardware watchpoint (up to 512 bytes).
2701
2702 2013-07-22 Phil Muldoon <pmuldoon@redhat.com>
2703
2704 * top.c (print_gdb_version): Add help, apropos description and
2705 url to online documentation.
2706
2707 2013-07-19 Hui Zhu <hui@codesourcery.com>
2708
2709 PR gdb/15692
2710 * mi/mi-cmd-break.c (mi_argv_to_format): Handle double quotes.
2711
2712 2013-07-19 Yao Qi <yao@codesourcery.com>
2713
2714 * target.c (update_current_target): Change the default action
2715 of 'to_traceframe_info' from tcomplain to return_zero.
2716 * target.h (struct target_ops) <to_traceframe_info>: Add more
2717 comments.
2718 * valops.c (read_value_memory): Call
2719 traceframe_available_memory unconditionally.
2720
2721 2013-07-18 Yao Qi <yao@codesourcery.com>
2722
2723 * coffread.c (coff_symfile_read): Iterate over minimal symbols,
2724 if the name is prefixed by "__imp_" or "_imp_", look for minimal
2725 symbol without prefix. If found, set its type to
2726 'mst_solib_trampoline'.
2727
2728 2013-07-17 Doug Evans <dje@google.com>
2729
2730 * NEWS: Mention "set print raw frame-arguments".
2731 * gdbcmd.h (setprintrawlist, showprintrawlist): Declare.
2732 * stack.c (print_raw_frame_arguments): New static global.
2733 (print_frame_arg): Set opts.raw from print_raw_frame_arguments.
2734 (_initialize_stack): New command "set/show print raw frame-arguments".
2735 * valprint.c (setprintrawlist, showprintrawlist): New globals.
2736 (set_print_raw, show_print_raw): New functions.
2737 (_initialize_valprint): New prefix command "set/show print raw".
2738 * valprint.h (value_print_options): Improve comments.
2739
2740 * cli/cli-cmds.c (init_cmd_lists): Delete unnecessary initialization
2741 of all *list variables.
2742
2743 * gdbcmd.h (togglelist): Delete.
2744 * cli/cli-cmds.c (togglelist): Delete.
2745 (init_cmd_lists): Update.
2746 * cli/cli-cmds.h (togglelist): Delete.
2747
2748 2013-07-17 Tom Tromey <tromey@redhat.com>
2749
2750 * dwarf2read.c (dwarf2_per_objfile_free): Clear
2751 dwarf2_per_objfile.
2752
2753 2013-07-16 Doug Evans <dje@google.com>
2754
2755 * nto-tdep.c (nto_relocate_section_addresses): Update,
2756 target_section.bfd deleted.
2757 * ppc64-tdep.c (ppc64_convert_from_func_ptr_addr): Ditto.
2758 * s390-tdep.c (s390_load): Ditto.
2759 * solib-aix.c (solib_aix_relocate_section_addresses): Ditto.
2760
2761 2013-07-16 Andrew Burgess <aburgess@broadcom.com>
2762
2763 * common/format.c (parse_format_string): Add checks for NULL
2764 character before calling strchr.
2765
2766 2013-07-16 Doug Evans <dje@google.com>
2767
2768 * solist.h (target_so_ops.find_and_open_solib): Clarify usage of
2769 temp_pathname argument.
2770 * nto-tdep.c (nto_find_and_open_solib): Fix setting of temp_pathname
2771 when opening the file fails.
2772
2773 * target.h (struct target_section): Delete member bfd.
2774 All users updated to use the_bfd_section->owner instead.
2775 * exec.c (add_to_section_table): Assert bfd is expected value.
2776 Remove initialization of target_section.bfd.
2777 (remove_target_sections): Update.
2778 (section_table_available_memory): Update.
2779 (section_table_xfer_memory_partial): Update.
2780 (print_section_info): Update.
2781 (exec_set_section_address): Update.
2782 * record-full.c (record_full_core_xfer_partial): Update.
2783 * solib-svr4.c (svr4_relocate_section_addresses): Update.
2784 * solib-target.c (solib_target_relocate_section_addresses): Update.
2785 * symfile.c (build_section_addr_info_from_section_table): Update.
2786 * target.c (memory_xfer_live_readonly_partial): Update.
2787 (memory_xfer_partial_1): Update.
2788
2789 2013-07-15 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
2790
2791 * ppc-linux-nat.c: Since the new PowerPC specific ptrace interface is
2792 now available for embedded (BookE) and server (BookS) processors,
2793 correct mentions of 'booke' and adjust comments accordingly in order to
2794 avoid confusion. Rename struct 'booke_debug_info' to 'hwdebug_info'.
2795 (have_ptrace_booke_interface): Rename function and variable
2796 'have_ptrace_booke_interface' to 'have_ptrace_hwdebug_interface'.
2797 Rename struct 'booke_debug_info' to 'hwdebug_info'. Update all uses.
2798 (booke_cmp_hw_point): Rename function 'booke_cmp_hw_point' to
2799 'hwdebug_point_cmp'. Update all uses.
2800 (booke_find_thread_points_by_tid): Rename function
2801 'booke_find_thread_points_by_tid' to
2802 'hwdebug_find_thread_points_by_tid'. Update all uses.
2803 (booke_insert_point): Rename function 'booke_insert_point' to
2804 'hwdebug_insert_point'. Update all uses.
2805 (booke_remove_point): Rename function 'booke_remove_point' to
2806 'hwdebug_remove_point'. Update all uses.
2807
2808 2013-07-15 Maciej W. Rozycki <macro@codesourcery.com>
2809
2810 * mips-tdep.c (mips_gdbarch_init): Replace hardcoded magic
2811 numbers with enum values.
2812
2813 2013-07-15 Ali Anwar <ali_anwar@codesourcery.com>
2814
2815 PR threads/13217
2816 * thread.c (thread_apply_all_command): Check for valid threads
2817 and thread count.
2818 (thread_array_cleanup): New struct.
2819 (set_thread_refcount): New function.
2820
2821 2013-07-11 Andrew Burgess <aburgess@broadcom.com>
2822
2823 * infcmd.c (default_print_one_register_info): Reuse function
2824 print_hex_chars.
2825
2826 2013-07-10 Tom Tromey <tromey@redhat.com>
2827
2828 * Makefile.in (GDB_WARN_CFLAGS_NO_DEFS, ADA_EXP_C): New macros.
2829 (ada-exp.o): New target.
2830
2831 2013-07-10 Sergio Durigan Junior <sergiodj@redhat.com>
2832
2833 * mt-tdep.c (mt_registers_info): Call
2834 get_no_prettyformat_print_options instead of
2835 get_raw_print_options (regression by last patch from Doug
2836 Evans).
2837
2838 2013-07-09 Pedro Alves <palves@redhat.com>
2839
2840 Checked in by Joel Brobecker <brobecker@adacore.com>.
2841 * ada-lang.c (coerce_unspec_val_to_type): Use
2842 value_optimized_out_const.
2843 * value.c (value_optimized_out_const): New function.
2844 * value.h (value_optimized_out_const): New declaration.
2845
2846 2013-07-09 Doug Evans <dje@google.com>
2847
2848 * defs.h (enum val_prettyformat): Renamed from val_prettyprint.
2849 Enum values rename as well. All uses updated.
2850 * valprint.h (value_print_options): Rename member pretty to
2851 pretty format. Rename member prettyprint_arrays to
2852 prettyformat_arrays. Rename member prettyprint_structs to
2853 prettyformat_structs. All uses updated.
2854 (get_no_prettyformat_print_options): Renamed from
2855 get_raw_print_options.
2856 * valprint.c (get_no_prettyformat_print_options): Renamed from
2857 get_raw_print_options. All callers updated.
2858 (show_prettyformat_structs): Renamed from show_prettyprint_structs.
2859 All callers updated.
2860 (show_prettyformat_arrays): Renamed from show_prettyprint_arrays.
2861 All callers updated.
2862 (_initialize_valprint): Improve help text for "set print pretty" and
2863 "set print arrays".
2864
2865 2013-07-09 Andrew Burgess <aburgess@broadcom.com>
2866
2867 * value.c (value_bits_valid): Revert previous change, and change
2868 by Pedro on 2013-07-04, due to regressions in
2869 gdb.dwarf2/implptr.exp and gdb.dwarf2/pieces.exp.
2870
2871 2013-07-08 Andrew Burgess <aburgess@broadcom.com>
2872 Pedro Alves <palves@redhat.com>
2873
2874 * value.c (value_bits_valid): If the value is not lval_computed
2875 or has no check validity handler then the answer is the
2876 optimized_out flag, otherwise defer to the handler.
2877
2878 2013-07-06 Eli Zaretskii <eliz@gnu.org>
2879
2880 * top.c (print_gdb_configuration): Explain in output of
2881 --configuration what does "relocatable" mean.
2882
2883 * main.c (print_gdb_help): Regroup options in the --help text.
2884 See http://sourceware.org/ml/gdb-patches/2013-04/msg00362.html for
2885 the relevant discussions.
2886
2887 2013-07-06 Yao Qi <yao@codesourcery.com>
2888
2889 * breakpoint.h (struct breakpoint_ops) <create_breakpoints_sal>:
2890 Remove parameter 'lsal'.
2891 * breakpoint.c (create_breakpoint): Move local variable 'lsal'
2892 to inner block. Caller update.
2893 (base_breakpoint_create_breakpoints_sal): Update.
2894 (bkpt_create_breakpoints_sal): Likewise.
2895 (tracepoint_create_breakpoints_sal): Likewise.
2896 (strace_marker_create_breakpoints_sal): Get 'lsal' from the
2897 element 0 of vector 'canonical->sals'.
2898
2899 2013-07-05 Luis Machado <lgustavo@codesourcery.com>
2900
2901 * rs6000-tdep.c (rs6000_stab_reg_to_regnum): Return the real
2902 register number instead of the pseudo register one.
2903 (rs6000_dwarf2_reg_to_regnum): Likewise.
2904
2905 2013-07-04 Pedro Alves <palves@redhat.com>
2906
2907 * findvar.c (value_of_register): Use allocate_optimized_out_value
2908 if the register has been optimized out, instead of
2909 set_value_optimized_out.
2910 * frame-unwind.c (frame_unwind_got_optimized): Use
2911 allocate_optimized_out_value.
2912
2913 2013-07-04 Pedro Alves <palves@redhat.com>
2914
2915 * value.c (value_bits_valid): If the value is not lval_computed,
2916 or doesn't have a check_validity hook, assume the value is entirely
2917 valid.
2918
2919 2013-07-04 Andrew Burgess <aburgess@broadcom.com>
2920
2921 * stack.c (read_frame_arg): No longer fetch lazy values.
2922 * value.c (value_optimized_out): If the value is not already
2923 marked optimized out, and is lazy then fetch it.
2924 (value_primitive_field): Move optimized out check to later in the
2925 function, after we have loaded any lazy values.
2926 (value_fetch_lazy): Use optimized out flag directly rather than
2927 calling optimized_out method.
2928
2929 2013-07-04 Andrew Burgess <aburgess@broadcom.com>
2930
2931 * valops.c: Don't include "user-regs.h".
2932 (value_fetch_lazy): Moved to value.c.
2933 * value.c: Include "user-regs.h".
2934 (value_fetch_lazy): Moved from valops.c.
2935
2936 2013-07-04 Yao Qi <yao@codesourcery.com>
2937
2938 Revert:
2939 2013-06-27 Yao Qi <yao@codesourcery.com>
2940
2941 * common/create-version.sh: Update comments. Handle the case
2942 that TARGET_ALIAS is empty.
2943
2944 2013-07-03 Pedro Alves <palves@redhat.com>
2945
2946 * Makefile.in (config.status): Depend on development.sh.
2947 (aclocal_m4_deps): Add libmcheck.m4.
2948 * acinclude.m4: Include libmcheck.m4.
2949 * configure.ac: Source development.sh instead of setting
2950 'development' here. --enable-libmcheck/--disable-libmcheck code
2951 factored out to GDB_AC_LIBMCHECK. Run it.
2952 * development.sh: New file.
2953 * libmcheck.m4: New file.
2954 * configure: Regenerate.
2955
2956 2013-07-02 Tom Tromey <tromey@redhat.com>
2957
2958 * contrib/ari/update-web-ari.sh: Update for version.in change.
2959
2960 2013-07-02 Tom Tromey <tromey@redhat.com>
2961
2962 * common/ptid.h: Comment fixes.
2963
2964 2013-07-01 Tom Tromey <tromey@redhat.com>
2965
2966 * dwarf2read.c (dwarf2_get_dwz_file): Return NULL if
2967 .gnu_debugaltlink not found. Use bfd_get_alt_debug_link_info.
2968 (dwarf2_read_index, create_all_comp_units): Update.
2969
2970 2013-07-01 Tom Tromey <tromey@redhat.com>
2971
2972 * configure.ac (build_warnings): Add -Wold-style-definition.
2973 * configure: Rebuild.
2974 * machoread.c (_initialize_machoread): Use "(void)".
2975 * macrocmd.c (macro_inform_no_debuginfo): Fix formatting;
2976 use "(void)".
2977
2978 2013-07-01 Tom Tromey <tromey@redhat.com>
2979
2980 * configure.ac (build_warnings): Add -Wold-style-declaration.
2981 * configure: Rebuild.
2982 * dsrec.c (make_srec): Use "static const", not "const static".
2983 * h8300-tdep.c (h8300_breakpoint_from_pc): Use "static const",
2984 not "const static".
2985 * mi/mi-parse.c (mi_no_values, mi_simple_values, mi_all_values):
2986 Use "static const", not "const static".
2987 * mn10300-tdep.c (mn10300_breakpoint_from_pc): Use "static const",
2988 not "const static".
2989 * moxie-tdep.c (moxie_breakpoint_from_pc): Use "static const",
2990 not "const static".
2991 * rs6000-tdep.c (rs6000_breakpoint_from_pc): Use "static const",
2992 not "const static".
2993 * v850-tdep.c (v850_breakpoint_from_pc): Use "static const",
2994 not "const static".
2995 (v850_dbtrap_breakpoint_from_pc): Likewise.
2996 * xstormy16-tdep.c (xstormy16_breakpoint_from_pc): Use "static const",
2997 not "const static".
2998
2999 2013-07-01 Tom Tromey <tromey@redhat.com>
3000
3001 * configure.ac (build_warnings): Add -Wmissing-parameter-type.
3002 * configure: Rebuild.
3003
3004 2013-07-01 Pedro Alves <palves@redhat.com>
3005
3006 * defs.h: Include "pathmax.h".
3007 * utils.c: Don't include sys/param.h.
3008 (gdb_realpath): Remove code that checks for MAXPATHLEN.
3009 * solib-ia64-hpux.c (ia64_hpux_handle_load_event): Use PATH_MAX
3010 instead of MAXPATHLEN.
3011 * solib-sunos.c: Don't include sys/param.h.
3012 * xcoffread.c: Don't include sys/param.h.
3013 * bsd-kvm.c: Don't include sys/param.h.
3014 * darwin-nat.c: Don't include sys/param.h.
3015 (darwin_pid_to_exec_file): Use PATH_MAX instead of MAXPATHLEN.
3016 * darwin-nat-info.c: Don't include sys/param.h.
3017 * fbsd-nat.c (fbsd_pid_to_exec_file): Use PATH_MAX instead of
3018 MAXPATHLEN.
3019 * i386obsd-nat.c: Don't include sys/param.h.
3020 * inf-child.c: Don't include sys/param.h.
3021 (inf_child_fileio_readlink): Use PATH_MAX instead of MAXPATHLEN.
3022 * linux-fork.c: Don't include sys/param.h.
3023 (fork_save_infrun_state): Use PATH_MAX instead of MAXPATHLEN.
3024 * linux-nat.c: Don't include sys/param.h.
3025 (linux_child_pid_to_exec_file, linux_proc_pending_signals)
3026 (linux_proc_pending_signals): Use PATH_MAX instead of MAXPATHLEN.
3027 * m68klinux-nat.c: Don't include sys/param.h.
3028 * nbsd-nat.c: Don't include sys/param.h.
3029 (nbsd_pid_to_exec_file): Use PATH_MAX instead of MAXPATHLEN.
3030 * ppc-linux-nat.c: Don't include sys/param.h.
3031 * rs6000-nat.c: Don't include sys/param.h.
3032 * spu-linux-nat.c. Don't include sys/param.h.
3033 * windows-nat.c: Don't include sys/param.h.
3034 * xtensa-linux-nat.c: Don't include sys/param.h.
3035 * config/i386/nm-fbsd.h: Don't include sys/param.h.
3036
3037 2013-07-01 Pedro Alves <palves@redhat.com>
3038
3039 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add pathmax.
3040 * gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/pathmax.m4.
3041 * gnulib/aclocal.m4: Regenerate.
3042 * gnulib/config.in: Regenerate.
3043 * gnulib/configure: Regenerate.
3044 * gnulib/import/pathmax.h: New file.
3045 * gnulib/import/Makefile.am: Regenerate.
3046 * gnulib/import/Makefile.in: Regenerate.
3047 * gnulib/import/m4/gnulib-cache.m4: Regenerate.
3048 * gnulib/import/m4/gnulib-comp.m4: Regenerate.
3049 * gnulib/import/m4/pathmax.m4: New file.
3050
3051 2013-07-01 Pedro Alves <palves@redhat.com>
3052
3053 * configure.ac (GDBINIT): Define, depending on host.
3054 * go32-nat.c (init_go32_ops): Don't override gdbinit here.
3055 * top.c (PATH_MAX): Delete fallback definition.
3056 (GDBINIT_FILENAME): Delete.
3057 (gdbinit): Reimplement as const char array set to the GDBINIT
3058 string constant.
3059 * top.h (gdbinit): Make const.
3060 * configure, config.in: Regenerate.
3061
3062 2013-07-01 Pedro Alves <palves@redhat.com>
3063
3064 * cli/cli-cmds.c (source_script): Make 'file' parameter const.
3065 * cli/cli-cmds.h (source_script): Likewise.
3066 * exceptions.c (catch_command_errors_const): New function.
3067 * exceptions.h (catch_command_errors_const): Declare.
3068 * main.c (get_init_files): Make parameters const, and adjust.
3069 (captured_main): Make 'system_gdbinit', 'home_gdbinit' and
3070 'local_gdbinit' locals const. Adjust to use
3071 catch_command_errors_const.
3072 (print_gdb_help): Make 'system_gdbinit', 'home_gdbinit' and
3073 'local_gdbinit' locals const.
3074
3075 2013-07-01 Pedro Alves <palves@redhat.com>
3076
3077 * defs.h: Don't check HAVE_UNISTD_H before including <unistd.h>.
3078 (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO): Delete.
3079 * tracepoint.c: Don't check HAVE_UNISTD_H before including
3080 <unistd.h>.
3081
3082 2013-07-01 Pedro Alves <palves@redhat.com>
3083
3084 Import the "unistd" gnulib module.
3085 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add "unistd".
3086 * gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/off_t.m4,
3087 import/m4/ssize_t.m4, import/m4/sys_types_h.m4 and
3088 import/m4/unistd_h.m4.
3089 * gnulib/aclocal.m4: Renenerate.
3090 * gnulib/config.in: Renenerate.
3091 * gnulib/configure: Renenerate.
3092 * gnulib/import/Makefile.am: Renenerate.
3093 * gnulib/import/Makefile.in: Renenerate.
3094 * gnulib/import/m4/gnulib-cache.m4: Renenerate.
3095 * gnulib/import/m4/gnulib-comp.m4: Renenerate.
3096 * gnulib/import/m4/off_t.m4: New file.
3097 * gnulib/import/m4/ssize_t.m4: New file.
3098 * gnulib/import/m4/sys_types_h.m4: New file.
3099 * gnulib/import/m4/unistd_h.m4: New file.
3100 * gnulib/import/sys_types.in.h: New file.
3101 * gnulib/import/unistd.c: New file.
3102 * gnulib/import/unistd.in.h: New file.
3103
3104 2013-07-01 Pedro Alves <palves@redhat.com>
3105
3106 * utils.c <pathconf/_PC_PATH_MAX use>: Check if _PC_PATH_MAX is
3107 defined instead of checking HAVE_UNISTD_H.
3108
3109 2013-07-01 Pedro Alves <palves@redhat.com>
3110
3111 Reimport gnulib from scratch.
3112 * gnulib/Makefile.in (aclocal_m4_deps): Remove reference to
3113 import/m4/onceonly.m4.
3114 * gnulib/aclocal.m4: Renegerate.
3115 * gnulib/config.in: Renegerate.
3116 * gnulib/configure: Renegerate.
3117 * gnulib/import/Makefile.in: Renegerate.
3118 * gnulib/import/extra/update-copyright: Renegerate.
3119 * gnulib/import/m4/onceonly.m4: Delete.
3120
3121 2013-07-01 Pedro Alves <palves@redhat.com>
3122
3123 * tui/tui-regs.c (pagination_enabled): Delete declaration.
3124
3125 2013-06-30 Jan Kratochvil <jan.kratochvil@redhat.com>
3126
3127 Code cleanup.
3128 * remote.c (async_remote_interrupt_twice): Make it static.
3129 * remote.h (async_remote_interrupt_twice): Remove the declaration.
3130
3131 2013-06-29 Sergio Durigan Junior <sergiodj@redhat.com>
3132
3133 * ia64-linux-tdep.c: Include <ctype.h>.
3134 (ia64_linux_stap_is_single_operand): New function.
3135 (ia64_linux_init_abi): Initialize SystemTap related attributes.
3136
3137 2013-06-28 Tom Tromey <tromey@redhat.com>
3138
3139 * Makefile.in (version.c): Use version.in, not
3140 common/version.in.
3141 * common/create-version.sh: Likewise.
3142 * common/version.in: Move...
3143 * version.in: ...here.
3144
3145 2013-06-28 Pedro Alves <palves@redhat.com>
3146
3147 * infrun.c (set_observer_mode): Don't declare pagination_enabled
3148 here.
3149 * utils.h (pagination_enabled): Declare.
3150
3151 2013-06-28 Pedro Alves <palves@redhat.com>
3152
3153 * infrun.c (non_stop, non_stop_1, set_non_stop, show_non_stop):
3154 Move higher up in file.
3155
3156 2013-06-28 Tom Tromey <tromey@redhat.com>
3157
3158 * tracepoint.c (deprecated_readline_begin_hook)
3159 (deprecated_readline_hook, deprecated_readline_end_hook): Don't
3160 declare.
3161
3162 2013-06-28 Pedro Alves <palves@redhat.com>
3163
3164 PR tui/14880
3165 * tui/tui-regs.c (tui_get_register): Fetch value contents before
3166 checking if they're available.
3167 * value.c (value_available_contents_eq): Change comment.
3168 * value.h (value_available_contents_eq): Expand comment.
3169
3170 2013-06-27 Tom Tromey <tromey@redhat.com>
3171
3172 * target.c (find_run_target): Remove.
3173 * target.h (find_run_target): Remove.
3174
3175 2013-06-27 Tom Tromey <tromey@redhat.com>
3176
3177 * corelow.c (core_gdbarch): Now static.
3178
3179 2013-06-27 Tom Tromey <tromey@redhat.com>
3180
3181 * target.c (target_struct_index): Remove.
3182
3183 2013-06-27 Pedro Alves <palves@redhat.com>
3184
3185 * infrun.c: Remove comment describing the 'stepping over runtime
3186 loader dynamic symbol resolution code' mechanism; moved to
3187 gdbint.texinfo.
3188
3189 2013-06-27 Pedro Alves <palves@redhat.com>
3190
3191 * exceptions.c (catch_command_errors): Remove spurious space.
3192 * exceptions.h (catch_command_errors): Second parameter is "arg",
3193 not "command".
3194
3195 2013-06-27 Yao Qi <yao@codesourcery.com>
3196
3197 * common/create-version.sh: Update comments. Handle the case
3198 that TARGET_ALIAS is empty.
3199
3200 2013-06-26 Pedro Alves <palves@redhat.com>
3201
3202 * infrun.c (SOLIB_IN_DYNAMIC_LINKER): Delete macro and describing
3203 comment.
3204
3205 2013-06-26 Pedro Alves <palves@redhat.com>
3206
3207 * infrun.c: Update comments on stepping over runtime loader
3208 dynamic symbol resolution code.
3209
3210 2013-06-26 Sergio Durigan Junior <sergiodj@redhat.com>
3211
3212 * ax-gdb.h (union exp_element): Forward declare.
3213 * parser-defs.h: Include expression.h.
3214
3215 2013-06-26 Maciej W. Rozycki <macro@codesourcery.com>
3216
3217 * mips-tdep.c (fetch_mips_16): Use unmake_compact_addr.
3218
3219 2013-06-26 Dmitry Kozlov <ddk@codesourcery.com>
3220
3221 * tracepoint.c (trace_save): Extend tsave to save starttime, stoptime.
3222
3223 2013-06-26 Dmitry Kozlov <ddk@codesourcery.com>
3224
3225 Fix trace-status to output proper start-time and stop-time.
3226 * tracepoint.c (trace_status_command): Fix type of printf arg to
3227 prevent improper type conversion.
3228 (trace_status_mi): Likewise.
3229
3230 2013-06-26 Maciej W. Rozycki <macro@codesourcery.com>
3231
3232 * mips-tdep.c (mips_next_pc): Fix a typo.
3233
3234 2013-06-26 Maciej W. Rozycki <macro@codesourcery.com>
3235
3236 * mips-tdep.c (micromips_scan_prologue): Fix a typo.
3237
3238 2013-06-26 Pedro Alves <pedro@codesourcery.com>
3239 Yao Qi <yao@codesourcery.com>
3240
3241 * mi/mi-cmds.c (mi_cmds): Register -trace-frame-collected.
3242 * mi/mi-cmds.h (mi_cmd_trace_frame_collected): Declare.
3243 * mi/mi-main.c (print_variable_or_computed): New function.
3244 (mi_cmd_trace_frame_collected): New function.
3245 * tracepoint.c (find_trace_state_variable_by_number): New.
3246 (struct traceframe_info): Move to tracepoint.h
3247 (struct collection_list): Likewise.
3248 (do_collect_symbol): Include locals and arguments in the
3249 collected variables list.
3250 (clear_collection_list): Clear wholly collected variables list
3251 and computed variables list.
3252 (append_exp): New function.
3253 (encode_actions_1): Include variables in the wholly
3254 collected variables list. Include memory ranges and
3255 full-fledged expressions in the computed expressions list.
3256 (encode_actions): Move some code to ...
3257 Return the cleanup chain.
3258 (encode_actions_rsp): ... here. New function.
3259 (get_traceframe_location, get_traceframe_info): Remove static.
3260 * tracepoint.h (struct memrange): Moved from tracepoint.c.
3261 (struct collection_list): Moved from tracepoint.c. Add two
3262 new fields 'wholly_collected' and 'computed'.
3263 (find_trace_state_variable_by_number): Declare.
3264 (encode_actions): Adjust declaration.
3265 (encode_actions_rsp): Declare.
3266 (get_traceframe_info, get_traceframe_location): Declare.
3267
3268 * NEWS: Mention new MI command -trace-frame-collected.
3269
3270 2013-06-26 Pedro Alves <pedro@codesourcery.com>
3271 Yao Qi <yao@codesourcery.com>
3272
3273 * ctf.c (ctf_traceframe_info): Push trace state variables
3274 present in the trace data into the traceframe info object.
3275 * breakpoint.c (DEF_VEC_I): Remove.
3276 * common/filestuff.c (DEF_VEC_I): Likewise.
3277 * dwarf2loc.c (DEF_VEC_I): Likewise.
3278 * mi/mi-main.c (DEF_VEC_I): Likewise.
3279 * common/gdb_vecs.h (DEF_VEC_I): Define vector for int.
3280 * features/traceframe-info.dtd: Add tvar element and its
3281 attributes.
3282 * tracepoint.c (free_traceframe_info): Free vector 'tvars'.
3283 (build_traceframe_info): Push trace state variables present in
3284 the trace data into the traceframe info object.
3285 (traceframe_info_start_tvar): New function.
3286 (tvar_attributes): New.
3287 (traceframe_info_children): Add "tvar" element.
3288 * tracepoint.h (struct traceframe_info) <tvars>: New field.
3289
3290 * NEWS: Mention the change in GDB and GDBserver.
3291
3292 2013-06-26 Pedro Alves <pedro@codesourcery.com>
3293 Yao Qi <yao@codesourcery.com>
3294
3295 * tracepoint.c (trace_dump_command): Move code to ...
3296 (get_traceframe_location): ... here. New.
3297
3298 2013-06-26 Pedro Alves <pedro@codesourcery.com>
3299 Yao Qi <yao@codesourcery.com>
3300
3301 * tracepoint.c (trace_dump_command): GDB emits an error
3302 instead of a warning when a traceframe is not selected.
3303
3304 2013-06-26 Pedro Alves <pedro@codesourcery.com>
3305 Yao Qi <yao@codesourcery.com>
3306
3307 * tracepoint.c (tracepoint_list, stepping_list): Remove.
3308 (clear_collection_list): Free fields 'aexpre_list' and 'list'
3309 in collection_list.
3310 (do_clear_collection_list, init_collection_list): New.
3311 (encode_actions): Add local variables 'tracepoint_list' and
3312 'stepping_list'. Call init_collection_list and make cleanup
3313 which calls do_clear_collection_list. Don't call
3314 clear_collection_list.
3315 (_initialize_tracepoint): Delete references to
3316 'tracepoint_list' and 'stepping_list'.
3317
3318 2013-06-25 Tom Tromey <tromey@redhat.com>
3319
3320 * common/create-version.sh (date): Use "$", not "$$" in sed
3321 expression.
3322
3323 2013-06-25 Kevin Buettner <kevinb@redhat.com>
3324
3325 * NEWS (New targets): Add entry for TI MSP430.
3326
3327 2013-06-25 Yao Qi <yao@codesourcery.com>
3328
3329 * remote.c (remote_start_remote): Move code to upload tsv
3330 earlier.
3331
3332 2013-06-25 Yao Qi <yao@codesourcery.com>
3333 Hui Zhu <hui@codesourcery.com>
3334 Pedro Alves <palves@redhat.com>
3335
3336 PR breakpoints/15075
3337 PR breakpoints/15434
3338 * breakpoint.c (bpstat_stop_status): Call
3339 b->ops->after_condition_true.
3340 (update_dprintf_command_list): Don't append "continue" command
3341 to the command list of dprintf breakpoint.
3342 (base_breakpoint_after_condition_true): New function.
3343 (base_breakpoint_ops): Add base_breakpoint_after_condition_true.
3344 (dprintf_after_condition_true): New function.
3345 (initialize_breakpoint_ops): Set dprintf_after_condition_true.
3346 * breakpoint.h (breakpoint_ops): Add after_condition_true.
3347
3348 2013-06-24 Kevin Buettner <kevinb@redhat.com>
3349
3350 * Makefile.in (ALL_TARGET_OBS): Add msp430-tdep.o.
3351 (ALLDEPFILES): Add msp430-tdep.c.
3352 * configure.tgt (msp430*-*-elf): New target.
3353 * msp430-tdep.c: New file.
3354
3355 2013-06-24 Maciej W. Rozycki <macro@codesourcery.com>
3356
3357 * mips-tdep.c (mips_elf_make_msymbol_special): Handle MIPS16 and
3358 microMIPS synthetic symbols.
3359
3360 2013-06-24 Maciej W. Rozycki <macro@codesourcery.com>
3361
3362 * objfiles.h (pc_in_section): New prototype.
3363 (in_plt_section): Remove name argument, replace prototype with
3364 static inline function.
3365 * mips-tdep.h: Include "objfiles.h".
3366 (in_mips_stubs_section): New function.
3367 * hppa-tdep.h (gdbarch_tdep): Remove name argument of
3368 in_solib_call_trampoline member.
3369 (hppa_in_solib_call_trampoline): Remove name argument.
3370 * objfiles.c (pc_in_section): New function.
3371 (in_plt_section): Remove function.
3372 * mips-linux-tdep.c: Include "objfiles.h".
3373 (mips_linux_in_dynsym_stub): Call in_mips_stubs_section. Remove
3374 name argument. Return 1 rather than the low 16-bit halfword of
3375 any instruction examined.
3376 (mips_linux_in_dynsym_resolve_code): Update
3377 mips_linux_in_dynsym_stub call accordingly.
3378 * mips-tdep.c (mips_stub_frame_sniffer): Use in_mips_stubs_section
3379 rather than an equivalent hand-coded sequence.
3380 * hppa-hpux-tdep.c (in_opd_section): Remove function.
3381 (hppa32_hpux_in_solib_call_trampoline): Remove name argument.
3382 (hppa64_hpux_in_solib_call_trampoline): Likewise.
3383 (hppa64_hpux_find_global_pointer): Use pc_in_section rather than
3384 in_opd_section.
3385 * hppa-tdep.c (hppa_stub_unwind_sniffer): Remove name argument
3386 on call to tdep->in_solib_call_trampoline.
3387 (hppa_in_solib_call_trampoline): Remove name argument, update
3388 according to in_plt_section change.
3389 (hppa_skip_trampoline_code): Update according to in_plt_section
3390 change.
3391 * aarch64-tdep.c (aarch64_stub_unwind_sniffer): Likewise.
3392 * arm-symbian-tdep.c (arm_symbian_skip_trampoline_code):
3393 Likewise.
3394 * arm-tdep.c (arm_stub_unwind_sniffer): Likewise.
3395 * hppa-linux-tdep.c (hppa_linux_find_global_pointer): Likewise.
3396 * hppabsd-tdep.c (hppabsd_find_global_pointer): Likewise.
3397 * nios2-tdep.c (nios2_stub_frame_sniffer): Likewise.
3398 * nto-tdep.c (nto_relocate_section_addresses): Likewise.
3399 * s390-tdep.c (s390_stub_frame_sniffer): Likewise.
3400 * sh-tdep.c (sh_stub_unwind_sniffer): Likewise.
3401 * solib-dsbt.c (dsbt_in_dynsym_resolve_code): Likewise.
3402 * solib-frv.c (frv_in_dynsym_resolve_code): Likewise.
3403 * solib-svr4.c (svr4_in_dynsym_resolve_code): Likewise.
3404 * solib-target.c (solib_target_in_dynsym_resolve_code): Likewise.
3405 * sparc-tdep.c (sparc_analyze_prologue): Likewise.
3406 * tic6x-tdep.c (tic6x_stub_unwind_sniffer): Likewise.
3407
3408 2013-06-24 Joel Brobecker <brobecker@adacore.com>
3409
3410 * common/create-version.sh: Fix expansion of $host_alias
3411 and $target_alias in generation of HOST_NAME and TARGET_NAME
3412 (resp.).
3413
3414 2013-06-24 Tom Tromey <tromey@redhat.com>
3415
3416 * common/create-version.sh: New file.
3417 * Makefile.in (version.c): Use bfd/version.h, common/version.in,
3418 create-version.sh.
3419 (HFILES_NO_SRCDIR): Use common/version.h.
3420 * version.in: Move to ...
3421 * common/version.in: ... here. Replace date with "DATE".
3422 * version.h: Move to ...
3423 * common/version.h: ... here.
3424
3425 2013-06-21 Joel Brobecker <brobecker@adacore.com>
3426
3427 * gdb/gnulib/Makefile.in: Update date in copyright header.
3428 * gdb/gnulib/configure.ac: Ditto.
3429 * gdb/gnulib/update-gnulib.sh: Ditto.
3430
3431 2013-06-21 Joel Brobecker <brobecker@adacore.com>
3432
3433 * copyright.py (EXCLUDE_LIST): Replace "gdb/gnulib" by
3434 "gdb/gnulib/import".
3435
3436 2013-06-21 Will Newton <will.newton@linaro.org>
3437
3438 * doublest.c (ldfrexp): Remove function.
3439 (convert_doublest_to_floatformat): Call frexpl instead of
3440 ldfrexp.
3441
3442 2013-06-21 Will Newton <will.newton@linaro.org>
3443
3444 * gnulib/update-gnulib.sh(IMPORTED_GNULIB_MODULES): Add frexpl.
3445 * gnulib/aclocal.m4: Regenerate.
3446 * gnulib/config.in: Regenerate.
3447 * gnulib/configure: Regenerate.
3448 * gnulib/import/Makefile.am: Update.
3449 * gnulib/import/Makefile.in: Update.
3450 * gnulib/import/m4/gnulib-cache.m4: Update.
3451 * gnulib/import/m4/gnulib-comp.m4: Update.
3452 * gnulib/import/float+.h: Import.
3453 * gnulib/import/float.c: Import.
3454 * gnulib/import/float.in.h: Import.
3455 * gnulib/import/fpucw.h: Import.
3456 * gnulib/import/frexp.c: Import.
3457 * gnulib/import/frexpl.c: Import.
3458 * gnulib/import/isnan.c: Import.
3459 * gnulib/import/isnand-nolibm.h: Import.
3460 * gnulib/import/isnand.c: Import.
3461 * gnulib/import/isnanl-nolibm.h: Import.
3462 * gnulib/import/isnanl.c: Import.
3463 * gnulib/import/itold.c: Import.
3464 * gnulib/import/m4/exponentd.m4: Import.
3465 * gnulib/import/m4/exponentl.m4: Import.
3466 * gnulib/import/m4/float_h.m4: Import.
3467 * gnulib/import/m4/fpieee.m4: Import.
3468 * gnulib/import/m4/frexp.m4: Import.
3469 * gnulib/import/m4/frexpl.m4: Import.
3470 * gnulib/import/m4/isnand.m4: Import.
3471 * gnulib/import/m4/isnanl.m4: Import.
3472 * gnulib/import/m4/math_h.m4: Import.
3473 * gnulib/import/math.c: Import.
3474 * gnulib/import/math.in.h: Import.
3475
3476 2013-06-21 Jan Kratochvil <jan.kratochvil@redhat.com>
3477
3478 * common/linux-btrace.c (cpu_supports_btrace): Remove variable vendor,
3479 replace strcmp with signature_INTEL_ebx, signature_INTEL_ecx and
3480 signature_INTEL_edx comparisons.
3481
3482 2013-06-20 Doug Evans <dje@google.com>
3483
3484 symtab/15652
3485 * dwarf2read.c (try_open_dwop_file): New arg search_cwd.
3486 All callers updated.
3487 (open_dwp_file): If we can't find the dwp file, search the basename
3488 in debug-file-directory.
3489
3490 * dwarf2read.c (struct dwp_file): Fix comment.
3491 (open_and_init_dwp_file): Set dwp_file->name to bfd's file name.
3492
3493 * source.c (openp): Document OPF_TRY_CWD_FIRST+OPF_SEARCH_IN_PATH
3494 better.
3495
3496 2013-06-20 Yao Qi <yao@codesourcery.com>
3497
3498 * breakpoint.c (create_breakpoint): Fix code indentation.
3499
3500 2013-06-20 Yao Qi <yao@codesourcery.com>
3501
3502 * breakpoint.c (create_breakpoints_sal_default): Remove
3503 parameter 'lsal'. Update declaration.
3504 (bkpt_create_breakpoints_sal): Caller update.
3505 (tracepoint_create_breakpoints_sal): Likewise.
3506
3507 2013-06-20 Pedro Alves <pedro@codesourcery.com>
3508 Yao Qi <yao@codesourcery.com>
3509
3510 * NEWS: Mention the new option '--skip-unavailable' of command
3511 -data-list-register-values.
3512 * mi/mi-main.c (mi_cmd_data_list_register_values): Accept the
3513 --skip-unavailable option. Adjust to use output_register.
3514 (output_register): Add new 'skip_unavailable' parameter.
3515 Handle it.
3516
3517 2013-06-19 Mike Frysinger <vapier@gentoo.org>
3518
3519 * Makefile.in (HFILES_NO_SRCDIR): Add common/i386-cpuid.h and
3520 common/i386-gcc-cpuid.h.
3521 * common/i386-cpuid.h: New wrapper header around i386-gcc-cpuid.h.
3522 * common/i386-gcc-cpuid.h: Rename from testsuite/gdb.arch/i386-cpuid.h.
3523 Copy the latest version from upstream gcc.
3524 * common/linux-btrace.c: Include i386-cpuid.h.
3525 (intel_supports_btrace): Delete x86 ifdefs and replace inline asm with
3526 call to i386_cpuid.
3527 (cpu_supports_btrace): Likewise.
3528 * go32-nat.c: Include i386-cpuid.h.
3529 (go32_sysinfo): Add (disabled) calls to i386_cpuid with comments.
3530
3531 2013-06-19 Doug Evans <dje@google.com>
3532
3533 * symfile.c (symfile_bfd_open): Delete unnecessary declaration.
3534 (get_section_index): Ditto.
3535
3536 2013-06-19 Tom Tromey <tromey@redhat.com>
3537
3538 * breakpoint.c (_initialize_breakpoint): Remove trailing \n from
3539 "dprintf" help.
3540
3541 2013-06-18 Doug Evans <dje@google.com>
3542
3543 * dwarf2read.c (dw2_symtab_iter_next): Check value of cu_index
3544 before using it.
3545 (dw2_expand_symtabs_matching): Fix symbol kind validity check.
3546 Move test of cu_index closer to use. Print complaint if cu_index
3547 is bad.
3548
3549 2013-06-18 Joel Brobecker <brobecker@adacore.com>
3550
3551 * machoread.c (oso_vector): Delete this global.
3552 (macho_register_oso): Add new parameter "oso_vector_ptr".
3553 Use it instead of the "oso_vector" global.
3554 (macho_symtab_read, macho_symfile_read_all_oso): Likewise.
3555 (macho_symfile_read): Use a local oso_vector, to be free'ed
3556 at the end of this function, in place of the old "oso_vector"
3557 global. Update various function calls accordingly. Use one
3558 single cleanup chain for the entire function.
3559
3560 2013-06-18 Joel Brobecker <brobecker@adacore.com>
3561
3562 * dwarf2read.c (dwarf2_per_objfile_free): Replace uses of
3563 DWARF2_PER_OBJFILE by uses of DATA instead.
3564
3565 2013-06-18 Tom Tromey <tromey@redhat.com>
3566
3567 * break-catch-sig.c (signal_catchpoint_explains_signal): Add 'sig'
3568 argument.
3569 * breakpoint.c (bpstat_explains_signal): Add 'sig' argument.
3570 Special case signals other than GDB_SIGNAL_TRAP.
3571 (explains_signal_watchpoint): New function.
3572 (base_breakpoint_explains_signal): Add 'sig' argument.
3573 (initialize_breakpoint_ops): Set 'explains_signal' method for
3574 watchpoints.
3575 * breakpoint.h (struct breakpoint_ops) <explains_signal>: Add
3576 signal argument.
3577 (bpstat_explains_signal): Likewise.
3578 * infrun.c (handle_syscall_event, handle_inferior_event): Update.
3579
3580 2013-06-18 Tom Tromey <tromey@redhat.com>
3581
3582 * python/py-inferior.c (gdbpy_selected_inferior): Don't incref.
3583
3584 2013-06-18 Tom Tromey <tromey@redhat.com>
3585
3586 * python/python.c (finish_python_initialization): Decref
3587 'pythondir' on failure path as well.
3588
3589 2013-06-18 Tom Tromey <tromey@redhat.com>
3590
3591 PR symtab/15391:
3592 * dwarf2loc.c (read_pieced_value): Truncate this_size_bits
3593 after taking bits_to_skip into account. Sign extend byte_offset.
3594 * utils.h (gdb_sign_extend): Declare.
3595 * utils.c (gdb_sign_extend): New function.
3596
3597 2013-06-18 Jan Kratochvil <jan.kratochvil@redhat.com>
3598
3599 * dwarf2read.c (write_psymtabs_to_index): Ignore NULL PSYMTAB.
3600
3601 2013-06-17 Pierre Muller <muller@sourceware.org>
3602
3603 * corelow.c (core_open): Print GDB signal name instead of target
3604 signal number.
3605
3606 2013-06-17 Mike Frysinger <vapier@gentoo.org>
3607
3608 * .gitignore: Add /gcore.
3609
3610 2013-06-13 Doug Evans <dje@google.com>
3611
3612 * dwarf2read.c (try_open_dwop_file): Work around behaviour of
3613 OPF_TRY_CWD_FIRST to not search path if the file contains a '/'.
3614
3615 2013-06-12 Phil Muldoon <pmuldoon@redhat.com>
3616
3617 * stack.c (backtrace_command_1): Fix indentation.
3618
3619 2013-06-11 Joel Brobecker <brobecker@adacore.com>
3620
3621 * window-nat.c (thread_rec): Add missing empty line after
3622 local variable declaration.
3623
3624 2013-06-11 Joel Brobecker <brobecker@adacore.com>
3625
3626 * windows-nat.c (thread_rec): Revert format used to print
3627 error code returned by SuspendThread from %d back to %u.
3628
3629 2013-06-11 Joel Brobecker <brobecker@adacore.com>
3630
3631 * windows-nat.c (windows_continue): Add "0x" prefix for thread
3632 ID in debug trace.
3633 (get_windows_debug_event): Likewise, for all debug traces.
3634
3635 2013-06-11 Joel Brobecker <brobecker@adacore.com>
3636
3637 * window-nat.c (thread_rec): Add thread ID in SuspendThread
3638 warning message.
3639
3640 2013-06-08 Pedro Alves <pedro@codesourcery.com>
3641 Yao Qi <yao@codesourcery.com>
3642
3643 * mi/mi-main.c (get_register): Remove declaration.
3644 (output_register): Declare.
3645 (mi_cmd_data_list_register_values): Remove local variable
3646 'tuple_cleanup'. Move some code into output_register.
3647 (get_register): Renamed to ...
3648 (output_register): ... this. Output the register's
3649 "number" ui_out tuple here.
3650
3651 2013-06-07 Pedro Alves <palves@redhat.com>
3652
3653 * darwin-nat.c: Fix formating in copyright header.
3654 * darwin-nat.h: Likewise.
3655 * gnu-nat.c: Likewise.
3656 * machoread.c: Likewise.
3657
3658 2013-06-07 Pedro Alves <palves@redhat.com>
3659
3660 PR server/14823
3661 * regformats/regdat.sh: Output #include tdesc.h. Make globals
3662 static. Output a global target description pointer.
3663 (init_registers_${name}): Adjust to initialize a
3664 target description structure.
3665
3666 2013-06-07 Will Newton <will.newton@linaro.org>
3667
3668 * printcmd.c (build_address_symbolic): Call
3669 gdbarch_addr_bits_remove for text minimal symbols.
3670
3671 2013-06-07 Will Newton <will.newton@linaro.org>
3672
3673 * MAINTAINERS: Add myself to Write After Approval.
3674
3675 2013-06-07 Yao Qi <yao@codesourcery.com>
3676
3677 * tracepoint.c (start_tracing): Move code to ...
3678 (trace_reset_local_state): ... here. New.
3679 (disconnect_tracing): Don't call set_current_traceframe,
3680 set_tracepoint_num, and set_traceframe_context. Call
3681 trace_reset_local_state instead.
3682 (tfile_close): Call trace_reset_local_state.
3683 * ctf.c (ctf_close): Likewise.
3684 * remote.c (remote_close): Likewise.
3685 * tracepoint.h (trace_reset_local_state): Declare.
3686
3687 2013-06-06 Doug Evans <dje@google.com>
3688
3689 * dwarf2read.c: Whitespace fixes for DWP file format documentation,
3690 and fix header docs.
3691
3692 2013-06-05 Doug Evans <dje@google.com>
3693 Keith Seitz <keiths@redhat.com>
3694
3695 PR 15519
3696 * cp-namespace.c (find_symbol_in_baseclass): Call
3697 cp_lookup_symbol_in_namespace instead of cp_lookup_symbol_namespace.
3698 Check result of call to lookup_symbol_static.
3699 Call lookup_static_symbol_aux unconditionally.
3700 Call check_typedef on base types before accessing them.
3701 (cp_lookup_nested_symbol): Fix comment.
3702
3703 2013-06-05 Luis Machado <lgustavo@codesourcery.com>
3704
3705 * gnu-v3-abi.c (gnuv3_skip_trampoline): Handle thunk
3706 minimal symbols pointing to function descriptors.
3707
3708 2013-06-05 Tom Tromey <tromey@redhat.com>
3709
3710 * python/py-utils.c (gdb_pymodule_addobject): Cast away const.
3711
3712 2013-06-04 Sergio Durigan Junior <sergiodj@redhat.com>
3713 Pedro Alves <palves@redhat.com>
3714
3715 * remote.c (remote_wait_as): Restore signal handler before returning
3716 when GDB gets a notification.
3717
3718 2013-06-04 Gary Benson <gbenson@redhat.com>
3719
3720 PR 2328
3721 * breakpoint.h (handle_solib_event): Moved function declaration
3722 to solib.h.
3723 * breakpoint.c (handle_solib_event): Moved function to solib.c.
3724 (bpstat_stop_status): Pass new argument to handle_solib_event.
3725 * solib.h (update_solib_breakpoints): New function declaration.
3726 (handle_solib_event): Moved function declaration from
3727 breakpoint.h.
3728 * solib.c (update_solib_breakpoints): New function.
3729 (handle_solib_event): Moved function from breakpoint.c.
3730 Updated to call solib_ops->handle_event if not NULL.
3731 * solist.h (target_so_ops): New fields "update_breakpoints" and
3732 "handle_event".
3733 * infrun.c (set_stop_on_solib_events): New function.
3734 (_initialize_infrun): Use the above for "set
3735 stop-on-solib-events".
3736 (handle_inferior_event): Pass new argument to handle_solib_event.
3737 * solib-svr4.c (probe.h): New include.
3738 (svr4_free_library_list): New forward declaration.
3739 (probe_action): New enum.
3740 (probe_info): New struct.
3741 (probe_info): New static variable.
3742 (NUM_PROBES): New definition.
3743 (svr4_info): New fields "using_xfer", "probes_table" and
3744 "solib_list".
3745 (free_probes_table): New function.
3746 (free_solib_list): New function.
3747 (svr4_pspace_data_cleanup): Free probes table and solib list.
3748 (svr4_copy_library_list): New function.
3749 (svr4_current_sos_via_xfer_libraries): New parameter "annex".
3750 (svr4_read_so_list): New parameter "prev_lm".
3751 (svr4_current_sos_direct): Renamed from "svr4_current_sos".
3752 (svr4_current_sos): New function.
3753 (probe_and_action): New struct.
3754 (hash_probe_and_action): New function.
3755 (equal_probe_and_action): Likewise.
3756 (register_solib_event_probe): Likewise.
3757 (solib_event_probe_at): Likewise.
3758 (solib_event_probe_action): Likewise.
3759 (solist_update_full): Likewise.
3760 (solist_update_incremental): Likewise.
3761 (disable_probes_interface_cleanup): Likewise.
3762 (svr4_handle_solib_event): Likewise.
3763 (svr4_update_solib_event_breakpoint): Likewise.
3764 (svr4_update_solib_event_breakpoints): Likewise.
3765 (svr4_create_solib_event_breakpoints): Likewise.
3766 (enable_break): Free probes table before creating breakpoints.
3767 Use svr4_create_solib_event_breakpoints to create breakpoints.
3768 (svr4_solib_create_inferior_hook): Free the solib list.
3769 (_initialize_svr4_solib): Initialise
3770 svr4_so_ops.handle_solib_event and svr4_so_ops.update_breakpoints.
3771
3772 2013-06-04 Gary Benson <gbenson@redhat.com>
3773
3774 * target.h (target_ops): New field
3775 "to_augmented_libraries_svr4_read".
3776 (target_augmented_libraries_svr4_read): New macro.
3777 * target.c (update_current_target): Handle
3778 to_augmented_libraries_svr4_read.
3779 * remote.c (remote_state): New field
3780 "augmented_libraries_svr4_read".
3781 (remote_augmented_libraries_svr4_read_feature): New function.
3782 (remote_protocol_features): Add entry for
3783 "augmented-libraries-svr4-read".
3784 (remote_augmented_libraries_svr4_read): New function.
3785 (init_remote_ops): Initialize
3786 remote_ops.to_augmented_libraries_svr4_read.
3787
3788 2013-06-04 Gary Benson <gbenson@redhat.com>
3789
3790 * NEWS: Update.
3791
3792 2013-06-04 Gary Benson <gbenson@redhat.com>
3793
3794 * objfiles.h (inhibit_section_map_updates): New function
3795 declaration.
3796 (resume_section_map_updates): Likewise.
3797 (resume_section_map_updates_cleanup): Likewise.
3798 * objfiles.c (objfile_pspace_info): Removed field
3799 "objfiles_changed_p". New fields "new_objfiles_available",
3800 "section_map_dirty" and "inhibit_updates".
3801 (allocate_objfile): Set new_objfiles_available.
3802 (free_objfile): Set section_map_dirty.
3803 (objfile_relocate1): Likewise.
3804 (in_plt_section): Likewise.
3805 (find_pc_section): Update the conditions under which the
3806 section map will be updated.
3807 (inhibit_section_map_updates): New function.
3808 (resume_section_map_updates): Likewise.
3809 (resume_section_map_updates_cleanup): Likewise.
3810
3811 2013-06-04 Gary Benson <gbenson@redhat.com>
3812
3813 * probe.h (get_probe_argument_count): New declaration.
3814 (evaluate_probe_argument): Likewise.
3815 * probe.c (get_probe_argument_count): New function.
3816 (evaluate_probe_argument): Likewise.
3817 (probe_safe_evaluate_at_pc): Use the above new functions.
3818
3819 2013-06-04 Alan Modra <amodra@gmail.com>
3820
3821 * ppc-tdep.h (ppc_insns_match_pattern): Update prototype.
3822 * rs6000-tdep.c (read_insn): Add frame param, don't assume big-endian.
3823 (ppc_insns_match_pattern): Add frame param. Avoid multiple
3824 target mem reads on optional insns.
3825 * ppc-linux-tdep.c (ppc_skip_trampoline_code): Update
3826 ppc_insns_match_pattern calls.
3827 * ppc64-tdep.c (ppc64_standard_linkage2, ppc64_standard_linkage3):
3828 Add match for power7 thread safety insns, and new order of
3829 std 2,40(1) insn. Correct code shown for _dl_runtime_resolve
3830 invocation in comment, and update rest of comment.
3831 (PPC64_STANDARD_LINKAGE1_LEN, PPC64_STANDARD_LINKAGE2_LEN,
3832 PPC64_STANDARD_LINKAGE3_LEN): Delete.
3833 (ppc64_standard_linkage2_target): Update insn offsets.
3834 (ppc64_skip_trampoline_code): Use a single insn buffer. Match newer
3835 stubs first. Update calls.
3836
3837 2013-06-04 Yao Qi <yao@codesourcery.com>
3838
3839 * solib.c (solib_find): Don't need dir separator if path has
3840 drive spec.
3841
3842 2013-06-03 Joel Brobecker <brobecker@adacore.com>
3843
3844 Revert (indirectly causes a SIGSEGV):
3845 * machoread.c (macho_symfile_read): Assign first cleanup to
3846 'back_to'.
3847
3848 2013-06-03 Yao Qi <yao@codesourcery.com>
3849
3850 * mi/mi-cmd-var.c (mi_no_values, mi_simple_values): Move to
3851 mi-parse.c. Make them static.
3852 (mi_all_values): Likewise.
3853 (mi_parse_values_option): Move to mi-parse.c. Rename it to
3854 mi_parse_print_values. Make it external.
3855 * mi/mi-cmds.h (mi_no_values, mi_simple_values, mi_all_values):
3856 Remove the declarations.
3857 * mi/mi-parse.c (mi_parse_print_values): Moved from mi-cmd-var.c.
3858 * mi/mi-parse.h (mi_parse_print_values): Declare.
3859 * mi/mi-cmd-stack.c: Include mi-parse.h.
3860 (parse_print_values): Remove
3861 (mi_cmd_stack_list_locals): Call mi_parse_print_values instead
3862 of parse_print_values.
3863 (mi_cmd_stack_list_args, mi_cmd_stack_list_variables): Likewise.
3864
3865 2013-05-31 Pedro Alves <pedro@codesourcery.com>
3866 Yao Qi <yao@codesourcery.com>
3867
3868 * tracepoint.c (all_tracepoint_actions_and_cleanup): Declare.
3869 (encode_actions): Move code to ...
3870 (all_tracepoint_actions_and_cleanup): ... here. New.
3871 (trace_dump_command): Likewise.
3872
3873 2013-05-30 Tom Tromey <tromey@redhat.com>
3874
3875 * symmisc.c (maintenance_expand_symtabs): Call do_cleanups.
3876
3877 2013-05-30 Tom Tromey <tromey@redhat.com>
3878
3879 * xml-support.c (gdb_xml_create_parser_and_cleanup): Rename from
3880 gdb_xml_create_parser_and_cleanup_1. Return a cleanup. Remove
3881 'old_chain' argument. Add 'parser_result' argument.
3882 (gdb_xml_create_parser_and_cleanup): Remove old version.
3883 (gdb_xml_parse_quick): Update.
3884 (xml_process_xincludes): Update.
3885 * xml-support.h (gdb_xml_create_parser_and_cleanup): Don't
3886 declare.
3887
3888 2013-05-30 Tom Tromey <tromey@redhat.com>
3889
3890 * probe.c (collect_probes): Check arguments for NULL before
3891 calling compile_rx_or_error.
3892 * utils.c (compile_rx_or_error): Require 'rx' to be non-NULL.
3893 Remove NULL return.
3894
3895 2013-05-30 Tom Tromey <tromey@redhat.com>
3896
3897 * infrun.c (adjust_pc_after_break): Introduce an outer null
3898 cleanup.
3899
3900 2013-05-30 Tom Tromey <tromey@redhat.com>
3901
3902 * mi/mi-cmd-var.c (varobj_update_one): Add an outer null cleanup.
3903
3904 2013-05-30 Tom Tromey <tromey@redhat.com>
3905
3906 * cli/cli-script.c (read_command_lines_1): Use a null cleanup
3907 for 'old_chain'. Do not check 'head' before processing
3908 cleanups.
3909
3910 2013-05-30 Tom Tromey <tromey@redhat.com>
3911
3912 * mi/mi-cmd-stack.c (list_arg_or_local): Remove
3913 "cleanup_tuple".
3914
3915 2013-05-30 Tom Tromey <tromey@redhat.com>
3916
3917 * dbxread.c (dbx_read_symtab): Declare 'back_to' in a more
3918 inner scope. Unconditionally call do_cleanups.
3919
3920 2013-05-30 Tom Tromey <tromey@redhat.com>
3921
3922 * source.c (find_and_open_source): Call do_cleanups.
3923
3924 2013-05-30 Tom Tromey <tromey@redhat.com>
3925
3926 * linux-thread-db.c (thread_db_load_search): Unconditionally
3927 call do_cleanups.
3928
3929 2013-05-30 Tom Tromey <tromey@redhat.com>
3930
3931 * solib-aix.c (solib_aix_bfd_open): Don't use a null cleanup
3932 for 'cleanup'; instead use a later one.
3933
3934 2013-05-30 Tom Tromey <tromey@redhat.com>
3935
3936 * python/py-breakpoint.c (bppy_get_commands): Use
3937 explicit, unconditional return.
3938 * python/py-frame.c (frapy_read_var): Likewise.
3939 * python/python.c (gdbpy_decode_line): Likewise.
3940
3941 2013-05-30 Tom Tromey <tromey@redhat.com>
3942
3943 * cp-namespace.c (cp_lookup_symbol_imports_or_template): Call
3944 do_cleanups on all return paths.
3945
3946 2013-05-30 Tom Tromey <tromey@redhat.com>
3947
3948 * top.c (execute_command): Discard 'cleanup_if_error' cleanups.
3949
3950 2013-05-30 Tom Tromey <tromey@redhat.com>
3951
3952 * stabsread.c (read_struct_type): Call do_cleanups along
3953 all return paths.
3954
3955 2013-05-30 Maciej W. Rozycki <macro@codesourcery.com>
3956
3957 * mips-linux-tdep.c: Adjust formatting throughout.
3958
3959 2013-05-30 Tom Tromey <tromey@redhat.com>
3960
3961 * mipsread.c (read_alphacoff_dynamic_symtab): Call do_cleanups
3962 along all return paths.
3963
3964 2013-05-30 Tom Tromey <tromey@redhat.com>
3965
3966 * symfile.c (find_separate_debug_file): Call do_cleanups
3967 along all return paths.
3968
3969 2013-05-30 Tom Tromey <tromey@redhat.com>
3970
3971 * symtab.c (search_symbols): Introduce a null cleanup for
3972 'retval_chain'.
3973
3974 2013-05-30 Tom Tromey <tromey@redhat.com>
3975
3976 * python/py-value.c (valpy_binop): Call do_cleanups before
3977 exiting loop.
3978
3979 2013-05-30 Tom Tromey <tromey@redhat.com>
3980
3981 * python/py-prettyprint.c (print_children): Remove extra
3982 do_cleanups call.
3983
3984 2013-05-30 Tom Tromey <tromey@redhat.com>
3985
3986 * python/py-frame.c (frapy_read_var): Call do_cleanups along
3987 all return paths.
3988
3989 2013-05-30 Tom Tromey <tromey@redhat.com>
3990
3991 * python/py-breakpoint.c (bppy_get_commands): Call do_cleanups
3992 along all return paths.
3993
3994 2013-05-30 Tom Tromey <tromey@redhat.com>
3995
3996 * cli/cli-logging.c (set_logging_redirect): Unconditionally
3997 call do_cleanups.
3998
3999 2013-05-30 Tom Tromey <tromey@redhat.com>
4000
4001 * varobj.c (c_value_of_root): Call do_cleanups along all
4002 return paths.
4003
4004 2013-05-30 Tom Tromey <tromey@redhat.com>
4005
4006 * tracepoint.c (trace_dump_command): Unconditionally call
4007 do_cleanups.
4008
4009 2013-05-30 Tom Tromey <tromey@redhat.com>
4010
4011 * breakpoint.c (output_thread_groups, parse_cmd_to_aexpr): Call
4012 do_cleanups earlier.
4013
4014 2013-05-30 Tom Tromey <tromey@redhat.com>
4015
4016 * machoread.c (macho_symfile_read): Assign first cleanup to
4017 'back_to'.
4018
4019 2013-05-30 Tom Tromey <tromey@redhat.com>
4020
4021 * m32r-rom.c (m32r_load): Call do_cleanups at all returns.
4022
4023 2013-05-30 Tom Tromey <tromey@redhat.com>
4024
4025 * mi/mi-main.c (list_available_thread_groups): Call do_cleanups.
4026
4027 2013-05-30 Tom Tromey <tromey@redhat.com>
4028
4029 * inf-ptrace.c (inf_ptrace_create_inferior): Unconditionally
4030 call discard_cleanups.
4031 (inf_ptrace_attach): Likewise.
4032
4033 2013-05-30 Tom Tromey <tromey@redhat.com>
4034
4035 * remote-mips.c (mips_exit_debug): Call do_cleanups on all
4036 return paths.
4037 (mips_initialize): Likewise.
4038 (common_open): Call do_cleanups.
4039
4040 2013-05-30 Tom Tromey <tromey@redhat.com>
4041
4042 * utils.c (internal_vproblem): Call do_cleanups.
4043
4044 2013-05-30 Tom Tromey <tromey@redhat.com>
4045
4046 * linespec.c (find_linespec_symbols): Don't reassign to 'cleanup'.
4047
4048 2013-05-30 Tom Tromey <tromey@redhat.com>
4049
4050 * cli/cli-script.c (setup_user_args): Don't return after error.
4051
4052 2013-05-30 Tom Tromey <tromey@redhat.com>
4053
4054 * somread.c (som_symtab_read): Call do_cleanups.
4055
4056 2013-05-30 Tom Tromey <tromey@redhat.com>
4057
4058 * printcmd.c (print_command_1): Unconditionally call do_cleanups.
4059
4060 2013-05-30 Tom Tromey <tromey@redhat.com>
4061
4062 * cli/cli-cmds.c (cd_command, alias_command): Call do_cleanups.
4063 * cli/cli-dump.c (restore_binary_file): Call do_cleanups.
4064 * interps.c (interpreter_exec_cmd): Call do_cleanups.
4065 * source.c (show_substitute_path_command): Call do_cleanups.
4066 (unset_substitute_path_command, set_substitute_path_command):
4067 Likewise.
4068 * symfile.c (load_command): Call do_cleanups.
4069
4070 2013-05-30 Tom Tromey <tromey@redhat.com>
4071
4072 * contrib/cleanup_check.py: New file.
4073 * contrib/gcc-with-excheck: Add option parsing.
4074
4075 2013-05-30 Joel Brobecker <brobecker@adacore.com>
4076
4077 * windows-nat.c (windows_delete_thread): Add missing space
4078 in cast expression.
4079
4080 2013-05-30 Hafiz Abid Qadeer <abidh@codesourcery.com>
4081
4082 * inferior.c (top level): Include tilde.h.
4083 (add_inferior_command): Call tilde_expand on the value of 'exec'
4084 argument.
4085
4086 2013-05-30 Pedro Alves <pedro@codesourcery.com>
4087 Yao Qi <yao@codesourcery.com>
4088
4089 * tracepoint.c (encode_actions_1): Remove parameter 't'.
4090 Caller update.
4091 (encode_actions): Likewise.
4092 * remote.c (remote_download_tracepoint): Caller update.
4093 * tracepoint.h (encode_actions): Update declaration.
4094
4095 2013-05-30 Pedro Alves <palves@redhat.com>
4096
4097 * python/python-internal.h (gdb_Py_DECREF): Cast OP to PyObject
4098 pointer.
4099
4100 2013-05-30 Yao Qi <yao@codesourcery.com>
4101
4102 * remote.c (remote_check_symbols): Remove unused parameter
4103 'objfile'.
4104 Declaration update.
4105 (remote_start_remote, remote_new_objfile): Caller update.
4106
4107 2013-05-30 Yao Qi <yao@codesourcery.com>
4108
4109 * mi/mi-cmds.c (mi_cmds): Define MI command
4110 '-exec-arguments' by macro DEF_MI_CMD_CLI_1 instead of
4111 DEF_MI_CMD_CLI.
4112
4113 2013-05-29 Pedro Alves <palves@redhat.com>
4114
4115 * remote.c (remote_insert_breakpoint, remote_remove_breakpoint)
4116 (remote_insert_watchpoint, remote_remove_watchpoint)
4117 (remote_insert_hw_breakpoint, remote_remove_hw_breakpoint)
4118 (remote_verify_memory, compare_sections_command)
4119 (remote_search_memory): Set the general process/thread on the
4120 remote side.
4121
4122 2013-05-29 Pedro Alves <palves@redhat.com>
4123
4124 * aarch64-tdep.c: Don't include "features/aarch64-without-fpu.c".
4125 (_initialize_aarch64_tdep): Don't call
4126 initialize_tdesc_aarch64_without_fpu.
4127 * features/Makefile (WHICH): Remove reference to
4128 aarch64-without-fpu.
4129 * features/aarch64-without-fpu.c: Delete file.
4130 * regformats/aarch64-without-fpu.dat: Delete file.
4131
4132 2013-05-28 Yao Qi <yao@codesourcery.com>
4133
4134 * tracepoint.c (stringify_collection_list): Remove parameter
4135 'string'.
4136 (encode_actions): Caller update. Remove local variables.
4137
4138 2013-05-24 Yao Qi <yao@codesourcery.com>
4139
4140 * tracepoint.c (TFILE_PID): Remove.
4141 (tfile_open): Don't add thread and inferior.
4142 (tfile_close): Don't set 'inferior_ptid'. Don't call
4143 exit_inferior_silent.
4144 (tfile_thread_alive): Remove.
4145 (init_tfile_ops): Don't set field 'to_thread_alive' of
4146 tfile_ops.
4147
4148 2013-05-23 Doug Evans <dje@google.com>
4149
4150 * contrib/cc-with-tweaks.sh (-p): Handle no dwo files.
4151
4152 2013-05-23 Pedro Alves <palves@redhat.com>
4153
4154 * common/filestuff.c [USE_WIN32API]: Define HAVE_SOCKETS.
4155 [HAVE_SYS_SOCKET_H]: Define HAVE_SOCKETS.
4156 (socket_mark_cloexec, gdb_socketpair_cloexec, gdb_socket_cloexec):
4157 Only define if HAVE_SOCKETS is defined.
4158 * configure.ac: Check for sys/socket.h.
4159 * config.in, configure: Regenerate.
4160
4161 2013-05-23 Pedro Alves <palves@redhat.com>
4162
4163 * dwarf2read.c (create_dwp_hash_table, create_dwo_in_dwp)
4164 (open_and_init_dwp_file): Use %s/pulongest instead of %u for
4165 printing uint32_t variables.
4166
4167 2013-05-23 Pedro Alves <palves@redhat.com>
4168
4169 * NEWS: Mention GDBserver range stepping support.
4170
4171 2013-05-23 Yao Qi <yao@codesourcery.com>
4172 Pedro Alves <palves@redhat.com>
4173
4174 * gdbthread.h (struct thread_control_state) <may_range_step>: New
4175 field.
4176 * infcmd.c (step_once, until_next_command): Enable range stepping.
4177 * infrun.c (displaced_step_prepare): Disable range stepping.
4178 (resume): Disable range stepping if stepping over a breakpoint or
4179 we have software watchpoints. If range stepping is enabled,
4180 assert the thread is in the stepping range.
4181 (clear_proceed_status_thread): Clear may_range_step.
4182 (handle_inferior_event): Disable range stepping as soon as we know
4183 the thread that hit the event. Re-enable it whenever we're going
4184 to step with a step range.
4185 * remote.c (struct vCont_action_support) <r>: New field.
4186 (use_range_stepping): New global.
4187 (remote_vcont_probe): Handle 'r' action.
4188 (append_resumption): Append an 'r' action if the thread may range
4189 step.
4190 (show_range_stepping): New function.
4191 (set_range_stepping): New function.
4192 (_initialize_remote): Call add_setshow_boolean_cmd to register the
4193 'set range-stepping' and 'show range-stepping' commands.
4194 * NEWS: Mention range stepping, the new vCont;r action, and the
4195 new "set/show range-stepping" commands.
4196
4197 2013-05-23 Yao Qi <yao@codesourcery.com>
4198 Pedro Alves <palves@redhat.com>
4199
4200 * remote.c (struct vCont_action_support): New struct.
4201 (struct remote_state) <support_vCont_t>: Remove field.
4202 <vCont_actions_support>: New field.
4203 (remote_vcont_probe, remote_stop_ns): Update.
4204
4205 2013-05-23 Yao Qi <yao@codesourcery.com>
4206 Pedro Alves <palves@redhat.com>
4207
4208 * gdbthread.h (pc_in_thread_step_range): New declaration.
4209 * thread.c (pc_in_thread_step_range): New function.
4210 * infrun.c (handle_inferior_event): Use it.
4211
4212 2013-05-23 Joel Brobecker <brobecker@adacore.com>
4213
4214 * mi/mi-cmd-break.c (mi_argv_to_format): Use xsnprintf instead
4215 of sprintf.
4216
4217 2013-05-22 Keith Seitz <keiths@redhat.com>
4218
4219 * ada-lang.c (is_known_support_routine): Add explicit free of
4220 'func_name' from find_frame_funname.
4221 (ada_unhandled_exception_name_addr_from_raise): Add cleanups
4222 for func_name from find_frame_funname.
4223 * python/py-frame.c (frapy_name): Add explicit free of
4224 'name' from find_frame_funname.
4225 * stack.c (find_frame_funname): Add comment explaining that
4226 funcp must be freed by the caller.
4227 Return copy of symbol names instead of pointers.
4228 (print_frame): Add a cleanup for 'funname' from
4229 find_frame_funname.
4230 * stack.h (find_frame_funname): Remove "const" from
4231 'funname' parameter.
4232
4233 2013-05-22 Tom Tromey <tromey@redhat.com>
4234
4235 PR c++/15401:
4236 * c-valprint.c (c_value_print): Use value_addr for
4237 references. Convert back to reference type with value_ref.
4238
4239 2013-05-22 Eli Zaretskii <eliz@gnu.org>
4240
4241 * windows-nat.c (handle_unload_dll): Don't call solib_add for the
4242 unloaded DLL, it will be done by handle_solib_event. See
4243 http://sourceware.org/ml/gdb-patches/2013-05/msg00713.html for the
4244 details.
4245
4246 2013-05-22 Phil Muldoon <pmuldoon@redhat.com>
4247
4248 * ui-out.c: Create typedef ui_out_level_p and define vector
4249 operations for that type.
4250 (struct ui_out): Use a vector instead of an array.
4251 (current_level): Return level from a vector.
4252 (push_level): Create a level in a vector.
4253 (pop_level): Delete a level in a vector.
4254 (ui_out_new): Create initial level zero level, and store in a
4255 vector.
4256 (ui_out_destroy): Add vector cleanup.
4257
4258 2013-05-22 Pedro Alves <palves@redhat.com>
4259
4260 * python/python-internal.h (gdb_Py_DECREF): Tag with
4261 "ARI: editCase function".
4262
4263 2013-05-21 Paul Pluzhnikov <ppluzhnikov@google.com>
4264
4265 * solib-svr4.c (svr4_free_so): Protect against NULL dereference.
4266
4267 2013-05-21 Pedro Alves <palves@redhat.com>
4268
4269 * python/py-prettyprint.c (apply_val_pretty_printer): Check
4270 whether PRINTER is NULL before installing a Py_DECREF cleanup.
4271 * python/py-utils.c (py_decref): Don't check for NULL before
4272 calling Py_DECREF.
4273
4274 2013-05-21 Pedro Alves <palves@redhat.com>
4275
4276 * python/py-utils.c (py_decref): Remove extra braces.
4277 (gdb_pymodule_addobject): Remove extra braces.
4278 * python-internal.h (gdb_Py_DECREF): New static inline function.
4279 (Py_DECREF): Redefine as calling gdb_Py_DECREF.
4280
4281 2013-05-21 Philippe Waroquiers <philippe.waroquiers@skynet.be>
4282
4283 * breakpoints.c (detach_breakpoints): Do not
4284 detach breakpoints locations with loc_type bp_loc_other.
4285
4286 2013-05-21 Jan Kratochvil <jan.kratochvil@redhat.com>
4287
4288 Workaround Python 2.6.
4289 * python/py-utils.c (gdb_pymodule_addobject): Wrap Py_DECREF into
4290 a block.
4291
4292 2013-05-21 Jan Kratochvil <jan.kratochvil@redhat.com>
4293
4294 Code cleanup: constification.
4295 * solib.c (solib_ops): Make return type and ops variable type const.
4296 (set_solib_ops): Make the new_ops parameter and ops variable const.
4297 (solib_find, solib_map_sections, clear_so, free_so, update_solib_list)
4298 (solib_add, solib_keep_data_in_core, clear_solib)
4299 (solib_create_inferior_hook, in_solib_dynsym_resolve_code)
4300 (reload_shared_libraries, solib_global_lookup): Make the ops variable
4301 const.
4302 * solib.h (set_solib_ops): Make the new_ops parameter const.
4303
4304 2013-05-21 Joel Brobecker <brobecker@adacore.com>
4305
4306 * data-directory/Makefile.in (SYSTEM_GDBINIT_SRCDIR): New
4307 variable.
4308 (VPATH): Add SYSTEM_GDBINIT_SRCDIR.
4309 (SYSTEM_GDBINIT_DIR, SYSTEM_GDBINIT_INSTALL_DIR)
4310 (SYSTEM_GDBINIT_FILES): New variables.
4311 (all): Add stamp-system-gdbinit.
4312 (stamp-system-gdbinit): New rule.
4313 (clean-system-gdbinit, install-system-gdbinit)
4314 (uninstall-system-gdbinit): New rules. Make them .PHONY.
4315 (install-only): Add dependency on install-system-gdbinit.
4316 (uninstall): Add dependency on uninstall-system-gdbinit.
4317 (clean): Add dependency on clean-system-gdbinit.
4318 * system-gdbinit/elinos.py: New file.
4319 * system-gdbinit/wrs-linux.py: New file.
4320
4321 2013-05-21 Joel Brobecker <brobecker@adacore.com>
4322
4323 * ada-lang.c (old_renaming_is_invisible): Fix cleanup leak.
4324
4325 2013-05-21 Hui Zhu <hui@codesourcery.com>
4326
4327 * breakpoint.c (dprintf_breakpoint_ops): Remove its static.
4328 * breakpoint.h (dprintf_breakpoint_ops): Add extern.
4329 * mi/mi-cmd-break.c (ctype.h): New include.
4330 (gdb_obstack.h): New include.
4331 (mi_argv_to_format, mi_cmd_break_insert_1): New.
4332 (mi_cmd_break_insert): Call mi_cmd_break_insert_1.
4333 (mi_cmd_dprintf_insert): New.
4334 * mi/mi-cmds.c (mi_cmds): Add "dprintf-insert".
4335 * mi/mi-cmds.h (mi_cmd_dprintf_insert): New extern.
4336
4337 2013-05-20 Tom Tromey <tromey@redhat.com>
4338
4339 * python/py-prettyprint.c (search_pp_list): Decref 'attr'.
4340
4341 2013-05-20 Tom Tromey <tromey@redhat.com>
4342
4343 * python/py-value.c (valpy_get_dynamic_type): Simplify
4344 dynamic_type assignment. Use Py_XINCREF.
4345
4346 2013-05-20 Tom Tromey <tromey@redhat.com>
4347
4348 * python/py-type.c (typy_fields): Unconditionally decref 'r'.
4349
4350 2013-05-20 Tom Tromey <tromey@redhat.com>
4351
4352 * python/py-frame.c (frapy_older, frapy_newer, gdbpy_newest_frame)
4353 (gdbpy_selected_frame): Move object-construction code
4354 out of TRY_CATCH.
4355
4356 2013-05-20 Tom Tromey <tromey@redhat.com>
4357
4358 * python/py-arch.c (gdbpy_initialize_arch): Use
4359 gdb_pymodule_addobject.
4360 * python/py-block.c (gdbpy_initialize_blocks): Use
4361 gdb_pymodule_addobject.
4362 * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Use
4363 gdb_pymodule_addobject.
4364 * python/py-cmd.c (gdbpy_initialize_breakpoints): Use
4365 gdb_pymodule_addobject.
4366 * python/py-event.c (gdbpy_initialize_event_generic): Use
4367 gdb_pymodule_addobject.
4368 * python/py-evtregistry.c (gdbpy_initialize_eventregistry): Use
4369 gdb_pymodule_addobject.
4370 * python/py-evts.c (add_new_registry): Use
4371 gdb_pymodule_addobject.
4372 (gdbpy_initialize_py_events): Likewise.
4373 * python/py-finishbreakpoint.c
4374 (gdbpy_initialize_finishbreakpoints): Use
4375 gdb_pymodule_addobject.
4376 * python/py-frame.c (gdbpy_initialize_frames): Use
4377 gdb_pymodule_addobject.
4378 * python/py-function.c (gdbpy_initialize_functions): Use
4379 gdb_pymodule_addobject.
4380 * python/py-inferior.c (gdbpy_initialize_inferior): Use
4381 gdb_pymodule_addobject.
4382 * python/py-infthread.c (gdbpy_initialize_thread): Use
4383 gdb_pymodule_addobject.
4384 * python/py-objfile.c (gdbpy_initialize_objfile): Use
4385 gdb_pymodule_addobject.
4386 * python/py-param.c (gdbpy_initialize_parameters): Use
4387 gdb_pymodule_addobject.
4388 * python/py-progspace.c (gdbpy_initialize_pspace): Use
4389 gdb_pymodule_addobject.
4390 * python/py-symbol.c (gdbpy_initialize_symbols): Use
4391 gdb_pymodule_addobject.
4392 * python/py-symtab.c (gdbpy_initialize_symtabs): Use
4393 gdb_pymodule_addobject.
4394 * python/py-type.c (gdbpy_initialize_types): Use
4395 gdb_pymodule_addobject.
4396 * python/py-utils.c (gdb_pymodule_addobject): New function.
4397 * python/py-value.c (gdbpy_initialize_values): Use
4398 gdb_pymodule_addobject.
4399 * python/python-internal.h (gdb_pymodule_addobject): Declare.
4400 * python/python.c (_initialize_python): Use
4401 gdb_pymodule_addobject.
4402
4403 2013-05-20 Tom Tromey <tromey@redhat.com>
4404
4405 * python/py-cmd.c (cmdpy_completer): Use explicit decref.
4406 * python/py-param.c (get_set_value, get_show_value): Use
4407 explicit decrefs.
4408 * python/python.c (start_type_printers, apply_type_printers):
4409 Use explicit decrefs.
4410
4411 2013-05-20 Tom Tromey <tromey@redhat.com>
4412
4413 * python/py-evts.c (gdbpy_initialize_py_events): Don't
4414 incref the module.
4415
4416 2013-05-20 Tom Tromey <tromey@redhat.com>
4417
4418 * python/python.c (gdbpy_run_events): Decref the result
4419 of PyObject_CallObject.
4420
4421 2013-05-20 Tom Tromey <tromey@redhat.com>
4422
4423 * python/py-symtab.c (set_sal): Use
4424 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION. Return -1 on error.
4425 (symtab_and_line_to_sal_object): Update.
4426
4427 2013-05-20 Tom Tromey <tromey@redhat.com>
4428
4429 * python/py-param.c (compute_enum_values): Decref 'item'.
4430
4431 2013-05-20 Tom Tromey <tromey@redhat.com>
4432
4433 * mi/mi-main.c: Include python-internal.h.
4434 (mi_cmd_list_features): Check gdb_python_initialized.
4435 * python/py-inferior.c (python_on_normal_stop, python_on_resume)
4436 (python_inferior_exit, python_new_objfile, add_thread_object)
4437 (delete_thread_object, py_free_inferior): Check
4438 gdb_python_initialized.
4439 * python/py-prettyprint.c (apply_val_pretty_printer): Check
4440 gdb_python_initialized.
4441 * python/py-type.c (save_objfile_types): Check
4442 gdb_python_initialized.
4443 * python/python-internal.h (gdb_python_initialized): Declare.
4444 * python/python.c (ensure_python_env): Throw exception if
4445 Python not initialized.
4446 (before_prompt_hook, source_python_script_for_objfile)
4447 (start_type_printers, apply_type_printers,
4448 free_type_printers): Check gdb_python_initialized.
4449 * varobj.c (varobj_get_display_hint)
4450 (dynamic_varobj_has_child_method, update_dynamic_varobj_children)
4451 (install_new_value_visualizer, varobj_set_visualizer)
4452 (value_get_print_value): Check gdb_python_initialized.
4453
4454 2013-05-20 Tom Tromey <tromey@redhat.com>
4455
4456 * python/py-arch.c (gdbpy_initialize_arch): Return 'int'.
4457 Check errors.
4458 * python/py-auto-load.c (gdbpy_initialize_auto_load): Return 'int'.
4459 * python/py-block.c (gdbpy_initialize_blocks): Return 'int'.
4460 Check errors.
4461 * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Return 'int'.
4462 Check errors.
4463 * python/py-cmd.c (gdbpy_initialize_commands): Return 'int'.
4464 Check errors.
4465 * python/py-event.c (gdbpy_initialize_event): Return 'int'.
4466 Check errors.
4467 * python/py-event.h (GDBPY_NEW_EVENT_TYPE): Change generated
4468 init function to return 'int'.
4469 * python/py-evtregistry.c (gdbpy_initialize_eventregistry):
4470 Return 'int'. Check errors.
4471 * python/py-evts.c (gdbpy_initialize_py_events): Return 'int'.
4472 Check errors.
4473 * python/py-finishbreakpoint.c (gdbpy_initialize_finishbreakpoints):
4474 Return 'int'. Check errors.
4475 * python/py-frame.c (gdbpy_initialize_frames): Return 'int'.
4476 Check errors.
4477 * python/py-function.c (gdbpy_initialize_functions): Return 'int'.
4478 Check errors.
4479 * python/py-gdb-readline.c (gdbpy_initialize_gdb_readline):
4480 Check errors.
4481 * python/py-inferior.c (gdbpy_initialize_inferior): Return 'int'.
4482 Check errors.
4483 * python/py-infthread.c (gdbpy_initialize_thread): Return 'int'.
4484 Check errors.
4485 * python/py-lazy-string.c (gdbpy_initialize_lazy_string): Return 'int'.
4486 Check errors.
4487 * python/py-objfile.c (gdbpy_initialize_objfile): Return 'int'.
4488 Check errors.
4489 * python/py-param.c (gdbpy_initialize_parameters): Return 'int'.
4490 Check errors.
4491 * python/py-progspace.c (gdbpy_initialize_pspace): Return 'int'.
4492 Check errors.
4493 * python/py-symbol.c (gdbpy_initialize_symbols): Return 'int'.
4494 Check errors.
4495 * python/py-symtab.c (gdbpy_initialize_symtabs): Return 'int'.
4496 Check errors.
4497 * python/py-type.c (gdbpy_initialize_types): Return 'int'.
4498 Check errors.
4499 * python/py-value.c (gdbpy_initialize_values): Return 'int'.
4500 Check errors.
4501 * python/python-internal.h (gdbpy_initialize_auto_load,
4502 gdbpy_initialize_values, gdbpy_initialize_frames,
4503 gdbpy_initialize_symtabs, gdbpy_initialize_commands,
4504 gdbpy_initialize_symbols, gdbpy_initialize_symtabs,
4505 gdbpy_initialize_blocks, gdbpy_initialize_types,
4506 gdbpy_initialize_functions, gdbpy_initialize_pspace,
4507 gdbpy_initialize_objfile, gdbpy_initialize_breakpoints,
4508 gdbpy_initialize_finishbreakpoints,
4509 gdbpy_initialize_lazy_string, gdbpy_initialize_parameters,
4510 gdbpy_initialize_thread, gdbpy_initialize_inferior,
4511 gdbpy_initialize_eventregistry, gdbpy_initialize_event,
4512 gdbpy_initialize_py_events, gdbpy_initialize_stop_event,
4513 gdbpy_initialize_signal_event,
4514 gdbpy_initialize_breakpoint_event,
4515 gdbpy_initialize_continue_event,
4516 gdbpy_initialize_exited_event, gdbpy_initialize_thread_event,
4517 gdbpy_initialize_new_objfile_event, gdbpy_initialize_arch):
4518 Update. Use CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
4519 * python/python.c (gdb_python_initialized): New global.
4520 (gdbpy_initialize_events): Return 'int'. Check errors.
4521 (_initialize_python): Check errors. Set
4522 gdb_python_initialized.
4523
4524 2013-05-20 Tom Tromey <tromey@redhat.com>
4525
4526 * python/py-finishbreakpoint.c (bpfinishpy_out_of_scope):
4527 Decref the reslut of PyObject_CallMethod.
4528
4529 2013-05-20 Tom Tromey <tromey@redhat.com>
4530
4531 * python/py-event.c (gdbpy_initialize_event_generic): Return
4532 early if PyType_Ready fails.
4533
4534 2013-05-20 Tom Tromey <tromey@redhat.com>
4535
4536 * python/py-type.c (make_fielditem): Add gdb_assert_not_reached
4537 as 'default' in the switch.
4538
4539 2013-05-20 Tom Tromey <tromey@redhat.com>
4540
4541 * python/py-inferior.c (gdbpy_inferiors): Update. Hoist
4542 get_addr_from_python calls out of TRY_CATCH.
4543 (infpy_write_memory, infpy_search_memory): Likewise.
4544 * python/py-utils.c (get_addr_from_python): Return negative
4545 value on error. Use TRY_CATCH.
4546 * python/python-internal.h (get_addr_from_python): Use
4547 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
4548
4549 2013-05-20 Tom Tromey <tromey@redhat.com>
4550
4551 * python/py-event.c (evpy_emit_event): Decref the
4552 result of PyObject_CallFunctionObjArgs.
4553
4554 2013-05-20 Tom Tromey <tromey@redhat.com>
4555
4556 * python/py-cmd.c (cmdpy_completer): Use iterator protocol.
4557 Correctly decref.
4558
4559 2013-05-20 Tom Tromey <tromey@redhat.com>
4560
4561 * python/py-cmd.c (cmdpy_init): Decref 'ds_obj'.
4562
4563 2013-05-20 Tom Tromey <tromey@redhat.com>
4564
4565 * python/py-event.h (gdbpy_initialize_event_generic): Use
4566 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
4567 * python/py-evts.c (add_new_registry): Use
4568 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
4569 * python/python-internal.h
4570 (CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION): New macro.
4571
4572 2013-05-20 Tom Tromey <tromey@redhat.com>
4573
4574 * python/py-arch.c (archpy_disassemble): Update.
4575 * python/py-type.c (typy_get_composite, typy_lookup_typename)
4576 (typy_lookup_type): Use GDB_PY_HANDLE_EXCEPTION.
4577 * python/py-utils.c (gdbpy_convert_exception): Return 'void'.
4578 * python/python-internal.h (CPYCHECKER_SETS_EXCEPTION): New
4579 macro.
4580 (GDB_PY_HANDLE_EXCEPTION): Update.
4581 (gdbpy_convert_exception): Update. Use CPYCHECKER_SETS_EXCEPTION.
4582
4583 2013-05-20 Tom Tromey <tromey@redhat.com>
4584
4585 * python/python-internal.h (events_object_type): Remove.
4586
4587 2013-05-20 Tom Tromey <tromey@redhat.com>
4588
4589 * python/py-event.h (evpy_emit_event): Use
4590 CPYCHECKER_STEALS_REFERENCE_TO_ARG.
4591 * python/python-internal.h (CPYCHECKER_STEALS_REFERENCE_TO_ARG):
4592 New macro.
4593
4594 2013-05-20 Tom Tromey <tromey@redhat.com>
4595
4596 * py-evtregistry.c (create_event_object): Decref
4597 eventregistry_object if PyList_New fails.
4598
4599 2013-05-20 Tom Tromey <tromey@redhat.com>
4600
4601 * py-cmd.c (gdbpy_string_to_argv): Check result of
4602 PyList_New.
4603
4604 2013-05-20 Tom Tromey <tromey@redhat.com>
4605
4606 * python/python.c (before_prompt_hook): Add cleanup to
4607 decref 'hook'.
4608
4609 2013-05-20 Tom Tromey <tromey@redhat.com>
4610
4611 * python/py-function.c (fnpy_init): Decref result of
4612 PyObject_GetAttrString.
4613
4614 2013-05-20 Tom Tromey <tromey@redhat.com>
4615
4616 * python/py-threadevent.c (get_event_thread): Use
4617 CPYCHECKER_RETURNS_BORROWED_REF.
4618 * python/python-internal.h (CPYCHECKER_RETURNS_BORROWED_REF):
4619 New define.
4620 (pspace_to_pspace_object, objfile_to_objfile_object)
4621 (find_thread_object): Use it.
4622
4623 2013-05-20 Tom Tromey <tromey@redhat.com>
4624
4625 * python/py-arch.c (arch_object_type): Use
4626 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
4627 * python/py-block.c (block_syms_iterator_object_type):
4628 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
4629 * python/py-bpevent.c (breakpoint_event_object_type):
4630 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
4631 * python/py-cmd.c (cmdpy_object_type): Use
4632 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
4633 * python/py-continueevent.c (continue_event_object_type):
4634 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
4635 * python/py-event.h (GDBPY_NEW_EVENT_TYPE):
4636 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
4637 * python/py-events.h (thread_event_object_type):
4638 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
4639 * python/py-evtregistry.c (eventregistry_object_type): Use
4640 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
4641 * python/py-exitedevent.c (exited_event_object_type):
4642 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
4643 * python/py-finishbreakpoint.c (finish_breakpoint_object_type):
4644 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
4645 * python/py-function.c (fnpy_object_type): Use
4646 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
4647 * python/py-inferior.c (inferior_object_type, membuf_object_type):
4648 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
4649 * python/py-infthread.c (thread_object_type): Use
4650 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
4651 * python/py-lazy-string.c (lazy_string_object_type):
4652 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
4653 * python/py-newobjfileevent.c (new_objfile_event_object_type):
4654 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
4655 * python/py-objfile.c (objfile_object_type): Use
4656 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
4657 * python/py-param.c (parmpy_object_type):
4658 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
4659 * python/py-progspace.c (pspace_object_type):
4660 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
4661 * python/py-signalevent.c (signal_event_object_type):
4662 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
4663 * python/py-symtab.c (symtab_object_type, sal_object_type): Use
4664 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
4665 * python/py-type.c (type_object_type, field_object_type)
4666 (type_iterator_object_type): Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
4667 * python/py-internal.h (CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF): New
4668 define.
4669 (value_object_type, block_object_type, symbol_object_type)
4670 (event_object_type, stop_event_object_type, breakpoint_object_type)
4671 (frame_object_type): Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
4672
4673 2013-05-20 Andreas Tobler <andreas@fgznet.ch>
4674
4675 * Makefile.in (ALL_TARGET_OBS): Add ppcfbsd-tdep.o.
4676 (ALLDEPFILES): Add ppcfbsd-nat.c and ppcfbsd-tdep.c.
4677
4678 2013-05-20 Doug Evans <dje@google.com>
4679
4680 When reading CU, stay in DWO. Be more tolerent of bad debug info.
4681 For Fission.
4682 * dwarf2read.c (struct dwarf2_per_cu_data): New member
4683 reading_dwo_directly.
4684 (struct signatured_type): New member dwo_unit.
4685 (struct die_reader_specs): New member comp_dir.
4686 (create_signatured_type_table_from_index): Use malloc for
4687 all_type_units instead of objfile's obstack.
4688 (create_all_type_units): Ditto.
4689 (fill_in_sig_entry_from_dwo_entry): New function.
4690 (add_type_unit): New function.
4691 (lookup_dwo_signatured_type): New function.
4692 (lookup_dwp_signatured_type): New function.
4693 (lookup_signatured_type): New arg cu. All callers updated.
4694 (init_cu_die_reader): Initialize comp_dir.
4695 (read_cutu_die_from_dwo): New arg stub_comp_dir. All callers updated.
4696 Change assert of matching type signatures to call error on mismatch.
4697 (lookup_dwo_unit): Add assert.
4698 (init_tu_and_read_dwo_dies): New function.
4699 (init_cutu_and_read_dies): Call it.
4700 (build_type_unit_groups): Handle case of no type unit groups created.
4701 (hash_dwo_file, eq_dwo_file): Handle missing comp_dir.
4702 (lookup_dwo_cutu): Tweak complaint.
4703 (dwarf2_free_abbrev_table): Check for NULL abbrev_table.
4704 (dwarf2_per_objfile_free): Free all_type_units.
4705
4706 2013-05-20 Joel Brobecker <brobecker@adacore.com>
4707
4708 * windows-nat.c (handle_unload_dll): Add missing empty line.
4709
4710 2013-05-20 Joel Brobecker <brobecker@adacore.com>
4711
4712 * dwarf2read.c (prototyped_function_p): New function.
4713 (read_subroutine_type): Use it.
4714
4715 2013-05-20 Joel Brobecker <brobecker@adacore.com>
4716
4717 * rs6000-aix-tdep.c: De-indent some example code provided
4718 as a comment.
4719
4720 2013-05-17 Edjunior Machado <emachado@linux.vnet.ibm.com>
4721
4722 * ppc-linux-nat.c (ppc_linux_region_ok_for_hw_watchpoint): Check if the
4723 region is ok for a hardware watchpoint using the new ptrace interface
4724 on Power servers.
4725
4726 2013-05-17 Doug Evans <dje@google.com>
4727
4728 * NEWS: Mention new maintenance commands check-symtabs, and
4729 expand-symtabs, and renamed check-psymtabs.
4730 * psymtab.c (maintenance_check_psymtabs): Renamed from
4731 maintenance_check_symtabs. Only process already-expanded symbol
4732 tables.
4733 (_initialize_psymtab): Update.
4734 * symmisc.c (maintenance_check_symtabs): New function.
4735 (maintenance_expand_name_matcher): New function
4736 (maintenance_expand_file_matcher): New function
4737 (maintenance_expand_symtabs): New function.
4738 (_initialize_symmisc): Add "mt check-symtabs" and "mt expand-symtabs"
4739 commands.
4740
4741 2013-05-17 Tom Tromey <tromey@redhat.com>
4742
4743 * python/py-inferior.c (infpy_read_memory): Don't call
4744 PyErr_SetString if PyObject_New fails.
4745 * python/py-frame.c (frame_info_to_frame_object): Don't call
4746 PyErr_SetString if PyObject_New fails.
4747
4748 2013-05-17 Pavel Chupin <pavel.v.chupin@intel.com>
4749
4750 * acinclude.m4: Add check for dlopen in libdl.
4751 * configure.ac: Ditto.
4752 * configure: Regenerate.
4753
4754 2013-05-17 Phil Muldoon <pmuldoon@redhat.com>
4755
4756 * frame.c (frame_stash): Convert to htab.
4757 (frame_addr_hash): New function.
4758 (frame_addr_hash_eq): New function.
4759 (frame_stash_create): Convert function to create
4760 a hash table.
4761 (frame_stash_add): Convert function to add an entry to a hash
4762 table.
4763 (frame_stash_find): Convert function to search the hash table.
4764 (frame_stash_invalidate): Convert function to empty the hash
4765 table.
4766 (get_frame_id): Only add to stash if a frame_id is created.
4767 (_initialize_frame): Call frame_stash_create.
4768
4769 2013-05-16 Yue Lu <hacklu.newborn@gmail.com> (tiny change)
4770
4771 * configure.ac: Ensure MIG is available when building for GNU Hurd
4772 hosts.
4773 * configure: Regenerate.
4774
4775 2013-05-16 Joel Brobecker <brobecker@adacore.com>
4776
4777 * dwarf2read.c (set_cu_language): Add DW_LANG_UPC handling.
4778
4779 2013-05-16 Joel Brobecker <brobecker@adacore.com>
4780
4781 * ada-lang.c (ada_make_symbol_completion_list): Make sure
4782 all cleanups are done before returning from this function.
4783
4784 2013-05-15 Joel Brobecker <brobecker@adacore.com>
4785
4786 * utils.h: #include "exceptions.h".
4787 (enum errors): Remove partial declaration.
4788
4789 2013-05-15 Joel Brobecker <brobecker@adacore.com>
4790
4791 * gdbarch.sh (core_xfer_shared_libraries_aix): New method.
4792 * gdbarch.h, gdbarch.c: Regenerate.
4793 * corelow.c (core_xfer_partial): Add TARGET_OBJECT_LIBRARIES_AIX
4794 handling.
4795
4796 * rs6000-aix-tdep.h: New file.
4797 * Makefile.in (HFILES_NO_SRCDIR): Add rs6000-aix-tdep.h.
4798 * rs6000-aix-tdep.c: Include "rs6000-aix-tdep.h" and
4799 "xml-utils.h".
4800 (struct field_info, struct ld_info_desc): New types.
4801 (ld_info32_desc, ld_info64_desc): New static constants.
4802 (struct ld_info): New type.
4803 (rs6000_aix_extract_ld_info): New function.
4804 (rs6000_aix_shared_library_to_xml): Likewise.
4805 (rs6000_aix_ld_info_to_xml): Likewise.
4806 (rs6000_aix_core_xfer_shared_libraries_aix): Likewise.
4807 (rs6000_aix_init_osabi): Add call to
4808 set_gdbarch_core_xfer_shared_libraries_aix.
4809 * rs6000-nat.c: Add "rs6000-aix-tdep.h" include.
4810 Remove "xml-utils.h" include.
4811 (LdInfo): Delete typedef.
4812 (ARCH64_DECL, LDI_FIELD, LDI_NEXT, LDI_FD, LDI_FILENAME):
4813 Delete macros.
4814 (rs6000_ptrace_ldinfo): Change return type to gdb_byte *.
4815 Adjust code accordingly.
4816 (rs6000_core_ldinfo): Delete, folded into
4817 rs6000_aix_core_xfer_shared_libraries_aix.
4818 (rs6000_xfer_shared_library): Delete.
4819 (rs6000_xfer_shared_libraries): Reimplement.
4820
4821 2013-05-15 Markus Metzger <markus.t.metzger@intel.com>
4822
4823 * record.c (record_goto_cmdlist): New.
4824 (cmd_record_goto): Split into this ...
4825 (cmd_record_goto_begin): ... this
4826 (cmd_record_goto_end): ... and this.
4827 (_initialize_record): Change "record goto" to prefix command.
4828 Add commands for "record goto begin" and "record goto end".
4829 Add an alias for "record goto start" to "record goto begin".
4830
4831 2013-05-14 Jan Kratochvil <jan.kratochvil@redhat.com>
4832
4833 * linespec.c (convert_linespec_to_sals): New comment for
4834 SOURCE_FILENAME assignment.
4835
4836 2013-05-14 Jan Kratochvil <jan.kratochvil@redhat.com>
4837
4838 * cleanups.c (restore_my_cleanups): Replace gdb_assert by
4839 internal_warning.
4840
4841 2013-05-14 Tom Tromey <tromey@redhat.com>
4842
4843 * eval.c (parse_and_eval_long): Make 'exp' const.
4844 * value.h (parse_and_eval_long): Update.
4845
4846 2013-05-14 Tom Tromey <tromey@redhat.com>
4847
4848 * ui-file.c (gdb_fopen): Make arguments const.
4849 * ui-file.h (gdb_fopen): Make arguments const.
4850
4851 2013-05-14 Tom Tromey <tromey@redhat.com>
4852
4853 * remote.c (remote_set_trace_notes): Make arguments const.
4854 * target.c (update_current_target): Update cast.
4855 * target.h (to_set_trace_notes): Make arguments const.
4856
4857 2013-05-14 Tom Tromey <tromey@redhat.com>
4858
4859 * go32-nat.c (go32_terminal_info): Make 'args' const.
4860 * inferior.h (child_terminal_info): Update.
4861 * inflow.c (child_terminal_info): Make 'args' const.
4862 * target.c (default_terminal_info): Make 'args' const.
4863 (debug_to_terminal_save_ours): Likewise.
4864 * target.h (struct target_ops) <to_terminal_info>: Make argument
4865 const.
4866
4867 2013-05-13 Tom Tromey <tromey@redhat.com>
4868
4869 * gcore.c (create_gcore_bfd): Make 'filename' const.
4870 * gcore.h (create_gcore_bfd): Make 'filename' const.
4871 * record-full.c (record_full_save): Make 'recfilename' const.
4872 * target.c (target_save_record): Make 'filename' const.
4873 * target.h (struct target_ops) <to_save_record>: Make 'filename'
4874 const.
4875 (target_save_record): Likewise.
4876
4877 2013-05-13 Tom Tromey <tromey@redhat.com>
4878
4879 PR gdb/15338:
4880 * dwarf2read.c (dwarf2_record_block_ranges): Ensure that the
4881 ranges section has been read.
4882
4883 2013-05-13 Tom Tromey <tromey@redhat.com>
4884
4885 PR exp/15364:
4886 * eval.c (evaluate_subexp_standard) <STRUCTOP_STRUCT,
4887 STRUCTOP_PTR>: Return a not_lval value for
4888 EVAL_AVOID_SIDE_EFFECTS.
4889 * opencl-lang.c (evaluate_subexp_opencl): Return a not_lval value
4890 for EVAL_AVOID_SIDE_EFFECTS.
4891
4892 2013-05-13 Joel Brobecker <brobecker@adacore.com>
4893
4894 * rs6000-aix-tdep.c (rs6000_push_dummy_call): Convert
4895 floating point registers to register type before storing
4896 value.
4897 * rs6000-lynx178-tdep.c (rs6000_lynx178_push_dummy_call):
4898 Likewise.
4899
4900 2013-05-10 Joel Brobecker <brobecker@adacore.com>
4901 Tom Tromey <tromey@redhat.com>
4902
4903 * common/filestuff.c (mark_fd_no_cloexec, unmark_fd_no_cloexec):
4904 New functions.
4905 * common/filestuff.c (mark_fd_no_cloexec, unmark_fd_no_cloexec):
4906 Declare.
4907 * darwin-nat.c (darwin_pre_ptrace): Use mark_fd_no_cloexec.
4908 (darwin_ptrace_him): Use unmark_fd_no_cloexec.
4909 * inf-ttrace.c (do_cleanup_pfds): Use unmark_fd_no_cloexec.
4910 (inf_ttrace_prepare): Use mark_fd_no_cloexec.
4911
4912 2013-05-10 Freddie Chopin <freddie_chopin@op.pl>
4913 Tom Tromey <tromey@redhat.com>
4914
4915 PR build/15414:
4916 * configure: Rebuild.
4917 * configure.ac (build_warnings): Do not use -Wformat-nonliteral
4918 with -Wno-format.
4919
4920 2013-05-10 Pedro Alves <palves@redhat.com>
4921
4922 * remote.c (_initialize_remote): Fix spelling of
4923 qXfer:traceframe-info:read packet in packet config command.
4924
4925 2013-05-10 David Taylor <dtaylor@emc.com>
4926
4927 PR remote/15455
4928
4929 * remote.c (remote_trace_set_readonly_regions): Do not overwrite
4930 "QTro" at start of packet.
4931
4932 2013-05-10 Joel Brobecker <brobecker@adacore.com>
4933
4934 * solib-aix.c (solib_aix_relocate_section_addresses):
4935 For the .bss section action, apply the same offset as
4936 the .data section.
4937
4938 2013-05-10 Joel Brobecker <brobecker@adacore.com>
4939
4940 * solib-aix.c (solib_aix_relocate_section_addresses):
4941 Remove FIXME comment.
4942
4943 2013-05-10 Joel Brobecker <brobecker@adacore.com>
4944
4945 PR tdep/15420:
4946 * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
4947 New functions, directly copied from sparc-sol-thread.c.
4948 * sparc-sol-thread.c: Delete.
4949 * configure.ac: Remove code handling sparc-solaris-thread.c.
4950 * configure: Regenerate.
4951
4952 2013-05-10 Phil Muldoon <pmuldoon@redhat.com>
4953
4954 * stack.c (backtrace_command_1): Add "no-filters", and Python frame
4955 filter logic.
4956 (backtrace_command): Add "no-filters" option parsing.
4957 (_initialize_stack): Alter help to reflect "no-filters" option.
4958 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-framefilter.o
4959 (SUBDIR_PYTHON_SRCS): Add py-framefilter.c
4960 (py-frame.o): Add target
4961 * data-directory/Makefile.in (PYTHON_DIR): Add Python frame
4962 filter files.
4963 * python/python.h: Add new frame filter constants, and flag enum.
4964 (apply_frame_filter): Add definition.
4965 * python/python.c (apply_frame_filter): New non-Python
4966 enabled function.
4967 * python/py-utils.c (py_xdecref): New function.
4968 (make_cleanup_py_xdecref): Ditto.
4969 * python/py-objfile.c: Declare frame_filters dictionary.
4970 (objfpy_dealloc): Add frame_filters dealloc.
4971 (objfpy_new): Initialize frame_filters attribute.
4972 (objfile_to_objfile_object): Ditto.
4973 (objfpy_get_frame_filters): New function.
4974 (objfpy_set_frame_filters): New function.
4975 * python/py-progspace.c: Declare frame_filters dictionary.
4976 (pspy_dealloc): Add frame_filters dealloc.
4977 (pspy_new): Initialize frame_filters attribute.
4978 (pspacee_to_pspace_object): Ditto.
4979 (pspy_get_frame_filters): New function.
4980 (pspy_set_frame_filters): New function.
4981 * python/py-framefilter.c: New file.
4982 * python/lib/gdb/command/frame_filters.py: New file.
4983 * python/lib/gdb/frames.py: New file.
4984 * python/lib/gdb/__init__.py: Initialize global frame_filters
4985 dictionary
4986 * python/lib/gdb/FrameDecorator.py: New file.
4987 * python/lib/gdb/FrameIterator.py: New file.
4988 * mi/mi-cmds.c (mi_cmds): Add frame filters command.
4989 * mi/mi-cmds.h: Declare.
4990 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames): Add
4991 --no-frame-filter logic, and Python frame filter logic.
4992 (stack_enable_frame_filters): New function.
4993 (parse_no_frame_option): Ditto.
4994 (mi_cmd_stack_list_frames): Add --no-frame-filter and Python frame
4995 filter logic.
4996 (mi_cmd_stack_list_locals): Ditto.
4997 (mi_cmd_stack_list_args): Ditto.
4998 (mi_cmd_stack_list_variables): Ditto.
4999 * NEWS: Add frame filter note.
5000
5001 2013-05-09 Doug Evans <dje@google.com>
5002
5003 * symfile.c (syms_from_objfile_1): Delete args offsets, num_offsets.
5004 All callers updated.
5005 (syms_from_objfile): Ditto. Make static.
5006 (symbol_file_add_with_addrs): Renamed from
5007 symbol_file_add_with_addrs_or_offsets. Delete args offsets,
5008 num_offsets. All callers updated.
5009 * symfile.h (syms_from_objfile): Delete.
5010
5011 * symfile.c (decrement_reading_symtab): Add assert.
5012 (increment_reading_symtab): Ditto.
5013
5014 2013-05-09 Joel Brobecker <brobecker@adacore.com>
5015
5016 * source.c (forward_search_command): Replace call to getc
5017 by call to fgetc.
5018 (reverse_search_command): Likewise.
5019
5020 2013-05-08 Doug Evans <dje@google.com>
5021
5022 * psymtab.c (expand_symtabs_matching_via_partial): Fix file name
5023 matching test.
5024
5025 2013-05-08 Joel Brobecker <brobecker@adacore.com>
5026
5027 * sol-thread.c (info_cb): Factorize the code a little.
5028
5029 2013-05-08 Joel Brobecker <brobecker@adacore.com>
5030
5031 * sol-thread.c (info_cb): Rework the output of the "maintenance
5032 info sol-threads" command a bit.
5033
5034 2013-05-08 Joel Brobecker <brobecker@adacore.com>
5035
5036 * sol-thread.c (info_cb) [ti.ti_state == TD_THR_SLEEP]:
5037 Replace ti.ti_startfunc by ti.ti_pc.
5038
5039 2013-05-08 Joel Brobecker <brobecker@adacore.com>
5040
5041 * solib-aix.c (solib_aix_free_library_list): New function
5042 for the case where HAVE_LIBEXPAT is not defined.
5043
5044 2013-05-07 Sergio Durigan Junior <sergiodj@redhat.com>
5045
5046 PR breakpoints/15413:
5047 * breakpoint.c (condition_completer): Simplify the code to
5048 disconsider multiple locations of breakpoints when completing the
5049 "condition" command.
5050
5051 2013-05-07 Pierre Muller <muller@sourceware.org>
5052
5053 * common/linux-btrace.c: ARI fix: Include "gdb_wait.h"
5054 instead of <sys/wait.h>.
5055
5056 2013-05-07 Pierre Muller <muller@sourceware.org>
5057
5058 * nios2-tdep.c (nios2_dwarf_reg_to_regnum): ARI fix: remove
5059 trailing new line from warning message.
5060
5061 2013-05-07 Pierre Muller <muller@sourceware.org>
5062
5063 * contrib/ari/gdb_ari.sh (SOLIB_ADD, SOLIB_CREATE_INFERIOR_HOOK)
5064 (PC_SOLIB): Change type from ari_deprecate to ari_regression.
5065
5066 2013-05-07 Joel Brobecker <brobecker@adacore.com>
5067
5068 * rs6000-nat.c (rs6000_core_ldinfo): Remove '\n' at end of
5069 error message (ARI fix).
5070
5071 2013-05-07 Joel Brobecker <brobecker@adacore.com>
5072
5073 * features/library-list-aix.dtd: Replace library-list by
5074 library-list-aix.
5075 * rs6000-nat.c: Replace library-list by library-list-aix
5076 throughout.
5077 * solib-aix.c: Likewise.
5078
5079 2013-05-07 Joel Brobecker <brobecker@adacore.com>
5080
5081 * target.h (enum target_object) [TARGET_OBJECT_LIBRARIES_AIX]:
5082 Renames TARGET_OBJECT_AIX_LIBRARIES.
5083 * rs6000-nat.c: Replace TARGET_OBJECT_AIX_LIBRARIES with
5084 TARGET_OBJECT_LIBRARIES_AIX throughout.
5085 * solib-aix.c: Likwise.
5086
5087 2013-05-07 Yao Qi <yao@codesourcery.com>
5088
5089 * solib-dsbt.c (struct dsbt_info) <enable_break2_done>: Remove.
5090 (get_dsbt_info, enable_break, dsbt_clear_solib): Update.
5091
5092 2013-05-07 Yao Qi <yao@codesourcery.com>
5093
5094 * solib-dsbt.c (enable_break): Declare.
5095 (dsbt_current_sos): Remove call to enable_break2.
5096 (enable_break2): Rename to enable_break. Set solib breakpoint
5097 on '_dl_debug_state'.
5098 (enable_break): Remove.
5099
5100 2013-05-07 Luis Machado <lgustavo@codesourcery.com>
5101
5102 * ppc-linux-nat.c (ppc_linux_new_thread): Clear the new thread's
5103 debug state prior to replicating existing hardware watchpoints or
5104 breakpoints.
5105
5106 2013-05-07 Jan Kratochvil <jan.kratochvil@redhat.com>
5107
5108 * gcore.c (gcore_create_callback): Ignore sections with
5109 separate_debug_objfile_backlink != NULL.
5110
5111 2013-05-06 Sandra Loosemore <sandra@codesourcery.com>
5112 Andrew Jenner <andrew@codesourcery.com>
5113 Chung-Lin Tang <cltang@codesourcery.com>
5114 Julian Brown <julian@codesourcery.com>
5115
5116 Based on the nios2-elf port from Altera Corporation.
5117
5118 * Makefile.in (ALL_TARGET_OBS): Add nios2-tdep.o and
5119 nios2-linux-tdep.o.
5120 (HFILES_NO_SRCDIR): Add nios2-tdep.h.
5121 (ALLDEPFILES): Add nios2-tdep.c and nios2-linux-tdep.c.
5122 * configure.tgt: Add nios2*-*-linux* and nios2*-*-* targets.
5123 * nios2-tdep.h: New.
5124 * nios2-tdep.c: New.
5125 * nios2-linux-tdep.c: New.
5126 * features/Makefile (WHICH): Add nios2-linux.
5127 (nios2-linux-expedite): Set.
5128 * features/nios2-cpu.xml: New.
5129 * features/nios2.xml: New.
5130 * features/nios2-linux.xml: New.
5131 * features/nios2.c: New (autogenerated).
5132 * features/nios2-linux.c: New (autogenerated).
5133 * regformats/nios2-linux.dat: New (autogenerated).
5134 * NEWS (Changes since GDB 7.6): Add new Nios II targets
5135 and commands.
5136
5137 2013-05-06 Doug Evans <dje@google.com>
5138
5139 * symfile.c: Whitespace cleanup.
5140
5141 * solist.h (struct target_so_ops): New member clear_so.
5142 * solib-svr4.c (svr4_clear_so): New function.
5143 (_initialize_svr4_solib): Set svr4_so_ops.clear_so.
5144 * solib.c (clear_so): Renamed from free_so_symbols.
5145 All callers updated. Call target clear_so if it exists.
5146
5147 2013-05-06 Tom Tromey <tromey@redhat.com>
5148
5149 * ada-lang.c (ada_value_primitive_packed_val): Don't
5150 call value_incref.
5151 * value.c (set_value_parent): Incref the new parent and decref
5152 the old parent.
5153 (value_copy, value_primitive_field): Use set_value_parent.
5154
5155 2013-05-06 Tom Tromey <tromey@redhat.com>
5156
5157 * dwarf2loc.c (invalid_synthetic_pointer): Move earlier.
5158 (indirect_pieced_value): Call dwarf2_fetch_constant_bytes
5159 if needed.
5160 * dwarf2loc.h (dwarf2_fetch_constant_bytes): Declare.
5161 * dwarf2read.c (write_constant_as_bytes)
5162 (dwarf2_fetch_constant_bytes): New functions.
5163
5164 2013-05-06 Tom Tromey <tromey@redhat.com>
5165
5166 * dwarf2read.c (dwarf2_const_value_data): Remove unused
5167 parameters.
5168 (dwarf2_const_value_attr): Update.
5169
5170 2013-05-06 Tom Tromey <tromey@redhat.com>
5171
5172 * somread.c (som_symfile_offsets): Add 'const' to addrs.
5173 * machoread.c (macho_symfile_offsets): Add 'const' to addrs.
5174 * xcoffread.c (xcoff_symfile_offsets): Add 'const' to addrs.
5175 Remove declaration.
5176
5177 2013-05-06 Tom Tromey <tromey@redhat.com>
5178
5179 * dwarf2read.c (dwarf2_const_value_attr): Use 'obstack', not
5180 objfile's obstack.
5181
5182 2013-05-06 Doug Evans <dje@google.com>
5183
5184 * dbxread.c (process_one_symbol): Constify section_offsets parameter.
5185 * stabsread.h (process_one_symbol): Update declaration.
5186 * dwarf2read.c (dw2_relocate): Constify new_offsets, delta parameters.
5187 * elfread.c (elf_symfile_relocate_probe): Ditto.
5188 * psymtab.c (relocate_psymtabs): Ditto.
5189 * objfiles.c (objfile_relocate1): Constify new_offsets parameter.
5190 (objfile_relocate): Ditto.
5191 * objfiles.h (objfile_relocate): Update declaration.
5192 * symfile.c (relative_addr_info_to_section_offsets): Constify
5193 addrs parameter.
5194 (default_symfile_offsets): Ditto.
5195 (syms_from_objfile_1): Constify offsets parameter.
5196 (syms_from_objfile): Ditto.
5197 (symbol_file_add_with_addrs_or_offsets): Ditto.
5198 (symfile_map_offsets_to_segments): Constify data parameter.
5199 * symfile.h (struct quick_symbol_functions): Constify new_offsets,
5200 delta parameters of member relocate.
5201 (struct sym_probe_fns): Constify new_offsets,
5202 delta parameters of member sym_relocate_probe.
5203 (struct sym_fns): Constify section_addr_info parameter of member
5204 sym_offsets.
5205 (relative_addr_info_to_section_offsets): Update declaration.
5206 (default_symfile_offsets): Ditto.
5207 (syms_from_objfile): Ditto.
5208 (symfile_map_offsets_to_segments): Ditto.
5209
5210 * symfile.c (syms_from_objfile_1): Use correct section count when
5211 objfile->sf == NULL.
5212
5213 2013-05-06 Mike Frysinger <vapier@gentoo.org>
5214
5215 * common/linux-btrace.c (intel_supports_btrace): Fix indentation.
5216
5217 2013-05-06 Doug Evans <dje@google.com>
5218
5219 * psympriv.h (struct partial_symtab): Augment comment for member
5220 section_offsets.
5221
5222 2013-05-06 Joel Brobecker <brobecker@adacore.com>
5223
5224 Reimplement shared library support on ppc-aix...
5225 * target.h (TARGET_OBJECT_AIX_LIBRARIES): New target_object enum.
5226 * features/library-list-aix.dtd: New file.
5227 * solib-aix.h, solib-aix.c: New file.
5228 * rs6000-aix-tdep.c: #include "solib.h" and "solib-aix.h".
5229 (rs6000_find_toc_address_hook): Delete.
5230 (rs6000_push_dummy_call): Rewrite code setting the TOC value.
5231 (rs6000_aix_init_osabi): Register solib_aix_so_ops.
5232 * rs6000-nat.c: Remove "xcoffsolib.h" include. Include
5233 "xml-utils.h".
5234 (map_vmap, vmap_exec, vmap_ldinfo, add_vmap, objfile_symbol_add)
5235 (vmap_symtab, fixup_breakpoints): Delete.
5236 (rs6000_xfer_shared_libraries): New function.
5237 (rs6000_xfer_partial): Add TARGET_OBJECT_AIX_LIBRARIES handling.
5238 (vmap_secs, bss_data_overlap, vmap_add_symbols): Delete.
5239 (xcoff_relocate_symtab, xcoff_relocate_core): Delete.
5240 (rs6000_ptrace_ldinfo, rs6000_core_ldinfo)
5241 (rs6000_xfer_shared_library): New function.
5242 (find_toc_address): Delete.
5243 (_initialize_rs6000_nat): Do not set rs6000_find_toc_address_hook.
5244 * rs6000-tdep.h (rs6000_find_toc_address_hook): Remove.
5245 * xcoffread.c (record_minimal_symbol): Reloate symbol address
5246 before creating minimal symbol. Adjust function description
5247 accordingly.
5248 (scan_xcoff_symtab): Replace call to
5249 prim_record_minimal_symbol_and_info by call to
5250 record_minimal_symbol.
5251 (xcoff_symfile_offsets): Reimplement mostly as a wrapper
5252 around default_symfile_offsets.
5253 * configure.tgt: Add solib-aix.o to gdb_target_obs for
5254 powerpc-aix targets.
5255 * config/rs6000/nm-rs6000.h: Delete.
5256 * config/powerpc/aix.mh (NAT_FILE): Delete.
5257 (NATDEPFILES): Remove xcoffsolib.o.
5258 * Makefile.in (XMLFILES): Add library-list-aix.dtd.
5259 (ALL_TARGET_OBS): Add solib-aix.o.
5260 (HFILES_NO_SRCDIR): Remove xcoffsolib.h and
5261 config/rs6000/nm-rs6000.h. Add solib-aix.h.
5262 (ALLDEPFILES): Add solib-aix.c. Remove xcoffsolib.c.
5263 * xcoffsolib.h, xcoffsolib.c: Delete.
5264
5265 * solib.c (reload_shared_libraries): Remove reference to
5266 SOLIB_CREATE_INFERIOR_HOOK.
5267 * breakpoint.c (handle_solib_event): Remove reference to SOLIB_ADD.
5268 (disable_breakpoints_in_shlibs): Remove reference to PC_SOLIB.
5269 (momentary_bkpt_re_set): Replace SOLIB_ADD by solib_add in
5270 comment.
5271 * corelow.c (deprecated_core_resize_section_table): Delete.
5272 * exec.c: Remove include of xcoffsolib.h".
5273 (map_vmap, vmap): Delete.
5274 (exec_close_1): Remove references to vmap.
5275 (exec_file_attach): Remove vmap handling code, and reference
5276 to DEPRECATED_IBM6000_TARGET.
5277 (bfdsec_to_vmap): Delete.
5278 (exec_files_info): Remove block of code handling VMAP.
5279 * infcmd.c (post_create_inferior): Remove reference to
5280 SOLIB_CREATE_INFERIOR_HOOK and SOLIB_ADD.
5281 * infrun.c (follow_exec): Remove reference to
5282 SOLIB_CREATE_INFERIOR_HOOK.
5283 * stack.c (print_frame): Remove reference to PC_SOLIB.
5284 * solib-dsbt.c (dsbt_current_sos): Adjust comment.
5285 (dsbt_relocate_main_executable): Likewise.
5286 * solib-frv.c (frv_current_sos): Likewise.
5287
5288 2013-05-06 Joel Brobecker <brobecker@adacore.com>
5289
5290 * sol-thread.c (rw_common): Cast BUF to "gdb_byte *" in calls
5291 to target_write_memory and target_read_memory.
5292
5293 2013-05-06 Joel Brobecker <brobecker@adacore.com>
5294
5295 * darwin-nat.c (darwin_setup_fake_stop_event): New function.
5296 (darwin_attach): Adjust using darwin_setup_fake_stop_event.
5297
5298 2013-05-06 Joel Brobecker <brobecker@adacore.com>
5299
5300 * darwin-nat.c: Replace all "%x" instances in format strings
5301 into "0x%x" throughout.
5302
5303 2013-05-06 Joel Brobecker <brobecker@adacore.com>
5304
5305 * darwin-nat.c (darwin_mourn_inferior): Replace call to
5306 gdb_assert by call to MACH_CHECK_ERROR.
5307 (darwin_attach_pid): Raise an error rather than a failed
5308 assertion when various system calls failed. Report a warning
5309 instead of raising a failed assertion when PREV_NOT is not NULL
5310 after call to mach_port_request_notification.
5311 (darwin_ptrace_me): Raise an error rather than a failed
5312 assertion when read returns nonzero.
5313
5314 2013-05-06 Joel Brobecker <brobecker@adacore.com>
5315
5316 * amd64-darwin-tdep.c: Remove #include "gdb_assert.h".
5317
5318 2013-05-05 Jan Kratochvil <jan.kratochvil@redhat.com>
5319
5320 * cleanups.c (restore_my_cleanups): New gdb_assert for SENTINEL_CLEANUP.
5321
5322 2013-05-05 Jan Kratochvil <jan.kratochvil@redhat.com>
5323
5324 * event-top.c (display_gdb_prompt): Call missing do_cleanups.
5325 * infcmd.c (get_return_value) <!stop_regs>: Do not overwrite CLEANUP.
5326 * symfile.c (symfile_bfd_open): New variable back_to. Do not leave
5327 a stale cleanup. Fix double free of NAME.
5328
5329 2013-05-04 Eli Zaretskii <eliz@gnu.org>
5330
5331 * windows-nat.c (windows_delete_thread): Accept an additional
5332 argument, the thread's exit code, and announce thread death when
5333 print_thread_events is non-zero and we are deleting a thread that
5334 is not the main thread.
5335 (get_windows_debug_event): Pass thread exit code to
5336 windows_delete_thread.
5337
5338 2013-05-03 Kevin Buettner <kevinb@redhat.com>
5339
5340 * v850-tdep.c (elf-bfd.h, elf/v850.h): Include.
5341 (R_149_REGNUM, E_NUM_OF_V850E2_REGS, E_SELID_1_R0_REGNUM)
5342 (E_SELID_1_R31_REGNUM, E_SELID_2_R0_REGNUM, E_SELID_2_R31_REGNUM)
5343 (E_SELID_3_R0_REGNUM, E_SELID_3_R31_REGNUM, E_SELID_4_R0_REGNUM)
5344 (E_SELID_4_R31_REGNUM, E_SELID_5_R0_REGNUM, E_SELID_5_R31_REGNUM)
5345 (E_SELID_6_R0_REGNUM, E_SELID_6_R31_REGNUM, E_SELID_7_R0_REGNUM, E_SELID_7_R31_REGNUM)
5346 (E_VR0_REGNUM, E_VR31_REGNUM, E_NUM_OF_V850E3V5_REGS): Define.
5347 (v850_abi, V850_ABI_GCC, V850_ABI_RH850): New enum and constants.
5348 (gdbarch_tdep): New struct.
5349 (v850e2_register_name): Use E_NUM_OF_V850E2_REGS instead of
5350 E_NUM_REGS.
5351 (v850e3v5_register_name): New function.
5352 (v850_register_type): v850e3v5 vector registers are 64-bits wide.
5353 (v850_use_struct_convention): Add `gdbarch' parameter. Add new
5354 code handling the struct return conventions for the RH850 ABI.
5355 Update all callers.
5356 (v850_eight_byte_align_p): New function.
5357 (v850_push_call_dummy): Push structs by value, not by reference
5358 for the RH850 ABI. Add support for eight byte alignment.
5359 (v850_dbtrap_breakpoint_from_pc): New function.
5360 (v850_gdbarch_init): Add ABI detection code. Register
5361 v850e3v5_register_name for the v850e3v5 architecture. Set the
5362 number of registers for v850e3v5. Register
5363 v850_dbtrap_breakpoint_from_pc as appropriate.
5364 (_initialize_gdbarch_init): Registration bfd_arch_v850_rh850.
5365
5366 2013-05-03 Doug Evans <dje@google.com>
5367
5368 * objfiles.c (objfile_relocate): Use gdb_bfd_count_sections instead
5369 of bfd_count_sections.
5370 * solib-target.c (solib_target_relocate_section_addresses): Ditto.
5371 * symfile.c (default_symfile_offsets): Ditto.
5372 (syms_from_objfile_1): Ditto. Make dummy addrs list an array of
5373 one entry, not bfd_count_sections entries.
5374
5375 2013-05-03 Kevin Buettner <kevinb@redhat.com>
5376
5377 * rl78-tdep.c (rl78_register_reggroup_p): Include SP in the
5378 `save' and `restore' register groups. Don't include SPL
5379 or SPH in these groups.
5380 (rl78_dwarf_reg_to_regnum): Adjust mapping for
5381 RL78_PC_REGNUM. Add mappings for RL78_PSW_REGNUM,
5382 RL78_ES_REGNUM, and RL78_CS_REGNUM.
5383 (rl78_gdbarch_init): Set `dwarf2_addr_size' to 4. Invoke
5384 dwarf2_append_unwinders().
5385
5386 2013-05-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
5387
5388 * break-catch-sig.c (signal_catchpoint_breakpoint_hit): Do not
5389 ignore SIGINT and SIGTRAP in case these internal signals are
5390 caught explicitely.
5391
5392 2013-05-01 Joel Brobecker <brobecker@adacore.com>
5393
5394 * darwin-nat.c (darwin_read_write_inferior): Change types
5395 of parameters rdaddr and wraddr to "gdb_byte *". Change type
5396 of copy_count to "mach_msg_type_number_t".
5397 (darwin_read_dyld_info): Change type of parameter
5398 rdaddr to "gdb_byte *".
5399
5400 2013-05-01 Joel Brobecker <brobecker@adacore.com>
5401
5402 * solib-ia64-hpux.c (ia64_hpux_read_dynamic_info): Change cast
5403 of &info->load_map from "char *" to "gdb_byte *".
5404
5405 2013-05-01 Joel Brobecker <brobecker@adacore.com>
5406
5407 * ia64-tdep.c (ia64_access_fpreg): Change cast of val
5408 from "char *" to "gdb_byte *".
5409 (ia64_access_rse_fpreg, ia64_access_mem): Likewise.
5410
5411 2013-04-30 Doug Evans <dje@google.com>
5412
5413 * dwarf2read.c (lookup_dwo_unit): Return NULL if DWO not found.
5414 (init_cutu_and_read_dies): Flag a complaint, not error, for bad
5415 DWO stub. If DWO isn't found, just use stub.
5416 (lookup_dwo_cutu): Don't try DWO if there's a DWP file.
5417
5418 * dwarf2read.c (dw2_find_symbol_file): Initialize filename before
5419 calling init_cutu_and_read_dies.
5420
5421 2013-03-27 Walfred Tedeschi <walfred.tedeschi@intel.com>
5422
5423 * target-descriptions.c (maint_print_c_tdesc_cmd):
5424 Add case to parse structures as register types and
5425 bitfields.
5426
5427 2013-04-30 Walfred Tedeschi <walfred.tedeschi@intel.com>
5428
5429 * MAINTAINERS (Write After Approval): Add myself to the list.
5430
5431 2013-04-30 Joel Brobecker <brobecker@adacore.com>
5432
5433 * sol-thread.c (rw_common): Change type of parameter "buf"
5434 to "gdb_byte *".
5435 (ps_pdwrite, ps_ptwrite): Cast parameter "buf" in call to
5436 rw_common to "gdb_byte *" instead of "char *".
5437
5438 2013-04-30 Joel Brobecker <brobecker@adacore.com>
5439
5440 * sol-thread.c (info_cb) [ti.ti_startfunc != 0]: Change type
5441 of local variable msym to const struct bound_minimal_symbol.
5442 Adjust use accordingly.
5443 [ti.ti_state == TD_THR_SLEEP]: Likewise.
5444
5445 2013-04-30 Samuel Thibault <samuel.thibault@gnu.org>
5446
5447 * i386gnu-nat.c (CREG_OFFSET): New macro.
5448 (creg_offset): New array.
5449 (CREG_ADDR): Use creg_offset instead of reg_offset.
5450
5451 2013-04-30 Joel Brobecker <brobecker@adacore.com>
5452
5453 * mep-tdep.c (mep_write_pc): Delete.
5454 (mep_gdbarch_init): Remove call to set_gdbarch_write_pc.
5455 Add call to set_gdbarch_pc_regnum.
5456
5457 2013-04-30 Joel Brobecker <brobecker@adacore.com>
5458
5459 * common/filestuff.c: Replace #include <dirent.h> by
5460 #include "gdb_dirent.h".
5461
5462 2013-04-30 Joel Brobecker <brobecker@adacore.com>
5463
5464 * common/filestuff.c: Replace #include <sys/stat.h> by
5465 #include "gdb_stat.h".
5466
5467 2013-04-29 Pierre Muller <muller@sourceware.org>
5468
5469 * dwarf2read.c (handle_DW_AT_stmt_list): Avoid ARI warning for
5470 editCase function rule.
5471 (get_DW_AT_signature_type): Likewise.
5472
5473 2013-04-29 Joel Brobecker <brobecker@adacore.com>
5474
5475 * m32r-tdep.c (m32r_write_pc): Delete.
5476 (m32r_gdbarch_init): Remove call to set_gdbarch_write_pc.
5477 Add call to set_gdbarch_pc_regnum.
5478
5479 2013-04-29 Pierre Muller <muller@sourceware.org>
5480
5481 * ./contrib/ari/gdb_ari.sh (editCase rule): Fix spelling error.
5482
5483 2013-04-29 Joel Brobecker <brobecker@adacore.com>
5484
5485 * dwarf2read.c (get_DW_AT_signature_type): Add ARI marker.
5486
5487 2013-04-28 Yao Qi <yao@codesourcery.com>
5488
5489 * solib-dsbt.c (fetch_loadmap): Re-indent.
5490 (displacement_from_map, enable_break2): Likewise.
5491 (dsbt_relocate_section_addresses): Likewise.
5492
5493 2013-04-26 Joel Brobecker <brobecker@adacore.com>
5494
5495 GDB 7.6 released.
5496
5497 2013-04-25 Andreas Kaufmann <Andreas.Kaufmann@synopsys.com>
5498
5499 PR corefiles/14983:
5500 * dwarf2read.c (process_full_comp_unit): Always create a static
5501 block.
5502
5503 2013-04-25 Hui Zhu <hui@codesourcery.com>
5504
5505 * breakpoint.c (build_target_command_list): Change loc->cond_bytecode
5506 to loc->cmd_bytecode.
5507
5508 2013-04-24 Doug Evans <dje@google.com>
5509
5510 * dwarf2read.c (setup_type_unit_groups): Fix comment.
5511
5512 2013-04-22 Keith Seitz <keiths@redhat.com>
5513
5514 * tracepoint.c (trace_save): Call the writer's start method.
5515
5516 2013-04-24 Muhammad Bilal <mbilal@codesourcery.com>
5517
5518 PR gdb/10462
5519 * cli/cli-decode.c (lookup_command): Show an error if there is no space
5520 before argument.
5521
5522 2013-04-23 Tom Tromey <tromey@redhat.com>
5523
5524 * common/filestuff.c: Check USE_WIN32API before including
5525 sys/socket.h.
5526 (HAVE_F_GETFD): New define.
5527 (mark_cloexec): Check HAVE_F_GETFD.
5528 (gdb_open_cloexec): Change 'mode' to unsigned long.
5529 (gdb_socketpair_cloexec): Check HAVE_SOCKETPAIR.
5530 (gdb_pipe_cloexec): Check HAVE_PIPE.
5531 * common/filestuff.h (gdb_open_cloexec): Change 'mode' to unsigned
5532 long.
5533
5534 2013-04-23 Hui Zhu <hui@codesourcery.com>
5535
5536 PR gdb/15293
5537 * breakpoint.c (bpstat_what): Add BPSTAT_WHAT_SINGLE to bp_dprintf.
5538
5539 2013-04-23 Hui Zhu <hui@codesourcery.com>
5540
5541 PR gdb/15165
5542 * breakpoint.c (dprintf_print_recreate): New.
5543 (save_breakpoints): Let it not save dprintf commands.
5544 (initialize_breakpoint_ops): Set dprintf_print_recreate.
5545
5546 2013-04-22 Tom Tromey <tromey@redhat.com>
5547
5548 PR gdb/7912:
5549 * Makefile.in (SFILES): Add filestuff.c
5550 (COMMON_OBS): Add filestuff.o.
5551 (filestuff.o): New target.
5552 * auto-load.c (auto_load_objfile_script_1): Use
5553 gdb_fopen_cloexec.
5554 * auxv.c (procfs_xfer_auxv): Use gdb_open_cloexec.
5555 * cli/cli-cmds.c (shell_escape): Call close_most_fds.
5556 * cli/cli-dump.c (fopen_with_cleanup): Use gdb_fopen_cloexec.
5557 * common/agent.c (gdb_connect_sync_socket): Use
5558 gdb_socket_cloexec.
5559 * common/filestuff.c: New file.
5560 * common/filestuff.h: New file.
5561 * common/linux-osdata.c (linux_common_core_of_thread)
5562 (command_from_pid, commandline_from_pid, print_source_lines)
5563 (linux_xfer_osdata_shm, linux_xfer_osdata_sem)
5564 (linux_xfer_osdata_msg, linux_xfer_osdata_modules): Use
5565 gdb_fopen_cloexec.
5566 * common/linux-procfs.c (linux_proc_get_int)
5567 (linux_proc_pid_has_state): Use gdb_fopen_cloexec.
5568 * config.in, configure: Rebuild.
5569 * configure.ac: Don't check for sys/socket.h. Check for
5570 fdwalk, pipe2.
5571 * corelow.c (core_open): Use gdb_open_cloexec.
5572 * dwarf2read.c (write_psymtabs_to_index): Use gdb_fopen_cloexec.
5573 * fork-child.c (fork_inferior): Call close_most_fds.
5574 * gdb_bfd.c (gdb_bfd_open): Use gdb_open_cloexec.
5575 * inf-child.c (inf_child_fileio_readlink): Use gdb_open_cloexec.
5576 * linux-nat.c (linux_nat_thread_name, linux_proc_pending_signals):
5577 Use gdb_fopen_cloexec.
5578 (linux_proc_xfer_partial, linux_proc_xfer_spu): Use
5579 gdb_open_cloexec.
5580 (linux_async_pipe): Use gdb_pipe_cloexec.
5581 * remote-fileio.c (remote_fileio_func_open): Use
5582 gdb_open_cloexec.
5583 * remote.c (remote_file_put, remote_file_get): Use
5584 gdb_fopen_cloexec.
5585 * ser-pipe.c (pipe_open): Use gdb_socketpair_cloexec,
5586 close_most_fds.
5587 * ser-tcp.c (net_open): Use gdb_socket_cloexec.
5588 * ser-unix.c (hardwire_open): Use gdb_open_cloexec.
5589 * solib.c (solib_find): Use gdb_open_cloexec.
5590 * source.c (openp, find_and_open_source): Use gdb_open_cloexec.
5591 * tracepoint.c (tfile_start): Use gdb_fopen_cloexec.
5592 (tfile_open): Use gdb_open_cloexec.
5593 * tui/tui-io.c (tui_initialize_io): Use gdb_pipe_cloexec.
5594 * ui-file.c (gdb_fopen): Use gdb_fopen_cloexec.
5595 * xml-support.c (xml_fetch_content_from_file): Use
5596 gdb_fopen_cloexec.
5597 * main.c (captured_main): Call notice_open_fds.
5598
5599 2013-04-22 Edjunior Machado <emachado@linux.vnet.ibm.com>
5600
5601 * remote-sim.c (dump_mem): Change the type of 'buf' parameter from
5602 'char *' to 'gdb_byte *'.
5603 (gdbsim_store_register): Change the type of 'tmp' from 'char' to
5604 'gdb_byte'.
5605
5606 2013-04-22 Yao Qi <yao@codesourcery.com>
5607
5608 * infrun.c: Fix typo in comment.
5609
5610 2013-04-22 Andrew Haley <aph@redhat.com>
5611
5612 * arm-tdep.c (BranchDest): Cast result as "unsigned long",
5613 instead of "long".
5614
5615 2013-04-20 Yao Qi <yao@codesourcery.com>
5616
5617 * ctf.c (ctf_fetch_registers): Change the type of 'regs' from
5618 'char *' to 'gdb_byte *'. Cast the return value of
5619 'bt_ctf_get_char_array' to 'gdb_byte *'.
5620
5621 2013-04-19 Pedro Alves <palves@redhat.com>
5622
5623 * configure.ac (build_warnings): Replace -Wno-pointer-sign with
5624 -Wpointer-sign.
5625 * configure: Regenerate.
5626
5627 2013-04-19 Pedro Alves <palves@redhat.com>
5628
5629 * ser-tcp.c (net_read_prim): Cast second argument to recv to
5630 'void *'.
5631
5632 2013-04-19 Pedro Alves <palves@redhat.com>
5633
5634 * monitor.c (monitor_write_memory, monitor_write_memory_bytes):
5635 Change type of 'myaddr' parameter to gdb_byte pointer.
5636 (monitor_write_memory_longlongs): Likewise. Cast 'myaddr' pointer
5637 to 'long long' pointer instead of to 'unsigned long long'.
5638 (monitor_write_memory_block, monitor_read_memory_single)
5639 (monitor_read_memory): Change type of 'myaddr' parameter to
5640 gdb_byte pointer.
5641
5642 2013-04-19 Pedro Alves <palves@redhat.com>
5643
5644 * record.c (validate_history_size): Make parameter 'setting'
5645 unsigned.
5646
5647 2013-04-19 Pedro Alves <palves@redhat.com>
5648
5649 * ctf.c (ctf_write_uploaded_tsv, ctf_write_uploaded_tp): Add casts
5650 to 'gdb_byte *'.
5651
5652 2013-04-19 Pedro Alves <palves@redhat.com>
5653
5654 * cp-valprint.c (cp_print_class_member): Change type of 'fieldno'
5655 local to int.
5656
5657 2013-04-19 Pedro Alves <palves@redhat.com>
5658
5659 * ada-lang.c (print_it_exception): Add cast to gdb_byte *.
5660 * ada-tasks.c (read_fat_string_value): Likewise.
5661
5662 2013-04-19 Pedro Alves <palves@redhat.com>
5663
5664 * dwarf2-frame.c (execute_cfa_program): Make 'bytes_read' local
5665 unsigned. Pass 'tmp' to safe_read_uleb128 instead of the signed
5666 'offset', and adjust.
5667
5668 2013-04-19 Pedro Alves <palves@redhat.com>
5669
5670 * dwarf2read.c (dwarf2_get_dwz_file): Add cast to const char *.
5671 (read_index_from_section): Add cast to 'char *'.
5672
5673 2013-04-19 Pedro Alves <palves@redhat.com>
5674
5675 * xcoffread.c (xcoff_initial_scan): Add cast to 'char *'.
5676
5677 2013-04-19 Pedro Alves <palves@redhat.com>
5678
5679 * coff-pe-read.c (read_pe_exported_syms): Handle strings as char.
5680
5681 2013-04-19 Pedro Alves <palves@redhat.com>
5682
5683 * record-full.c (record_full_get_bookmark): Change local 'ret'
5684 type to char * and add cast to gdb_byte *.
5685 (record_full_goto_bookmark): Handle 'bookmark' argument as a
5686 string.
5687 * reverse.c (goto_bookmark_command): Add casts to gdb_byte *.
5688
5689 2013-04-19 Pedro Alves <palves@redhat.com>
5690
5691 * python/py-inferior.c (infpy_write_memory): Add cast to gdb_byte
5692 * python/py-prettyprint.c (print_string_repr): Change type of
5693 'output' local to char *. Add cast to gdb_byte * in
5694 LA_PRINT_STRING call.
5695 (print_children): Change type of 'output' local to char *.
5696 * python/py-value.c (valpy_string): Add cast to const char * in
5697 PyUnicode_Decode call.
5698
5699 2013-04-19 Pedro Alves <palves@redhat.com>
5700
5701 * remote-mips.c (mips_cksum): Rename 'data' parameter to 'datastr'
5702 and change its type to 'const char *'. Adjust.
5703 (mips_send_packet): Add cast to 'char *', and remove cast to
5704 'unsigned char *'.
5705 (mips_receive_packet): Remove cast to 'unsigned char *'.
5706 (mips_load_srec): Use bfd_byte.
5707 (pmon_makeb64, pmon_zeroset): Make 'chksum' parameter unsigned.
5708 (pmon_checkset): Make 'value' parameter unsigned.
5709
5710 2013-04-19 Pedro Alves <palves@redhat.com>
5711
5712 * common/agent.c (agent_run_command): Add cast to gdb_byte *.
5713
5714 2013-04-19 Pedro Alves <palves@redhat.com>
5715
5716 * remote.c (remote_write_bytes_aux, compare_sections_command)
5717 (remote_read_qxfer)
5718 (remote_search_memory, remote_hostio_pwrite, remote_hostio_pread)
5719 (remote_hostio_readlink, remote_bfd_iovec_pread)
5720 (remote_set_trace_notes): Use gdb_byte when RSP buffer is used as
5721 binary buffer, and char when buffer is used as string.
5722 * tracepoint.c (encode_source_string, tfile_write_uploaded_tp)
5723 (trace_save, tfile_open, traceframe_walk_blocks)
5724 (tfile_fetch_registers): Likewise.
5725
5726 2013-04-19 Pedro Alves <palves@redhat.com>
5727
5728 * ser-base.c (ser_base_write): Change prototype -- take 'void *'
5729 buffer and size_t size. Adjust.
5730 * ser-base.h (ser_base_write): Adjust.
5731 * ser-go32.c (cnts): Change type to size_t.
5732 (dos_write): Change prototype -- take 'void *'
5733 buffer and size_t size. Adjust.
5734 (dos_info): Print elements of 'cnts' as unsigned long.
5735 * serial.c (serial_write): Likewise.
5736 * serial.h (serial_write): Adjust.
5737 (struct serial_ops) <write>: Change prototype -- take 'void *'
5738 buffer and size_t size. Adjust.
5739
5740 2013-04-19 Pedro Alves <palves@redhat.com>
5741
5742 * c-lang.c (evaluate_subexp_c): Cast result of obstack_base to
5743 gdb_byte *.
5744 * linux-tdep.c (linux_make_mappings_corefile_notes): Likewise.
5745
5746 2013-04-19 Pedro Alves <palves@redhat.com>
5747
5748 * alpha-tdep.c (alpha_extract_return_value): Use
5749 regcache_cooked_read_unsigned to read 'v0'.
5750
5751 2013-04-19 Pedro Alves <palves@redhat.com>
5752
5753 * xtensa-tdep.c (execute_l32e, execute_s32e): Change type of
5754 parameters 'at', 'as' and 'offset' to uint32_t.
5755
5756 2013-04-19 Pedro Alves <palves@redhat.com>
5757
5758 * aarch64-tdep.c (aarch64_analyze_prologue): Change type of local
5759 'is64' to signed 'int'.
5760
5761 2013-04-19 Pedro Alves <palves@redhat.com>
5762
5763 * s390-tdep.c (is_rs, is_rsy, is_rx, is_rxy): Change type of 'd2'
5764 parameter to int *.
5765
5766 2013-04-19 Pedro Alves <palves@redhat.com>
5767
5768 * ppc-linux-tdep.c (ppc_skip_trampoline_code): Change local
5769 'insnbuf' buffer type to unsigned int[].
5770
5771 2013-04-19 Pedro Alves <palves@redhat.com>
5772
5773 * mips-tdep.c (mips_read_pc): Change local 'pc' type to LONGEST.
5774
5775 2013-04-19 Pedro Alves <palves@redhat.com>
5776
5777 * mep-tdep.c (mep_get_insn): Change 'insn' parameter type to
5778 unsigned long *.
5779
5780 2013-04-19 Pedro Alves <palves@redhat.com>
5781
5782 * alpha-tdep.c (heuristic_fence_post): Change type to int.
5783 (alpha_heuristic_proc_start): Adjust to check -1 instead of
5784 UINT_MAX.
5785 * mips-tdep.c (heuristic_fence_post): Change type to int.
5786 (heuristic_proc_start): Adjust to check -1 instead of UINT_MAX.
5787
5788 2013-04-19 Pedro Alves <palves@redhat.com>
5789
5790 * cris-tdep.c (usr_cmd_cris_version): Make unsigned.
5791 (struct gdbarch_tdep) <cris_version>: Make unsigned.
5792 (cris_spec_reg_applicable, cris_gdbarch_init): Adjust locals.
5793
5794 2013-04-19 Pedro Alves <palves@redhat.com>
5795
5796 * avr-tdep.c (avr_io_reg_read_command): New local 'bufstr'. Use
5797 it to get a string view of the byte buffer.
5798 * i386-cygwin-tdep.c (core_process_module_section): Change local 'buf'
5799 type to gdb_byte *. Adjust.
5800 * linux-tdep.c (linux_info_proc, linux_find_memory_regions_full):
5801 Change local to char *.
5802 * solib-darwin.c (find_program_interpreter): Change return type to
5803 char *. Adjust.
5804 (darwin_solib_get_all_image_info_addr_at_init): Adjust.
5805 * solib-dsbt.c (enable_break2): Change local 'buf' to char *.
5806 * solib-frv.c (enable_break2): Change local 'buf' to char *.
5807 * solib-spu.c (spu_current_sos): Add gdb_byte * cast.
5808 * solib-svr4.c (find_program_interpreter): Change return type to
5809 char *. Adjust.
5810 (enable_break): Change local 'interp_name' to char *.
5811 * spu-multiarch.c (spu_xfer_partial): Add cast to 'char *'.
5812 * spu-tdep.c (spu_pseudo_register_read_spu): Add cast to 'char *'.
5813 (spu_pseudo_register_write_spu): Use char for string buffer.
5814 Adjust.
5815 (info_spu_event_command, info_spu_signal_command): Add casts to
5816 'char *'.
5817
5818 2013-04-19 Pedro Alves <palves@redhat.com>
5819
5820 * aarch64-tdep.c (aarch64_default_breakpoint): Change type to
5821 gdb_byte[].
5822 (aarch64_breakpoint_from_pc): Change return type to gdb_byte *.
5823 * ada-lang.c (ada_value_assign): Use gdb_byte.
5824 * alphanbsd-tdep.c (sigtramp_retcode): Change type to gdb_byte[].
5825 (alphanbsd_sigtramp_offset): Use gdb_byte.
5826 * arm-linux-tdep.c (arm_linux_arm_le_breakpoint)
5827 (arm_linux_arm_be_breakpoint, eabi_linux_arm_le_breakpoint)
5828 (eabi_linux_arm_be_breakpoint, arm_linux_thumb_be_breakpoint)
5829 (arm_linux_thumb_le_breakpoint, arm_linux_thumb2_be_breakpoint)
5830 (arm_linux_thumb2_le_breakpoint): Change type to gdb_byte[].
5831 * arm-tdep.c (arm_stub_unwind_sniffer)
5832 (arm_displaced_init_closure): Use gdb_byte.
5833 (arm_default_arm_le_breakpoint, arm_default_arm_be_breakpoint)
5834 (arm_default_thumb_le_breakpoint)
5835 (arm_default_thumb_be_breakpoint): Change type to gdb_byte[].
5836 * arm-tdep.h (struct gdbarch_tdep) <arm_breakpoint,
5837 thumb_breakpoint, thumb2_breakpoint>: Change type to gdb_byte *.
5838 * arm-wince-tdep.c (arm_wince_le_breakpoint)
5839 (arm_wince_thumb_le_breakpoint): Change type to gdb_byte[].
5840 * armnbsd-tdep.c (arm_nbsd_arm_le_breakpoint)
5841 (arm_nbsd_arm_be_breakpoint, arm_nbsd_thumb_le_breakpoint)
5842 (arm_nbsd_thumb_be_breakpoint): Change type to gdb_byte[].
5843 * armobsd-tdep.c (arm_obsd_thumb_le_breakpoint)
5844 (arm_obsd_thumb_be_breakpoint): Change type to gdb_byte[].
5845 * cris-tdep.c (push_stack_item, cris_push_dummy_call)
5846 (cris_store_return_value, cris_extract_return_value): Use
5847 gdb_byte.
5848 (constraint): Change type of parameter to char * from signed
5849 char*. Use gdb_byte.
5850 * dwarf2loc.c (read_pieced_value, write_pieced_value): Change type
5851 of local buffer to gdb_byte *.
5852 * dwarf2read.c (read_index_from_section): Use gdb_byte.
5853 (create_dwp_hash_table): Change type of locals to gdb_byte *.
5854 (add_address_entry): Change type of local buffer to gdb_byte[].
5855 * frv-tdep.c (frv_adjust_breakpoint_address, find_func_descr)
5856 (frv_push_dummy_call): Use gdb_byte.
5857 * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code)
5858 (hppa_hpux_supply_ss_fpblock, hppa_hpux_supply_ss_wide)
5859 (hppa_hpux_supply_save_state): Use gdb_byte.
5860 * hppa-tdep.c (hppa32_push_dummy_call)
5861 (hppa64_convert_code_addr_to_fptr): Use gdb_byte.
5862 * ia64-tdep.c (extract_bit_field, replace_bit_field)
5863 (slotN_contents, replace_slotN_contents): Change type of parameter
5864 to gdb_byte *.
5865 (fetch_instruction, ia64_pseudo_register_write)
5866 (ia64_register_to_value, ia64_value_to_register)
5867 (ia64_extract_return_value, ia64_store_return_value)
5868 (ia64_push_dummy_call): Use gdb_byte.
5869 * m32c-tdep.c (m32c_return_value): Remove cast.
5870 * m68hc11-tdep.c (m68hc11_pseudo_register_write)
5871 (m68hc11_push_dummy_call, m68hc11_store_return_value): Use
5872 gdb_byte.
5873 * mipsnbsd-tdep.c (mipsnbsd_get_longjmp_target): Use gdb_byte.
5874 * mn10300-tdep.c (mn10300_store_return_value)
5875 (mn10300_breakpoint_from_pc, mn10300_push_dummy_call): Use
5876 gdb_byte.
5877 * moxie-tdep.c (moxie_process_readu): Use gdb_byte.
5878 (moxie_process_record): Remove casts.
5879 * ppc-ravenscar-thread.c (supply_register_at_address)
5880 (ppc_ravenscar_generic_store_registers): Use gdb_byte.
5881 * ravenscar-thread.c (get_running_thread_id): Use gdb_byte.
5882 * remote-m32r-sdi.c (m32r_fetch_register): Use gdb_byte.
5883 * remote-mips.c (mips_xfer_memory): Use gdb_byte.
5884 * remote.c (compare_sections_command): Use gdb_byte.
5885 * score-tdep.c (score7_free_memblock): Change type of parameter to
5886 gdb_byte *.
5887 * sh-tdep.c (sh_justify_value_in_reg): Change return type to
5888 gdb_byte *. Use gdb_byte.
5889 (sh_push_dummy_call_fpu): Use gdb_byte.
5890 (sh_extract_return_value_nofpu, sh_extract_return_value_fpu)
5891 (sh_store_return_value_nofpu, sh_store_return_value_fpu)
5892 (sh_register_convert_to_virtual, sh_register_convert_to_raw):
5893 Change parameter type to 'gdb_byte *'. Use gdb_byte.
5894 (sh_pseudo_register_read, sh_pseudo_register_write): Use gdb_byte.
5895 * sh64-tdep.c (sh64_push_dummy_call): Use gdb_byte.
5896 (sh64_store_return_value, sh64_register_convert_to_virtual):
5897 Change parameter type to 'gdb_byte *'. Use gdb_byte.
5898 (sh64_pseudo_register_write): Use gdb_byte.
5899 * solib-darwin.c (darwin_current_sos): Add casts to 'gdb_byte *'.
5900 * solib-irix.c (fetch_lm_info): Likewise. Use gdb_byte for byte
5901 buffer.
5902 (irix_current_sos): Use gdb_byte.
5903 * solib-som.c (som_current_sos): Use gdb_byte.
5904 * sparc-ravenscar-thread.c (supply_register_at_address)
5905 (sparc_ravenscar_generic_store_registers): Use gdb_byte.
5906 * spu-multiarch.c (spu_xfer_partial): Add cast to 'char *'.
5907 * spu-tdep.c (spu_get_overlay_table): Use gdb_byte.
5908 * tic6x-tdep.c (tic6x_breakpoint_from_pc): Change return type to
5909 'gdb_byte *'.
5910 * tic6x-tdep.h (struct gdbarch_tdep) <breakpoint>: Change type to
5911 'gdb_byte *'.
5912 * tracepoint.c (tfile_fetch_registers): Use gdb_byte.
5913 * xstormy16-tdep.c (xstormy16_extract_return_value)
5914 (xstormy16_store_return_value): Change parameter type to
5915 'gdb_byte *'. Adjust.
5916 (xstormy16_push_dummy_call): Use gdb_byte.
5917 * xtensa-tdep.c (xtensa_scan_prologue, call0_ret)
5918 (call0_analyze_prologue, execute_code): Use gdb_byte.
5919
5920 2013-04-19 Vladimir Kargov <kargov@gmail.com>
5921 Pedro Alves <palves@redhat.com>
5922
5923 * i387-tdep.c (i387_print_float_info): Use gdb_byte for pointer to
5924 value contents.
5925
5926 2013-04-17 Doug Evans <dje@google.com>
5927
5928 * dwarf2read.c (struct signatured_type): New member type.
5929 (struct attribute): Replace member signatured_type with signature.
5930 (DW_SIGNATURE): Replaces DW_SIGNATURE_TYPE.
5931 (read_call_site_scope): Call follow_die_ref instead of
5932 follow_die_ref_or_sig.
5933 (read_structure_type): Rewrite handling of signatured types.
5934 (read_enumeration_type): Ditto.
5935 (read_attribute_value): Update.
5936 (build_error_marker_type): New function.
5937 (lookup_die_type): Add assert. Rewrite handling of signatured types.
5938 Don't call error for bad types, just build an error marker type.
5939 (dump_die_shallow): Update.
5940 (follow_die_sig_1): Renamed from follow_die_sig.
5941 Don't call error for bad types, instead return NULL.
5942 (follow_die_sig): New function.
5943 (get_signatured_type, get_DW_AT_signature_type): New functions.
5944
5945 2013-04-17 Yufeng Zhang <yufeng.zhang@arm.com>
5946
5947 * aarch64-tdep.c (aarch64_write_pc): Removed.
5948 (aarch64_gdbarch_init): Remove set_gdbarch_write_pc of the above
5949 function.
5950
5951 2013-04-17 Yao Qi <yao@codesourcery.com>
5952
5953 * top.c (print_gdb_configuration): Print configure-time
5954 parameter on using libbabeltrace or not.
5955
5956 2013-04-16 Pedro Alves <palves@redhat.com>
5957
5958 * copyright.py (EXCLUDE_LIST): Add gdb/common/glibc_thread_db.h.
5959
5960 2013-04-16 Pedro Alves <palves@redhat.com>
5961
5962 * common/glibc_thread_db.h: Update from upstream glibc
5963 (git 568035b7874a099087b77f7bba3e36a1173787b0).
5964
5965 2013-04-16 Pedro Alves <palves@redhat.com>
5966
5967 * common/gdb_thread_db.h [!HAVE_THREAD_DB_H]: Factor out to ...
5968 * common/glibc_thread_db.h: ... this new file ...
5969 * common/gdb_thread_db.h [!HAVE_THREAD_DB_H]: ... and include it.
5970
5971 2013-04-16 Will Newton <will.newton@gmail.com>
5972 Pedro Alves <palves@redhat.com>
5973
5974 PR build/11881
5975
5976 * common/gdb_thread_db.h (LIBTHREAD_DB_SO)
5977 (LIBTHREAD_DB_SEARCH_PATH): Move outside of #ifdef
5978 HAVE_THREAD_DB_H.
5979
5980 2013-04-16 Pedro Alves <palves@redhat.com>
5981 Eli Zaretskii <eliz@gnu.org>
5982
5983 * NEWS: Mention "set foo unlimited".
5984
5985 2013-04-15 Doug Evans <dje@google.com>
5986
5987 * dwarf2read.c (struct dwo_file): Replace member "cus" with "cu".
5988 (struct create_dwo_cu_data): Renamed from create_dwo_info_table_data.
5989 (create_dwo_cu_reader): Renamed from
5990 create_dwo_debug_info_hash_table_reader.
5991 (create_dwo_cu): Renamed from create_dwo_debug_info_hash_table.
5992 Remove support for multiple CUs in a DWO file.
5993 (open_and_init_dwo_file, lookup_dwo_cutu): Update.
5994
5995 * dwarf2read.c (create_debug_types_hash_table): Use hex_string
5996 instead of phex.
5997 (lookup_dwo_unit, create_dwo_debug_info_hash_table_reader): Ditto.
5998 (create_dwo_in_dwp): Ditto.
5999
6000 2013-04-15 Tom Tromey <tromey@redhat.com>
6001
6002 * NEWS: Move recent entries into "since 7.6" section.
6003
6004 2013-04-15 Tom Tromey <tromey@redhat.com>
6005
6006 PR c++/13588:
6007 * NEWS: Update.
6008 * break-catch-throw.c (struct exception_catchpoint)
6009 <exception_rx, pattern>: New fields.
6010 (fetch_probe_arguments, dtor_exception_catchpoint)
6011 (check_status_exception_catchpoint)
6012 (print_one_detail_exception_catchpoint): New functions.
6013 (handle_gnu_v3_exceptions): Add "except_rx" argument.
6014 Compile regular expression if needed.
6015 (extract_exception_regexp): New function.
6016 (catch_exception_command_1): Use extract_exception_regexp.
6017 (compute_exception): Use fetch_probe_arguments.
6018 (initialize_throw_catchpoint_ops): Set dtor, print_one_detail,
6019 and check_status fields.
6020 * cp-abi.c (cplus_typename_from_type_info): New function.
6021 * cp-abi.h (cplus_typename_from_type_info): Declare.
6022 (struct cp_abi_ops) <get_typename_from_type_info>: New field.
6023 * gdb_regex.h (compile_rx_or_error): Declare.
6024 * gnu-v3-abi.c (gnuv3_get_typename_from_type_info): Update
6025 comment.
6026 (init_gnuv3_ops): Set get_type_from_type_info field.
6027 * probe.c (compile_rx_or_error): Move...
6028 * utils.c (compile_rx_or_error): ... here.
6029
6030 2013-04-15 Tom Tromey <tromey@redhat.com>
6031
6032 PR c++/15176:
6033 * NEWS: Update.
6034 * break-catch-throw.c (compute_exception): New function.
6035 (exception_funcs): New global.
6036 (_initialize_break_catch_throw): Create $_exception.
6037 * cp-abi.c (cplus_type_from_type_info): New function.
6038 * cp-abi.h (cplus_type_from_type_info): Declare.
6039 (struct cp_abi_ops) <get_type_from_type_info>: New field.
6040 * gnu-v3-abi.c (gnuv3_get_typename_from_type_info)
6041 (gnuv3_get_type_from_type_info): New functions.
6042 (init_gnuv3_ops): Set get_type_from_type_info ABI field.
6043
6044 2013-04-15 Tom Tromey <tromey@redhat.com>
6045
6046 * break-catch-throw.c (struct exception_names): New.
6047 (exception_functions): Change type.
6048 (re_set_exception_catchpoint): Look for SDT probes.
6049
6050 2013-04-15 Tom Tromey <tromey@redhat.com>
6051
6052 PR c++/10119:
6053 * break-catch-throw.c (exception_functions): New global.
6054 (gnu_v3_exception_catchpoint_ops): Move earlier.
6055 (struct exception_catchpoint): New.
6056 (classify_exception_breakpoint): Rewrite.
6057 (re_set_exception_catchpoint): New function.
6058 (handle_gnu_v3_exceptions): Return void. Use init_catchpoint.
6059 Allocate a struct exception_catchpoint.
6060 (catch_exception_command_1): Update.
6061 (initialize_throw_catchpoint_ops): Set 're_set' method.
6062
6063 2013-04-15 Tom Tromey <tromey@redhat.com>
6064
6065 * Makefile.in (SFILES): Add break-catch-throw.c
6066 (COMMON_OBS): Add break-catch-throw.o.
6067 * break-catch-throw.c: New file.
6068 * breakpoint.c: Move exception-catching code to new file.
6069 (ep_parse_optional_if_clause): No longer static.
6070 * breakpoint.h (ep_parse_optional_if_clause): Declare.
6071
6072 2013-04-15 Tom Tromey <tromey@redhat.com>
6073
6074 PR c++/9065:
6075 * NEWS: Update.
6076 * breakpoint.c (watchpoint_exp_is_const): Add OP_TYPEID.
6077 * c-exp.y (TYPEID): New token.
6078 (exp): Add new TYPEID productions.
6079 (ident_tokens): Add "typeid".
6080 * cp-abi.c (cplus_typeid, cplus_typeid_type): New functions.
6081 * cp-abi.h (cplus_typeid, cplus_typeid_type): Declare.
6082 (struct cp_abi_ops) <get_typeid, get_typeid_type>: New fields.
6083 * eval.c (evaluate_subexp_standard) <OP_TYPEID>: New case.
6084 * expprint.c (dump_subexp_body_standard) <OP_TYPEID>: New
6085 case.
6086 * gnu-v3-abi.c (std_type_info_gdbarch_data): New global.
6087 (build_std_type_info_type, gnuv3_get_typeid_type)
6088 (gnuv3_get_typeid): New functions.
6089 (init_gnuv3_ops): Initialize std_type_info_gdbarch_data. Set
6090 new fields on ABI object.
6091 * parse.c (operator_length_standard) <OP_TYPEID>: New case.
6092 * std-operator.def (OP_TYPEID): New.
6093
6094 2013-04-15 Tom Tromey <tromey@redhat.com>
6095
6096 * elfread.c (elf_symtab_read): Install versioned symbol under
6097 unversioned name as well.
6098
6099 2013-04-15 Tom Tromey <tromey@redhat.com>
6100
6101 PR c++/11990:
6102 * c-lang.c (cplus_language_defn): Use gdb_demangle.
6103 * c-typeprint.c (c_type_print_base): Use gdb_demangle.
6104 * cp-support.c (mangled_name_to_comp): Use gdb_demangle.
6105 (gdb_demangle): New function.
6106 * cp-support.h (gdb_demangle): Declare.
6107 * dwarf2read.c (dwarf2_physname, fixup_partial_die)
6108 (dwarf2_name): Use gdb_demangle.
6109 * gdbtypes.c (check_stub_method): Use gdb_demangle.
6110 * gnu-v3-abi.c (gnuv3_rtti_type): Strip @plt and version
6111 suffixes from name.
6112 (gnuv3_print_method_ptr): Use gdb_demangle.
6113 * jv-lang.c (java_demangle): Use gdb_demangle.
6114 * jv-typeprint.c (java_type_print_base): Use gdb_demangle.
6115 * language.c (unk_lang_demangle): Use gdb_demangle.
6116 * symtab.c (symbol_find_demangled_name)
6117 (demangle_for_lookup): Use gdb_demangle.
6118
6119 2013-04-15 Tom Tromey <tromey@redhat.com>
6120
6121 PR c++/12824:
6122 * NEWS: Update.
6123 * breakpoint.c (enum exception_event_kind) <EX_EVENT_RETHROW>:
6124 New constant.
6125 (classify_exception_breakpoint): New function.
6126 (print_it_exception_catchpoint, print_one_exception_catchpoint)
6127 (print_mention_exception_catchpoint)
6128 (print_recreate_exception_catchpoint, handle_gnu_v3_exceptions)
6129 (catch_exception_command_1): Handle "rethrow" catchpoint.
6130 (catch_rethrow_command): New function.
6131 (_initialize_breakpoint): Add "catch rethrow" command.
6132
6133 2013-04-15 Pierre Muller <muller@sourceware.org>
6134
6135 * contrib/ari/gdb_ari.sh (write_pc rule): Do not consider
6136 set_gdbarch_write_pc as deprecated anymore.
6137
6138 2013-04-15 Joel Brobecker <brobecker@adacore.com>
6139
6140 * spu-tdep.c (spu_write_pc): Add empty line after local variable
6141 declarations.
6142
6143 2013-04-13 Yao Qi <yao@codesourcery.com>
6144
6145 * ctf.c (_initialize_ctf): Include "completer.h".
6146 Call add_target_with_completer instead of add_target.
6147
6148 2013-04-12 Jan Kratochvil <jan.kratochvil@redhat.com>
6149
6150 Fix GDB regression related to PR binutils/14813.
6151 * jit.c (mem_bfd_iovec_close): Return 0 for success.
6152 * minidebug.c (lzma_close): Add return value comment.
6153 * remote.c (remote_bfd_iovec_close): Return 0 for success.
6154 * solib-spu.c (spu_bfd_iovec_close): Likewise.
6155 * spu-linux-nat.c (spu_bfd_iovec_close): Likewise.
6156
6157 2013-04-12 Jan Kratochvil <jan.kratochvil@redhat.com>
6158
6159 * config.in: Regenerate.
6160
6161 2013-04-12 Tom Tromey <tromey@redhat.com>
6162
6163 * dwarf2-frame.c (struct comp_unit) <dwarf_frame_buffer>: Now
6164 const.
6165 * dwarf2read.c (struct dwarf2_section_info) <buffer>: Now const.
6166 (struct die_reader_specs) <buffer>: Likewise.
6167 (die_reader_func_ftype): Make 'info_ptr' const.
6168 (struct line_header) <include_dirs, statement_program_start,
6169 statement_program_end>: Now const.
6170 (struct file_entry) <name>: Likewise.
6171 (struct partial_die_info) <sibling>: Likewise.
6172 (struct dwarf_block) <data>: Likewise.
6173 (dwarf2_read_section): Remove cast.
6174 (dwarf2_get_section_info): Make 'bufp' const.
6175 (read_index_from_section): Constify.
6176 (dw2_get_file_names_reader): Make 'info_ptr' const.
6177 (dw2_get_primary_filename_reader): Likewise.
6178 (read_comp_unit_head): Make 'info_ptr' and return type const.
6179 (read_and_check_comp_unit_head, read_and_check_type_unit_head):
6180 Likewise.
6181 (read_abbrev_offset): Constify.
6182 (dwarf2_create_include_psymtab): Make 'name' const.
6183 (create_debug_types_hash_table): Update.
6184 (read_cutu_die_from_dwo): Make 'result_info_ptr' const.
6185 (init_cutu_and_read_dies, init_cutu_and_read_dies_no_follow):
6186 Constify.
6187 (process_psymtab_comp_unit_reader, build_type_psymtabs_reader)
6188 (load_partial_comp_unit_reader): Make 'info_ptr' const.
6189 (read_comp_units_from_section): Constify.
6190 (peek_abbrev_code, peek_die_abbrev, skip_children, skip_one_die)
6191 (locate_pdi_sibling, load_full_comp_unit_reader): Make 'info_ptr'
6192 const.
6193 (dwarf2_compute_name, setup_type_unit_groups): Constify.
6194 (create_dwo_debug_info_hash_table): Make 'info_ptr' const.
6195 (create_dwp_hash_table, dwarf2_ranges_read)
6196 (dwarf2_record_block_ranges): Constify.
6197 (read_die_and_children, read_die_and_siblings_1)
6198 (read_die_and_siblings): Make 'info_ptr' and 'new_info_ptr'
6199 const.
6200 (read_full_die_1, read_full_die): Make 'info_ptr' const.
6201 (abbrev_table_read_table): Constify.
6202 (load_partial_dies): Make 'info_ptr' const.
6203 (read_partial_die, read_attribute_value, read_attribute): Make
6204 'info_ptr' and return type const.
6205 (read_address, read_initial_length)
6206 (read_checked_initial_length_and_offset, read_offset)
6207 (read_offset_1, read_n_bytes, read_direct_string): Make 'buf'
6208 const.
6209 (read_direct_string): Make 'buf' and return type const.
6210 (read_indirect_string_at_offset, read_indirect_string_from_dwz)
6211 (read_indirect_string): Make return type const.
6212 (read_unsigned_leb128, read_signed_leb128): Make 'buf' const.
6213 (read_addr_index_from_leb128, dwarf2_read_addr_index_reader): Make
6214 'info_ptr' const.
6215 (read_str_index): Make return type const.
6216 (add_include_dir): Make 'include_dir' const.
6217 (add_file_name): Make 'name' const.
6218 (dwarf_decode_line_header): Constify.
6219 (psymtab_include_file_name): Make return type const.
6220 (dwarf_decode_lines_1, dwarf_decode_lines): Constify.
6221 (dwarf2_start_subfile): Make 'filename' const.
6222 (dwarf2_const_value_attr): Make 'bytes' const.
6223 (read_signatured_type_reader): Make 'info_ptr' const.
6224 (decode_locdesc): Constify.
6225 (skip_form_bytes): Make 'bytes', 'buffer_end', and return type
6226 const.
6227 (skip_unknown_opcode): Make 'opcode_definitions', 'mac_ptr',
6228 'mac_end', and return type const.
6229 (dwarf_parse_macro_header): Make 'mac_ptr' and return type const.
6230 (dwarf_decode_macro_bytes): Make 'mac_ptr', 'mac_end', and return
6231 type const.
6232 (per_cu_header_read_in): Constify.
6233 * symfile.h (dwarf2_get_section_info): Update.
6234
6235 2013-04-12 Tom Tromey <tromey@redhat.com>
6236
6237 * symtab.h (struct general_symbol_info) <value.bytes>: Make const.
6238
6239 2013-04-12 Eli Zaretskii <eliz@gnu.org>
6240
6241 * NEWS: Mention "show configuration", --configuration.
6242 * top.c (print_gdb_configuration): New function, displays the
6243 details about GDB configure-time parameters.
6244 (print_gdb_version): Mention "show configuration".
6245 * cli/cli-cmds.c (show_configuration): New function.
6246 (_initialize_cli_cmds): Add the "show configuration" command.
6247 * main.c (captured_main) <print_configuration>: New static var.
6248 <long_options>: Use it.
6249 If --configuration was given, call print_gdb_configuration.
6250
6251 2013-04-11 Jan Kratochvil <jan.kratochvil@redhat.com>
6252 Pedro Alves <palves@redhat.com>
6253
6254 * Makefile.in (HAVE_NATIVE_GCORE_TARGET): New.
6255 (generated_files): Add gcore.
6256 (install-only, uninstall): Add gcore if HAVE_NATIVE_GCORE_TARGET or
6257 HAVE_NATIVE_GCORE_HOST.
6258 (gcore): New.
6259 * NEWS (Changes since GDB 7.6): Mention newly installed gcore.
6260 * config/alpha/alpha-osf3.mh, config/i386/fbsd.mh,
6261 config/i386/fbsd64.mh, config/i386/i386gnu.mh, config/i386/i386sol2.mh,
6262 config/i386/sol2-64.mh, config/mips/irix5.mh, config/mips/irix6.mh,
6263 config/powerpc/fbsd.mh, config/sparc/fbsd.mh, config/sparc/sol2.mh:
6264 Add HAVE_NATIVE_GCORE_HOST.
6265 * configure: Regenerate.
6266 * configure.ac (HAVE_NATIVE_GCORE_TARGET): New, set it, AC_SUBST it.
6267 New AC_SUBST fir GDB_TRANSFORM_NAME and GCORE_TRANSFORM_NAME. New
6268 AC_CONFIG_FILES for gcore.
6269 * configure.tgt: Add gdb_have_gcore to the initial comment. Set
6270 gdb_have_gcore.
6271 * gdb_gcore.sh: Rename to ...
6272 * gcore.in: ... here. Remove gcore.sh comment. Use GDB_TRANSFORM_NAME
6273 and GCORE_TRANSFORM_NAME substitutions.
6274
6275 Fix parsing tabs in ${gdb_target_obs}.
6276 * configure.tgt (gdb_have_gcore): Replace case with for and if.
6277
6278 2013-04-11 Jan Kratochvil <jan.kratochvil@redhat.com>
6279
6280 * remote.c (unpush_and_perror): Add output message final dot.
6281
6282 2013-04-11 Yao Qi <yao@codesourcery.com>
6283
6284 * tracepoint.c (tfile_interp_line): Fit parameters line and
6285 utpp in one line.
6286
6287 2013-04-10 Joel Brobecker <brobecker@adacore.com>
6288
6289 * solib.c (solib_map_sections): Remove code overwriting
6290 SO->SO_NAME with the bfd's filename.
6291
6292 2013-04-10 Pedro Alves <palves@redhat.com>
6293
6294 * cli/cli-decode.c (integer_unlimited_completer): New function.
6295 (add_setshow_integer_cmd, add_setshow_uinteger_cmd)
6296 (add_setshow_zuinteger_unlimited_cmd): Install the "unlimited"
6297 completer.
6298 * cli/cli-setshow.c: Include "cli/cli-utils.h".
6299 (is_unlimited_literal): New function.
6300 (do_set_command): Handle literal "unlimited" arguments.
6301 * frame.c (_initialize_frame) <set backtrace limit>: Document
6302 "unlimited".
6303 * printcmd.c (_initialize_printcmd) <set print
6304 max-symbolic-offset>: Add help text.
6305 * record-full.c (_initialize_record_full) <set record full
6306 insn-number-max>: Likewise.
6307 * record.c (_initialize_record) <set record
6308 instruction-history-size, set record function-call-history-size>:
6309 Add help text.
6310 * ser-tcp.c (_initialize_ser_tcp) <set tcp connect-timeout>: Add
6311 help text.
6312 * tracepoint.c (_initialize_tracepoint) <set trace-buffer-size>:
6313 Likewise.
6314 * source.c (_initialize_source) <set listsize>: Add help text.
6315 * utils.c (initialize_utils) <set height, set width>: Likewise.
6316 <set pagination>: Mention "set height unlimited".
6317 * valprint.c (_initialize_valprint) <set print elements, set print
6318 repeats>: Document "unlimited".
6319
6320 2013-04-10 Pedro Alves <palves@redhat.com>
6321
6322 * cli/cli-cmds.c (quit_command): Call query_if_trace_running
6323 instead of disconnect_tracing.
6324 * infcmd.c (detach_command, disconnect_command): Call
6325 query_if_trace_running. Adjust.
6326 * top.c: Include "tracepoint.h".
6327 (quit_target): Delete. Contents moved ...
6328 (quit_force): ... here. Wrap each stage of teardown in
6329 TRY_CATCH. Call disconnect_tracing before detaching.
6330
6331 2013-04-10 Hui Zhu <hui@codesourcery.com>
6332 Yao Qi <yao@codesourcery.com>
6333
6334 * configure.ac: Check libbabeltrace is installed.
6335 * config.in: Regenerate.
6336 * configure: Regenerate.
6337 * Makefile.in (LIBBABELTRACE): New.
6338 (CLIBS): Add LIBBABELTRACE.
6339 * ctf.c: Include "exec.h".
6340 (CTF_EVENT_ID_STATUS, CTF_EVENT_ID_TSV_DEF): New macros.
6341 (CTF_EVENT_ID_TP_DEF, ctf_save_write_int32): New macros.
6342 (ctf_save_metadata_header): Define new type aliases in
6343 metadata.
6344 (ctf_write_header): Define event type "tsv_def" and "tp_def"
6345 in metadata. Start a new faked packet for trace status.
6346 (ctf_write_status): Write trace status to CTF.
6347 (ctf_write_uploaded_tsv): Write TSV to CTF.
6348 (ctf_write_uploaded_tp): Write tracepoint definition to CTF.
6349 (ctf_write_definition_end): End the faked packet.
6350
6351 (ctx, ctf_iter, trace_dirname): New.
6352 (start_pos): New variable.
6353 (ctf_destroy, ctf_open_dir, ctf_open): New.
6354 (SET_INT32_FIELD, SET_ARRAY_FIELD, SET_STRING_FIELD): New
6355 macros.
6356 (ctf_read_tsv, ctf_read_tp, ctf_close, ctf_files_info): New.
6357 (ctf_fetch_registers, ctf_xfer_partial): New.
6358 (ctf_get_trace_state_variable_value): New.
6359 (ctf_get_tpnum_from_frame_event): New.
6360 (ctf_get_traceframe_address): New.
6361 (ctf_trace_find, ctf_has_stack): New.
6362 (ctf_has_registers, ctf_traceframe_info, init_ctf_ops): New.
6363 (ctf_get_trace_status, ctf_read_status): New.
6364 (_initialize_ctf): New.
6365 * tracepoint.c (get_tracepoint_number): New
6366 (get_uploaded_tsv): Remove 'static'.
6367 (struct traceframe_info, trace_regblock_size): Move it to ...
6368 * tracepoint.h: ... here.
6369 (get_tracepoint_number): Declare it.
6370 (get_uploaded_tsv): Declare it.
6371
6372 * NEWS: Mention new configure option.
6373
6374 2013-04-10 Pedro Alves <palves@redhat.com>
6375 Hui Zhu <hui@codesourcery.com>
6376
6377 * breakpoint.c (dprintf_re_set): New.
6378 (initialize_breakpoint_ops): Set dprintf_breakpoint_ops re_set
6379 to dprintf_re_set.
6380
6381 2013-04-09 Joel Brobecker <brobecker@adacore.com>
6382
6383 * configure.tgt (gdb_target_obs) <powerpc-*-aix* | rs6000-*-*>:
6384 Remove solib-svr4.o from the list.
6385
6386 2013-04-09 Joel Brobecker <brobecker@adacore.com>
6387
6388 * varobj.c (update_dynamic_varobj_children) [!HAVE_PYTHON]:
6389 Use gdb_assert_not_reached instead of invalid boolean expression.
6390
6391 2013-04-09 Pedro Alves <palves@redhat.com>
6392
6393 * remote.c (unpush_and_perror): New function.
6394 (readchar, remote_serial_write): Use it.
6395
6396 2013-04-09 Markus Metzger <markus.t.metzger@intel.com>
6397
6398 * NEWS: Mention new btrace RSP packets.
6399
6400 2013-04-08 Tom Tromey <tromey@redhat.com>
6401
6402 * symmisc.c (dump_msymbols): Cast fprintf_filtered argument to
6403 long.
6404
6405 2013-04-08 Tom Tromey <tromey@redhat.com>
6406
6407 * maint.c (print_bfd_section_info): Print the section index.
6408 * symmisc.c (dump_msymbols): Print the section index.
6409
6410 2013-04-08 Tom Tromey <tromey@redhat.com>
6411
6412 PR symtab/8424:
6413 * blockframe.c (find_pc_partial_function_gnu_ifunc): Check
6414 SYMBOL_SECTION, not SYMBOL_OBJ_SECTION.
6415 * breakpoint.c (resolve_sal_pc): Update.
6416 * elfread.c (elf_gnu_ifunc_record_cache): Update.
6417 * findvar.c (struct minsym_lookup_data) <objfile>: New field.
6418 (minsym_lookup_iterator_cb): Use it.
6419 (default_read_var_value): Update.
6420 * hppa-hpux-tdep.c (hppa64_hpux_in_solib_call_trampoline):
6421 Update.
6422 * infcmd.c (jump_command): Update.
6423 * linespec.c (minsym_found): Update.
6424 * maint.c (maintenance_translate_address): Update.
6425 * minsyms.c (lookup_minimal_symbol_by_pc_section_1): Update.
6426 (prim_record_minimal_symbol_full): Don't set SYMBOL_OBJ_SECTION.
6427 * parse.c (write_exp_msymbol): Update.
6428 * printcmd.c (address_info): Update.
6429 * psymtab.c (find_pc_sect_psymbol): Update.
6430 (fixup_psymbol_section): Check SYMBOL_SECTION, not
6431 SYMBOL_OBJ_SECTION.
6432 (add_psymbol_to_bcache): Correctly initialize SYMBOL_SECTION.
6433 Don't initialize SYMBOL_OBJ_SECTION.
6434 * spu-tdep.c (spu_catch_start): Update.
6435 * stabsread.c (define_symbol): Don't set SYMBOL_SECTION.
6436 * symmisc.c (dump_msymbols, print_symbol): Update.
6437 * symtab.c (fixup_section): Don't set 'obj_section'. Change
6438 how fallback section is computed.
6439 (fixup_symbol_section): Update.
6440 (find_pc_sect_symtab, find_function_start_sal, skip_prologue_sal):
6441 Update.
6442 (allocate_symbol, initialize_symbol, allocate_template_symbol):
6443 Initialize SYMBOL_SECTION.
6444 * symtab.h (struct general_symbol_info) <section>: Update comment.
6445 <obj_section>: Remove.
6446 (SYMBOL_OBJ_SECTION): Add 'objfile' argument. Rewrite.
6447 (SYMBOL_OBJFILE): New macro.
6448
6449 2013-04-08 Tom Tromey <tromey@redhat.com>
6450
6451 * coffread.c (record_minimal_symbol): Update.
6452 * dbxread.c (record_minimal_symbol): Update.
6453 * elfread.c (record_minimal_symbol): Update.
6454 * machoread.c (macho_symtab_add_minsym): Update.
6455 * mdebugread.c (record_minimal_symbol, parse_partial_symbols):
6456 Update.
6457 * minsyms.c (prim_record_minimal_symbol): Update.
6458 (prim_record_minimal_symbol_full): Remove 'bfd_section'
6459 argument.
6460 (prim_record_minimal_symbol_and_info): Likewise.
6461 * minsyms.h (prim_record_minimal_symbol_full)
6462 (prim_record_minimal_symbol_and_info): Update.
6463 * symtab.c (allocate_symbol, initialize_symbol)
6464 (allocate_template_symbol): Initialize SYMBOL_SECTION.
6465 * xcoffread.c (record_minimal_symbol, scan_xcoff_symtab):
6466 Update.
6467
6468 2013-04-08 Tom Tromey <tromey@redhat.com>
6469
6470 PR symtab/8423:
6471 * solib-som.c (som_solib_section_offsets): Use BFD section
6472 indices. Set offsets for all sections.
6473 * somread.c (som_symtab_read): Compute BFD section for
6474 symbol. Use prim_record_minimal_symbol_and_info.
6475 (som_symfile_read): Fix comment.
6476 (struct find_section_offset_arg): New.
6477 (find_section_offset, set_section_index): New functions.
6478 (som_symfile_offsets): Use set_section_index to compute
6479 section indices.
6480
6481 2013-04-08 Tom Tromey <tromey@redhat.com>
6482
6483 * coffread.c (cs_to_section): Use gdb_bfd_section_index.
6484 * elfread.c (record_minimal_symbol, elf_symtab_read): Use
6485 gdb_bfd_section_index.
6486 * gdb_bfd.c (gdb_bfd_section_index, gdb_bfd_count_sections):
6487 New functions.
6488 * gdb_bfd.h (gdb_bfd_section_index, gdb_bfd_count_sections):
6489 Declare.
6490 * machoread.c (macho_symtab_add_minsym, macho_symfile_offsets):
6491 Update.
6492 * objfiles.c (add_to_objfile_sections_full): New function.
6493 (add_to_objfile_sections): Use it.
6494 (build_section_table): Rewrite.
6495 (objfile_relocate1): Use gdb_bfd_section_index. Update.
6496 * objfiles.h (obj_section_offset): Use gdb_bfd_section_index.
6497 (struct objfile) <sections>: Update comment.
6498 (ALL_OBJFILE_OSECTIONS): Skip sections where the_bfd_section
6499 is NULL.
6500 (ALL_OBJSECTIONS): Use it.
6501 * solib-dsbt.c (dsbt_relocate_main_executable): Update.
6502 * solib-frv.c (frv_relocate_main_executable): Update.
6503 * solib-target.c (solib_target_relocate_section_addresses):
6504 Use gdb_bfd_section_index.
6505 * symfile.c (build_section_addr_info_from_section_table):
6506 Use gdb_bfd_section_index.
6507 (build_section_addr_info_from_bfd, place_section): Likewise.
6508 * symtab.c (fixup_section): Update.
6509 * xcoffread.c (find_targ_sec): Use gdb_bfd_section_index.
6510
6511 2013-04-08 Tom Tromey <tromey@redhat.com>
6512
6513 * minsyms.h (struct bound_minimal_symbol): New.
6514 (lookup_minimal_symbol_and_objfile): Return bound_minimal_symbol.
6515 Remove objfile argument.
6516 (lookup_minimal_symbol_by_pc_section, lookup_minimal_symbol_by_pc):
6517 Return bound_minimal_symbol.
6518 * minsyms.c (lookup_minimal_symbol_by_pc_1)
6519 (lookup_minimal_symbol_by_pc_section, lookup_minimal_symbol_by_pc):
6520 Return bound_minimal_symbol.
6521 (in_gnu_ifunc_stub): Update.
6522 (lookup_minimal_symbol_and_objfile): Return bound_minimal_symbol.
6523 Remove 'objfile_p' argument.
6524 (lookup_solib_trampoline_symbol_by_pc): Update.
6525 * ada-tasks.c, amd64-windows-tdep.c, arm-tdep.c,
6526 arm-wince-tdep.c, block.c, blockframe.c, breakpoint.c, btrace.c,
6527 c-valprint.c, dwarf2loc.c, elfread.c, frame.c, frv-tdep.c,
6528 glibc-tdep.c, gnu-v2-abi.c, gnu-v3-abi.c, hppa-hpux-tdep.c,
6529 i386-tdep.c, ia64-tdep.c, infcall.c, infcmd.c, jit.c,
6530 linux-fork.c, m32c-tdep.c, m68hc11-tdep.c, maint.c,
6531 mips-tdep.c, p-valprint.c, parse.c, ppc-linux-tdep.c,
6532 ppc-sysv-tdep.c, printcmd.c, rs6000-tdep.c, sh64-tdep.c,
6533 stack.c, symtab.c, tui/tui-disasm.c: Update.
6534
6535 2013-04-08 Tom Tromey <tromey@redhat.com>
6536
6537 * ada-lang.c (ada_decode_symbol): Check and set 'ada_mangled'.
6538 Use symbol's obstack, not an objfile.
6539 * coffread.c (process_coff_symbol): Update.
6540 * dwarf2read.c (fixup_go_packaging, new_symbol_full): Update.
6541 * jv-lang.c (add_class_symbol): Update.
6542 * mdebugread.c (new_symbol): Update.
6543 * minsyms.c (prim_record_minimal_symbol_full)
6544 (terminate_minimal_symbol_table): Update.
6545 * psymtab.c (add_psymbol_to_bcache): Clear entire symbol. Update.
6546 * stabsread.c (define_symbol, read_enum_type): Update.
6547 * symtab.c (symbol_set_demangled_name, symbol_get_demangled_name):
6548 Handle Ada specially.
6549 (symbol_set_language): Add 'obstack' argument.
6550 (symbol_set_names): Update.
6551 (symbol_natural_name, symbol_demangled_name): Always use
6552 ada_decode_symbol.
6553 * symtab.h (struct general_symbol_info)
6554 <language_specific::obstack>: New field.
6555 <ada_mangled>: New field.
6556 (SYMBOL_SET_LANGUAGE): Add 'obstack' argument.
6557 (symbol_set_language): Update.
6558
6559 2013-04-08 Tom Tromey <tromey@redhat.com>
6560
6561 * symtab.c (symbol_init_cplus_specific, symbol_set_demangled_name):
6562 Take an obstack, not an objfile.
6563 (symbol_set_names): Update.
6564 * symtab.h (symbol_set_demangled_name): Update.
6565
6566 2013-04-08 Tom Tromey <tromey@redhat.com>
6567
6568 * coffread.c (process_coff_symbol, coff_read_enum_type): Call
6569 allocate_symbol.
6570 * dwarf2read.c (fixup_go_packaging): Call allocate_symbol.
6571 (read_func_scope): Call allocate_template_symbol.
6572 (new_symbol_full): Call allocate_symbol.
6573 * jit.c (finalize_symtab): Call allocate_symbol.
6574 * jv-lang.c (add_class_symbol): Call allocate_symbol.
6575 * mdebugread.c (parse_symbol, new_block): Call allocate_symbol.
6576 * stabsread.c (patch_block_stabs, define_symbol, read_enum_type)
6577 (common_block_end): Call allocate_symbol.
6578 * symtab.c (allocate_symbol, initialize_symbol)
6579 (allocate_template_symbol): New functions.
6580 * symtab.c (allocate_symbol, initialize_symbol)
6581 (allocate_template_symbol): Declare.
6582 * xcoffread.c (process_xcoff_symbol): Call initialize_symbol.
6583
6584 2013-04-08 Pedro Alves <palves@redhat.com>
6585 Keith Seitz <keiths@redhat.com>
6586
6587 * breakpoint.c (create_breakpoint): Rename
6588 "parse_condition_and_thread" parameter to "parse_arg". Update
6589 describing comment. If !PARSE_ARG, then error out if ARG is not
6590 the empty string after extracting the location.
6591 * breakpoint.h (create_breakpoint): Rename
6592 "parse_condition_and_thread" parameter to "parse_arg".
6593
6594 2013-04-08 Aleksandar Ristovski <aristovski@qnx.com
6595
6596 * solib-svr4.c (lm_addr_check): Add const qualifier to 'so' arg.
6597
6598 2013-04-07 Yao Qi <yao@codesourcery.com>
6599
6600 * remote.c (remote_trace_find): Change type of parameters 'addr1'
6601 and 'addr2' to CORE_ADDR.
6602 * target.c (update_current_target): Update.
6603 * target.h (struct target_ops) <to_trace_find>: Change parameter
6604 type to CORE_ADDR.
6605 * tracepoint.c (tfind_1): Change type of parameters 'addr1' and
6606 'addr2' to CORE_ADDR.
6607 (tfile_trace_find): Likewise.
6608 (tfile_get_traceframe_address): Change return type to CORE_ADDR.
6609 Change local variable 'addr' to type CORE_ADDR.
6610 * tracepoint.h (tfind_1): Update declaration.
6611
6612 2013-04-06 Eli Zaretskii <eliz@gnu.org>
6613
6614 * windows-nat.c (windows_get_absolute_argv0): Move from here...
6615 * mingw-hdep.c (windows_get_absolute_argv0): ...to here.
6616 Include main.h.
6617
6618 * windows-nat.h (windows_get_absolute_argv0): Move prototype from
6619 here...
6620 * main.h (windows_get_absolute_argv0): ...to here.
6621
6622 2013-04-05 Doug Evans <dje@google.com>
6623
6624 * dwarf2read.c (struct dwarf2_per_objfile): Tweak comment.
6625 (read_cutu_die_from_dwo): Add comments.
6626 (read_structure_type): Update comment.
6627 (read_enumeration_type, read_namespace_type): Update comment.
6628 (read_die_type, get_die_type_at_offset, get_die_type): Update comment.
6629
6630 2013-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
6631
6632 Convert man pages to texinfo, new gdbinit.5 texinfo page.
6633 * Makefile.in (gdb.z): Remove.
6634 (install-only): Remove $(man1dir) and gdb.1 installation.
6635 * gdb.1: Remove.
6636
6637 2013-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
6638
6639 Fix compatibility with Linux kernel 3.8.3.
6640 * linux-tdep.c (linux_find_memory_regions_full): Move variable number
6641 to more inner block. Remove parsing of NUMBER from outer block.
6642 Parse NUMBER only if KEYWORD has been identified.
6643
6644 2013-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
6645
6646 Fix variable name shadowing.
6647 * linux-tdep.c (linux_find_memory_regions_full): Rename outer variable
6648 filename to mapsfilename and update its uses.
6649
6650 2013-04-05 Eli Zaretskii <eliz@gnu.org>
6651
6652 * Makefile.in (TAGS): Avoid warning from etags when $GDB_NM_FILE is
6653 empty. See http://sourceware.org/ml/gdb-patches/2012-08/msg00504.html
6654 and http://sourceware.org/ml/gdb-patches/2013-04/msg00055.html for
6655 details of the problem.
6656
6657 2013-04-04 Pedro Alves <palves@redhat.com>
6658 Hui Zhu <hui@codesourcery.com>
6659
6660 * breakpoint.c (validate_commands_for_breakpoint): If validating a
6661 tracepoint, reset its STEP_COUNT and call validate_actionline.
6662
6663 2013-04-03 Doug Evans <dje@google.com>
6664
6665 * dwarf2read.c (read_die_and_siblings_1): Renamed from
6666 read_die_and_siblings.
6667 (read_die_and_siblings): New function.
6668 (read_cutu_die_from_dwo): Dump die if requested.
6669 (read_die_and_children): Call read_full_die_1 and
6670 read_die_and_siblings_1.
6671 (read_full_die): Dump die if requested.
6672
6673 * dwarf2read.c (read_comp_units_from_section): Add debugging printf.
6674
6675 * dwarf2read.c (struct dwo_file): New member comp_dir.
6676 Rename member name to dwo_name. All uses updated.
6677 (hash_dwo_file): Include comp_dir in computation.
6678 (eq_dwo_file): Ditto.
6679 (lookup_dwo_file_slot): New arg comp_dir. All callers updated.
6680 (create_dwo_in_dwp, lookup_dwo_in_dwp, open_and_init_dwo_file): Ditto.
6681
6682 * psymtab.c (read_psymtabs_with_fullname): Don't call
6683 psymtab_to_fullname if the basenames are different.
6684
6685 2013-04-03 Jan Kratochvil <jan.kratochvil@redhat.com>
6686
6687 * NEWS (Changes in GDB 7.6): Update the data-disassemble for "fullname".
6688 New entry about "fullname" presence.
6689
6690 2013-04-03 Pedro Alves <palves@redhat.com>
6691
6692 * NEWS: Mention x86_64/Cygwin as new native configuration.
6693
6694 2013-04-02 Doug Evans <dje@google.com>
6695
6696 * dwarf2read.c (read_structure_type): Fix typo in comment.
6697
6698 2013-04-02 Pedro Alves <palves@redhat.com>
6699
6700 * NEWS: Mention "set/show debug aarch64", "set/show debug
6701 coff-pe-read" and "set/show debug mach-o".
6702
6703 2013-04-02 Pedro Alves <palves@redhat.com>
6704
6705 * NEWS: Mention "set/show remote trace-buffer-size-packet".
6706
6707 2013-04-02 Eli Zaretskii <eliz@gnu.org>
6708
6709 * Makefile.in (HFILES_NO_SRCDIR): Remove call-cmds.h.
6710 gdb_string.h is now in common/.
6711
6712 2013-04-02 Pedro Alves <palves@redhat.com>
6713
6714 * NEWS: Move "set debug notification" and "set trace-buffer-size"
6715 under "New options".
6716
6717 2013-04-02 Jan Kratochvil <jan.kratochvil@redhat.com>
6718
6719 Revert this patch:
6720 PR gdb/15275
6721 * remote.c (remote_get_trace_status): Include putpkt in TRY_CATCH.
6722
6723 2013-04-02 Pedro Alves <palves@redhat.com>
6724
6725 PR gdb/15275
6726
6727 * remote.c (send_interrupt_sequence): Use remote_serial_write.
6728 (remote_serial_write): New function.
6729 (putpkt_binary, getpkt_or_notif_sane_1): Use remote_serial_write.
6730
6731 2013-04-01 Jiong Wang <jiwang@tilera.com>
6732
6733 * NEWS: Mention TILE-Gx in "New native configurations" and
6734 "New targets" sections.
6735
6736 2013-04-01 Doug Evans <dje@google.com>
6737
6738 * dwarf2read.c (lookup_signatured_type_at_offset): Delete.
6739 (process_enumeration_scope): Simplify.
6740
6741 * dwarf2read.c (struct dwarf2_per_cu_data): Move member
6742 type_unit_group ...
6743 (struct signatured_type): ... to here.
6744 (sig_type_ptr): New typedef.
6745 (type_unit_group): Delete member 't.first_cu'. Move member 'tus'
6746 out of union 't'. All uses updated.
6747 (dw2_get_file_names_reader): Assert not called for a type unit.
6748 (dw2_get_file_names): Assert not called for a type unit or type
6749 unit group.
6750 (build_type_psymtabs_reader): Assert called for a type unit.
6751 (build_type_psymtab_dependencies): Assert called for a type unit group.
6752
6753 * dwarf2read.c (free_dwo_file): Add comment.
6754 (dwarf2_per_objfile_free): Unref dwp bfd.
6755
6756 2013-04-01 Aleksandar Ristovski <aristovski@qnx.com>
6757
6758 * coff-pe-read.c (add_pe_exported_sym): Remove unused 'dll_name_len'.
6759 (add_pe_forwarded_sym): Remove unused 'section', 'dll_name_len'.
6760 (read_pe_exported_syms): Remove unused 'exportix'.
6761 (pe_text_section_offset): Remove unused 'opthdr_ofs', 'num_entries',
6762 'export_rva', 'export_size', 'expptr', 'exp_funcbase', 'expdata',
6763 'erva', 'name_rvas', 'ordinals', 'nexp', 'ordbase', 'dll_name'.
6764
6765 2013-04-01 Aleksandar Ristovski <aristovski@qnx.com>
6766
6767 * breakpoint.c (parse_cond_to_aexpr): Remove unused 'old_chain'.
6768 (print_it_watchpoint): Remove unused 'bl'.
6769 (say_where): Remove unused 'uiout'.
6770 (bpstat_remove_breakpoint_callback): Remove unused 'uiout'.
6771 (bkpt_breakpoint_hit): Remove unused 'b'.
6772 (internal_bkpt_print_it): Remove unused 'uiout'.
6773 * buildsym.c (augment_type_symtab): Remove unused 'i'.
6774
6775 2013-03-31 Tiago Stürmer Daitx <tdaitx@linux.vnet.ibm.com>
6776
6777 * ppc-sysv-tdep.c (ppc64_sysv_abi_push_float): New function.
6778 (ppc64_sysv_abi_push_dummy_call): Handle complex arguments.
6779
6780 2013-03-29 Doug Evans <dje@google.com>
6781
6782 * dwarf2read.c (open_dwo_file): Renamed from open_dwop_file.
6783 Delete arg is_dwp. All callers updated.
6784 (open_dwp_file): New function.
6785 (open_and_init_dwp_file): Call it.
6786 (get_dwp_file): New function.
6787 (lookup_dwo_cutu): Call it.
6788
6789 * dwarf2read.c (open_and_init_dwp_file): Remove incorrect, and
6790 unnecessary, cleanup.
6791
6792 * dwarf2read.c (lookup_dwo_cutu): Improve complaint text.
6793
6794 * dwarf2read.c (read_cutu_die_from_dwo): New function.
6795 (lookup_dwo_unit): New function.
6796 (init_cutu_and_read_dies): Move DWO handling to new functions.
6797
6798 * dwarf2read.c (struct signatured_type): Tweak comment.
6799 (struct dwo_unit): Tweak comment.
6800 (create_debug_types_hash_table): Tweak comment. Reformat long line.
6801 (create_dwo_debug_info_hash_table): Tweak comment.
6802 (dwarf2_per_cu_offset_and_type): Tweak comment.
6803
6804 * dwarf2read.c (lookup_signatured_type): Remove complaint about
6805 missing .debug_types section.
6806
6807 2013-03-29 Yao Qi <yao@codesourcery.com>
6808
6809 * corelow.c: Include "completer.h".
6810 (_initialize_corelow): Call add_target_with_completer with
6811 argument 'filename_completer'.
6812 * tracepoint.c: Likewise.
6813 * exec.c (_initialize_exec): Likewise.
6814 * target.c (add_target): Rename to ...
6815 (add_target_with_completer): ... this. Call set_cmd_completer
6816 if parameter completer is not NULL.
6817 (add_target): New.
6818 * target.h: Include "command.h".
6819 (add_target_with_completer): Declare it.
6820
6821 2013-03-28 Joel Brobecker <brobecker@adacore.com>
6822
6823 * coffread.c (is_import_fixup_symbol): New function.
6824 (record_minimal_symbol): Use is_import_fixup_symbol to
6825 detect import fixup symbols, and discard them.
6826
6827 2013-03-28 Doug Evans <dje@google.com>
6828
6829 * dwarf2read.c (create_debug_types_hash_table): Don't allocate the
6830 types hash table until we know we need it.
6831
6832 * dwarf2read.c (create_addrmap_from_index): Complain about bad CU
6833 index numbers.
6834
6835 * dwarf2read.c (dw2_get_file_names): Delete arg "objfile".
6836 All callers updated.
6837 (dw2_print_stats): Print #read CUs too.
6838 (dump_die_shallow): Print signatured types better.
6839
6840 * dwarf2read.c (struct dwarf2_per_cu_data): Rename member
6841 info_or_types_section to section. All uses updated.
6842 (struct dwo_unit): Ditto.
6843
6844 2013-03-28 Pedro Alves <palves@redhat.com>
6845
6846 * NEWS (New options): New section.
6847 (New options): Mention set/show remote trace-status-packet.
6848 * remote.c (PACKET_qTStatus): New enumeration value.
6849 (remote_get_trace_status): Skip sending qTStatus if the packet is
6850 disabled. Use packet_ok.
6851 (_initialize_remote): Register a configuration command for
6852 qTStatus packet.
6853
6854 2013-03-28 Doug Evans <dje@google.com>
6855
6856 * symfile.c (find_separate_debug_file): Add comment.
6857 (terminate_after_last_dir_separator): Tweak comment.
6858
6859 * dwarf2read.c (create_partial_symtab): Add forward decl.
6860 (create_partial_symtab): Move to be closer to other psymtab functions.
6861 (process_psymtab_comp_unit_reader, process_psymtab_comp_unit): Ditto.
6862
6863 * dwarf2read.c (dwarf2_physname): Move declaration to better spot.
6864 (compute_symtab_includes): Remove unnecessary forward declaration.
6865 (die_needs_namespace): Add comment marking group of functions for
6866 dwarf2 name computation.
6867
6868 * typeprint.c (_initialize_typeprint): Improve type help text.
6869
6870 * python/python.c (finish_python_initialization): Provide suggestion
6871 for how to tell gdb to find its python files.
6872
6873 2013-03-28 Pedro Alves <palves@redhat.com>
6874
6875 PR gdb/15294
6876
6877 * source.c (_initialize_source): Change back "set listsize" to an
6878 integer command.
6879
6880 2013-03-27 Gareth McMullin <gareth@blacksphere.co.nz>
6881
6882 PR gdb/15275
6883 * remote.c (remote_get_trace_status): Include putpkt in TRY_CATCH.
6884
6885 2013-03-27 Pedro Alves <palves@redhat.com>
6886
6887 * top.c (history_size): Rename to ...
6888 (history_size_setshow_var): ... this. Add comment.
6889 (show_commands): Use readline's 'history_length' instead of
6890 computing the history length by calling history_get in a loop.
6891 (set_history_size_command): Error out for sizes over INT_MAX.
6892 Restore previous history size on invalid size.
6893 (init_history): If HISTSIZE is negative, leave the history size as
6894 zero. Add comments.
6895 (init_main): Adjust.
6896
6897 2013-03-27 Pedro Alves <palves@redhat.com>
6898
6899 * coff-pe-read.c (_initialize_coff_pe_read): Rename "set debug
6900 coff_pe_read" command to "set debug coff-pe-read".
6901
6902 2013-03-27 Markus Metzger <markus.t.metzger@intel.com>
6903
6904 * record.c (command_size_to_target_size): Fix size comparison.
6905 Change parameter type from pointer to integer to integer.
6906 Update all users.
6907
6908 2013-03-27 Pierre Muller <muller@sourceware.org>
6909
6910 * windows-nat.c (handle_output_debug_string): Avoid typecast
6911 from integer of different size warning.
6912
6913 2013-03-26 Joel Brobecker <brobecker@adacore.com>
6914
6915 * windows-nat.c (handle_output_debug_string): Add empty line
6916 after local block variable definition.
6917
6918 2013-03-26 Pedro Alves <palves@redhat.com>
6919
6920 * ser-tcp.c (wait_for_connect): Make 'polls' parameter unsigned.
6921 (net_open): Make 'polls' local unsigned.
6922
6923 2013-03-26 Pedro Alves <palves@redhat.com>
6924
6925 * remote.c (_initialize_remote): Make "set remoteaddresssize"
6926 a zuinteger command instead of uinteger.
6927
6928 2013-03-26 Pedro Alves <palves@redhat.com>
6929
6930 * record-full.c (record_full_insn_num): Make it unsigned.
6931 (record_full_check_insn_num, record_full_message)
6932 (record_full_registers_change, record_full_xfer_partial): Remove
6933 record_full_insn_max_num check (it's always != 0).
6934 (record_full_info, record_full_restore): Use %u as format string.
6935 (): Use %u as format string.
6936 (set_record_full_insn_max_num): Remove record_full_insn_max_num
6937 check (it's always != 0).
6938
6939 2013-03-26 Pedro Alves <palves@redhat.com>
6940
6941 * dcache.c (_initialize_dcache): Make the "set dcache line-size"
6942 and "set dcache size" commands zuinteger instead of uinteger.
6943
6944 2013-03-26 Pedro Alves <palves@redhat.com>
6945
6946 * cris-tdep.c (_initialize_cris_tdep): Make the "set cris-version"
6947 command zuinteger instead of uinteger.
6948
6949 2013-03-26 Pedro Alves <palves@redhat.com>
6950
6951 * coff-pe-read.c (_initialize_coff_pe_read): Make the command
6952 zuinteger instead of uinteger.
6953
6954 2013-03-26 Pedro Alves <palves@redhat.com>
6955
6956 * record.c (record_insn_history_size_setshow_var)
6957 (record_call_history_size_setshow_var): New globals.
6958 (command_size_to_target_size): New function.
6959 (cmd_record_insn_history, cmd_record_call_history): Use
6960 command_size_to_target_size instead of cast.
6961 (validate_history_size, set_record_insn_history_size)
6962 (set_record_call_history_size): New functions.
6963 (_initialize_record): Install set_record_insn_history_size and
6964 set_record_call_history_size as "set" hooks of "set record
6965 instruction-history-size" and "set record
6966 function-call-history-size".
6967
6968 2013-03-26 Pedro Alves <palves@redhat.com>
6969
6970 * top.c (gdb_rl_operate_and_get_next): Replace max_input_history
6971 use with history_max_entries use. Remove FIXME note.
6972
6973 2013-03-26 Markus Metzger <markus.t.metzger@intel.com>
6974
6975 * record-btrace.c (record_btrace_close): Call
6976 record_btrace_auto_disable.
6977
6978 2013-03-25 Joel Brobecker <brobecker@adacore.com>
6979
6980 * rs6000-nat.c (fixup_breakpoints): Delete declaration.
6981
6982 2013-03-25 Doug Evans <dje@google.com>
6983
6984 * contrib/cc-with-tweaks.sh: Check exit code of dwp.
6985
6986 2013-03-25 Tom Tromey <tromey@redhat.com>
6987
6988 PR symtab/11462:
6989 * c-exp.y (exp): Add new productions for destructors after '.' and
6990 '->'.
6991 (write_destructor_name): New function.
6992
6993 2013-03-25 Tom Tromey <tromey@redhat.com>
6994
6995 PR c++/9197:
6996 * opencl-lang.c (evaluate_subexp_opencl) <STRUCTOP_STRUCT>: Use
6997 value_struct_elt, not lookup_struct_elt_type.
6998 * eval.c (evaluate_subexp_standard) <STRUCTOP_STRUCT,
6999 STRUCTOP_PTR>: Use value_struct_elt, not lookup_struct_elt_type.
7000 * expression.h (EVAL_AVOID_SIDE_EFFECTS): Update comment.
7001
7002 2013-03-25 Yao Qi <yao@codesourcery.com>
7003
7004 * ctf.c [USE_WIN32API]: Undef 'mkdir' and use 'mkdir'
7005 instead of '_mkdir'.
7006
7007 2013-03-23 Eli Zaretskii <eliz@gnu.org>
7008
7009 * windows-nat.c (windows_get_absolute_argv0): New function.
7010 * windows-nat.h: Add its prototype.
7011
7012 * main.c (get_init_files): Use filename_ncmp instead of strncmp.
7013 Use IS_DIR_SEPARATOR instead of looking for a character inside
7014 SLASH_STRING. Include filenames.h.
7015 (captured_main) [__MINGW32__]: Make argv[0] absolute, so that
7016 relocate_gdb_directory works when passed gdb_program_name.
7017 Include windows-nat.h.
7018
7019 2013-03-22 Jan Kratochvil <jan.kratochvil@redhat.com>
7020
7021 * exceptions.h (enum errors): New entry TARGET_CLOSE_ERROR.
7022 * remote.c (trace_error): Remove the special handling of '2'.
7023 (readchar) <SERIAL_EOF>
7024 (readchar) <SERIAL_ERROR>
7025 (getpkt_or_notif_sane_1): Use TARGET_CLOSE_ERROR for them.
7026 (remote_get_trace_status): Call throw_exception if EX is
7027 TARGET_CLOSE_ERROR.
7028 * utils.c (perror_with_name): Rename to ...
7029 (throw_perror_with_name): ... here. New parameter errcode, describe it
7030 in the function comment.
7031 (perror_with_name): New function wrapper.
7032 * utils.h (enum errors): New stub declaration.
7033 (throw_perror_with_name): New declaration.
7034
7035 2013-03-22 Pedro Alves <palves@redhat.com>
7036 Yao Qi <yao@codesourcery.com>
7037 Mark Kettenis <kettenis@gnu.org>
7038
7039 * cli/cli-setshow.c (do_set_command) <var_uinteger>:
7040 Don't let the user set the value to UINT_MAX directly.
7041 <var_integer>: Don't let the user set the value to INT_MAX
7042 directly.
7043
7044 2013-03-22 Jan Kratochvil <jan.kratochvil@redhat.com>
7045
7046 * remote.c (remote_unpush_target): New function.
7047 (remote_open_1): Remove two pop_target calls, update one comment, add
7048 comment to target_preopen call. Replace pop_target call by
7049 remote_unpush_target call.
7050 (interrupt_query, readchar, getpkt_or_notif_sane_1): Replace
7051 pop_target calls by remote_unpush_target calls.
7052
7053 2013-03-22 Pedro Alves <palves@redhat.com>
7054
7055 * linux-nat.c (linux_child_follow_fork): Don't call
7056 linux_enable_event_reporting.
7057 (linux_handle_extended_wait): Don't call
7058 linux_enable_event_reporting.
7059
7060 2013-03-22 Pedro Alves <palves@redhat.com>
7061
7062 * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code): Define INSN macro,
7063 use it to rewrite the trampoline buffers with type gdb_byte[], and
7064 undefine the macro. Remove char* cast.
7065
7066 2013-03-21 Doug Evans <dje@google.com>
7067
7068 New commands "mt set per-command {space,time,symtab} {on,off}".
7069 * NEWS: Add entry.
7070 * event-top.c: #include "maint.h".
7071 * main.c: #include "maint.h".
7072 * maint.c: #include <sys/time.h>, <time.h>, block.h, top.h,
7073 timeval-utils.h, maint.h, cli/cli-setshow.h.
7074 (per_command_time, per_command_space): New static globals.
7075 (per_command_symtab): New static global.
7076 (per_command_setlist, per_command_showlist): New static globals.
7077 (struct cmd_stats): Move here from utils.c.
7078 (set_per_command_time): Renamed from set_display_time in utils.c
7079 and moved here. All callers updated.
7080 (set_per_command_space): Renamed from set_display_space in utils.c
7081 and moved here. All callers updated.
7082 (count_symtabs_and_blocks): New function.
7083 (report_command_stats): Moved here from utils.c. Add support for
7084 printing symtab stats. Only print data if enabled before command
7085 executed.
7086 (make_command_stats_cleanup): Ditto.
7087 (sert_per_command_cmd, show_per_command_cmd): New functions.
7088 (_initialize_maint_cmds): Add new commands
7089 mt set per-command {space,time,symtab} {on,off}.
7090 * maint.h: New file.
7091 * top.c: #include "maint.h".
7092 * utils.c (reset_prompt_for_continue_wait_time): New function.
7093 (get_prompt_for_continue_wait_time): New function.
7094 * utils.h (reset_prompt_for_continue_wait_time): Declare
7095 (get_prompt_for_continue_wait_time): Declare.
7096 (make_command_stats_cleanup): Moved to maint.h.
7097 (set_display_time, set_display_space): Moved to maint.h and renamed
7098 to set_per_command_time, set_per_command_space.
7099 * cli/cli-setshow.c (parse_cli_boolean_value): Renamed from
7100 parse_binary_operation and made non-static. Don't call error,
7101 just return an error marker. All callers updated.
7102 * cli/cli-setshow.h (parse_cli_boolean_value): Declare.
7103
7104 2013-03-21 Tom Tromey <tromey@redhat.com>
7105
7106 * symfile.c (alloc_section_addr_info): Update header. Don't set
7107 'num_sections' field.
7108 (build_section_addr_info_from_section_table): Set 'num_sections'.
7109 (build_section_addr_info_from_bfd): Likewise.
7110 (build_section_addr_info_from_objfile): Remove dead loop
7111 condition.
7112 (free_section_addr_info): Unconditionally call xfree.
7113 (relative_addr_info_to_section_offsets, addrs_section_sort)
7114 (addr_info_make_relative, syms_from_objfile_1): Remove dead loop
7115 condition.
7116 (syms_from_objfile_1): Remove dead 'if' condition. Check
7117 'num_sections'.
7118 (add_symbol_file_command): Set 'num_sections'.
7119 * symfile-mem.c (symbol_file_add_from_memory): Set
7120 'num_sections'.
7121 * somread.c (som_symfile_offsets): Remove dead loop condition.
7122 * machoread.c (macho_symfile_offsets): Remove dead 'if'.
7123 * jit.c (jit_bfd_try_read_symtab): Set 'num_sections'.
7124
7125 2013-03-21 Tom Tromey <tromey@redhat.com>
7126
7127 * tracepoint.h (decode_agent_options): Add 'trace_string'
7128 argument.
7129 * tracepoint.c (decode_agent_options): Add 'trace_string'
7130 argument.
7131 (validate_actionline): Update.
7132 (collect_symbol): Add 'trace_string' argument.
7133 (struct add_local_symbols_data) <trace_string>: New field.
7134 (do_collect_symbol): Update.
7135 (add_local_symbols): Add 'trace_string' argument.
7136 (encode_actions_1): Update.
7137 (trace_dump_actions): Update.
7138 * dwarf2loc.c (access_memory): Update.
7139 * ax.h (struct agent_expr) <tracing, trace_string>: New fields.
7140 * ax-general.c (new_agent_expr): Update.
7141 * ax-gdb.h (gen_trace_for_expr, gen_trace_for_var)
7142 (gen_trace_for_return_address): Add argument.
7143 (trace_kludge, trace_string_kludge): Remove.
7144 * ax-gdb.c (trace_kludge, trace_string_kludge): Remove.
7145 (gen_traced_pop, gen_fetch, gen_bitfield_ref, gen_expr): Update.
7146 (gen_trace_for_var): Add 'trace_string' argument.
7147 (gen_trace_for_expr, gen_trace_for_return_address): Likewise.
7148 (gen_printf, agent_eval_command_one): Update.
7149
7150 2013-03-21 Tom Tromey <tromey@redhat.com>
7151
7152 PR exp/15109:
7153 * c-exp.y (yylex): Rewrite to push all tokens onto the FIFO.
7154 Handle FILENAME token.
7155
7156 2013-03-21 Tom Tromey <tromey@redhat.com>
7157
7158 * c-exp.y (YYPRINT): Define.
7159 (c_print_token): New function.
7160
7161 2013-03-21 Tom Tromey <tromey@redhat.com>
7162
7163 * c-exp.y (%union) <sym, ivar, ivec>: Remove.
7164
7165 2013-03-21 Yao Qi <yao@codesourcery.com>
7166
7167 * ctf.c: Include "gdb_stat.h".
7168 [USE_WIN32API]: New macro 'mkdir'.
7169 (ctf_start): Use permission bits macros if they are defined.
7170
7171 2013-03-20 Keith Seitz <keiths@redhat.com>
7172
7173 * breakpoint.h (struct breakpoint): Add comment to
7174 extra_string indicating that this member is mallod'd.
7175 * breakpoint.c (base_breakpoint_dtor): Free extra_string.
7176
7177 2013-03-20 Pedro Alves <palves@redhat.com>
7178
7179 PR gdb/15289
7180
7181 * cli/cli-setshow.c (do_set_command)
7182 <var_uinteger, var_zuinteger>: Use LONGEST for variable holding
7183 the result of parsing the command argument. Throw error if the
7184 value is greater than UINT_MAX. Print the invalid value with
7185 plongest.
7186 <var_integer, var_zinteger>: Use LONGEST for variable holding the
7187 result of parsing the command argument. Throw error if the value
7188 is greater than INT_MAX, not greater or equal. Also throw error
7189 if the value is less than INT_MIN. Print the invalid value with
7190 plongest.
7191 <var_zuinteger_unlimited>: Throw error if the value is greater
7192 than INT_MAX, not greater or equal.
7193 (do_show_command) <var_integer, var_zinteger,
7194 var_zuinteger_unlimited>: Use %d for printing int, not %u.
7195
7196 2013-03-20 Tom Tromey <tromey@redhat.com>
7197
7198 * ax-gdb.c (gen_var_ref): Unconditionally call via computed ops,
7199 if possible.
7200 * dwarf2read.c (read_func_scope): Remove old FIXME.
7201 * eval.c (evaluate_subexp_standard): Check SYMBOL_COMPUTED_OPS,
7202 not LOC_COMPUTED.
7203 * findvar.c (symbol_read_needs_frame, default_read_var_value):
7204 Unconditionally call via computed ops, if possible.
7205 * printcmd.c (address_info): Unconditionally call via computed ops,
7206 if possible.
7207 * stack.c (read_frame_arg): Unconditionally call via computed ops,
7208 if possible.
7209 * symtab.c (register_symbol_computed_impl): Sanity check 'ops'.
7210 * tracepoint.c (scope_info): Unconditionally call via computed ops,
7211 if possible.
7212
7213 2013-03-20 Jan Kratochvil <jan.kratochvil@redhat.com>
7214 Tom Tromey <tromey@redhat.com>
7215
7216 PR symtab/8421:
7217 * coffread.c (coff_register_index): New global.
7218 (process_coff_symbol, coff_read_enum_type): Set
7219 SYMBOL_ACLASS_INDEX.
7220 (_initialize_coffread): Initialize new global.
7221 * dwarf2loc.c (locexpr_find_frame_base_location)
7222 (dwarf2_block_frame_base_locexpr_funcs)
7223 (loclist_find_frame_base_location)
7224 (dwarf2_block_frame_base_loclist_funcs): New.
7225 (dwarf_expr_frame_base_1): Call SYMBOL_BLOCK_OPS, remove internal_error.
7226 (dwarf2_locexpr_funcs, dwarf2_loclist_funcs): Add location_has_loclist.
7227 * dwarf2loc.h (dwarf2_block_frame_base_locexpr_funcs)
7228 (dwarf2_block_frame_base_loclist_funcs): New.
7229 * dwarf2read.c (dwarf2_locexpr_index, dwarf2_loclist_index)
7230 (dwarf2_locexpr_block_index, dwarf2_loclist_block_index): New
7231 globals.
7232 (read_func_scope): Update.
7233 (fixup_go_packaging, mark_common_block_symbol_computed)
7234 (var_decode_location, new_symbol_full, dwarf2_const_value):
7235 Set SYMBOL_ACLASS_INDEX.
7236 (dwarf2_symbol_mark_computed): Likewise. Add 'is_block' argument.
7237 (_initialize_dwarf2_read): Initialize new globals.
7238 * jit.c (finalize_symtab): Set SYMBOL_ACLASS_INDEX.
7239 * jv-lang.c (add_class_symbol): Set SYMBOL_ACLASS_INDEX.
7240 * mdebugread.c (mdebug_register_index, mdebug_regparm_index): New
7241 globals.
7242 (parse_symbol, psymtab_to_symtab_1): Set SYMBOL_ACLASS_INDEX.
7243 (_initialize_mdebugread): Initialize new globals.
7244 * psympriv.h (struct partial_symbol) <aclass>: Update comment.
7245 * stabsread.c (patch_block_stabs): Set SYMBOL_ACLASS_INDEX.
7246 (stab_register_index, stab_regparm_index): New globals.
7247 (define_symbol, read_enum_type, common_block_end): Set
7248 SYMBOL_ACLASS_INDEX.
7249 (_initialize_stabsread): Initialize new globals.
7250 * symtab.c (next_aclass_value, symbol_impl, symbol_impls): New
7251 globals.
7252 (MAX_SYMBOL_IMPLS): New define.
7253 (register_symbol_computed_impl, register_symbol_block_impl)
7254 (register_symbol_register_impl)
7255 (initialize_ordinary_address_classes): New functions.
7256 (_initialize_symtab): Call initialize_ordinary_address_classes.
7257 * symtab.h (enum address_class) <LOC_FINAL_VALUE>: New constant.
7258 (struct symbol_impl): New.
7259 (SYMBOL_ACLASS_BITS): New define.
7260 (struct symbol) <aclass, ops>: Remove fields.
7261 <aclass_index>: New field.
7262 (symbol_impls): Declare.
7263 (SYMBOL_CLASS, SYMBOL_COMPUTED_OPS, SYMBOL_REGISTER_OPS): Redefine.
7264 (SYMBOL_IMPL, SYMBOL_ACLASS_INDEX): New defines.
7265 (register_symbol_computed_impl, register_symbol_block_impl)
7266 (register_symbol_register_impl): Declare.
7267 (struct symbol_computed_ops): Add location_has_loclist.
7268 (struct symbol_block_ops): New.
7269 (SYMBOL_BLOCK_OPS): New.
7270 * xcoffread.c (process_xcoff_symbol): Set SYMBOL_ACLASS_INDEX.
7271
7272 2013-03-20 Tom Tromey <tromey@redhat.com>
7273
7274 * psymtab.c (find_pc_sect_psymbol, fixup_psymbol_section)
7275 (print_partial_symbols, recursively_search_psymtabs): Use
7276 PSYMBOL_CLASS.
7277
7278 2013-03-20 Pierre Muller <muller@sourceware.org>
7279
7280 * contrib/ari/gdb_ari.sh (OP eol rule): Also check
7281 addtion, subtraction, multiplication and division binary operator.
7282
7283 2013-03-20 Jan Kratochvil <jan.kratochvil@redhat.com>
7284
7285 Code cleanup.
7286 * bfd-target.c (target_bfd_xclose): Remove parameter quitting.
7287 * bsd-kvm.c (bsd_kvm_close): Likewise.
7288 * bsd-uthread.c (bsd_uthread_close): Likewise.
7289 * corelow.c (core_close): Likewise.
7290 (core_close_cleanup): Remove parameter quitting from a caller.
7291 * event-top.c (async_disconnect): Likewise.
7292 * exec.c (exec_close_1): Remove parameter quitting.
7293 * go32-nat.c (go32_close): Likewise.
7294 * linux-nat.c (linux_nat_close): Remove parameter quitting. Remove
7295 parameter quitting from a caller.
7296 * mips-linux-nat.c (super_close): Remove parameter quitting from the
7297 variable.
7298 (mips_linux_close): Remove parameter quitting. Remove parameter
7299 quitting from a caller.
7300 * monitor.c (monitor_close): Remove parameter quitting.
7301 * monitor.h (monitor_close): Likewise.
7302 * record-btrace.c (record_btrace_close): Likewise.
7303 * record-full.c (record_full_close): Likewise.
7304 * remote-m32r-sdi.c (m32r_close): Remove parameter quitting and remove
7305 it also from fprintf_unfiltered.
7306 * remote-mips.c (mips_close): Remove parameter quitting.
7307 (mips_detach): Remove parameter quitting from a caller.
7308 * remote-sim.c (gdbsim_close): Remove parameter quitting.
7309 (gdbsim_close): Remove duplicate function comment. Remove parameter
7310 quitting and remove it also from printf_filtered.
7311 * remote.c (remote_close): Remove parameter quitting.
7312 * solib-svr4.c (enable_break): Remove parameter quitting from a caller.
7313 * target.c (update_current_target): Remove parameter int from to_close
7314 de_fault.
7315 (push_target, unpush_target, pop_target): Remove parameter quitting from
7316 a caller.
7317 (pop_all_targets_above, pop_all_targets): Remove parameter quitting.
7318 Remove parameter quitting from a caller.
7319 (target_preopen): Remove parameter quitting from a caller.
7320 (target_close): Remove parameter quitting. Remove parameter quitting
7321 from a caller two times. Remove parameter quitting also from
7322 fprintf_unfiltered.
7323 * target.h (struct target_ops): Remove parameter quitting and as int
7324 from fields to_xclose and to_close.
7325 (extern struct target_ops current_target):
7326 (target_close, pop_all_targets): Remove parameter quitting. Update the
7327 comment.
7328 (pop_all_targets_above): Remove parameter quitting.
7329 * top.c (quit_target): Remove parameter quitting from a caller.
7330 * tracepoint.c (tfile_close): Remove parameter quitting.
7331 * windows-nat.c (windows_close): Remove parameter quitting.
7332
7333 2013-03-20 Corinna Vinschen <vinschen@redhat.com>
7334
7335 * windows-nat.c (handle_output_debug_string): Replace call
7336 to string_to_core_addr with call to strtoull.
7337
7338 2013-03-20 Yao Qi <yao@codesourcery.com>
7339
7340 * ctf.c (ctf_save_metadata_header): Define macro HOST_ENDIANNESS
7341 and write it to CTF metadata.
7342
7343 2013-03-19 Corinna Vinschen <vinschen@redhat.com>
7344
7345 * windows-nat.c (handle_output_debug_string): Change type of n to
7346 SIZE_T to avoid crash on 64 bit systems.
7347
7348 2013-03-17 Eli Zaretskii <eliz@gnu.org>
7349
7350 * python/python-internal.h (HAVE_SNPRINTF)
7351 [_WIN32 && HAVE_DECL_SNPRINTF]: Define, to avoid compiler warnings
7352 about redefinition of snprintf by pyerrors.h.
7353
7354 2013-03-15 Steve Ellcey <sellcey@mips.com>
7355
7356 * remote-sim.c (sim_command_completer): Make char arguments const.
7357
7358 2013-03-15 Tom Tromey <tromey@redhat.com>
7359
7360 PR c++/15116:
7361 * gdbtypes.c (types_equal): Handle TYPE_CODE_FUNC.
7362
7363 2013-03-14 Tom Tromey <tromey@redhat.com>
7364
7365 * gdb_bfd.c (struct gdb_bfd_data) <crc_computed, crc>:
7366 New fields.
7367 (get_file_crc): Move from symfile.c.
7368 (gdb_bfd_crc): New function.
7369 * gdb_bfd.h (gdb_bfd_crc): Declare.
7370 * objfiles.h (struct objfile) <crc32, crc32_p>: Remove.
7371 * symfile.c (get_file_crc): Move to gdb_bfd.c.
7372 (separate_debug_file_exists): Use gdb_bfd_crc.
7373
7374 2013-03-14 Tom Tromey <tromey@redhat.com>
7375
7376 * symfile.c (get_debug_link_info): Remove.
7377 (find_separate_debug_file_by_debuglink): Use
7378 bfd_get_debug_link_info.
7379
7380 2013-03-14 Tom Tromey <tromey@redhat.com>
7381
7382 * symtab.c (error_in_psymtab_expansion): New function.
7383 (lookup_symbol_aux_quick)
7384 (basic_lookup_transparent_type_quick): Remove "last resort"
7385 code. Use error_in_psymtab_expansion.
7386
7387 2013-03-14 Doug Evans <dje@google.com>
7388 Jan Kratochvil <jan.kratochvil@redhat.com>
7389
7390 * dwarf2read.c (dw2_map_symtabs_matching_filename): Put continue after
7391 any successful compare_filenames_for_search or FILENAME_CMP.
7392 * psymtab.c (partial_map_symtabs_matching_filename): Likewise.
7393 * symtab.c (iterate_over_some_symtabs): Likewise.
7394
7395 2013-03-14 Jan Kratochvil <jan.kratochvil@redhat.com>
7396
7397 * source.c (print_source_lines_base): Make a local copy of
7398 symtab_to_fullname.
7399
7400 2013-03-14 Hui Zhu <hui_zhu@mentor.com>
7401 Jan Kratochvil <jan.kratochvil@redhat.com>
7402
7403 * source.c (print_source_lines_base): Suppress "file" for TUI.
7404
7405 2013-03-14 Keith Seitz <keiths@redhat.com>
7406 Alan Matsuoka <alanm@redhat.com>
7407
7408 PR c++/15203
7409 PR c++/15210
7410 * cp-namespace.c (cp_lookup_nested_symbol): Handle TYPE_CODE_FUNC and
7411 TYPE_CODE_METHOD.
7412 * elfread.c (elf_symtab_read): Handle BSF_GNU_UNIQUE for certain
7413 symbols.
7414
7415 2013-03-14 Yao Qi <yao@codesourcery.com>
7416
7417 * tracepoint.c (tfile_write_status): Write 'stop_desc' of trace
7418 status to tfile if trace is stopped by command 'tstop'.
7419
7420 2013-03-14 Yao Qi <yao@codesourcery.com>
7421
7422 * tracepoint.c (tfile_write_status): Write trace notes and user
7423 name into tfile if they are not NULL.
7424
7425 2013-03-14 Hui Zhu <hui@codesourcery.com>
7426 Yao Qi <yao@codesourcery.com>
7427
7428 * Makefile.in (REMOTE_OBS): Add ctf.o.
7429 (SFILES): Add ctf.c.
7430 (HFILES_NO_SRCDIR): Add ctf.h.
7431 * ctf.c, ctf.h: New files.
7432 * tracepoint.c: Include 'ctf.h'.
7433 (collect_pseudocommand): Remove static.
7434 (trace_save_command): Parse option "-ctf".
7435 Produce different trace file writers per option.
7436 Adjust output message.
7437 (trace_save_tfile, trace_save_ctf): New.
7438 * tracepoint.h (trace_save_tfile, trace_save_ctf): Declare.
7439 * mi/mi-main.c: Include 'ctf.h'.
7440 (mi_cmd_trace_save): Handle option '-ctf'. Call either
7441 trace_save_tfile or trace_save_ctf.
7442 * NEWS: Mention these changes.
7443
7444 2013-03-14 Yao Qi <yao@codesourcery.com>
7445
7446 * tracepoint.c (trace_file_writer_xfree): New.
7447 (struct tfile_writer_data): New.
7448 (tfile_dtor, tfile_can_target_save, tfile_start): New.
7449 (tfile_write_header, tfile_write_regblock_type): New.
7450 (tfile_write_status, tfile_write_uploaded_tsv): New.
7451 (tfile_write_uploaded_tp, tfile_write_definition_end): New.
7452 (tfile_write_raw_data, (tfile_end): New.
7453 (tfile_write_ops): New global variable.
7454 (TRACE_WRITE_R_BLOCK): New macro.
7455 (TRACE_WRITE_M_BLOCK_HEADER): New macro.
7456 (TRACE_WRITE_M_BLOCK_MEMORY): New macro.
7457 (TRACE_WRITE_V_BLOCK): New macro.
7458 (trace_save): Add extra one parameter WRITER. Make it static.
7459 Use WRITER to writer trace.
7460 (tfile_trace_file_writer_new): New.
7461 (trace_save_command): Caller update.
7462 (trace_save_tfile): Write trace data in TFILE format.
7463 * tracepoint.h (struct trace_frame_write_ops): New.
7464 (struct trace_file_write_ops): New.
7465 (struct trace_file_writer): New.
7466 (trace_save): Remove its declaration.
7467 (trace_save_tfile): Declare it.
7468 * mi/mi-main.c (mi_cmd_trace_save): Call trace_save_tfile
7469 instead of trace_save.
7470
7471 2013-03-13 Pedro Alves <palves@redhat.com>
7472
7473 * hppa-hpux-nat.c (hppa_hpux_save_state_offset): Make static.
7474
7475 2013-03-13 Pedro Alves <palves@redhat.com>
7476
7477 * dbxread.c (read_ofile_symtab, process_one_symbol): Remove
7478 commented out code.
7479 * demangle.c (current_demangling_style_string): Make it const.
7480 (set_demangling_command): Assert the demangling style is known.
7481 Remove all handling of unknown styles. Set
7482 'current_demangling_style_string' to an element of the
7483 demangling_style_names array.
7484 (set_demangling_style): Delete.
7485 (_initialize_demangler): Set current_demangling_style_string to the
7486 element of the demangling_style_names array that corresponds to
7487 the default demangling style. Remove FIXME note. Don't call
7488 set_demangling_style.
7489 * gdb-demangle.h (set_demangling_style): Remove declaration.
7490
7491 2013-03-13 Pedro Alves <palves@redhat.com>
7492
7493 * ada-lang.c (struct add_partial_datum) <text, text0, word>: Make
7494 fields const.
7495 (ada_make_symbol_completion_list): Make "text0" parameter const.
7496 * ax-gdb.c (agent_eval_command_one): Make "exp" parameter const.
7497 * breakpoint.c (condition_completer): Make "text" and "word"
7498 parameters const. Adjust.
7499 (check_tracepoint_command): Adjust to validate_actionline
7500 prototype change.
7501 (catch_syscall_completer): Make "text" and "word" parameters
7502 const.
7503 * cli/cli-cmds.c (show_user): Make "comname" local const.
7504 (valid_command_p): Make "command" parameter const.
7505 (alias_command): Make "alias_prefix" and "command_prefix" locals
7506 const.
7507 * cli/cli-decode.c (add_cmd): Make "name" parameter const.
7508 (add_alias_cmd): Make "name" and "oldname" parameters const.
7509 Adjust. No longer make copy of OLDNAME.
7510 (add_prefix_cmd, add_abbrev_prefix_cmd, add_set_or_show_cmd)
7511 (add_setshow_cmd_full, add_setshow_enum_cmd)
7512 (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
7513 (add_setshow_filename_cmd, add_setshow_string_cmd)
7514 (add_setshow_string_noescape_cmd)
7515 (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
7516 (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
7517 (add_setshow_zuinteger_unlimited_cmd, add_setshow_zuinteger_cmd)
7518 (delete_cmd, add_info, add_info_alias, add_com, add_com_alias):
7519 Make "name" parameter const.
7520 (help_cmd): Rename "command" parameter to "arg". New const local
7521 "command".
7522 (find_cmd): Make "command" parameter const.
7523 (lookup_cmd_1): Make "text" parameter pointer to const. Adjust to
7524 deprecated_cmd_warning prototype change.
7525 (undef_cmd_error): Make "cmdtype" parameter const.
7526 (lookup_cmd): Make "line" parameter const.
7527 (deprecated_cmd_warning): Change type of "text" parameter to
7528 pointer to const char, from pointer to pointer to char. Adjust.
7529 (lookup_cmd_composition): Make "text" parameter const.
7530 (complete_on_cmdlist, complete_on_enum): Make "text" and "word"
7531 parameters const.
7532 * cli/cli-decode.h (struct cmd_list_element) <name>: Make field
7533 const.
7534 * cli/cli-script.c (validate_comname): Make "tem" local const.
7535 (define_command): New const local "tem_c". Use it in calls to
7536 lookup_cmd.
7537 (document_command): Make "tem" and "comfull" locals const.
7538 (show_user_1): Make "prefix" and "name" parameters const.
7539 * cli-script.h (show_user_1): Make "prefix" and "name" parameters
7540 const.
7541 * command.h (add_cmd, add_alias_cmd, add_prefix_cmd)
7542 (add_abbrev_prefix_cmd, completer_ftype, lookup_cmd, lookup_cmd_1)
7543 (deprecated_cmd_warning, lookup_cmd_composition, add_com)
7544 (add_com_alias, add_info, add_info_alias, complete_on_cmdlist)
7545 (complete_on_enum, add_setshow_enum_cmd)
7546 (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
7547 (add_setshow_filename_cmd, add_setshow_string_cmd)
7548 (add_setshow_string_noescape_cmd)
7549 (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
7550 (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
7551 (add_setshow_zuinteger_cmd, add_setshow_zuinteger_unlimited_cmd):
7552 Change prototypes, constifying strings.
7553 * completer.c (noop_completer, filename_completer): Make "text"
7554 and "prefix" parameters const.
7555 (location_completer, expression_completer)
7556 (complete_line_internal): Make "text" and "prefix" parameters
7557 const and adjust.
7558 (command_completer, signal_completer): Make "text" and "prefix"
7559 parameters const.
7560 * completer.h (noop_completer, filename_completer)
7561 (expression_completer, location_completer, command_completer)
7562 (signal_completer): Change prototypes.
7563 * corefile.c (complete_set_gnutarget): Make "text" and "word"
7564 parameters const.
7565 * cp-abi.c (cp_abi_completer): Likewise.
7566 * expression.h (parse_expression_for_completion): Change
7567 prototype.
7568 * f-lang.c (f_make_symbol_completion_list): Make "text" and "word"
7569 parameters const.
7570 * infcmd.c (_initialize_infcmd): Make "cmd_name" local const.
7571 * infrun.c (handle_completer): Make "text" and "word" parameters
7572 const.
7573 * interps.c (interpreter_completer): Make "text" and "word"
7574 parameters const.
7575 * language.h (struct language_defn)
7576 <la_make_symbol_completion_list>: Make "text" and "word"
7577 parameters const.
7578 * parse.c (parse_exp_1): Move const hack to parse_exp_in_context.
7579 (parse_exp_in_context): Rename to ...
7580 (parse_exp_in_context_1): ... this.
7581 (parse_exp_in_context): Reimplement, with const hack from
7582 parse_exp_1.
7583 (parse_expression_for_completion): Make "string" parameter const.
7584 * printcmd.c (decode_format): Make "string_ptr" parameter pointer
7585 to pointer to const char. Adjust.
7586 (print_command_1): Make "exp" parameter const.
7587 (output_command): Rename to ...
7588 (output_command_const): ... this. Make "exp" parameter const.
7589 (output_command): Reimplement.
7590 (x_command): Adjust.
7591 (display_command): Rename "exp" parameter to "arg". New "exp"
7592 local, const version of "arg".
7593 * python/py-auto-load.c (gdbpy_initialize_auto_load): Make
7594 "cmd_name" local const.
7595 * python/py-cmd.c (cmdpy_destroyer): Cast const away in xfree
7596 call.
7597 (cmdpy_completer): Make "text" and "word" parameters const.
7598 (gdbpy_parse_command_name): Make "prefix_text2" local const.
7599 * python/py-param.c (add_setshow_generic): Make "tmp_name" local
7600 const.
7601 * remote.c (_initialize_remote): Make "cmd_name" local const.
7602 * symtab.c (language_search_unquoted_string): Make "text" and "p"
7603 parameters const. Adjust.
7604 (completion_list_add_fields): Make "sym_text", "text" and "word"
7605 parameters const.
7606 (struct add_name_data) <sym_text, text, word>: Make fields const.
7607 (default_make_symbol_completion_list_break_on): Make "text" and
7608 "word" parameters const. Adjust locals.
7609 (default_make_symbol_completion_list)
7610 (make_symbol_completion_list, make_symbol_completion_type)
7611 (make_symbol_completion_list_fn): Make "text" and "word"
7612 parameters const.
7613 (make_file_symbol_completion_list): Make "text", "word" and
7614 "srcfile" parameters const. Adjust locals.
7615 (add_filename_to_list): Make "text" and "word" parameters const.
7616 (struct add_partial_filename_data) <text, word>: Make fields
7617 const.
7618 (make_source_files_completion_list): Make "text" and "word"
7619 parameters const.
7620 * symtab.h (default_make_symbol_completion_list_break_on)
7621 (default_make_symbol_completion_list, make_symbol_completion_list)
7622 (make_symbol_completion_type enum type_code)
7623 (make_symbol_completion_list_fn make_file_symbol_completion_list)
7624 (make_source_files_completion_list): Change prototype.
7625 * top.c (execute_command): Adjust to pass pointer to pointer to
7626 const char to lookup_cmd, and to deprecated_cmd_warning prototype
7627 change.
7628 (set_verbose): Make "cmdname" local const.
7629 * tracepoint.c (decode_agent_options): Make "exp" parameter const,
7630 and adjust.
7631 (validate_actionline): Make "line" parameter a pointer to const
7632 char, and adjust.
7633 (encode_actions_1): Make "action_exp" local const, and adjust.
7634 (encode_actions): Adjust.
7635 (replace_comma): Delete.
7636 (trace_dump_actions): Make "action_exp" and "next_comma" locals
7637 const, and adjust. Don't frob the action string while splitting
7638 it at commas. Instead, make a copy of each split substring in
7639 turn.
7640 (trace_dump_command): Adjust to validate_actionline prototype
7641 change.
7642 * tracepoint.h (decode_agent_options, decode_agent_options)
7643 (encode_actions, validate_actionline): Change prototypes.
7644 * valprint.h (output_command): Delete declaration.
7645 (output_command_const): Declare.
7646 * value.c (function_destroyer): Cast const away in xfree call.
7647
7648 2013-03-13 Pedro Alves <palves@redhat.com>
7649
7650 * ada-lang.c (ada_decode_symbol): Cast away constness of GSYMBOL
7651 rather than casting 'const char * const *' to 'const char **'.
7652 * ada-lex.l (processInt): Make "trailer" local const. Remove
7653 'const char **' cast.
7654 * arm-linux-tdep.c (arm_stap_parse_special_token): Add 'char *'
7655 locals, and use those as strtol output pointer, instead than doing
7656 invalid casts to from 'const char **' to 'char **'.
7657 (_initialize_demangle): Remove cast.
7658 * i386-tdep.c (i386_stap_parse_special_token): : Add 'char *'
7659 locals, and use those as strtol output pointer, instead than doing
7660 invalid casts to from 'const char **' to 'char **'.
7661 * solib-dsbt.c (dsbt_get_initial_loadmaps): Remove 'gdb_byte**'
7662 casts.
7663 * stap-probe.c (stap_parse_register_operand)
7664 (stap_parse_single_operand): Likewise.
7665
7666 2013-03-13 Yao Qi <yao@codesourcery.com>
7667
7668 * tracepoint.c (tfile_get_trace_state_variable_value): Look for
7669 the last matched 'V' blcok in trace frame.
7670
7671 2013-03-12 Joel Brobecker <brobecker@adacore.com>
7672
7673 * NEWS: Create a new section for the next release branch.
7674 Rename the section of the current branch, now that it has
7675 been cut.
7676
7677 2013-03-12 Joel Brobecker <brobecker@adacore.com>
7678
7679 GDB 7.6 branch created (branch timestamp: 2013-03-12 22:15 UTC)
7680 * version.in: Bump version to 7.6.50.20130312-cvs.
7681
7682 2013-03-12 Keith Seitz <keiths@redhat.com>
7683
7684 * mi/mi-cmds.h (mi_execute_command): Make "cmd" const.
7685 * mi/mi-interp.c (mi_interpreter_exec): Make "command" const.
7686 Remove temporary copy of input string.
7687 (mi_execute_command_wrapper): Make "cmd" const.
7688 * mi/mi-main.c (mi_execute_command): Make "string_ptr" const.
7689 * mi/mi-parse.c (mi_parse_argv): Make "args" const.
7690 Use const strings.
7691 (mi_parse): Make "cmd" const.
7692 Use const strings.
7693 * mi/mi-parse.h (mi_parse): Make "cmd" const.
7694
7695 2013-03-12 Keith Seitz <keiths@redhat.com>
7696
7697 * ada-lang.c (ada_read_renaming_var_value): Pass const
7698 pointer to expression string to parse_exp_1.
7699 (create_excep_cond_exprs): Likewise.
7700 * ax-gdb.c (agent_eval_command_one): Likewise.
7701 (maint_agent_printf_command): Likewise.
7702 Constify much of the string handling/parsing.
7703 * breakpoint.c (set_breakpoint_condition): Pass const
7704 pointer to expression string to parse_exp_1.
7705 (update_watchpoint): Likewise.
7706 (parse_cmd_to_aexpr): Constify string handling.
7707 Pass const pointer to parse_exp_1.
7708 (init_breakpoint_sal): Pass const pointer to parse_exp_1.
7709 (find_condition_and_thread): Likewise.
7710 Make TOK const.
7711 (watch_command_1): Make "arg" const.
7712 Constify string handling.
7713 Copy the expression string instead of changing the input
7714 string.
7715 (update_breakpoint_location): Pass const pointer to
7716 parse_exp_1.
7717 * eval.c (parse_and_eval_address): Make "exp" const.
7718 (parse_to_comma_and_eval): Make "expp" const.
7719 (parse_and_eval): Make "exp" const.
7720 * expression.h (parse_expression): Make argument const.
7721 (parse_exp_1): Make first argument const.
7722 * findcmd.c (parse_find_args): Treat "args" as const.
7723 * linespec.c (parse_linespec): Pass const pointer to
7724 linespec_expression_to_pc.
7725 (linespec_expression_to_pc): Make "exp_ptr" const.
7726 * parse.c (parse_exp_1): Make "stringptr" const.
7727 Make a copy of the expression to pass to parse_exp_in_context until
7728 this whole interface can be constified.
7729 (parse_expression): Make "string" const.
7730 * printcmd.c (ui_printf): Treat "arg" as const.
7731 Handle const strings.
7732 * tracepoint.c (validate_actionline): Pass const pointer to
7733 all calls to parse_exp_1.
7734 (encode_actions_1): Likewise.
7735 * value.h (parse_to_comma_and_eval): Make argument const.
7736 (parse_and_eval_address): Likewise.
7737 (parse_and_eval): Likewise.
7738 * varobj.c (varobj_create): Pass const pointer to parse_exp_1.
7739 (varobj_set_value): Likewise.
7740 * cli/cli-cmds.c (disassemble_command): Treat "arg" as const and
7741 constify string handling.
7742 Pass const pointers to parse_and_eval_address and
7743 parse_to_comman_and_eval.
7744 * cli/cli-utils.c (skip_to_space): Rename to ...
7745 (skip_to_space_const): ... this. Handle const strings.
7746 * cli/cli-utils.h (skip_to_space): Turn into macro which invokes
7747 skip_to_space_const.
7748 (skip_to_space_const): Declare.
7749 * common/format.c (parse_format_string): Make "arg" const.
7750 Handle const strings.
7751 * common/format.h (parse_format_string): Make "arg" const.
7752 * gdbserver/ax.c (ax_printf): Make "format" const.
7753 * python/python.c (gdbpy_parse_and_eval): Do not make a copy
7754 of the expression string.
7755
7756 2013-03-12 Hui Zhu <hui@codesourcery.com>
7757
7758 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Update error message.
7759
7760 2013-03-12 Yao Qi <yao@codesourcery.com>
7761 Hui Zhu <hui@codesourcery.com>
7762
7763 * dwarf2loc.c (access_memory): Change nbits to nbytes in gdb_assert.
7764 (dwarf2_compile_expr_to_ax): Call access_memory in DW_OP_deref and
7765 DW_OP_deref_size.
7766
7767 2013-03-12 Paul Hilfinger <hilfingr@adacore.com>
7768
7769 * ada-lex.l (rules): Only recognize 'thread' as a
7770 delimiter when followed by numerals, as for c-exp.y.
7771 Use new rewind_to_char function to rewind the input for
7772 expression-delimiting tokens.
7773 (rewind_to_char): New function.
7774
7775 2013-03-11 Pedro Alves <palves@redhat.com>
7776 Jan Kratochvil <jan.kratochvil@redhat.com>
7777
7778 * configure: Regenerate.
7779 * configure.ac (check dynamic export flag): Link python test with
7780 $PYTHON_LIBS.
7781
7782 2013-03-11 Doug Evans <dje@google.com>
7783 Keith Seitz <keiths@redhat.com>
7784
7785 * linespec.c (find_linespec_symbols): Call find_function_symbols
7786 first, and then call lookup_prefix_sym/find_method.
7787
7788 2013-03-11 Pedro Alves <palves@redhat.com>
7789
7790 * charset.c (convert_between_encodings): Don't cast between
7791 different pointer to pointer types. Instead, make the 'inp' local
7792 be of the type iconv expects.
7793 (wchar_iterate): Don't cast between different pointer to pointer
7794 types. Instead, use new pointer local of the type iconv expects.
7795 * target.c (target_read_stralloc, target_fileio_read_stralloc):
7796 Add new local of type char pointer, and use it to get a
7797 char/string view of the byte buffer, instead of casting between
7798 pointer to pointer types.
7799
7800 2013-03-11 Hafiz Abid Qadeer <abidh@codesourcery.com>
7801
7802 * remote.c (remote_set_trace_buffer_size): Move != operator
7803 to the start of next line to fix an ARI warning.
7804
7805 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
7806
7807 * NEWS: Add record changes.
7808
7809 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
7810
7811 * record-btrace.c (btrace_insn_history): Omit the pc prefix in
7812 the instruction history disassembly.
7813 * disasm.c (dump_insns): Omit the pc prefix, if requested.
7814 * disasm.h (DISASSEMBLY_OMIT_PC): New.
7815
7816 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
7817
7818 * Makefile.in (SFILES): Add record-btrace.c
7819 (COMMON_OBS): Add record-btrace.o
7820 * record-btrace.c: New.
7821 * objfiles.c: Include btrace.h.
7822 (free_objfile): call btrace_free_objfile.
7823
7824 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
7825
7826 * target.c (target_call_history, target_call_history_from,
7827 target_call_history_range): New.
7828 * target.h (target_ops) <to_call_history, to_call_history_from,
7829 to_call_history_range>: New fields.
7830 (target_call_history, target_call_history_from,
7831 target_call_history_range): New declaration.
7832 * record.c (get_call_history_modifiers, cmd_record_call_history,
7833 record_call_history_size): New.
7834 (_initialize_record): Add the "record function-call-history" command.
7835 Add "set/show record function-call-history-size" commands.
7836 * record.h (record_print_flag): New.
7837
7838 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
7839
7840 * target.h (target_ops) <to_insn_history, to_insn_history_from,
7841 to_insn_history_range>: New fields.
7842 (target_insn_history): New.
7843 (target_insn_history_from): New.
7844 (target_insn_history_range): New.
7845 * target.c (target_insn_history): New.
7846 (target_insn_history_from): New.
7847 (target_insn_history_range): New.
7848 * record.c: Include cli/cli-utils.h, disasm.h, ctype.h.
7849 (record_insn_history_size): New.
7850 (get_insn_number): New.
7851 (get_context_size): New.
7852 (no_chunk): New.
7853 (get_insn_history_modifiers): New.
7854 (cmd_record_insn_history): New.
7855 (_initialize_record): Add "set/show record instruction-history-size"
7856 command. Add "record instruction-history" command.
7857
7858 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
7859
7860 * record.h (record_disconnect): New.
7861 (record_detach): New.
7862 (record_mourn_inferior): New.
7863 (record_kill): New.
7864 * record-full.c (record_disconnect, record_detach,
7865 record_mourn_inferior, record_kill): Move to...
7866 * record.c: ...here.
7867 (DEBUG): New.
7868 (record_stop): New.
7869 (record_unpush): New.
7870 (cmd_record_stop): Call record_stop. Replace unpush_target
7871 call with record_unpush call.
7872 (record_disconnect, record_detach): Assert that the target
7873 is of record stratum. Call record_unpush, record_stop, and
7874 DEBUG.
7875 (record_mourn_inferior, record_kill): Assert that the target
7876 is of record stratum. Call record_unpush and DEBUG.
7877
7878 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
7879
7880 * record-full.h, record-full.c (record_memory_query): Rename
7881 to ...
7882 (record_full_memory_query): ...this. Update all users.
7883 (record_arch_list_add_reg): Rename to ...
7884 (record_full_arch_list_add_reg): ...this. Update all users.
7885 (record_arch_list_add_mem): Rename to ...
7886 (record_full_arch_list_add_mem): ...this. Update all users.
7887 (record_arch_list_add_end): Rename to ...
7888 (record_full_arch_list_add_end): ...this. Update all users.
7889 (record_gdb_operation_disable_set): Rename to ...
7890 (record_full_gdb_operation_disable_set): ...this.
7891 Update all users.
7892
7893 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
7894
7895 * record-full.c (DEFAULT_RECORD_INSN_MAX_NUM): Renamed to ...
7896 (DEFAULT_RECORD_FULL_INSN_MAX_NUM): ... this. Updated all users.
7897 (RECORD_IS_REPLAY): Renamed to ...
7898 (RECORD_FULL_IS_REPLAY): ... this. Updated all users.
7899 (RECORD_FILE_MAGIC): Renamed to ...
7900 (RECORD_FULL_FILE_MAGIC): ... this. Updated all users.
7901 (record_mem_entry): Renamed to ...
7902 (record_full_mem_entry): ... this. Updated all users.
7903 (record_reg_entry): Renamed to ...
7904 (record_full_reg_entry): ... this. Updated all users.
7905 (record_end_entry): Renamed to ...
7906 (record_full_end_entry): ... this. Updated all users.
7907 (record_type) <record_end, record_reg, record_mem>: Renamed
7908 to ...
7909 (record_full_type) <record_full_end, record_full_reg,
7910 record_full_mem>: ... this. Updated all users.
7911 (record_entry): Renamed to ...
7912 (record_full_entry): ... this. Updated all users.
7913 (record_core_buf_entry): Renamed to ...
7914 (record_full_core_buf_entry): ... this. Updated all users.
7915 (record_core_regbuf): Renamed to ...
7916 (record_full_core_regbuf): ... this. Updated all users.
7917 (record_core_start): Renamed to ...
7918 (record_full_core_start): ... this. Updated all users.
7919 (record_core_end): Renamed to ...
7920 (record_full_core_end): ... this. Updated all users.
7921 (record_core_buf_list): Renamed to ...
7922 (record_full_core_buf_list): ... this. Updated all users.
7923 (record_first): Renamed to ...
7924 (record_full_first): ... this. Updated all users.
7925 (record_list): Renamed to ...
7926 (record_full_list): ... this. Updated all users.
7927 (record_arch_list_head): Renamed to ...
7928 (record_full_arch_list_head): ... this. Updated all users.
7929 (record_arch_list_tail): Renamed to ...
7930 (record_full_arch_list_tail): ... this. Updated all users.
7931 (record_stop_at_limit): Renamed to ...
7932 (record_full_stop_at_limit): ... this. Updated all users.
7933 (record_insn_max_num): Renamed to ...
7934 (record_full_insn_max_num): ... this. Updated all users.
7935 (record_insn_num): Renamed to ...
7936 (record_full_insn_num): ... this. Updated all users.
7937 (record_insn_count): Renamed to ...
7938 (record_full_insn_count): ... this. Updated all users.
7939 (record_ops): Renamed to ...
7940 (record_full_ops): ... this. Updated all users.
7941 (record_core_ops): Renamed to ...
7942 (record_full_core_ops): ... this. Updated all users.
7943 (set_record_cmdlist): Renamed to ...
7944 (set_record_full_cmdlist): ... this. Updated all users.
7945 (show_record_cmdlist): Renamed to ...
7946 (show_record_full_cmdlist): ... this. Updated all users.
7947 (record_cmdlist): Renamed to ...
7948 (record_full_cmdlist): ... this. Updated all users.
7949 (record_beneath_to_resume_ops): Renamed to ...
7950 (record_full_beneath_to_resume_ops): ... this. Updated all users.
7951 (record_beneath_to_resume): Renamed to ...
7952 (record_full_beneath_to_resume): ... this. Updated all users.
7953 (record_beneath_to_wait_ops): Renamed to ...
7954 (record_full_beneath_to_wait_ops): ... this. Updated all users.
7955 (record_beneath_to_wait): Renamed to ...
7956 (record_full_beneath_to_wait): ... this. Updated all users.
7957 (record_beneath_to_store_registers_ops): Renamed to ...
7958 (record_full_beneath_to_store_registers_ops): ... this.
7959 Updated all users.
7960 (record_beneath_to_store_registers): Renamed to ...
7961 (record_full_beneath_to_store_registers): ... this.
7962 Updated all users.
7963 (record_beneath_to_xfer_partial_ops): Renamed to ...
7964 (record_full_beneath_to_xfer_partial_ops): ... this.
7965 Updated all users.
7966 (record_beneath_to_xfer_partial): Renamed to ...
7967 (record_full_beneath_to_xfer_partial): ... this.
7968 Updated all users.
7969 (record_beneath_to_insert_breakpoint): Renamed to ...
7970 (record_full_beneath_to_insert_breakpoint): ... this.
7971 Updated all users.
7972 (record_beneath_to_stopped_by_watchpoint): Renamed to ...
7973 (record_full_beneath_to_stopped_by_watchpoint): ... this.
7974 Updated all users.
7975 (record_beneath_to_stopped_data_address): Renamed to ...
7976 (record_full_beneath_to_stopped_data_address): ... this.
7977 Updated all users.
7978 (record_beneath_to_async): Renamed to ...
7979 (record_full_beneath_to_async): ... this. Updated all users.
7980 (record_goto_insn): Renamed to ...
7981 (record_full_goto_insn): ... this. Updated all users.
7982 (record_save): Renamed to ...
7983 (record_full_save): ... this. Updated all users.
7984 (record_reg_alloc): Renamed to ...
7985 (record_full_reg_alloc): ... this. Updated all users.
7986 (record_reg_release): Renamed to ...
7987 (record_full_reg_release): ... this. Updated all users.
7988 (record_mem_alloc): Renamed to ...
7989 (record_full_mem_alloc): ... this. Updated all users.
7990 (record_mem_release): Renamed to ...
7991 (record_full_mem_release): ... this. Updated all users.
7992 (record_end_alloc): Renamed to ...
7993 (record_full_end_alloc): ... this. Updated all users.
7994 (record_end_release): Renamed to ...
7995 (record_full_end_release): ... this. Updated all users.
7996 (record_entry_release): Renamed to ...
7997 (record_full_entry_release): ... this. Updated all users.
7998 (record_list_release): Renamed to ...
7999 (record_full_list_release): ... this. Updated all users.
8000 (record_list_release_following): Renamed to ...
8001 (record_full_list_release_following): ... this.
8002 Updated all users.
8003 (record_list_release_first): Renamed to ...
8004 (record_full_list_release_first): ... this. Updated all users.
8005 (record_arch_list_add): Renamed to ...
8006 (record_full_arch_list_add): ... this. Updated all users.
8007 (record_get_loc): Renamed to ...
8008 (record_full_get_loc): ... this. Updated all users.
8009 (record_check_insn_num): Renamed to ...
8010 (record_full_check_insn_num): ... this. Updated all users.
8011 (record_arch_list_cleanups): Renamed to ...
8012 (record_full_arch_list_cleanups): ... this. Updated all users.
8013 (record_message): Renamed to ...
8014 (record_full_message): ... this. Updated all users.
8015 (record_message_wrapper): Renamed to ...
8016 (record_full_message_wrapper): ... this. Updated all users.
8017 (record_message_wrapper_safe): Renamed to ...
8018 (record_full_message_wrapper_safe): ... this. Updated all users.
8019 (record_gdb_operation_disable): Renamed to ...
8020 (record_full_gdb_operation_disable): ... this. Updated all users.
8021 (record_hw_watchpoint): Renamed to ...
8022 (record_full_hw_watchpoint): ... this. Updated all users.
8023 (record_exec_insn): Renamed to ...
8024 (record_full_exec_insn): ... this. Updated all users.
8025 (record_restore): Renamed to ...
8026 (record_full_restore): ... this. Updated all users.
8027 (record_async_inferior_event_token): Renamed to ...
8028 (record_full_async_inferior_event_token): ... this.
8029 Updated all users.
8030 (record_async_inferior_event_handler): Renamed to ...
8031 (record_full_async_inferior_event_handler): ... this.
8032 Updated all users.
8033 (record_core_open_1): Renamed to ...
8034 (record_full_core_open_1): ... this. Updated all users.
8035 (record_open_1): Renamed to ...
8036 (record_full_open_1): ... this. Updated all users.
8037 (record_open): Renamed to ...
8038 (record_full_open): ... this. Updated all users.
8039 (record_close): Renamed to ...
8040 (record_full_close): ... this. Updated all users.
8041 (record_resume_step): Renamed to ...
8042 (record_full_resume_step): ... this. Updated all users.
8043 (record_resumed): Renamed to ...
8044 (record_full_resumed): ... this. Updated all users.
8045 (record_execution_dir): Renamed to ...
8046 (record_full_execution_dir): ... this. Updated all users.
8047 (record_resume): Renamed to ...
8048 (record_full_resume): ... this. Updated all users.
8049 (record_get_sig): Renamed to ...
8050 (record_full_get_sig): ... this. Updated all users.
8051 (record_sig_handler): Renamed to ...
8052 (record_full_sig_handler): ... this. Updated all users.
8053 (record_wait_cleanups): Renamed to ...
8054 (record_full_wait_cleanups): ... this. Updated all users.
8055 (record_wait_1): Renamed to ...
8056 (record_full_wait_1): ... this. Updated all users.
8057 (record_wait): Renamed to ...
8058 (record_full_wait): ... this. Updated all users.
8059 (record_stopped_by_watchpoint): Renamed to ...
8060 (record_full_stopped_by_watchpoint): ... this. Updated all users.
8061 (record_disconnect): Renamed to ...
8062 (record_full_disconnect): ... this. Updated all users.
8063 (record_detach): Renamed to ...
8064 (record_full_detach): ... this. Updated all users.
8065 (record_mourn_inferior): Renamed to ...
8066 (record_full_mourn_inferior): ... this. Updated all users.
8067 (record_kill): Renamed to ...
8068 (record_full_kill): ... this. Updated all users.
8069 (record_stopped_data_address): Renamed to ...
8070 (record_full_stopped_data_address): ... this. Updated all users.
8071 (record_registers_change): Renamed to ...
8072 (record_full_registers_change): ... this. Updated all users.
8073 (record_store_registers): Renamed to ...
8074 (record_full_store_registers): ... this. Updated all users.
8075 (record_xfer_partial): Renamed to ...
8076 (record_full_xfer_partial): ... this. Updated all users.
8077 (record_breakpoint): Renamed to ...
8078 (record_full_breakpoint): ... this. Updated all users.
8079 (record_breakpoint_p): Renamed to ...
8080 (record_full_breakpoint_p): ... this. Updated all users.
8081 (record_breakpoints): Renamed to ...
8082 (record_full_breakpoints): ... this. Updated all users.
8083 (record_sync_record_breakpoints): Renamed to ...
8084 (record_full_sync_record_breakpoints): ... this.
8085 Updated all users.
8086 (record_init_record_breakpoints): Renamed to ...
8087 (record_full_init_record_breakpoints): ... this.
8088 Updated all users.
8089 (record_insert_breakpoint): Renamed to ...
8090 (record_full_insert_breakpoint): ... this. Updated all users.
8091 (record_remove_breakpoint): Renamed to ...
8092 (record_full_remove_breakpoint): ... this. Updated all users.
8093 (record_can_execute_reverse): Renamed to ...
8094 (record_full_can_execute_reverse): ... this. Updated all users.
8095 (record_get_bookmark): Renamed to ...
8096 (record_full_get_bookmark): ... this. Updated all users.
8097 (record_goto_bookmark): Renamed to ...
8098 (record_full_goto_bookmark): ... this. Updated all users.
8099 (record_async): Renamed to ...
8100 (record_full_async): ... this. Updated all users.
8101 (record_can_async_p): Renamed to ...
8102 (record_full_can_async_p): ... this. Updated all users.
8103 (record_is_async_p): Renamed to ...
8104 (record_full_is_async_p): ... this. Updated all users.
8105 (record_execution_direction): Renamed to ...
8106 (record_full_execution_direction): ... this. Updated all users.
8107 (record_info): Renamed to ...
8108 (record_full_info): ... this. Updated all users.
8109 (record_delete): Renamed to ...
8110 (record_full_delete): ... this. Updated all users.
8111 (record_is_replaying): Renamed to ...
8112 (record_full_is_replaying): ... this. Updated all users.
8113 (record_goto_entry): Renamed to ...
8114 (record_full_goto_entry): ... this. Updated all users.
8115 (record_goto_begin): Renamed to ...
8116 (record_full_goto_begin): ... this. Updated all users.
8117 (record_goto_end): Renamed to ...
8118 (record_full_goto_end): ... this. Updated all users.
8119 (record_goto): Renamed to ...
8120 (record_full_goto): ... this. Updated all users.
8121 (init_record_ops): Renamed to ...
8122 (init_record_full_ops): ... this. Updated all users.
8123 (record_core_resume): Renamed to ...
8124 (record_full_core_resume): ... this. Updated all users.
8125 (record_core_kill): Renamed to ...
8126 (record_full_core_kill): ... this. Updated all users.
8127 (record_core_fetch_registers): Renamed to ...
8128 (record_full_core_fetch_registers): ... this. Updated all users.
8129 (record_core_prepare_to_store): Renamed to ...
8130 (record_full_core_prepare_to_store): ... this. Updated all users.
8131 (record_core_store_registers): Renamed to ...
8132 (record_full_core_store_registers): ... this. Updated all users.
8133 (record_core_xfer_partial): Renamed to ...
8134 (record_full_core_xfer_partial): ... this. Updated all users.
8135 (record_core_insert_breakpoint): Renamed to ...
8136 (record_full_core_insert_breakpoint): ... this. Updated all users.
8137 (record_core_remove_breakpoint): Renamed to ...
8138 (record_full_core_remove_breakpoint): ... this. Updated all users.
8139 (record_core_has_execution): Renamed to ...
8140 (record_full_core_has_execution): ... this. Updated all users.
8141 (init_record_core_ops): Renamed to ...
8142 (init_record_full_core_ops): ... this. Updated all users.
8143 (cmd_record_restore): Renamed to ...
8144 (cmd_record_full_restore): ... this. Updated all users.
8145 (record_save_cleanups): Renamed to ...
8146 (record_full_save_cleanups): ... this. Updated all users.
8147 (cmd_record_start): Renamed to ...
8148 (cmd_record_full_start): ... this. Updated all users.
8149 (set_record_insn_max_num): Renamed to ...
8150 (set_record_full_insn_max_num): ... this. Updated all users.
8151 (set_record_command): Renamed to ...
8152 (set_record_full_command): ... this. Updated all users.
8153 (show_record_command): Renamed to ...
8154 (show_record_full_command): ... this. Updated all users.
8155 (_initialize_record): Renamed to ...
8156 (_initialize_record_full): ... this. Updated all users.
8157
8158 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8159
8160 * record.h: Split into this and ...
8161 * record-full.h: ... this.
8162 * record.c: Split into this and ...
8163 * record-full.c: ... this.
8164 * target.h (target_ops): Add new fields to_info_record,
8165 to_save_record, to_delete_record, to_record_is_replaying,
8166 to_goto_record_begin, to_goto_record_end, to_goto_record.
8167 (target_info_record): New.
8168 (target_save_record): New.
8169 (target_supports_delete_record): New.
8170 (target_delete_record): New.
8171 (target_record_is_replaying): New.
8172 (target_goto_record_begin): New.
8173 (target_goto_record_end): New.
8174 (target_goto_record): New.
8175 * target.c (target_info_record): New.
8176 (target_save_record): New.
8177 (target_supports_delete_record): New.
8178 (target_delete_record): New.
8179 (target_record_is_replaying): New.
8180 (target_goto_record_begin): New.
8181 (target_goto_record_end): New.
8182 (target_goto_record): New.
8183 * record.h: Declare struct cmd_list_element.
8184 (record_cmdlist): New declaration.
8185 (set_record_cmdlist): New declaration.
8186 (show_record_cmdlist): New declaration.
8187 (info_record_cmdlist): New declaration.
8188 (cmd_record_goto): New declaration.
8189 * record.c: Remove unnecessary includes.
8190 Include inferior.h.
8191 (cmd_record_goto): Remove declaration.
8192 (record_cmdlist): Now extern. Initialize.
8193 (set_record_cmdlist): Now extern. Initialize.
8194 (show_record_cmdlist): Now extern. Initialize.
8195 (info_record_cmdlist): Now extern. Initialize.
8196 (find_record_target): New.
8197 (require_record_target): New.
8198 (cmd_record_start): Update.
8199 (cmd_record_delete): Remove target-specific code.
8200 Call target_delete_record.
8201 (cmd_record_stop): Unpush any record target.
8202 (set_record_insn_max_num): Move to record-full.c
8203 (set_record_command): Add comment.
8204 (show_record_command): Add comment.
8205 (info_record_command): Update comment.
8206 Remove target-specific code.
8207 Call the record target's to_info_record.
8208 (cmd_record_start): New.
8209 (cmd_record_goto): Now extern.
8210 Remove target-specific code.
8211 Call target_goto_begin, target_goto_end, or target_goto.
8212 (_initialize_record): Move record target ops initialization to
8213 record-full.c.
8214 Change "record" command help text.
8215 Move "record restore", "record set", and "record show" commands to
8216 record-full.c.
8217 * Makefile.in (SFILES): Add record-full.c.
8218 (HFILES_NO_SRCDIR): Add record-full.h.
8219 (COMMON_OBS): Add record-full.o.
8220 * amd64-linux-tdep.c: Include record-full.h instead of record.h.
8221 * arm-tdep.c: Include record-full.h.
8222 * i386-linux-tdep.c: Include record-full.h instead of record.h.
8223 * i386-tdep.c: Include record-full.h.
8224 * infrun.c: Include record-full.h.
8225 * linux-record.c: Include record-full.h.
8226 * moxie-tdep.c: Include record-full.h.
8227 * record-full.c: Include record-full.h.
8228 Change module comment.
8229 (set_record_full_cmdlist): New.
8230 (show_record_full_cmdlist): New.
8231 (record_full_cmdlist): New.
8232 (record_goto_insn): New declaration.
8233 (record_save): New declaration.
8234 (record_check_insn_num): Change query string.
8235 (record_info): New.
8236 (record_delete): New.
8237 (record_is_replaying): New.
8238 (record_goto_entry): New.
8239 (record_goto_begin): New.
8240 (record_goto_end): New.
8241 (record_goto): New.
8242 (init_record_ops): Update.
8243 (init_record_core_ops): Update.
8244 (cmd_record_save): Rename to record_save. Remove target and arg checks.
8245 (cmd_record_start): New.
8246 (set_record_insn_max_num): Moved from record.c
8247 (set_record_full_command): New.
8248 (show_record_full_command): New.
8249 (_initialize_record_full): New.
8250
8251 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8252
8253 * target.h (add_deprecated_target_alias): New.
8254 * target.c (add_deprecated_target_alias): New.
8255
8256 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8257
8258 * common/linux-btrace.c: Include sys/ptrace, sys/types, sys/wait.h,
8259 and signal.h.
8260 (linux_supports_btrace): Add kernel and
8261 cpuid check.
8262 (kernel_supports_btrace): New function.
8263 (cpu_supports_btrace): New function.
8264 (intel_supports_btrace): New function.
8265
8266 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8267
8268 * target.h (enum target_object): Add TARGET_OBJECT_BTRACE.
8269 * remote.c: Include btrace.h.
8270 (struct btrace_target_info): New struct.
8271 (remote_supports_btrace): New function.
8272 (send_Qbtrace): New function.
8273 (remote_enable_btrace): New function.
8274 (remote_disable_btrace): New function.
8275 (remote_teardown_btrace): New function.
8276 (remote_read_btrace): New function.
8277 (init_remote_ops): Add btrace ops.
8278 (enum <unnamed>): Add btrace packets.
8279 (struct protocol_feature remote_protocol_features[]): Add btrace packets.
8280 (_initialize_remote): Add packet configuration for branch tracing.
8281
8282 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8283
8284 * features/btrace.dtd: New file.
8285 * Makefile.in (XMLFILES): Add btrace.dtd.
8286 * btrace.h (parse_xml_btrace): New declaration.
8287 * btrace.c: Include xml-support.h.
8288 (parse_xml_btrace): New function.
8289 (parse_xml_btrace_block): New function.
8290 (block_attributes): New struct.
8291 (btrace_attributes): New struct.
8292 (btrace_children): New struct.
8293 (btrace_elements): New struct.
8294
8295 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8296
8297 * amd64-linux-nat.c: Include btrace.h and linux-btrace.h.
8298 (amd64_linux_enable_btrace): New.
8299 (amd64_linux_disable_btrace): New.
8300 (amd64_linux_teardown_btrace): New.
8301 (_initialize_amd64_linux_nat): Initialize btrace ops.
8302 * i386-linux.nat.c: Include btrace.h and linux-btrace.h.
8303 (i386_linux_enable_btrace): New.
8304 (i386_linux_disable_btrace): New.
8305 (i386_linux_teardown_btrace): New.
8306 (_initialize_i386_linux_nat): Initialize btrace ops.
8307 * config/i386/linux.mh: Add linux-btrace.o.
8308 * config/i386/linux64.mh: Add linux-btrace.o.
8309
8310 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8311
8312 * common/linux_btrace.h: New file.
8313 * common/linux_btrace.c: New file.
8314 * Makefile.in (SFILES): Add btrace.c.
8315 (HFILES_NO_SRCDIR): Add common/linux-btrace.h.
8316 (COMMON_OBS): Add btrace.o.
8317 (linux-btrace.o): New rule.
8318
8319 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
8320
8321 * target.h: Include btrace.h.
8322 (struct target_ops) <to_supports_btrace, to_enable_btrace,
8323 to_disable_btrace, to_teardown_btrace, to_read_btrace>: New.
8324 * target.c (target_supports_btrace): New function.
8325 (target_enable_btrace): New function.
8326 (target_disable_btrace): New function.
8327 (target_teardown_btrace): New function.
8328 (target_read_btrace): New function.
8329 * btrace.h: New file.
8330 * btrace.c: New file.
8331 * Makefile.in: Add btrace.c.
8332 * gdbthread.h: Include btrace.h.
8333 (struct thread_info): Add btrace field.
8334 * thread.c: Include btrace.h.
8335 (clear_thread_inferior_resources): Call target_teardown_btrace.
8336 * common/btrace-common.h: New file.
8337
8338 2013-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
8339
8340 * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Call also kill
8341 for CHILD, ignore PTRACE_KILL errors, move the inner block variable
8342 kill_status to outer block.
8343
8344 2013-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
8345
8346 Fix entry-values if the callee called a noreturn function.
8347 * dwarf2-frame-tailcall.c (dwarf2_tailcall_sniffer_first): Use
8348 get_frame_address_in_block. Add new comment.
8349
8350 2013-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
8351
8352 Fix entry-values in C++ across CUs.
8353 * dwarf2loc.c (call_site_to_target_addr) <FIELD_LOC_KIND_PHYSNAME>: Use
8354 lookup_minimal_symbol. Add a comment.
8355 * dwarf2read.c
8356 (read_call_site_scope) <is_ref_attr> <die_is_declaration>: Prefer
8357 DW_AT_linkage_name.
8358
8359 2013-03-08 Yao Qi <yao@codesourcery.com>
8360
8361 * tracepoint.c (_initialize_tracepoint): Indent the code.
8362
8363 2013-03-08 Pedro Alves <palves@redhat.com>
8364
8365 * findcmd.c (put_bits): Change type of parameter to 'gdb_byte *'.
8366 (parse_find_args, find_command): Change type of pattern buffer
8367 locals to 'gdb_byte *'.
8368
8369 2013-03-08 Stan Shebs <stan@codesourcery.com>
8370 Hafiz Abid Qadeer <abidh@codesourcery.com>
8371
8372 * NEWS: Mention set and show trace-buffer-size commands.
8373 Mention new packet.
8374 * target.h (struct target_ops): New method
8375 to_set_trace_buffer_size.
8376 (target_set_trace_buffer_size): New macro.
8377 * target.c (update_current_target): Set up new method.
8378 * tracepoint.c (trace_buffer_size): New global.
8379 (start_tracing): Send it to the target.
8380 (set_trace_buffer_size): New function.
8381 (_initialize_tracepoint): Add new setshow for trace-buffer-size.
8382 * remote.c (remote_set_trace_buffer_size): New function.
8383 (_initialize_remote): Use it.
8384 (QTBuffer:size) New remote command.
8385 (PACKET_QTBuffer_size): New enum.
8386 (remote_protocol_features): Add an entry for
8387 PACKET_QTBuffer_size.
8388
8389 2013-03-08 Tom Tromey <tromey@redhat.com>
8390
8391 * remote-m32r-sdi.c (m32r_load): Call skip_spaces on correct
8392 variable.
8393
8394 2013-03-07 Pedro Alves <palves@redhat.com>
8395
8396 * target.c (target_read_stralloc, target_fileio_read_alloc):
8397 *Cast pointer to 'gdb_byte *' in target call.
8398
8399 2013-03-07 Pedro Alves <palves@redhat.com>
8400
8401 * corefile.c (read_memory_string): Cast pointer to gdb_byte* in
8402 call.
8403
8404 2013-03-07 Keith Seitz <keiths@redhat.com>
8405
8406 * breakpoint.c (catch_syscall_split_args): Use skip_spaces.
8407 (trace_pass_command): Likewise.
8408 * cli/cli-cmds.c: Include cli/cli-utils.h.
8409 (source_command): Use skip-spaces.
8410 (disassemble_command): Likewise.
8411 * findcmd.c: Include cli/cli-utils.h.
8412 (parse_find_args): Use skip_spaces.
8413 * go32-nat.c: Include cli/cli-utils.h.
8414 (go32_sldt): Use skip_spaces.
8415 (go32_sgdt): Likewise.
8416 (go32_sidt): Likewise.
8417 (go32_pde): Likewise.
8418 (go32_pte): Likewise.
8419 (go32_pte_for_address): Likewise.
8420 * infcmd.c: Include cli/cli-utils.h.
8421 (registers_info): Use skip_spaces.
8422 * linux-tdep.c (read_mapping): Use skip_spaces_const.
8423 (linux_info_proc): Likewise.
8424 * linux-thread-db.c: Include cli/cli-utils.h.
8425 (info_auto_load_libthread_db): Use skip_spaces_const.
8426 * m32r-rom.c: Include cli/cli-utils.h.
8427 (m32r_upload_command): Use skip_spaces.
8428 * maint.c: Include cli/cli-utils.h.
8429 (maintenance_translate_address): Use skip_spaces.
8430 * mi/mi-parse.c: Include cli/cli-utils.h.
8431 (mi_parse_argv): Use skip_spaces.
8432 (mi_parse): Likewise.
8433 * minsyms.c: Include cli/cli-utils.h.
8434 (msymbol_hash_iw): Use skip_spaces_const.
8435 * objc-lang.c: Include cli/cli-utils.h.
8436 (parse_selector): Use skip_spaces.
8437 (parse_method): Likewise.
8438 * python/python.c: Include cli/cli-utils.h.
8439 (python_interactive_command)[HAVE_PYTHON]: Use skip_spaces.
8440 (python_command)[HAVE_PYTHON]: Likewise.
8441 (python_interactive_command)[!HAVE_PYTHON]: Likewise.
8442 * remote-m32r-sdi.c: Include cli/cli-utils.h.
8443 (m32r_load): Use skip_spaces.
8444 * serial.c: Include cli/cli-utils.h.
8445 (serial_open): Use skip_spaces_const.
8446 * stack.c: Include cli/cli-utils.h.
8447 (parse_frame_specification_1): Use skip_spaces_const.
8448 * symfile.c: Include cli/cli-utils.h.
8449 (set_ext_lang_command): Use skip_spaces.
8450 * symtab.c: Include cli/cli-utils.h.
8451 (rbreak_command): Use skip_spaces.
8452 * thread.c (thread_name_command): Use skip_spaces.
8453 * tracepoint.c (validate_actionline): Use skip_spaces.
8454 (encode_actions_1): Likewise.
8455 (trace_find_range_command): Likewise.
8456 (trace_find_outside_command): Likewise.
8457 (trace_dump_actions): Likewise.
8458
8459 2013-03-07 Pedro Alves <palves@redhat.com>
8460
8461 * c-lang.c (parse_one_string): Cast argument to gdb_byte *.
8462 * expprint.c (print_subexp_standard): Likewise.
8463 * utils.c (host_char_to_target): Likewise.
8464 * valprint.c (generic_emit_char, generic_printstr): Likewise.
8465 * varobj.c (value_get_print_value): Change type of local to char*.
8466 Cast it gdb_byte * in call to language printer.
8467
8468 2013-03-07 Pedro Alves <palves@redhat.com>
8469
8470 * charset.c (struct wchar_iterator) <input>: Change type to 'const
8471 gdb_byte *'.
8472 (make_wchar_iterator): Remove cast to char*.
8473 (wchar_iterate): Change type of local.
8474
8475 2013-03-07 Pedro Alves <palves@redhat.com>
8476
8477 * regcache.c (regcache_xmalloc_1): Call XCALLOC with signed char
8478 for 'regcache->register_status'.
8479
8480 2013-03-07 Pedro Alves <palves@redhat.com>
8481
8482 * breakpoint.c (breakpoint_xfer_memory): Change type of local to
8483 int.
8484
8485 2013-03-07 Pedro Alves <palves@redhat.com>
8486
8487 * stap-probe.c (handle_stap_probe): Add cast to char*.
8488
8489 2013-03-07 Pedro Alves <palves@redhat.com>
8490
8491 * linux-record.c (record_linux_system_call) <gdb_sys_msgrcv,
8492 RECORD_MSGRCV>: Pass a signed variable to
8493 regcache_raw_read_signed, instead of an unsigned one.
8494
8495 2013-03-07 Pedro Alves <palves@redhat.com>
8496
8497 * remote-notif.c (notif_debug): Change type to int.
8498 * remote-notif.h (notif_debug): Likewise.
8499
8500 2013-03-07 Pedro Alves <palves@redhat.com>
8501
8502 * ser-tcp.c (tcp_retry_limit): Change type to unsigned int.
8503
8504 2013-03-07 Pedro Alves <palves@redhat.com>
8505
8506 * remote.c (hex2bin, bin2hex): Move extern declarations to ...
8507 * remote.h (hex2bin, bin2hex): ... here.
8508 * tracepoint.c (hex2bin, bin2hex): Remove extern declarations.
8509
8510 2013-03-07 Eli Zaretskii <eliz@gnu.org>
8511
8512 * utils.c (initialize_utils): Improve doc strings of "set/show
8513 width", "set/show height", and "set/show pagination".
8514
8515 2013-03-06 Keith Seitz <keiths@redhat.com>
8516
8517 * ax-gdb.c (gen_printf): Make FORMAT const.
8518 * ax-gdb.h (gen_printf): Likewise.
8519 * ax-general.c (ax_string): Make STR const.
8520 * ax.h (ax_string): Likewise.
8521
8522 2013-03-06 Doug Evans <dje@google.com>
8523
8524 * elfread.c (elf_symfile_read): Move debugging printf to more
8525 logical location.
8526
8527 2013-03-06 Pedro Alves <palves@redhat.com>
8528
8529 * python/py-utils.c (target_string_to_unicode): Delete function.
8530 * python/python-internal.h (target_string_to_unicode): Delete
8531 declaration.
8532
8533 2013-03-06 Pierre Muller <muller@sourceware.org>
8534
8535 * linespec.c (get_current_search_block): ARI fix, use (void)
8536 for empty parameter list.
8537
8538 2013-03-05 Doug Evans <dje@google.com>
8539
8540 * ada-lang.c (ada_lookup_symbol_list_worker): New function, contents
8541 of old ada_lookup_symbol_list. In !full_search case, don't
8542 search superblocks.
8543 (ada_lookup_symbol_list): Delete arg full_search, all callers
8544 updated. Call ada_lookup_symbol_list_worker.
8545 (ada_iterate_over_symbols): Call ada_lookup_symbol_list_worker.
8546 * ada-lang.h (ada_lookup_symbol_list): Update.
8547 * language.h (language_defn): Update comment for
8548 la_iterate_over_symbols.
8549 * linespec.c (iterate_over_file_blocks): New function.
8550 (iterate_over_all_matching_symtabs): Call it.
8551 (lookup_prefix_sym): Ditto.
8552 (get_current_search_block): New function.
8553 (get_search_block): Delete.
8554 (find_label_symbols): Call get_current_search_block.
8555 (add_matching_symbols_to_info): Call iterate_over_file_blocks.
8556 * symtab.c (iterate_over_symbols): Don't search superblocks.
8557
8558 2013-03-05 Yao Qi <yao@codesourcery.com>
8559
8560 * cli/cli-decode.c (add_setshow_zuinteger_unlimited_cmd): Change
8561 parameter VAR's type from "unsigned int" to "int".
8562 * command.h (var_zuinteger_unlimited): Update its comments.
8563 (add_setshow_zuinteger_unlimited_cmd): Update the declaration.
8564
8565 2013-03-05 Corinna Vinschen <vinschen@redhat.de>
8566
8567 * NEWS: Mention new target x86_64-*-cygwin*.
8568
8569 2013-03-05 Corinna Vinschen <vinschen@redhat.de>
8570
8571 * configure.host: Add x86_64-*-cygwin* as host.
8572 * configure.tgt: Add x86_64-*-cygwin* as target.
8573 * config/i386/cygwin64.mh: New file.
8574
8575 2013-03-04 Jan Kratochvil <jan.kratochvil@redhat.com>
8576
8577 * linespec.c (decode_line_2): Fix duplicate request off by two message.
8578
8579 2013-03-04 Jan Kratochvil <jan.kratochvil@redhat.com>
8580
8581 * linespec.c (struct linespec_canonical_name): New.
8582 (struct linespec_state): Change canonical_names type to it.
8583 (add_sal_to_sals): Change variable canonical_name to canonical. Change
8584 xrealloc element size. Initialize the different CANONICAL fields.
8585 (canonical_to_fullform): New.
8586 (filter_results): Use it. Add variables canonical, fullform and
8587 cleanup.
8588 (struct decode_line_2_item, decode_line_2_compare_items): New.
8589 (decode_line_2): Remove variables iter and item_names, add variables
8590 items and items_count. Modify the code for these new variables.
8591
8592 2013-03-04 Corinna Vinschen <vinschen@redhat.com>
8593
8594 * coff-pe-read.c (read_pe_exported_syms): Don't return without
8595 calling do_cleanup.
8596
8597 2013-03-04 Luis Machado <lgustavo@codesourcery.com>
8598
8599 * tracepoint.c (build_traceframe_info): Add code for byte order.
8600
8601 2013-03-02 Kevin Buettner <kevinb@redhat.com>
8602
8603 * v850-tdep.c: (v850e2_register_name): Revise system register
8604 names to match current V850E2M architecture specifications.
8605 Update register number enum comments too.
8606
8607 2013-03-01 Jiong Wang <jiwang@tilera.com>
8608 Pedro Alves <palves@redhat.com>
8609
8610 * tilegx-tdep.c (tilegx_analyze_prologue): Limit bundle reading
8611 to END_ADDR.
8612 (tilegx_skip_prologue): Limit prologue analysis to section end.
8613
8614 2013-03-01 Jan Kratochvil <jan.kratochvil@redhat.com>
8615
8616 * dwarf2loc.c (call_site_find_chain_1): New variable save_callee_pc,
8617 use it.
8618
8619 2013-03-01 Pedro Alves <palves@redhat.com>
8620
8621 Use gdb_byte for bytes from the program being debugged.
8622
8623 * arm-tdep.c (arm_store_return_value, arm_get_longjmp_target):
8624 Change type of local 'buf' to gdb_byte.
8625 * avr-tdep.c (avr_frame_prev_register, avr_push_dummy_call): Likewise.
8626 * bfin-tdep.c (bfin_push_dummy_call): Likewise.
8627 * cris-tdep.c (cris_sigcontext_addr)
8628 (cris_sigtramp_frame_unwind_cache): Likewise.
8629 * frv-linux-tdep.c (frv_linux_pc_in_sigtramp)
8630 (frv_linux_sigcontext_reg_addr, frv_linux_sigtramp_frame_cache):
8631 Likewise.
8632 * frv-tdep.c (frv_pseudo_register_write, frv_analyze_prologue): Likewise.
8633 * hppa-hpux-tdep.c (hppa32_hpux_find_global_pointer)
8634 (hppa32_hpux_search_dummy_call_sequence)
8635 (hppa_hpux_supply_save_state): Likewise.
8636 * hppa-linux-tdep.c (insns_match_pattern)
8637 (hppa_linux_find_global_pointer): Likewise.
8638 * hppa-tdep.c (hppa_in_function_epilogue_p)
8639 (skip_prologue_hard_way, hppa_frame_cache): Likewise.
8640 * i386-nto-tdep.c (i386nto_sigcontext_addr): Likewise.
8641 * i386fbsd-tdep.c (i386fbsd_supply_uthread)
8642 (i386fbsd_collect_uthread): Likewise.
8643 * ia64-hpux-tdep.c (ia64_hpux_push_dummy_code): Likewise.
8644 * ia64-linux-tdep.c (ia64_linux_sigcontext_register_address): Likewise.
8645 * ia64-tdep.c (examine_prologue, ia64_frame_cache)
8646 (ia64_frame_prev_register, ia64_sigtramp_frame_cache)
8647 (ia64_sigtramp_frame_prev_register, ia64_access_reg)
8648 (ia64_access_rse_reg, ia64_libunwind_frame_this_id)
8649 (ia64_libunwind_frame_prev_register)
8650 (ia64_libunwind_sigtramp_frame_this_id)
8651 (ia64_find_global_pointer_from_dynamic_section)
8652 (find_extant_func_descr, find_func_descr, ia64_dummy_id)
8653 (ia64_unwind_pc): Likewise.
8654 * iq2000-tdep.c (iq2000_store_return_value): Likewise.
8655 * m68hc11-tdep.c (m68hc11_push_dummy_call)
8656 (m68hc11_extract_return_value): Likewise.
8657 * m68klinux-nat.c (fetch_register, store_register): Likewise.
8658 * mep-tdep.c (mep_pseudo_cr32_read, mep_pseudo_cr32_write)
8659 (mep_get_insn, mep_push_dummy_call): Likewise.
8660 * mips-linux-tdep.c (mips_linux_get_longjmp_target)
8661 (mips_linux_in_dynsym_stub): Likewise.
8662 * mn10300-tdep.c (mep_pseudo_cr32_write): Likewise.
8663 * ppc-linux-nat.c (fetch_register, store_register): Likewise.
8664 * regcache.c (dump_endian_bytes): Change type of parameter 'buf'
8665 to gdb_byte.
8666 * remote-mips.c (mips_set_register): Likewise.
8667 * remote-sim.c (gdbsim_fetch_register): Likewise.
8668 * score-tdep.c (score7_fetch_inst): Change type of parameter
8669 'memblock' and local 'buf' to gdb_byte.
8670 (score7_malloc_and_get_memblock): Change return type to gdb_byte.
8671 Change type of local 'buf' to gdb_byte. Adjust.
8672 (score7_adjust_memblock_ptr): Change type of parameter 'memblock'
8673 to gdb_byte**.
8674 (score7_analyze_prologue): Change type of 'memblock' and
8675 'memblock_ptr' locals to gdb_byte*.
8676 * sh64-tdep.c (sh64_extract_return_value)
8677 (sh64_store_return_value): Change type of local 'buf' to gdb_byte.
8678 * solib-darwin.c (darwin_current_sos, darwin_read_exec_load_addr):
8679 * solib-pa64.c (pa64_solib_create_inferior_hook)
8680 (pa64_open_symbol_file_object): Remove local 'buf'.
8681 * solib-som.c (som_solib_create_inferior_hook, link_map_start)
8682 (som_open_symbol_file_object): Likewise.
8683 * solib-spu.c (spu_current_sos): Likewise.
8684 * spu-linux-nat.c (spu_fetch_inferior_registers): Likewise.
8685 * spu-multiarch.c (parse_spufs_run, spu_fetch_registers)
8686 (spu_store_registers): Likewise.
8687 * target.c (debug_print_register): Likewise.
8688 * tic6x-tdep.c (tic6x_get_longjmp_target): Likewise.
8689 * xstormy16-tdep.c (xstormy16_store_return_value)
8690 (xstormy16_push_dummy_call, xstormy16_resolve_jmp_table_entry)
8691 (xstormy16_find_jmp_table_entry): Likewise.
8692
8693 2013-03-01 Jiong Wang <jiwang@tilera.com>
8694
8695 * tilegx-tdep.c (tilegx_get_longjmp_target): New function.
8696 (tilegx_gdbarch_init): Install it.
8697
8698 2013-02-28 Tom Tromey <tromey@redhat.com>
8699
8700 * python/py-arch.c (archpy_disassemble): Use PyInt_Check and
8701 PyLong_Check.
8702
8703 2013-02-28 Doug Evans <dje@google.com>
8704
8705 * python/py-finishbreakpoint.c (bpfinishpy_init): gcc -Wall lint.
8706 * python/python.c (gdbpy_find_pc_line): Ditto.
8707
8708 2013-02-28 Tom Tromey <tromey@redhat.com>
8709
8710 * contrib/excheck.py: New file.
8711 * contrib/exsummary.py: New file.
8712 * contrib/gcc-with-excheck: New file.
8713
8714 2013-02-28 Tom Tromey <tromey@redhat.com>
8715
8716 * python/python.c (gdbpy_print_stack): Call begin_line and
8717 fprintf_filtered inside TRY_CATCH.
8718
8719 2013-02-28 Tom Tromey <tromey@redhat.com>
8720
8721 * python/python.c (gdbpy_find_pc_line): Call find_pc_line
8722 inside TRY_CATCH.
8723
8724 2013-02-28 Tom Tromey <tromey@redhat.com>
8725
8726 * py-finishbreakpoint.c (bpfinishpy_init): Reorganize to call
8727 frame_object_to_frame_info inside TRY_CATCH.
8728
8729 2013-02-28 Tom Tromey <tromey@redhat.com>
8730
8731 * py-block.c (gdbpy_block_for_pc): Call block_for_pc inside
8732 TRY_CATCH.
8733
8734 2013-02-28 Tom Tromey <tromey@redhat.com>
8735
8736 * objfiles.h (ALL_PSPACE_OBJFILES): Remove trailing backlash.
8737
8738 2013-02-27 Corinna Vinschen <vinschen@redhat.com>
8739
8740 * windows-nat.c: Throughout, fix format strings and casts of
8741 printf-like functions to avoid type related warnings on all
8742 platforms.
8743 (handle_output_debug_string): Fetch context information address
8744 from debug string using string_to_core_addr.
8745
8746 2013-02-27 Jiong Wang <jiwang@tilera.com>
8747
8748 * regformats/reg-tilegx.dat (name): Change abi name to "tilegx".
8749 * regformats/reg-tilegx32.dat: New.
8750
8751 2013-02-27 Jiong Wang <jiwang@tilera.com>
8752
8753 * configure.tgt (tilegx-*-linux*): Enable gdbserver.
8754
8755 2013-02-27 Jiong Wang <jiwang@tilera.com>
8756
8757 * configure.tgt (tilegx-*-linux*): Replace whitespace with tab.
8758
8759 2013-02-27 Yao Qi <yao@codesourcery.com>
8760 Pedro Alves <palves@redhat.com>
8761
8762 * tracepoint.c (tfile_trace_find): For tfind
8763 pc/tp/range/outside, look for the next trace frame instead of
8764 always starting from frame 0.
8765
8766 2013-02-26 Anthony Green <green@moxielogic.com>
8767
8768 * configure.tgt: Add support for moxie-*-rtems* target.
8769
8770 2013-02-25 Pedro Alves <palves@redhat.com>
8771
8772 * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Change
8773 warning text.
8774
8775 2013-02-24 Maciej W. Rozycki <macro@codesourcery.com>
8776
8777 * mips-tdep.c (mips32_scan_prologue): Reset frame_offset to zero
8778 if $fp is used as the virtual frame pointer.
8779
8780 2013-02-23 Alan Modra <amodra@gmail.com>
8781
8782 * elfread.c (elf_symtab_read): Do not use udata.p here to find
8783 symbol size.
8784 * ppc64-tdep.c (ppc64_elf_make_msymbol_special): New function.
8785 * ppc64-tdep.h (ppc64_elf_make_msymbol_special): Declare.
8786 * ppc-linux-tdep.c (ppc_linux_init_abi): Set up to use the above.
8787 * ppcfbsd-tdep.c (ppcfbsd_init_abi): Likewise.
8788
8789 2013-02-22 Jan Kratochvil <jan.kratochvil@redhat.com>
8790
8791 Code cleanup.
8792 * elfread.c (build_id_bfd_get): Make the return type const.
8793 (build_id_verify): Make the check parameter const.
8794 (build_id_to_debug_filename): Make the build_id parameter and variable
8795 data const.
8796 (find_separate_debug_file_by_buildid): Make the variable build_id const.
8797
8798 2013-02-21 Alan Modra <amodra@gmail.com>
8799
8800 * elfread.c (build_id_bfd_get): Adjust for elf_tdata changes.
8801
8802 2013-02-20 Siva Chandra Reddy <sivachandra@google.com>
8803
8804 Add a new method 'disassemble' to gdb.Architecture class.
8805 * python/py-arch.c (archpy_disassmble): Implementation of the
8806 new method gdb.Architecture.disassemble.
8807 (arch_object_methods): Add entry for the new method.
8808
8809 2013-02-20 Jiong Wang <jiwang@tilera.com>
8810
8811 * MAINTAINERS (Write After Approval): Add myself to the list.
8812
8813 2013-02-19 Pedro Alves <palves@redhat.com>
8814
8815 Garbage collect 'struct monitor_ops'::load_routine.
8816
8817 * monitor.h (struct monitor_ops) <load_routine>: Remove field.
8818 * monitor.c (monitor_load): No longer call
8819 current_monitor->load_routine.
8820 * dbug-rom.c (init_dbug_cmds): Don't set 'load_routine'.
8821 * m32r-rom.c (init_m32r_cmds): Don't set 'load_routine'.
8822 * ppcbug-rom.c (init_ppc_cmds): Don't set 'load_routine'.
8823
8824 2013-02-19 Pedro Alves <palves@redhat.com>
8825
8826 PR gdb/15161
8827
8828 Harmonize with generic_load.
8829
8830 * monitor.c: Include "readline/readline.h".
8831 (monitor_load): Rename parameter 'file' to 'args'. Use build_argv
8832 instead of sscanf. Use CORE_ADDR/strtoulst instead of unsigned
8833 long/strtol for the 'load_offset' local. Error out if no argument
8834 is given or if too many arguments are given. Tilde expand the
8835 passed in file name.
8836
8837 2013-02-19 Kai Tietz <ktietz@redhat.com>
8838
8839 PR gdb/15161
8840 * symfile.c (load_section_data): Change type of load_offset
8841 to CORE_ADDR.
8842 (generic_load): User strtoulst instead of strtoul for conversion
8843 of load_offset.
8844
8845 2013-02-19 Jiong Wang <jiwang@tilera.com>
8846
8847 * tilegx-tdep.c (tilegx_analyze_prologue): add check for
8848 for return address, "lr" register, saved on stack.
8849 * tilegx-tdep.c (tilegx_frame_cache): update "PC" reg
8850 after we invoke tilegx_analyze_prologue.
8851
8852 2013-02-19 Jiong Wang <jiwang@tilera.com>
8853
8854 * tilegx-tdep.c (itilegx_gdbarch_init): char type should be signed.
8855
8856 2013-02-19 Jiong Wang <jiwang@tilera.com>
8857
8858 * tilegx-tdep.c (tilegx_skip_prologue): Use skip_prologue_using_sal.
8859
8860 2013-02-19 Jiong Wang <jiwang@tilera.com>
8861
8862 * tilegx-tdep.c (INT_SWINT_1_SIGRETURN): New macro.
8863 (tilegx_write_pc): New function.
8864 (tilegx_cannot_reference_register): Return zero if REGNO
8865 is TILEGX_FAULTNUM_REGNUM.
8866 (tilegx_gdbarch_init): Add call to set_gdbarch_write_pc.
8867 (tilegx_register_name): Add handling of "faultnum" register.
8868 * tilegx-tdep.h (enum tilegx_regnum): Add TILEGX_FAULTNUM_REGNUM.
8869 * tilegx-linux-tdep.c (tilegx_linux_supply_regset): Add
8870 handling of TILEGX_FAULTNUM_REGNUM.
8871 * tilegx-linux-nat.c (regmap): Add entry for TILEGX_FAULTNUM_REGNUM.
8872
8873 2013-02-19 Jiong Wang <jiwang@tilera.com>
8874
8875 * tilegx-tdep.c (tilegx_push_dummy_call): args pushed on stack
8876 should be aligned to 64bit.
8877
8878 2013-02-19 Kai Tietz <ktietz@redhat.com>
8879
8880 * windows-nat.c (windows_xfer_memory): Fix debug-output
8881 for LLP64.
8882
8883 2013-02-19 Lei Liu <lei.liu2@windriver.com>
8884
8885 * mips-linux-nat.c (mips64_linux_regsets_store_registers):
8886 Don't check DSP register number if HAVE_DSP is not set.
8887
8888 2013-02-19 Alan Modra <amodra@gmail.com>
8889
8890 * elfread.c (struct build_id): Delete. Use struct elf_build_id
8891 throughout file instead.
8892 (build_id_bfd_get): Update to use new elf_tdata build_id field.
8893 Don't xmalloc return value.
8894 (build_id_verify): Similarly. Don't xfree.
8895 (build_id_to_debug_filename): Update.
8896 (find_separate_debug_file_by_buildid): Update, don't xfree.
8897
8898 2013-02-18 Tom Tromey <tromey@redhat.com>
8899
8900 PR gdb/15102:
8901 * dwarf2read.c (read_subrange_type): Use result of
8902 'check_typedef'.
8903
8904 2013-02-16 Yuanhui Zhang <asmwarrior@gmail.com>
8905
8906 * frame.c: Remove one extra white space after #include
8907 directive.
8908
8909 2013-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
8910
8911 * contrib/cc-with-tweaks.sh: Extend the comment for -p option.
8912
8913 2013-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
8914
8915 * gdb-gdb.gdb.in: Wrap set complaints, b internal_error, b info_command
8916 and dir commands into an if block.
8917
8918 2013-02-15 Sanimir Agovic <sanimir.agovic@intel.com>
8919
8920 * python/py-breakpoint (struct pybp_code): Use int instead of
8921 enum type_code.
8922
8923 2013-02-15 Pedro Alves <pedro@codesourcery.com>
8924 Hafiz Abid Qadeer <abidh@codesourcery.com>
8925
8926 * NEWS: Mention new field "trace-file".
8927 * tracepoint.c (trace_status_mi): Output "trace-file" field.
8928 (tfile_open): Record the trace file's filename in the trace
8929 status.
8930 (tfile_files_info): Mention the name of the trace file.
8931 Check the "filename" field explicitely.
8932 (trace_status_command): Explicitely check "filename" field.
8933 (trace_find_command): Ditto.
8934 (trace_find_pc_command): Ditto.
8935 (trace_find_tracepoint_command): Ditto.
8936 (trace_find_line_command): Ditto.
8937 (trace_find_range_command): Ditto.
8938 (trace_find_outside_command): Ditto.
8939 * tracepoint.h (struct trace_status) <from_file>: Rename it
8940 to "filename" and make it hold the trace file's filename
8941 instead of a boolean.
8942 * remote.c (remote_get_trace_status): Initialize "filename"
8943 field with NULL instead of 0.
8944
8945 2013-02-15 Yao Qi <yao@codesourcery.com>
8946
8947 * remote.c: Fix a typo.
8948
8949 2013-02-14 Pierre Muller <muller@sourceware.org>
8950
8951 * contrib/ari/gdb_ari.sh (GNU/Linux rule): Remove.
8952
8953 2013-02-14 Pedro Alves <palves@redhat.com>
8954
8955 * utils.c (savestring): Don't #undef it. Move function to
8956 common/common-utils.c.
8957 * common/common-utils.c: Include gdb_string.h.
8958 (savestring): Move here from utils.c.
8959 * common/common-utils.h (savestring): Declare.
8960
8961 2013-02-14 Pedro Alves <palves@redhat.com>
8962
8963 * utils.c (savestring): Rename parameter 'size' to 'len'.
8964
8965 2013-02-14 Pedro Alves <palves@redhat.com>
8966 Yufeng Zhang <yufeng.zhang@arm.com>
8967
8968 * aarch64-linux-nat.c (aarch64_init_debug_reg_state): Delete.
8969 (aarch64_inferior_data, struct aarch64_inferior_data):
8970 Delete.
8971 (struct aarch64_process_info): New.
8972 (aarch64_process_list): New global.
8973 (aarch64_find_process_pid, aarch64_add_process)
8974 (aarch64_process_info_get): New functions.
8975 (aarch64_inferior_data_get): Delete.
8976 (aarch64_process_info_get): New function.
8977 (aarch64_forget_process): New function.
8978 (aarch64_get_debug_reg_state): New parameter 'pid'. Reimplement.
8979 (aarch64_linux_prepare_to_resume): Pass the lwp's pid to
8980 aarch64_get_debug_reg_state.
8981 (aarch64_notify_debug_reg_change): Use iterate_over_lwps
8982 instead of linux_nat_iterate_watchpoint_lwps.
8983 (aarch64_linux_new_fork): New function.
8984 (aarch64_linux_child_post_startup_inferior): Use
8985 aarch64_forget_process instead of aarch64_init_debug_reg_state.
8986 (aarch64_handle_breakpoint, aarch64_linux_insert_hw_breakpoint)
8987 (aarch64_linux_remove_hw_breakpoint)
8988 (aarch64_handle_aligned_watchpoint)
8989 (aarch64_handle_unaligned_watchpoint)
8990 (aarch64_linux_insert_watchpoint)
8991 (aarch64_linux_remove_watchpoint)
8992 (aarch64_linux_stopped_data_address): Adjust to pass the current
8993 process id to aarch64_debug_reg_state.
8994 (_initialize_aarch64_linux_nat): Install aarch64_linux_new_fork as
8995 linux_nat_new_fork hook, and aarch64_forget_process as
8996 linux_nat_forget_process hook; remove the call to
8997 register_inferior_data_with_cleanup.
8998
8999 2013-02-14 Pedro Alves <palves@redhat.com>
9000
9001 * eval.c (evaluate_subexp_for_address) <default_case_after_eval,
9002 EVAL_AVOID_SIDE_EFFECTS>: Swap and handle TYPE_CODE_REF before
9003 lval_memory.
9004
9005 2013-02-14 Pedro Alves <pedro@codesourcery.com>
9006 Hafiz Abid Qadeer <abidh@codesourcery.com>
9007
9008 * tracepoint.h (validate_trace_state_variable_name): Declare.
9009 * tracepoint.c (validate_trace_state_variable_name): New.
9010 (trace_variable_command): Parse the trace state variable's name
9011 without using parse_expression. Do several validations.
9012 * mi/mi-main.c (mi_cmd_trace_define_variable): Don't parse the
9013 trace state variable's name with parse_expression. Validate it.
9014
9015 2013-02-14 Yao Qi <yao@codesourcery.com>
9016
9017 * infcmd.c (breakpoint_proceeded): Remove it.
9018
9019 2013-02-14 Yao Qi <yao@codesourcery.com>
9020
9021 * tracepoint.c (end_actions_pseudocommand): Make it static.
9022 (while_stepping_pseudocommand): Likewise.
9023 * tracepoint.h (end_actions_pseudocommand): Remove the
9024 declaration.
9025 (while_stepping_pseudocommand): Likewise.
9026
9027 2013-02-14 Yao Qi <yao@codesourcery.com>
9028
9029 * cli/cli-decode.c (help_cmd): Remove the declaration of
9030 "cmdlist".
9031 (help_all): Likewise.
9032
9033 2013-02-13 Pedro Alves <palves@redhat.com>
9034
9035 * amd64-linux-nat.c (update_debug_registers_callback):
9036 Update comment.
9037 (amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use
9038 iterate_over_lwps.
9039 (amd64_linux_prepare_to_resume): Pass the lwp's pid to
9040 i386_debug_reg_state.
9041 (amd64_linux_new_fork): New function.
9042 (_initialize_amd64_linux_nat): Install amd64_linux_new_fork as
9043 linux_nat_new_fork hook, and i386_forget_process as
9044 linux_nat_forget_process hook.
9045 * i386-linux-nat.c (update_debug_registers_callback):
9046 Update comment.
9047 (i386_linux_dr_set_control, i386_linux_dr_set_addr): Use
9048 iterate_over_lwps.
9049 (i386_linux_prepare_to_resume): Pass the lwp's pid to
9050 i386_debug_reg_state.
9051 (i386_linux_new_fork): New function.
9052 (_initialize_i386_linux_nat): Install i386_linux_new_fork as
9053 linux_nat_new_fork hook, and i386_forget_process as
9054 linux_nat_forget_process hook.
9055 * i386-nat.c (i386_init_dregs): Delete.
9056 (i386_inferior_data, struct i386_inferior_data):
9057 Delete.
9058 (struct i386_process_info): New.
9059 (i386_process_list): New global.
9060 (i386_find_process_pid, i386_add_process, i386_process_info_get):
9061 New functions.
9062 (i386_inferior_data_get): Delete.
9063 (i386_process_info_get): New function.
9064 (i386_debug_reg_state): New parameter 'pid'. Reimplement.
9065 (i386_forget_process): New function.
9066 (i386_cleanup_dregs): Rewrite.
9067 (i386_update_inferior_debug_regs, i386_insert_watchpoint)
9068 (i386_remove_watchpoint, i386_region_ok_for_watchpoint)
9069 (i386_stopped_data_address, i386_insert_hw_breakpoint)
9070 (i386_remove_hw_breakpoint): Adjust to pass the current process id
9071 to i386_debug_reg_state.
9072 (i386_use_watchpoints): Don't register inferior data.
9073 * i386-nat.h (i386_debug_reg_state): Add new 'pid' parameter, and
9074 adjust comment.
9075 (i386_forget_process): Declare.
9076 * linux-fork.c (delete_fork): Call linux_nat_forget_process.
9077 * linux-nat.c (linux_nat_new_fork, linux_nat_forget_process_hook):
9078 New static globals.
9079 (linux_child_follow_fork): Don't call linux_nat_new_thread here.
9080 (add_initial_lwp): New, factored out from ...
9081 (add_lwp): ... this. Don't check the number of lwps before
9082 calling linux_nat_new_thread.
9083 (linux_nat_iterate_watchpoint_lwps): Delete.
9084 (linux_nat_attach): Use add_initial_lwp instead of add_lwp.
9085 (linux_handle_extended_wait): Call the linux_nat_new_fork hook on
9086 forks and vforks.
9087 (linux_nat_wait_1): Use add_initial_lwp instead of add_lwp for the
9088 initial lwp.
9089 (linux_nat_kill, linux_nat_mourn_inferior): Call
9090 linux_nat_forget_process.
9091 (linux_nat_set_new_fork, linux_nat_set_forget_process)
9092 (linux_nat_forget_process): New functions.
9093 * linux-nat.h (linux_nat_iterate_watchpoint_lwps_ftype): Delete
9094 type.
9095 (linux_nat_iterate_watchpoint_lwps): Delete declaration.
9096 (linux_nat_new_fork_ftype, linux_nat_forget_process_ftype): New
9097 types.
9098 (linux_nat_set_new_fork, linux_nat_set_forget_process)
9099 (linux_nat_forget_process): New declarations.
9100
9101 * amd64fbsd-nat.c (super_mourn_inferior): New global.
9102 (amd64fbsd_mourn_inferior): New function.
9103 (_initialize_amd64fbsd_nat): Override to_mourn_inferior.
9104 * windows-nat.c (windows_detach): Call i386_cleanup_dregs.
9105
9106 2013-02-13 Marcus Shawcroft <marcus.shawcroft@arm.com>
9107
9108 * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity):
9109 Adding _().
9110
9111 2013-02-13 Marcus Shawcroft <marcus.shawcroft@arm.com>
9112
9113 * aarch64-linux-nat.c (debug_reg_change_callback)
9114 (aarch64_linux_get_debug_reg_capacity): ARI fix: Replace %llx with
9115 %s and phex().
9116
9117 2013-02-13 Marcus Shawcroft <marcus.shawcroft@arm.com>
9118
9119 * aarch64-linux-nat.c (dr_changed_t): ARI fix: Replace long long
9120 with LONGEST.
9121
9122 2013-02-13 Pedro Alves <palves@redhat.com>
9123 Hafiz Abid Qadeer <abidh@codesourcery.com>
9124
9125 * c-lang.c (c_op_print_tab): Add entry for UNOP_PLUS.
9126
9127 2013-02-12 Tom Tromey <tromey@redhat.com>
9128
9129 PR symtab/11464:
9130 * c-exp.y (lex_one_token): Initialize other fields of yylval on
9131 NAME return.
9132 (classify_inner_name): Remove 'first_name' argument, add
9133 'context'. Remove unused variable.
9134 (yylex): Explicitly maintain the context type. Exit loop earlier
9135 if NAME result is seen.
9136
9137 2013-02-12 Pedro Alves <palves@redhat.com>
9138
9139 * amd64-darwin-tdep.c: Add (C) after Copyright.
9140 * cli/cli-cmds.h: Ditto.
9141 * cli/cli-decode.c: Ditto.
9142 * cli/cli-decode.h: Ditto.
9143 * cli/cli-dump.c: Ditto.
9144 * cli/cli-dump.h: Ditto.
9145 * cli/cli-interp.c: Ditto.
9146 * cli/cli-logging.c: Ditto.
9147 * cli/cli-script.c: Ditto.
9148 * cli/cli-script.h: Ditto.
9149 * cli/cli-setshow.c: Ditto.
9150 * cli/cli-setshow.h: Ditto.
9151 * cli/cli-utils.c: Ditto.
9152 * cli/cli-utils.h: Ditto.
9153 * config/alpha/nm-osf3.h: Ditto.
9154 * config/djgpp/djconfig.sh: Ditto.
9155 * config/i386/nm-fbsd.h: Ditto.
9156 * config/i386/nm-i386gnu.h: Ditto.
9157 * config/nm-linux.h: Ditto.
9158 * config/nm-nto.h: Ditto.
9159 * config/rs6000/nm-rs6000.h: Ditto.
9160 * config/sparc/nm-sol2.h: Ditto.
9161 * darwin-nat-info.c: Ditto.
9162 * dfp.c: Ditto.
9163 * dfp.h: Ditto.
9164 * gdb-demangle.h: Ditto.
9165 * i386-darwin-nat.c: Ditto.
9166 * i386-darwin-tdep.c: Ditto.
9167 * linux-fork.h: Ditto.
9168 * m32c-tdep.c: Ditto.
9169 * microblaze-linux-tdep.c: Ditto.
9170 * microblaze-rom.c: Ditto.
9171 * microblaze-tdep.c: Ditto.
9172 * microblaze-tdep.h: Ditto.
9173 * mips-linux-tdep.h: Ditto.
9174 * ppc-ravenscar-thread.c: Ditto.
9175 * ppc-ravenscar-thread.h: Ditto.
9176 * prologue-value.c: Ditto.
9177 * prologue-value.h: Ditto.
9178 * ravenscar-thread.c: Ditto.
9179 * ravenscar-thread.h: Ditto.
9180 * sparc-ravenscar-thread.c: Ditto.
9181 * sparc-ravenscar-thread.h: Ditto.
9182 * tilegx-linux-tdep.c: Ditto.
9183 * unwind_stop_reasons.def: Ditto.
9184 * windows-nat.h: Ditto.
9185 * xtensa-linux-tdep.c: Ditto.
9186 * xtensa-xtregs.c: Ditto.
9187 * regformats/regdat.sh: Ditto.
9188 * regformats/regdef.h: Ditto.
9189
9190 2013-02-12 Pedro Alves <palves@redhat.com>
9191
9192 * break-catch-sig.c: Update copyright years.
9193
9194 2013-02-11 Siva Chandra Reddy <sivachandra@google.com>
9195
9196 Add support for a destructor for ui_out data and use it to
9197 provide a ui_out destructor.
9198 * ui-out.h: Declare the new ui_out destructor.
9199 (ui_out_impl): Add a field for data destructor in ui_out_impl.
9200 * ui-out.c (default_data_destroy): Add a default data destructor
9201 which does nothing.
9202 (default_ui_out_impl): Set the new data_destroy field to
9203 default_data_destroy
9204 (uo_data_destroy): Local function which invokes the data
9205 destructor if present.
9206 (clear_table): Local function which clears the table data of a
9207 ui_out object.
9208 (ui_out_destroy): Public function which frees a ui_out object.
9209 (ui_out_table_end): Use the new clear_table function.
9210 * cli-out.c (cli_ui_out_impl): Set the new data_destroy field to
9211 NULL.
9212 * mi/mi-out.c (mi_ui_out_impl): Set the new data_destroy field
9213 to NULL.
9214
9215 2013-02-11 Doug Evans <dje@google.com>
9216
9217 * printcmd.c (printf_c_string,printf_wide_c_string): New functions.
9218 (printf_decfloat): New function. Broken out from ui_printf.
9219 Remove unnecessary code to shift the entire format string down.
9220 (printf_pointer): New function.
9221 (ui_printf): Code to print C strings, wide C strings, decfloats,
9222 and pointers moved to separate functions.
9223
9224 2013-02-11 Sergio Durigan Junior <sergiodj@redhat.com>
9225
9226 * valops.c (value_assign): Handling bitfield offset in
9227 `lval_internalvar_component' case.
9228
9229 2013-02-08 Doug Evans <dje@google.com>
9230
9231 * common/format.c (parse_format_string): Fix whitespace.
9232
9233 2013-02-08 Matthew Gretton-Dann <matthew.gretton-dann@linaro.org>
9234
9235 * stack.c (return_command): Work around uninitialized variable
9236 warning.
9237
9238 2013-02-08 Yufeng Zhang <yufeng.zhang@arm.com>
9239
9240 * aarch64-linux-tdep.c (AARCH64_LINUX_SIZEOF_GREGSET): Change the
9241 number of the registers from 36 to 34.
9242
9243 2013-02-08 Marcus Shawcroft <marcus.shawcroft@arm.com>
9244
9245 * NEWS: Mention new AArch64 native and target support.
9246
9247 2013-02-08 Marcus Shawcroft <marcus.shawcroft@arm.com>
9248
9249 * MAINTAINERS (Write After Approval): Add myself.
9250
9251 2013-02-08 Jim MacArthur <jim.macarthur@arm.com>
9252 Marcus Shawcroft <marcus.shawcroft@arm.com>
9253 Nigel Stephens <nigel.stephens@arm.com>
9254 Yufeng Zhang <yufeng.zhang@arm.com>
9255
9256 * aarch64-linux-nat.c: New file.
9257 * config/aarch64/linux.mh: New file.
9258 * configure.host: Add AArch64.
9259 * Makefile.in (ALLDEPFILES): Add aarch64-linux-nat.c.
9260
9261 2013-02-07 Doug Evans <dje@google.com>
9262
9263 * cli/cli-cmds.c (_initialize_cli_cmds): Clarify argument to
9264 disassemble command.
9265
9266 2013-02-07 Marcus Shawcroft <marcus.shawcroft@arm.com>
9267
9268 * aarch64-linux-tdep.c (aarch64_linux_init_abi): Call
9269 set_gdbarch_fetch_tls_load_module_address.
9270
9271 2013-02-06 David S. Miller <davem@davemloft.net>
9272
9273 * sparc-tdep.c (sparc32_return_value): Handle writing return value when
9274 using RETURN_VALUE_ABI_PRESERVES_ADDRESS.
9275 * value.c (struct_return_convention): New function.
9276 (using_struct_return): Implement in terms of struct_return_convention.
9277 * value.h (struct_return_convention): Declare.
9278 * stack.c (return_command): Allow successful overriding of the return
9279 value when RETURN_VALUE_ABI_PRESERVES_ADDRESS.
9280
9281 2013-02-06 Tom Tromey <tromey@redhat.com>
9282
9283 * python/py-type.c (typy_strip_typedefs): Don't call check_typedef
9284 outside of TRY_CATCH.
9285
9286 2013-02-06 Yao Qi <yao@codesourcery.com>
9287
9288 * mi/mi-interp.c: Include "tracepoint.h".
9289 (mi_tsv_modified): Declare.
9290 (mi_tsv_created, mi_tsv_deleted): Update declaration.
9291 (mi_interpreter_init): Call observer_attach_tsv_modified.
9292 (mi_tsv_modified): New.
9293 (mi_tsv_created, mi_tsv_deleted): Update.
9294 * tracepoint.c (trace_variable_command): Call
9295 observer_notify_tsv_modified if the initial value of tsv is
9296 changed.
9297 (delete_trace_state_variable): Call
9298 observer_notify_tsv_deleted earlier.
9299 (trace_variable_command): Caller update.
9300 (create_tsv_from_upload): Likewise.
9301 * observer.sh: Declare "struct trace_state_variable".
9302
9303 * NEWS: Mention the new MI notification "=tsv-modified".
9304
9305 2013-02-05 Doug Evans <dje@google.com>
9306
9307 * completer.c (location_completer): Fix typo in comment.
9308
9309 2013-02-05 Jan Kratochvil <jan.kratochvil@redhat.com>
9310
9311 * breakpoint.c (add_location_to_breakpoint): Insert the location with
9312 ADDRESS sorted.
9313
9314 2013-02-05 Marcus Shawcroft <marcus.shawcroft@arm.com>
9315
9316 * aarch64-tdep.c (aarch64_analyze_prologue): ARI fix:
9317 Refactor if statement to avoid trailing || operator.
9318
9319 2013-02-05 Andreas Tobler <andreast@fgznet.ch>
9320
9321 * NEWS: Add PowerPC FreeBSD as a new native configuration.
9322
9323 2013-02-04 Andreas Tobler <andreast@fgznet.ch>
9324
9325 * Makefile.in (ALL_TARGET_OBS): Add powerpc FreeBSD files.
9326 * configure.host: Add powerpc*-*-freebsd* target.
9327 * configure.tgt: Add target info for powerpc*-*-freebsd*.
9328 * ppcfbsd-nat.c, ppcfbsd-tdep.h, ppcfbsd-tdep.c: New files.
9329 * config/powerpc/fbsd.mh: New file.
9330
9331 2013-02-04 Sergio Durigan Junior <sergiodj@redhat.com>
9332 Denys Vlasenko <dvlasenk@redhat.com>
9333 Pedro Alves <palves@redhat.com>
9334
9335 * gdbarch.sh (elfcore_write_linux_prpsinfo): New F hook.
9336 (struct elf_internal_linux_prpsinfo): Forward declare.
9337 * gdbarch.h, gdbarch.c: Regenerate.
9338 * linux-tdep.c: Include `cli/cli-utils.h'.
9339 (linux_fill_prpsinfo): New function.
9340 (linux_make_corefile_notes): Use linux_fill_prpsinfo. If there's
9341 an elfcore_write_linux_prpsinfo hook, use it, otherwise, use
9342 elfcore_write_linux_prpsinfo32 or elfcore_write_linux_prpsinfo64
9343 depending on gdbarch pointer bitness.
9344 * ppc-linux-tdep.c: Include elf-bfd.h.
9345 (ppc_linux_init_abi): Hook in elfcore_write_ppc_linux_prpsinfo32
9346 on 32-bit.
9347
9348 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
9349 Marcus Shawcroft <marcus.shawcroft@arm.com>
9350 Nigel Stephens <nigel.stephens@arm.com>
9351 Yufeng Zhang <yufeng.zhang@arm.com>
9352
9353 * configure.tgt (aarch64*-*-linux*): Set build_gdbserver=yes.
9354
9355 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
9356 Marcus Shawcroft <marcus.shawcroft@arm.com>
9357 Nigel Stephens <nigel.stephens@arm.com>
9358 Yufeng Zhang <yufeng.zhang@arm.com>
9359
9360 * aarch64-newlib-tdep.c: New file.
9361 * configure.tgt: Add aarch64-newlib-tdep.o to gdb_target_obs of
9362 aarch64*-*-elf.
9363 * defs.h (enum gdb_osabi): Add GDB_OSABI_NEWLIB.
9364 * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-newlib-tdep.o.
9365 (ALLDEPFILES): Add aarch64-newlib-tdep.c.
9366 * osabi.c (gdb_osabi_names): Add "Newlib".
9367
9368 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
9369 Marcus Shawcroft <marcus.shawcroft@arm.com>
9370 Nigel Stephens <nigel.stephens@arm.com>
9371 Yufeng Zhang <yufeng.zhang@arm.com>
9372
9373 * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-linux-tdep.o.
9374 (ALLDEPFILES): Add aarch64-linux-tdep.c.
9375 * aarch64-linux-tdep.c: New file.
9376 * aarch64-linux-tdep.h: New file.
9377 * aarch64-tdep.h (gdbarch_tdep): Define gregset and fpregset.
9378 * configure.tgt: Add aarch64-none-linux-gnu.
9379
9380 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
9381 Marcus Shawcroft <marcus.shawcroft@arm.com>
9382 Nigel Stephens <nigel.stephens@arm.com>
9383 Yufeng Zhang <yufeng.zhang@arm.com>
9384
9385 * Makefile.in (ALL_64_TARGET_OBS): Add arch64-tdep.o.
9386 (HFILES_NO_SRCDIR): Add aarch64-tdep.h.
9387 (ALLDEPFILES): Add aarch64-tdep.c.
9388 * aarch64-tdep.c: New file.
9389 * aarch64-tdep.h: New file.
9390 * configure.tgt: Add AArch64.
9391 * features/Makefile (WHICH): Add aarch64 and aarch64-without-fpu.
9392 (aarch64-expedite): New definition.
9393 * features/aarch64-core.xml: New file.
9394 * features/aarch64-fpu.xml: New file.
9395 * features/aarch64-without-fpu.c: New file (generated).
9396 * features/aarch64-without-fpu.xml: New file.
9397 * features/aarch64.c: New file (generated).
9398 * features/aarch64.xml: New file.
9399 * regformats/aarch64-without-fpu.dat: New file (generated).
9400 * regformats/aarch64.dat: New file (generated).
9401
9402 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
9403
9404 * contrib/expect-read1.c: New file.
9405 * contrib/expect-read1.sh: New file.
9406
9407 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
9408
9409 * dwarf2read.c (file_file_name): New function with code from
9410 file_full_name.
9411 (file_full_name): Move most of the code to file_file_name.
9412 (macro_start_file): Rename variable full_name to file_name and use
9413 file_file_name for it. Add comp_dir parameter to new_macro_table.
9414 * macrocmd.c (show_pp_source_pos): New variable fullname. Replace any
9415 macro_source_file->filename access by macro_source_fullname call.
9416 * macroscope.c (_initialize_macroscope): Update the new_macro_table
9417 caller.
9418 * macrotab.c (struct macro_table): New field comp_dir.
9419 (macro_include): New variables link_fullname and source_fullname.
9420 Replace any macro_source_file->filename access by macro_source_fullname
9421 call.
9422 (macro_lookup_inclusion): Remove the partial filenames checking code.
9423 (check_for_redefinition): New variables source_fullname and
9424 found_key_fullname. Replace any macro_source_file->filename access by
9425 macro_source_fullname call.
9426 (macro_undef): New variables source_fullname and key_fullname. Replace
9427 any macro_source_file->filename access by macro_source_fullname call.
9428 (macro_lookup_definition): New variables retval and source_fullname.
9429 Replace any macro_source_file->filename access by macro_source_fullname
9430 call.
9431 (foreach_macro): New variable key_fullname. Replace any
9432 macro_source_file->filename access by macro_source_fullname call.
9433 (foreach_macro_in_scope): New variable datum_fullname. Replace any
9434 macro_source_file->filename access by macro_source_fullname call.
9435 (new_macro_table): Add parameter comp_dir. Initialize T with it.
9436 (macro_source_fullname): New function.
9437 * macrotab.h (struct macro_source_file): Extent the filename field
9438 comment.
9439 (new_macro_table): New parameter comp_dir, add a comment for it.
9440 (macro_source_fullname): new declaration.
9441
9442 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
9443
9444 * dwarf2read.c (dw2_map_symtabs_matching_filename): Move variable
9445 this_real_name to outer block. Use it also for
9446 compare_filenames_for_search.
9447 (dw2_expand_symtabs_matching): New variable this_real_name. Use it
9448 with dw2_get_real_path for file_matcher, considering also
9449 BASENAMES_MAY_DIFFER.
9450 (file_full_name): Prepend COMP_DIR even for relative lh->INCLUDE_DIRS.
9451
9452 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
9453
9454 * dwarf2read.c (dw2_expand_symtabs_matching): Add basenames parameter
9455 to the file_matcher parameter. Pass 0 to it.
9456 (dwarf2_create_include_psymtab): Copy also DIRNAME.
9457 * psymtab.c (partial_map_symtabs_matching_filename): Drop handling of
9458 NULL psymtab_to_fullname result.
9459 (psymtab_to_fullname): Remove variable r. Never return NULL, assemble
9460 an expected filename instead.
9461 (expand_symtabs_matching_via_partial): Add basenames parameter to the
9462 file_matcher parameter. Call also psymtab_to_fullname, after newly
9463 considering BASENAMES_MAY_DIFFER.
9464 * source.c (rewrite_source_path): Remove static.
9465 * source.h (rewrite_source_path): New declaration.
9466 * symfile.h (struct quick_symbol_functions): Add basenames parameter to
9467 the expand_symtabs_matching field. Comment it.
9468 * symtab.c (file_matches): New function comment. Add parameter
9469 basenames, implement it.
9470 (search_symbols_file_matches): Add basenames parameter. Update the
9471 file_matches caller.
9472 (search_symbols): Match FILES also against symtab_to_fullname.
9473 Optimize it for BASENAMES_MAY_DIFFER.
9474
9475 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
9476
9477 * source.c (print_source_lines_base): Print for TUI also "fullname".
9478 * tui/tui-data.c (init_content_element): Change tui_locator_element
9479 field to full_name.
9480 * tui/tui-data.h (struct tui_locator_element): Likewise.
9481 * tui/tui-disasm.c (tui_show_disassem_and_update_source): Rename
9482 tui_update_locator_filename calls to tui_update_locator_fullname.
9483 Replace symtab->filename refererence by symtab_to_fullname call.
9484 * tui/tui-out.c (tui_field_string): Check for "fullname" now.
9485 * tui/tui-source.c (tui_set_source_content): Change tui_locator_element
9486 field to full_name. Replace symtab->filename refererence by
9487 symtab_to_fullname call.
9488 (tui_show_symtab_source): Rename parameter to fullname. Change
9489 tui_locator_element field to full_name.
9490 * tui/tui-stack.c: Include source.h.
9491 (tui_set_locator_filename): Rename the declaration to ...
9492 (tui_set_locator_fullname): ... here. Rename its parameter to
9493 fullname, updates its comment.
9494 (tui_set_locator_info): Rename its parameter to fullname.
9495 (tui_set_locator_filename): Rename the definition to ...
9496 (tui_set_locator_fullname): ... here. Rename its parameter to
9497 fullname, updates its comment. Change tui_locator_element field to
9498 full_name.
9499 (tui_set_locator_info): Rename its parameter to fullname.
9500 (tui_set_locator_info): Rename callee to tui_set_locator_fullname.
9501 (tui_update_locator_filename): Rename to ...
9502 (tui_update_locator_fullname): ... here. Rename callee to
9503 tui_set_locator_fullname.
9504 (tui_show_frame_info): Replace symtab->filename refererence by
9505 symtab_to_fullname call.
9506 * tui/tui-stack.h (tui_update_locator_filename): Rename to ...
9507 (tui_update_locator_fullname): ... here.
9508 * tui/tui-winsource.c (tui_display_main): Rename the callee to
9509 tui_update_locator_fullname. Replace symtab->filename refererence by
9510 symtab_to_fullname call.
9511 * tui/tui.c (tui_show_source): Rename its parameter to fullname.
9512 Rename the callee to tui_update_locator_fullname.
9513 * tui/tui.h (tui_show_source): Rename its parameter to fullname.
9514
9515 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
9516
9517 * ada-lang.c (user_select_syms): Replace symtab->filename refererences
9518 by symtab_to_filename_for_display calls.
9519 * breakpoint.c (print_breakpoint_location, resolve_sal_pc): Likewise.
9520 (clear_command): New variable sal_fullname, initialize it. Replace
9521 compare_filenames_for_search by filename_cmp with sal_fullname.
9522 (say_where, update_static_tracepoint): Replace symtab->filename
9523 refererences by symtab_to_filename_for_display calls.
9524 * cli/cli-cmds.c (edit_command, list_command, ambiguous_line_spec):
9525 Likewise.
9526 * dwarf2read.c: Include source.h.
9527 (fixup_go_packaging): Replace symtab->filename refererences by
9528 symtab_to_filename_for_display calls.
9529 * linespec.c (add_sal_to_sals): Rename variable filename to fullname.
9530 Replace symtab->filename refererences by symtab_to_filename_for_display
9531 calls.
9532 (create_sals_line_offset, convert_linespec_to_sals): New variable
9533 fullname, initialize it, replace symtab->filename reference by the
9534 variable.
9535 * linux-fork.c: Include source.h.
9536 (info_checkpoints_command): Replace symtab->filename refererences by
9537 symtab_to_filename_for_display calls.
9538 * macroscope.c (sal_macro_scope): Replace symtab->filename refererences
9539 by symtab_to_filename_for_display calls.
9540 * mdebugread.c: Include source.h.
9541 (psymtab_to_symtab_1): Replace symtab->filename refererences by
9542 symtab_to_filename_for_display calls.
9543 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file)
9544 (mi_cmd_file_list_exec_source_files): Likewise.
9545 * printcmd.c: Include source.h.
9546 (build_address_symbolic): Replace symtab->filename refererences by
9547 symtab_to_filename_for_display calls.
9548 * psymtab.c (partial_map_symtabs_matching_filename)
9549 (read_psymtabs_with_fullname): Call compare_filenames_for_search also
9550 with psymtab_to_fullname.
9551 * python/py-symtab.c (stpy_str): Replace symtab->filename refererences
9552 by symtab_to_filename_for_display calls.
9553 (stpy_get_filename): New variable filename, initialize it, use instead
9554 of symtab->filename refererences.
9555 (salpy_str): Make variable filename const char *. Replace
9556 symtab->filename refererences by symtab_to_filename_for_display calls.
9557 * skip.c: Include source.h and filenames.h.
9558 (skip_file_command): Remove const from the symtab variable. Replace
9559 symtab->filename refererences by symtab_to_fullname call.
9560 (function_name_is_marked_for_skip): New variables searched_for_fullname
9561 and fullname. Use them to search also with symtab's fullname.
9562 * source.c (find_source_lines): Replace symtab->filename refererences
9563 by symtab_to_filename_for_display calls.
9564 (print_source_lines_base): New variable filename, use it instead of
9565 symtab->filename. Replace symtab->filename refererences by
9566 symtab_to_filename_for_display calls.
9567 (line_info, forward_search_command): Replace symtab->filename
9568 refererences by symtab_to_filename_for_display calls.
9569 (reverse_search_command): Replace symtab->filename refererences by
9570 symtab_to_filename_for_display calls. New variable filename for it.
9571 * stack.c (frame_info): Likewise.
9572 * symmisc.c: Include source.h.
9573 (dump_objfile, dump_symtab_1, maintenance_print_symbols)
9574 (maintenance_info_symtabs): Replace symtab->filename refererences by
9575 symtab_to_filename_for_display calls.
9576 * symtab.c (iterate_over_some_symtabs): Call
9577 compare_filenames_for_search also with symtab_to_fullname.
9578 (lookup_symbol_aux_quick, basic_lookup_transparent_type_quick): Replace
9579 symtab->filename refererences by symtab_to_filename_for_display calls.
9580 (find_line_symtab): Replace symtab->filename refererences by
9581 symtab_to_filename_for_display calls.
9582 (file_matches): Replace filename_cmp by compare_filenames_for_search.
9583 (print_symbol_info): Make the last parameter const char *. New
9584 variable s_filename. Use it in the function.
9585 (symtab_symbol_info): Make the last_filename variable const char *.
9586 Replace symtab->filename refererences by symtab_to_filename_for_display
9587 calls.
9588 (rbreak_command): New variable fullname. Use it. Replace
9589 symtab->filename refererence by symtab_to_filename_for_display call.
9590 * tracepoint.c (set_traceframe_context, trace_find_line_command)
9591 (print_one_static_tracepoint_marker): Replace symtab->filename
9592 refererences by symtab_to_filename_for_display calls.
9593 * tui/tui-source.c (tui_set_source_content): New variables filename and
9594 s_filename. Replace symtab->filename refererences by this variable.
9595 Replace other symtab->filename refererences by
9596 symtab_to_filename_for_display calls.
9597
9598 2013-02-03 Eldar Gaynetdinov <hal9000ed2k@gmail.com>
9599 Jan Kratochvil <jan.kratochvil@redhat.com>
9600
9601 Add a new variable that controls a way in which filenames are
9602 displayed.
9603 * NEWS (set filename-display): New entry.
9604 * source.c (filename_display_basename, filename_display_relative)
9605 (filename_display_absolute, filename_display_kind_names)
9606 (filename_display_string, show_filename_display_string)
9607 (symtab_to_filename_for_display): New.
9608 (_initialize_source): Added initialization of 'filename-display'
9609 variable.
9610 * source.h (symtab_to_filename_for_display): Added declaration.
9611 * stack.c (print_frame): Added new variable and calling of a new
9612 function and condition with this variable. Changed third argument of
9613 calling of a function.
9614
9615 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
9616
9617 * tui/tui-data.c (init_win_info, tui_del_window, tui_free_window):
9618 Rename field reference filename to fullname.
9619 * tui/tui-data.h (struct tui_source_info): Rename field filename to
9620 fullname. New comment for it.
9621 * tui/tui-source.c (tui_set_source_content): Rename field reference
9622 filename to fullname. Initialize field by symtab_to_fullname now.
9623 * tui/tui-winsource.c (tui_update_breakpoint_info): Rename field
9624 reference filename to fullname. Use symtab_to_fullname during
9625 comparison.
9626
9627 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
9628
9629 Code cleanup.
9630 * dwarf2read.c (dw2_expand_symtabs_with_filename): Rename to ...
9631 (dw2_expand_symtabs_with_fullname): ... here. Rename parameter
9632 filename to fullname. Rename variable this_name to this_fullname.
9633 Lowercase FILENAME_CMP call.
9634 (dw2_find_symbol_file): New comment for the returned string.
9635 (dwarf2_gdb_index_functions): Rename the function to
9636 dw2_expand_symtabs_with_fullname.
9637 * psymtab.c (read_psymtabs_with_filename): Rename to ...
9638 (read_psymtabs_with_fullname): ... here. Rename parameter filename to
9639 fullname.
9640 (psym_functions): Rename the function to read_psymtabs_with_fullname.
9641 * symfile.h (struct quick_symbol_functions): Rename field
9642 expand_symtabs_with_filename to expand_symtabs_with_fullname and its
9643 parameter filename to fullname. Document returned string meaning for
9644 find_symbol_file.
9645 * symtab.c (find_line_symtab): Rename the called function to
9646 expand_symtabs_with_fullname.
9647
9648 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
9649
9650 Code cleanup.
9651 * breakpoint.c (clear_command): Remove variable is_abs, unify the
9652 call of filename_cmp with compare_filenames_for_search.
9653 * dwarf2read.c (dw2_map_symtabs_matching_filename): Remove variable
9654 is_abs, unify the call of FILENAME_CMP with
9655 compare_filenames_for_search. New gdb_asserts for real_path and name.
9656 Unify the call of compare_filenames_for_search with FILENAME_CMP.
9657 * psymtab.c (partial_map_symtabs_matching_filename): Likewise.
9658 * symfile.h (struct quick_symbol_functions): Extend the comment for
9659 map_symtabs_matching_filename.
9660 * symtab.c (compare_filenames_for_search): Remove the function comment
9661 relative path requirement. Handle absolute filenames, with a comment.
9662 (iterate_over_some_symtabs): Remove variable is_abs, unify the call of
9663 FILENAME_CMP with compare_filenames_for_search. New gdb_asserts for
9664 real_path and name. Unify the call of compare_filenames_for_search
9665 with FILENAME_CMP.
9666 (iterate_over_symtabs): New gdb_assert on REAL_PATH.
9667
9668 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
9669
9670 Code cleanup.
9671 * breakpoint.c (print_breakpoint_location): Replace bp_location field
9672 source_file references by symtab field references. Remove variables
9673 sal and fullname.
9674 (momentary_breakpoint_from_master, add_location_to_breakpoint):
9675 (clear_command, say_where): Replace bp_location field source_file
9676 references by symtab field references.
9677 (bp_location_dtor): Remove the source_file reference.
9678 (update_static_tracepoint): Replace bp_location field source_file
9679 references by symtab field references.
9680 (breakpoint_free_objfile): New function.
9681 * breakpoint.h (struct bp_location): Extend the comment for line_number.
9682 Replace the field source_file by field symtab, extend its comment.
9683 (breakpoint_free_objfile): New declaration.
9684 * objfiles.c (free_objfile): Call breakpoint_free_objfile.
9685 * tui/tui-winsource.c (tui_update_breakpoint_info): Replace bp_location
9686 field source_file references by symtab field references.
9687
9688 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
9689
9690 Replace xfullpath calls by gdb_realpath calls.
9691 * cli/cli-cmds.c (find_and_open_script): Remove xfullpath from the
9692 function comment.
9693 * dwarf2read.c (dw2_map_expand_apply): Remove parameter full_path.
9694 Remove it from the iterate_over_some_symtabs call.
9695 (dw2_map_symtabs_matching_filename): Remove parameter full_path.
9696 Remove it from the dw2_map_expand_apply calls, remove a block handling
9697 it.
9698 * psymtab.c (partial_map_expand_apply): Remove parameter full_path.
9699 Remove it from the iterate_over_some_symtabs call.
9700 (partial_map_symtabs_matching_filename): Remove parameter full_path.
9701 Remove it from the partial_map_expand_apply calls, remove a block
9702 handling it. Drop gdb_realpath call and cleanups from the real_path
9703 handling.
9704 * source.c (openp): Drop the comment part about xfullpath. Replace
9705 xfullpath calls by gdb_realpath calls.
9706 (find_and_open_source): Replace xfullpath call by gdb_realpath call.
9707 * symfile.h (struct quick_symbol_functions): Remove parameter full_path
9708 from method map_symtabs_matching_filename and its comment.
9709 * symmisc.c (maintenance_print_msymbols): Replace xfullpath call by
9710 gdb_realpath call.
9711 * symtab.c (iterate_over_some_symtabs): Remove parameter full_path,
9712 remove it also from the function comment, remove a block handling it.
9713 Drop gdb_realpath call and cleanups from the real_path handling.
9714 (iterate_over_symtabs): Drop variable full_path and its use.
9715 * symtab.h (iterate_over_some_symtabs): Remove parameter full_path.
9716 * utils.c (xfullpath): Remove.
9717 * utils.h (xfullpath): Remove.
9718
9719 2013-02-01 Andreas Tobler <andreast@fgznet.ch>
9720
9721 * Makefile.in (ALL_TARGET_OBS): Add ppc64-tdep.o.
9722 (HFILES_NO_SRCDIR): Add ppc64-tdep.h.
9723 (ALLDEPFILES): Add ppc64-tdep.c.
9724 * configure.tgt (powerpc-*-linux* | powerpc64-*-linux*): Add
9725 ppc64-tdep.o to gdb_target_obs.
9726 * ppc64-tdep.h: New file.
9727 * ppc64-tdep.c: New file.
9728 (insn_d, insn_ds, insn_xfx, ppc64_desc_entry_point): Move from
9729 ppc-linux-tdep.c to here.
9730 (PPC64_STANDARD_LINKAGE1_LEN, PPC64_STANDARD_LINKAGE2_LEN)
9731 (PPC64_STANDARD_LINKAGE2_LEN): Likewise and use ARRAY_SIZE macro.
9732 (ppc64_standard_linkage1_target, ppc64_standard_linkage2_target)
9733 (ppc64_standard_linkage3_target, ppc64_skip_trampoline_code): Move
9734 from ppc-linux-tdep.c to here.
9735 (ppc64_convert_from_func_ptr_addr): Rename from
9736 ppc64_linux_convert_from_func_ptr_addr to
9737 ppc64_convert_from_func_ptr_addr and move from ppc-linux-tdep.c to
9738 here.
9739 * rs6000-tdep.c:
9740 (read_insn): Move from ppc-linux-tdep.c to here.
9741 (insns_match_pattern, insn_d_field, insn_ds_field): Move
9742 from ppc-linux-tdep.c to here and rename them with the ppc_ prefix.
9743 * ppc-linux-tdep.c: Include ppc64-tdep.h.
9744 Removed above functions.
9745 (ppc_linux_init_abi): Adjust.
9746
9747 2013-02-01 Aleksandar Ristovski <aristovski@qnx.com>
9748
9749 * ada-valprint.c (ada_print_floating): Remove unused 'len'.
9750
9751 2013-02-01 Aleksandar Ristovski <aristovski@qnx.com>
9752
9753 * ada-lang.c (assign_aggregate): Remove unused 'is_array_aggregate'.
9754
9755 2013-02-01 Pedro Alves <palves@redhat.com>
9756
9757 * dummy-frame.c (deprecated_pc_in_call_dummy): Delete function.
9758 * frame.h (deprecated_pc_in_call_dummy): Delete declaration.
9759
9760 2013-02-01 Jan Kratochvil <jan.kratochvil@redhat.com>
9761
9762 * elfread.c (elf_symfile_read): Limit separate debug info additions to
9763 files with no separate debug info.
9764 * objfiles.c (add_separate_debug_objfile): Add gdb_assert calls.
9765 * symfile.c (read_symbols): Call find_separate_debug_file_in_section
9766 only for files with no separate debug info.
9767
9768 2013-01-31 Tom Tromey <tromey@redhat.com>
9769
9770 * jit.c (jit_program_space_data): Rename from jit_inferior_data;
9771 change type.
9772 (struct jit_program_space_data): Rename from jit_inferior_data.
9773 Update comments.
9774 (get_jit_program_space_data): Rename from get_jit_inferior_data.
9775 Change return type. Attach data to program space.
9776 (jit_program_space_data_cleanup): Rename from
9777 jit_inferior_data_cleanup; change argument type.
9778 (jit_read_descriptor): Change 'inf_data' argument to 'ps_data',
9779 change type.
9780 (jit_register_code): Update.
9781 (jit_update_inferior_cache): Remove.
9782 (jit_breakpoint_deleted): Get jit data from the location's program
9783 space.
9784 (jit_breakpoint_re_set_internal): Rename 'inf_data' argument to
9785 'ps_data', change type.
9786 (jit_inferior_init, jit_breakpoint_re_set_internal)
9787 (jit_event_handler): Update.
9788 (free_objfile_data): Get data from objfile's program space.
9789 (_initialize_jit): Update.
9790
9791 2013-01-31 Tom Tromey <tromey@redhat.com>
9792
9793 PR gdb/13987:
9794 * jit.c (struct jit_inferior_data) <cached_code_address,
9795 jit_breakpoint>: New fields.
9796 (jit_breakpoint_re_set_internal): Fix logging. Only create
9797 breakpoint if cached address has changed.
9798 (jit_update_inferior_cache, jit_breakpoint_deleted): New
9799 functions.
9800 (_initialize_jit): Register breakpoint deleted observer.
9801
9802 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
9803
9804 * infrun.c (handle_syscall_event): Remove unused gdbarch.
9805 (save_infcall_suspend_state): Ifdef out unused inf.
9806 (restore_infcall_suspend_state): Ifdef out unused inf.
9807 * jit.c (jit_register_code): Remove unused i, b, inf_data.
9808 (jit_frame_sniffer): Remove unused inf_data.
9809
9810 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
9811
9812 * c-exp.y (classify_inner_name): Remove unused type.
9813 * c-lang.c (c_printstr): Remove unused byte_order, i, things_printed,
9814 in_quotes, need_comma, wchar_buf, output, cleanup, iter, finished,
9815 need_escape.
9816 (c_get_string): Remove unused kind.
9817 * c-typeprint.c (c_type_print_args): Remove unused i, len, args, table2.
9818
9819 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
9820
9821 * charset.c (intermediate_encoding): Remove unused i.
9822 * completer.c (signal_completer): Remove unused i.
9823 * continuations.c (discard_my_continuations_1): Remove unused
9824 continuation_ptr.
9825 * corelow.c (core_close): Remove unuseD name.
9826 (get_core_siginfo): Remove unused pid.
9827 * cp-namespace.c (cp_lookup_symbol_imports_or_template): Remove unused
9828 i, cps.
9829 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Remove unused base_offset.
9830 (loclist_describe_location): Remove unused first.
9831 * event-top.c (command_line_handler): Remove unused got_eof.
9832 * exec.c (exec_close_1): Remove unused need_symtab_cleanup.
9833 (resize_section_table): Remove unused old_value.
9834 * gdb_bfd.c (gdb_bfd_map_section): Remove unused header.
9835 * gnu-v3-abi.c (compute_vtable_size): Remove unused addr.
9836 * i386-tdep.c (i386_process_record): Remove unused rex.
9837 * infcmd.c (get_return_value): Remove unused uiout.
9838 * jv-lang.c (type_from_class): Remove unused is_array.
9839 * jv-valprint.c (java_val_print): Remove unused i.
9840 * linux-nat.c (linux_nat_stop_lwp): Remove unused ptid.
9841 * linux-thread-db.c (thread_db_find_new_threads_2): Remove unuseD pid.
9842 * m2-typeprint.c (m2_print_type): Remove unused code.
9843 * macroexp.c (get_character_constant): Remove unused body_start.
9844 (macro_stringify): Remove unused result.
9845 * objc-lang.c (find_methods): Remove unused gdbarch.
9846 * objfiles.c (filter_overlapping_sections): Remove unused abfd1, abfd2.
9847 * regcache.c (regcache_cooked_read): Remove unused gdbarch.
9848 * stack.c (print_frame_args): Remove unused summary.
9849 * thread.c (thread_apply_command): Remove unused p.
9850 * valarith.c (value_x_unop): Remove unused mangle_ptr.
9851 * valops.c (search_struct_method): Remove unused skip.
9852 * valprint.c (generic_val_print): Remove unused byte_order.
9853 * varobj.c (varobj_update): Remove unused changed.
9854 * cli/cli-cmds.c (complete_command): Remove unused next_item.
9855 (alias_command): Remove unused c.
9856 * mi/mi-cmd-catch.c (mi_catch_load_unload): Remove unused c.
9857 * mi/mi-main.c (mi_cmd_data_write_register_values): Remove unused
9858 format.
9859 (mi_cmd_data_write_memory): Remove unused word_format.
9860 (mi_cmd_data_write_memory_bytes): Remove unused r.
9861 * python/py-gdb-readline.c (gdbpy_readline_wrapper): Remove unused
9862 p_start, p_end.
9863 * python/python.c (_initialize_python): Remove unused cmd_name, cmd.
9864 * tui/tui-disasm.c (tui_set_disassem_content): Remove unused
9865 line_width.
9866
9867 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
9868
9869 * dwarf2-frame.c (dwarf2_compile_cfa_to_ax): Remove unused num_regs.
9870 * symtab.c (iterate_over_symtabs): Remove unused s.
9871 (find_pc_sect_symtab): Remove unused pspAce.
9872 (find_pc_sect_line): Remove unused alt_symtab.
9873 (find_pcs_for_symtab_line): Remove unused ix, previous_function.
9874 (completion_list_add_name): Remove unused newsize.
9875
9876 2013-01-31 Tom Tromey <tromey@redhat.com>
9877
9878 PR c++/14998:
9879 * dwarf2read.c (read_tag_ptr_to_member_type): Handle
9880 TYPE_CODE_FUNC.
9881
9882 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
9883
9884 * target.c (target_read_string): Remove unused origlen.
9885
9886 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
9887
9888 * auto-load.c (auto_load_expand_dir_vars): Remove unused dir_vec.
9889 * ax-gdb.c (gen_printf): Remove unused expr, i, bot, fr, flen, fmt.
9890 * ax-general.c (ax_print): Remove unused is_float.
9891 * blockframe.c (block_innermost_frame): Remove unused start, end.
9892 * break-catch-sig.c (catch_signal_command): Remove unused gdbarch.
9893
9894 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
9895
9896 * solib-svr4.c (svr4_keep_data_in_core): Remove unused lmo.
9897 (svr4_read_so_list): Remove unused lmo.
9898 * solib-target.c (solib_target_relocate_section_addresses): Remove
9899 unused flags.
9900
9901 2013-01-30 Tom Tromey <tromey@redhat.com>
9902
9903 * hppa-tdep.c (read_unwind_info): Use SECT_OFF_TEXT, not "0".
9904
9905 2013-01-30 Tom Tromey <tromey@redhat.com>
9906
9907 * symfile.c (get_file_crc): Use bfd_calc_gnu_debuglink_crc32.
9908 * utils.c (gnu_debuglink_crc32): Remove.
9909 * utils.h (gnu_debuglink_crc32): Don't declare.
9910
9911 2013-01-30 Tom Tromey <tromey@redhat.com>
9912
9913 * dwarf2read.c (compute_delayed_physnames, read_call_site_scope)
9914 (read_structure_type, read_enumeration_type): Remove cast.
9915
9916 2013-01-30 Tom Tromey <tromey@redhat.com>
9917
9918 * dwarf2read.c (read_namespace_type): Remove cast.
9919 (read_typedef): Likewise.
9920
9921 2013-01-29 Tom Tromey <tromey@redhat.com>
9922
9923 * dwarf2read.c (free_dwo_file): Remove assert.
9924
9925 2013-01-29 Tom Tromey <tromey@redhat.com>
9926
9927 * value.c (deprecated_set_value_modifiable): Remove.
9928 * value.h (deprecated_set_value_modifiable): Remove.
9929
9930 2013-01-28 Doug Evans <dje@google.com>
9931
9932 * dwarf2loc.c (dwarf2_find_location_expression): Don't add base address
9933 to addresses from dwo files.
9934
9935 2013-01-25 Siva Chandra Reddy <sivachandra@google.com>
9936
9937 * valops.c (find_overload_match): Remove unused argument 'lax'.
9938 * value.h: Remove unused argument 'lax' from the declaration of
9939 find_overload_match.
9940 * eval.c (value_subexp_standard): Do not pass a 'lax' argument
9941 to find_overload_match.
9942 * valarith.c (value_user_defined_cpp_op): Do not pass a 'lax'
9943 argument to find_overload_match.
9944
9945 2013-01-25 Tom Tromey <tromey@redhat.com>
9946
9947 * dwarf2read.c (processing_has_namespace_info): Remove.
9948 (struct dwarf2_cu) <processing_has_namespace_info>: New field.
9949 (process_die, read_func_scope, dwarf2_start_symtab)
9950 (new_symbol_full): Update.
9951
9952 2013-01-25 Tom Tromey <tromey@redhat.com>
9953
9954 * cp-namespace.c (cp_set_block_scope): Remove.
9955 * cp-support.h (cp_set_block_scope): Remove.
9956 * dbxread.c: Include block.h.
9957 (cp_set_block_scope): New function.
9958 (process_one_symbol): Update.
9959 * dwarf2read.c (read_func_scope): Use block_set_scope.
9960
9961 2013-01-25 Pedro Alves <palves@redhat.com>
9962
9963 * remote.c (add_current_inferior_and_thread): Tweak comment.
9964
9965 2013-01-25 Tom Tromey <tromey@redhat.com>
9966
9967 * cp-namespace.c (cp_scan_for_anonymous_namespaces): Update.
9968 (cp_add_using_directive): Add 'copy_names' argument.
9969 * cp-support.h (cp_add_using_directive): Update.
9970 (struct using_direct) <import_src, import_dest, alias,
9971 declaration>: Now const.
9972 * dwarf2read.c (read_import_statement): Use obconcat.
9973 Don't copy names passed to cp_add_using_directive.
9974
9975 2013-01-25 Tom Tromey <tromey@redhat.com>
9976
9977 * c-exp.y (qualified_name): Use TYPE_SAFE_NAME.
9978
9979 2013-01-25 Pedro Alves <palves@redhat.com>
9980
9981 * remote.c (stop_reply_extract_thread): New.
9982 (add_current_inferior_and_thread): New parameter 'wait_status'.
9983 Handle it.
9984 (remote_start_remote): Pass wait status to
9985 add_current_inferior_and_thread.
9986 (extended_remote_run): Update comment.
9987 (extended_remote_create_inferior_1): Pass wait status to
9988 add_current_inferior_and_thread.
9989
9990 2013-01-25 Andrew Burgess <aburgess@broadcom.com>
9991 Ulrich Weigand <uweigand@de.ibm.com>
9992
9993 * valarith.c (value_vector_widen): New function for replicating a
9994 scalar into a vector.
9995 (value_binop): Use value_vector_widen to widen scalar to vector
9996 rather than casting, this better matches gcc C behaviour.
9997 * valops.c (value_casst): Update logic for casting between vector
9998 types, and for casting from scalar to vector, try to match gcc C
9999 behaviour.
10000 * value.h (value_vector_widen): Declare.
10001 * opencl-lang.c (opencl_value_cast): New opencl specific casting
10002 function, handle special case for casting scalar to vector.
10003 (opencl_relop): Use opencl_value_cast.
10004 (evaluate_subexp_opencl): Use opencl_value_cast instead of
10005 value_cast, and handle BINOP_ASSIGN, UNOP_CAST, and UNOP_CAST_TYPE
10006 in order to use opencl_value_cast.
10007
10008 2013-01-25 Yao Qi <yao@codesourcery.com>
10009
10010 * event-loop.c: Include "queue.h".
10011 (gdb_event_p): New typedef.
10012 (DECLARE_QUEUE_P): Use.
10013 (DEFINE_QUEUE_P): Use.
10014 (async_queue_event): Remove.
10015 (gdb_event_xfree): New.
10016 (initialize_event_loop): New.
10017 (process_event): Use QUEUE macros.
10018 (event_queue): Remove.
10019 (gdb_wait_for_event): Caller update.
10020 (check_async_event_handlers): Likewise.
10021 (poll_timers): Likewise.
10022 * event-loop.h (initialize_event_loop): Declare.
10023 * event-loop.c (gdb_event_xfree): New.
10024 * top.c (gdb_init): Call initialize_event_loop.
10025
10026 2013-01-25 Yao Qi <yao@codesourcery.com>
10027
10028 * event-loop.c (async_queue_event): Remove one parameter
10029 'position'. Remove code handling 'position' == TAIL.
10030 (gdb_wait_for_event): Caller update.
10031 (check_async_event_handlers): Caller update.
10032 (poll_timers): Caller update.
10033 * event-loop.h (enum queue_position): Remove.
10034
10035 2013-01-25 Maxim Kuvyrkov <maxim@kugelworks.com>
10036
10037 * MAINTAINERS: Update my email.
10038
10039 2013-01-25 Yao Qi <yao@codesourcery.com>
10040
10041 * main.c (print_gdb_help): Remove "--epoch" from the help
10042 message.
10043
10044 2013-01-24 Ulrich Weigand  <uweigand@de.ibm.com>
10045
10046 * symtab.c (skip_prologue_using_sal): Consider a file
10047 change the same as an increased line number
10048
10049 2013-01-24 Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
10050
10051 * MAINTAINERS (Write After Approval): Add myself to the list.
10052
10053 2013-01-24 Tom Tromey <tromey@redhat.com>
10054
10055 * ada-lang.h (ada_decode_symbol): Make return type const.
10056 * ada-lang.c (ada_decode_symbol): Likewise.
10057
10058 2013-01-23 Doug Evans <dje@google.com>
10059
10060 * linespec.c (find_linespec_symbols): Make static.
10061
10062 2013-01-23 Tiago Stürmer Daitx <tdaitx@linux.vnet.ibm.com>
10063
10064 * ppc-sysv-tdep.c (ppc64_sysv_abi_return_value): Set correct
10065 type on float conversion for complex type.
10066
10067 2013-01-23 Siva Chandra Reddy <sivachandra@google.com>
10068
10069 Add a new class gdb.Architecture which exposes GDB's
10070 internal representation of architecture via GDB Python API.
10071 * Makefile.in: Add entries corresponding to the new file
10072 python/py-arch.c.
10073 * NEWS (Python Scripting): Add entries for the new class
10074 gdb.Architecture and the new method gdb.Frame.architecture.
10075 * python/py-arch.c: Implement gdb.Architecture class.
10076 * python/py-frame.c (frapy_arch): Implement the method
10077 gdb.Frame.architecture().
10078 (frame_object_methods): Add 'architecture' to the method table.
10079 * python/python-internal.h: Add declarations of new utility
10080 functions.
10081 * python/python.c (_initialize_python): Initialize
10082 gdb.Architecture class.
10083
10084 2013-01-23 Doug Evans <dje@google.com>
10085
10086 Work around binutils/15021.
10087 * dwarf2read.c (dwarf2_per_cu_data): Split imported_symtabs and
10088 type_unit_group out of union s. All uses updated.
10089 (read_index_from_section): Watch for index version 8.
10090 (follow_die_sig): If using .gdb_index version <= 7, record the TU as
10091 an imported symtab.
10092 (write_psymtabs_to_index): Increment version number to 8.
10093
10094 2013-01-22 Pedro Alves <palves@redhat.com>
10095
10096 * annotate.c (breakpoint_changed): Skip if breakpoint is not
10097 user-visible.
10098
10099 2013-01-22 Pedro Alves <palves@redhat.com>
10100
10101 * annotate.c (annotate_breakpoints_changed): Rename to ...
10102 (annotate_breakpoints_invalid): ... this. Make static.
10103 (breakpoint_changed): Adjust.
10104 (_initialize_annotate): Always install the observers. Install a
10105 "breakpoint_created" observer.
10106 * annotate.h (annotate_breakpoints_changed): Delete declaration.
10107 * breakpoint.c (set_breakpoint_condition)
10108 (breakpoint_set_commands, do_map_commands_command)
10109 (init_raw_breakpoint, clear_command, set_ignore_count)
10110 (enable_breakpoint_disp): No longer call
10111 annotate_breakpoints_changed.
10112
10113 2013-01-22 Pedro Alves <palves@redhat.com>
10114
10115 * annotate.c: Include "inferior.h".
10116 (frames_invalid_emitted)
10117 (breakpoints_invalid_emitted): New globals.
10118 (async_background_execution_p): New function.
10119 (annotate_breakpoints_changed, annotate_frames_invalid): Skip
10120 emitting the annotation if it has already been emitted.
10121 (annotate_display_prompt): New function.
10122 * annotate.h (annotate_display_prompt): New declaration.
10123 * event-top.c: Include annotate.h.
10124 (display_gdb_prompt): Call annotate_display_prompt.
10125
10126 2013-01-22 Pedro Alves <palves@redhat.com>
10127
10128 * annotate.c (ignore_count_changed): Delete.
10129 (annotate_breakpoints_changed): Don't clear ignore_count_changed.
10130 (annotate_ignore_count_change): Delete.
10131 (annotate_stopped): Don't emit a delayed breakpoints-changed
10132 annotation.
10133 * annotate.h (annotate_ignore_count_change): Delete.
10134 * breakpoint.c (bpstat_check_breakpoint_conditions): Don't call
10135 annotate_ignore_count_change.
10136
10137 2013-01-22 Tom Tromey <tromey@redhat.com>
10138
10139 * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>: Only
10140 require_rvalue for a register location.
10141
10142 2013-01-21 Marc Khouzam <marc.khouzam@ericsson.com>
10143
10144 * breakpoint.c (print_one_breakpoint_location): Add MI
10145 field 'thread-groups' when printing a breakpoint.
10146 (output_thread_groups): New function.
10147
10148 2013-01-21 Siva Chandra Reddy <sivachandra@google.com>
10149
10150 * python/lib/gdb/commands/explore.py
10151 (CompoundExplorer.explore_expr): Correct the name of a method
10152 being invoked.
10153 (ExploreTypeCommand.invoke): Add a missing 'return'.
10154
10155 2013-01-21 Tom Tromey <tromey@redhat.com>
10156
10157 * gdb_obstack.h (obconcat): Move declaration here, from...
10158 * symfile.h (obconcat): ... here.
10159 * gdb_obstack.c: New file.
10160 (obconcat): Move from...
10161 * symfile.c (obconcat): ... here.
10162 * Makefile.in (SFILES): Add gdb_obstack.c.
10163 (COMMON_OBS): Add gdb_obstack.o.
10164
10165 2013-01-21 Tom Tromey <tromey@redhat.com>
10166
10167 * symfile.h (obsavestring): Don't declare.
10168 * symfile.c (obsavestring): Remove.
10169 * ada-exp.y: Use obstack_copy0, not obsavestring.
10170 * ada-lang.c: Use obstack_copy0, not obsavestring.
10171 * coffread.c: Use obstack_copy0, not obsavestring.
10172 * cp-namespace.c: Use obstack_copy0, not obsavestring.
10173 * dbxread.c: Use obstack_copy0, not obsavestring.
10174 * dwarf2read.c: Use obstack_copy0, not obsavestring.
10175 * jit.c: Use obstack_copy0, not obsavestring.
10176 * mdebugread.c: Use obstack_copy0, not obsavestring.
10177 * psymtab.c: Use obstack_copy0, not obsavestring.
10178 * stabsread.c: Use obstack_copy0, not obsavestring.
10179 * xcoffread.c: Use obstack_copy0, not obsavestring.
10180
10181 2013-01-21 Tom Tromey <tromey@redhat.com>
10182
10183 * dwarf2read.c (fixup_go_packaging): Save package name
10184 on objfile obstack.
10185 * gdbtypes.c (init_type): Don't copy name.
10186
10187 2013-01-21 Tom Tromey <tromey@redhat.com>
10188
10189 * dwarf2read.c (struct partial_die_info) <name, scope>: Now
10190 const.
10191 (struct attribute) <u.str>: Now const.
10192 (struct fnfieldlist) <name>: Now const.
10193 (dw2_get_file_names_reader, init_cutu_and_read_dies): Update.
10194 (partial_die_parent_scope): Make return type const.
10195 (partial_die_full_name, add_partial_symbol): Update.
10196 (dwarf2_compute_name, dwarf2_full_name, dwarf2_physname): Make
10197 'name' const.
10198 (find_file_and_directory): Make 'name' and 'comp_dir' const.
10199 (read_file_scope, read_func_scope, dwarf2_add_field)
10200 (dwarf2_add_member_fn, read_structure_type)
10201 (process_enumeration_scope, read_array_type, read_module_type)
10202 (read_base_type, read_subrange_type): Update.
10203 (dwarf2_start_symtab): Make 'name' and 'comp_dir' const.
10204 (new_symbol_full, guess_full_die_structure_name): Update.
10205 (dwarf2_canonicalize_name): Return const type. Make 'name' const.
10206 (dwarf2_name): Return const type.
10207 (dwarf_decode_macro_bytes, dwarf_decode_macros): Make 'comp_dir'
10208 const.
10209
10210 2013-01-21 Tom Tromey <tromey@redhat.com>
10211
10212 * gdbtypes.c (init_type): Make 'name' const.
10213 * gdbtypes.h (init_type): Update.
10214
10215 2013-01-21 Tom Tromey <tromey@redhat.com>
10216
10217 * buildsym.c (patch_subfile_names): Use set_last_source_file.
10218 (start_symtab): Make 'name' and 'dirname' const. Use
10219 set_last_source_file.
10220 (restart_symtab, reset_symtab_globals): Use set_last_source_file.
10221 (last_source_file): Define. Now static.
10222 (set_last_source_file, get_last_source_file): New functions.
10223 * buildsym.h (last_source_file): Don't declare.
10224 (start_symtab): Update.
10225 (set_last_source_file, get_last_source_file): Declare.
10226 * coffread.c (complete_symtab): Use set_last_source_file.
10227 (coff_end_symtab): Likewise.
10228 (coff_symtab_read): Use set_last_source_file, get_last_source_file.
10229 * dbxread.c (read_dbx_symtab, read_ofile_symtab): Use
10230 set_last_source_file.
10231 (process_one_symbol): Use get_last_source_file.
10232 * mdebugread.c (parse_partial_symbols): Use set_last_source_file.
10233 (psymtab_to_symtab_1): Use get_last_source_file.
10234 * xcoffread.c (process_linenos): Use get_last_source_file.
10235 (complete_symtab): Use set_last_source_file.
10236 (read_xcoff_symtab): Use set_last_source_file, get_last_source_file.
10237 (scan_xcoff_symtab): Use set_last_source_file.
10238
10239 2013-01-21 Tom Tromey <tromey@redhat.com>
10240
10241 * symtab.c (struct demangled_name_entry) <mangled>: Now const.
10242 (symbol_set_names): Remove casts. Handle field const-ness.
10243
10244 2013-01-21 Tom Tromey <tromey@redhat.com>
10245
10246 * dwarf2read.c (new_symbol_full): Remove cast.
10247 * symtab.c (symbol_set_demangled_name): Make 'name' const.
10248 * symtab.h (symbol_set_demangled_name): Update.
10249
10250 2013-01-21 Tom Tromey <tromey@redhat.com>
10251
10252 * main.c (captured_main): Call bfd_init.
10253
10254 2013-01-21 Tom Tromey <tromey@redhat.com>
10255
10256 * gnu-v2-abi.c (_initialize_gnu_v2_abi): Don't set default ABI.
10257 * gnu-v3-abi.c (_initialize_gnu_v3_abi): Set default ABI.
10258 * minsyms.c (install_minimal_symbols): Don't check for _Z symbols.
10259 * NEWS: Update.
10260
10261 2013-01-21 Jan Kratochvil <jan.kratochvil@redhat.com>
10262
10263 * symmisc.c (maintenance_print_msymbols): Check also ST_DEV.
10264
10265 2013-01-21 Jan Kratochvil <jan.kratochvil@redhat.com>
10266
10267 Fix gdb.fortran/common-block.exp crash in PIE mode.
10268 * dwarf2read.c (new_symbol_full) <DW_TAG_common_block>: Use
10269 LOC_COMMON_BLOCK.
10270 * f-valprint.c (info_common_command_for_block): Expect
10271 LOC_COMMON_BLOCK in gdb_assert.
10272 * symtab.h (struct general_symbol_info): Update comment for the
10273 common_block member.
10274 (domain_enum): Extend comment for the COMMON_BLOCK_DOMAIN member.
10275 (enum address_class): New member LOC_COMMON_BLOCK.
10276
10277 2013-01-18 David Blaikie <dblaikie@gmail.com>
10278
10279 * MAINTAINERS (Write After Approval): Add "David Blaikie".
10280
10281 2013-01-18 Tom Tromey <tromey@redhat.com>
10282
10283 PR c++/14999:
10284 * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>:
10285 Call require_rvalue.
10286
10287 2013-01-18 Yao Qi <yao@codesourcery.com>
10288
10289 * dbxread.c (dbx_psymtab_to_symtab): Delete the declaration.
10290 (dbx_read_symtab): New declaration.
10291 (dbx_psymtab_to_symtab): Delete.
10292 (dbx_read_symtab): Rename from dbx_psymtab_to_symtab.
10293 Rename parameter PST to SELF. Exchanged two parameters.
10294 (start_psymtab): Caller update.
10295 * dwarf2read.c (dwarf2_psymtab_to_symtab): Delete the declaration.
10296 (dwarf2_read_symtab): New declaration.
10297 (dwarf2_psymtab_to_symtab): Delete.
10298 (dwarf2_read_symtab): Rename from dwarf2_psymtab_to_symtab.
10299 Rename parameter PST to SELF. Exchanged two parameters.
10300 (create_partial_symtab): Caller update.
10301 * mdebugread.c (mdebug_psymtab_to_symtab): Delete.
10302 (mdebug_read_symtab): Rename from mdebug_psymtab_to_symtab.
10303 Rename parameter PST to SELF. Exchanged two parameters.
10304 (parse_partial_symbols, new_psymtab): Caller update.
10305 * psympriv.h (struct partial_symtab) <read_symtab>: Exchange
10306 two parameters.
10307 * psymtab.c (psymtab_to_symtab): Caller update.
10308 * xcoffread.c (xcoff_psymtab_to_symtab): Delete.
10309 (xcoff_read_symtab): Rename from xcoff_psymtab_to_symtab.
10310 Rename parameter PST to SELF. Exchanged two parameters.
10311 (xcoff_start_psymtab): Caller update.
10312
10313 2013-01-18 Yao Qi <yao@codesourcery.com>
10314
10315 * infrun.c (proceed): Rename local variable 'oneproc' to
10316 'force_step'.
10317
10318 2013-01-17 Doug Evans <dje@google.com>
10319
10320 * dwarf2read.c (dw2_build_type_unit_groups_reader): Delete.
10321 (dw2_build_type_unit_groups): Delete. All uses updated.
10322
10323 * symtab.h (struct symbol_search): Add comment.
10324
10325 2013-01-17 Jan Kratochvil <jan.kratochvil@redhat.com>
10326
10327 * symtab.c (compare_filenames_for_search): New comment for
10328 HAS_DRIVE_SPEC.
10329
10330 2013-01-17 Tom Tromey <tromey@redhat.com>
10331
10332 * cp-abi.c (cp_abi_completer): Fix typo in assignment.
10333
10334 2013-01-17 Jan Kratochvil <jan.kratochvil@redhat.com>
10335
10336 * symtab.c (iterate_over_some_symtabs): New variable cleanups,
10337 initialize it by existing make_cleanup. Call new do_cleanups.
10338
10339 2013-01-17 Tom Tromey <tromey@redhat.com>
10340
10341 * cp-abi.c (cp_abi_completer): New function.
10342 (_initialize_cp_abi): Set completer for "set cp-abi".
10343
10344 2013-01-17 Tom Tromey <tromey@redhat.com>
10345
10346 * mem-break.c: Remove obsolete comment.
10347 * bfin-tdep.c (bfin_breakpoint_from_pc): Fix comment.
10348
10349 2012-01-17 Sanjoy Das <sanjoy@playingwithpointers.com>
10350
10351 * jit.c (jit_reader_load_command): Interpret the jit reader name
10352 as an absolute path if it begins with a forward slash.
10353
10354 2012-01-17 Sanjoy Das <sanjoy@playingwithpointers.com>
10355
10356 PR gdb/14550
10357
10358 * jit.c (finalize_symtab): Ensure that only the global block has a
10359 NULL superblock.
10360
10361 2013-01-17 Pedro Alves <palves@redhat.com>
10362
10363 * acinclude.m4: Include ../config/plugins.m4,
10364 ../config/largefile.m4 and ../config/lead-dot.m4. Add comments.
10365 * Makefile.in (aclocal_m4_deps): Update.
10366 * aclocal.m4: Renegerate.
10367
10368 2013-01-16 Doug Evans <dje@google.com>
10369
10370 * contrib/cc-with-tweaks.sh: Add references to Fission docs.
10371
10372 2013-01-16 Pedro Alves <palves@redhat.com>
10373 Tom Tromey <tromey@redhat.com>
10374
10375 PR cli/7221:
10376 * NEWS: Add "catch signal".
10377 * breakpoint.c (base_breakpoint_ops): No longer static.
10378 (bpstat_explains_signal): New function.
10379 (init_catchpoint): No longer static.
10380 (base_breakpoint_explains_signal): New function.
10381 (base_breakpoint_ops): Initialize new field.
10382 * breakpoint.h (enum bpstat_signal_value): New.
10383 (struct breakpoint_ops) <explains_signal>: New field.
10384 (bpstat_explains_signal): Remove macro, declare as function.
10385 (base_breakpoint_ops, init_catchpoint): Declare.
10386 * break-catch-sig.c: New file.
10387 * inferior.h (signal_catch_update): Declare.
10388 * infrun.c (signal_catch): New global.
10389 (handle_syscall_event): Update for change to
10390 bpstat_explains_signal.
10391 (handle_inferior_event): Likewise. Always handle random signals
10392 via bpstats.
10393 (signal_cache_update): Check signal_catch.
10394 (signal_catch_update): New function.
10395 (_initialize_infrun): Initialize signal_catch.
10396 * Makefile.in (SFILES): Add break-catch-sig.c.
10397 (COMMON_OBS): Add break-catch-sig.o.
10398
10399 2013-01-16 Tom Tromey <tromey@redhat.com>
10400
10401 * breakpoint.c (print_one_catch_fork, print_one_catch_vfork)
10402 (print_one_catch_solib, print_one_catch_syscall)
10403 (print_one_catch_exec, print_one_exception_catchpoint): Emit
10404 "catch-type".
10405
10406 2013-01-16 Yao Qi <yao@codesourcery.com>
10407
10408 * printcmd.c (current_display_number): Make it static.
10409
10410 2013-01-16 Yao Qi <yao@codesourcery.com>
10411
10412 * infcmd.c (step_once): Don't check '!single_inst' as it was
10413 checked before.
10414
10415 2013-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
10416
10417 * dwarf2read.c (psymtab_include_file_name): Extend the function comment.
10418
10419 2013-01-14 Tom Tromey <tromey@redhat.com>
10420
10421 * cli/cli-decode.c (add_setshow_string_noescape_cmd): Return the
10422 set command.
10423 * command.h (add_setshow_string_noescape_cmd): Update.
10424 * corefile.c (set_gnutarget_command): Remove trailing whitespace.
10425 (complete_set_gnutarget): New function.
10426 (_initialize_core): Set the "set gnutarget" completer.
10427
10428 2013-01-14 Tom Tromey <tromey@redhat.com>
10429
10430 PR symtab/14442:
10431 * c-typeprint.c (cp_type_print_method_args): Handle 'restrict'.
10432 (c_type_print_modifier): Likewise.
10433 * dwarf2read.c (read_tag_restrict_type): New function.
10434 (read_type_die_1): Handle DW_TAG_restrict_type.
10435 * gdbtypes.c (make_restrict_type): New function.
10436 (recursive_dump_type): Handle TYPE_RESTRICT.
10437 * gdbtypes.h (enum type_flag_values): Renumber.
10438 (enum type_instance_flag_value): Add
10439 TYPE_INSTANCE_FLAG_RESTRICT.
10440 (TYPE_RESTRICT): New macro.
10441 (make_restrict_type): Declare.
10442
10443 2013-01-14 Tom Tromey <tromey@redhat.com>
10444
10445 PR symtab/14931:
10446 * psymtab.c (struct psymtab_state): New.
10447 (discard_psymtabs_upto, make_cleanup_discard_psymtabs): New
10448 functions.
10449 * psympriv.h (make_cleanup_discard_psymtabs): Declare.
10450 * dwarf2read.c (dwarf2_build_psymtabs): Catch exceptions.
10451
10452 2013-01-14 Richard Sharman <richard_sharman@mitel.com>
10453 Pedro Alves <palves@redhat.com>
10454
10455 PR remote/14786
10456
10457 * remote.c (remote_threads_info): Make a copy of the reply from
10458 qfThreadInfo and use that instead of rs->buf.
10459
10460 2013-01-14 Yao Qi <yao@codesourcery.com>
10461
10462 * dbxread.c (dbx_psymtab_to_symtab_1): Don't check PST is NULL.
10463 (dbx_psymtab_to_symtab): Likewise.
10464 * dwarf2read.c (dwarf2_psymtab_to_symtab): Likewise.
10465 * mdebugread.c (mdebug_psymtab_to_symtab): Likewise.
10466 * xcoffread.c (xcoff_psymtab_to_symtab_1): Likewise.
10467
10468 2013-01-13 Jan Kratochvil <jan.kratochvil@redhat.com>
10469
10470 * parse.c (parse_exp_in_context): New variable inner_chain. Call
10471 make_cleanup_restore_current_language. Call set_language. Move
10472 OLD_CHAIN and INNER_CHAIN cleanups.
10473 * utils.c (do_restore_current_language)
10474 (make_cleanup_restore_current_language): New functions.
10475 * utils.h (make_cleanup_restore_current_language): New declaration.
10476
10477 2013-01-13 Jan Kratochvil <jan.kratochvil@redhat.com>
10478
10479 * source.c (symtab_to_fullname): Apply rewrite_source_path also for
10480 non-existing files.
10481
10482 * source.c (symtab_to_fullname): Do not prepend DIRNAME for
10483 non-existing files if FILENAME is already absolute.
10484
10485 2013-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
10486
10487 * macrocmd.c (macro_inform_no_debuginfo): Use puts_filtered instead of
10488 fputs_filtered. Append trailing newline.
10489
10490 2013-01-11 Yao Qi <yao@codesourcery.com>
10491 Stan Shebs <stan@codesourcery.com>
10492
10493 * psymtab.c (init_psymbol_list): Clarify the comment.
10494
10495 2013-01-11 Yao Qi <yao@codesourcery.com>
10496
10497 * breakpoint.c (print_one_breakpoint_location): Remove dead code.
10498 (update_dprintf_command_list): Assert that 'printf_line' is
10499 non-null. Remove condition check.
10500
10501 2013-01-10 Jan Kratochvil <jan.kratochvil@redhat.com>
10502
10503 Code cleanup.
10504 * psymtab.c (psymtab_to_fullname, psymtab_to_fullname): Make the return
10505 type const char *.
10506 * tui/tui-source.c (tui_source_is_displayed): Make the parameter fname
10507 const char *.
10508 * tui/tui-source.h (tui_source_is_displayed): Likewise.
10509
10510 2013-01-09 Anthony Green <green@moxielogic.com>
10511
10512 * cp-abi.c (cplus_print_vtable): Don't return value from void
10513 function.
10514 * ada-lang.c (re_set_catch_assert): Ditto.
10515
10516 2013-01-09 Doug Evans <dje@google.com>
10517
10518 * symfile.h (quick_symbol_functions): Delete member
10519 pre_expand_symtabs_matching. All uses removed.
10520 * dwarf2read.c (dw2_lookup_symbol): Implement.
10521 (dw2_do_expand_symtabs_matching): Delete.
10522 (dw2_pre_expand_symtabs_matching): Delete.
10523 (struct dw2_symtab_iterator): New type.
10524 (dw2_symtab_iter_init, dw2_symtab_iter_next): New functions.
10525 (dw2_expand_symtabs_for_function): Rewrite.
10526 (dwarf2_gdb_index_functions): Update.
10527 * psymtab.c (pre_expand_symtabs_matching_psymtabs): Delete.
10528 (psym_functions): Update.
10529
10530 2013-01-09 Tom Tromey <tromey@redhat.com>
10531
10532 * config/pa/hpux.mh (NATDEPFILES): Remove somread.o.
10533 * configure: Rebuild.
10534 * configure.ac: Add somread.o to the build if BFD has SOM
10535 support.
10536 * somread.c: Include som/aout.h, not syms.h.
10537 (som_symtab_read): Use som_external_symbol_dictionary_record.
10538 Unpack records manually.
10539 (_initialize_somread): Declare.
10540
10541 2012-01-08 Mike Frysinger <vapier@gentoo.org>
10542
10543 * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx) [__x86_64__]:
10544 Cast return_address to 64bits.
10545
10546 2013-01-08 Hui Zhu <hui_zhu@mentor.com>
10547
10548 * printcmd.c: Remove define of function output_command.
10549 * tracepoint.c: Remove extern of function output_command.
10550 * valprint.h: (output_command): New extern.
10551
10552 2013-01-07 Tom Tromey <tromey@redhat.com>
10553
10554 * objc-lang.c (objc_emit_char, objc_printchar, objc_printstr):
10555 Remove.
10556 (objc_language_defn): Use c_printchar, c_printstr,
10557 c_emit_char.
10558
10559 2013-01-07 Tom Tromey <tromey@redhat.com>
10560
10561 PR cli/7719:
10562 * NEWS: Update.
10563 * ada-valprint.c (printstr, print_field_values): Remove
10564 "inspect_it" code.
10565 * cp-valprint.c (cp_print_value_fields): Remove "inspect_it"
10566 code.
10567 * jv-valprint.c (java_print_value_fields): Remove "inspect_it"
10568 code.
10569 * m2-lang.c (m2_printstr): Remove "inspect_it" code.
10570 * main.c (captured_main): Remove "epoch" argument.
10571 * objc-lang.c (objc_printstr): Remove "inspect_it" code.
10572 * p-lang.c (pascal_printstr): Remove "inspect_it" code.
10573 * p-valprint.c (pascal_object_print_value_fields): Remove
10574 "inspect_it" code.
10575 * printcmd.c (print_command_1): Remove 'inspect' argument.
10576 (print_command, call_command): Update.
10577 (inspect_command): Remove.
10578 (_initialize_printcmd): Make "inspect" an alias for "print".
10579 * top.c (epoch_interface): Remove.
10580 * top.h (epoch_interface): Remove.
10581 * valprint.c (user_print_options): Update.
10582 (print_converted_chars_to_obstack): Remove "inspect_it" code.
10583 * valprint.h (struct value_print_options) <inspect_it>: Remove
10584 field.
10585
10586 2013-01-04 Tom Tromey <tromey@redhat.com>
10587
10588 * valprint.h (read_string): Add 'extern'.
10589
10590 2013-01-07 Joel Brobecker <brobecker@adacore.com>
10591
10592 * darwin-nat.c: Fix typo in TASK_DYLD_INFO_COUNT macro test
10593 used to decide whether to define darwin_read_dyld_info or not.
10594
10595 2013-01-03 Pierre Muller <muller@sourceware.org>
10596
10597 * main.c (relocate_gdb_directory): Avoid calling stat function
10598 if DIR is empty.
10599
10600 2013-01-03 Yao Qi <yao@codesourcery.com>
10601
10602 * psymtab.c (fixup_psymbol_section): Update declaration.
10603 (fixup_psymbol_section): Remove code returning value.
10604
10605 2013-01-03 Yao Qi <yao@codesourcery.com>
10606
10607 * symtab.h: Remove some out of date comments.
10608 (enum exception_event_kind): Move it ...
10609 * breakpoint.c: ... here.
10610
10611 2013-01-02 Iain Sandoe <developer@sandoe-acoustics.co.uk>
10612
10613 PR gdb/14405
10614 * darwin-nat.c (darwin_read_dyld_info): Only build if
10615 TASK_DYLD_INFO_COUNT is defined.
10616 (darwin_xfer_partial): Call darwin_read_dyld_info only if
10617 TASK_DYLD_INFO_COUNT is defined.
10618
10619 2013-01-02 Tom Tromey <tromey@redhat.com>
10620
10621 * symfile.h (struct ecoff_debug_hack): Remove.
10622 * objfiles.c: Don't include mdebugread.h.
10623
10624 2013-01-02 Tom Tromey <tromey@redhat.com>
10625
10626 * config/i386/darwin.mh (NATDEPFILES): Remove machoread.o.
10627 * configure.ac: Check for Mach-O support in BFD. Update
10628 CONFIG_OBS.
10629 * configure: Rebuild.
10630
10631 2013-01-02 Tom Tromey <tromey@redhat.com>
10632
10633 * acinclude.m4 (GDB_AC_CHECK_BFD): New macro.
10634 * configure.ac: Use GDB_AC_CHECK_BFD.
10635 * configure: Rebuild.
10636
10637 2013-01-01 Maxim Kuvyrkov <maxim.kuvyrkov@gmail.com>
10638
10639 * MAINTAINERS: Update my email.
10640
10641 2013-01-01 Joel Brobecker <brobecker@adacore.com>
10642
10643 * cli/cli-script.h (make_cleanup_free_command_lines): Make extern.
10644
10645 2013-01-01 Joel Brobecker <brobecker@adacore.com>
10646
10647 * rs6000-nat.c (bss_data_overlap): New function.
10648 (vmap_symtab): Use it to adjust the .bss section's offset.
10649
10650 2013-01-01 Joel Brobecker <brobecker@adacore.com>
10651
10652 Update year range in copyright notice of all files.
10653
10654 2013-01-01, 13 Joel Brobecker <brobecker@adacore.com>
10655
10656 * top.c (print_gdb_version): Update copyright year.
10657
10658 For older changes see ChangeLog-2012.
10659 \f
10660 Local Variables:
10661 mode: change-log
10662 left-margin: 8
10663 fill-column: 74
10664 version-control: never
10665 coding: utf-8
10666 End:
This page took 0.343197 seconds and 4 git commands to generate.