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