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