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