* windows-nat.c (handle_output_debug_string): Change type of n to
[binutils-gdb.git] / gdb / ChangeLog
1 2013-03-19 Corinna Vinschen <vinschen@redhat.com>
2
3 * windows-nat.c (handle_output_debug_string): Change type of n to
4 SIZE_T to avoid crash on 64 bit systems.
5
6 2013-03-17 Eli Zaretskii <eliz@gnu.org>
7
8 * python/python-internal.h (HAVE_SNPRINTF)
9 [_WIN32 && HAVE_DECL_SNPRINTF]: Define, to avoid compiler warnings
10 about redefinition of snprintf by pyerrors.h.
11
12 2013-03-15 Steve Ellcey <sellcey@mips.com>
13
14 * remote-sim.c (sim_command_completer): Make char arguments const.
15
16 2013-03-15 Tom Tromey <tromey@redhat.com>
17
18 PR c++/15116:
19 * gdbtypes.c (types_equal): Handle TYPE_CODE_FUNC.
20
21 2013-03-14 Tom Tromey <tromey@redhat.com>
22
23 * gdb_bfd.c (struct gdb_bfd_data) <crc_computed, crc>:
24 New fields.
25 (get_file_crc): Move from symfile.c.
26 (gdb_bfd_crc): New function.
27 * gdb_bfd.h (gdb_bfd_crc): Declare.
28 * objfiles.h (struct objfile) <crc32, crc32_p>: Remove.
29 * symfile.c (get_file_crc): Move to gdb_bfd.c.
30 (separate_debug_file_exists): Use gdb_bfd_crc.
31
32 2013-03-14 Tom Tromey <tromey@redhat.com>
33
34 * symfile.c (get_debug_link_info): Remove.
35 (find_separate_debug_file_by_debuglink): Use
36 bfd_get_debug_link_info.
37
38 2013-03-14 Tom Tromey <tromey@redhat.com>
39
40 * symtab.c (error_in_psymtab_expansion): New function.
41 (lookup_symbol_aux_quick)
42 (basic_lookup_transparent_type_quick): Remove "last resort"
43 code. Use error_in_psymtab_expansion.
44
45 2013-03-14 Doug Evans <dje@google.com>
46 Jan Kratochvil <jan.kratochvil@redhat.com>
47
48 * dwarf2read.c (dw2_map_symtabs_matching_filename): Put continue after
49 any successful compare_filenames_for_search or FILENAME_CMP.
50 * psymtab.c (partial_map_symtabs_matching_filename): Likewise.
51 * symtab.c (iterate_over_some_symtabs): Likewise.
52
53 2013-03-14 Jan Kratochvil <jan.kratochvil@redhat.com>
54
55 * source.c (print_source_lines_base): Make a local copy of
56 symtab_to_fullname.
57
58 2013-03-14 Hui Zhu <hui_zhu@mentor.com>
59 Jan Kratochvil <jan.kratochvil@redhat.com>
60
61 * source.c (print_source_lines_base): Suppress "file" for TUI.
62
63 2013-03-14 Keith Seitz <keiths@redhat.com>
64 Alan Matsuoka <alanm@redhat.com>
65
66 PR c++/15203
67 PR c++/15210
68 * cp-namespace.c (cp_lookup_nested_symbol): Handle TYPE_CODE_FUNC and
69 TYPE_CODE_METHOD.
70 * elfread.c (elf_symtab_read): Handle BSF_GNU_UNIQUE for certain
71 symbols.
72
73 2013-03-14 Yao Qi <yao@codesourcery.com>
74
75 * tracepoint.c (tfile_write_status): Write 'stop_desc' of trace
76 status to tfile if trace is stopped by command 'tstop'.
77
78 2013-03-14 Yao Qi <yao@codesourcery.com>
79
80 * tracepoint.c (tfile_write_status): Write trace notes and user
81 name into tfile if they are not NULL.
82
83 2013-03-14 Hui Zhu <hui@codesourcery.com>
84 Yao Qi <yao@codesourcery.com>
85
86 * Makefile.in (REMOTE_OBS): Add ctf.o.
87 (SFILES): Add ctf.c.
88 (HFILES_NO_SRCDIR): Add ctf.h.
89 * ctf.c, ctf.h: New files.
90 * tracepoint.c: Include 'ctf.h'.
91 (collect_pseudocommand): Remove static.
92 (trace_save_command): Parse option "-ctf".
93 Produce different trace file writers per option.
94 Adjust output message.
95 (trace_save_tfile, trace_save_ctf): New.
96 * tracepoint.h (trace_save_tfile, trace_save_ctf): Declare.
97 * mi/mi-main.c: Include 'ctf.h'.
98 (mi_cmd_trace_save): Handle option '-ctf'. Call either
99 trace_save_tfile or trace_save_ctf.
100 * NEWS: Mention these changes.
101
102 2013-03-14 Yao Qi <yao@codesourcery.com>
103
104 * tracepoint.c (trace_file_writer_xfree): New.
105 (struct tfile_writer_data): New.
106 (tfile_dtor, tfile_can_target_save, tfile_start): New.
107 (tfile_write_header, tfile_write_regblock_type): New.
108 (tfile_write_status, tfile_write_uploaded_tsv): New.
109 (tfile_write_uploaded_tp, tfile_write_definition_end): New.
110 (tfile_write_raw_data, (tfile_end): New.
111 (tfile_write_ops): New global variable.
112 (TRACE_WRITE_R_BLOCK): New macro.
113 (TRACE_WRITE_M_BLOCK_HEADER): New macro.
114 (TRACE_WRITE_M_BLOCK_MEMORY): New macro.
115 (TRACE_WRITE_V_BLOCK): New macro.
116 (trace_save): Add extra one parameter WRITER. Make it static.
117 Use WRITER to writer trace.
118 (tfile_trace_file_writer_new): New.
119 (trace_save_command): Caller update.
120 (trace_save_tfile): Write trace data in TFILE format.
121 * tracepoint.h (struct trace_frame_write_ops): New.
122 (struct trace_file_write_ops): New.
123 (struct trace_file_writer): New.
124 (trace_save): Remove its declaration.
125 (trace_save_tfile): Declare it.
126 * mi/mi-main.c (mi_cmd_trace_save): Call trace_save_tfile
127 instead of trace_save.
128
129 2013-03-13 Pedro Alves <palves@redhat.com>
130
131 * hppa-hpux-nat.c (hppa_hpux_save_state_offset): Make static.
132
133 2013-03-13 Pedro Alves <palves@redhat.com>
134
135 * dbxread.c (read_ofile_symtab, process_one_symbol): Remove
136 commented out code.
137 * demangle.c (current_demangling_style_string): Make it const.
138 (set_demangling_command): Assert the demangling style is known.
139 Remove all handling of unknown styles. Set
140 'current_demangling_style_string' to an element of the
141 demangling_style_names array.
142 (set_demangling_style): Delete.
143 (_initialize_demangler): Set current_demangling_style_string to the
144 element of the demangling_style_names array that corresponds to
145 the default demangling style. Remove FIXME note. Don't call
146 set_demangling_style.
147 * gdb-demangle.h (set_demangling_style): Remove declaration.
148
149 2013-03-13 Pedro Alves <palves@redhat.com>
150
151 * ada-lang.c (struct add_partial_datum) <text, text0, word>: Make
152 fields const.
153 (ada_make_symbol_completion_list): Make "text0" parameter const.
154 * ax-gdb.c (agent_eval_command_one): Make "exp" parameter const.
155 * breakpoint.c (condition_completer): Make "text" and "word"
156 parameters const. Adjust.
157 (check_tracepoint_command): Adjust to validate_actionline
158 prototype change.
159 (catch_syscall_completer): Make "text" and "word" parameters
160 const.
161 * cli/cli-cmds.c (show_user): Make "comname" local const.
162 (valid_command_p): Make "command" parameter const.
163 (alias_command): Make "alias_prefix" and "command_prefix" locals
164 const.
165 * cli/cli-decode.c (add_cmd): Make "name" parameter const.
166 (add_alias_cmd): Make "name" and "oldname" parameters const.
167 Adjust. No longer make copy of OLDNAME.
168 (add_prefix_cmd, add_abbrev_prefix_cmd, add_set_or_show_cmd)
169 (add_setshow_cmd_full, add_setshow_enum_cmd)
170 (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
171 (add_setshow_filename_cmd, add_setshow_string_cmd)
172 (add_setshow_string_noescape_cmd)
173 (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
174 (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
175 (add_setshow_zuinteger_unlimited_cmd, add_setshow_zuinteger_cmd)
176 (delete_cmd, add_info, add_info_alias, add_com, add_com_alias):
177 Make "name" parameter const.
178 (help_cmd): Rename "command" parameter to "arg". New const local
179 "command".
180 (find_cmd): Make "command" parameter const.
181 (lookup_cmd_1): Make "text" parameter pointer to const. Adjust to
182 deprecated_cmd_warning prototype change.
183 (undef_cmd_error): Make "cmdtype" parameter const.
184 (lookup_cmd): Make "line" parameter const.
185 (deprecated_cmd_warning): Change type of "text" parameter to
186 pointer to const char, from pointer to pointer to char. Adjust.
187 (lookup_cmd_composition): Make "text" parameter const.
188 (complete_on_cmdlist, complete_on_enum): Make "text" and "word"
189 parameters const.
190 * cli/cli-decode.h (struct cmd_list_element) <name>: Make field
191 const.
192 * cli/cli-script.c (validate_comname): Make "tem" local const.
193 (define_command): New const local "tem_c". Use it in calls to
194 lookup_cmd.
195 (document_command): Make "tem" and "comfull" locals const.
196 (show_user_1): Make "prefix" and "name" parameters const.
197 * cli-script.h (show_user_1): Make "prefix" and "name" parameters
198 const.
199 * command.h (add_cmd, add_alias_cmd, add_prefix_cmd)
200 (add_abbrev_prefix_cmd, completer_ftype, lookup_cmd, lookup_cmd_1)
201 (deprecated_cmd_warning, lookup_cmd_composition, add_com)
202 (add_com_alias, add_info, add_info_alias, complete_on_cmdlist)
203 (complete_on_enum, add_setshow_enum_cmd)
204 (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
205 (add_setshow_filename_cmd, add_setshow_string_cmd)
206 (add_setshow_string_noescape_cmd)
207 (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
208 (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
209 (add_setshow_zuinteger_cmd, add_setshow_zuinteger_unlimited_cmd):
210 Change prototypes, constifying strings.
211 * completer.c (noop_completer, filename_completer): Make "text"
212 and "prefix" parameters const.
213 (location_completer, expression_completer)
214 (complete_line_internal): Make "text" and "prefix" parameters
215 const and adjust.
216 (command_completer, signal_completer): Make "text" and "prefix"
217 parameters const.
218 * completer.h (noop_completer, filename_completer)
219 (expression_completer, location_completer, command_completer)
220 (signal_completer): Change prototypes.
221 * corefile.c (complete_set_gnutarget): Make "text" and "word"
222 parameters const.
223 * cp-abi.c (cp_abi_completer): Likewise.
224 * expression.h (parse_expression_for_completion): Change
225 prototype.
226 * f-lang.c (f_make_symbol_completion_list): Make "text" and "word"
227 parameters const.
228 * infcmd.c (_initialize_infcmd): Make "cmd_name" local const.
229 * infrun.c (handle_completer): Make "text" and "word" parameters
230 const.
231 * interps.c (interpreter_completer): Make "text" and "word"
232 parameters const.
233 * language.h (struct language_defn)
234 <la_make_symbol_completion_list>: Make "text" and "word"
235 parameters const.
236 * parse.c (parse_exp_1): Move const hack to parse_exp_in_context.
237 (parse_exp_in_context): Rename to ...
238 (parse_exp_in_context_1): ... this.
239 (parse_exp_in_context): Reimplement, with const hack from
240 parse_exp_1.
241 (parse_expression_for_completion): Make "string" parameter const.
242 * printcmd.c (decode_format): Make "string_ptr" parameter pointer
243 to pointer to const char. Adjust.
244 (print_command_1): Make "exp" parameter const.
245 (output_command): Rename to ...
246 (output_command_const): ... this. Make "exp" parameter const.
247 (output_command): Reimplement.
248 (x_command): Adjust.
249 (display_command): Rename "exp" parameter to "arg". New "exp"
250 local, const version of "arg".
251 * python/py-auto-load.c (gdbpy_initialize_auto_load): Make
252 "cmd_name" local const.
253 * python/py-cmd.c (cmdpy_destroyer): Cast const away in xfree
254 call.
255 (cmdpy_completer): Make "text" and "word" parameters const.
256 (gdbpy_parse_command_name): Make "prefix_text2" local const.
257 * python/py-param.c (add_setshow_generic): Make "tmp_name" local
258 const.
259 * remote.c (_initialize_remote): Make "cmd_name" local const.
260 * symtab.c (language_search_unquoted_string): Make "text" and "p"
261 parameters const. Adjust.
262 (completion_list_add_fields): Make "sym_text", "text" and "word"
263 parameters const.
264 (struct add_name_data) <sym_text, text, word>: Make fields const.
265 (default_make_symbol_completion_list_break_on): Make "text" and
266 "word" parameters const. Adjust locals.
267 (default_make_symbol_completion_list)
268 (make_symbol_completion_list, make_symbol_completion_type)
269 (make_symbol_completion_list_fn): Make "text" and "word"
270 parameters const.
271 (make_file_symbol_completion_list): Make "text", "word" and
272 "srcfile" parameters const. Adjust locals.
273 (add_filename_to_list): Make "text" and "word" parameters const.
274 (struct add_partial_filename_data) <text, word>: Make fields
275 const.
276 (make_source_files_completion_list): Make "text" and "word"
277 parameters const.
278 * symtab.h (default_make_symbol_completion_list_break_on)
279 (default_make_symbol_completion_list, make_symbol_completion_list)
280 (make_symbol_completion_type enum type_code)
281 (make_symbol_completion_list_fn make_file_symbol_completion_list)
282 (make_source_files_completion_list): Change prototype.
283 * top.c (execute_command): Adjust to pass pointer to pointer to
284 const char to lookup_cmd, and to deprecated_cmd_warning prototype
285 change.
286 (set_verbose): Make "cmdname" local const.
287 * tracepoint.c (decode_agent_options): Make "exp" parameter const,
288 and adjust.
289 (validate_actionline): Make "line" parameter a pointer to const
290 char, and adjust.
291 (encode_actions_1): Make "action_exp" local const, and adjust.
292 (encode_actions): Adjust.
293 (replace_comma): Delete.
294 (trace_dump_actions): Make "action_exp" and "next_comma" locals
295 const, and adjust. Don't frob the action string while splitting
296 it at commas. Instead, make a copy of each split substring in
297 turn.
298 (trace_dump_command): Adjust to validate_actionline prototype
299 change.
300 * tracepoint.h (decode_agent_options, decode_agent_options)
301 (encode_actions, validate_actionline): Change prototypes.
302 * valprint.h (output_command): Delete declaration.
303 (output_command_const): Declare.
304 * value.c (function_destroyer): Cast const away in xfree call.
305
306 2013-03-13 Pedro Alves <palves@redhat.com>
307
308 * ada-lang.c (ada_decode_symbol): Cast away constness of GSYMBOL
309 rather than casting 'const char * const *' to 'const char **'.
310 * ada-lex.l (processInt): Make "trailer" local const. Remove
311 'const char **' cast.
312 * arm-linux-tdep.c (arm_stap_parse_special_token): Add 'char *'
313 locals, and use those as strtol output pointer, instead than doing
314 invalid casts to from 'const char **' to 'char **'.
315 (_initialize_demangle): Remove cast.
316 * i386-tdep.c (i386_stap_parse_special_token): : Add 'char *'
317 locals, and use those as strtol output pointer, instead than doing
318 invalid casts to from 'const char **' to 'char **'.
319 * solib-dsbt.c (dsbt_get_initial_loadmaps): Remove 'gdb_byte**'
320 casts.
321 * stap-probe.c (stap_parse_register_operand)
322 (stap_parse_single_operand): Likewise.
323
324 2013-03-13 Yao Qi <yao@codesourcery.com>
325
326 * tracepoint.c (tfile_get_trace_state_variable_value): Look for
327 the last matched 'V' blcok in trace frame.
328
329 2013-03-12 Joel Brobecker <brobecker@adacore.com>
330
331 * NEWS: Create a new section for the next release branch.
332 Rename the section of the current branch, now that it has
333 been cut.
334
335 2013-03-12 Joel Brobecker <brobecker@adacore.com>
336
337 GDB 7.6 branch created (branch timestamp: 2013-03-12 22:15 UTC)
338 * version.in: Bump version to 7.6.50.20130312-cvs.
339
340 2013-03-12 Keith Seitz <keiths@redhat.com>
341
342 * mi/mi-cmds.h (mi_execute_command): Make "cmd" const.
343 * mi/mi-interp.c (mi_interpreter_exec): Make "command" const.
344 Remove temporary copy of input string.
345 (mi_execute_command_wrapper): Make "cmd" const.
346 * mi/mi-main.c (mi_execute_command): Make "string_ptr" const.
347 * mi/mi-parse.c (mi_parse_argv): Make "args" const.
348 Use const strings.
349 (mi_parse): Make "cmd" const.
350 Use const strings.
351 * mi/mi-parse.h (mi_parse): Make "cmd" const.
352
353 2013-03-12 Keith Seitz <keiths@redhat.com>
354
355 * ada-lang.c (ada_read_renaming_var_value): Pass const
356 pointer to expression string to parse_exp_1.
357 (create_excep_cond_exprs): Likewise.
358 * ax-gdb.c (agent_eval_command_one): Likewise.
359 (maint_agent_printf_command): Likewise.
360 Constify much of the string handling/parsing.
361 * breakpoint.c (set_breakpoint_condition): Pass const
362 pointer to expression string to parse_exp_1.
363 (update_watchpoint): Likewise.
364 (parse_cmd_to_aexpr): Constify string handling.
365 Pass const pointer to parse_exp_1.
366 (init_breakpoint_sal): Pass const pointer to parse_exp_1.
367 (find_condition_and_thread): Likewise.
368 Make TOK const.
369 (watch_command_1): Make "arg" const.
370 Constify string handling.
371 Copy the expression string instead of changing the input
372 string.
373 (update_breakpoint_location): Pass const pointer to
374 parse_exp_1.
375 * eval.c (parse_and_eval_address): Make "exp" const.
376 (parse_to_comma_and_eval): Make "expp" const.
377 (parse_and_eval): Make "exp" const.
378 * expression.h (parse_expression): Make argument const.
379 (parse_exp_1): Make first argument const.
380 * findcmd.c (parse_find_args): Treat "args" as const.
381 * linespec.c (parse_linespec): Pass const pointer to
382 linespec_expression_to_pc.
383 (linespec_expression_to_pc): Make "exp_ptr" const.
384 * parse.c (parse_exp_1): Make "stringptr" const.
385 Make a copy of the expression to pass to parse_exp_in_context until
386 this whole interface can be constified.
387 (parse_expression): Make "string" const.
388 * printcmd.c (ui_printf): Treat "arg" as const.
389 Handle const strings.
390 * tracepoint.c (validate_actionline): Pass const pointer to
391 all calls to parse_exp_1.
392 (encode_actions_1): Likewise.
393 * value.h (parse_to_comma_and_eval): Make argument const.
394 (parse_and_eval_address): Likewise.
395 (parse_and_eval): Likewise.
396 * varobj.c (varobj_create): Pass const pointer to parse_exp_1.
397 (varobj_set_value): Likewise.
398 * cli/cli-cmds.c (disassemble_command): Treat "arg" as const and
399 constify string handling.
400 Pass const pointers to parse_and_eval_address and
401 parse_to_comman_and_eval.
402 * cli/cli-utils.c (skip_to_space): Rename to ...
403 (skip_to_space_const): ... this. Handle const strings.
404 * cli/cli-utils.h (skip_to_space): Turn into macro which invokes
405 skip_to_space_const.
406 (skip_to_space_const): Declare.
407 * common/format.c (parse_format_string): Make "arg" const.
408 Handle const strings.
409 * common/format.h (parse_format_string): Make "arg" const.
410 * gdbserver/ax.c (ax_printf): Make "format" const.
411 * python/python.c (gdbpy_parse_and_eval): Do not make a copy
412 of the expression string.
413
414 2013-03-12 Hui Zhu <hui@codesourcery.com>
415
416 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Update error message.
417
418 2013-03-12 Yao Qi <yao@codesourcery.com>
419 Hui Zhu <hui@codesourcery.com>
420
421 * dwarf2loc.c (access_memory): Change nbits to nbytes in gdb_assert.
422 (dwarf2_compile_expr_to_ax): Call access_memory in DW_OP_deref and
423 DW_OP_deref_size.
424
425 2013-03-12 Paul Hilfinger <hilfingr@adacore.com>
426
427 * ada-lex.l (rules): Only recognize 'thread' as a
428 delimiter when followed by numerals, as for c-exp.y.
429 Use new rewind_to_char function to rewind the input for
430 expression-delimiting tokens.
431 (rewind_to_char): New function.
432
433 2013-03-11 Pedro Alves <palves@redhat.com>
434 Jan Kratochvil <jan.kratochvil@redhat.com>
435
436 * configure: Regenerate.
437 * configure.ac (check dynamic export flag): Link python test with
438 $PYTHON_LIBS.
439
440 2013-03-11 Doug Evans <dje@google.com>
441 Keith Seitz <keiths@redhat.com>
442
443 * linespec.c (find_linespec_symbols): Call find_function_symbols
444 first, and then call lookup_prefix_sym/find_method.
445
446 2013-03-11 Pedro Alves <palves@redhat.com>
447
448 * charset.c (convert_between_encodings): Don't cast between
449 different pointer to pointer types. Instead, make the 'inp' local
450 be of the type iconv expects.
451 (wchar_iterate): Don't cast between different pointer to pointer
452 types. Instead, use new pointer local of the type iconv expects.
453 * target.c (target_read_stralloc, target_fileio_read_stralloc):
454 Add new local of type char pointer, and use it to get a
455 char/string view of the byte buffer, instead of casting between
456 pointer to pointer types.
457
458 2013-03-11 Hafiz Abid Qadeer <abidh@codesourcery.com>
459
460 * remote.c (remote_set_trace_buffer_size): Move != operator
461 to the start of next line to fix an ARI warning.
462
463 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
464
465 * NEWS: Add record changes.
466
467 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
468
469 * record-btrace.c (btrace_insn_history): Omit the pc prefix in
470 the instruction history disassembly.
471 * disasm.c (dump_insns): Omit the pc prefix, if requested.
472 * disasm.h (DISASSEMBLY_OMIT_PC): New.
473
474 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
475
476 * Makefile.in (SFILES): Add record-btrace.c
477 (COMMON_OBS): Add record-btrace.o
478 * record-btrace.c: New.
479 * objfiles.c: Include btrace.h.
480 (free_objfile): call btrace_free_objfile.
481
482 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
483
484 * target.c (target_call_history, target_call_history_from,
485 target_call_history_range): New.
486 * target.h (target_ops) <to_call_history, to_call_history_from,
487 to_call_history_range>: New fields.
488 (target_call_history, target_call_history_from,
489 target_call_history_range): New declaration.
490 * record.c (get_call_history_modifiers, cmd_record_call_history,
491 record_call_history_size): New.
492 (_initialize_record): Add the "record function-call-history" command.
493 Add "set/show record function-call-history-size" commands.
494 * record.h (record_print_flag): New.
495
496 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
497
498 * target.h (target_ops) <to_insn_history, to_insn_history_from,
499 to_insn_history_range>: New fields.
500 (target_insn_history): New.
501 (target_insn_history_from): New.
502 (target_insn_history_range): New.
503 * target.c (target_insn_history): New.
504 (target_insn_history_from): New.
505 (target_insn_history_range): New.
506 * record.c: Include cli/cli-utils.h, disasm.h, ctype.h.
507 (record_insn_history_size): New.
508 (get_insn_number): New.
509 (get_context_size): New.
510 (no_chunk): New.
511 (get_insn_history_modifiers): New.
512 (cmd_record_insn_history): New.
513 (_initialize_record): Add "set/show record instruction-history-size"
514 command. Add "record instruction-history" command.
515
516 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
517
518 * record.h (record_disconnect): New.
519 (record_detach): New.
520 (record_mourn_inferior): New.
521 (record_kill): New.
522 * record-full.c (record_disconnect, record_detach,
523 record_mourn_inferior, record_kill): Move to...
524 * record.c: ...here.
525 (DEBUG): New.
526 (record_stop): New.
527 (record_unpush): New.
528 (cmd_record_stop): Call record_stop. Replace unpush_target
529 call with record_unpush call.
530 (record_disconnect, record_detach): Assert that the target
531 is of record stratum. Call record_unpush, record_stop, and
532 DEBUG.
533 (record_mourn_inferior, record_kill): Assert that the target
534 is of record stratum. Call record_unpush and DEBUG.
535
536 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
537
538 * record-full.h, record-full.c (record_memory_query): Rename
539 to ...
540 (record_full_memory_query): ...this. Update all users.
541 (record_arch_list_add_reg): Rename to ...
542 (record_full_arch_list_add_reg): ...this. Update all users.
543 (record_arch_list_add_mem): Rename to ...
544 (record_full_arch_list_add_mem): ...this. Update all users.
545 (record_arch_list_add_end): Rename to ...
546 (record_full_arch_list_add_end): ...this. Update all users.
547 (record_gdb_operation_disable_set): Rename to ...
548 (record_full_gdb_operation_disable_set): ...this.
549 Update all users.
550
551 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
552
553 * record-full.c (DEFAULT_RECORD_INSN_MAX_NUM): Renamed to ...
554 (DEFAULT_RECORD_FULL_INSN_MAX_NUM): ... this. Updated all users.
555 (RECORD_IS_REPLAY): Renamed to ...
556 (RECORD_FULL_IS_REPLAY): ... this. Updated all users.
557 (RECORD_FILE_MAGIC): Renamed to ...
558 (RECORD_FULL_FILE_MAGIC): ... this. Updated all users.
559 (record_mem_entry): Renamed to ...
560 (record_full_mem_entry): ... this. Updated all users.
561 (record_reg_entry): Renamed to ...
562 (record_full_reg_entry): ... this. Updated all users.
563 (record_end_entry): Renamed to ...
564 (record_full_end_entry): ... this. Updated all users.
565 (record_type) <record_end, record_reg, record_mem>: Renamed
566 to ...
567 (record_full_type) <record_full_end, record_full_reg,
568 record_full_mem>: ... this. Updated all users.
569 (record_entry): Renamed to ...
570 (record_full_entry): ... this. Updated all users.
571 (record_core_buf_entry): Renamed to ...
572 (record_full_core_buf_entry): ... this. Updated all users.
573 (record_core_regbuf): Renamed to ...
574 (record_full_core_regbuf): ... this. Updated all users.
575 (record_core_start): Renamed to ...
576 (record_full_core_start): ... this. Updated all users.
577 (record_core_end): Renamed to ...
578 (record_full_core_end): ... this. Updated all users.
579 (record_core_buf_list): Renamed to ...
580 (record_full_core_buf_list): ... this. Updated all users.
581 (record_first): Renamed to ...
582 (record_full_first): ... this. Updated all users.
583 (record_list): Renamed to ...
584 (record_full_list): ... this. Updated all users.
585 (record_arch_list_head): Renamed to ...
586 (record_full_arch_list_head): ... this. Updated all users.
587 (record_arch_list_tail): Renamed to ...
588 (record_full_arch_list_tail): ... this. Updated all users.
589 (record_stop_at_limit): Renamed to ...
590 (record_full_stop_at_limit): ... this. Updated all users.
591 (record_insn_max_num): Renamed to ...
592 (record_full_insn_max_num): ... this. Updated all users.
593 (record_insn_num): Renamed to ...
594 (record_full_insn_num): ... this. Updated all users.
595 (record_insn_count): Renamed to ...
596 (record_full_insn_count): ... this. Updated all users.
597 (record_ops): Renamed to ...
598 (record_full_ops): ... this. Updated all users.
599 (record_core_ops): Renamed to ...
600 (record_full_core_ops): ... this. Updated all users.
601 (set_record_cmdlist): Renamed to ...
602 (set_record_full_cmdlist): ... this. Updated all users.
603 (show_record_cmdlist): Renamed to ...
604 (show_record_full_cmdlist): ... this. Updated all users.
605 (record_cmdlist): Renamed to ...
606 (record_full_cmdlist): ... this. Updated all users.
607 (record_beneath_to_resume_ops): Renamed to ...
608 (record_full_beneath_to_resume_ops): ... this. Updated all users.
609 (record_beneath_to_resume): Renamed to ...
610 (record_full_beneath_to_resume): ... this. Updated all users.
611 (record_beneath_to_wait_ops): Renamed to ...
612 (record_full_beneath_to_wait_ops): ... this. Updated all users.
613 (record_beneath_to_wait): Renamed to ...
614 (record_full_beneath_to_wait): ... this. Updated all users.
615 (record_beneath_to_store_registers_ops): Renamed to ...
616 (record_full_beneath_to_store_registers_ops): ... this.
617 Updated all users.
618 (record_beneath_to_store_registers): Renamed to ...
619 (record_full_beneath_to_store_registers): ... this.
620 Updated all users.
621 (record_beneath_to_xfer_partial_ops): Renamed to ...
622 (record_full_beneath_to_xfer_partial_ops): ... this.
623 Updated all users.
624 (record_beneath_to_xfer_partial): Renamed to ...
625 (record_full_beneath_to_xfer_partial): ... this.
626 Updated all users.
627 (record_beneath_to_insert_breakpoint): Renamed to ...
628 (record_full_beneath_to_insert_breakpoint): ... this.
629 Updated all users.
630 (record_beneath_to_stopped_by_watchpoint): Renamed to ...
631 (record_full_beneath_to_stopped_by_watchpoint): ... this.
632 Updated all users.
633 (record_beneath_to_stopped_data_address): Renamed to ...
634 (record_full_beneath_to_stopped_data_address): ... this.
635 Updated all users.
636 (record_beneath_to_async): Renamed to ...
637 (record_full_beneath_to_async): ... this. Updated all users.
638 (record_goto_insn): Renamed to ...
639 (record_full_goto_insn): ... this. Updated all users.
640 (record_save): Renamed to ...
641 (record_full_save): ... this. Updated all users.
642 (record_reg_alloc): Renamed to ...
643 (record_full_reg_alloc): ... this. Updated all users.
644 (record_reg_release): Renamed to ...
645 (record_full_reg_release): ... this. Updated all users.
646 (record_mem_alloc): Renamed to ...
647 (record_full_mem_alloc): ... this. Updated all users.
648 (record_mem_release): Renamed to ...
649 (record_full_mem_release): ... this. Updated all users.
650 (record_end_alloc): Renamed to ...
651 (record_full_end_alloc): ... this. Updated all users.
652 (record_end_release): Renamed to ...
653 (record_full_end_release): ... this. Updated all users.
654 (record_entry_release): Renamed to ...
655 (record_full_entry_release): ... this. Updated all users.
656 (record_list_release): Renamed to ...
657 (record_full_list_release): ... this. Updated all users.
658 (record_list_release_following): Renamed to ...
659 (record_full_list_release_following): ... this.
660 Updated all users.
661 (record_list_release_first): Renamed to ...
662 (record_full_list_release_first): ... this. Updated all users.
663 (record_arch_list_add): Renamed to ...
664 (record_full_arch_list_add): ... this. Updated all users.
665 (record_get_loc): Renamed to ...
666 (record_full_get_loc): ... this. Updated all users.
667 (record_check_insn_num): Renamed to ...
668 (record_full_check_insn_num): ... this. Updated all users.
669 (record_arch_list_cleanups): Renamed to ...
670 (record_full_arch_list_cleanups): ... this. Updated all users.
671 (record_message): Renamed to ...
672 (record_full_message): ... this. Updated all users.
673 (record_message_wrapper): Renamed to ...
674 (record_full_message_wrapper): ... this. Updated all users.
675 (record_message_wrapper_safe): Renamed to ...
676 (record_full_message_wrapper_safe): ... this. Updated all users.
677 (record_gdb_operation_disable): Renamed to ...
678 (record_full_gdb_operation_disable): ... this. Updated all users.
679 (record_hw_watchpoint): Renamed to ...
680 (record_full_hw_watchpoint): ... this. Updated all users.
681 (record_exec_insn): Renamed to ...
682 (record_full_exec_insn): ... this. Updated all users.
683 (record_restore): Renamed to ...
684 (record_full_restore): ... this. Updated all users.
685 (record_async_inferior_event_token): Renamed to ...
686 (record_full_async_inferior_event_token): ... this.
687 Updated all users.
688 (record_async_inferior_event_handler): Renamed to ...
689 (record_full_async_inferior_event_handler): ... this.
690 Updated all users.
691 (record_core_open_1): Renamed to ...
692 (record_full_core_open_1): ... this. Updated all users.
693 (record_open_1): Renamed to ...
694 (record_full_open_1): ... this. Updated all users.
695 (record_open): Renamed to ...
696 (record_full_open): ... this. Updated all users.
697 (record_close): Renamed to ...
698 (record_full_close): ... this. Updated all users.
699 (record_resume_step): Renamed to ...
700 (record_full_resume_step): ... this. Updated all users.
701 (record_resumed): Renamed to ...
702 (record_full_resumed): ... this. Updated all users.
703 (record_execution_dir): Renamed to ...
704 (record_full_execution_dir): ... this. Updated all users.
705 (record_resume): Renamed to ...
706 (record_full_resume): ... this. Updated all users.
707 (record_get_sig): Renamed to ...
708 (record_full_get_sig): ... this. Updated all users.
709 (record_sig_handler): Renamed to ...
710 (record_full_sig_handler): ... this. Updated all users.
711 (record_wait_cleanups): Renamed to ...
712 (record_full_wait_cleanups): ... this. Updated all users.
713 (record_wait_1): Renamed to ...
714 (record_full_wait_1): ... this. Updated all users.
715 (record_wait): Renamed to ...
716 (record_full_wait): ... this. Updated all users.
717 (record_stopped_by_watchpoint): Renamed to ...
718 (record_full_stopped_by_watchpoint): ... this. Updated all users.
719 (record_disconnect): Renamed to ...
720 (record_full_disconnect): ... this. Updated all users.
721 (record_detach): Renamed to ...
722 (record_full_detach): ... this. Updated all users.
723 (record_mourn_inferior): Renamed to ...
724 (record_full_mourn_inferior): ... this. Updated all users.
725 (record_kill): Renamed to ...
726 (record_full_kill): ... this. Updated all users.
727 (record_stopped_data_address): Renamed to ...
728 (record_full_stopped_data_address): ... this. Updated all users.
729 (record_registers_change): Renamed to ...
730 (record_full_registers_change): ... this. Updated all users.
731 (record_store_registers): Renamed to ...
732 (record_full_store_registers): ... this. Updated all users.
733 (record_xfer_partial): Renamed to ...
734 (record_full_xfer_partial): ... this. Updated all users.
735 (record_breakpoint): Renamed to ...
736 (record_full_breakpoint): ... this. Updated all users.
737 (record_breakpoint_p): Renamed to ...
738 (record_full_breakpoint_p): ... this. Updated all users.
739 (record_breakpoints): Renamed to ...
740 (record_full_breakpoints): ... this. Updated all users.
741 (record_sync_record_breakpoints): Renamed to ...
742 (record_full_sync_record_breakpoints): ... this.
743 Updated all users.
744 (record_init_record_breakpoints): Renamed to ...
745 (record_full_init_record_breakpoints): ... this.
746 Updated all users.
747 (record_insert_breakpoint): Renamed to ...
748 (record_full_insert_breakpoint): ... this. Updated all users.
749 (record_remove_breakpoint): Renamed to ...
750 (record_full_remove_breakpoint): ... this. Updated all users.
751 (record_can_execute_reverse): Renamed to ...
752 (record_full_can_execute_reverse): ... this. Updated all users.
753 (record_get_bookmark): Renamed to ...
754 (record_full_get_bookmark): ... this. Updated all users.
755 (record_goto_bookmark): Renamed to ...
756 (record_full_goto_bookmark): ... this. Updated all users.
757 (record_async): Renamed to ...
758 (record_full_async): ... this. Updated all users.
759 (record_can_async_p): Renamed to ...
760 (record_full_can_async_p): ... this. Updated all users.
761 (record_is_async_p): Renamed to ...
762 (record_full_is_async_p): ... this. Updated all users.
763 (record_execution_direction): Renamed to ...
764 (record_full_execution_direction): ... this. Updated all users.
765 (record_info): Renamed to ...
766 (record_full_info): ... this. Updated all users.
767 (record_delete): Renamed to ...
768 (record_full_delete): ... this. Updated all users.
769 (record_is_replaying): Renamed to ...
770 (record_full_is_replaying): ... this. Updated all users.
771 (record_goto_entry): Renamed to ...
772 (record_full_goto_entry): ... this. Updated all users.
773 (record_goto_begin): Renamed to ...
774 (record_full_goto_begin): ... this. Updated all users.
775 (record_goto_end): Renamed to ...
776 (record_full_goto_end): ... this. Updated all users.
777 (record_goto): Renamed to ...
778 (record_full_goto): ... this. Updated all users.
779 (init_record_ops): Renamed to ...
780 (init_record_full_ops): ... this. Updated all users.
781 (record_core_resume): Renamed to ...
782 (record_full_core_resume): ... this. Updated all users.
783 (record_core_kill): Renamed to ...
784 (record_full_core_kill): ... this. Updated all users.
785 (record_core_fetch_registers): Renamed to ...
786 (record_full_core_fetch_registers): ... this. Updated all users.
787 (record_core_prepare_to_store): Renamed to ...
788 (record_full_core_prepare_to_store): ... this. Updated all users.
789 (record_core_store_registers): Renamed to ...
790 (record_full_core_store_registers): ... this. Updated all users.
791 (record_core_xfer_partial): Renamed to ...
792 (record_full_core_xfer_partial): ... this. Updated all users.
793 (record_core_insert_breakpoint): Renamed to ...
794 (record_full_core_insert_breakpoint): ... this. Updated all users.
795 (record_core_remove_breakpoint): Renamed to ...
796 (record_full_core_remove_breakpoint): ... this. Updated all users.
797 (record_core_has_execution): Renamed to ...
798 (record_full_core_has_execution): ... this. Updated all users.
799 (init_record_core_ops): Renamed to ...
800 (init_record_full_core_ops): ... this. Updated all users.
801 (cmd_record_restore): Renamed to ...
802 (cmd_record_full_restore): ... this. Updated all users.
803 (record_save_cleanups): Renamed to ...
804 (record_full_save_cleanups): ... this. Updated all users.
805 (cmd_record_start): Renamed to ...
806 (cmd_record_full_start): ... this. Updated all users.
807 (set_record_insn_max_num): Renamed to ...
808 (set_record_full_insn_max_num): ... this. Updated all users.
809 (set_record_command): Renamed to ...
810 (set_record_full_command): ... this. Updated all users.
811 (show_record_command): Renamed to ...
812 (show_record_full_command): ... this. Updated all users.
813 (_initialize_record): Renamed to ...
814 (_initialize_record_full): ... this. Updated all users.
815
816 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
817
818 * record.h: Split into this and ...
819 * record-full.h: ... this.
820 * record.c: Split into this and ...
821 * record-full.c: ... this.
822 * target.h (target_ops): Add new fields to_info_record,
823 to_save_record, to_delete_record, to_record_is_replaying,
824 to_goto_record_begin, to_goto_record_end, to_goto_record.
825 (target_info_record): New.
826 (target_save_record): New.
827 (target_supports_delete_record): New.
828 (target_delete_record): New.
829 (target_record_is_replaying): New.
830 (target_goto_record_begin): New.
831 (target_goto_record_end): New.
832 (target_goto_record): New.
833 * target.c (target_info_record): New.
834 (target_save_record): New.
835 (target_supports_delete_record): New.
836 (target_delete_record): New.
837 (target_record_is_replaying): New.
838 (target_goto_record_begin): New.
839 (target_goto_record_end): New.
840 (target_goto_record): New.
841 * record.h: Declare struct cmd_list_element.
842 (record_cmdlist): New declaration.
843 (set_record_cmdlist): New declaration.
844 (show_record_cmdlist): New declaration.
845 (info_record_cmdlist): New declaration.
846 (cmd_record_goto): New declaration.
847 * record.c: Remove unnecessary includes.
848 Include inferior.h.
849 (cmd_record_goto): Remove declaration.
850 (record_cmdlist): Now extern. Initialize.
851 (set_record_cmdlist): Now extern. Initialize.
852 (show_record_cmdlist): Now extern. Initialize.
853 (info_record_cmdlist): Now extern. Initialize.
854 (find_record_target): New.
855 (require_record_target): New.
856 (cmd_record_start): Update.
857 (cmd_record_delete): Remove target-specific code.
858 Call target_delete_record.
859 (cmd_record_stop): Unpush any record target.
860 (set_record_insn_max_num): Move to record-full.c
861 (set_record_command): Add comment.
862 (show_record_command): Add comment.
863 (info_record_command): Update comment.
864 Remove target-specific code.
865 Call the record target's to_info_record.
866 (cmd_record_start): New.
867 (cmd_record_goto): Now extern.
868 Remove target-specific code.
869 Call target_goto_begin, target_goto_end, or target_goto.
870 (_initialize_record): Move record target ops initialization to
871 record-full.c.
872 Change "record" command help text.
873 Move "record restore", "record set", and "record show" commands to
874 record-full.c.
875 * Makefile.in (SFILES): Add record-full.c.
876 (HFILES_NO_SRCDIR): Add record-full.h.
877 (COMMON_OBS): Add record-full.o.
878 * amd64-linux-tdep.c: Include record-full.h instead of record.h.
879 * arm-tdep.c: Include record-full.h.
880 * i386-linux-tdep.c: Include record-full.h instead of record.h.
881 * i386-tdep.c: Include record-full.h.
882 * infrun.c: Include record-full.h.
883 * linux-record.c: Include record-full.h.
884 * moxie-tdep.c: Include record-full.h.
885 * record-full.c: Include record-full.h.
886 Change module comment.
887 (set_record_full_cmdlist): New.
888 (show_record_full_cmdlist): New.
889 (record_full_cmdlist): New.
890 (record_goto_insn): New declaration.
891 (record_save): New declaration.
892 (record_check_insn_num): Change query string.
893 (record_info): New.
894 (record_delete): New.
895 (record_is_replaying): New.
896 (record_goto_entry): New.
897 (record_goto_begin): New.
898 (record_goto_end): New.
899 (record_goto): New.
900 (init_record_ops): Update.
901 (init_record_core_ops): Update.
902 (cmd_record_save): Rename to record_save. Remove target and arg checks.
903 (cmd_record_start): New.
904 (set_record_insn_max_num): Moved from record.c
905 (set_record_full_command): New.
906 (show_record_full_command): New.
907 (_initialize_record_full): New.
908
909 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
910
911 * target.h (add_deprecated_target_alias): New.
912 * target.c (add_deprecated_target_alias): New.
913
914 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
915
916 * common/linux-btrace.c: Include sys/ptrace, sys/types, sys/wait.h,
917 and signal.h.
918 (linux_supports_btrace): Add kernel and
919 cpuid check.
920 (kernel_supports_btrace): New function.
921 (cpu_supports_btrace): New function.
922 (intel_supports_btrace): New function.
923
924 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
925
926 * target.h (enum target_object): Add TARGET_OBJECT_BTRACE.
927 * remote.c: Include btrace.h.
928 (struct btrace_target_info): New struct.
929 (remote_supports_btrace): New function.
930 (send_Qbtrace): New function.
931 (remote_enable_btrace): New function.
932 (remote_disable_btrace): New function.
933 (remote_teardown_btrace): New function.
934 (remote_read_btrace): New function.
935 (init_remote_ops): Add btrace ops.
936 (enum <unnamed>): Add btrace packets.
937 (struct protocol_feature remote_protocol_features[]): Add btrace packets.
938 (_initialize_remote): Add packet configuration for branch tracing.
939
940 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
941
942 * features/btrace.dtd: New file.
943 * Makefile.in (XMLFILES): Add btrace.dtd.
944 * btrace.h (parse_xml_btrace): New declaration.
945 * btrace.c: Include xml-support.h.
946 (parse_xml_btrace): New function.
947 (parse_xml_btrace_block): New function.
948 (block_attributes): New struct.
949 (btrace_attributes): New struct.
950 (btrace_children): New struct.
951 (btrace_elements): New struct.
952
953 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
954
955 * amd64-linux-nat.c: Include btrace.h and linux-btrace.h.
956 (amd64_linux_enable_btrace): New.
957 (amd64_linux_disable_btrace): New.
958 (amd64_linux_teardown_btrace): New.
959 (_initialize_amd64_linux_nat): Initialize btrace ops.
960 * i386-linux.nat.c: Include btrace.h and linux-btrace.h.
961 (i386_linux_enable_btrace): New.
962 (i386_linux_disable_btrace): New.
963 (i386_linux_teardown_btrace): New.
964 (_initialize_i386_linux_nat): Initialize btrace ops.
965 * config/i386/linux.mh: Add linux-btrace.o.
966 * config/i386/linux64.mh: Add linux-btrace.o.
967
968 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
969
970 * common/linux_btrace.h: New file.
971 * common/linux_btrace.c: New file.
972 * Makefile.in (SFILES): Add btrace.c.
973 (HFILES_NO_SRCDIR): Add common/linux-btrace.h.
974 (COMMON_OBS): Add btrace.o.
975 (linux-btrace.o): New rule.
976
977 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
978
979 * target.h: Include btrace.h.
980 (struct target_ops) <to_supports_btrace, to_enable_btrace,
981 to_disable_btrace, to_teardown_btrace, to_read_btrace>: New.
982 * target.c (target_supports_btrace): New function.
983 (target_enable_btrace): New function.
984 (target_disable_btrace): New function.
985 (target_teardown_btrace): New function.
986 (target_read_btrace): New function.
987 * btrace.h: New file.
988 * btrace.c: New file.
989 * Makefile.in: Add btrace.c.
990 * gdbthread.h: Include btrace.h.
991 (struct thread_info): Add btrace field.
992 * thread.c: Include btrace.h.
993 (clear_thread_inferior_resources): Call target_teardown_btrace.
994 * common/btrace-common.h: New file.
995
996 2013-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
997
998 * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Call also kill
999 for CHILD, ignore PTRACE_KILL errors, move the inner block variable
1000 kill_status to outer block.
1001
1002 2013-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
1003
1004 Fix entry-values if the callee called a noreturn function.
1005 * dwarf2-frame-tailcall.c (dwarf2_tailcall_sniffer_first): Use
1006 get_frame_address_in_block. Add new comment.
1007
1008 2013-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
1009
1010 Fix entry-values in C++ across CUs.
1011 * dwarf2loc.c (call_site_to_target_addr) <FIELD_LOC_KIND_PHYSNAME>: Use
1012 lookup_minimal_symbol. Add a comment.
1013 * dwarf2read.c
1014 (read_call_site_scope) <is_ref_attr> <die_is_declaration>: Prefer
1015 DW_AT_linkage_name.
1016
1017 2013-03-08 Yao Qi <yao@codesourcery.com>
1018
1019 * tracepoint.c (_initialize_tracepoint): Indent the code.
1020
1021 2013-03-08 Pedro Alves <palves@redhat.com>
1022
1023 * findcmd.c (put_bits): Change type of parameter to 'gdb_byte *'.
1024 (parse_find_args, find_command): Change type of pattern buffer
1025 locals to 'gdb_byte *'.
1026
1027 2013-03-08 Stan Shebs <stan@codesourcery.com>
1028 Hafiz Abid Qadeer <abidh@codesourcery.com>
1029
1030 * NEWS: Mention set and show trace-buffer-size commands.
1031 Mention new packet.
1032 * target.h (struct target_ops): New method
1033 to_set_trace_buffer_size.
1034 (target_set_trace_buffer_size): New macro.
1035 * target.c (update_current_target): Set up new method.
1036 * tracepoint.c (trace_buffer_size): New global.
1037 (start_tracing): Send it to the target.
1038 (set_trace_buffer_size): New function.
1039 (_initialize_tracepoint): Add new setshow for trace-buffer-size.
1040 * remote.c (remote_set_trace_buffer_size): New function.
1041 (_initialize_remote): Use it.
1042 (QTBuffer:size) New remote command.
1043 (PACKET_QTBuffer_size): New enum.
1044 (remote_protocol_features): Add an entry for
1045 PACKET_QTBuffer_size.
1046
1047 2013-03-08 Tom Tromey <tromey@redhat.com>
1048
1049 * remote-m32r-sdi.c (m32r_load): Call skip_spaces on correct
1050 variable.
1051
1052 2013-03-07 Pedro Alves <palves@redhat.com>
1053
1054 * target.c (target_read_stralloc, target_fileio_read_alloc):
1055 *Cast pointer to 'gdb_byte *' in target call.
1056
1057 2013-03-07 Pedro Alves <palves@redhat.com>
1058
1059 * corefile.c (read_memory_string): Cast pointer to gdb_byte* in
1060 call.
1061
1062 2013-03-07 Keith Seitz <keiths@redhat.com>
1063
1064 * breakpoint.c (catch_syscall_split_args): Use skip_spaces.
1065 (trace_pass_command): Likewise.
1066 * cli/cli-cmds.c: Include cli/cli-utils.h.
1067 (source_command): Use skip-spaces.
1068 (disassemble_command): Likewise.
1069 * findcmd.c: Include cli/cli-utils.h.
1070 (parse_find_args): Use skip_spaces.
1071 * go32-nat.c: Include cli/cli-utils.h.
1072 (go32_sldt): Use skip_spaces.
1073 (go32_sgdt): Likewise.
1074 (go32_sidt): Likewise.
1075 (go32_pde): Likewise.
1076 (go32_pte): Likewise.
1077 (go32_pte_for_address): Likewise.
1078 * infcmd.c: Include cli/cli-utils.h.
1079 (registers_info): Use skip_spaces.
1080 * linux-tdep.c (read_mapping): Use skip_spaces_const.
1081 (linux_info_proc): Likewise.
1082 * linux-thread-db.c: Include cli/cli-utils.h.
1083 (info_auto_load_libthread_db): Use skip_spaces_const.
1084 * m32r-rom.c: Include cli/cli-utils.h.
1085 (m32r_upload_command): Use skip_spaces.
1086 * maint.c: Include cli/cli-utils.h.
1087 (maintenance_translate_address): Use skip_spaces.
1088 * mi/mi-parse.c: Include cli/cli-utils.h.
1089 (mi_parse_argv): Use skip_spaces.
1090 (mi_parse): Likewise.
1091 * minsyms.c: Include cli/cli-utils.h.
1092 (msymbol_hash_iw): Use skip_spaces_const.
1093 * objc-lang.c: Include cli/cli-utils.h.
1094 (parse_selector): Use skip_spaces.
1095 (parse_method): Likewise.
1096 * python/python.c: Include cli/cli-utils.h.
1097 (python_interactive_command)[HAVE_PYTHON]: Use skip_spaces.
1098 (python_command)[HAVE_PYTHON]: Likewise.
1099 (python_interactive_command)[!HAVE_PYTHON]: Likewise.
1100 * remote-m32r-sdi.c: Include cli/cli-utils.h.
1101 (m32r_load): Use skip_spaces.
1102 * serial.c: Include cli/cli-utils.h.
1103 (serial_open): Use skip_spaces_const.
1104 * stack.c: Include cli/cli-utils.h.
1105 (parse_frame_specification_1): Use skip_spaces_const.
1106 * symfile.c: Include cli/cli-utils.h.
1107 (set_ext_lang_command): Use skip_spaces.
1108 * symtab.c: Include cli/cli-utils.h.
1109 (rbreak_command): Use skip_spaces.
1110 * thread.c (thread_name_command): Use skip_spaces.
1111 * tracepoint.c (validate_actionline): Use skip_spaces.
1112 (encode_actions_1): Likewise.
1113 (trace_find_range_command): Likewise.
1114 (trace_find_outside_command): Likewise.
1115 (trace_dump_actions): Likewise.
1116
1117 2013-03-07 Pedro Alves <palves@redhat.com>
1118
1119 * c-lang.c (parse_one_string): Cast argument to gdb_byte *.
1120 * expprint.c (print_subexp_standard): Likewise.
1121 * utils.c (host_char_to_target): Likewise.
1122 * valprint.c (generic_emit_char, generic_printstr): Likewise.
1123 * varobj.c (value_get_print_value): Change type of local to char*.
1124 Cast it gdb_byte * in call to language printer.
1125
1126 2013-03-07 Pedro Alves <palves@redhat.com>
1127
1128 * charset.c (struct wchar_iterator) <input>: Change type to 'const
1129 gdb_byte *'.
1130 (make_wchar_iterator): Remove cast to char*.
1131 (wchar_iterate): Change type of local.
1132
1133 2013-03-07 Pedro Alves <palves@redhat.com>
1134
1135 * regcache.c (regcache_xmalloc_1): Call XCALLOC with signed char
1136 for 'regcache->register_status'.
1137
1138 2013-03-07 Pedro Alves <palves@redhat.com>
1139
1140 * breakpoint.c (breakpoint_xfer_memory): Change type of local to
1141 int.
1142
1143 2013-03-07 Pedro Alves <palves@redhat.com>
1144
1145 * stap-probe.c (handle_stap_probe): Add cast to char*.
1146
1147 2013-03-07 Pedro Alves <palves@redhat.com>
1148
1149 * linux-record.c (record_linux_system_call) <gdb_sys_msgrcv,
1150 RECORD_MSGRCV>: Pass a signed variable to
1151 regcache_raw_read_signed, instead of an unsigned one.
1152
1153 2013-03-07 Pedro Alves <palves@redhat.com>
1154
1155 * remote-notif.c (notif_debug): Change type to int.
1156 * remote-notif.h (notif_debug): Likewise.
1157
1158 2013-03-07 Pedro Alves <palves@redhat.com>
1159
1160 * ser-tcp.c (tcp_retry_limit): Change type to unsigned int.
1161
1162 2013-03-07 Pedro Alves <palves@redhat.com>
1163
1164 * remote.c (hex2bin, bin2hex): Move extern declarations to ...
1165 * remote.h (hex2bin, bin2hex): ... here.
1166 * tracepoint.c (hex2bin, bin2hex): Remove extern declarations.
1167
1168 2013-03-07 Eli Zaretskii <eliz@gnu.org>
1169
1170 * utils.c (initialize_utils): Improve doc strings of "set/show
1171 width", "set/show height", and "set/show pagination".
1172
1173 2013-03-06 Keith Seitz <keiths@redhat.com>
1174
1175 * ax-gdb.c (gen_printf): Make FORMAT const.
1176 * ax-gdb.h (gen_printf): Likewise.
1177 * ax-general.c (ax_string): Make STR const.
1178 * ax.h (ax_string): Likewise.
1179
1180 2013-03-06 Doug Evans <dje@google.com>
1181
1182 * elfread.c (elf_symfile_read): Move debugging printf to more
1183 logical location.
1184
1185 2013-03-06 Pedro Alves <palves@redhat.com>
1186
1187 * python/py-utils.c (target_string_to_unicode): Delete function.
1188 * python/python-internal.h (target_string_to_unicode): Delete
1189 declaration.
1190
1191 2013-03-06 Pierre Muller <muller@sourceware.org>
1192
1193 * linespec.c (get_current_search_block): ARI fix, use (void)
1194 for empty parameter list.
1195
1196 2013-03-05 Doug Evans <dje@google.com>
1197
1198 * ada-lang.c (ada_lookup_symbol_list_worker): New function, contents
1199 of old ada_lookup_symbol_list. In !full_search case, don't
1200 search superblocks.
1201 (ada_lookup_symbol_list): Delete arg full_search, all callers
1202 updated. Call ada_lookup_symbol_list_worker.
1203 (ada_iterate_over_symbols): Call ada_lookup_symbol_list_worker.
1204 * ada-lang.h (ada_lookup_symbol_list): Update.
1205 * language.h (language_defn): Update comment for
1206 la_iterate_over_symbols.
1207 * linespec.c (iterate_over_file_blocks): New function.
1208 (iterate_over_all_matching_symtabs): Call it.
1209 (lookup_prefix_sym): Ditto.
1210 (get_current_search_block): New function.
1211 (get_search_block): Delete.
1212 (find_label_symbols): Call get_current_search_block.
1213 (add_matching_symbols_to_info): Call iterate_over_file_blocks.
1214 * symtab.c (iterate_over_symbols): Don't search superblocks.
1215
1216 2013-03-05 Yao Qi <yao@codesourcery.com>
1217
1218 * cli/cli-decode.c (add_setshow_zuinteger_unlimited_cmd): Change
1219 parameter VAR's type from "unsigned int" to "int".
1220 * command.h (var_zuinteger_unlimited): Update its comments.
1221 (add_setshow_zuinteger_unlimited_cmd): Update the declaration.
1222
1223 2013-03-05 Corinna Vinschen <vinschen@redhat.de>
1224
1225 * NEWS: Mention new target x86_64-*-cygwin*.
1226
1227 2013-03-05 Corinna Vinschen <vinschen@redhat.de>
1228
1229 * configure.host: Add x86_64-*-cygwin* as host.
1230 * configure.tgt: Add x86_64-*-cygwin* as target.
1231 * config/i386/cygwin64.mh: New file.
1232
1233 2013-03-04 Jan Kratochvil <jan.kratochvil@redhat.com>
1234
1235 * linespec.c (decode_line_2): Fix duplicate request off by two message.
1236
1237 2013-03-04 Jan Kratochvil <jan.kratochvil@redhat.com>
1238
1239 * linespec.c (struct linespec_canonical_name): New.
1240 (struct linespec_state): Change canonical_names type to it.
1241 (add_sal_to_sals): Change variable canonical_name to canonical. Change
1242 xrealloc element size. Initialize the different CANONICAL fields.
1243 (canonical_to_fullform): New.
1244 (filter_results): Use it. Add variables canonical, fullform and
1245 cleanup.
1246 (struct decode_line_2_item, decode_line_2_compare_items): New.
1247 (decode_line_2): Remove variables iter and item_names, add variables
1248 items and items_count. Modify the code for these new variables.
1249
1250 2013-03-04 Corinna Vinschen <vinschen@redhat.com>
1251
1252 * coff-pe-read.c (read_pe_exported_syms): Don't return without
1253 calling do_cleanup.
1254
1255 2013-03-04 Luis Machado <lgustavo@codesourcery.com>
1256
1257 * tracepoint.c (build_traceframe_info): Add code for byte order.
1258
1259 2013-03-02 Kevin Buettner <kevinb@redhat.com>
1260
1261 * v850-tdep.c: (v850e2_register_name): Revise system register
1262 names to match current V850E2M architecture specifications.
1263 Update register number enum comments too.
1264
1265 2013-03-01 Jiong Wang <jiwang@tilera.com>
1266 Pedro Alves <palves@redhat.com>
1267
1268 * tilegx-tdep.c (tilegx_analyze_prologue): Limit bundle reading
1269 to END_ADDR.
1270 (tilegx_skip_prologue): Limit prologue analysis to section end.
1271
1272 2013-03-01 Jan Kratochvil <jan.kratochvil@redhat.com>
1273
1274 * dwarf2loc.c (call_site_find_chain_1): New variable save_callee_pc,
1275 use it.
1276
1277 2013-03-01 Pedro Alves <palves@redhat.com>
1278
1279 Use gdb_byte for bytes from the program being debugged.
1280
1281 * arm-tdep.c (arm_store_return_value, arm_get_longjmp_target):
1282 Change type of local 'buf' to gdb_byte.
1283 * avr-tdep.c (avr_frame_prev_register, avr_push_dummy_call): Likewise.
1284 * bfin-tdep.c (bfin_push_dummy_call): Likewise.
1285 * cris-tdep.c (cris_sigcontext_addr)
1286 (cris_sigtramp_frame_unwind_cache): Likewise.
1287 * frv-linux-tdep.c (frv_linux_pc_in_sigtramp)
1288 (frv_linux_sigcontext_reg_addr, frv_linux_sigtramp_frame_cache):
1289 Likewise.
1290 * frv-tdep.c (frv_pseudo_register_write, frv_analyze_prologue): Likewise.
1291 * hppa-hpux-tdep.c (hppa32_hpux_find_global_pointer)
1292 (hppa32_hpux_search_dummy_call_sequence)
1293 (hppa_hpux_supply_save_state): Likewise.
1294 * hppa-linux-tdep.c (insns_match_pattern)
1295 (hppa_linux_find_global_pointer): Likewise.
1296 * hppa-tdep.c (hppa_in_function_epilogue_p)
1297 (skip_prologue_hard_way, hppa_frame_cache): Likewise.
1298 * i386-nto-tdep.c (i386nto_sigcontext_addr): Likewise.
1299 * i386fbsd-tdep.c (i386fbsd_supply_uthread)
1300 (i386fbsd_collect_uthread): Likewise.
1301 * ia64-hpux-tdep.c (ia64_hpux_push_dummy_code): Likewise.
1302 * ia64-linux-tdep.c (ia64_linux_sigcontext_register_address): Likewise.
1303 * ia64-tdep.c (examine_prologue, ia64_frame_cache)
1304 (ia64_frame_prev_register, ia64_sigtramp_frame_cache)
1305 (ia64_sigtramp_frame_prev_register, ia64_access_reg)
1306 (ia64_access_rse_reg, ia64_libunwind_frame_this_id)
1307 (ia64_libunwind_frame_prev_register)
1308 (ia64_libunwind_sigtramp_frame_this_id)
1309 (ia64_find_global_pointer_from_dynamic_section)
1310 (find_extant_func_descr, find_func_descr, ia64_dummy_id)
1311 (ia64_unwind_pc): Likewise.
1312 * iq2000-tdep.c (iq2000_store_return_value): Likewise.
1313 * m68hc11-tdep.c (m68hc11_push_dummy_call)
1314 (m68hc11_extract_return_value): Likewise.
1315 * m68klinux-nat.c (fetch_register, store_register): Likewise.
1316 * mep-tdep.c (mep_pseudo_cr32_read, mep_pseudo_cr32_write)
1317 (mep_get_insn, mep_push_dummy_call): Likewise.
1318 * mips-linux-tdep.c (mips_linux_get_longjmp_target)
1319 (mips_linux_in_dynsym_stub): Likewise.
1320 * mn10300-tdep.c (mep_pseudo_cr32_write): Likewise.
1321 * ppc-linux-nat.c (fetch_register, store_register): Likewise.
1322 * regcache.c (dump_endian_bytes): Change type of parameter 'buf'
1323 to gdb_byte.
1324 * remote-mips.c (mips_set_register): Likewise.
1325 * remote-sim.c (gdbsim_fetch_register): Likewise.
1326 * score-tdep.c (score7_fetch_inst): Change type of parameter
1327 'memblock' and local 'buf' to gdb_byte.
1328 (score7_malloc_and_get_memblock): Change return type to gdb_byte.
1329 Change type of local 'buf' to gdb_byte. Adjust.
1330 (score7_adjust_memblock_ptr): Change type of parameter 'memblock'
1331 to gdb_byte**.
1332 (score7_analyze_prologue): Change type of 'memblock' and
1333 'memblock_ptr' locals to gdb_byte*.
1334 * sh64-tdep.c (sh64_extract_return_value)
1335 (sh64_store_return_value): Change type of local 'buf' to gdb_byte.
1336 * solib-darwin.c (darwin_current_sos, darwin_read_exec_load_addr):
1337 * solib-pa64.c (pa64_solib_create_inferior_hook)
1338 (pa64_open_symbol_file_object): Remove local 'buf'.
1339 * solib-som.c (som_solib_create_inferior_hook, link_map_start)
1340 (som_open_symbol_file_object): Likewise.
1341 * solib-spu.c (spu_current_sos): Likewise.
1342 * spu-linux-nat.c (spu_fetch_inferior_registers): Likewise.
1343 * spu-multiarch.c (parse_spufs_run, spu_fetch_registers)
1344 (spu_store_registers): Likewise.
1345 * target.c (debug_print_register): Likewise.
1346 * tic6x-tdep.c (tic6x_get_longjmp_target): Likewise.
1347 * xstormy16-tdep.c (xstormy16_store_return_value)
1348 (xstormy16_push_dummy_call, xstormy16_resolve_jmp_table_entry)
1349 (xstormy16_find_jmp_table_entry): Likewise.
1350
1351 2013-03-01 Jiong Wang <jiwang@tilera.com>
1352
1353 * tilegx-tdep.c (tilegx_get_longjmp_target): New function.
1354 (tilegx_gdbarch_init): Install it.
1355
1356 2013-02-28 Tom Tromey <tromey@redhat.com>
1357
1358 * python/py-arch.c (archpy_disassemble): Use PyInt_Check and
1359 PyLong_Check.
1360
1361 2013-02-28 Doug Evans <dje@google.com>
1362
1363 * python/py-finishbreakpoint.c (bpfinishpy_init): gcc -Wall lint.
1364 * python/python.c (gdbpy_find_pc_line): Ditto.
1365
1366 2013-02-28 Tom Tromey <tromey@redhat.com>
1367
1368 * contrib/excheck.py: New file.
1369 * contrib/exsummary.py: New file.
1370 * contrib/gcc-with-excheck: New file.
1371
1372 2013-02-28 Tom Tromey <tromey@redhat.com>
1373
1374 * python/python.c (gdbpy_print_stack): Call begin_line and
1375 fprintf_filtered inside TRY_CATCH.
1376
1377 2013-02-28 Tom Tromey <tromey@redhat.com>
1378
1379 * python/python.c (gdbpy_find_pc_line): Call find_pc_line
1380 inside TRY_CATCH.
1381
1382 2013-02-28 Tom Tromey <tromey@redhat.com>
1383
1384 * py-finishbreakpoint.c (bpfinishpy_init): Reorganize to call
1385 frame_object_to_frame_info inside TRY_CATCH.
1386
1387 2013-02-28 Tom Tromey <tromey@redhat.com>
1388
1389 * py-block.c (gdbpy_block_for_pc): Call block_for_pc inside
1390 TRY_CATCH.
1391
1392 2013-02-28 Tom Tromey <tromey@redhat.com>
1393
1394 * objfiles.h (ALL_PSPACE_OBJFILES): Remove trailing backlash.
1395
1396 2013-02-27 Corinna Vinschen <vinschen@redhat.com>
1397
1398 * windows-nat.c: Throughout, fix format strings and casts of
1399 printf-like functions to avoid type related warnings on all
1400 platforms.
1401 (handle_output_debug_string): Fetch context information address
1402 from debug string using string_to_core_addr.
1403
1404 2013-02-27 Jiong Wang <jiwang@tilera.com>
1405
1406 * regformats/reg-tilegx.dat (name): Change abi name to "tilegx".
1407 * regformats/reg-tilegx32.dat: New.
1408
1409 2013-02-27 Jiong Wang <jiwang@tilera.com>
1410
1411 * configure.tgt (tilegx-*-linux*): Enable gdbserver.
1412
1413 2013-02-27 Jiong Wang <jiwang@tilera.com>
1414
1415 * configure.tgt (tilegx-*-linux*): Replace whitespace with tab.
1416
1417 2013-02-27 Yao Qi <yao@codesourcery.com>
1418 Pedro Alves <palves@redhat.com>
1419
1420 * tracepoint.c (tfile_trace_find): For tfind
1421 pc/tp/range/outside, look for the next trace frame instead of
1422 always starting from frame 0.
1423
1424 2013-02-26 Anthony Green <green@moxielogic.com>
1425
1426 * configure.tgt: Add support for moxie-*-rtems* target.
1427
1428 2013-02-25 Pedro Alves <palves@redhat.com>
1429
1430 * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Change
1431 warning text.
1432
1433 2013-02-24 Maciej W. Rozycki <macro@codesourcery.com>
1434
1435 * mips-tdep.c (mips32_scan_prologue): Reset frame_offset to zero
1436 if $fp is used as the virtual frame pointer.
1437
1438 2013-02-23 Alan Modra <amodra@gmail.com>
1439
1440 * elfread.c (elf_symtab_read): Do not use udata.p here to find
1441 symbol size.
1442 * ppc64-tdep.c (ppc64_elf_make_msymbol_special): New function.
1443 * ppc64-tdep.h (ppc64_elf_make_msymbol_special): Declare.
1444 * ppc-linux-tdep.c (ppc_linux_init_abi): Set up to use the above.
1445 * ppcfbsd-tdep.c (ppcfbsd_init_abi): Likewise.
1446
1447 2013-02-22 Jan Kratochvil <jan.kratochvil@redhat.com>
1448
1449 Code cleanup.
1450 * elfread.c (build_id_bfd_get): Make the return type const.
1451 (build_id_verify): Make the check parameter const.
1452 (build_id_to_debug_filename): Make the build_id parameter and variable
1453 data const.
1454 (find_separate_debug_file_by_buildid): Make the variable build_id const.
1455
1456 2013-02-21 Alan Modra <amodra@gmail.com>
1457
1458 * elfread.c (build_id_bfd_get): Adjust for elf_tdata changes.
1459
1460 2013-02-20 Siva Chandra Reddy <sivachandra@google.com>
1461
1462 Add a new method 'disassemble' to gdb.Architecture class.
1463 * python/py-arch.c (archpy_disassmble): Implementation of the
1464 new method gdb.Architecture.disassemble.
1465 (arch_object_methods): Add entry for the new method.
1466
1467 2013-02-20 Jiong Wang <jiwang@tilera.com>
1468
1469 * MAINTAINERS (Write After Approval): Add myself to the list.
1470
1471 2013-02-19 Pedro Alves <palves@redhat.com>
1472
1473 Garbage collect 'struct monitor_ops'::load_routine.
1474
1475 * monitor.h (struct monitor_ops) <load_routine>: Remove field.
1476 * monitor.c (monitor_load): No longer call
1477 current_monitor->load_routine.
1478 * dbug-rom.c (init_dbug_cmds): Don't set 'load_routine'.
1479 * m32r-rom.c (init_m32r_cmds): Don't set 'load_routine'.
1480 * ppcbug-rom.c (init_ppc_cmds): Don't set 'load_routine'.
1481
1482 2013-02-19 Pedro Alves <palves@redhat.com>
1483
1484 PR gdb/15161
1485
1486 Harmonize with generic_load.
1487
1488 * monitor.c: Include "readline/readline.h".
1489 (monitor_load): Rename parameter 'file' to 'args'. Use build_argv
1490 instead of sscanf. Use CORE_ADDR/strtoulst instead of unsigned
1491 long/strtol for the 'load_offset' local. Error out if no argument
1492 is given or if too many arguments are given. Tilde expand the
1493 passed in file name.
1494
1495 2013-02-19 Kai Tietz <ktietz@redhat.com>
1496
1497 PR gdb/15161
1498 * symfile.c (load_section_data): Change type of load_offset
1499 to CORE_ADDR.
1500 (generic_load): User strtoulst instead of strtoul for conversion
1501 of load_offset.
1502
1503 2013-02-19 Jiong Wang <jiwang@tilera.com>
1504
1505 * tilegx-tdep.c (tilegx_analyze_prologue): add check for
1506 for return address, "lr" register, saved on stack.
1507 * tilegx-tdep.c (tilegx_frame_cache): update "PC" reg
1508 after we invoke tilegx_analyze_prologue.
1509
1510 2013-02-19 Jiong Wang <jiwang@tilera.com>
1511
1512 * tilegx-tdep.c (itilegx_gdbarch_init): char type should be signed.
1513
1514 2013-02-19 Jiong Wang <jiwang@tilera.com>
1515
1516 * tilegx-tdep.c (tilegx_skip_prologue): Use skip_prologue_using_sal.
1517
1518 2013-02-19 Jiong Wang <jiwang@tilera.com>
1519
1520 * tilegx-tdep.c (INT_SWINT_1_SIGRETURN): New macro.
1521 (tilegx_write_pc): New function.
1522 (tilegx_cannot_reference_register): Return zero if REGNO
1523 is TILEGX_FAULTNUM_REGNUM.
1524 (tilegx_gdbarch_init): Add call to set_gdbarch_write_pc.
1525 (tilegx_register_name): Add handling of "faultnum" register.
1526 * tilegx-tdep.h (enum tilegx_regnum): Add TILEGX_FAULTNUM_REGNUM.
1527 * tilegx-linux-tdep.c (tilegx_linux_supply_regset): Add
1528 handling of TILEGX_FAULTNUM_REGNUM.
1529 * tilegx-linux-nat.c (regmap): Add entry for TILEGX_FAULTNUM_REGNUM.
1530
1531 2013-02-19 Jiong Wang <jiwang@tilera.com>
1532
1533 * tilegx-tdep.c (tilegx_push_dummy_call): args pushed on stack
1534 should be aligned to 64bit.
1535
1536 2013-02-19 Kai Tietz <ktietz@redhat.com>
1537
1538 * windows-nat.c (windows_xfer_memory): Fix debug-output
1539 for LLP64.
1540
1541 2013-02-19 Lei Liu <lei.liu2@windriver.com>
1542
1543 * mips-linux-nat.c (mips64_linux_regsets_store_registers):
1544 Don't check DSP register number if HAVE_DSP is not set.
1545
1546 2013-02-19 Alan Modra <amodra@gmail.com>
1547
1548 * elfread.c (struct build_id): Delete. Use struct elf_build_id
1549 throughout file instead.
1550 (build_id_bfd_get): Update to use new elf_tdata build_id field.
1551 Don't xmalloc return value.
1552 (build_id_verify): Similarly. Don't xfree.
1553 (build_id_to_debug_filename): Update.
1554 (find_separate_debug_file_by_buildid): Update, don't xfree.
1555
1556 2013-02-18 Tom Tromey <tromey@redhat.com>
1557
1558 PR gdb/15102:
1559 * dwarf2read.c (read_subrange_type): Use result of
1560 'check_typedef'.
1561
1562 2013-02-16 Yuanhui Zhang <asmwarrior@gmail.com>
1563
1564 * frame.c: Remove one extra white space after #include
1565 directive.
1566
1567 2013-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
1568
1569 * contrib/cc-with-tweaks.sh: Extend the comment for -p option.
1570
1571 2013-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
1572
1573 * gdb-gdb.gdb.in: Wrap set complaints, b internal_error, b info_command
1574 and dir commands into an if block.
1575
1576 2013-02-15 Sanimir Agovic <sanimir.agovic@intel.com>
1577
1578 * python/py-breakpoint (struct pybp_code): Use int instead of
1579 enum type_code.
1580
1581 2013-02-15 Pedro Alves <pedro@codesourcery.com>
1582 Hafiz Abid Qadeer <abidh@codesourcery.com>
1583
1584 * NEWS: Mention new field "trace-file".
1585 * tracepoint.c (trace_status_mi): Output "trace-file" field.
1586 (tfile_open): Record the trace file's filename in the trace
1587 status.
1588 (tfile_files_info): Mention the name of the trace file.
1589 Check the "filename" field explicitely.
1590 (trace_status_command): Explicitely check "filename" field.
1591 (trace_find_command): Ditto.
1592 (trace_find_pc_command): Ditto.
1593 (trace_find_tracepoint_command): Ditto.
1594 (trace_find_line_command): Ditto.
1595 (trace_find_range_command): Ditto.
1596 (trace_find_outside_command): Ditto.
1597 * tracepoint.h (struct trace_status) <from_file>: Rename it
1598 to "filename" and make it hold the trace file's filename
1599 instead of a boolean.
1600 * remote.c (remote_get_trace_status): Initialize "filename"
1601 field with NULL instead of 0.
1602
1603 2013-02-15 Yao Qi <yao@codesourcery.com>
1604
1605 * remote.c: Fix a typo.
1606
1607 2013-02-14 Pierre Muller <muller@sourceware.org>
1608
1609 * contrib/ari/gdb_ari.sh (GNU/Linux rule): Remove.
1610
1611 2013-02-14 Pedro Alves <palves@redhat.com>
1612
1613 * utils.c (savestring): Don't #undef it. Move function to
1614 common/common-utils.c.
1615 * common/common-utils.c: Include gdb_string.h.
1616 (savestring): Move here from utils.c.
1617 * common/common-utils.h (savestring): Declare.
1618
1619 2013-02-14 Pedro Alves <palves@redhat.com>
1620
1621 * utils.c (savestring): Rename parameter 'size' to 'len'.
1622
1623 2013-02-14 Pedro Alves <palves@redhat.com>
1624 Yufeng Zhang <yufeng.zhang@arm.com>
1625
1626 * aarch64-linux-nat.c (aarch64_init_debug_reg_state): Delete.
1627 (aarch64_inferior_data, struct aarch64_inferior_data):
1628 Delete.
1629 (struct aarch64_process_info): New.
1630 (aarch64_process_list): New global.
1631 (aarch64_find_process_pid, aarch64_add_process)
1632 (aarch64_process_info_get): New functions.
1633 (aarch64_inferior_data_get): Delete.
1634 (aarch64_process_info_get): New function.
1635 (aarch64_forget_process): New function.
1636 (aarch64_get_debug_reg_state): New parameter 'pid'. Reimplement.
1637 (aarch64_linux_prepare_to_resume): Pass the lwp's pid to
1638 aarch64_get_debug_reg_state.
1639 (aarch64_notify_debug_reg_change): Use iterate_over_lwps
1640 instead of linux_nat_iterate_watchpoint_lwps.
1641 (aarch64_linux_new_fork): New function.
1642 (aarch64_linux_child_post_startup_inferior): Use
1643 aarch64_forget_process instead of aarch64_init_debug_reg_state.
1644 (aarch64_handle_breakpoint, aarch64_linux_insert_hw_breakpoint)
1645 (aarch64_linux_remove_hw_breakpoint)
1646 (aarch64_handle_aligned_watchpoint)
1647 (aarch64_handle_unaligned_watchpoint)
1648 (aarch64_linux_insert_watchpoint)
1649 (aarch64_linux_remove_watchpoint)
1650 (aarch64_linux_stopped_data_address): Adjust to pass the current
1651 process id to aarch64_debug_reg_state.
1652 (_initialize_aarch64_linux_nat): Install aarch64_linux_new_fork as
1653 linux_nat_new_fork hook, and aarch64_forget_process as
1654 linux_nat_forget_process hook; remove the call to
1655 register_inferior_data_with_cleanup.
1656
1657 2013-02-14 Pedro Alves <palves@redhat.com>
1658
1659 * eval.c (evaluate_subexp_for_address) <default_case_after_eval,
1660 EVAL_AVOID_SIDE_EFFECTS>: Swap and handle TYPE_CODE_REF before
1661 lval_memory.
1662
1663 2013-02-14 Pedro Alves <pedro@codesourcery.com>
1664 Hafiz Abid Qadeer <abidh@codesourcery.com>
1665
1666 * tracepoint.h (validate_trace_state_variable_name): Declare.
1667 * tracepoint.c (validate_trace_state_variable_name): New.
1668 (trace_variable_command): Parse the trace state variable's name
1669 without using parse_expression. Do several validations.
1670 * mi/mi-main.c (mi_cmd_trace_define_variable): Don't parse the
1671 trace state variable's name with parse_expression. Validate it.
1672
1673 2013-02-14 Yao Qi <yao@codesourcery.com>
1674
1675 * infcmd.c (breakpoint_proceeded): Remove it.
1676
1677 2013-02-14 Yao Qi <yao@codesourcery.com>
1678
1679 * tracepoint.c (end_actions_pseudocommand): Make it static.
1680 (while_stepping_pseudocommand): Likewise.
1681 * tracepoint.h (end_actions_pseudocommand): Remove the
1682 declaration.
1683 (while_stepping_pseudocommand): Likewise.
1684
1685 2013-02-14 Yao Qi <yao@codesourcery.com>
1686
1687 * cli/cli-decode.c (help_cmd): Remove the declaration of
1688 "cmdlist".
1689 (help_all): Likewise.
1690
1691 2013-02-13 Pedro Alves <palves@redhat.com>
1692
1693 * amd64-linux-nat.c (update_debug_registers_callback):
1694 Update comment.
1695 (amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use
1696 iterate_over_lwps.
1697 (amd64_linux_prepare_to_resume): Pass the lwp's pid to
1698 i386_debug_reg_state.
1699 (amd64_linux_new_fork): New function.
1700 (_initialize_amd64_linux_nat): Install amd64_linux_new_fork as
1701 linux_nat_new_fork hook, and i386_forget_process as
1702 linux_nat_forget_process hook.
1703 * i386-linux-nat.c (update_debug_registers_callback):
1704 Update comment.
1705 (i386_linux_dr_set_control, i386_linux_dr_set_addr): Use
1706 iterate_over_lwps.
1707 (i386_linux_prepare_to_resume): Pass the lwp's pid to
1708 i386_debug_reg_state.
1709 (i386_linux_new_fork): New function.
1710 (_initialize_i386_linux_nat): Install i386_linux_new_fork as
1711 linux_nat_new_fork hook, and i386_forget_process as
1712 linux_nat_forget_process hook.
1713 * i386-nat.c (i386_init_dregs): Delete.
1714 (i386_inferior_data, struct i386_inferior_data):
1715 Delete.
1716 (struct i386_process_info): New.
1717 (i386_process_list): New global.
1718 (i386_find_process_pid, i386_add_process, i386_process_info_get):
1719 New functions.
1720 (i386_inferior_data_get): Delete.
1721 (i386_process_info_get): New function.
1722 (i386_debug_reg_state): New parameter 'pid'. Reimplement.
1723 (i386_forget_process): New function.
1724 (i386_cleanup_dregs): Rewrite.
1725 (i386_update_inferior_debug_regs, i386_insert_watchpoint)
1726 (i386_remove_watchpoint, i386_region_ok_for_watchpoint)
1727 (i386_stopped_data_address, i386_insert_hw_breakpoint)
1728 (i386_remove_hw_breakpoint): Adjust to pass the current process id
1729 to i386_debug_reg_state.
1730 (i386_use_watchpoints): Don't register inferior data.
1731 * i386-nat.h (i386_debug_reg_state): Add new 'pid' parameter, and
1732 adjust comment.
1733 (i386_forget_process): Declare.
1734 * linux-fork.c (delete_fork): Call linux_nat_forget_process.
1735 * linux-nat.c (linux_nat_new_fork, linux_nat_forget_process_hook):
1736 New static globals.
1737 (linux_child_follow_fork): Don't call linux_nat_new_thread here.
1738 (add_initial_lwp): New, factored out from ...
1739 (add_lwp): ... this. Don't check the number of lwps before
1740 calling linux_nat_new_thread.
1741 (linux_nat_iterate_watchpoint_lwps): Delete.
1742 (linux_nat_attach): Use add_initial_lwp instead of add_lwp.
1743 (linux_handle_extended_wait): Call the linux_nat_new_fork hook on
1744 forks and vforks.
1745 (linux_nat_wait_1): Use add_initial_lwp instead of add_lwp for the
1746 initial lwp.
1747 (linux_nat_kill, linux_nat_mourn_inferior): Call
1748 linux_nat_forget_process.
1749 (linux_nat_set_new_fork, linux_nat_set_forget_process)
1750 (linux_nat_forget_process): New functions.
1751 * linux-nat.h (linux_nat_iterate_watchpoint_lwps_ftype): Delete
1752 type.
1753 (linux_nat_iterate_watchpoint_lwps): Delete declaration.
1754 (linux_nat_new_fork_ftype, linux_nat_forget_process_ftype): New
1755 types.
1756 (linux_nat_set_new_fork, linux_nat_set_forget_process)
1757 (linux_nat_forget_process): New declarations.
1758
1759 * amd64fbsd-nat.c (super_mourn_inferior): New global.
1760 (amd64fbsd_mourn_inferior): New function.
1761 (_initialize_amd64fbsd_nat): Override to_mourn_inferior.
1762 * windows-nat.c (windows_detach): Call i386_cleanup_dregs.
1763
1764 2013-02-13 Marcus Shawcroft <marcus.shawcroft@arm.com>
1765
1766 * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity):
1767 Adding _().
1768
1769 2013-02-13 Marcus Shawcroft <marcus.shawcroft@arm.com>
1770
1771 * aarch64-linux-nat.c (debug_reg_change_callback)
1772 (aarch64_linux_get_debug_reg_capacity): ARI fix: Replace %llx with
1773 %s and phex().
1774
1775 2013-02-13 Marcus Shawcroft <marcus.shawcroft@arm.com>
1776
1777 * aarch64-linux-nat.c (dr_changed_t): ARI fix: Replace long long
1778 with LONGEST.
1779
1780 2013-02-13 Pedro Alves <palves@redhat.com>
1781 Hafiz Abid Qadeer <abidh@codesourcery.com>
1782
1783 * c-lang.c (c_op_print_tab): Add entry for UNOP_PLUS.
1784
1785 2013-02-12 Tom Tromey <tromey@redhat.com>
1786
1787 PR symtab/11464:
1788 * c-exp.y (lex_one_token): Initialize other fields of yylval on
1789 NAME return.
1790 (classify_inner_name): Remove 'first_name' argument, add
1791 'context'. Remove unused variable.
1792 (yylex): Explicitly maintain the context type. Exit loop earlier
1793 if NAME result is seen.
1794
1795 2013-02-12 Pedro Alves <palves@redhat.com>
1796
1797 * amd64-darwin-tdep.c: Add (C) after Copyright.
1798 * cli/cli-cmds.h: Ditto.
1799 * cli/cli-decode.c: Ditto.
1800 * cli/cli-decode.h: Ditto.
1801 * cli/cli-dump.c: Ditto.
1802 * cli/cli-dump.h: Ditto.
1803 * cli/cli-interp.c: Ditto.
1804 * cli/cli-logging.c: Ditto.
1805 * cli/cli-script.c: Ditto.
1806 * cli/cli-script.h: Ditto.
1807 * cli/cli-setshow.c: Ditto.
1808 * cli/cli-setshow.h: Ditto.
1809 * cli/cli-utils.c: Ditto.
1810 * cli/cli-utils.h: Ditto.
1811 * config/alpha/nm-osf3.h: Ditto.
1812 * config/djgpp/djconfig.sh: Ditto.
1813 * config/i386/nm-fbsd.h: Ditto.
1814 * config/i386/nm-i386gnu.h: Ditto.
1815 * config/nm-linux.h: Ditto.
1816 * config/nm-nto.h: Ditto.
1817 * config/rs6000/nm-rs6000.h: Ditto.
1818 * config/sparc/nm-sol2.h: Ditto.
1819 * darwin-nat-info.c: Ditto.
1820 * dfp.c: Ditto.
1821 * dfp.h: Ditto.
1822 * gdb-demangle.h: Ditto.
1823 * i386-darwin-nat.c: Ditto.
1824 * i386-darwin-tdep.c: Ditto.
1825 * linux-fork.h: Ditto.
1826 * m32c-tdep.c: Ditto.
1827 * microblaze-linux-tdep.c: Ditto.
1828 * microblaze-rom.c: Ditto.
1829 * microblaze-tdep.c: Ditto.
1830 * microblaze-tdep.h: Ditto.
1831 * mips-linux-tdep.h: Ditto.
1832 * ppc-ravenscar-thread.c: Ditto.
1833 * ppc-ravenscar-thread.h: Ditto.
1834 * prologue-value.c: Ditto.
1835 * prologue-value.h: Ditto.
1836 * ravenscar-thread.c: Ditto.
1837 * ravenscar-thread.h: Ditto.
1838 * sparc-ravenscar-thread.c: Ditto.
1839 * sparc-ravenscar-thread.h: Ditto.
1840 * tilegx-linux-tdep.c: Ditto.
1841 * unwind_stop_reasons.def: Ditto.
1842 * windows-nat.h: Ditto.
1843 * xtensa-linux-tdep.c: Ditto.
1844 * xtensa-xtregs.c: Ditto.
1845 * regformats/regdat.sh: Ditto.
1846 * regformats/regdef.h: Ditto.
1847
1848 2013-02-12 Pedro Alves <palves@redhat.com>
1849
1850 * break-catch-sig.c: Update copyright years.
1851
1852 2013-02-11 Siva Chandra Reddy <sivachandra@google.com>
1853
1854 Add support for a destructor for ui_out data and use it to
1855 provide a ui_out destructor.
1856 * ui-out.h: Declare the new ui_out destructor.
1857 (ui_out_impl): Add a field for data destructor in ui_out_impl.
1858 * ui-out.c (default_data_destroy): Add a default data destructor
1859 which does nothing.
1860 (default_ui_out_impl): Set the new data_destroy field to
1861 default_data_destroy
1862 (uo_data_destroy): Local function which invokes the data
1863 destructor if present.
1864 (clear_table): Local function which clears the table data of a
1865 ui_out object.
1866 (ui_out_destroy): Public function which frees a ui_out object.
1867 (ui_out_table_end): Use the new clear_table function.
1868 * cli-out.c (cli_ui_out_impl): Set the new data_destroy field to
1869 NULL.
1870 * mi/mi-out.c (mi_ui_out_impl): Set the new data_destroy field
1871 to NULL.
1872
1873 2013-02-11 Doug Evans <dje@google.com>
1874
1875 * printcmd.c (printf_c_string,printf_wide_c_string): New functions.
1876 (printf_decfloat): New function. Broken out from ui_printf.
1877 Remove unnecessary code to shift the entire format string down.
1878 (printf_pointer): New function.
1879 (ui_printf): Code to print C strings, wide C strings, decfloats,
1880 and pointers moved to separate functions.
1881
1882 2013-02-11 Sergio Durigan Junior <sergiodj@redhat.com>
1883
1884 * valops.c (value_assign): Handling bitfield offset in
1885 `lval_internalvar_component' case.
1886
1887 2013-02-08 Doug Evans <dje@google.com>
1888
1889 * common/format.c (parse_format_string): Fix whitespace.
1890
1891 2013-02-08 Matthew Gretton-Dann <matthew.gretton-dann@linaro.org>
1892
1893 * stack.c (return_command): Work around uninitialized variable
1894 warning.
1895
1896 2013-02-08 Yufeng Zhang <yufeng.zhang@arm.com>
1897
1898 * aarch64-linux-tdep.c (AARCH64_LINUX_SIZEOF_GREGSET): Change the
1899 number of the registers from 36 to 34.
1900
1901 2013-02-08 Marcus Shawcroft <marcus.shawcroft@arm.com>
1902
1903 * NEWS: Mention new AArch64 native and target support.
1904
1905 2013-02-08 Marcus Shawcroft <marcus.shawcroft@arm.com>
1906
1907 * MAINTAINERS (Write After Approval): Add myself.
1908
1909 2013-02-08 Jim MacArthur <jim.macarthur@arm.com>
1910 Marcus Shawcroft <marcus.shawcroft@arm.com>
1911 Nigel Stephens <nigel.stephens@arm.com>
1912 Yufeng Zhang <yufeng.zhang@arm.com>
1913
1914 * aarch64-linux-nat.c: New file.
1915 * config/aarch64/linux.mh: New file.
1916 * configure.host: Add AArch64.
1917 * Makefile.in (ALLDEPFILES): Add aarch64-linux-nat.c.
1918
1919 2013-02-07 Doug Evans <dje@google.com>
1920
1921 * cli/cli-cmds.c (_initialize_cli_cmds): Clarify argument to
1922 disassemble command.
1923
1924 2013-02-07 Marcus Shawcroft <marcus.shawcroft@arm.com>
1925
1926 * aarch64-linux-tdep.c (aarch64_linux_init_abi): Call
1927 set_gdbarch_fetch_tls_load_module_address.
1928
1929 2013-02-06 David S. Miller <davem@davemloft.net>
1930
1931 * sparc-tdep.c (sparc32_return_value): Handle writing return value when
1932 using RETURN_VALUE_ABI_PRESERVES_ADDRESS.
1933 * value.c (struct_return_convention): New function.
1934 (using_struct_return): Implement in terms of struct_return_convention.
1935 * value.h (struct_return_convention): Declare.
1936 * stack.c (return_command): Allow successful overriding of the return
1937 value when RETURN_VALUE_ABI_PRESERVES_ADDRESS.
1938
1939 2013-02-06 Tom Tromey <tromey@redhat.com>
1940
1941 * python/py-type.c (typy_strip_typedefs): Don't call check_typedef
1942 outside of TRY_CATCH.
1943
1944 2013-02-06 Yao Qi <yao@codesourcery.com>
1945
1946 * mi/mi-interp.c: Include "tracepoint.h".
1947 (mi_tsv_modified): Declare.
1948 (mi_tsv_created, mi_tsv_deleted): Update declaration.
1949 (mi_interpreter_init): Call observer_attach_tsv_modified.
1950 (mi_tsv_modified): New.
1951 (mi_tsv_created, mi_tsv_deleted): Update.
1952 * tracepoint.c (trace_variable_command): Call
1953 observer_notify_tsv_modified if the initial value of tsv is
1954 changed.
1955 (delete_trace_state_variable): Call
1956 observer_notify_tsv_deleted earlier.
1957 (trace_variable_command): Caller update.
1958 (create_tsv_from_upload): Likewise.
1959 * observer.sh: Declare "struct trace_state_variable".
1960
1961 * NEWS: Mention the new MI notification "=tsv-modified".
1962
1963 2013-02-05 Doug Evans <dje@google.com>
1964
1965 * completer.c (location_completer): Fix typo in comment.
1966
1967 2013-02-05 Jan Kratochvil <jan.kratochvil@redhat.com>
1968
1969 * breakpoint.c (add_location_to_breakpoint): Insert the location with
1970 ADDRESS sorted.
1971
1972 2013-02-05 Marcus Shawcroft <marcus.shawcroft@arm.com>
1973
1974 * aarch64-tdep.c (aarch64_analyze_prologue): ARI fix:
1975 Refactor if statement to avoid trailing || operator.
1976
1977 2013-02-05 Andreas Tobler <andreast@fgznet.ch>
1978
1979 * NEWS: Add PowerPC FreeBSD as a new native configuration.
1980
1981 2013-02-04 Andreas Tobler <andreast@fgznet.ch>
1982
1983 * Makefile.in (ALL_TARGET_OBS): Add powerpc FreeBSD files.
1984 * configure.host: Add powerpc*-*-freebsd* target.
1985 * configure.tgt: Add target info for powerpc*-*-freebsd*.
1986 * ppcfbsd-nat.c, ppcfbsd-tdep.h, ppcfbsd-tdep.c: New files.
1987 * config/powerpc/fbsd.mh: New file.
1988
1989 2013-02-04 Sergio Durigan Junior <sergiodj@redhat.com>
1990 Denys Vlasenko <dvlasenk@redhat.com>
1991 Pedro Alves <palves@redhat.com>
1992
1993 * gdbarch.sh (elfcore_write_linux_prpsinfo): New F hook.
1994 (struct elf_internal_linux_prpsinfo): Forward declare.
1995 * gdbarch.h, gdbarch.c: Regenerate.
1996 * linux-tdep.c: Include `cli/cli-utils.h'.
1997 (linux_fill_prpsinfo): New function.
1998 (linux_make_corefile_notes): Use linux_fill_prpsinfo. If there's
1999 an elfcore_write_linux_prpsinfo hook, use it, otherwise, use
2000 elfcore_write_linux_prpsinfo32 or elfcore_write_linux_prpsinfo64
2001 depending on gdbarch pointer bitness.
2002 * ppc-linux-tdep.c: Include elf-bfd.h.
2003 (ppc_linux_init_abi): Hook in elfcore_write_ppc_linux_prpsinfo32
2004 on 32-bit.
2005
2006 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
2007 Marcus Shawcroft <marcus.shawcroft@arm.com>
2008 Nigel Stephens <nigel.stephens@arm.com>
2009 Yufeng Zhang <yufeng.zhang@arm.com>
2010
2011 * configure.tgt (aarch64*-*-linux*): Set build_gdbserver=yes.
2012
2013 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
2014 Marcus Shawcroft <marcus.shawcroft@arm.com>
2015 Nigel Stephens <nigel.stephens@arm.com>
2016 Yufeng Zhang <yufeng.zhang@arm.com>
2017
2018 * aarch64-newlib-tdep.c: New file.
2019 * configure.tgt: Add aarch64-newlib-tdep.o to gdb_target_obs of
2020 aarch64*-*-elf.
2021 * defs.h (enum gdb_osabi): Add GDB_OSABI_NEWLIB.
2022 * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-newlib-tdep.o.
2023 (ALLDEPFILES): Add aarch64-newlib-tdep.c.
2024 * osabi.c (gdb_osabi_names): Add "Newlib".
2025
2026 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
2027 Marcus Shawcroft <marcus.shawcroft@arm.com>
2028 Nigel Stephens <nigel.stephens@arm.com>
2029 Yufeng Zhang <yufeng.zhang@arm.com>
2030
2031 * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-linux-tdep.o.
2032 (ALLDEPFILES): Add aarch64-linux-tdep.c.
2033 * aarch64-linux-tdep.c: New file.
2034 * aarch64-linux-tdep.h: New file.
2035 * aarch64-tdep.h (gdbarch_tdep): Define gregset and fpregset.
2036 * configure.tgt: Add aarch64-none-linux-gnu.
2037
2038 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
2039 Marcus Shawcroft <marcus.shawcroft@arm.com>
2040 Nigel Stephens <nigel.stephens@arm.com>
2041 Yufeng Zhang <yufeng.zhang@arm.com>
2042
2043 * Makefile.in (ALL_64_TARGET_OBS): Add arch64-tdep.o.
2044 (HFILES_NO_SRCDIR): Add aarch64-tdep.h.
2045 (ALLDEPFILES): Add aarch64-tdep.c.
2046 * aarch64-tdep.c: New file.
2047 * aarch64-tdep.h: New file.
2048 * configure.tgt: Add AArch64.
2049 * features/Makefile (WHICH): Add aarch64 and aarch64-without-fpu.
2050 (aarch64-expedite): New definition.
2051 * features/aarch64-core.xml: New file.
2052 * features/aarch64-fpu.xml: New file.
2053 * features/aarch64-without-fpu.c: New file (generated).
2054 * features/aarch64-without-fpu.xml: New file.
2055 * features/aarch64.c: New file (generated).
2056 * features/aarch64.xml: New file.
2057 * regformats/aarch64-without-fpu.dat: New file (generated).
2058 * regformats/aarch64.dat: New file (generated).
2059
2060 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
2061
2062 * contrib/expect-read1.c: New file.
2063 * contrib/expect-read1.sh: New file.
2064
2065 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
2066
2067 * dwarf2read.c (file_file_name): New function with code from
2068 file_full_name.
2069 (file_full_name): Move most of the code to file_file_name.
2070 (macro_start_file): Rename variable full_name to file_name and use
2071 file_file_name for it. Add comp_dir parameter to new_macro_table.
2072 * macrocmd.c (show_pp_source_pos): New variable fullname. Replace any
2073 macro_source_file->filename access by macro_source_fullname call.
2074 * macroscope.c (_initialize_macroscope): Update the new_macro_table
2075 caller.
2076 * macrotab.c (struct macro_table): New field comp_dir.
2077 (macro_include): New variables link_fullname and source_fullname.
2078 Replace any macro_source_file->filename access by macro_source_fullname
2079 call.
2080 (macro_lookup_inclusion): Remove the partial filenames checking code.
2081 (check_for_redefinition): New variables source_fullname and
2082 found_key_fullname. Replace any macro_source_file->filename access by
2083 macro_source_fullname call.
2084 (macro_undef): New variables source_fullname and key_fullname. Replace
2085 any macro_source_file->filename access by macro_source_fullname call.
2086 (macro_lookup_definition): New variables retval and source_fullname.
2087 Replace any macro_source_file->filename access by macro_source_fullname
2088 call.
2089 (foreach_macro): New variable key_fullname. Replace any
2090 macro_source_file->filename access by macro_source_fullname call.
2091 (foreach_macro_in_scope): New variable datum_fullname. Replace any
2092 macro_source_file->filename access by macro_source_fullname call.
2093 (new_macro_table): Add parameter comp_dir. Initialize T with it.
2094 (macro_source_fullname): New function.
2095 * macrotab.h (struct macro_source_file): Extent the filename field
2096 comment.
2097 (new_macro_table): New parameter comp_dir, add a comment for it.
2098 (macro_source_fullname): new declaration.
2099
2100 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
2101
2102 * dwarf2read.c (dw2_map_symtabs_matching_filename): Move variable
2103 this_real_name to outer block. Use it also for
2104 compare_filenames_for_search.
2105 (dw2_expand_symtabs_matching): New variable this_real_name. Use it
2106 with dw2_get_real_path for file_matcher, considering also
2107 BASENAMES_MAY_DIFFER.
2108 (file_full_name): Prepend COMP_DIR even for relative lh->INCLUDE_DIRS.
2109
2110 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
2111
2112 * dwarf2read.c (dw2_expand_symtabs_matching): Add basenames parameter
2113 to the file_matcher parameter. Pass 0 to it.
2114 (dwarf2_create_include_psymtab): Copy also DIRNAME.
2115 * psymtab.c (partial_map_symtabs_matching_filename): Drop handling of
2116 NULL psymtab_to_fullname result.
2117 (psymtab_to_fullname): Remove variable r. Never return NULL, assemble
2118 an expected filename instead.
2119 (expand_symtabs_matching_via_partial): Add basenames parameter to the
2120 file_matcher parameter. Call also psymtab_to_fullname, after newly
2121 considering BASENAMES_MAY_DIFFER.
2122 * source.c (rewrite_source_path): Remove static.
2123 * source.h (rewrite_source_path): New declaration.
2124 * symfile.h (struct quick_symbol_functions): Add basenames parameter to
2125 the expand_symtabs_matching field. Comment it.
2126 * symtab.c (file_matches): New function comment. Add parameter
2127 basenames, implement it.
2128 (search_symbols_file_matches): Add basenames parameter. Update the
2129 file_matches caller.
2130 (search_symbols): Match FILES also against symtab_to_fullname.
2131 Optimize it for BASENAMES_MAY_DIFFER.
2132
2133 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
2134
2135 * source.c (print_source_lines_base): Print for TUI also "fullname".
2136 * tui/tui-data.c (init_content_element): Change tui_locator_element
2137 field to full_name.
2138 * tui/tui-data.h (struct tui_locator_element): Likewise.
2139 * tui/tui-disasm.c (tui_show_disassem_and_update_source): Rename
2140 tui_update_locator_filename calls to tui_update_locator_fullname.
2141 Replace symtab->filename refererence by symtab_to_fullname call.
2142 * tui/tui-out.c (tui_field_string): Check for "fullname" now.
2143 * tui/tui-source.c (tui_set_source_content): Change tui_locator_element
2144 field to full_name. Replace symtab->filename refererence by
2145 symtab_to_fullname call.
2146 (tui_show_symtab_source): Rename parameter to fullname. Change
2147 tui_locator_element field to full_name.
2148 * tui/tui-stack.c: Include source.h.
2149 (tui_set_locator_filename): Rename the declaration to ...
2150 (tui_set_locator_fullname): ... here. Rename its parameter to
2151 fullname, updates its comment.
2152 (tui_set_locator_info): Rename its parameter to fullname.
2153 (tui_set_locator_filename): Rename the definition to ...
2154 (tui_set_locator_fullname): ... here. Rename its parameter to
2155 fullname, updates its comment. Change tui_locator_element field to
2156 full_name.
2157 (tui_set_locator_info): Rename its parameter to fullname.
2158 (tui_set_locator_info): Rename callee to tui_set_locator_fullname.
2159 (tui_update_locator_filename): Rename to ...
2160 (tui_update_locator_fullname): ... here. Rename callee to
2161 tui_set_locator_fullname.
2162 (tui_show_frame_info): Replace symtab->filename refererence by
2163 symtab_to_fullname call.
2164 * tui/tui-stack.h (tui_update_locator_filename): Rename to ...
2165 (tui_update_locator_fullname): ... here.
2166 * tui/tui-winsource.c (tui_display_main): Rename the callee to
2167 tui_update_locator_fullname. Replace symtab->filename refererence by
2168 symtab_to_fullname call.
2169 * tui/tui.c (tui_show_source): Rename its parameter to fullname.
2170 Rename the callee to tui_update_locator_fullname.
2171 * tui/tui.h (tui_show_source): Rename its parameter to fullname.
2172
2173 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
2174
2175 * ada-lang.c (user_select_syms): Replace symtab->filename refererences
2176 by symtab_to_filename_for_display calls.
2177 * breakpoint.c (print_breakpoint_location, resolve_sal_pc): Likewise.
2178 (clear_command): New variable sal_fullname, initialize it. Replace
2179 compare_filenames_for_search by filename_cmp with sal_fullname.
2180 (say_where, update_static_tracepoint): Replace symtab->filename
2181 refererences by symtab_to_filename_for_display calls.
2182 * cli/cli-cmds.c (edit_command, list_command, ambiguous_line_spec):
2183 Likewise.
2184 * dwarf2read.c: Include source.h.
2185 (fixup_go_packaging): Replace symtab->filename refererences by
2186 symtab_to_filename_for_display calls.
2187 * linespec.c (add_sal_to_sals): Rename variable filename to fullname.
2188 Replace symtab->filename refererences by symtab_to_filename_for_display
2189 calls.
2190 (create_sals_line_offset, convert_linespec_to_sals): New variable
2191 fullname, initialize it, replace symtab->filename reference by the
2192 variable.
2193 * linux-fork.c: Include source.h.
2194 (info_checkpoints_command): Replace symtab->filename refererences by
2195 symtab_to_filename_for_display calls.
2196 * macroscope.c (sal_macro_scope): Replace symtab->filename refererences
2197 by symtab_to_filename_for_display calls.
2198 * mdebugread.c: Include source.h.
2199 (psymtab_to_symtab_1): Replace symtab->filename refererences by
2200 symtab_to_filename_for_display calls.
2201 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file)
2202 (mi_cmd_file_list_exec_source_files): Likewise.
2203 * printcmd.c: Include source.h.
2204 (build_address_symbolic): Replace symtab->filename refererences by
2205 symtab_to_filename_for_display calls.
2206 * psymtab.c (partial_map_symtabs_matching_filename)
2207 (read_psymtabs_with_fullname): Call compare_filenames_for_search also
2208 with psymtab_to_fullname.
2209 * python/py-symtab.c (stpy_str): Replace symtab->filename refererences
2210 by symtab_to_filename_for_display calls.
2211 (stpy_get_filename): New variable filename, initialize it, use instead
2212 of symtab->filename refererences.
2213 (salpy_str): Make variable filename const char *. Replace
2214 symtab->filename refererences by symtab_to_filename_for_display calls.
2215 * skip.c: Include source.h and filenames.h.
2216 (skip_file_command): Remove const from the symtab variable. Replace
2217 symtab->filename refererences by symtab_to_fullname call.
2218 (function_name_is_marked_for_skip): New variables searched_for_fullname
2219 and fullname. Use them to search also with symtab's fullname.
2220 * source.c (find_source_lines): Replace symtab->filename refererences
2221 by symtab_to_filename_for_display calls.
2222 (print_source_lines_base): New variable filename, use it instead of
2223 symtab->filename. Replace symtab->filename refererences by
2224 symtab_to_filename_for_display calls.
2225 (line_info, forward_search_command): Replace symtab->filename
2226 refererences by symtab_to_filename_for_display calls.
2227 (reverse_search_command): Replace symtab->filename refererences by
2228 symtab_to_filename_for_display calls. New variable filename for it.
2229 * stack.c (frame_info): Likewise.
2230 * symmisc.c: Include source.h.
2231 (dump_objfile, dump_symtab_1, maintenance_print_symbols)
2232 (maintenance_info_symtabs): Replace symtab->filename refererences by
2233 symtab_to_filename_for_display calls.
2234 * symtab.c (iterate_over_some_symtabs): Call
2235 compare_filenames_for_search also with symtab_to_fullname.
2236 (lookup_symbol_aux_quick, basic_lookup_transparent_type_quick): Replace
2237 symtab->filename refererences by symtab_to_filename_for_display calls.
2238 (find_line_symtab): Replace symtab->filename refererences by
2239 symtab_to_filename_for_display calls.
2240 (file_matches): Replace filename_cmp by compare_filenames_for_search.
2241 (print_symbol_info): Make the last parameter const char *. New
2242 variable s_filename. Use it in the function.
2243 (symtab_symbol_info): Make the last_filename variable const char *.
2244 Replace symtab->filename refererences by symtab_to_filename_for_display
2245 calls.
2246 (rbreak_command): New variable fullname. Use it. Replace
2247 symtab->filename refererence by symtab_to_filename_for_display call.
2248 * tracepoint.c (set_traceframe_context, trace_find_line_command)
2249 (print_one_static_tracepoint_marker): Replace symtab->filename
2250 refererences by symtab_to_filename_for_display calls.
2251 * tui/tui-source.c (tui_set_source_content): New variables filename and
2252 s_filename. Replace symtab->filename refererences by this variable.
2253 Replace other symtab->filename refererences by
2254 symtab_to_filename_for_display calls.
2255
2256 2013-02-03 Eldar Gaynetdinov <hal9000ed2k@gmail.com>
2257 Jan Kratochvil <jan.kratochvil@redhat.com>
2258
2259 Add a new variable that controls a way in which filenames are
2260 displayed.
2261 * NEWS (set filename-display): New entry.
2262 * source.c (filename_display_basename, filename_display_relative)
2263 (filename_display_absolute, filename_display_kind_names)
2264 (filename_display_string, show_filename_display_string)
2265 (symtab_to_filename_for_display): New.
2266 (_initialize_source): Added initialization of 'filename-display'
2267 variable.
2268 * source.h (symtab_to_filename_for_display): Added declaration.
2269 * stack.c (print_frame): Added new variable and calling of a new
2270 function and condition with this variable. Changed third argument of
2271 calling of a function.
2272
2273 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
2274
2275 * tui/tui-data.c (init_win_info, tui_del_window, tui_free_window):
2276 Rename field reference filename to fullname.
2277 * tui/tui-data.h (struct tui_source_info): Rename field filename to
2278 fullname. New comment for it.
2279 * tui/tui-source.c (tui_set_source_content): Rename field reference
2280 filename to fullname. Initialize field by symtab_to_fullname now.
2281 * tui/tui-winsource.c (tui_update_breakpoint_info): Rename field
2282 reference filename to fullname. Use symtab_to_fullname during
2283 comparison.
2284
2285 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
2286
2287 Code cleanup.
2288 * dwarf2read.c (dw2_expand_symtabs_with_filename): Rename to ...
2289 (dw2_expand_symtabs_with_fullname): ... here. Rename parameter
2290 filename to fullname. Rename variable this_name to this_fullname.
2291 Lowercase FILENAME_CMP call.
2292 (dw2_find_symbol_file): New comment for the returned string.
2293 (dwarf2_gdb_index_functions): Rename the function to
2294 dw2_expand_symtabs_with_fullname.
2295 * psymtab.c (read_psymtabs_with_filename): Rename to ...
2296 (read_psymtabs_with_fullname): ... here. Rename parameter filename to
2297 fullname.
2298 (psym_functions): Rename the function to read_psymtabs_with_fullname.
2299 * symfile.h (struct quick_symbol_functions): Rename field
2300 expand_symtabs_with_filename to expand_symtabs_with_fullname and its
2301 parameter filename to fullname. Document returned string meaning for
2302 find_symbol_file.
2303 * symtab.c (find_line_symtab): Rename the called function to
2304 expand_symtabs_with_fullname.
2305
2306 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
2307
2308 Code cleanup.
2309 * breakpoint.c (clear_command): Remove variable is_abs, unify the
2310 call of filename_cmp with compare_filenames_for_search.
2311 * dwarf2read.c (dw2_map_symtabs_matching_filename): Remove variable
2312 is_abs, unify the call of FILENAME_CMP with
2313 compare_filenames_for_search. New gdb_asserts for real_path and name.
2314 Unify the call of compare_filenames_for_search with FILENAME_CMP.
2315 * psymtab.c (partial_map_symtabs_matching_filename): Likewise.
2316 * symfile.h (struct quick_symbol_functions): Extend the comment for
2317 map_symtabs_matching_filename.
2318 * symtab.c (compare_filenames_for_search): Remove the function comment
2319 relative path requirement. Handle absolute filenames, with a comment.
2320 (iterate_over_some_symtabs): Remove variable is_abs, unify the call of
2321 FILENAME_CMP with compare_filenames_for_search. New gdb_asserts for
2322 real_path and name. Unify the call of compare_filenames_for_search
2323 with FILENAME_CMP.
2324 (iterate_over_symtabs): New gdb_assert on REAL_PATH.
2325
2326 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
2327
2328 Code cleanup.
2329 * breakpoint.c (print_breakpoint_location): Replace bp_location field
2330 source_file references by symtab field references. Remove variables
2331 sal and fullname.
2332 (momentary_breakpoint_from_master, add_location_to_breakpoint):
2333 (clear_command, say_where): Replace bp_location field source_file
2334 references by symtab field references.
2335 (bp_location_dtor): Remove the source_file reference.
2336 (update_static_tracepoint): Replace bp_location field source_file
2337 references by symtab field references.
2338 (breakpoint_free_objfile): New function.
2339 * breakpoint.h (struct bp_location): Extend the comment for line_number.
2340 Replace the field source_file by field symtab, extend its comment.
2341 (breakpoint_free_objfile): New declaration.
2342 * objfiles.c (free_objfile): Call breakpoint_free_objfile.
2343 * tui/tui-winsource.c (tui_update_breakpoint_info): Replace bp_location
2344 field source_file references by symtab field references.
2345
2346 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
2347
2348 Replace xfullpath calls by gdb_realpath calls.
2349 * cli/cli-cmds.c (find_and_open_script): Remove xfullpath from the
2350 function comment.
2351 * dwarf2read.c (dw2_map_expand_apply): Remove parameter full_path.
2352 Remove it from the iterate_over_some_symtabs call.
2353 (dw2_map_symtabs_matching_filename): Remove parameter full_path.
2354 Remove it from the dw2_map_expand_apply calls, remove a block handling
2355 it.
2356 * psymtab.c (partial_map_expand_apply): Remove parameter full_path.
2357 Remove it from the iterate_over_some_symtabs call.
2358 (partial_map_symtabs_matching_filename): Remove parameter full_path.
2359 Remove it from the partial_map_expand_apply calls, remove a block
2360 handling it. Drop gdb_realpath call and cleanups from the real_path
2361 handling.
2362 * source.c (openp): Drop the comment part about xfullpath. Replace
2363 xfullpath calls by gdb_realpath calls.
2364 (find_and_open_source): Replace xfullpath call by gdb_realpath call.
2365 * symfile.h (struct quick_symbol_functions): Remove parameter full_path
2366 from method map_symtabs_matching_filename and its comment.
2367 * symmisc.c (maintenance_print_msymbols): Replace xfullpath call by
2368 gdb_realpath call.
2369 * symtab.c (iterate_over_some_symtabs): Remove parameter full_path,
2370 remove it also from the function comment, remove a block handling it.
2371 Drop gdb_realpath call and cleanups from the real_path handling.
2372 (iterate_over_symtabs): Drop variable full_path and its use.
2373 * symtab.h (iterate_over_some_symtabs): Remove parameter full_path.
2374 * utils.c (xfullpath): Remove.
2375 * utils.h (xfullpath): Remove.
2376
2377 2013-02-01 Andreas Tobler <andreast@fgznet.ch>
2378
2379 * Makefile.in (ALL_TARGET_OBS): Add ppc64-tdep.o.
2380 (HFILES_NO_SRCDIR): Add ppc64-tdep.h.
2381 (ALLDEPFILES): Add ppc64-tdep.c.
2382 * configure.tgt (powerpc-*-linux* | powerpc64-*-linux*): Add
2383 ppc64-tdep.o to gdb_target_obs.
2384 * ppc64-tdep.h: New file.
2385 * ppc64-tdep.c: New file.
2386 (insn_d, insn_ds, insn_xfx, ppc64_desc_entry_point): Move from
2387 ppc-linux-tdep.c to here.
2388 (PPC64_STANDARD_LINKAGE1_LEN, PPC64_STANDARD_LINKAGE2_LEN)
2389 (PPC64_STANDARD_LINKAGE2_LEN): Likewise and use ARRAY_SIZE macro.
2390 (ppc64_standard_linkage1_target, ppc64_standard_linkage2_target)
2391 (ppc64_standard_linkage3_target, ppc64_skip_trampoline_code): Move
2392 from ppc-linux-tdep.c to here.
2393 (ppc64_convert_from_func_ptr_addr): Rename from
2394 ppc64_linux_convert_from_func_ptr_addr to
2395 ppc64_convert_from_func_ptr_addr and move from ppc-linux-tdep.c to
2396 here.
2397 * rs6000-tdep.c:
2398 (read_insn): Move from ppc-linux-tdep.c to here.
2399 (insns_match_pattern, insn_d_field, insn_ds_field): Move
2400 from ppc-linux-tdep.c to here and rename them with the ppc_ prefix.
2401 * ppc-linux-tdep.c: Include ppc64-tdep.h.
2402 Removed above functions.
2403 (ppc_linux_init_abi): Adjust.
2404
2405 2013-02-01 Aleksandar Ristovski <aristovski@qnx.com>
2406
2407 * ada-valprint.c (ada_print_floating): Remove unused 'len'.
2408
2409 2013-02-01 Aleksandar Ristovski <aristovski@qnx.com>
2410
2411 * ada-lang.c (assign_aggregate): Remove unused 'is_array_aggregate'.
2412
2413 2013-02-01 Pedro Alves <palves@redhat.com>
2414
2415 * dummy-frame.c (deprecated_pc_in_call_dummy): Delete function.
2416 * frame.h (deprecated_pc_in_call_dummy): Delete declaration.
2417
2418 2013-02-01 Jan Kratochvil <jan.kratochvil@redhat.com>
2419
2420 * elfread.c (elf_symfile_read): Limit separate debug info additions to
2421 files with no separate debug info.
2422 * objfiles.c (add_separate_debug_objfile): Add gdb_assert calls.
2423 * symfile.c (read_symbols): Call find_separate_debug_file_in_section
2424 only for files with no separate debug info.
2425
2426 2013-01-31 Tom Tromey <tromey@redhat.com>
2427
2428 * jit.c (jit_program_space_data): Rename from jit_inferior_data;
2429 change type.
2430 (struct jit_program_space_data): Rename from jit_inferior_data.
2431 Update comments.
2432 (get_jit_program_space_data): Rename from get_jit_inferior_data.
2433 Change return type. Attach data to program space.
2434 (jit_program_space_data_cleanup): Rename from
2435 jit_inferior_data_cleanup; change argument type.
2436 (jit_read_descriptor): Change 'inf_data' argument to 'ps_data',
2437 change type.
2438 (jit_register_code): Update.
2439 (jit_update_inferior_cache): Remove.
2440 (jit_breakpoint_deleted): Get jit data from the location's program
2441 space.
2442 (jit_breakpoint_re_set_internal): Rename 'inf_data' argument to
2443 'ps_data', change type.
2444 (jit_inferior_init, jit_breakpoint_re_set_internal)
2445 (jit_event_handler): Update.
2446 (free_objfile_data): Get data from objfile's program space.
2447 (_initialize_jit): Update.
2448
2449 2013-01-31 Tom Tromey <tromey@redhat.com>
2450
2451 PR gdb/13987:
2452 * jit.c (struct jit_inferior_data) <cached_code_address,
2453 jit_breakpoint>: New fields.
2454 (jit_breakpoint_re_set_internal): Fix logging. Only create
2455 breakpoint if cached address has changed.
2456 (jit_update_inferior_cache, jit_breakpoint_deleted): New
2457 functions.
2458 (_initialize_jit): Register breakpoint deleted observer.
2459
2460 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
2461
2462 * infrun.c (handle_syscall_event): Remove unused gdbarch.
2463 (save_infcall_suspend_state): Ifdef out unused inf.
2464 (restore_infcall_suspend_state): Ifdef out unused inf.
2465 * jit.c (jit_register_code): Remove unused i, b, inf_data.
2466 (jit_frame_sniffer): Remove unused inf_data.
2467
2468 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
2469
2470 * c-exp.y (classify_inner_name): Remove unused type.
2471 * c-lang.c (c_printstr): Remove unused byte_order, i, things_printed,
2472 in_quotes, need_comma, wchar_buf, output, cleanup, iter, finished,
2473 need_escape.
2474 (c_get_string): Remove unused kind.
2475 * c-typeprint.c (c_type_print_args): Remove unused i, len, args, table2.
2476
2477 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
2478
2479 * charset.c (intermediate_encoding): Remove unused i.
2480 * completer.c (signal_completer): Remove unused i.
2481 * continuations.c (discard_my_continuations_1): Remove unused
2482 continuation_ptr.
2483 * corelow.c (core_close): Remove unuseD name.
2484 (get_core_siginfo): Remove unused pid.
2485 * cp-namespace.c (cp_lookup_symbol_imports_or_template): Remove unused
2486 i, cps.
2487 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Remove unused base_offset.
2488 (loclist_describe_location): Remove unused first.
2489 * event-top.c (command_line_handler): Remove unused got_eof.
2490 * exec.c (exec_close_1): Remove unused need_symtab_cleanup.
2491 (resize_section_table): Remove unused old_value.
2492 * gdb_bfd.c (gdb_bfd_map_section): Remove unused header.
2493 * gnu-v3-abi.c (compute_vtable_size): Remove unused addr.
2494 * i386-tdep.c (i386_process_record): Remove unused rex.
2495 * infcmd.c (get_return_value): Remove unused uiout.
2496 * jv-lang.c (type_from_class): Remove unused is_array.
2497 * jv-valprint.c (java_val_print): Remove unused i.
2498 * linux-nat.c (linux_nat_stop_lwp): Remove unused ptid.
2499 * linux-thread-db.c (thread_db_find_new_threads_2): Remove unuseD pid.
2500 * m2-typeprint.c (m2_print_type): Remove unused code.
2501 * macroexp.c (get_character_constant): Remove unused body_start.
2502 (macro_stringify): Remove unused result.
2503 * objc-lang.c (find_methods): Remove unused gdbarch.
2504 * objfiles.c (filter_overlapping_sections): Remove unused abfd1, abfd2.
2505 * regcache.c (regcache_cooked_read): Remove unused gdbarch.
2506 * stack.c (print_frame_args): Remove unused summary.
2507 * thread.c (thread_apply_command): Remove unused p.
2508 * valarith.c (value_x_unop): Remove unused mangle_ptr.
2509 * valops.c (search_struct_method): Remove unused skip.
2510 * valprint.c (generic_val_print): Remove unused byte_order.
2511 * varobj.c (varobj_update): Remove unused changed.
2512 * cli/cli-cmds.c (complete_command): Remove unused next_item.
2513 (alias_command): Remove unused c.
2514 * mi/mi-cmd-catch.c (mi_catch_load_unload): Remove unused c.
2515 * mi/mi-main.c (mi_cmd_data_write_register_values): Remove unused
2516 format.
2517 (mi_cmd_data_write_memory): Remove unused word_format.
2518 (mi_cmd_data_write_memory_bytes): Remove unused r.
2519 * python/py-gdb-readline.c (gdbpy_readline_wrapper): Remove unused
2520 p_start, p_end.
2521 * python/python.c (_initialize_python): Remove unused cmd_name, cmd.
2522 * tui/tui-disasm.c (tui_set_disassem_content): Remove unused
2523 line_width.
2524
2525 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
2526
2527 * dwarf2-frame.c (dwarf2_compile_cfa_to_ax): Remove unused num_regs.
2528 * symtab.c (iterate_over_symtabs): Remove unused s.
2529 (find_pc_sect_symtab): Remove unused pspAce.
2530 (find_pc_sect_line): Remove unused alt_symtab.
2531 (find_pcs_for_symtab_line): Remove unused ix, previous_function.
2532 (completion_list_add_name): Remove unused newsize.
2533
2534 2013-01-31 Tom Tromey <tromey@redhat.com>
2535
2536 PR c++/14998:
2537 * dwarf2read.c (read_tag_ptr_to_member_type): Handle
2538 TYPE_CODE_FUNC.
2539
2540 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
2541
2542 * target.c (target_read_string): Remove unused origlen.
2543
2544 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
2545
2546 * auto-load.c (auto_load_expand_dir_vars): Remove unused dir_vec.
2547 * ax-gdb.c (gen_printf): Remove unused expr, i, bot, fr, flen, fmt.
2548 * ax-general.c (ax_print): Remove unused is_float.
2549 * blockframe.c (block_innermost_frame): Remove unused start, end.
2550 * break-catch-sig.c (catch_signal_command): Remove unused gdbarch.
2551
2552 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
2553
2554 * solib-svr4.c (svr4_keep_data_in_core): Remove unused lmo.
2555 (svr4_read_so_list): Remove unused lmo.
2556 * solib-target.c (solib_target_relocate_section_addresses): Remove
2557 unused flags.
2558
2559 2013-01-30 Tom Tromey <tromey@redhat.com>
2560
2561 * hppa-tdep.c (read_unwind_info): Use SECT_OFF_TEXT, not "0".
2562
2563 2013-01-30 Tom Tromey <tromey@redhat.com>
2564
2565 * symfile.c (get_file_crc): Use bfd_calc_gnu_debuglink_crc32.
2566 * utils.c (gnu_debuglink_crc32): Remove.
2567 * utils.h (gnu_debuglink_crc32): Don't declare.
2568
2569 2013-01-30 Tom Tromey <tromey@redhat.com>
2570
2571 * dwarf2read.c (compute_delayed_physnames, read_call_site_scope)
2572 (read_structure_type, read_enumeration_type): Remove cast.
2573
2574 2013-01-30 Tom Tromey <tromey@redhat.com>
2575
2576 * dwarf2read.c (read_namespace_type): Remove cast.
2577 (read_typedef): Likewise.
2578
2579 2013-01-29 Tom Tromey <tromey@redhat.com>
2580
2581 * dwarf2read.c (free_dwo_file): Remove assert.
2582
2583 2013-01-29 Tom Tromey <tromey@redhat.com>
2584
2585 * value.c (deprecated_set_value_modifiable): Remove.
2586 * value.h (deprecated_set_value_modifiable): Remove.
2587
2588 2013-01-28 Doug Evans <dje@google.com>
2589
2590 * dwarf2loc.c (dwarf2_find_location_expression): Don't add base address
2591 to addresses from dwo files.
2592
2593 2013-01-25 Siva Chandra Reddy <sivachandra@google.com>
2594
2595 * valops.c (find_overload_match): Remove unused argument 'lax'.
2596 * value.h: Remove unused argument 'lax' from the declaration of
2597 find_overload_match.
2598 * eval.c (value_subexp_standard): Do not pass a 'lax' argument
2599 to find_overload_match.
2600 * valarith.c (value_user_defined_cpp_op): Do not pass a 'lax'
2601 argument to find_overload_match.
2602
2603 2013-01-25 Tom Tromey <tromey@redhat.com>
2604
2605 * dwarf2read.c (processing_has_namespace_info): Remove.
2606 (struct dwarf2_cu) <processing_has_namespace_info>: New field.
2607 (process_die, read_func_scope, dwarf2_start_symtab)
2608 (new_symbol_full): Update.
2609
2610 2013-01-25 Tom Tromey <tromey@redhat.com>
2611
2612 * cp-namespace.c (cp_set_block_scope): Remove.
2613 * cp-support.h (cp_set_block_scope): Remove.
2614 * dbxread.c: Include block.h.
2615 (cp_set_block_scope): New function.
2616 (process_one_symbol): Update.
2617 * dwarf2read.c (read_func_scope): Use block_set_scope.
2618
2619 2013-01-25 Pedro Alves <palves@redhat.com>
2620
2621 * remote.c (add_current_inferior_and_thread): Tweak comment.
2622
2623 2013-01-25 Tom Tromey <tromey@redhat.com>
2624
2625 * cp-namespace.c (cp_scan_for_anonymous_namespaces): Update.
2626 (cp_add_using_directive): Add 'copy_names' argument.
2627 * cp-support.h (cp_add_using_directive): Update.
2628 (struct using_direct) <import_src, import_dest, alias,
2629 declaration>: Now const.
2630 * dwarf2read.c (read_import_statement): Use obconcat.
2631 Don't copy names passed to cp_add_using_directive.
2632
2633 2013-01-25 Tom Tromey <tromey@redhat.com>
2634
2635 * c-exp.y (qualified_name): Use TYPE_SAFE_NAME.
2636
2637 2013-01-25 Pedro Alves <palves@redhat.com>
2638
2639 * remote.c (stop_reply_extract_thread): New.
2640 (add_current_inferior_and_thread): New parameter 'wait_status'.
2641 Handle it.
2642 (remote_start_remote): Pass wait status to
2643 add_current_inferior_and_thread.
2644 (extended_remote_run): Update comment.
2645 (extended_remote_create_inferior_1): Pass wait status to
2646 add_current_inferior_and_thread.
2647
2648 2013-01-25 Andrew Burgess <aburgess@broadcom.com>
2649 Ulrich Weigand <uweigand@de.ibm.com>
2650
2651 * valarith.c (value_vector_widen): New function for replicating a
2652 scalar into a vector.
2653 (value_binop): Use value_vector_widen to widen scalar to vector
2654 rather than casting, this better matches gcc C behaviour.
2655 * valops.c (value_casst): Update logic for casting between vector
2656 types, and for casting from scalar to vector, try to match gcc C
2657 behaviour.
2658 * value.h (value_vector_widen): Declare.
2659 * opencl-lang.c (opencl_value_cast): New opencl specific casting
2660 function, handle special case for casting scalar to vector.
2661 (opencl_relop): Use opencl_value_cast.
2662 (evaluate_subexp_opencl): Use opencl_value_cast instead of
2663 value_cast, and handle BINOP_ASSIGN, UNOP_CAST, and UNOP_CAST_TYPE
2664 in order to use opencl_value_cast.
2665
2666 2013-01-25 Yao Qi <yao@codesourcery.com>
2667
2668 * event-loop.c: Include "queue.h".
2669 (gdb_event_p): New typedef.
2670 (DECLARE_QUEUE_P): Use.
2671 (DEFINE_QUEUE_P): Use.
2672 (async_queue_event): Remove.
2673 (gdb_event_xfree): New.
2674 (initialize_event_loop): New.
2675 (process_event): Use QUEUE macros.
2676 (event_queue): Remove.
2677 (gdb_wait_for_event): Caller update.
2678 (check_async_event_handlers): Likewise.
2679 (poll_timers): Likewise.
2680 * event-loop.h (initialize_event_loop): Declare.
2681 * event-loop.c (gdb_event_xfree): New.
2682 * top.c (gdb_init): Call initialize_event_loop.
2683
2684 2013-01-25 Yao Qi <yao@codesourcery.com>
2685
2686 * event-loop.c (async_queue_event): Remove one parameter
2687 'position'. Remove code handling 'position' == TAIL.
2688 (gdb_wait_for_event): Caller update.
2689 (check_async_event_handlers): Caller update.
2690 (poll_timers): Caller update.
2691 * event-loop.h (enum queue_position): Remove.
2692
2693 2013-01-25 Maxim Kuvyrkov <maxim@kugelworks.com>
2694
2695 * MAINTAINERS: Update my email.
2696
2697 2013-01-25 Yao Qi <yao@codesourcery.com>
2698
2699 * main.c (print_gdb_help): Remove "--epoch" from the help
2700 message.
2701
2702 2013-01-24 Ulrich Weigand  <uweigand@de.ibm.com>
2703
2704 * symtab.c (skip_prologue_using_sal): Consider a file
2705 change the same as an increased line number
2706
2707 2013-01-24 Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
2708
2709 * MAINTAINERS (Write After Approval): Add myself to the list.
2710
2711 2013-01-24 Tom Tromey <tromey@redhat.com>
2712
2713 * ada-lang.h (ada_decode_symbol): Make return type const.
2714 * ada-lang.c (ada_decode_symbol): Likewise.
2715
2716 2013-01-23 Doug Evans <dje@google.com>
2717
2718 * linespec.c (find_linespec_symbols): Make static.
2719
2720 2013-01-23 Tiago Stürmer Daitx <tdaitx@linux.vnet.ibm.com>
2721
2722 * ppc-sysv-tdep.c (ppc64_sysv_abi_return_value): Set correct
2723 type on float conversion for complex type.
2724
2725 2013-01-23 Siva Chandra Reddy <sivachandra@google.com>
2726
2727 Add a new class gdb.Architecture which exposes GDB's
2728 internal representation of architecture via GDB Python API.
2729 * Makefile.in: Add entries corresponding to the new file
2730 python/py-arch.c.
2731 * NEWS (Python Scripting): Add entries for the new class
2732 gdb.Architecture and the new method gdb.Frame.architecture.
2733 * python/py-arch.c: Implement gdb.Architecture class.
2734 * python/py-frame.c (frapy_arch): Implement the method
2735 gdb.Frame.architecture().
2736 (frame_object_methods): Add 'architecture' to the method table.
2737 * python/python-internal.h: Add declarations of new utility
2738 functions.
2739 * python/python.c (_initialize_python): Initialize
2740 gdb.Architecture class.
2741
2742 2013-01-23 Doug Evans <dje@google.com>
2743
2744 Work around binutils/15021.
2745 * dwarf2read.c (dwarf2_per_cu_data): Split imported_symtabs and
2746 type_unit_group out of union s. All uses updated.
2747 (read_index_from_section): Watch for index version 8.
2748 (follow_die_sig): If using .gdb_index version <= 7, record the TU as
2749 an imported symtab.
2750 (write_psymtabs_to_index): Increment version number to 8.
2751
2752 2013-01-22 Pedro Alves <palves@redhat.com>
2753
2754 * annotate.c (breakpoint_changed): Skip if breakpoint is not
2755 user-visible.
2756
2757 2013-01-22 Pedro Alves <palves@redhat.com>
2758
2759 * annotate.c (annotate_breakpoints_changed): Rename to ...
2760 (annotate_breakpoints_invalid): ... this. Make static.
2761 (breakpoint_changed): Adjust.
2762 (_initialize_annotate): Always install the observers. Install a
2763 "breakpoint_created" observer.
2764 * annotate.h (annotate_breakpoints_changed): Delete declaration.
2765 * breakpoint.c (set_breakpoint_condition)
2766 (breakpoint_set_commands, do_map_commands_command)
2767 (init_raw_breakpoint, clear_command, set_ignore_count)
2768 (enable_breakpoint_disp): No longer call
2769 annotate_breakpoints_changed.
2770
2771 2013-01-22 Pedro Alves <palves@redhat.com>
2772
2773 * annotate.c: Include "inferior.h".
2774 (frames_invalid_emitted)
2775 (breakpoints_invalid_emitted): New globals.
2776 (async_background_execution_p): New function.
2777 (annotate_breakpoints_changed, annotate_frames_invalid): Skip
2778 emitting the annotation if it has already been emitted.
2779 (annotate_display_prompt): New function.
2780 * annotate.h (annotate_display_prompt): New declaration.
2781 * event-top.c: Include annotate.h.
2782 (display_gdb_prompt): Call annotate_display_prompt.
2783
2784 2013-01-22 Pedro Alves <palves@redhat.com>
2785
2786 * annotate.c (ignore_count_changed): Delete.
2787 (annotate_breakpoints_changed): Don't clear ignore_count_changed.
2788 (annotate_ignore_count_change): Delete.
2789 (annotate_stopped): Don't emit a delayed breakpoints-changed
2790 annotation.
2791 * annotate.h (annotate_ignore_count_change): Delete.
2792 * breakpoint.c (bpstat_check_breakpoint_conditions): Don't call
2793 annotate_ignore_count_change.
2794
2795 2013-01-22 Tom Tromey <tromey@redhat.com>
2796
2797 * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>: Only
2798 require_rvalue for a register location.
2799
2800 2013-01-21 Marc Khouzam <marc.khouzam@ericsson.com>
2801
2802 * breakpoint.c (print_one_breakpoint_location): Add MI
2803 field 'thread-groups' when printing a breakpoint.
2804 (output_thread_groups): New function.
2805
2806 2013-01-21 Siva Chandra Reddy <sivachandra@google.com>
2807
2808 * python/lib/gdb/commands/explore.py
2809 (CompoundExplorer.explore_expr): Correct the name of a method
2810 being invoked.
2811 (ExploreTypeCommand.invoke): Add a missing 'return'.
2812
2813 2013-01-21 Tom Tromey <tromey@redhat.com>
2814
2815 * gdb_obstack.h (obconcat): Move declaration here, from...
2816 * symfile.h (obconcat): ... here.
2817 * gdb_obstack.c: New file.
2818 (obconcat): Move from...
2819 * symfile.c (obconcat): ... here.
2820 * Makefile.in (SFILES): Add gdb_obstack.c.
2821 (COMMON_OBS): Add gdb_obstack.o.
2822
2823 2013-01-21 Tom Tromey <tromey@redhat.com>
2824
2825 * symfile.h (obsavestring): Don't declare.
2826 * symfile.c (obsavestring): Remove.
2827 * ada-exp.y: Use obstack_copy0, not obsavestring.
2828 * ada-lang.c: Use obstack_copy0, not obsavestring.
2829 * coffread.c: Use obstack_copy0, not obsavestring.
2830 * cp-namespace.c: Use obstack_copy0, not obsavestring.
2831 * dbxread.c: Use obstack_copy0, not obsavestring.
2832 * dwarf2read.c: Use obstack_copy0, not obsavestring.
2833 * jit.c: Use obstack_copy0, not obsavestring.
2834 * mdebugread.c: Use obstack_copy0, not obsavestring.
2835 * psymtab.c: Use obstack_copy0, not obsavestring.
2836 * stabsread.c: Use obstack_copy0, not obsavestring.
2837 * xcoffread.c: Use obstack_copy0, not obsavestring.
2838
2839 2013-01-21 Tom Tromey <tromey@redhat.com>
2840
2841 * dwarf2read.c (fixup_go_packaging): Save package name
2842 on objfile obstack.
2843 * gdbtypes.c (init_type): Don't copy name.
2844
2845 2013-01-21 Tom Tromey <tromey@redhat.com>
2846
2847 * dwarf2read.c (struct partial_die_info) <name, scope>: Now
2848 const.
2849 (struct attribute) <u.str>: Now const.
2850 (struct fnfieldlist) <name>: Now const.
2851 (dw2_get_file_names_reader, init_cutu_and_read_dies): Update.
2852 (partial_die_parent_scope): Make return type const.
2853 (partial_die_full_name, add_partial_symbol): Update.
2854 (dwarf2_compute_name, dwarf2_full_name, dwarf2_physname): Make
2855 'name' const.
2856 (find_file_and_directory): Make 'name' and 'comp_dir' const.
2857 (read_file_scope, read_func_scope, dwarf2_add_field)
2858 (dwarf2_add_member_fn, read_structure_type)
2859 (process_enumeration_scope, read_array_type, read_module_type)
2860 (read_base_type, read_subrange_type): Update.
2861 (dwarf2_start_symtab): Make 'name' and 'comp_dir' const.
2862 (new_symbol_full, guess_full_die_structure_name): Update.
2863 (dwarf2_canonicalize_name): Return const type. Make 'name' const.
2864 (dwarf2_name): Return const type.
2865 (dwarf_decode_macro_bytes, dwarf_decode_macros): Make 'comp_dir'
2866 const.
2867
2868 2013-01-21 Tom Tromey <tromey@redhat.com>
2869
2870 * gdbtypes.c (init_type): Make 'name' const.
2871 * gdbtypes.h (init_type): Update.
2872
2873 2013-01-21 Tom Tromey <tromey@redhat.com>
2874
2875 * buildsym.c (patch_subfile_names): Use set_last_source_file.
2876 (start_symtab): Make 'name' and 'dirname' const. Use
2877 set_last_source_file.
2878 (restart_symtab, reset_symtab_globals): Use set_last_source_file.
2879 (last_source_file): Define. Now static.
2880 (set_last_source_file, get_last_source_file): New functions.
2881 * buildsym.h (last_source_file): Don't declare.
2882 (start_symtab): Update.
2883 (set_last_source_file, get_last_source_file): Declare.
2884 * coffread.c (complete_symtab): Use set_last_source_file.
2885 (coff_end_symtab): Likewise.
2886 (coff_symtab_read): Use set_last_source_file, get_last_source_file.
2887 * dbxread.c (read_dbx_symtab, read_ofile_symtab): Use
2888 set_last_source_file.
2889 (process_one_symbol): Use get_last_source_file.
2890 * mdebugread.c (parse_partial_symbols): Use set_last_source_file.
2891 (psymtab_to_symtab_1): Use get_last_source_file.
2892 * xcoffread.c (process_linenos): Use get_last_source_file.
2893 (complete_symtab): Use set_last_source_file.
2894 (read_xcoff_symtab): Use set_last_source_file, get_last_source_file.
2895 (scan_xcoff_symtab): Use set_last_source_file.
2896
2897 2013-01-21 Tom Tromey <tromey@redhat.com>
2898
2899 * symtab.c (struct demangled_name_entry) <mangled>: Now const.
2900 (symbol_set_names): Remove casts. Handle field const-ness.
2901
2902 2013-01-21 Tom Tromey <tromey@redhat.com>
2903
2904 * dwarf2read.c (new_symbol_full): Remove cast.
2905 * symtab.c (symbol_set_demangled_name): Make 'name' const.
2906 * symtab.h (symbol_set_demangled_name): Update.
2907
2908 2013-01-21 Tom Tromey <tromey@redhat.com>
2909
2910 * main.c (captured_main): Call bfd_init.
2911
2912 2013-01-21 Tom Tromey <tromey@redhat.com>
2913
2914 * gnu-v2-abi.c (_initialize_gnu_v2_abi): Don't set default ABI.
2915 * gnu-v3-abi.c (_initialize_gnu_v3_abi): Set default ABI.
2916 * minsyms.c (install_minimal_symbols): Don't check for _Z symbols.
2917 * NEWS: Update.
2918
2919 2013-01-21 Jan Kratochvil <jan.kratochvil@redhat.com>
2920
2921 * symmisc.c (maintenance_print_msymbols): Check also ST_DEV.
2922
2923 2013-01-21 Jan Kratochvil <jan.kratochvil@redhat.com>
2924
2925 Fix gdb.fortran/common-block.exp crash in PIE mode.
2926 * dwarf2read.c (new_symbol_full) <DW_TAG_common_block>: Use
2927 LOC_COMMON_BLOCK.
2928 * f-valprint.c (info_common_command_for_block): Expect
2929 LOC_COMMON_BLOCK in gdb_assert.
2930 * symtab.h (struct general_symbol_info): Update comment for the
2931 common_block member.
2932 (domain_enum): Extend comment for the COMMON_BLOCK_DOMAIN member.
2933 (enum address_class): New member LOC_COMMON_BLOCK.
2934
2935 2013-01-18 David Blaikie <dblaikie@gmail.com>
2936
2937 * MAINTAINERS (Write After Approval): Add "David Blaikie".
2938
2939 2013-01-18 Tom Tromey <tromey@redhat.com>
2940
2941 PR c++/14999:
2942 * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>:
2943 Call require_rvalue.
2944
2945 2013-01-18 Yao Qi <yao@codesourcery.com>
2946
2947 * dbxread.c (dbx_psymtab_to_symtab): Delete the declaration.
2948 (dbx_read_symtab): New declaration.
2949 (dbx_psymtab_to_symtab): Delete.
2950 (dbx_read_symtab): Rename from dbx_psymtab_to_symtab.
2951 Rename parameter PST to SELF. Exchanged two parameters.
2952 (start_psymtab): Caller update.
2953 * dwarf2read.c (dwarf2_psymtab_to_symtab): Delete the declaration.
2954 (dwarf2_read_symtab): New declaration.
2955 (dwarf2_psymtab_to_symtab): Delete.
2956 (dwarf2_read_symtab): Rename from dwarf2_psymtab_to_symtab.
2957 Rename parameter PST to SELF. Exchanged two parameters.
2958 (create_partial_symtab): Caller update.
2959 * mdebugread.c (mdebug_psymtab_to_symtab): Delete.
2960 (mdebug_read_symtab): Rename from mdebug_psymtab_to_symtab.
2961 Rename parameter PST to SELF. Exchanged two parameters.
2962 (parse_partial_symbols, new_psymtab): Caller update.
2963 * psympriv.h (struct partial_symtab) <read_symtab>: Exchange
2964 two parameters.
2965 * psymtab.c (psymtab_to_symtab): Caller update.
2966 * xcoffread.c (xcoff_psymtab_to_symtab): Delete.
2967 (xcoff_read_symtab): Rename from xcoff_psymtab_to_symtab.
2968 Rename parameter PST to SELF. Exchanged two parameters.
2969 (xcoff_start_psymtab): Caller update.
2970
2971 2013-01-18 Yao Qi <yao@codesourcery.com>
2972
2973 * infrun.c (proceed): Rename local variable 'oneproc' to
2974 'force_step'.
2975
2976 2013-01-17 Doug Evans <dje@google.com>
2977
2978 * dwarf2read.c (dw2_build_type_unit_groups_reader): Delete.
2979 (dw2_build_type_unit_groups): Delete. All uses updated.
2980
2981 * symtab.h (struct symbol_search): Add comment.
2982
2983 2013-01-17 Jan Kratochvil <jan.kratochvil@redhat.com>
2984
2985 * symtab.c (compare_filenames_for_search): New comment for
2986 HAS_DRIVE_SPEC.
2987
2988 2013-01-17 Tom Tromey <tromey@redhat.com>
2989
2990 * cp-abi.c (cp_abi_completer): Fix typo in assignment.
2991
2992 2013-01-17 Jan Kratochvil <jan.kratochvil@redhat.com>
2993
2994 * symtab.c (iterate_over_some_symtabs): New variable cleanups,
2995 initialize it by existing make_cleanup. Call new do_cleanups.
2996
2997 2013-01-17 Tom Tromey <tromey@redhat.com>
2998
2999 * cp-abi.c (cp_abi_completer): New function.
3000 (_initialize_cp_abi): Set completer for "set cp-abi".
3001
3002 2013-01-17 Tom Tromey <tromey@redhat.com>
3003
3004 * mem-break.c: Remove obsolete comment.
3005 * bfin-tdep.c (bfin_breakpoint_from_pc): Fix comment.
3006
3007 2012-01-17 Sanjoy Das <sanjoy@playingwithpointers.com>
3008
3009 * jit.c (jit_reader_load_command): Interpret the jit reader name
3010 as an absolute path if it begins with a forward slash.
3011
3012 2012-01-17 Sanjoy Das <sanjoy@playingwithpointers.com>
3013
3014 PR gdb/14550
3015
3016 * jit.c (finalize_symtab): Ensure that only the global block has a
3017 NULL superblock.
3018
3019 2013-01-17 Pedro Alves <palves@redhat.com>
3020
3021 * acinclude.m4: Include ../config/plugins.m4,
3022 ../config/largefile.m4 and ../config/lead-dot.m4. Add comments.
3023 * Makefile.in (aclocal_m4_deps): Update.
3024 * aclocal.m4: Renegerate.
3025
3026 2013-01-16 Doug Evans <dje@google.com>
3027
3028 * contrib/cc-with-tweaks.sh: Add references to Fission docs.
3029
3030 2013-01-16 Pedro Alves <palves@redhat.com>
3031 Tom Tromey <tromey@redhat.com>
3032
3033 PR cli/7221:
3034 * NEWS: Add "catch signal".
3035 * breakpoint.c (base_breakpoint_ops): No longer static.
3036 (bpstat_explains_signal): New function.
3037 (init_catchpoint): No longer static.
3038 (base_breakpoint_explains_signal): New function.
3039 (base_breakpoint_ops): Initialize new field.
3040 * breakpoint.h (enum bpstat_signal_value): New.
3041 (struct breakpoint_ops) <explains_signal>: New field.
3042 (bpstat_explains_signal): Remove macro, declare as function.
3043 (base_breakpoint_ops, init_catchpoint): Declare.
3044 * break-catch-sig.c: New file.
3045 * inferior.h (signal_catch_update): Declare.
3046 * infrun.c (signal_catch): New global.
3047 (handle_syscall_event): Update for change to
3048 bpstat_explains_signal.
3049 (handle_inferior_event): Likewise. Always handle random signals
3050 via bpstats.
3051 (signal_cache_update): Check signal_catch.
3052 (signal_catch_update): New function.
3053 (_initialize_infrun): Initialize signal_catch.
3054 * Makefile.in (SFILES): Add break-catch-sig.c.
3055 (COMMON_OBS): Add break-catch-sig.o.
3056
3057 2013-01-16 Tom Tromey <tromey@redhat.com>
3058
3059 * breakpoint.c (print_one_catch_fork, print_one_catch_vfork)
3060 (print_one_catch_solib, print_one_catch_syscall)
3061 (print_one_catch_exec, print_one_exception_catchpoint): Emit
3062 "catch-type".
3063
3064 2013-01-16 Yao Qi <yao@codesourcery.com>
3065
3066 * printcmd.c (current_display_number): Make it static.
3067
3068 2013-01-16 Yao Qi <yao@codesourcery.com>
3069
3070 * infcmd.c (step_once): Don't check '!single_inst' as it was
3071 checked before.
3072
3073 2013-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
3074
3075 * dwarf2read.c (psymtab_include_file_name): Extend the function comment.
3076
3077 2013-01-14 Tom Tromey <tromey@redhat.com>
3078
3079 * cli/cli-decode.c (add_setshow_string_noescape_cmd): Return the
3080 set command.
3081 * command.h (add_setshow_string_noescape_cmd): Update.
3082 * corefile.c (set_gnutarget_command): Remove trailing whitespace.
3083 (complete_set_gnutarget): New function.
3084 (_initialize_core): Set the "set gnutarget" completer.
3085
3086 2013-01-14 Tom Tromey <tromey@redhat.com>
3087
3088 PR symtab/14442:
3089 * c-typeprint.c (cp_type_print_method_args): Handle 'restrict'.
3090 (c_type_print_modifier): Likewise.
3091 * dwarf2read.c (read_tag_restrict_type): New function.
3092 (read_type_die_1): Handle DW_TAG_restrict_type.
3093 * gdbtypes.c (make_restrict_type): New function.
3094 (recursive_dump_type): Handle TYPE_RESTRICT.
3095 * gdbtypes.h (enum type_flag_values): Renumber.
3096 (enum type_instance_flag_value): Add
3097 TYPE_INSTANCE_FLAG_RESTRICT.
3098 (TYPE_RESTRICT): New macro.
3099 (make_restrict_type): Declare.
3100
3101 2013-01-14 Tom Tromey <tromey@redhat.com>
3102
3103 PR symtab/14931:
3104 * psymtab.c (struct psymtab_state): New.
3105 (discard_psymtabs_upto, make_cleanup_discard_psymtabs): New
3106 functions.
3107 * psympriv.h (make_cleanup_discard_psymtabs): Declare.
3108 * dwarf2read.c (dwarf2_build_psymtabs): Catch exceptions.
3109
3110 2013-01-14 Richard Sharman <richard_sharman@mitel.com>
3111 Pedro Alves <palves@redhat.com>
3112
3113 PR remote/14786
3114
3115 * remote.c (remote_threads_info): Make a copy of the reply from
3116 qfThreadInfo and use that instead of rs->buf.
3117
3118 2013-01-14 Yao Qi <yao@codesourcery.com>
3119
3120 * dbxread.c (dbx_psymtab_to_symtab_1): Don't check PST is NULL.
3121 (dbx_psymtab_to_symtab): Likewise.
3122 * dwarf2read.c (dwarf2_psymtab_to_symtab): Likewise.
3123 * mdebugread.c (mdebug_psymtab_to_symtab): Likewise.
3124 * xcoffread.c (xcoff_psymtab_to_symtab_1): Likewise.
3125
3126 2013-01-13 Jan Kratochvil <jan.kratochvil@redhat.com>
3127
3128 * parse.c (parse_exp_in_context): New variable inner_chain. Call
3129 make_cleanup_restore_current_language. Call set_language. Move
3130 OLD_CHAIN and INNER_CHAIN cleanups.
3131 * utils.c (do_restore_current_language)
3132 (make_cleanup_restore_current_language): New functions.
3133 * utils.h (make_cleanup_restore_current_language): New declaration.
3134
3135 2013-01-13 Jan Kratochvil <jan.kratochvil@redhat.com>
3136
3137 * source.c (symtab_to_fullname): Apply rewrite_source_path also for
3138 non-existing files.
3139
3140 * source.c (symtab_to_fullname): Do not prepend DIRNAME for
3141 non-existing files if FILENAME is already absolute.
3142
3143 2013-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
3144
3145 * macrocmd.c (macro_inform_no_debuginfo): Use puts_filtered instead of
3146 fputs_filtered. Append trailing newline.
3147
3148 2013-01-11 Yao Qi <yao@codesourcery.com>
3149 Stan Shebs <stan@codesourcery.com>
3150
3151 * psymtab.c (init_psymbol_list): Clarify the comment.
3152
3153 2013-01-11 Yao Qi <yao@codesourcery.com>
3154
3155 * breakpoint.c (print_one_breakpoint_location): Remove dead code.
3156 (update_dprintf_command_list): Assert that 'printf_line' is
3157 non-null. Remove condition check.
3158
3159 2013-01-10 Jan Kratochvil <jan.kratochvil@redhat.com>
3160
3161 Code cleanup.
3162 * psymtab.c (psymtab_to_fullname, psymtab_to_fullname): Make the return
3163 type const char *.
3164 * tui/tui-source.c (tui_source_is_displayed): Make the parameter fname
3165 const char *.
3166 * tui/tui-source.h (tui_source_is_displayed): Likewise.
3167
3168 2013-01-09 Anthony Green <green@moxielogic.com>
3169
3170 * cp-abi.c (cplus_print_vtable): Don't return value from void
3171 function.
3172 * ada-lang.c (re_set_catch_assert): Ditto.
3173
3174 2013-01-09 Doug Evans <dje@google.com>
3175
3176 * symfile.h (quick_symbol_functions): Delete member
3177 pre_expand_symtabs_matching. All uses removed.
3178 * dwarf2read.c (dw2_lookup_symbol): Implement.
3179 (dw2_do_expand_symtabs_matching): Delete.
3180 (dw2_pre_expand_symtabs_matching): Delete.
3181 (struct dw2_symtab_iterator): New type.
3182 (dw2_symtab_iter_init, dw2_symtab_iter_next): New functions.
3183 (dw2_expand_symtabs_for_function): Rewrite.
3184 (dwarf2_gdb_index_functions): Update.
3185 * psymtab.c (pre_expand_symtabs_matching_psymtabs): Delete.
3186 (psym_functions): Update.
3187
3188 2013-01-09 Tom Tromey <tromey@redhat.com>
3189
3190 * config/pa/hpux.mh (NATDEPFILES): Remove somread.o.
3191 * configure: Rebuild.
3192 * configure.ac: Add somread.o to the build if BFD has SOM
3193 support.
3194 * somread.c: Include som/aout.h, not syms.h.
3195 (som_symtab_read): Use som_external_symbol_dictionary_record.
3196 Unpack records manually.
3197 (_initialize_somread): Declare.
3198
3199 2012-01-08 Mike Frysinger <vapier@gentoo.org>
3200
3201 * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx) [__x86_64__]:
3202 Cast return_address to 64bits.
3203
3204 2013-01-08 Hui Zhu <hui_zhu@mentor.com>
3205
3206 * printcmd.c: Remove define of function output_command.
3207 * tracepoint.c: Remove extern of function output_command.
3208 * valprint.h: (output_command): New extern.
3209
3210 2013-01-07 Tom Tromey <tromey@redhat.com>
3211
3212 * objc-lang.c (objc_emit_char, objc_printchar, objc_printstr):
3213 Remove.
3214 (objc_language_defn): Use c_printchar, c_printstr,
3215 c_emit_char.
3216
3217 2013-01-07 Tom Tromey <tromey@redhat.com>
3218
3219 PR cli/7719:
3220 * NEWS: Update.
3221 * ada-valprint.c (printstr, print_field_values): Remove
3222 "inspect_it" code.
3223 * cp-valprint.c (cp_print_value_fields): Remove "inspect_it"
3224 code.
3225 * jv-valprint.c (java_print_value_fields): Remove "inspect_it"
3226 code.
3227 * m2-lang.c (m2_printstr): Remove "inspect_it" code.
3228 * main.c (captured_main): Remove "epoch" argument.
3229 * objc-lang.c (objc_printstr): Remove "inspect_it" code.
3230 * p-lang.c (pascal_printstr): Remove "inspect_it" code.
3231 * p-valprint.c (pascal_object_print_value_fields): Remove
3232 "inspect_it" code.
3233 * printcmd.c (print_command_1): Remove 'inspect' argument.
3234 (print_command, call_command): Update.
3235 (inspect_command): Remove.
3236 (_initialize_printcmd): Make "inspect" an alias for "print".
3237 * top.c (epoch_interface): Remove.
3238 * top.h (epoch_interface): Remove.
3239 * valprint.c (user_print_options): Update.
3240 (print_converted_chars_to_obstack): Remove "inspect_it" code.
3241 * valprint.h (struct value_print_options) <inspect_it>: Remove
3242 field.
3243
3244 2013-01-04 Tom Tromey <tromey@redhat.com>
3245
3246 * valprint.h (read_string): Add 'extern'.
3247
3248 2013-01-07 Joel Brobecker <brobecker@adacore.com>
3249
3250 * darwin-nat.c: Fix typo in TASK_DYLD_INFO_COUNT macro test
3251 used to decide whether to define darwin_read_dyld_info or not.
3252
3253 2013-01-03 Pierre Muller <muller@sourceware.org>
3254
3255 * main.c (relocate_gdb_directory): Avoid calling stat function
3256 if DIR is empty.
3257
3258 2013-01-03 Yao Qi <yao@codesourcery.com>
3259
3260 * psymtab.c (fixup_psymbol_section): Update declaration.
3261 (fixup_psymbol_section): Remove code returning value.
3262
3263 2013-01-03 Yao Qi <yao@codesourcery.com>
3264
3265 * symtab.h: Remove some out of date comments.
3266 (enum exception_event_kind): Move it ...
3267 * breakpoint.c: ... here.
3268
3269 2013-01-02 Iain Sandoe <developer@sandoe-acoustics.co.uk>
3270
3271 PR gdb/14405
3272 * darwin-nat.c (darwin_read_dyld_info): Only build if
3273 TASK_DYLD_INFO_COUNT is defined.
3274 (darwin_xfer_partial): Call darwin_read_dyld_info only if
3275 TASK_DYLD_INFO_COUNT is defined.
3276
3277 2013-01-02 Tom Tromey <tromey@redhat.com>
3278
3279 * symfile.h (struct ecoff_debug_hack): Remove.
3280 * objfiles.c: Don't include mdebugread.h.
3281
3282 2013-01-02 Tom Tromey <tromey@redhat.com>
3283
3284 * config/i386/darwin.mh (NATDEPFILES): Remove machoread.o.
3285 * configure.ac: Check for Mach-O support in BFD. Update
3286 CONFIG_OBS.
3287 * configure: Rebuild.
3288
3289 2013-01-02 Tom Tromey <tromey@redhat.com>
3290
3291 * acinclude.m4 (GDB_AC_CHECK_BFD): New macro.
3292 * configure.ac: Use GDB_AC_CHECK_BFD.
3293 * configure: Rebuild.
3294
3295 2013-01-01 Maxim Kuvyrkov <maxim.kuvyrkov@gmail.com>
3296
3297 * MAINTAINERS: Update my email.
3298
3299 2013-01-01 Joel Brobecker <brobecker@adacore.com>
3300
3301 * cli/cli-script.h (make_cleanup_free_command_lines): Make extern.
3302
3303 2013-01-01 Joel Brobecker <brobecker@adacore.com>
3304
3305 * rs6000-nat.c (bss_data_overlap): New function.
3306 (vmap_symtab): Use it to adjust the .bss section's offset.
3307
3308 2013-01-01 Joel Brobecker <brobecker@adacore.com>
3309
3310 Update year range in copyright notice of all files.
3311
3312 2013-01-01, 13 Joel Brobecker <brobecker@adacore.com>
3313
3314 * top.c (print_gdb_version): Update copyright year.
3315
3316 For older changes see ChangeLog-2012.
3317 \f
3318 Local Variables:
3319 mode: change-log
3320 left-margin: 8
3321 fill-column: 74
3322 version-control: never
3323 coding: utf-8
3324 End: