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