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