make serial_ops const
[binutils-gdb.git] / gdb / ChangeLog
1 2013-12-19 Tom Tromey <tromey@redhat.com>
2
3 * serial.c (serial_ops_p): New typedef.
4 (serial_ops_list): Now a VEC.
5 (serial_interface_lookup): Return const. Use VEC_iterate.
6 (serial_add_interface): Make parameter const.
7 (serial_open): Update.
8 (serial_fdopen_ops): Make 'ops' const.
9 (serial_pipe): Update.
10 * ser-tcp.c (_initialize_ser_tcp): Update.
11 * ser-pipe.c (_initialize_ser_pipe): Update.
12 * ser-unix.c (_initialize_ser_hardwire): Update.
13 * ser-mingw.c (_initialize_ser_windows): Update.
14 * ser-go32.c (dos_ops): Now const. Update.
15 * serial.h (struct serial) <ops>: Now const.
16 (struct serial_ops) <next>: Remove.
17 (serial_add_interface): Make parameter const.
18
19 2013-12-18 Yufeng Zhang <yufeng.zhang@arm.com>
20
21 * aarch64-linux-nat.c (aarch64_linux_set_debug_regs): Set
22 iov.iov_len with the real length in use.
23
24 2013-12-18 Yao Qi <yao@codesourcery.com>
25
26 * target.h (target_xfer_partial_ftype): New typedef.
27 (target_xfer_partial): Update declaration.
28 * auxv.h (memory_xfer_auxv): Likewise.
29 * ia64-hpux-nat.c (super_xfer_partial): Likewise.
30 * ia64-linux-nat.c (super_xfer_partial): Likewise.
31 * linux-nat.c (super_xfer_partial): Likewise.
32 * procfs.c (procfs_xfer_partial): Likewise.
33 * record-full.c (record_full_beneath_to_xfer_partial):
34 (tmp_to_xfer_partial): Likewise.
35 * sparc-nat.c (inf_ptrace_xfer_partial): Likewise.
36 * target.c (default_xfer_partial): Likewise.
37 (current_xfer_partial): Likewise.
38 (target_xfer_partial): Change parameter type to 'gdb_byte *'.
39
40 2013-12-18 Yao Qi <yao@codesourcery.com>
41
42 * linux-nat.c (linux_proc_xfer_partial): Call xsnprintf instead
43 of sprintf.
44 (linux_nat_detach, linux_child_pid_to_exec_file): Likewise.
45 (linux_proc_pending_signals): Likewise.
46
47 2013-12-18 Joel Brobecker <brobecker@adacore.com>
48
49 * value.c (value_entirely_unavailable): ARI fix: Move trailing
50 binary operator to the next line. No actual code change.
51
52 2013-12-17 Pedro Alves <palves@redhat.com>
53
54 * frame.h (enum frame_id_stack_status): New enum.
55 (struct frame_id) <stack_addr>: Adjust comment.
56 <stack_addr_p>: Delete field, replaced with ...
57 <stack_status>: ... this new field.
58 (frame_id_build_unavailable_stack): Declare.
59 * frame.c (frame_addr_hash, fprint_field, outer_frame_id)
60 (frame_id_build_special): Adjust.
61 (frame_id_build_unavailable_stack): New function.
62 (frame_id_build, frame_id_build_wild): Adjust.
63 (frame_id_p, frame_id_eq, frame_id_inner): Adjust to take into
64 account frames with unavailable stack.
65
66 * amd64-tdep.c (amd64_frame_this_id)
67 (amd64_sigtramp_frame_this_id, amd64_epilogue_frame_this_id): Use
68 frame_id_build_unavailable_stack.
69 * dwarf2-frame.c (dwarf2_frame_this_id): Likewise.
70 * i386-tdep.c (i386_frame_this_id, i386_epilogue_frame_this_id)
71 (i386_sigtramp_frame_this_id): Likewise.
72
73 2013-12-17 Andrew Burgess <aburgess@broadcom.com>
74
75 * dwarf2loc.c (read_pieced_value): Mark bits, not bytes
76 unavailable, use correct bit length.
77 * value.c (struct value): Extend comment on unavailable to
78 indicate that it is bit based.
79 (value_bits_available): New function.
80 (value_bytes_available): Call value_bits_available.
81 (value_entirely_available): Check against the bit length, not byte
82 length.
83 (mark_value_bits_unavailable): New function.
84 (mark_value_bytes_unavailable): Move contents to
85 mark_value_bits_unavailable, call to same.
86 (memcmp_with_bit_offsets): New function.
87 (value_available_contents_bits_eq): New function, takes the
88 functionality from value_available_contents_eq but uses
89 memcmp_with_bit_offsets now, and is bit not byte based.
90 (value_available_contents_eq): Move implementation into
91 value_available_contents_bits_eq, call to same.
92 (value_contents_copy_raw): Work on bits, not bytes.
93 (unpack_value_bits_as_long_1): Check availability in bits, not
94 bytes.
95 * value.h (value_bits_available): Declare new function.
96 (mark_value_bits_unavailable): Declare new function.
97
98 2013-12-16 Pierre Muller <muller@sourceware.org>
99
100 Fix compilation error for cygwin native build.
101 * windows-nat.c (windows_ensure_ntdll_loaded) [__USEWIDE]:
102 Call wcstombs.
103
104 2013-12-16 Pedro Alves <palves@redhat.com>
105
106 PR 16329
107 * sol-thread.c (check_for_thread_db): If the target can't run or
108 isn't a core, return without pushing.
109
110 2013-12-15 Joel Brobecker <brobecker@adacore.com>
111
112 Revert the following commit:
113 * solib.c (solib_map_sections): Remove code overwriting
114 SO->SO_NAME with the bfd's filename.
115
116 Make the following changes required after the revert above:
117 * solib-aix.c (solib_aix_bfd_open): Set the filename of the
118 returned bfd to a copy of the synthetic pathname.
119 * solib-darwin.c (darwin_bfd_open): Set the filename of the
120 returned bfd to a copy of PATHNAME.
121
122 2013-12-13 Joel Brobecker <brobecker@adacore.com>
123
124 * ada-lang.c (ada_array_bound_from_type): Move the declaration
125 and assignment of variable "elt_type" inside the else block
126 where it is used. Add two missing check_typedef calls.
127 Fix bug where we got TYPE's TYPE_TARGET_TYPE, where in fact
128 we really wanted to get ELT_TYPE's TYPE_TARGET_TYPE.
129
130 2013-12-13 Joel Brobecker <brobecker@adacore.com>
131
132 * ada-lang.c (ada_array_bound_from_type): Remove unwanted space
133 between 'struct type *' and 'arr_type'.
134
135 2013-12-12 Siva Chandra Reddy <sivachandra@google.com>
136
137 PR python/16113
138 * NEWS (Python Scripting): Add entry for the new feature and the
139 new attribute of gdb.Field objects.
140 * python/py-type.c (gdbpy_is_field): New function
141 (convert_field): Add 'parent_type' attribute to gdb.Field
142 objects.
143 * python/py-value.c (valpy_getitem): Allow subscript value to be
144 a gdb.Field object.
145 (value_has_field): New function
146 (get_field_flag): New function
147 * python/python-internal.h (gdbpy_is_field): Add declaration.
148
149 2013-12-12 Pedro Alves <palves@redhat.com>
150
151 * breakpoint.c (insert_bp_location): Make 'hw_bp_err_string' local
152 const, and remove casts.
153
154 2013-12-12 Pedro Alves <palves@redhat.com>
155
156 * cli/cli-cmds.c (source_script_from_stream) Use have_python
157 instead of catching UNSUPPORTED_ERROR.
158 * exceptions.h (UNSUPPORTED_ERROR): Delete.
159 * python/python.c (source_python_script) [!HAVE_PYTHON]: Internal
160 error if called.
161 * python/python.h (have_python): New static inline function.
162
163 2013-12-11 Doug Evans <dje@google.com>
164
165 * dwarf2read.c (lookup_dwo_cutu): Include name of dwp file in
166 "can't find DWO" warning.
167
168 2013-12-11 Sergio Durigan Junior <sergiodj@redhat.com>
169
170 * break-catch-throw.c (fetch_probe_arguments): Pass selected frame
171 to get_probe_argument_count and evaluate_probe_argument.
172 * probe.c (get_probe_argument_count): Adjust declaration to accept
173 frame. Pass frame to probe_ops's get_probe_argument_count.
174 (evaluate_probe_argument): Likewise, for evaluate_probe_argument.
175 (probe_safe_evaluate_at_pc): Pass frame to
176 get_probe_argument_count and evaluate_probe_argument.
177 * probe.h (struct probe_ops) <get_probe_argument_count,
178 evaluate_probe_argument>: Adjust declarations to accept frame.
179 (get_probe_argument_count, evaluate_probe_argument): Likewise.
180 * solib-svr4.c (solib_event_probe_action): Get current frame.
181 Pass it to get_probe_argument_count.
182 (svr4_handle_solib_event): Get current frame. Pass it to
183 get_probe_argument_count and evaluate_probe_argument.
184 * stap-probe.c (stap_parse_probe_arguments): Adjust declaration to
185 accept gdbarch. Do not obtain it from the probe's objfile.
186 (stap_get_probe_argument_count): Adjust declaration to accept
187 frame. Obtain gdbarch from the frame. Call generic
188 can_evaluate_probe_arguments. Pass gdbarch to
189 stap_parse_probe_arguments.
190 (stap_get_arg): Adjust declaration to accept gdbarch. Pass it to
191 stap_parse_probe_arguments.
192 (stap_evaluate_probe_argument): Adjust declaration to accept
193 frame. Obtain gdbarch from the frame. Pass gdbarch to
194 stap_get_arg.
195 (stap_compile_to_ax): Pass agent_expr's gdbarch to stap_get_arg.
196 (compute_probe_arg): Obtain gdbarch from frame. Pass frame to
197 get_probe_argument_count and evaluate_probe_argument.
198
199 2013-12-10 Doug Evans <dje@google.com>
200
201 PR 16286
202 * c-lang.c (c_get_string): Ignore the declared size of the object
203 if a specific length is requested.
204
205 2013-12-10 Doug Evans <dje@google.com>
206
207 * interps.h (interp_exec_p): Delete.
208 * interps.c (interp_exec_p): Delete.
209 (interp_exec): Update. Assert interp->procs->exec_proc != NULL.
210 * mi/mi-interp.c (mi_cmd_interpreter_exec): Update.
211
212 2013-12-10 Yao Qi <yao@codesourcery.com>
213
214 * amd64-tdep.c (amd64_analyze_stack_align): Call
215 target_read_code instead of target_read_memory.
216 (amd64_analyze_prologue): Call read_code_unsigned_integer
217 instead of read_memory_unsigned_integer. Call read_code
218 instead of read_memory.
219 (amd64_skip_xmm_prologue): Likewise.
220
221 2013-12-10 Yao Qi <yao@codesourcery.com>
222
223 * corefile.c (read_code): New function.
224 (read_code_integer): New function.
225 (read_code_unsigned_integer): New function.
226 * gdbcore.h (read_code): Declare.
227 (read_code_integer): Declare.
228 (read_code_unsigned_integer): Declare.
229 * i386-tdep.c (i386_follow_jump): Call target_read_code instead
230 of target_read_memory. Call read_code_unsigned_integer instead
231 of read_memory_unsigned_integer.
232 (i386_analyze_struct_return): Likewise.
233 (i386_skip_probe): Likewise.
234 (i386_analyze_stack_align): Likewise.
235 (i386_match_pattern): Likewise.
236 (i386_skip_noop): Likewise.
237 (i386_analyze_frame_setup): Likewise.
238 (i386_analyze_register_saves): Likewise.
239 (i386_skip_prologue): Likewise.
240 (i386_skip_main_prologue): Likewise.
241 (i386_frame_cache_1): Likewise.
242
243 2013-12-10 Yao Qi <yao@codesourcery.com>
244
245 * infrun.c: Include "target-dcache.h".
246 (prepare_for_detach): Call target_dcache_invalidate.
247 (wait_for_inferior): Likewise.
248 (fetch_inferior_event): Likewise.
249 (infrun_thread_stop_requested_callback): Likewise. Set
250 overlay_cache_invalid to 1.
251
252 2013-12-10 Joel Brobecker <brobecker@adacore.com>
253
254 * symtab.c (symbol_find_demangled_name): Add handling of
255 Ada symbols.
256
257 2013-12-10 Joel Brobecker <brobecker@adacore.com>
258
259 * mi/mi-main.c (mi_cmd_list_features): add "exec-run-start-option".
260 * NEWS: Expand the entry documenting the new -exec-run --start
261 option to mention the corresponding new entry in the output of
262 "-list-features".
263
264 2013-12-10 Joel Brobecker <brobecker@adacore.com>
265
266 * windows-nat.c (handle_load_dll): Add comments.
267 (windows_ensure_ntdll_loaded): New function.
268 (do_initial_windows_stuff): Use windows_ensure_ntdll_loaded.
269 Add FIXME comment.
270
271 2013-12-08 Joel Brobecker <brobecker@adacore.com>
272
273 GDB 7.6.2 released.
274
275 2013-12-08 Yao Qi <yao@codesourcery.com>
276
277 * stack.c (frame_info): Initialize variable caller_pc.
278
279 2013-12-06 Pedro Alves <palves@redhat.com>
280
281 * frame.c (enum cached_copy_status): New enum.
282 (struct frame_info) <prev_pc.p>: Change type to enum
283 cached_copy_status.
284 (fprint_frame): Handle not saved and unavailable prev_pc values.
285 (frame_unwind_pc_if_available): Delete and merge contents into ...
286 (frame_unwind_pc): ... here. Handle OPTIMIZED_OUT_ERROR. Adjust
287 to use enum cached_copy_status.
288 (frame_unwind_caller_pc_if_available): Delete.
289 (create_new_frame): Adjust.
290 * frame.h (frame_unwind_caller_pc_if_available): Delete
291 declaration.
292 * stack.c (frame_info): Use frame_unwind_caller_pc instead of
293 frame_unwind_caller_pc_if_available, and handle
294 NOT_AVAILABLE_ERROR and OPTIMIZED_OUT_ERROR errors.
295 * valprint.c (val_print_optimized_out): Use val_print_not_saved.
296 (val_print_not_saved): New function.
297 * valprint.h (val_print_not_saved): Declare.
298
299 2013-12-06 Andrew Burgess <aburgess@broadcom.com>
300 Pedro Alves <palves@redhat.com>
301
302 * exceptions.h (errors): Add OPTIMIZED_OUT_ERROR.
303 * dwarf2loc.c (write_pieced_value): Throw OPTIMIZED_OUT_ERROR.
304 * frame.c (frame_unwind_register): Throw OPTIMIZED_OUT_ERROR.
305 * spu-tdep.c (spu_software_single_step): Throw
306 OPTIMIZED_OUT_ERROR.
307 * valops.c (value_assign): Throw OPTIMIZED_OUT_ERROR.
308
309 2013-12-06 Tom Tromey <tromey@redhat.com>
310
311 * objfiles.c (free_objfile): Update comment.
312
313 2013-12-06 Tom Tromey <tromey@redhat.com>
314
315 * objfiles.h (objfile_to_front): Remove.
316 * objfiles.c (objfile_to_front): Remove.
317
318 2013-12-06 Tom Tromey <tromey@redhat.com>
319
320 * minsyms.c (get_symbol_leading_char): Remove unnecessary
321 declaration.
322
323 2013-12-06 Tom Tromey <tromey@redhat.com>
324
325 * psympriv.h (struct partial_symtab) <user>: Move earlier.
326
327 2013-12-06 Tom Tromey <tromey@redhat.com>
328
329 * cli/cli-cmds.c (edit_command): Use paddress, not hex_string.
330 (list_command): Likewise.
331
332 2013-12-06 Tom Tromey <tromey@redhat.com>
333
334 * psymtab.c (allocate_psymtab): Put the filename in the filename
335 bcache.
336
337 2013-12-06 Tom Tromey <tromey@redhat.com>
338
339 * buildsym.c (end_symtab_from_static_block): Use obstack_copy0.
340 * symtab.h (struct symtab) <dirname>: Now const.
341
342 2013-12-06 Tom Tromey <tromey@redhat.com>
343
344 * symfile.c (allocate_symtab): Remove cast.
345 * symtab.h (struct symtab) <filename>: Now const.
346
347 2013-12-06 Tom Tromey <tromey@redhat.com>
348
349 * break-catch-throw.c (fetch_probe_arguments): Use
350 get_probe_argument_count and evaluate_probe_argument.
351 * elfread.c (elf_get_probe_argument_count)
352 (elf_can_evaluate_probe_arguments, elf_evaluate_probe_argument)
353 (elf_compile_to_ax): Remove.
354 (elf_probe_fns): Update.
355 * probe.c (get_probe_argument_count, can_evaluate_probe_arguments)
356 (evaluate_probe_argument): Call method on probe, not via sym
357 functions.
358 * stap-probe.c (compute_probe_arg): Use get_probe_argument_count,
359 evaluate_probe_argument.
360 (compile_probe_arg): Use get_probe_argument_count. Call method on
361 probe, not via sym functions.
362 * symfile-debug.c (debug_sym_get_probe_argument_count)
363 (debug_can_evaluate_probe_arguments)
364 (debug_sym_evaluate_probe_argument, debug_sym_compile_to_ax):
365 Remove.
366 (debug_sym_probe_fns): Remove.
367 * symfile.h (struct sym_probe_fns) <sym_get_probe_argument_count,
368 can_evaluate_probe_arguments, sym_evaluate_probe_argument,
369 sym_compile_to_ax>: Remove fields.
370
371 2013-12-06 Pierre Muller <muller@sourceware.org>
372
373 Fix completion for pascal language.
374 * p-exp.y (exp : field_exp name): Do not call mark_struct_expression.
375 (exp : field_exp name COMPLETE): New rule.
376 (exp : SIZEOF): Set correct current_type.
377 (last_was_structop): Remove static variable.
378 (yylex): Remove saw_structop local variable.
379 Adapt code to removal of variables above.
380
381 2013-12-06 Joel Brobecker <brobecker@adacore.com>
382
383 * frame.c (get_prev_frame_1): Delete variable "this_id".
384 Replace its use by a call to get_frame_id.
385
386 2013-12-05 Anthony Green <green@moxielogic.com>
387
388 * moxie-tdep.c (moxie_software_single_step): New function.
389 (INST2OFFSET): New helper macro.
390 (moxie_gdbarch_init): Call set_gdbarch_software_single_step.
391 (moxie_process_readu): Move this up in the file.
392
393 2013-12-05 Doug Evans <xdje42@gmail.com>
394
395 * auto-load.c (load_auto_scripts_for_objfile): Add some comments.
396
397 2013-12-05 Joel Brobecker <brobecker@adacore.com>
398 Tristan Gingold <gingold@adacore.com>
399
400 * amd64-windows-tdep.c (amd64_windows_frame_decode_insns):
401 Accept version 2. Ignore operations using opcode 6.
402
403 2013-12-05 Joel Brobecker <brobecker@adacore.com>
404
405 * ada-lex.l (find_dot_all): Fix coding style violations.
406
407 2013-12-03 Walfred Tedeschi <walfred.tedeschi@intel.com>
408
409 * NEWS: Add section for Intel(R) Architecture Instructions
410 Extesions mentioning MPX.
411
412 2013-12-03 Joel Brobecker <brobecker@adacore.com>
413
414 * ada-lex.l (find_dot_all): Use strncasecmp instead of strncmp.
415
416 2013-12-03 Joel Brobecker <brobecker@adacore.com>
417
418 * ada-lang.c (create_excep_cond_exprs): Force EXP to NULL
419 when parse_exp_1 threw an error. Add comment.
420
421 2013-12-03 Joel Brobecker <brobecker@adacore.com>
422
423 * NEWS: Mention "-list-features" in the entry documenting
424 the support for the "--language" option.
425
426 2013-12-03 Tom Tromey <tromey@redhat.com>
427 Jan Kratochvil <jan.kratochvil@redhat.com>
428 Doug Evans <dje@google.com>
429 Samuel Bronson <naesten@gmail.com>
430
431 Bring back gdb-add-index as a contrib script.
432 * contrib/gdb-add-index.sh: New file.
433 * NEWS: Note the addition.
434
435 2013-12-03 Samuel Bronson <naesten@gmail.com>
436
437 * MAINTAINERS (Write After Approval): Add myself to the list.
438
439 2013-12-03 Joel Brobecker <brobecker@adacore.com>
440
441 * mi/mi-main.c (mi_cmd_list_features): Remove "ada-exceptions".
442
443 2013-12-03 Joel Brobecker <brobecker@adacore.com>
444
445 * mi/mi-main.c: Remove trailing spaces throughout.
446
447 2013-12-03 Pedro Alves <palves@redhat.com>
448 Joel Brobecker <brobecker@adacore.com>
449
450 * exceptions.h (enum_errors) <UNDEFINED_COMMAND_ERROR>: New enum.
451 * mi/mi-parse.c (mi_parse): Throw UNDEFINED_COMMAND_ERROR instead
452 of a regular error when the GDB/MI command does not exist.
453 * mi/mi-main.c (mi_cmd_list_features): Add
454 "undefined-command-error-code".
455 (mi_print_exception): Print an "undefined-command"
456 error code if EXCEPTION.ERROR is UNDEFINED_COMMAND_ERROR.
457 * NEWS: Add entry documenting the new "code" variable in
458 "^error" result records.
459
460 2013-12-03 Joel Brobecker <brobecker@adacore.com>
461
462 * mi/mi-cmds.h (mi_cmd_info_gdb_mi_command): Declare.
463 * mi/mi-cmd-info.c (mi_cmd_info_gdb_mi_command): New function.
464 * mi/mi-cmds.c (mi_cmds): Add -info-gdb-mi-command command.
465 * mi/mi-main.c (mi_cmd_list_features): Add "info-gdb-mi-command"
466 field to output of "-list-features".
467
468 * NEWS: Add entry for new -info-gdb-mi-command.
469
470 2013-12-02 Doug Evans <dje@google.com>
471 Jan Kratochvil <jan.kratochvil@redhat.com>
472
473 * objfiles.c (allocate_objfile): Save original_name as an absolute
474 path.
475 * objfiles.h (struct objfile): Expand comment on original_name.
476 * source.c (openp): Call gdb_abspath.
477 * utils.c (gdb_abspath): New function.
478 * utils.h (gdb_abspath): Declare.
479
480 2013-12-02 Pedro Alves <palves@redhat.com>
481
482 * dcache.c (dcache_read_line): Use target_read_raw_memory.
483 * target.c (target_read_raw_memory): New function.
484 (target_read_stack, target_write_memory, target_write_raw_memory):
485 Update comment.
486 (target_read_code): Add comment.
487 * target.h (target_read_raw_memory): Declare.
488
489 2013-12-02 Pedro Alves <palves@redhat.com>
490
491 * ctf.c (ctf_start): Use S_IRGRP, S_IXGRP, S_IXOTH
492 unconditionally.
493
494 2013-12-02 Pedro Alves <pedro@codesourcery.com>
495 Maciej W. Rozycki <macro@codesourcery.com>
496
497 * remote.c (putpkt_for_catch_errors): Remove function.
498 (remote_kill): Handle TARGET_CLOSE_ERROR from the kill packet
499 gracefully.
500
501 2013-12-02 Pedro Alves <palves@redhat.com>
502
503 PR remote/15974
504 * remote-notif.c (handle_notification): Return early if no
505 notification is found.
506
507 2013-12-02 Joel Brobecker <brobecker@adacore.com>
508
509 * common/filestuff.c (fdwalk): Add "defined(RLIMIT_NOFILE)"
510 preprocessor check.
511
512 2013-12-02 Joel Brobecker <brobecker@adacore.com>
513
514 * Makefile.in (HFILES_NO_SRCDIR): Remove "common/gdb_dirent.h".
515
516 2013-12-02 Joel Brobecker <brobecker@adacore.com>
517
518 * Makefile.in (HFILES_NO_SRCDIR): Remove "common/gdb_stat.h".
519 * ctf.c (ctf_start): Remove obsolete comment.
520
521 2013-12-02 Joel Brobecker <brobecker@adacore.com>
522
523 * Makefile.in (HFILES_NO_SRCDIR): Remove "common/gdb_string.h".
524
525 2013-11-30 Doug Evans <xdje42@gmail.com>
526
527 * auto-load.h (script_language): New members name, auto_load_enabled.
528 Add missing comments on struct members.
529 (auto_load_objfile_script): Delete.
530 * auto-load.c: #include "cli/cli-cmds.h".
531 (auto_load_gdb_scripts_enabled): New function.
532 (script_language_gdb): Update, add new members.
533 (source_gdb_script_for_objfile): Simplify, auto-load safe-checking
534 and call to maybe_add_script moved to caller.
535 (auto_load_objfile_script_1): Auto-load safe-checking and
536 call to maybe_add_script moved here.
537 (auto_load_objfile_script): Make static. Early exit if support for
538 scripting language hasn't been compiled in, or auto-loading has been
539 disabled.
540 (source_section_scripts): Argument "source_name" renamed to
541 "section_name". All uses updated. Replace uses of AUTO_SECTION_NAME
542 with section_name. Skip loading script if support for scripting
543 language hasn't been compiled in, or auto-loading has been disabled.
544 Call language->source_script_for_objfile instead of calling
545 source_python_script_for_objfile directly.
546 (load_auto_scripts_for_objfile): Update.
547 * python/py-auto-load.c: Delete #include "cli/cli-cmds.h".
548 (gdbpy_load_auto_script_for_objfile): Delete.
549 (auto_load_python_scripts_enabled): New function.
550 (script_language_python): Update, add new members.
551 (gdbpy_script_language_defn): New function.
552 * python/python.h (gdbpy_load_auto_scripts_for_objfile): Delete.
553 (gdbpy_script_language_defn): Declare.
554
555 * auto-load.c (AUTO_SECTION_NAME): Moved here and renamed from
556 py-auto-load.c, GDBPY_AUTO_SECTION_NAME.
557 (source_section_scripts): Moved here from py-auto-load.c.
558 (auto_load_section_scripts): Ditto.
559 * python/py-auto-load.c (GDBPY_AUTO_SECTION_NAME): Moved to
560 auto-load.c, renamed AUTO_SECTION_NAME.
561 (source_section_scripts, auto_load_section_scripts): Moved to
562 auto-load.c.
563
564 2013-11-30 Yao Qi <yao@codesourcery.com>
565
566 * remote.c (getpkt_or_notif_sane_1): Fix typo "checksm".
567
568 2013-11-29 Sergio Durigan Junior <sergiodj@redhat.com>
569
570 * gdbarch.sh: Remove include of "gdb_string.h", replace by
571 <string.h>.
572
573 2013-11-29 Doug Evans <xdje42@gmail.com>
574
575 * python/py-auto-load.c (source_section_scripts): Move comment to
576 more relevant location.
577
578 Whitespace cleanup.
579 * python/py-breakpoint.c: Remove trailing whitespace.
580 * python/py-cmd.c: Ditto.
581 * python/py-evts.c: Ditto.
582 * python/py-finishbreakpoint.c: Ditto.
583 * python/py-frame.c: Ditto.
584 * python/py-function.c: Ditto.
585 * python/py-inferior.c: Ditto.
586 * python/py-infthread.c: Ditto.
587 * python/py-param.c: Ditto.
588 * python/py-prettyprint.c: Ditto.
589 * python/py-symbol.c: Ditto.
590 * python/py-type.c: Ditto.
591 * python/py-utils.c: Ditto.
592 * python/py-value.c: Ditto.
593 * python/python-internal.h: Ditto.
594 * python/python.c: Ditto.
595
596 2013-11-29 Pedro Alves <palves@redhat.com>
597
598 * unwind_stop_reasons.def (UNWIND_NULL_ID): Update comment.
599
600 2013-11-29 Pedro Alves <palves@redhat.com>
601
602 * breakpoint.c (build_target_condition_list): Release previous
603 conditions.
604 (build_target_command_list): Release previous commands.
605 (bp_location_dtor): Release target conditions and commands.
606 * remote.c (remote_add_target_side_condition): Don't release
607 conditions.
608 (remote_add_target_side_commands): Don't release commands.
609
610 2013-11-29 Yao Qi <yao@codesourcery.com>
611 Pedro Alves <palves@redhat.com>
612
613 * dcache.c (dcache_read_line): Use current_target.beneath
614 instead of &current_target.
615 * target.c (memory_xfer_partial_1): Factor code out to ...
616 (raw_memory_xfer_partial): ... it. New function.
617 (target_xfer_partial): Call raw_memory_xfer_partial if OBJECT
618 is TARGET_OBJECT_RAW_MEMORY.
619
620 2013-11-28 Doug Evans <xdje42@gmail.com>
621
622 * breakpoint.h (gdbpy_breakpoint_object): Renamed from
623 breakpoint_object. All uses updated.
624 * python/python-internal.h (gdbpy_breakpoint_object): Renamed from
625 breakpoint_object. All uses updated.
626 * python.c (*): All uses of breakpoint_object updated.
627 * python.h (*): All uses of breakpoint_object updated.
628 * python/py-breakpoint.c (*): All uses of breakpoint_object updated.
629 * python/py-finishbreakpoint.c (*): Ditto.
630
631 2013-11-28 Doug Evans <xdje42@gmail.com>
632
633 * configure.ac: Add comments delineating libpython and libmcheck.
634 * configure: Regenerate.
635
636 2013-11-28 Andrew Burgess <aburgess@broadcom.com>
637 Pedro Alves <palves@redhat.com>
638
639 * valprint.c (value_check_printable): If the value is entirely
640 unavailable, print a single "<unavailable>" instead of printing
641 all subfields.
642
643 2013-11-28 Pedro Alves <palves@redhat.com>
644
645 * frame.c (get_prev_frame_1) <stop_reason != UNWIND_NO_REASON>:
646 Add "set debug frame" output.
647 (frame_stop_reason_symbol_string): New function.
648
649 2013-11-28 Pedro Alves <palves@redhat.com>
650
651 * frame-unwind.c (default_frame_unwind_stop_reason): Return
652 UNWIND_OUTERMOST if the frame's ID is outer_frame_id.
653 * frame.c (get_prev_frame_1): Remove outer_frame_id check.
654
655 2013-11-28 Pedro Alves <palves@redhat.com>
656
657 * frame.c (get_prev_frame_1): If the frame id is outer_frame_id,
658 set the unwind stop reason to UNWIND_OUTERMOST, not
659 UNWIND_NULL_ID. Remove explicit check for sentinel frame.
660
661 2013-11-28 Pedro Alves <palves@redhat.com>
662
663 * frame.c (frame_unwind_register): Say the register was "not
664 saved" instead of "optimized out".
665
666 2013-11-27 Steffen Sledz <sledz@dresearch-fe.de>
667
668 PR 16152
669 * configure: Rebuild.
670 * configure.ac: Tighten cygwin detection check.
671
672 2013-11-27 Pedro Alves <palves@redhat.com>
673
674 * frame-unwind.c (frame_unwind_got_optimized): Use the type of the
675 register in the previous frame's arch.
676
677 2013-11-27 Pedro Alves <palves@redhat.com>
678
679 * frame-unwind.c (frame_unwind_got_optimized): Return
680 an lval_register value instead of a not_lval value.
681
682 2013-11-27 Andrew Burgess <aburgess@broadcom.com>
683
684 * frame.c: Include "valprint.h".
685 (frame_unwind_register_value): Use value_optimized_out.
686 * value.c (value_fetch_lazy): Likewise.
687
688 2013-11-26 Andrew Burgess <aburgess@broadcom.com>
689
690 * value.c (allocate_optimized_out_value): Mark value as non-lazy.
691
692 2013-11-26 Tom Tromey <tromey@redhat.com>
693
694 * dwarf2-frame.c (dwarf2_frame_cache): Revert patch from
695 2013-11-22.
696
697 2013-11-26 Walfred Tedeschi <walfred.tedeschi@intel.com>
698
699 * i386-xstate.h (I386_XSTATE_MPX): New Macro.
700 (I386_XSTATE_MPX_MASK): Makes use of I386_XSTATE_MPX.
701 (HAS_MPX): New macro.
702 (HAS_AVX): New macro.
703 (I386_XSTATE_SIZE): Uses HAS_MPX and HAS_AVX.
704
705 2013-11-25 Keith Seitz <keiths@redhat.com>
706
707 PR c++/14819
708 * c-exp.y (classify_inner_name): If no matching symbol was
709 found, try looking up the token as a base class.
710 Likewise if a constructor was found.
711 * cp-namespace.c (find_type_baseclass_by_name): New function.
712 * cp-support.h (find_type_baseclass_by_name): Declare.
713 * valops.c (value_struct_elt_for_reference): If we get
714 a non-static field, try to get a value based on the
715 current instance, if any.
716
717 2013-11-24 Yao Qi <yao@codesourcery.com>
718
719 * disasm.c (dis_asm_read_memory): Call target_read_code
720 instead of target_read_memory.
721
722 2013-11-24 Yao Qi <yao@codesourcery.com>
723
724 * NEWS: Add note on new "set code-cache" option.
725 * target-dcache.c (code_cache_enabled_1): New variable.
726 (code_cache_enabled): New variable.
727 (show_code_cache, set_code_cache): New function.
728 (code_cache_enabled_p): New function.
729 (_initialize_target_dcache): Register command.
730 * target-dcache.h (code_cache_enabled_p): Declare.
731 * target.c (memory_xfer_partial_1):Handle
732 TARGET_OBJECT_CODE_MEMORY and code_cache_enabled.
733 (target_read_code): New function.
734 * target.h (enum target_object) <TARGET_OBJECT_CODE_MEMORY>:
735 New.
736 (target_read_code): Declare.
737
738 2013-11-24 Yao Qi <yao@codesourcery.com>
739
740 * target-dcache.c (stack_cache_enabled_p_1): Rename to ...
741 (stack_cache_enabled_1): ... this. New variable.
742 (stack_cache_enabled_p): Rename to ...
743 (stack_cache_enabled): ... this. New variable.
744 (set_stack_cache_enabled_p): Rename to ...
745 (set_stack_cache): ... this. Update caller.
746 (show_stack_cache_enabled_p): Rename to ...
747 (show_stack_cache): ... this. Update caller.
748 (stack_cache_enabled): Rename to ...
749 (stack_cache_enabled_p): ... this. Update caller.
750 (_initialize_target_dcache): Replace "data cache" with
751 "target memory cache".
752 * target-dcache.h (stack_cache_enabled): Remove declaration.
753 (stack_cache_enabled_p): Add declaration.
754
755 2013-11-23 Doug Evans <xdje42@gmail.com>
756
757 * python/py-frame.c (gdbpy_initialize_frames): Remove FIRST_ERROR,
758 superfluous.
759
760 2013-11-23 Doug Evans <xdje42@gmail.com>
761
762 * python/py-frame.c (frapy_block): Fix error message text.
763
764 2013-11-23 Doug Evans <xdje42@gmail.com>
765
766 * cli/cli-script.c (multi_line_command_p): New function.
767 (recurse_read_control_structure, read_command_lines_1): Call it.
768 (execute_control_command): Consistently have a blank line between
769 each case.
770
771 2013-11-22 Sterling Augustine <saugustine@google.com>
772
773 PR gdb/16196:
774 * valprint.c (read_string): Set new variable fetchlen based on
775 fetchlimit and size. Use it in call to partial_memory_read.
776 Update comment.
777
778 2013-11-22 Tom Tromey <tromey@redhat.com>
779
780 PR backtrace/16155:
781 * dwarf2-frame.c (dwarf2_frame_cache): Set undefined_retaddr if
782 the return address column is unspecified.
783
784 2013-11-22 Tom Tromey <tromey@redhat.com>
785 Pedro Alves <palves@redhat.com>
786
787 PR backtrace/16155
788 * value.c (value_fetch_lazy): Internal error if
789 get_frame_register_value returns the same register.
790
791 2013-11-22 Pedro Alves <palves@redhat.com>
792 Tom Tromey <tromey@redhat.com>
793
794 * frame.c (frame_stash_add): Now returns whether a frame with the
795 same ID was already known.
796 (compute_frame_id): New function, factored out from get_frame_id.
797 (get_frame_id): No longer lazilly compute the frame id here.
798 (get_prev_frame_if_no_cycle): New function. Detects wider stack
799 cycles.
800 (get_prev_frame_1): Use it instead of get_prev_frame_raw directly,
801 and checking for stack cycles here.
802
803 2013-11-22 Pedro Alves <palves@redhat.com>
804
805 PR 16155
806 * frame.c (get_prev_frame_1): Do the UNWIND_SAME_ID check between
807 this frame and the new previous frame, not between this frame and
808 the next frame.
809
810 2013-11-22 Pedro Alves <palves@redhat.com>
811
812 PR 16155
813 * dwarf2-frame.c (struct dwarf2_frame_cache)
814 <checked_tailcall_bottom, entry_cfa_sp_offset,
815 entry_cfa_sp_offset_p>: New fields.
816 (dwarf2_frame_cache): Adjust to use the new cache fields instead
817 of locals. Don't call dwarf2_tailcall_sniffer_first here.
818 (dwarf2_frame_prev_register): Call it here, but only once.
819
820 2013-11-21 Doug Evans <xdje42@gmail.com>
821
822 * gdbtypes.c: #include bcache.h, dwarf2loc.h.
823 (type_equality_entry): Move here from python/py-type.c.
824 (type_equality_entry_d): Ditto.
825 (compare_maybe_null_strings, check_types_equal): Ditto.
826 (check_types_worklist, types_deeply_equal): Ditto.
827 * gdbtypes.h (types_deeply_equal): Declare.
828 * python/py-type.c: Remove inclusion of bcache.h, dwarf2loc.h.
829 (typy_richcompare): Update.
830
831 2013-11-20 Joel Brobecker <brobecker@adacore.com>
832
833 * python/py-value.c (is_intlike): Delete.
834 (valpy_int): Replace use of CHECK_TYPEDEF and is_intlike
835 by use of is_integral_type.
836 (valpy_long): Replace use of CHECK_TYPEDEF and is_intlike
837 by use of is_integral_type and check for TYPE_CODE_PTR.
838
839 2013-11-20 Tom Tromey <tromey@redhat.com>
840
841 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Remove
842 strerror module.
843 * gnulib/aclocal.m4: Update.
844 * gnulib/config.in: Update.
845 * gnulib/configure: Update.
846 * gnulib/import/Makefile.am: Update.
847 * gnulib/import/Makefile.in: Update.
848 * gnulib/import/errno.in.h: Remove.
849 * gnulib/import/intprops.h: Remove.
850 * gnulib/import/m4/errno_h.m4: Remove.
851 * gnulib/import/m4/gnulib-cache.m4: Update.
852 * gnulib/import/m4/gnulib-comp.m4: Update.
853 * gnulib/import/m4/strerror.m4: Remove.
854 * gnulib/import/m4/sys_socket_h.m4: Remove.
855 * gnulib/import/strerror-override.c: Remove.
856 * gnulib/import/strerror-override.h: Remove.
857 * gnulib/import/strerror.c: Remove.
858 * gnulib/update-gnulib.sh: Update.
859
860 2013-11-20 Yao Qi <yao@codesourcery.com>
861
862 * target-dcache.c (target_dcache_get_or_init): Call
863 set_address_space_data if 'dcache' is NULL.
864
865 2013-11-20 Walfred Tedeschi <walfred.tedeschi@intel.com>
866
867 * common/i386-gcc-cpuid.h (bit_MPX): Synchronize with gcc file.
868
869 2013-11-20 Walfred Tedeschi <walfred.tedeschi@intel.com>
870
871 * python/lib/gdb/command/bound_register.py: New file.
872 * data-directory/Makefile.in: Copy bond_register.py to the right path
873 to be initialized at gdb startup.
874
875 2013-11-20 Walfred Tedeschi <walfred.tedeschi@intel.com>
876
877 * amd64-linux-nat.c (amd64_linux_gregset32_reg_offset):
878 Add MPX registers.
879 (amd64_linux_read_description): Add initialization for MPX and
880 AVX independently.
881 * amd64-linux-tdep.c: Includes features/i386/amd64-mpx-linux.c.
882 (amd64_linux_gregset_reg_offset): Add MPX registers.
883 (amd64_linux_core_read_description): Add initialization for MPX
884 registers.
885 (_initialize_amd64_linux_tdep): Initialize MPX targets.
886 * amd64-linux-tdep.h (AMD64_LINUX_RAX_REGNUM): Set it to the last
887 register on the list.
888 (tdesc_amd64_mpx_linux) Add new target for MPX.
889 * amd64-tdep.c: Includes features/i386/amd64-mpx.c.
890 (amd64_mpx_names): MPX register names.
891 (amd64_init_abi): Add MPX register while initializing the ABI.
892 (_initialize_amd64_tdep): Initialize MPX targets.
893 * amd64-tdep.h (amd64_regnum): Add MPX registers.
894 (AMD64_NUM_REGS): Set number of registers taking MPX into account.
895
896 2013-11-20 Walfred Tedeschi <walfred.tedeschi@intel.com>
897
898 * i386-linux-nat.c (GETXSTATEREGS_SUPPLIES): Add MPX
899 registers on the range of registers to be read from
900 xsave buffer.
901 (i386_linux_read_description): Add case for MPX.
902 * i386-linux-tdep.c: Include features/i386/i386-mpx-linux.c.
903 (i386_linux_gregset_reg_offset): Add MPX registers.
904 (i386_linux_core_read_description): Initialize also MPX.
905 (_initialize_i386_linux_tdep): Add mpx initialization.
906 * i386-tdep.h (gdbarch_tdep): Add fields bnd0r_regnum, bnd0_regnum,
907 mpx_register_names.
908 (i386_regnum): Add MPX registers.
909 (I386_MPX_NUM_REGS): New macro.
910 (i386_bnd_regnum_p): New function.
911 * i386-linux-tdep.h (I386_LINUX_NUM_REGS): Set
912 number of registers to be the number of BNDSTATUS.
913 (tdesc_i386_mpx_linux): Add description for MPX Linux registers.
914 * i386-tdep.c: Include features/i386/i386-mpx.c.
915 (i386_mpx_names): Add MPX register names array.
916 (i386_bnd_names): Add bnd pseudo register names array.
917 (i386_bndr_regnum_p): Lookup register numbers for bnd raw
918 registers.
919 (i386_bndr_regnum_p): Lookup register numbers for bnd raw registers.
920 (386_mpx_ctrl_regnum_p): Lookup register numbers for MPX control
921 registers.
922 (i386_bnd_type): New function.
923 (i386_pseudo_register_type): Use i386_bnd_type for bnd pseudo
924 register types.
925 (i386_pseudo_register_read_into_value): Add bnd case.
926 (i386_pseudo_register_write): Add bnd pseudo registers.
927 (i386_register_reggroup_p): Add MPX register to the group all.
928 (i386_validate_tdesc_p): Add MPX to the target description
929 validation.
930 (i386_pseudo_register_name): Add bnd pseudo registers.
931 (i386_gdbarch_init): Add MPX for architecture initialization.
932 (_initia_initialize_i386_tdep): Add mpx initialization.
933 * i387-tdep.c (xsave_mpx_offset): New vector for MPX offsets on
934 XSAVE buffer.
935 (XSAVE_MPX_ADDR): New macro.
936 (i387_supply_xsave): Add MPX case.
937 (i387_collect_xsave): Add MPX case.
938 * i387-tdep.h (I387_BND0R_REGNUM): New macro.
939 (I387_BNDCFGU_REGNUM): New macro.
940 (I387_NUM_MPX_REGS): New macro.
941 (I387_NUM_BND_REGS): New macro.
942 (I387_NUM_MPX_CTRL_REGS): New macro.
943 (I387_MPXEND_REGNUM): New macro.
944 * common/i386-xstate.h (I386_XSTATE_BNDREGS): New macro.
945 (I386_XSTATE_BNDCFG): Likewise.
946 (I386_XSTATE_MPX_MASK): Likewise.
947 (I386_XSTATE_ALL_MASK): New macro represents flags for all states.
948 (I386_XSTATE_BNDREGS_SIZE): New macro.
949 (I386_XSTATE_BNDCFG_SIZE): Likewise.
950 (I386_XSTATE_SIZE): Adapt for MPX.
951 (I386_XSTATE_MAX_SIZE): Likewise.
952
953 2013-11-20 Walfred Tedeschi <walfred.tedeschi@intel.com>
954
955 * features/i386/Makefile: Adapts for using MPX registers.
956 * features/i386/32bit-mpx.xml: New file.
957 * features/i386/64bit-mpx.xml: Likewise.
958 * features/i386/amd64-mpx-linux.c: Likewise.
959 * features/i386/amd64-mpx-linux.xml: Likewise.
960 * features/i386/amd64-mpx.c: Likewise.
961 * features/i386/amd64-mpx.xml: Likewise.
962 * features/i386/i386-mpx-linux.c: Likewise.
963 * features/i386/i386-mpx-linux.xml: Likewise.
964 * features/i386/i386-mpx.c: Likewise.
965 * features/i386/i386-mpx.xml: Likewise.
966 * regformats/i386/amd64-mpx-linux.dat: New file.
967 * regformats/i386/amd64-mpx.dat: Likewise.
968 * regformats/i386/i386-mpx-linux.dat: Likewise.
969 * regformats/i386/i386-mpx.dat: Likewise.
970
971 2013-11-20 Walfred Tedeschi <walfred.tedeschi@intel.com>
972
973 * target-descriptions.c (maint_print_maint_print_c_tdesc_cmd):
974 Modified logic of creating a bitfield to be in sync with
975 tdesc_gdb_type.
976
977 2013-11-20 Will Newton <will.newton@linaro.org>
978
979 * arm-tdep.c (arm_get_next_pc): Remove "Infinite loop detected"
980 error message.
981
982 2013-11-20 Yao Qi <yao@codesourcery.com>
983
984 * progspace.h (struct address_space_data): Declare.
985 * target-dcache.c: Include "progspace.h".
986 (target_dache): Remove.
987 (target_dcache_aspace_key): New.
988 (target_dcache_cleanup): New function.
989 (target_dcache_init_p): Get data through
990 target_dcache_aspace_key.
991 (target_dcache_invalidate): Likewise.
992 (target_dcache_get): Likewise.
993 (target_dcache_get_or_init): Likewise.
994 (_initialize_target_dcache): Initialize
995 target_dcache_aspace_key.
996
997 2013-11-20 Yao Qi <yao@codesourcery.com>
998
999 * progspace.c (struct address_space): Update comments.
1000 <REGISTRY_FIELDS>: New fields.
1001 DEFINE_REGISTRY for address_space.
1002 (new_address_space): Call address_space_alloc_data.
1003 (free_address_space): Call address_space_free_data.
1004 * progspace.h: Use DECLARE_REGISTRY.
1005
1006 2013-11-20 Yao Qi <yao@codesourcery.com>
1007
1008 * Makefile.in (SFILES):Add target-dcache.c.
1009 (HFILES_NO_SRCDIR): Add target-dcache.h.
1010 (COMMON_OBS): Add target-dcache.o.
1011 * dcache.c: Remove inclusion to "target.h". Include
1012 "target-dcache.h".
1013 * memattr.c: Include "target-dcache.h".
1014 * top.c: Likewise.
1015 * tracepoint.c: Likewise.
1016 * target.c: (stack_cache_enabled_p_1): Move to
1017 target-dcache.c.
1018 (stack_cache_enabled_p): Likewise.
1019 (set_stack_cache_enabled_p): Likewise.
1020 (show_stack_cache_enabled_p): Likewise.
1021 (target_dcache, target_dcache_init_p): Likewise.
1022 (target_dcache_invalidate): Likewise.
1023 (target_dcache_get, target_dcache_get_or_init): Likewise.
1024 (memory_xfer_partial_1): Call function stack_cache_enabled.
1025 (initialize_target): Move code to target-dcache.c.
1026 * target.h (target_dcache_invalidate): Move to
1027 target-dcache.h.
1028 (target_dcache_get): Likewise.
1029 * target-dcache.c: New.
1030 * target-dcache.h: New.
1031
1032 2013-11-20 Yao Qi <yao@codesourcery.com>
1033
1034 * target.c (memory_xfer_partial_1): Update 'target_dcache' if
1035 it is initialized.
1036
1037 2013-11-20 Yao Qi <yao@codesourcery.com>
1038
1039 * dcache.c (last_cache): Remove.
1040 (dcache_free, dcache_init): Update.
1041 (dcache_update):
1042 (dcache_print_line): Add parameter 'dcache'. Replace
1043 'target_dcache' with 'dcache'.
1044 (dcache_info): Move code to dcache_info_1. Call
1045 'dcache_info_1'.
1046 (dcache_info_1): New function.
1047 (set_dcache_size): Call target_dcache_invalidate.
1048 (set_dcache_line_size): Call target_dcache_invalidate.
1049 * target.c (target_dcache_init_p): New function.
1050 (target_dcache_invalidate): Check target_dcache_init_p first.
1051 (target_dcache_get, target_dcache_get_or_init): New function.
1052 (memory_xfer_partial_1): Adjust.
1053 (initialize_target): Don't initialize 'target_dcache'.
1054 * target.h (struct dcache_struct): Declare.
1055 (target_dcache_get): Declare.
1056
1057 2013-11-19 Yao Qi <yao@codesourcery.com>
1058
1059 * varobj.c (varobj_get_type): Fix typo.
1060
1061 2013-11-19 Joel Brobecker <brobecker@adacore.com>
1062
1063 * python/py-value.c (is_intlike): Add TYPE_CODE_RANGE handling.
1064
1065 2013-11-19 Joel Brobecker <brobecker@adacore.com>
1066
1067 * contrib/ari/gdb_ari.sh: Remove checks for "dirent.h" and
1068 "stat.h".
1069
1070 2013-11-18 Tom Tromey <tromey@redhat.com>
1071
1072 * common/gdb_stat.h: Remove.
1073 * ada-lang.c: Use sys/stat.h, not gdb_stat.h.
1074 * common/filestuff.c: Use sys/stat.h, not gdb_stat.h.
1075 * common/linux-osdata.c: Use sys/stat.h, not gdb_stat.h.
1076 * corefile.c: Use sys/stat.h, not gdb_stat.h.
1077 * ctf.c: Use sys/stat.h, not gdb_stat.h.
1078 * darwin-nat.c: Use sys/stat.h, not gdb_stat.h.
1079 * dbxread.c: Use sys/stat.h, not gdb_stat.h.
1080 * dwarf2read.c: Use sys/stat.h, not gdb_stat.h.
1081 * exec.c: Use sys/stat.h, not gdb_stat.h.
1082 * gdbserver/linux-low.c: Use sys/stat.h, not gdb_stat.h.
1083 * gdbserver/remote-utils.c: Use sys/stat.h, not gdb_stat.h.
1084 * inf-child.c: Use sys/stat.h, not gdb_stat.h.
1085 * jit.c: Use sys/stat.h, not gdb_stat.h.
1086 * linux-nat.c: Use sys/stat.h, not gdb_stat.h.
1087 * m68klinux-nat.c: Use sys/stat.h, not gdb_stat.h.
1088 * main.c: Use sys/stat.h, not gdb_stat.h.
1089 * mdebugread.c: Use sys/stat.h, not gdb_stat.h.
1090 * mi/mi-cmd-env.c: Use sys/stat.h, not gdb_stat.h.
1091 * nto-tdep.c: Use sys/stat.h, not gdb_stat.h.
1092 * objfiles.c: Use sys/stat.h, not gdb_stat.h.
1093 * procfs.c: Use sys/stat.h, not gdb_stat.h.
1094 * remote-fileio.c: Use sys/stat.h, not gdb_stat.h.
1095 * remote-mips.c: Use sys/stat.h, not gdb_stat.h.
1096 * remote.c: Use sys/stat.h, not gdb_stat.h.
1097 * rs6000-nat.c: Use sys/stat.h, not gdb_stat.h.
1098 * sol-thread.c: Use sys/stat.h, not gdb_stat.h.
1099 * solib-spu.c: Use sys/stat.h, not gdb_stat.h.
1100 * source.c: Use sys/stat.h, not gdb_stat.h.
1101 * symfile.c: Use sys/stat.h, not gdb_stat.h.
1102 * symmisc.c: Use sys/stat.h, not gdb_stat.h.
1103 * symtab.c: Use sys/stat.h, not gdb_stat.h.
1104 * top.c: Use sys/stat.h, not gdb_stat.h.
1105 * xcoffread.c: Use sys/stat.h, not gdb_stat.h.
1106
1107 2013-11-18 Tom Tromey <tromey@redhat.com>
1108
1109 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add
1110 sys_stat.
1111 * gnulib/aclocal.m4: Update.
1112 * gnulib/config.in: Update.
1113 * gnulib/configure: Update.
1114 * gnulib/import/Makefile.am: Update.
1115 * gnulib/import/Makefile.in: Update.
1116 * gnulib/import/m4/gnulib-cache.m4: Update.
1117 * gnulib/import/m4/gnulib-comp.m4: Update.
1118 * gnulib/import/m4/sys_stat_h.m4: New.
1119 * gnulib/import/m4/time_h.m4: New.
1120 * gnulib/import/sys_stat.in.h: New.
1121 * gnulib/import/time.in.h: New.
1122
1123 2013-11-18 Tom Tromey <tromey@redhat.com>
1124
1125 * configure: Rebuild.
1126 * configure.ac: Remove check of HAVE_SYS_TYPES_H.
1127
1128 2013-11-18 Tom Tromey <tromey@redhat.com>
1129
1130 * configure: Rebuild.
1131 * configure.ac: Don't check for unistd.h.
1132
1133 2013-11-18 Tom Tromey <tromey@redhat.com>
1134
1135 * configure: Rebuild.
1136 * configure.ac: Don't check for stdlib.h
1137 * defs.h: Include stdlib.h unconditionally.
1138
1139 2013-11-18 Tom Tromey <tromey@redhat.com>
1140
1141 * config.in: Rebuild.
1142 * configure: Rebuild.
1143 * configure.ac: Don't check for stddef.h.
1144 * defs.h: Unconditionally include stddef.h. Remove duplicate
1145 inclusion.
1146
1147 2013-11-18 Tom Tromey <tromey@redhat.com>
1148
1149 * common/common.m4 (GDB_AC_COMMON): Don't use AC_HEADER_DIRENT.
1150 * common/gdb_dirent.h: Remove.
1151 * common/filestuff.c: Use dirent.h.
1152 * common/linux-osdata.c: Use dirent.h.
1153 (NAMELEN): Define.
1154 * config.in: Rebuild.
1155 * configure: Rebuild.
1156 * configure.ac: Don't use AC_HEADER_DIRENT.
1157 * linux-fork.c: Use dirent.h
1158 * linux-nat.c: Use dirent.h.
1159 * nto-procfs.c: Use dirent.h.
1160 * procfs.c: Use dirent.h.
1161
1162 2013-11-18 Tom Tromey <tromey@redhat.com>
1163
1164 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add dirent.
1165 * gnulib/aclocal.m4: Update.
1166 * gnulib/config.in: Update.
1167 * gnulib/configure: Update.
1168 * gnulib/import/Makefile.am: Update.
1169 * gnulib/import/Makefile.in: Update.
1170 * gnulib/import/dirent.in.h: New.
1171 * gnulib/import/m4/dirent_h.m4: New.
1172 * gnulib/import/m4/gnulib-cache.m4: Update.
1173 * gnulib/import/m4/gnulib-comp.m4: Update.
1174
1175 2013-11-18 Tom Tromey <tromey@redhat.com>
1176
1177 * configure: Rebuild.
1178 * common/common.m4 (GDB_AC_COMMON): Don't check for string.h or
1179 strings.h.
1180
1181 2013-11-18 Tom Tromey <tromey@redhat.com>
1182
1183 * common/gdb_string.h: Remove.
1184 * aarch64-tdep.c: Use string.h, not gdb_string.h.
1185 * ada-exp.y: Use string.h, not gdb_string.h.
1186 * ada-lang.c: Use string.h, not gdb_string.h.
1187 * ada-lex.l: Use string.h, not gdb_string.h.
1188 * ada-typeprint.c: Use string.h, not gdb_string.h.
1189 * ada-valprint.c: Use string.h, not gdb_string.h.
1190 * aix-thread.c: Use string.h, not gdb_string.h.
1191 * alpha-linux-tdep.c: Use string.h, not gdb_string.h.
1192 * alpha-mdebug-tdep.c: Use string.h, not gdb_string.h.
1193 * alpha-nat.c: Use string.h, not gdb_string.h.
1194 * alpha-osf1-tdep.c: Use string.h, not gdb_string.h.
1195 * alpha-tdep.c: Use string.h, not gdb_string.h.
1196 * alphanbsd-tdep.c: Use string.h, not gdb_string.h.
1197 * amd64-dicos-tdep.c: Use string.h, not gdb_string.h.
1198 * amd64-linux-nat.c: Use string.h, not gdb_string.h.
1199 * amd64-linux-tdep.c: Use string.h, not gdb_string.h.
1200 * amd64-nat.c: Use string.h, not gdb_string.h.
1201 * amd64-sol2-tdep.c: Use string.h, not gdb_string.h.
1202 * amd64fbsd-tdep.c: Use string.h, not gdb_string.h.
1203 * amd64obsd-tdep.c: Use string.h, not gdb_string.h.
1204 * arch-utils.c: Use string.h, not gdb_string.h.
1205 * arm-linux-nat.c: Use string.h, not gdb_string.h.
1206 * arm-linux-tdep.c: Use string.h, not gdb_string.h.
1207 * arm-tdep.c: Use string.h, not gdb_string.h.
1208 * arm-wince-tdep.c: Use string.h, not gdb_string.h.
1209 * armbsd-tdep.c: Use string.h, not gdb_string.h.
1210 * armnbsd-nat.c: Use string.h, not gdb_string.h.
1211 * armnbsd-tdep.c: Use string.h, not gdb_string.h.
1212 * armobsd-tdep.c: Use string.h, not gdb_string.h.
1213 * avr-tdep.c: Use string.h, not gdb_string.h.
1214 * ax-gdb.c: Use string.h, not gdb_string.h.
1215 * ax-general.c: Use string.h, not gdb_string.h.
1216 * bcache.c: Use string.h, not gdb_string.h.
1217 * bfin-tdep.c: Use string.h, not gdb_string.h.
1218 * breakpoint.c: Use string.h, not gdb_string.h.
1219 * build-id.c: Use string.h, not gdb_string.h.
1220 * buildsym.c: Use string.h, not gdb_string.h.
1221 * c-exp.y: Use string.h, not gdb_string.h.
1222 * c-lang.c: Use string.h, not gdb_string.h.
1223 * c-typeprint.c: Use string.h, not gdb_string.h.
1224 * c-valprint.c: Use string.h, not gdb_string.h.
1225 * charset.c: Use string.h, not gdb_string.h.
1226 * cli-out.c: Use string.h, not gdb_string.h.
1227 * cli/cli-cmds.c: Use string.h, not gdb_string.h.
1228 * cli/cli-decode.c: Use string.h, not gdb_string.h.
1229 * cli/cli-dump.c: Use string.h, not gdb_string.h.
1230 * cli/cli-interp.c: Use string.h, not gdb_string.h.
1231 * cli/cli-logging.c: Use string.h, not gdb_string.h.
1232 * cli/cli-script.c: Use string.h, not gdb_string.h.
1233 * cli/cli-setshow.c: Use string.h, not gdb_string.h.
1234 * cli/cli-utils.c: Use string.h, not gdb_string.h.
1235 * coffread.c: Use string.h, not gdb_string.h.
1236 * common/common-utils.c: Use string.h, not gdb_string.h.
1237 * common/filestuff.c: Use string.h, not gdb_string.h.
1238 * common/linux-procfs.c: Use string.h, not gdb_string.h.
1239 * common/linux-ptrace.c: Use string.h, not gdb_string.h.
1240 * common/signals.c: Use string.h, not gdb_string.h.
1241 * common/vec.h: Use string.h, not gdb_string.h.
1242 * core-regset.c: Use string.h, not gdb_string.h.
1243 * corefile.c: Use string.h, not gdb_string.h.
1244 * corelow.c: Use string.h, not gdb_string.h.
1245 * cp-abi.c: Use string.h, not gdb_string.h.
1246 * cp-support.c: Use string.h, not gdb_string.h.
1247 * cp-valprint.c: Use string.h, not gdb_string.h.
1248 * cris-tdep.c: Use string.h, not gdb_string.h.
1249 * d-lang.c: Use string.h, not gdb_string.h.
1250 * dbxread.c: Use string.h, not gdb_string.h.
1251 * dcache.c: Use string.h, not gdb_string.h.
1252 * demangle.c: Use string.h, not gdb_string.h.
1253 * dicos-tdep.c: Use string.h, not gdb_string.h.
1254 * disasm.c: Use string.h, not gdb_string.h.
1255 * doublest.c: Use string.h, not gdb_string.h.
1256 * dsrec.c: Use string.h, not gdb_string.h.
1257 * dummy-frame.c: Use string.h, not gdb_string.h.
1258 * dwarf2-frame.c: Use string.h, not gdb_string.h.
1259 * dwarf2loc.c: Use string.h, not gdb_string.h.
1260 * dwarf2read.c: Use string.h, not gdb_string.h.
1261 * elfread.c: Use string.h, not gdb_string.h.
1262 * environ.c: Use string.h, not gdb_string.h.
1263 * eval.c: Use string.h, not gdb_string.h.
1264 * event-loop.c: Use string.h, not gdb_string.h.
1265 * exceptions.c: Use string.h, not gdb_string.h.
1266 * exec.c: Use string.h, not gdb_string.h.
1267 * expprint.c: Use string.h, not gdb_string.h.
1268 * f-exp.y: Use string.h, not gdb_string.h.
1269 * f-lang.c: Use string.h, not gdb_string.h.
1270 * f-typeprint.c: Use string.h, not gdb_string.h.
1271 * f-valprint.c: Use string.h, not gdb_string.h.
1272 * fbsd-nat.c: Use string.h, not gdb_string.h.
1273 * findcmd.c: Use string.h, not gdb_string.h.
1274 * findvar.c: Use string.h, not gdb_string.h.
1275 * fork-child.c: Use string.h, not gdb_string.h.
1276 * frame.c: Use string.h, not gdb_string.h.
1277 * frv-linux-tdep.c: Use string.h, not gdb_string.h.
1278 * frv-tdep.c: Use string.h, not gdb_string.h.
1279 * gdb.c: Use string.h, not gdb_string.h.
1280 * gdb_bfd.c: Use string.h, not gdb_string.h.
1281 * gdbarch.c: Use string.h, not gdb_string.h.
1282 * gdbtypes.c: Use string.h, not gdb_string.h.
1283 * gnu-nat.c: Use string.h, not gdb_string.h.
1284 * gnu-v2-abi.c: Use string.h, not gdb_string.h.
1285 * gnu-v3-abi.c: Use string.h, not gdb_string.h.
1286 * go-exp.y: Use string.h, not gdb_string.h.
1287 * go-lang.c: Use string.h, not gdb_string.h.
1288 * go32-nat.c: Use string.h, not gdb_string.h.
1289 * hppa-hpux-tdep.c: Use string.h, not gdb_string.h.
1290 * hppa-linux-nat.c: Use string.h, not gdb_string.h.
1291 * hppanbsd-tdep.c: Use string.h, not gdb_string.h.
1292 * hppaobsd-tdep.c: Use string.h, not gdb_string.h.
1293 * i386-cygwin-tdep.c: Use string.h, not gdb_string.h.
1294 * i386-dicos-tdep.c: Use string.h, not gdb_string.h.
1295 * i386-linux-nat.c: Use string.h, not gdb_string.h.
1296 * i386-linux-tdep.c: Use string.h, not gdb_string.h.
1297 * i386-nto-tdep.c: Use string.h, not gdb_string.h.
1298 * i386-sol2-tdep.c: Use string.h, not gdb_string.h.
1299 * i386-tdep.c: Use string.h, not gdb_string.h.
1300 * i386bsd-tdep.c: Use string.h, not gdb_string.h.
1301 * i386gnu-nat.c: Use string.h, not gdb_string.h.
1302 * i386nbsd-tdep.c: Use string.h, not gdb_string.h.
1303 * i386obsd-tdep.c: Use string.h, not gdb_string.h.
1304 * i387-tdep.c: Use string.h, not gdb_string.h.
1305 * ia64-libunwind-tdep.c: Use string.h, not gdb_string.h.
1306 * ia64-linux-nat.c: Use string.h, not gdb_string.h.
1307 * inf-child.c: Use string.h, not gdb_string.h.
1308 * inf-ptrace.c: Use string.h, not gdb_string.h.
1309 * inf-ttrace.c: Use string.h, not gdb_string.h.
1310 * infcall.c: Use string.h, not gdb_string.h.
1311 * infcmd.c: Use string.h, not gdb_string.h.
1312 * inflow.c: Use string.h, not gdb_string.h.
1313 * infrun.c: Use string.h, not gdb_string.h.
1314 * interps.c: Use string.h, not gdb_string.h.
1315 * iq2000-tdep.c: Use string.h, not gdb_string.h.
1316 * irix5-nat.c: Use string.h, not gdb_string.h.
1317 * jv-exp.y: Use string.h, not gdb_string.h.
1318 * jv-lang.c: Use string.h, not gdb_string.h.
1319 * jv-typeprint.c: Use string.h, not gdb_string.h.
1320 * jv-valprint.c: Use string.h, not gdb_string.h.
1321 * language.c: Use string.h, not gdb_string.h.
1322 * linux-fork.c: Use string.h, not gdb_string.h.
1323 * linux-nat.c: Use string.h, not gdb_string.h.
1324 * lm32-tdep.c: Use string.h, not gdb_string.h.
1325 * m2-exp.y: Use string.h, not gdb_string.h.
1326 * m2-typeprint.c: Use string.h, not gdb_string.h.
1327 * m32c-tdep.c: Use string.h, not gdb_string.h.
1328 * m32r-linux-nat.c: Use string.h, not gdb_string.h.
1329 * m32r-linux-tdep.c: Use string.h, not gdb_string.h.
1330 * m32r-rom.c: Use string.h, not gdb_string.h.
1331 * m32r-tdep.c: Use string.h, not gdb_string.h.
1332 * m68hc11-tdep.c: Use string.h, not gdb_string.h.
1333 * m68k-tdep.c: Use string.h, not gdb_string.h.
1334 * m68kbsd-tdep.c: Use string.h, not gdb_string.h.
1335 * m68klinux-nat.c: Use string.h, not gdb_string.h.
1336 * m68klinux-tdep.c: Use string.h, not gdb_string.h.
1337 * m88k-tdep.c: Use string.h, not gdb_string.h.
1338 * macrocmd.c: Use string.h, not gdb_string.h.
1339 * main.c: Use string.h, not gdb_string.h.
1340 * mdebugread.c: Use string.h, not gdb_string.h.
1341 * mem-break.c: Use string.h, not gdb_string.h.
1342 * memattr.c: Use string.h, not gdb_string.h.
1343 * memory-map.c: Use string.h, not gdb_string.h.
1344 * mep-tdep.c: Use string.h, not gdb_string.h.
1345 * mi/mi-cmd-break.c: Use string.h, not gdb_string.h.
1346 * mi/mi-cmd-disas.c: Use string.h, not gdb_string.h.
1347 * mi/mi-cmd-env.c: Use string.h, not gdb_string.h.
1348 * mi/mi-cmd-stack.c: Use string.h, not gdb_string.h.
1349 * mi/mi-cmd-var.c: Use string.h, not gdb_string.h.
1350 * mi/mi-cmds.c: Use string.h, not gdb_string.h.
1351 * mi/mi-console.c: Use string.h, not gdb_string.h.
1352 * mi/mi-getopt.c: Use string.h, not gdb_string.h.
1353 * mi/mi-interp.c: Use string.h, not gdb_string.h.
1354 * mi/mi-main.c: Use string.h, not gdb_string.h.
1355 * mi/mi-parse.c: Use string.h, not gdb_string.h.
1356 * microblaze-rom.c: Use string.h, not gdb_string.h.
1357 * microblaze-tdep.c: Use string.h, not gdb_string.h.
1358 * mingw-hdep.c: Use string.h, not gdb_string.h.
1359 * minidebug.c: Use string.h, not gdb_string.h.
1360 * minsyms.c: Use string.h, not gdb_string.h.
1361 * mips-irix-tdep.c: Use string.h, not gdb_string.h.
1362 * mips-linux-tdep.c: Use string.h, not gdb_string.h.
1363 * mips-tdep.c: Use string.h, not gdb_string.h.
1364 * mips64obsd-tdep.c: Use string.h, not gdb_string.h.
1365 * mipsnbsd-tdep.c: Use string.h, not gdb_string.h.
1366 * mipsread.c: Use string.h, not gdb_string.h.
1367 * mn10300-linux-tdep.c: Use string.h, not gdb_string.h.
1368 * mn10300-tdep.c: Use string.h, not gdb_string.h.
1369 * monitor.c: Use string.h, not gdb_string.h.
1370 * moxie-tdep.c: Use string.h, not gdb_string.h.
1371 * mt-tdep.c: Use string.h, not gdb_string.h.
1372 * nbsd-tdep.c: Use string.h, not gdb_string.h.
1373 * nios2-linux-tdep.c: Use string.h, not gdb_string.h.
1374 * nto-procfs.c: Use string.h, not gdb_string.h.
1375 * nto-tdep.c: Use string.h, not gdb_string.h.
1376 * objc-lang.c: Use string.h, not gdb_string.h.
1377 * objfiles.c: Use string.h, not gdb_string.h.
1378 * opencl-lang.c: Use string.h, not gdb_string.h.
1379 * osabi.c: Use string.h, not gdb_string.h.
1380 * osdata.c: Use string.h, not gdb_string.h.
1381 * p-exp.y: Use string.h, not gdb_string.h.
1382 * p-lang.c: Use string.h, not gdb_string.h.
1383 * p-typeprint.c: Use string.h, not gdb_string.h.
1384 * parse.c: Use string.h, not gdb_string.h.
1385 * posix-hdep.c: Use string.h, not gdb_string.h.
1386 * ppc-linux-nat.c: Use string.h, not gdb_string.h.
1387 * ppc-sysv-tdep.c: Use string.h, not gdb_string.h.
1388 * ppcfbsd-tdep.c: Use string.h, not gdb_string.h.
1389 * ppcnbsd-tdep.c: Use string.h, not gdb_string.h.
1390 * ppcobsd-tdep.c: Use string.h, not gdb_string.h.
1391 * printcmd.c: Use string.h, not gdb_string.h.
1392 * procfs.c: Use string.h, not gdb_string.h.
1393 * prologue-value.c: Use string.h, not gdb_string.h.
1394 * python/py-auto-load.c: Use string.h, not gdb_string.h.
1395 * python/py-gdb-readline.c: Use string.h, not gdb_string.h.
1396 * ravenscar-thread.c: Use string.h, not gdb_string.h.
1397 * regcache.c: Use string.h, not gdb_string.h.
1398 * registry.c: Use string.h, not gdb_string.h.
1399 * remote-fileio.c: Use string.h, not gdb_string.h.
1400 * remote-m32r-sdi.c: Use string.h, not gdb_string.h.
1401 * remote-mips.c: Use string.h, not gdb_string.h.
1402 * remote-sim.c: Use string.h, not gdb_string.h.
1403 * remote.c: Use string.h, not gdb_string.h.
1404 * reverse.c: Use string.h, not gdb_string.h.
1405 * rs6000-aix-tdep.c: Use string.h, not gdb_string.h.
1406 * ser-base.c: Use string.h, not gdb_string.h.
1407 * ser-go32.c: Use string.h, not gdb_string.h.
1408 * ser-mingw.c: Use string.h, not gdb_string.h.
1409 * ser-pipe.c: Use string.h, not gdb_string.h.
1410 * ser-tcp.c: Use string.h, not gdb_string.h.
1411 * ser-unix.c: Use string.h, not gdb_string.h.
1412 * serial.c: Use string.h, not gdb_string.h.
1413 * sh-tdep.c: Use string.h, not gdb_string.h.
1414 * sh64-tdep.c: Use string.h, not gdb_string.h.
1415 * shnbsd-tdep.c: Use string.h, not gdb_string.h.
1416 * skip.c: Use string.h, not gdb_string.h.
1417 * sol-thread.c: Use string.h, not gdb_string.h.
1418 * solib-dsbt.c: Use string.h, not gdb_string.h.
1419 * solib-frv.c: Use string.h, not gdb_string.h.
1420 * solib-osf.c: Use string.h, not gdb_string.h.
1421 * solib-spu.c: Use string.h, not gdb_string.h.
1422 * solib-target.c: Use string.h, not gdb_string.h.
1423 * solib.c: Use string.h, not gdb_string.h.
1424 * somread.c: Use string.h, not gdb_string.h.
1425 * source.c: Use string.h, not gdb_string.h.
1426 * sparc-nat.c: Use string.h, not gdb_string.h.
1427 * sparc-sol2-tdep.c: Use string.h, not gdb_string.h.
1428 * sparc-tdep.c: Use string.h, not gdb_string.h.
1429 * sparc64-tdep.c: Use string.h, not gdb_string.h.
1430 * sparc64fbsd-tdep.c: Use string.h, not gdb_string.h.
1431 * sparc64nbsd-tdep.c: Use string.h, not gdb_string.h.
1432 * sparcnbsd-tdep.c: Use string.h, not gdb_string.h.
1433 * spu-linux-nat.c: Use string.h, not gdb_string.h.
1434 * spu-multiarch.c: Use string.h, not gdb_string.h.
1435 * spu-tdep.c: Use string.h, not gdb_string.h.
1436 * stabsread.c: Use string.h, not gdb_string.h.
1437 * stack.c: Use string.h, not gdb_string.h.
1438 * std-regs.c: Use string.h, not gdb_string.h.
1439 * symfile.c: Use string.h, not gdb_string.h.
1440 * symmisc.c: Use string.h, not gdb_string.h.
1441 * symtab.c: Use string.h, not gdb_string.h.
1442 * target.c: Use string.h, not gdb_string.h.
1443 * thread.c: Use string.h, not gdb_string.h.
1444 * tilegx-linux-nat.c: Use string.h, not gdb_string.h.
1445 * tilegx-tdep.c: Use string.h, not gdb_string.h.
1446 * top.c: Use string.h, not gdb_string.h.
1447 * tracepoint.c: Use string.h, not gdb_string.h.
1448 * tui/tui-command.c: Use string.h, not gdb_string.h.
1449 * tui/tui-data.c: Use string.h, not gdb_string.h.
1450 * tui/tui-disasm.c: Use string.h, not gdb_string.h.
1451 * tui/tui-file.c: Use string.h, not gdb_string.h.
1452 * tui/tui-layout.c: Use string.h, not gdb_string.h.
1453 * tui/tui-out.c: Use string.h, not gdb_string.h.
1454 * tui/tui-regs.c: Use string.h, not gdb_string.h.
1455 * tui/tui-source.c: Use string.h, not gdb_string.h.
1456 * tui/tui-stack.c: Use string.h, not gdb_string.h.
1457 * tui/tui-win.c: Use string.h, not gdb_string.h.
1458 * tui/tui-windata.c: Use string.h, not gdb_string.h.
1459 * tui/tui-winsource.c: Use string.h, not gdb_string.h.
1460 * typeprint.c: Use string.h, not gdb_string.h.
1461 * ui-file.c: Use string.h, not gdb_string.h.
1462 * ui-out.c: Use string.h, not gdb_string.h.
1463 * user-regs.c: Use string.h, not gdb_string.h.
1464 * utils.c: Use string.h, not gdb_string.h.
1465 * v850-tdep.c: Use string.h, not gdb_string.h.
1466 * valarith.c: Use string.h, not gdb_string.h.
1467 * valops.c: Use string.h, not gdb_string.h.
1468 * valprint.c: Use string.h, not gdb_string.h.
1469 * value.c: Use string.h, not gdb_string.h.
1470 * varobj.c: Use string.h, not gdb_string.h.
1471 * vax-tdep.c: Use string.h, not gdb_string.h.
1472 * vaxnbsd-tdep.c: Use string.h, not gdb_string.h.
1473 * vaxobsd-tdep.c: Use string.h, not gdb_string.h.
1474 * windows-nat.c: Use string.h, not gdb_string.h.
1475 * xcoffread.c: Use string.h, not gdb_string.h.
1476 * xml-support.c: Use string.h, not gdb_string.h.
1477 * xstormy16-tdep.c: Use string.h, not gdb_string.h.
1478 * xtensa-linux-nat.c: Use string.h, not gdb_string.h.
1479
1480 2013-11-18 Tom Tromey <tromey@redhat.com>
1481
1482 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add strerror
1483 and strstr.
1484 * gnulib/aclocal.m4: Update.
1485 * gnulib/config.in: Update.
1486 * gnulib/configure: Update.
1487 * gnulib/import/Makefile.am: Update.
1488 * gnulib/import/Makefile.in: Update.
1489 * gnulib/import/errno.in.h: New.
1490 * gnulib/import/intprops.h: New.
1491 * gnulib/import/m4/errno_h.m4: New.
1492 * gnulib/import/m4/gnulib-cache.m4: Update.
1493 * gnulib/import/m4/gnulib-comp.m4: Update.
1494 * gnulib/import/m4/strerror.m4: New.
1495 * gnulib/import/m4/strstr.m4: New.
1496 * gnulib/import/m4/sys_socket_h.m4: New.
1497 * gnulib/import/strerror-override.c: New.
1498 * gnulib/import/strerror-override.h: New.
1499 * gnulib/import/strerror.c: New.
1500 * gnulib/import/strstr.c: New.
1501
1502 2013-11-18 Tom Tromey <tromey@redhat.com>
1503
1504 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Split into
1505 multiple lines.
1506
1507 2013-11-18 Jose E. Marchesi <jose.marchesi@oracle.com>
1508
1509 * sparc-tdep.c (sparc_is_annulled_branch_insn): New function.
1510 * sparc-tdep.h: And its prototype.
1511
1512 * sparc64-linux-tdep.c (sparc64_linux_get_longjmp_target): New
1513 function.
1514 (sparc64_linux_init_abi): Register the get_longjmp_target hook.
1515
1516 2013-11-18 Pedro Alves <palves@redhat.com>
1517
1518 * dwarf2-frame.c (read_addr_from_reg): Remove stale comment and
1519 use unpack_pointer.
1520
1521 2013-11-18 Joel Brobecker <brobecker@adacore.com>
1522
1523 * mi/mi-main.c (mi_cmd_list_features): Add "language-options"
1524 to -list-features output.
1525
1526 2013-11-17 Joel Brobecker <brobecker@adacore.com>
1527
1528 * dwarf2expr.h (struct dwarf_expr_context_funcs)
1529 <read_addr_from_reg>: Renames "read_reg".
1530 * dwarf2-frame.c (read_addr_from_reg): Renames "read_reg".
1531 Adjust comment.
1532 (dwarf2_frame_ctx_funcs, execute_stack_op, dwarf2_frame_cache):
1533 Use read_addr_from_reg in place of read_reg.
1534 * dwarf2expr.c (execute_stack_op): Use read_addr_from_reg
1535 in place of read_reg.
1536 * dwarf2loc.c (dwarf_expr_read_addr_from_reg): Renames
1537 dwarf_expr_read_reg.
1538 (dwarf_expr_ctx_funcs): Replace dwarf_expr_read_reg
1539 with dwarf_expr_read_addr_from_reg.
1540 (needs_frame_read_addr_from_reg): Renames needs_frame_read_reg.
1541 (needs_frame_ctx_funcs): Replace needs_frame_read_reg with
1542 needs_frame_read_addr_from_reg.
1543
1544 2013-11-15 Jan Kratochvil <jan.kratochvil@redhat.com>
1545
1546 * NEWS (Changes in GDB 7.5) (New commands) (explore): Fix typo.
1547
1548 2013-11-15 Andreas Arnez <arnez@linux.vnet.ibm.com>
1549
1550 * dwarf2loc.c (chain_candidate): Prevent invoking memcpy with
1551 NULL.
1552
1553 2013-11-15 Tom Tromey <tromey@redhat.com>
1554
1555 PR c++/16117:
1556 * c-exp.y (lex_one_token): Add "is_quoted_name" argument.
1557 (classify_name): Likewise. Prefer a field of "this" over a
1558 filename.
1559 (classify_inner_name, yylex): Update.
1560
1561 2013-11-15 Joel Brobecker <brobecker@adacore.com>
1562
1563 * dwarf2expr.h (struct dwarf_expr_context_funcs) <read_reg>:
1564 Extend the documentation a bit.
1565 <get_reg_value>: New field.
1566 * dwarf2loc.c (dwarf_expr_get_reg_value)
1567 (needs_frame_get_reg_value): New functions.
1568 (dwarf_expr_ctx_funcs, needs_frame_ctx_funcs): Add "get_reg_value"
1569 callback.
1570 * dwarf2-frame.c (get_reg_value): New function.
1571 (dwarf2_frame_ctx_funcs): Add "get_reg_value" callback.
1572 * dwarf2expr.c (execute_stack_op) <DW_OP_GNU_regval_type>:
1573 Use new callback to compute result_val.
1574
1575 2013-11-15 Alan Modra <amodra@gmail.com>
1576
1577 * ppc64-tdep.c (ppc64_plt_entry_point): Renamed from..
1578 (ppc64_desc_entry_point): ..this. Update comments here and at
1579 call points.
1580 (ppc64_standard_linkage1, ppc64_standard_linkage2,
1581 ppc64_standard_linkage3): Update comments.
1582 (ppc64_standard_linkage4, ppc64_standard_linkage5,
1583 (ppc64_standard_linkage6, ppc64_standard_linkage7): New insn
1584 patterns.
1585 (ppc64_standard_linkage4_target): New function.
1586 (ppc64_skip_trampoline_code): Skip ELFv2 patterns too.
1587 * rs6000-tdep.c (skip_prologue): Skip ELFv2 r2 setup. Correct
1588 nop match. Fix comment wrap.
1589
1590 2013-11-14 Pedro Alves <palves@redhat.com>
1591
1592 * infrun.c (handle_signal_stop): Move STOP_QUIETLY,
1593 STOP_QUIETLY_REMOTE and 'stop_after_trap' handling earlier.
1594
1595 2013-11-14 Pedro Alves <palves@redhat.com>
1596
1597 * infrun.c (struct execution_control_state)
1598 <stepped_after_stopped_by_watchpoint>: New field.
1599 (get_inferior_stop_soon): New function.
1600 (handle_inferior_event): 'stepped_after_stopped_by_watchpoint' was
1601 moved to struct execution_control_state -- adjust. Use
1602 get_inferior_stop_soon. Split TARGET_WAITKIND_STOPPED handling to
1603 new function.
1604 (handle_signal_stop): New function, factored out from
1605 handle_inferior_event.
1606
1607 2013-11-14 Pedro Alves <palves@redhat.com>
1608
1609 * break-catch-sig.c (signal_catchpoint_explains_signal): Adjust to
1610 return a boolean.
1611 * breakpoint.c (bpstat_explains_signal): Adjust to return a
1612 boolean.
1613 (explains_signal_watchpoint, base_breakpoint_explains_signal):
1614 Adjust to return a boolean.
1615 * breakpoint.h (enum bpstat_signal_value): Delete.
1616 (struct breakpoint_ops) <explains_signal>: New returns a boolean.
1617 (bpstat_explains_signal): Likewise.
1618 * infrun.c (handle_inferior_event) <random signal checks>:
1619 bpstat_explains_signal now returns a boolean - adjust. No longer
1620 consider hiding signals.
1621
1622 2013-11-14 Pedro Alves <palves@redhat.com>
1623
1624 * breakpoint.c (bpstat_explains_signal) <Moribund locations>:
1625 Return BPSTAT_SIGNAL_PASS instead of BPSTAT_SIGNAL_HIDE.
1626 (explains_signal_watchpoint): Return BPSTAT_SIGNAL_PASS instead of
1627 BPSTAT_SIGNAL_HIDE.
1628 (base_breakpoint_explains_signal): Return BPSTAT_SIGNAL_PASS
1629 instead of BPSTAT_SIGNAL_HIDE.
1630 * infrun.c (handle_inferior_event): Rework random signal checks.
1631
1632 2013-11-14 Pedro Alves <palves@redhat.com>
1633
1634 * infrun.c (struct execution_control_state): Remove
1635 'random_signal' field.
1636 (handle_syscall_event): Use bpstat_causes_stop instead of
1637 bpstat_explains_signal. Don't set ecs->random_signal.
1638 (handle_inferior_event): New 'random_signal' local.
1639 <TARGET_WAITKIND_FORKED, TARGET_WAITKIND_VFORKED,
1640 TARGET_WAITKIND_EXECD>: Use bpstat_causes_stop instead of
1641 bpstat_explains_signal. Don't set ecs->random_signal.
1642 <TARGET_WAITKIND_STOPPED>: Adjust to use local instead of
1643 ecs->random_signal.
1644
1645 2013-11-14 Pedro Alves <palves@redhat.com>
1646
1647 * infrun.c (handle_inferior_event): Move comment from the
1648 function's body to the function's description, adjusted.
1649
1650 2013-11-14 Pedro Alves <palves@redhat.com>
1651
1652 * infrun.c (handle_inferior_event) <TARGET_WAITKIND_LOADED>:
1653 Handle STOP_QUIETLY_NO_SIGSTOP and STOP_QUIETLY_REMOTE here.
1654 Assert we never fall through out of the TARGET_WAITKIND_LOADED
1655 case.
1656
1657 2013-11-14 Tom Tromey <tromey@redhat.com>
1658
1659 * python/py-linetable.c (ltpy_has_line)
1660 (ltpy_get_all_source_lines): Fix loop termination condition.
1661
1662 2013-11-14 Joel Brobecker <brobecker@adacore.com>
1663
1664 * mi/mi-parse.h (struct mi_parse) <language>: New field.
1665 * mi/mi-main.c (mi_cmd_execute): Temporarily set language to
1666 PARSE->LANGUAGE during command execution, if set.
1667 * mi/mi-parse.c: Add "language.h" #include.
1668 (mi_parse): Add parsing of "--language" command option.
1669
1670 * NEWS: Add entry mentioning the new "--language" command option.
1671
1672 2013-11-14 Pedro Alves <palves@redhat.com>
1673 Joel Brobecker <brobecker@adacore.com>
1674
1675 * cli/cli-utils.h (extract_arg_const): Add declaration.
1676 * cli/cli-utils.c (extract_arg_const): New function.
1677 (extract_arg): Reimplement using extract_arg_const.
1678
1679 2013-11-14 Joel Brobecker <brobecker@adacore.com>
1680
1681 * language.h: Add "symtab.h" #include.
1682
1683 2013-11-13 Doug Evans <xdje42@gmail.com>
1684
1685 * breakpoint.c (bpstat_check_breakpoint_conditions): For thread
1686 specific breakpoints, don't evaluate breakpoint condition if
1687 different thread.
1688
1689 2013-11-13 Keith Seitz <keiths@redhat.com>
1690
1691 PR c++/7935
1692 PR c++/10541
1693 * cp-support.c (insepct_type): Add support for substituting
1694 namespace aliases, too.
1695 * dwarf2read.c (scan_partial_symbols): Add a partial symbol
1696 for DW_TAG_imported_declaration.
1697 (add_partial_symbol): Likewise.
1698 (process_die): Handle namespace aliases with
1699 read_namespace_alias.
1700 (die_needs_namespace): Add DW_TAG_imported_declaration.
1701 (read_namespace_alias): New function.
1702 (load_partial_dies): Load DW_TAG_imported_declaration, too.
1703 (new_symbol_full): Handle DW_TAG_imported_declaration.
1704
1705 2013-11-13 Keith Seitz <keiths@redhat.com>
1706
1707 * p-exp.y (uptok): Make first parameter const.
1708 (yylex): Make `tokstart' and `tokptr' const.
1709 Don't copy the lexer input to a temporary buffer.
1710 Make `p' const.
1711 Remove const workaround for parse_escape.
1712 Create a temporary buffer for a convenience variable instead
1713 of doing in-place modification of the input.
1714 If a match is found with a different case from the input,
1715 do not change the input at all.
1716 Use `tmp' to construct the resultant stoken instead of
1717 `tokstart'.
1718
1719 2013-11-13 Doug Evans <xdje42@gmail.com>
1720
1721 * breakpoint.c (breakpoint_cond_eval): Fix and enhance comment.
1722
1723 2013-11-13 Joel Brobecker <brobecker@adacore.com>
1724
1725 * mi/mi-main.c (mi_cmd_list_features): Replace "info-ada-exceptions"
1726 entry with "ada-exceptions".
1727
1728 2013-11-13 Joel Brobecker <brobecker@adacore.com>
1729
1730 * symfile.c (reread_symbols): Move call to set_objfile_per_bfd
1731 after re-initialization of OBJFILE's obstack.
1732
1733 2013-11-12 Doug Evans <xdje42@gmail.com>
1734
1735 * breakpoint.c (bpstat_check_breakpoint_conditions): Assert
1736 bs->stop != 0 on entry. Update function comment. Simplify early
1737 exit for frame mismatch. Reindent rest of function.
1738
1739 2013-11-12 Andreas Arnez <arnez@linux.vnet.ibm.com>
1740
1741 * objc-lang.c (uniquify_strings): Prevent invoking qsort with
1742 NULL.
1743
1744 2013-11-12 Doug Evans <dje@google.com>
1745
1746 Work around gold/15646.
1747 * dwarf2read.c (read_index_from_section): Update comment.
1748 (struct dw2_symtab_iterator): New member global_seen.
1749 (dw2_symtab_iter_init): Initialize it.
1750 (dw2_symtab_iter_next): Skip duplicate global symbols.
1751 (dw2_expand_symtabs_matching): Ditto.
1752
1753 2013-11-12 Joel Brobecker <brobecker@adacore.com>
1754
1755 * mi/mi-cmds.h (mi_cmd_info_ada_exceptions): Add declaration.
1756 * mi/mi-cmds.c (mi_cmds): Add entry for -info-ada-exceptions
1757 command.
1758 * mi/mi-cmd-info.c: #include "ada-lang.c" and "arch-utils.c".
1759 (mi_cmd_info_ada_exceptions): New function.
1760 * mi/mi-main.c (mi_cmd_list_features): Add "info-ada-exceptions".
1761
1762 2013-11-12 Joel Brobecker <brobecker@adacore.com>
1763
1764 * ada-lang.h: #include "vec.h".
1765 (struct ada_exc_info): New.
1766 (ada_exc_info): New typedef.
1767 (DEF_VEC_O(ada_exc_info)): New vector.
1768 (ada_exceptions_list): Add declaration.
1769 * ada-lang.c (ada_is_exception_sym)
1770 (ada_is_non_standard_exception_sym, compare_ada_exception_info)
1771 (sort_remove_dups_ada_exceptions_list)
1772 (ada_exc_search_name_matches, ada_add_standard_exceptions)
1773 (ada_add_exceptions_from_frame, ada_add_global_exceptions)
1774 (ada_exceptions_list_1, ada_exceptions_list)
1775 (info_exceptions_command): New function.
1776 (_initialize_ada_language): Add "info exception" command.
1777
1778 2013-11-11 Phil Muldoon <pmuldoon@redhat.com>
1779
1780 PR python/15629
1781 * NEWS: Add linetable feature.
1782 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-linetable entries.
1783 * python/py-linetable.c: New file.
1784 * python/py-symtab.c (stpy_get_linetable): New function.
1785 * python/python-internal.h (symtab_to_linetable_object): Declare.
1786 (gdbpy_initialize_linetable): Ditto.
1787 * python/python.c (_initialize_python): Call
1788 gdbpy_initialize_linetable.
1789
1790 2013-11-11 Joel Brobecker <brobecker@adacore.com>
1791
1792 * ada-lang.c (create_ada_exception_catchpoint): Enhance
1793 the documentation of fields "except_string" and "condition".
1794 * mi/mi-cmd-catch.c (mi_cmd_catch_assert): Reallocate
1795 CONDITION on the heap before passing it to
1796 create_ada_exception_catchpoint.
1797 (mi_cmd_catch_exception): Likewise for EXCEPTION_NAME and
1798 CONDITION.
1799
1800 2013-11-11 Tom Tromey <tromey@redhat.com>
1801
1802 * config.in, configure: Rebuild.
1803 * configure.ac (HAVE_TKILL_SYSCALL): Check for "syscall".
1804
1805 2013-11-11 Joel Brobecker <brobecker@adacore.com>
1806
1807 * remote-sim.c (gdbsim_detach): Break declaration into
1808 shorter lines. No code change.
1809
1810 2013-11-11 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
1811
1812 * remote-sim.c (gdbsim_detach): Fix prototype.
1813
1814 2013-11-08 Doug Evans <dje@google.com>
1815
1816 * dwarf2read.c (dwarf2_read_debug): Change to unsigned int.
1817 (create_debug_types_hash_table): Only print debugging messages for
1818 each TU if dwarf2-read >= 2.
1819 (process_queue): Ditto.
1820 (_initialize_dwarf2_read): Make "set debug dwarf2-read" a zuinteger.
1821 Update doc string.
1822
1823 2013-11-08 Tom Tromey <tromey@redhat.com>
1824
1825 * configure: Rebuild.
1826 * configure.ac: Remove mentions of HAVE_MULTIPLE_PROC_FDS.
1827
1828 2013-11-08 Tom Tromey <tromey@redhat.com>
1829
1830 * configure, config.in: Rebuild.
1831 * configure.ac: Remove unused configury.
1832
1833 2013-11-08 Tom Tromey <tromey@redhat.com>
1834
1835 * m32c-tdep.c: Use gdb_string.h.
1836
1837 2013-11-08 Tom Tromey <tromey@redhat.com>
1838
1839 * configure, config.in: Rebuild.
1840 * configure.ac: Remove all link.h-related checks.
1841
1842 2013-11-08 Tom Tromey <tromey@redhat.com>
1843
1844 * acinclude.m4: Include common.m4.
1845 * common/common.m4: New file.
1846 * configure, config.in: Rebuild.
1847 * configure.ac: Use GDB_AC_COMMON.
1848
1849 2013-11-08 Doug Evans <dje@google.com>
1850
1851 * NEWS: Mention that "set debug symtab-create" now accepts a
1852 verbosity level.
1853 * buildsym.c (end_symtab_from_static_block): Call set_symtab_primary
1854 to set the symtab's primary flag.
1855 * jit.c (finalize_symtab): Ditto.
1856 * mdebugread.c (psymtab_to_symtab_1): Ditto.
1857 * symfile.c (allocate_symtab): Only print debugging messages for
1858 symtab_create_debug levels 2 and higher.
1859 * symtab.c (symtab_create_debug): Change type to unsigned int.
1860 (set_symtab_primary): New function.
1861 (_initialize_symtab): Change "set debug symtab-create" to a
1862 zuinteger option.
1863 * symtab.h (set_symtab_primary): Declare.
1864 (symtab_create_debug): Update decl.
1865
1866 2013-11-08 Tom Tromey <tromey@redhat.com>
1867
1868 * aix-thread.c (aix_thread_detach): Update.
1869 * corelow.c (core_detach): Update.
1870 * darwin-nat.c (darwin_detach): Update.
1871 * dec-thread.c (dec_thread_detach): Update.
1872 * gnu-nat.c (gnu_detach): Update.
1873 * go32-nat.c (go32_detach): Update.
1874 * inf-ptrace.c (inf_ptrace_detach): Update.
1875 * inf-ttrace.c (inf_ttrace_detach): Update.
1876 * linux-fork.c (linux_fork_detach): Update.
1877 * linux-fork.h (linux_fork_detach): Update.
1878 * linux-nat.c (linux_nat_detach): Update. Introduce "tem"
1879 local for const-correctness.
1880 * linux-thread-db.c (thread_db_detach): Update.
1881 * monitor.c (monitor_detach): Update.
1882 * nto-procfs.c (procfs_detach): Update.
1883 * procfs.c (procfs_detach): Update.
1884 * record.c (record_detach): Update.
1885 * record.h (record_detach): Update.
1886 * remote-m32r-sdi.c (m32r_detach): Update.
1887 * remote-mips.c (mips_detach): Update.
1888 * remote-sim.c (gdbsim_detach): Update.
1889 * remote.c (remote_detach_1, remote_detach)
1890 (extended_remote_detach): Update.
1891 * sol-thread.c (sol_thread_detach): Update.
1892 * target.c (target_detach): Make "args" const.
1893 (init_dummy_target): Update.
1894 * target.h (struct target_ops) <to_detach>: Make argument const.
1895 (target_detach): Likewise.
1896 * windows-nat.c (windows_detach): Update.
1897
1898 2013-11-07 Doug Evans <dje@google.com>
1899
1900 PR 11786
1901 * solib-svr4.c (svr4_exec_displacement): Ignore filesz, memsz, flags
1902 and align fields for PT_GNU_RELRO segments.
1903
1904 2013-11-07 Phil Muldoon <pmuldoon@redhat.com>
1905
1906 PR python/15747
1907 * python/py-cmd.c: Add COMPLETE_EXPRESSION constant.
1908
1909 2013-11-07 Phil Muldoon <pmuldoon@redhat.com>
1910
1911 * NEWS: Document Python temporary breakpoint support.
1912 * python/py-breakpoint.c (bppy_get_temporary): New function.
1913 (bppy_init): New keyword: temporary. Parse it and set breakpoint
1914 to temporary if True.
1915
1916 2013-11-07 Jose E. Marchesi <jose.marchesi@oracle.com>
1917
1918 * sparc-tdep.c (sparc_analyze_control_transfer): Assertion
1919 removed to allow analyzing unconditional branch instructions
1920 with PC-relative offsets of zero.
1921
1922 2013-11-07 Yao Qi <yao@codesourcery.com>
1923
1924 * mi/mi-cmd-var.c: Include "language.h".
1925 (mi_cmd_var_info_expression): Get language name from
1926 language_defn.
1927 * varobj.c (varobj_language_string): Remove.
1928 (variable_language): Remove declaration.
1929 (languages): Remove.
1930 (varobj_get_language): Change the type of return value.
1931 (variable_language): Remove.
1932 * varobj.h (enum varobj_languages): Remove.
1933 (varobj_language_string): Remove declaration.
1934 (varobj_get_language): Update declaration.
1935
1936 2013-11-07 Yao Qi <yao@codesourcery.com>
1937
1938 * language.h (struct language_defn) <la_natural_name>: New
1939 field.
1940 * ada-lang.c (ada_language_defn): Initialize field
1941 'la_natural_name'.
1942 * c-lang.c (c_language_defn): Likewise.
1943 (cplus_language_defn, asm_language_defn): Likewise.
1944 * d-lang.c (d_language_defn): Likewise.
1945 * f-lang.c (f_language_defn): Likewise.
1946 * go-lang.c (go_language_defn): Likewise.
1947 * jv-lang.c (java_language_defn): Likewise.
1948 * language.c (unknown_language_defn ): Likewise.
1949 (auto_language_defn): Likewise.
1950 * m2-lang.c (m2_language_defn): Likewise.
1951 * objc-lang.c (objc_language_defn): Likewise.
1952 * opencl-lang.c (opencl_language_defn): Likewise.
1953 * p-lang.c (pascal_language_defn): Likewise.
1954
1955 2013-11-07 Yao Qi <yao@codesourcery.com>
1956
1957 * language.c (language_str): Return const char *.
1958 (add_language): Add const to 'language_names'
1959 * language.h (struct language_defn) <la_name>: Add const.
1960 (language_str: Update declaration.
1961
1962 2013-11-06 Andreas Arnez <arnez@linux.vnet.ibm.com>
1963
1964 * s390-linux-nat.c (s390_read_description): Consider the TE field
1965 in the HWCAP for determining 'have_regset_tdb'.
1966
1967 2013-11-06 Will Newton <will.newton@linaro.org>
1968
1969 PR gdb/12866
1970 * dwarf2read.c (skip_one_die): Sanity check DW_AT_sibling
1971 values. (read_partial_die): Likewise.
1972
1973 2013-11-06 Muhammad Bilal <mbilal@codesourcery.com>
1974
1975 PR cli/16122
1976 * top.c (command_line_input): Unify interactivity tests to use
1977 input_from_terminal_p.
1978 * event-top.c (command_line_handler): Likewise.
1979
1980 2013-11-06 Yao Qi <yao@codesourcery.com>
1981
1982 * Makefile.in (check-perf): New target.
1983
1984 2013-11-05 Will Newton <will.newton@linaro.org>
1985
1986 PR gdb/7670
1987 * arm-tdep.c (print_fpu_flags): Use filtered output routines.
1988 (arm_print_float_info): Likewise.
1989
1990 2013-11-04 Anton Blanchard <anton@samba.org>
1991
1992 * target.c (memory_xfer_partial): Cap write to 4KB.
1993
1994 2013-11-01 Tiago Stürmer Daitx <tdaitx@linux.vnet.ibm.com>
1995
1996 * breakpoint.c (create_longjmp_master_breakpoint): Allow libc
1997 probe scan even when the arch provides no get_longjmp_target.
1998
1999 2013-10-31 Pedro Alves <palves@redhat.com>
2000
2001 * infrun.c (handle_syscall_event): Don't set or clear stop_signal.
2002 (handle_inferior_event) <TARGET_WAITKIND_FORKED,
2003 TARGET_WAITKIND_VFORKED>: Don't set stop_signal to
2004 GDB_SIGNAL_TRAP, or clear it. Pass GDB_SIGNAL_0 to
2005 bpstat_explains signal, instead of GDB_SIGNAL_TRAP.
2006 <bpstat handling>: If the bpstat chain wants the signal to be
2007 hidden, then set stop_signal to GDB_SIGNAL_0 instead of
2008 GDB_SIGNAL_TRAP.
2009
2010 2013-10-31 Andrew Burgess <aburgess@broadcom.com>
2011
2012 * breakpoint.c (update_watchpoint): Update error message and add
2013 an additional error message.
2014
2015 2013-10-30 Andreas Arnez <arnez@linux.vnet.ibm.com>
2016
2017 * s390-tdep.h: Rename to...
2018 * s390-linux-tdep.h: ...here.
2019 * s390-tdep.c: Rename to...
2020 * s390-linux-tdep.c: ...here. Adjust #include.
2021 * s390-nat.c: Rename to...
2022 * s390-linux-nat.c: ...here. Adjust #include.
2023 * config/s390/s390.mh: Rename to...
2024 * config/s390/linux.mh: ...here. Reflect rename s390-nat.o ->
2025 s390-linux-nat.o.
2026 * configure.host: Reflect host rename "s390" -> "linux".
2027 * configure.tgt: Reflect rename s390-tdep.o -> s390-linux-tdep.o.
2028 * Makefile.in (ALL_TARGET_OBS): Likewise.
2029 (HFILES_NO_SRCDIR): Reflect rename s390-tdep.h ->
2030 s390-linux-tdep.h.
2031 (ALLDEPFILES): Reflect rename of .c files.
2032
2033 2013-10-30 Andreas Arnez <arnez@linux.vnet.ibm.com>
2034
2035 * s390-nat.c: Whitespace cleanup.
2036 * s390-tdep.c: Likewise.
2037 * s390-tdep.h: Remove empty line at end of file.
2038
2039 2013-10-30 Maciej W. Rozycki <macro@codesourcery.com>
2040
2041 * linux-tdep.c (linux_corefile_thread_callback): Preinitialize
2042 siginfo_size.
2043
2044 2013-10-29 Tom Tromey <tromey@redhat.com>
2045
2046 * utils.c (reg): Move undefinition...
2047 * gdb_curses.h: ... here. Update comment to mention AIX.
2048
2049 2013-10-29 Nicolas Blanc <nicolas.blanc@intel.com>
2050
2051 * exec.h (add_target_sections_of_objfile): New declaration.
2052 * exec.c (add_target_sections_of_objfile): New function.
2053 * symfile.c (add_symbol_file_command): Update current target sections.
2054 (remove_symbol_file_command): New command.
2055 (symfile_free_objfile): New function.
2056 (_initialize_symfile): Register observer for free_objfile events.
2057 * NEWS: Add description of the remove-symbol-file command.
2058 * breakpoint.c (disable_breakpoints_in_freed_objfile): New function.
2059 * objfiles.c (free_objfile): Notify free_objfile.
2060 (is_addr_in_objfile): New function.
2061 * objfiles.h (is_addr_in_objfile): New declaration.
2062 * printcmd.c (clear_dangling_display_expressions): Act upon free_objfile
2063 events instead of solib_unloaded events.
2064 (_initialize_printcmd): Register observer for free_objfile instead
2065 of solib_unloaded notifications.
2066 * solib.c (remove_user_added_objfile): New function.
2067 (_initialize_symfile): Add remove-symbol-file.
2068
2069 2013-10-29 Andrew Burgess <aburgess@broadcom.com>
2070
2071 * infcmd.c (default_print_one_register_info): Use val_print to
2072 print all values even optimized out or unavailable ones. Don't
2073 try to print a raw form of optimized out or unavailable values.
2074
2075 2013-10-29 Yao Qi <yao@codesourcery.com>
2076
2077 * auto-load.c (auto_load_pspace_data_cleanup): Get data from
2078 parameter 'arg' instead of from program_space_data.
2079 * objfiles.c (objfiles_pspace_data_cleanup): Likewise.
2080 * solib-darwin.c (darwin_pspace_data_cleanup): Likewise.
2081 * solib-dsbt.c (dsbt_pspace_data_cleanup): Likewise.
2082 * solib-svr4.c (svr4_pspace_data_cleanup): Likewise.
2083 * inflow.c (inflow_inferior_data_cleanup): Get data from
2084 parameter 'arg' instead of inferior_data.
2085 * registry.h: Add comments.
2086
2087 2013-10-28 Pedro Alves <palves@redhat.com>
2088
2089 * breakpoint.c (watchpoints_triggered)
2090 <!target_stopped_data_address>: Hardcode return 1.
2091
2092 2013-10-28 Pedro Alves <palves@redhat.com>
2093
2094 * infrun.c (process_event_stop_test): Remove unnecessary scoping
2095 level and reindent.
2096
2097 2013-10-28 Pedro Alves <palves@redhat.com>
2098
2099 * infrun.c (process_event_stop_test): New function, factored out
2100 from handle_inferior_event.
2101 (handle_inferior_event): 'process_event_stop_test' is now a
2102 function instead of a goto label -- adjust.
2103
2104 2013-10-28 Pedro Alves <palves@redhat.com>
2105
2106 * infrun.c (handle_inferior_event): Move process_event_stop_test
2107 goto label to the else branch of the ecs->random_signal check,
2108 along with FRAME and GDBARCH re-fetching.
2109
2110 2013-10-28 Pedro Alves <palves@redhat.com>
2111
2112 * infrun.c (switch_back_to_stepped_thread): New function, factored
2113 out from handle_inferior_event.
2114 (handle_inferior_event): Adjust to call
2115 switch_back_to_stepped_thread. Call it also at the tail of the
2116 random signal handling, and return, instead of also handling
2117 random signals just before the stepping tests.
2118
2119 2013-10-28 Pedro Alves <palves@redhat.com>
2120
2121 * infrun.c (clear_stop_func): Delete.
2122 (handle_inferior_event): Don't call clear_stop_func and don't
2123 clear 'ecs->random_signal'.
2124
2125 2013-10-27 Yao Qi <yao@codesourcery.com>
2126
2127 * varobj.c (struct varobj_root) <lang>: Rename to 'lang_ops'.
2128 (varobj_create, varobj_get_path_expr): Update.
2129 (varobj_value_has_mutated, varobj_update): Likewise.
2130 (create_child_with_value, new_root_variable): Likewise.
2131 (number_of_children, name_of_variable): Likewise.
2132 (value_of_child, my_value_of_variable): Likewise.
2133 (varobj_value_is_changeable_p): Likewise.
2134
2135 2013-10-25 Yao Qi <yao@codesourcery.com>
2136
2137 * language.h (struct lang_varobj_ops): Declare.
2138 (struct language_defn) <la_varobj_ops>: New field.
2139 * ada-lang.c: Include "varobj.h"
2140 (defn ada_language_defn): Initialize field 'la_varobj_ops' with
2141 ada_varobj_ops.
2142 * c-lang.c: Include "varobj.h"
2143 (c_language_defn): Initialize field 'la_varobj_ops' with
2144 c_varobj_ops.
2145 (cplus_language_defn): Initialize field 'la_varobj_ops' with
2146 cplus_varobj_ops.
2147 (asm_language_defn): Initialize field 'la_varobj_ops' with
2148 default_varobj_ops.
2149 (minimal_language_defn): Likewise.
2150 * d-lang.c (d_language_defn): Likewise.
2151 * f-lang.c (f_language_defn): Likewise.
2152 * go-lang.c (go_language_defn): Likewise.
2153 * m2-lang.c (m2_language_defn): Likewise.
2154 * objc-lang.c (objc_language_defn): Likewise.
2155 * opencl-lang.c (opencl_language_defn): Likewise.
2156 * p-lang.c (pascal_language_defn): Likewise.
2157 * language.c (unknown_language_defn): Likewise.
2158 (auto_language_defn): Likewise.
2159 (local_language_defn): Likewise.
2160 * jv-lang.c (java_language_defn): Initialize field
2161 'la_varobj_ops' with java_varobj_ops.
2162 * varobj.c (varobj_create): Update.
2163 * varobj.h (default_varobj_ops): Define macro.
2164
2165 2013-10-25 Pedro Alves <palves@redhat.com>
2166
2167 * cp-valprint.c (cp_print_value_fields): No longer handle a NULL
2168 static field value.
2169 (cp_print_static_field): If the value is entirely optimized out,
2170 print <optimized out> here.
2171 * jv-valprint.c (java_print_value_fields): No longer handle a NULL
2172 static field value.
2173 * p-valprint.c (pascal_object_print_static_field): If the value is
2174 entirely optimized out, print <optimized out> here.
2175 * valops.c (do_search_struct_field)
2176 (value_struct_elt_for_reference): No longer handle a NULL static
2177 field value.
2178 * value.c (value_static_field): Return an optimized out value
2179 instead of NULL.
2180
2181 2013-10-25 Yao Qi <yao@codesourcery.com>
2182
2183 * remote.c (remote_traceframe_info): Return early if
2184 traceframe is not selected.
2185
2186 2013-10-25 Yao Qi <yao@codesourcery.com>
2187
2188 * tracepoint.c (traceframe_fun): Remove.
2189 (traceframe_sal): Remove.
2190 (set_traceframe_context): Add local variables.
2191
2192 2013-10-25 Joel Brobecker <brobecker@adacore.com>
2193
2194 * varobj.h (struct lang_varobj_ops): Remove spaces between '*'
2195 and parameter name.
2196
2197 2013-10-24 Maciej W. Rozycki <macro@codesourcery.com>
2198
2199 * linux-tdep.c (linux_corefile_thread_callback): Propagate any
2200 failure from register information collection.
2201
2202 2013-10-24 Maciej W. Rozycki <macro@codesourcery.com>
2203
2204 * linux-tdep.c (linux_corefile_thread_data): Remove `num_notes'
2205 member.
2206 (linux_corefile_thread_callback): Update accordingly.
2207 (linux_make_corefile_notes): Likewise.
2208
2209 2013-10-24 Pedro Alves <palves@redhat.com>
2210
2211 * NEWS (New options): Mention set/show startup-with-shell.
2212 * config/alpha/nm-osf3.h (START_INFERIOR_TRAPS_EXPECTED): Set to 2
2213 instead of 3.
2214 * fork-child.c (fork_inferior, startup_inferior): Handle 'set
2215 startup-with-shell'.
2216 (show_startup_with_shell): New function.
2217 (_initialize_fork_child): Register the set/show startup-with-shell
2218 commands.
2219 * inf-ptrace.c (inf_ptrace_create_inferior): Remove comment.
2220 * inf-ttrace.c (inf_ttrace_him): Remove comment.
2221 * procfs.c (procfs_init_inferior): Remove comment.
2222 * infcmd.c (startup_with_shell): New global.
2223 * inferior.h (startup_with_shell): Declare global.
2224 (STARTUP_WITH_SHELL): Delete.
2225 (START_INFERIOR_TRAPS_EXPECTED): Set to 1 by default instead of 2.
2226
2227 2013-10-23 Pedro Alves <palves@redhat.com>
2228
2229 * common/gdb_signals.h (gdb_signal_to_symbol_string): Declare.
2230 * common/signals.c: Include "gdb_assert.h".
2231 (signals): New field 'symbol'.
2232 (SET): Use the 'symbol' parameter.
2233 (gdb_signal_to_symbol_string): New function.
2234 * infrun.c (handle_inferior_event) <random signal>: In debug
2235 output, print the random signal enum as string in addition to its
2236 number.
2237 * target/waitstatus.c (target_waitstatus_to_string): Print the
2238 signal's enum value as string instead of the (POSIX) signal name.
2239
2240 2013-10-23 Gary Benson <gbenson@redhat.com>
2241
2242 PR 16013
2243 * common/linux-osdata.c (command_from_pid): Reduced size of cmd
2244 from 32 to 18. Adjusted fscanf format string accordingly.
2245 (Avoids leaving cmd unterminated.)
2246 (print_sockets): Do not parse tlen, inode, sl, timeout, txq, rxq,
2247 trun, retn or extra. (Avoids leaving extra unterminated.) Check
2248 that local_address and remote_address will not overflow.
2249 (linux_xfer_osdata_modules): Parse lines using strtok to avoid
2250 leaving dependencies unterminated. Parse size as "%u" to match
2251 definition.
2252
2253 2013-10-22 Pedro Alves <palves@redhat.com>
2254
2255 * infrun.c (handle_inferior_event) <thread hop>: Don't clear or
2256 set ecs->random signal.
2257
2258 2013-10-22 Pedro Alves <palves@redhat.com>
2259
2260 * infrun.c (keep_going): Update comments.
2261
2262 2013-10-22 Pedro Alves <palves@redhat.com>
2263
2264 * remote.c (remote_parse_stop_reply) <'T'/'S'/'X' replies>: Map
2265 invalid signal numbers to GDB_SIGNAL_UNKNOWN.
2266
2267 2013-10-22 Pedro Alves <palves@redhat.com>
2268
2269 * include/gdb/signals.def (TARGET_EXC_BAD_ACCESS): Rename to
2270 GDB_EXC_BAD_ACCESS.
2271 (TARGET_EXC_BAD_INSTRUCTION): Rename to GDB_EXC_BAD_INSTRUCTION.
2272 (TARGET_EXC_ARITHMETIC): Rename to GDB_EXC_ARITHMETIC.
2273 (TARGET_EXC_EMULATION): Rename to GDB_EXC_EMULATION.
2274 (TARGET_EXC_SOFTWARE): Rename to GDB_EXC_SOFTWARE.
2275 (TARGET_EXC_BREAKPOINT): Rename to GDB_EXC_BREAKPOINT.
2276 (GDB_SIGNAL_LAST): Change description string.
2277 * common/signals.c (gdb_signal_from_host, do_gdb_signal_to_host):
2278 Adjust to signal renaming.
2279 * darwin-nat.c (darwin_decode_message): Likewise.
2280
2281 2013-10-22 Jose E. Marchesi <jose.marchesi@oracle.com>
2282
2283 * MAINTAINERS (Write After Approval): Add myself to the list.
2284
2285 2013-10-18 Andrew Burgess <aburgess@broadcom.com>
2286
2287 * breakpoint.c (update_watchpoint): If hardware watchpoints are
2288 forced off, downgrade them to software watchpoints if possible,
2289 and error out if not possible.
2290 (watch_command_1): Move watchpoint type selection closer to
2291 watchpoint creation, and extend the comments.
2292
2293 2013-10-18 Pedro Alves <palves@redhat.com>
2294
2295 PR gdb/16062
2296 * infrun.c (handle_inferior_event): Keep going if we got a random
2297 signal we should not stop for, instead of falling through to the
2298 step tests.
2299
2300 2013-10-18 Yao Qi <yao@codesourcery.com>
2301
2302 * c-varobj.c (cplus_number_of_children): Fix indentation.
2303
2304 2013-10-17 Tom Tromey <tromey@redhat.com>
2305
2306 PR gdb/15995:
2307 * printcmd.c (printcmd): Call gdb_flush.
2308
2309 2013-10-17 Tom Tromey <tromey@redhat.com>
2310
2311 * elfread.c (struct elfinfo) <stabindexsect>: Remove.
2312 (elf_locate_sections): Update.
2313
2314 2013-10-17 Yao Qi <yao@codesourcery.com>
2315
2316 * Makefile.in (HFILES_NO_SRCDIR): Remove ada-varobj.h.
2317 * ada-varobj.c: Remove the include of ada-varobj.h.
2318 (ada_varobj_get_number_of_children): Declare.
2319 (ada_varobj_get_name_of_child): Make it static.
2320 (ada_varobj_get_path_expr_of_child): Likewise.
2321 (ada_varobj_get_value_of_child): Likewise.
2322 (ada_varobj_get_type_of_child): Likewise.
2323 (ada_varobj_get_value_of_array_variable): Likewise.
2324 * ada-varobj.h: Remove.
2325
2326 2013-10-17 Yao Qi <yao@codesourcery.com>
2327
2328 * Makefile.in (SFILES): Add c-varobj.c and jv-varobj.c.
2329 (COMMON_OBS): Add c-varobj.o and jv-varobj.o.
2330 * ada-varobj.c: Include "varobj.h".
2331 (ada_number_of_children): New. Moved from varobj.c.
2332 (ada_name_of_variable, ada_name_of_child): Likewise.
2333 (ada_path_expr_of_child, ada_value_of_child): Likewise.
2334 (ada_type_of_child, ada_value_of_variable): Likewise.
2335 (ada_value_is_changeable_p, ada_value_has_mutated): Likewise.
2336 (ada_varobj_ops): New.
2337 * c-varobj.c, jv-varobj.c: New file. Moved from varobj.c.
2338 * gdbtypes.c (get_target_type): New. Moved from varobj.c.
2339 * gdbtypes.h (get_target_type): Declare.
2340 * varobj.c: Remove the inclusion of "ada-varobj.h" and
2341 "ada-lang.h".
2342 (ANONYMOUS_STRUCT_NAME): Move it to c-varobj.c.
2343 (ANONYMOUS_UNION_NAME): Likewise.
2344 (get_type, get_value_type, get_target_type): Remove declarations.
2345 (value_get_print_value, varobj_value_get_print_value): Likewise.
2346 (c_number_of_children, c_name_of_variable): Likewise.
2347 (c_name_of_child, c_path_expr_of_child): Likewise.
2348 (c_value_of_child, c_type_of_child): Likewise.
2349 (c_value_of_variable, cplus_number_of_children): Likewise.
2350 (cplus_class_num_children, cplus_name_of_variable): Likewise.
2351 (cplus_name_of_child, cplus_path_expr_of_child): Likewise.
2352 (cplus_value_of_child, cplus_type_of_child): Likewise.
2353 (cplus_value_of_variable, java_number_of_children): Likewise.
2354 (java_name_of_variable, java_name_of_child): Likewise.
2355 (java_path_expr_of_child, java_value_of_child): Likewise.
2356 (java_type_of_child, java_value_of_variable): Likewise.
2357 (ada_number_of_children, ada_name_of_variable): Likewise.
2358 (ada_name_of_child, ada_path_expr_of_child): Likewise.
2359 (ada_value_of_child, ada_type_of_child): Likewise.
2360 (ada_value_of_variable, ada_value_is_changeable_p): Likewise.
2361 (ada_value_has_mutated): Likewise.
2362 (struct language_specific): Move it to varobj.h.
2363 (CPLUS_FAKE_CHILD): Move it to varobj.h.
2364 (restrict_range): Rename it varobj_restrict_range. Make it extern.
2365 Callers update.
2366 (get_path_expr_parent): Rename it to varobj_get_path_expr_parent.
2367 Make it extern.
2368 (is_anonymous_child): Move it to c-varobj.c and rename to
2369 varobj_is_anonymous_child. Caller update.
2370 (get_type): Move it to c-varobj.c.
2371 (get_value_type): Rename it varobj_get_value_type. Make it
2372 extern.
2373 (get_target_type): Move it gdbtypes.c.
2374 (varobj_formatted_print_options): New function.
2375 (value_get_print_value): Rename it to
2376 varobj_value_get_print_value and make it extern.
2377 (varobj_value_is_changeable_p): Make it extern.
2378 (adjust_value_for_child_access): Move it to c-varobj.c.
2379 (default_value_is_changeable_p): Rename it to
2380 varobj_default_value_is_changeable_p. Make it extern.
2381 (c_number_of_children, c_name_of_variable): Move it to c-varobj.c
2382 (c_name_of_child, c_path_expr_of_child): Likewise.
2383 (c_value_of_child, c_type_of_child): Likewise.
2384 (c_value_of_variable, cplus_number_of_children): Likewise.
2385 (cplus_class_num_children, cplus_name_of_variable): Likewise.
2386 (cplus_name_of_child, cplus_path_expr_of_child): Likewise.
2387 (cplus_value_of_child, cplus_type_of_child): Likewise.
2388 (cplus_value_of_variable): Likewise.
2389 (java_number_of_children, java_name_of_variable): Move it to jv-varobj.c.
2390 (java_name_of_child, java_path_expr_of_child): Likewise.
2391 (java_value_of_child, java_type_of_child): Likewise.
2392 (java_value_of_variable): Likewise.
2393 (ada_number_of_children, ada_name_of_variable): Move it to ada-varobj.c.
2394 (ada_name_of_child, ada_path_expr_of_child): Likewise.
2395 (ada_value_of_child, ada_type_of_child): Likewise.
2396 (ada_value_of_variable, ada_value_is_changeable_p): Likewise.
2397 (ada_value_has_mutated): Likewise.
2398 * varobj.h (CPLUS_FAKE_CHILD): New macro, moved from varobj.c.
2399 (struct lang_varobj_ops): New. Renamed by 'struct language_specific'.
2400 (c_varobj_ops, cplus_varobj_ops): Declare.
2401 (java_varobj_ops, ada_varobj_ops): Declare.
2402 (varobj_default_value_is_changeable_p): Declare.
2403 (varobj_value_is_changeable_p): Declare.
2404 (varobj_get_value_type, varobj_is_anonymous_child): Declare.
2405 (varobj_get_path_expr_parent): Declare.
2406 (varobj_value_get_print_value): Declare.
2407 (varobj_formatted_print_options): Declare.
2408 (varobj_restrict_range): Declare.
2409
2410 2013-10-17 Luis Machado <lgustavo@codesourcery.com>
2411
2412 * target/waitstatus.h (target_waitkind): Remove spurious
2413 character from the comments.
2414
2415 2013-10-17 Joel Brobecker <brobecker@adacore.com>
2416
2417 * gdbarch.sh (get_longjmp_target): Add method documentation.
2418 * gdbarch.h: Regenerate.
2419
2420 2013-10-16 Tom Tromey <tromey@redhat.com>
2421
2422 * dbxread.c (read_dbx_symtab) <bss_ext_symbol>: Remove unused
2423 label.
2424
2425 2013-10-16 Luis Machado <lgustavo@codesourcery.com>
2426
2427 * gcore.in: Call GDB using the full path to the gcore script.
2428 Error out if the GDB binary is not found.
2429
2430 2013-10-16 Sergio Durigan Junior <sergiodj@redhat.com>
2431
2432 PR gdb/16014
2433 * dwarf2read.c (dw2_get_real_path): Remove unnecessary call to
2434 sizeof.
2435
2436 2013-10-16 Sergio Durigan Junior <sergiodj@redhat.com>
2437
2438 PR gdb/16042
2439 * target.c (target_disable_btrace): Fix invalid return value for
2440 void function.
2441 (target_teardown_btrace): Likewise.
2442
2443 2013-10-14 Yao Qi <yao@codesourcery.com>
2444
2445 * varobj.c (struct varobj): Move most of the fields to
2446 varobj.h.
2447 (struct varobj_dynamic): New struct.
2448 (varobj_get_display_hint) [HAVE_PYTHON]: Adjust.
2449 (varobj_has_more): Likewise.
2450 (dynamic_varobj_has_child_method): Likewise.
2451 (update_dynamic_varobj_children): Likewise.
2452 (varobj_get_num_children): Likewise.
2453 (varobj_list_children, varobj_pretty_printed_p): Likewise.
2454 (install_new_value_visualizer): Likewise.
2455 (install_new_value_visualizer, install_new_value): Likewise.
2456 (varobj_update, new_variable, free_variable): Likewise.
2457 (my_value_of_variable, value_get_print_value): Likewise.
2458 (install_visualizer): Change the type of parameter 'var' to
2459 'struct varobjd_dynamic *'. Callers update.
2460 * varobj.h (struct varobj): Moved from varobj.c.
2461 (struct varobj) <dynamic>: New field.
2462
2463 2013-10-13 Sandra Loosemore <sandra@codesourcery.com>
2464
2465 * nios2-tdep.c (nios2_reg_names): Use "sstatus" rather than "ba"
2466 as the preferred name of r30.
2467 * nios2-linux-tdep.c (reg_offsets): Likewise.
2468 * features/nios2-cpu.xml: Likewise.
2469 * features/nios2-linux.c: Regenerated.
2470 * features/nios2.c: Regenerated.
2471 * regformats/nios2-linux.dat: Regenerated.
2472
2473 2013-10-13 Jan Kratochvil <jan.kratochvil@redhat.com>
2474
2475 Canonicalize directories for EXEC_FILENAME.
2476 * exec.c (exec_file_attach): Use gdb_realpath_keepfile for
2477 exec_filename.
2478 * utils.c (gdb_realpath_keepfile): New function.
2479 * utils.h (gdb_realpath_keepfile): New declaration.
2480
2481 2013-10-11 Doug Evans <dje@google.com>
2482
2483 * Makefile.in (GDBFLAGS): New variable.
2484 (run): New rule.
2485
2486 2013-10-11 Joel Brobecker <brobecker@adacore.com>
2487
2488 * NEWS: Add entry documenting the new "-catch-assert" and
2489 "-catch-exception" GDB/MI commands.
2490
2491 2013-10-11 Joel Brobecker <brobecker@adacore.com>
2492
2493 * breakpoint.h (init_ada_exception_breakpoint): Add parameter
2494 "enabled".
2495 * breakpoint.c (init_ada_exception_breakpoint): Add parameter
2496 "enabled". Set B->ENABLE_STATE accordingly.
2497 * ada-lang.h (ada_exception_catchpoint_kind): Move here from
2498 ada-lang.c.
2499 (create_ada_exception_catchpoint): Add declaration.
2500 * ada-lang.c (ada_exception_catchpoint_kind): Move to ada-lang.h.
2501 (create_ada_exception_catchpoint): Make non-static. Add new
2502 parameter "disabled". Use it in call to
2503 init_ada_exception_breakpoint.
2504 (catch_ada_exception_command): Add parameter "enabled" in call
2505 to create_ada_exception_catchpoint.
2506 (catch_assert_command): Likewise.
2507
2508 * mi/mi-cmds.h (mi_cmd_catch_assert, mi_cmd_catch_exception):
2509 Add declarations.
2510 * mi/mi-cmds.c (mi_cmds): Add the "catch-assert" and
2511 "catch-exception" commands.
2512 * mi/mi-cmd-catch.c: Add #include "ada-lang.h".
2513 (mi_cmd_catch_assert, mi_cmd_catch_exception): New functions.
2514
2515 2013-10-11 Joel Brobecker <brobecker@adacore.com>
2516
2517 * ada-lang.c (enum ada_exception_catchpoint_kind): Renames
2518 "enum exception_catchpoint_kind". Replace the "ex_" prefix
2519 of all its enumerates with "ada_". Update the rest of this
2520 file throughout.
2521
2522 2013-10-11 Joel Brobecker <brobecker@adacore.com>
2523
2524 * ada-lang.c (ada_decode_exception_location): Delete.
2525 (create_ada_exception_catchpoint): Remove arguments "sal",
2526 "addr_string" and "ops". Add argument "ex_kind" instead.
2527 Adjust implementation accordingly, calling ada_exception_sal
2528 to get the entities it no longer gets passed as arguments.
2529 Document the function's arguments.
2530 (catch_ada_exception_command): Use catch_ada_exception_command_split
2531 instead of ada_decode_exception_location, and update call to
2532 create_ada_exception_catchpoint.
2533 (catch_ada_assert_command_split): Renames
2534 ada_decode_assert_location. Remove parameters "addr_string" and
2535 "ops", and now returns void. Adjust implementation accordingly.
2536 Update the function documentation.
2537 (catch_assert_command): Use catch_ada_assert_command_split
2538 instead of ada_decode_assert_location. Update call to
2539 create_ada_exception_catchpoint.
2540
2541 2013-10-11 Joel Brobecker <brobecker@adacore.com>
2542
2543 * utils.h (perror_warning_with_name): Add declaration.
2544 * utils.c (perror_warning_with_name): New function.
2545 * cli/cli-cmds.c (source_script_with_search): Add call to
2546 perror_warning_with_name if from_tty is nul.
2547
2548 2013-10-11 Joel Brobecker <brobecker@adacore.com>
2549
2550 * utils.c (perror_string): New function, extracted out of
2551 throw_perror_with_name.
2552 (throw_perror_with_name): Rework to use perror_string.
2553
2554 2013-10-11 Yao Qi <yao@codesourcery.com>
2555
2556 * remote.c (discard_pending_stop_replies_in_queue): Update
2557 declaration.
2558 (struct stop_reply) <rs>: New field.
2559 (remove_stop_reply_of_remote_state): New function.
2560 (discard_pending_stop_replies_in_queue): Add parameter 'rs'.
2561 Callers update. Pass remove_stop_reply_of_remote_state to
2562 QUEUE_iterate.
2563 (remote_parse_stop_reply): Initialize field 'rs'.
2564
2565 2013-10-10 Will Newton <will.newton@linaro.org>
2566
2567 * aarch64-linux-tdep.c (aarch64_linux_init_abi): Call
2568 linux_init_abi.
2569
2570 2013-10-10 Joel Brobecker <brobecker@adacore.com>
2571
2572 * cli/cli-cmds.c (show_baud_rate): Moved to serial.c as
2573 serial_baud_show_cmd.
2574 (_initialize_cli_cmds): Delete the code creating the
2575 "set/show remotebaud" commands.
2576 * serial.c (baud_rate): Move here from top.c.
2577 (serial_baud_show_cmd): Move here from cli/cli-cmds.c.
2578 (_initialize_serial): Create "set/show serial baud" commands.
2579 Add "set/show remotebaud" command aliases.
2580 * top.c (baud_rate): Moved to serial.c.
2581 * NEWS: Document the new "set/show serial baud" commands,
2582 replacing "set/show remotebaud".
2583
2584 2013-10-09 Pedro Alves <palves@redhat.com>
2585
2586 * breakpoint.c (insert_bp_location): Use memory_error_message to
2587 build the memory error string.
2588 * c-lang.c: Include "gdbcore.h".
2589 (c_get_string): Use memory_error to throw error.
2590 (target_xfer_memory_error): Delete.
2591 (memory_error_message): New, factored out from
2592 target_xfer_memory_error.
2593 (memory_error): Change parameter type to target_xfer_error.
2594 Rewrite.
2595 (read_memory): Use memory_error instead of
2596 target_xfer_memory_error.
2597 * gdbcore.h: Include "target.h".
2598 (memory_error): Change parameter type to target_xfer_error.
2599 (memory_error_message): Declare function.
2600 * target.c (target_read_memory, target_read_stack)
2601 (target_write_memory, target_write_raw_memory): Return
2602 TARGET_XFER_E_IO on error. Adjust comments.
2603 (get_target_memory): Pass TARGET_XFER_E_IO to memory_error,
2604 instead of EIO.
2605 * target.h (target_read, target_insert_breakpoint)
2606 (target_remove_breakpoint): Adjust comments.
2607 * valprint.c (partial_memory_read): Rename parameter, and adjust
2608 comment.
2609 (val_print_string): Use memory_error_message to build the memory
2610 error string.
2611
2612 2013-10-09 Jan Kratochvil <jan.kratochvil@redhat.com>
2613
2614 * common/filestuff.c (gdb_fopen_cloexec): Remove initialization of
2615 result variable. Rename variable fopen_e_ever_failed to
2616 fopen_e_ever_failed_einval. Retry fopen only for errno EINVAL.
2617
2618 2013-10-09 Pedro Alves <palves@redhat.com>
2619
2620 * monitor.c (monitor_write_memory, monitor_write_memory_bytes)
2621 (monitor_write_memory_longlongs, monitor_write_memory_block):
2622 Constify 'myaddr' parameter.
2623 (monitor_xfer_memory): Adjust interface as monitor_xfer_partial
2624 helper.
2625 (monitor_xfer_partial): New function.
2626 (init_base_monitor_ops): Don't install a deprecated_xfer_memory
2627 hook. Install a to_xfer_partial hook.
2628
2629 2013-10-09 Tom Tromey <tromey@redhat.com>
2630
2631 * dwarf2read.c (dwarf2_get_dwz_file): Update for type change in
2632 bfd_get_alt_debug_link_info.
2633
2634 2013-10-09 Jan Kratochvil <jan.kratochvil@redhat.com>
2635
2636 New flag OBJF_NOT_FILENAME.
2637 * auto-load.c (auto_load_objfile_script): Check also OBJF_NOT_FILENAME.
2638 * jit.c (jit_object_close_impl): Use OBJF_NOT_FILENAME for
2639 allocate_objfile.
2640 (jit_bfd_try_read_symtab): Use OBJF_NOT_FILENAME for
2641 symbol_file_add_from_bfd.
2642 * jv-lang.c (get_dynamics_objfile): Use OBJF_NOT_FILENAME for
2643 allocate_objfile.
2644 * objfiles.c (allocate_objfile): Assert OBJF_NOT_FILENAME if NAME is
2645 NULL.
2646 * objfiles.h (OBJF_NOT_FILENAME): New.
2647
2648 2013-10-08 Tom Tromey <tromey@redhat.com>
2649
2650 * Makefile.in (SFILES): Add build-id.c.
2651 (HFILES_NO_SRCDIR): Add build-id.h.
2652 * build-id.c: New file, largely from elfread.c. Modified
2653 most functions.
2654 * build-id.h: New file.
2655 * dwarf2read.c (dwarf2_get_dwz_file): Update for change to
2656 bfd_get_alt_debug_link_info. Verify dwz file's build-id.
2657 Search for dwz file using build-id.
2658 * elfread.c (build_id_bfd_get, build_id_verify)
2659 (build_id_to_debug_filename, find_separate_debug_file): Remove.
2660
2661 2013-10-08 Joel Brobecker <brobecker@adacore.com>
2662
2663 * ada-lang.c (compare_names_with_case): Renamed from
2664 compare_names, adding a new parameter "casing" and its handling.
2665 New function documentation.
2666 (compare_names): New function, implemented using
2667 compare_names_with_case.
2668
2669 2013-10-08 Joel Brobecker <brobecker@adacore.com>
2670
2671 * ada-lang.c (ada_exception_sal): Remove advance declaration.
2672
2673 2013-10-07 Tom Tromey <tromey@redhat.com>
2674
2675 * objfiles.c (free_objfile_per_bfd_storage): Delete the
2676 demangled_names_hash.
2677 (free_objfile): Don't delete the demangled_names_hash.
2678 * objfiles.h (struct objfile_per_bfd_storage)
2679 <demangled_names_hash>: New field.
2680 (struct objfile) <demangled_names_hash>: Move to
2681 objfile_per_bfd_storage.
2682 * symfile.c (reread_symbols): Don't delete the
2683 demangled_names_hash.
2684 * symtab.c (create_demangled_names_hash): Update.
2685 (symbol_set_names): Update.
2686
2687 2013-10-07 Tom Tromey <tromey@redhat.com>
2688
2689 * gdb_bfd.c (struct gdb_bfd_data) <relocation_computed,
2690 needs_relocations>: New fields.
2691 (gdb_bfd_requires_relocations): New function.
2692 * gdb_bfd.h (gdb_bfd_requires_relocations): Declare.
2693 * objfiles.c (get_objfile_bfd_data): Disallow sharing if
2694 the BFD needs relocations applied.
2695
2696 2013-10-07 Pedro Alves <palves@redhat.com>
2697
2698 PR breakpoints/11568
2699 * breakpoint.c (remove_threaded_breakpoints): Say "no longer in
2700 the thread list" instead of "gone".
2701
2702 2013-10-06 Sergio Durigan Junior <sergiodj@redhat.com>
2703
2704 * NEWS: Mention new convenience variable $_exitsignal.
2705 * corelow.c (core_open): Reset exit convenience variables. Set
2706 $_exitsignal to the uncaught signal which generated the corefile.
2707 * infrun.c (handle_inferior_event): Reset exit convenience
2708 variables. Set $_exitsignal for TARGET_WAITKIND_SIGNALLED.
2709 (clear_exit_convenience_vars): New function.
2710 * inferior.h (clear_exit_convenience_vars): New prototype.
2711
2712 2013-10-06 Yao Qi <yao@codesourcery.com>
2713
2714 * varobj.h: Add comments to enum varobj_languages.
2715
2716 2013-10-04 Doug Evans <dje@google.com>
2717
2718 Add support for DWP file format version 2.
2719 * NEWS: Mention support for DWP file format version 2.
2720 * dwarf2read.c (dwarf2_section_info): Convert asection field to a
2721 union of asection, containing_section. New fields virtual_offset
2722 and is_virtual. Change type of readin filed from int to char.
2723 (dwo_sections, dwo_file): Tweak comments.
2724 (dwp_v2_section_ids): New enum.
2725 (dwp_sections): New fields abbrev, info, line, loc, macinfo, macro,
2726 str_offsets, types.
2727 (virtual_v1_dwo_sections): Renamed from virtual_dwo_sections.
2728 All uses updated.
2729 (virtual_v2_dwo_sections): New struct.
2730 (dwp_hash_table): New fields version, nr_columns. Change type of
2731 section_pool field to a union.
2732 (dwp_file): New field version.
2733 (dwarf2_has_info): Check for virtual sections.
2734 (get_containing_section): New function.
2735 (get_section_bfd_owner, get_section_bfd_section): Call it.
2736 (dwarf2_locate_sections): Update.
2737 (dwarf2_section_empty_p): Update.
2738 (dwarf2_read_section): Handle virtual sections.
2739 (locate_dwz_sections): Update.
2740 (create_dwp_hash_table): Document and handle V2 format.
2741 (locate_v1_virtual_dwo_sections): Renamed from
2742 locate_virtual_dwo_sections and update. All callers updated.
2743 (create_dwo_unit_in_dwp_v1): Renamed from create_dwo_in_dwp.
2744 Delete arg htab. Rename arg section_index to unit_index.
2745 All callers updated.
2746 (MAX_NR_V1_DWO_SECTIONS): Renamed from MAX_NR_DWO_SECTIONS.
2747 All uses updated.
2748 (create_dwp_v2_section, create_dwo_unit_in_dwp_v2): New functions.
2749 (lookup_dwo_unit_in_dwp): Add V2 support.
2750 (dwarf2_locate_dwo_sections): Update.
2751 (dwarf2_locate_common_dwp_sections): Renamed from
2752 dwarf2_locate_dwp_sections and update. All callers updated.
2753 (dwarf2_locate_v2_dwp_sections): New function.
2754 (open_and_init_dwp_file): Add V2 support.
2755 (read_str_index): New locals str_section, str_offsets_section.
2756
2757 2013-10-04 Pedro Alves <palves@redhat.com>
2758
2759 * common/ptid.c (null_ptid, minus_one_ptid, ptid_build)
2760 (pid_to_ptid, ptid_get_pid, ptid_get_lwp, ptid_get_tid)
2761 (ptid_equal, ptid_is_pid, ptid_lwp_p, ptid_tid_p): Replace
2762 describing comments with references to ptid.h.
2763 * common/ptid.h: Remove intro description of constructors,
2764 accessors and predicates.
2765 (struct ptid): Reformat.
2766 (minus_one_ptid, ptid_build, pid_to_ptid, ptid_get_pid)
2767 (ptid_get_lwp, ptid_get_tid, ptid_equal, ptid_is_pid): Change
2768 describing comments.
2769
2770 2013-10-04 Joel Brobecker <brobecker@adacore.com>
2771
2772 * aix-thread.c (sync_threadlists): Add missing ')' in call
2773 to ptid_build.
2774
2775 2013-10-04 Joel Brobecker <brobecker@adacore.com>
2776
2777 * procfs.c (procfs_init_inferior): Fix typo causing the build
2778 to fail.
2779
2780 2013-10-04 Joel Brobecker <brobecker@adacore.com>
2781
2782 * aix-thread.c (ptrace32): Remove cast to addr_ptr.
2783
2784 2013-10-04 Joel Brobecker <brobecker@adacore.com>
2785
2786 * mi/mi-main.c (run_one_inferior): Add function description.
2787 Make ARG a pointer to an integer whose value determines whether
2788 we should "run" or "start" the program.
2789 (mi_cmd_exec_run): Add handling of the "--start" option.
2790 Reject all other command-line options.
2791 * NEWS: Add entry for "-exec-run"'s new "--start" option.
2792
2793 2013-10-04 Yao Qi <yao@codesourcery.com>
2794
2795 * remote-notif.h (REMOTE_NOTIF_ID): New enum.
2796 (struct notif_client) <pending_event>: Moved
2797 to struct remote_notif_state.
2798 <id>: New field.
2799 (struct remote_notif_state) <pending_event>: New field.
2800 (notif_event_xfree): Declare.
2801 * remote-notif.c (handle_notification): Adjust.
2802 (notif_event_xfree): New function.
2803 (do_notif_event_xfree): Call notif_event_xfree.
2804 (remote_notif_state_xfree): Call notif_event_xfree to free
2805 each element in field pending_event.
2806 * remote.c (discard_pending_stop_replies): Remove declaration.
2807 (discard_pending_stop_replies_in_queue): Declare.
2808 (remote_close): Call discard_pending_stop_replies_in_queue
2809 instead of discard_pending_stop_replies.
2810 (remote_start_remote): Adjust.
2811 (stop_reply_xfree): Call notif_event_xfree.
2812 (notif_client_stop): Adjust initialization.
2813 (remote_notif_remove_all): Rename it to ...
2814 (remove_stop_reply_for_inferior): ... this. Update comments.
2815 Don't check INF is NULL.
2816 (discard_pending_stop_replies): Return early if notif_state is
2817 NULL. Adjust. Don't check INF is NULL.
2818 (remote_notif_get_pending_events): Adjust.
2819 (discard_pending_stop_replies_in_queue): New function.
2820 (remote_wait_ns): Likewise.
2821
2822 2013-10-04 Yao Qi <yao@codesourcery.com>
2823
2824 * remote-notif.c (DECLARE_QUEUE_P): Remove.
2825 (notif_queue): Remove.
2826 (remote_notif_process): Add one parameter 'notif_queue'.
2827 Update comments. Callers update.
2828 (remote_async_get_pending_events_token): Remove.
2829 (remote_notif_register_async_event_handler): Remove.
2830 (remote_notif_unregister_async_event_handler): Remove.
2831 (handle_notification): Add parameter 'notif_queue'. Update
2832 comments. Callers update.
2833 (notif_xfree): Remove.
2834 (remote_notif_state_allocate): New function.
2835 (remote_notif_state_xfree): New function.
2836 (_initialize_notif): Remove code to allocate queue.
2837 * remote-notif.h (DECLARE_QUEUE_P): Moved from remote-notif.c.
2838 (struct remote_notif_state): New.
2839 (handle_notification): Update declaration.
2840 (remote_notif_process): Likewise.
2841 (remote_notif_register_async_event_handler): Remove.
2842 (remote_notif_unregister_async_event_handler): Remove.
2843 (remote_notif_state_allocate): Declare.
2844 (remote_notif_state_xfree): Declare.
2845 * remote.c (struct remote_state) <notif_state>: New field.
2846 (remote_close): Don't call
2847 remote_notif_unregister_async_event_handler. Call
2848 remote_notif_state_xfree.
2849 (remote_open_1): Don't call
2850 remote_notif_register_async_event_handler. Call
2851 remote_notif_state_allocate.
2852
2853 2013-10-04 Yao Qi <yao@codesourcery.com>
2854
2855 * varobj.c (create_child_with_value): Remove 'const' from the
2856 type of parameter 'name'.
2857 (varobj_add_child): Likewise.
2858 (install_dynamic_child): Remove 'const' from the type of
2859 parameter 'name'.
2860 (varobj_add_child): Likewise.
2861 (create_child_with_value): Likewise. Update comments. Don't
2862 duplicate 'name'.
2863 (update_dynamic_varobj_children): Duplicate 'name'
2864 and pass it to install_dynamic_child.
2865
2866 2013-10-03 Phil Muldoon <pmuldoon@redhat.com>
2867
2868 * python/py-value.c (convert_value_from_python): Move PyInt_Check
2869 conversion logic to occur after PyLong_Check. Comment on order
2870 change significance.
2871 * python/py-arch.c (archpy_disassemble): Comment on order of
2872 conversion for integers and longs.
2873
2874 2013-10-03 Pedro Alves <palves@redhat.com>
2875
2876 * common/linux-ptrace.c (linux_check_ptrace_features): Factor out
2877 the PTRACE_O_TRACESYSGOOD and PTRACE_O_TRACEFORK to separate
2878 functions. Always test for PTRACE_O_TRACESYSGOOD even if
2879 PTRACE_O_TRACEFORK is not supported.
2880 (linux_test_for_tracesysgood): New function.
2881 (linux_test_for_tracefork): New function, factored out from
2882 linux_check_ptrace_features, and also don't kill child_pid here.
2883
2884 2013-10-03 Tristan Gingold <gingold@adacore.com>
2885
2886 * i386-darwin-nat.c (i386_darwin_dr_set): Fix argument type.
2887 Remove verbose error reporting. Use detected state to
2888 thread_set_state call.
2889 (i386_darwin_dr_get): Fix return type. Remove verbose error
2890 report.
2891 Remove trailing spaces.
2892
2893 2013-10-02 Pedro Alves <palves@redhat.com>
2894
2895 * cp-valprint.c (cp_print_value_fields): Adjust calls to
2896 val_print_optimized_out.
2897 * jv-valprint.c (java_print_value_fields): Likewise.
2898 * p-valprint.c (pascal_object_print_value_fields): Likewise.
2899 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full)
2900 <DWARF_VALUE_REGISTER>: If the register was not saved, return a
2901 new optimized out value.
2902 * findvar.c (address_from_register): Likewise.
2903 * frame.c (put_frame_register): Tweak error string to say the
2904 register was not saved, rather than optimized out.
2905 * infcmd.c (default_print_one_register_info): Adjust call to
2906 val_print_optimized_out. Use value_of_register instead of
2907 get_frame_register_value.
2908 * mi/mi-main.c (output_register): Use value_of_register instead of
2909 get_frame_register_value.
2910 * valprint.c (valprint_check_validity): Likewise.
2911 (val_print_optimized_out): New value parameter. If the value is
2912 lval_register, print <not saved> instead.
2913 (value_check_printable, val_print_scalar_formatted): Adjust calls
2914 to val_print_optimized_out.
2915 * valprint.h (val_print_optimized_out): New value parameter.
2916 * value.c (struct value) <optimized_out>: Extend comment.
2917 (error_value_optimized_out): New function.
2918 (require_not_optimized_out): Use it. Use a different string for
2919 lval_register values.
2920 * value.h (error_value_optimized_out): New declaration.
2921 * NEWS: Mention <not saved>.
2922
2923 2013-10-02 Joel Brobecker <brobecker@adacore.com>
2924
2925 * symtab.c (compare_search_syms): Use FILENAME_CMP instead of
2926 strcmp to compare two symtab filenames.
2927
2928 2013-10-02 Joel Brobecker <brobecker@adacore.com>
2929
2930 * symtab.c (search_symbols_equal): Delete.
2931 (sort_search_symbols_remove_dups): Replace call to
2932 search_symbols_equal by call to compare_search_syms,
2933 adjusting as necessary.
2934
2935 2013-10-02 Phil Muldoon <pmuldoon@redhat.com>
2936
2937 PR python/15579
2938 * python/python.c: Document gdb.execute command in Python help.
2939
2940 2013-10-02 Phil Muldoon <pmuldoon@redhat.com>
2941
2942 * python/py-frame.c (frame_info_to_frame_object): Use
2943 gdbpy_convert_exception. Clean up Python object on failure.
2944
2945 2013-10-02 Phil Muldoon <pmuldoon@redhat.com>
2946
2947 * python/lib/gdb/command/frame_filters.py
2948 (InfoFrameFilter.list_frame_filters): Retrieve exception manually.
2949 (ShowFrameFilterPriority.invoke): Ditto.
2950
2951 2013-10-01 Keith Seitz <keiths@redhat.com>
2952
2953 * linespec.c (struct ls_parser): Make 'saved_arg' const.
2954 (parse_linespec): Make 'argptr' const.
2955 Remove temporary cast of 'argptr' to const char **.
2956 (decode_line_full): Pass const pointer to parse_linespec.
2957 (decode_line_1): Likewise.
2958 (decode_objc): Make local variable 'new_argptr' const.
2959 (find_function_symbols): Remove temporary cast to char *
2960 to find_imps.
2961 * objc-lang.c (find_imps): Make argument 'method' const.
2962 Return const.
2963 * objc-lang.h (find_imps): Likewise.
2964
2965 2013-10-01 Keith Seitz <keiths@redhat.com>
2966
2967 * completer.c (skip_quoted_chars): Make all arguments const.
2968 Return const.
2969 (skip_quoted): Likewise.
2970 * completer.h (skip_quoted_chars): Likewise.
2971 (skip_quoted): Likewise.
2972 * defs.h (skip_quoted): Remove duplicate declaration.
2973 * jv-exp.y: Include completer.h.
2974 (yylex): Remove unneccessary cast to char * fro skip_quoted.
2975 * p-exp.y: Include completer.h.
2976
2977 2013-10-01 Keith Seitz <keiths@redhat.com>
2978
2979 * c-exp.y (parse_number): Make first argument const.
2980 Make a copy of the input to manipulate.
2981 (c_parse_escape): Make first argument const.
2982 Make local variable 'tokptr' const.
2983 (parse_string_or_char): Make first two arguments const.
2984 (macro_original_text): Make const.
2985 (lex_one_token): Make local variable 'tokstart' const.
2986 Likewise for local variables named 'p'.
2987 Cast away const for struct stoken (temporary).
2988 * c-lang.h (c_parse_escpae): Make first argument const.
2989 * cli/cli-cmds.c (echo_command): Make local variable 'p'
2990 const.
2991 * cli/cli-setshow.c (do_set_command): Likewise for 'p' in
2992 var_string case.
2993 * f-exp.y (parse_number): Make first argument const.
2994 (match_string_literal): Make local variable 'tokstart'
2995 const.
2996 (yylex): Make local variable 'p' const.
2997 Cast away const for struct stoken (temporary).
2998 * go-exp.y (parse_number): Make first argument const.
2999 (parse_string_or_char): Likewise.
3000 Make local variable 'tokstart' const.
3001 (lex_one_token): Likewise for numerous locals called 'p'.
3002 Cast away const for struct stoken (temporary).
3003 * jv-exp.y (parse_number): Make first argument const.
3004 Make local variables 'tokstart' and 'tokptr' const.
3005 Cast away const for call to skip_quoted (temporary).
3006 (yylex): Make local variable 'p' const.
3007 Cast away const for struct stoken (temporary).
3008 * m2-exp.y (parse_number): Make local variable 'p' const.
3009 (yylex): Likewise for 'tokstart'.
3010 Cast away const for struct stoken (temporary).
3011 Make local variable 'p' const.
3012 * macroexp.c (get_character_constant): Pass a const string
3013 to c_parse_escape.
3014 (get_string_literal): Likewise.
3015 (macro_expand_next): Make first argument const.
3016 Cast away const for init_shared_buffer.
3017 * macroexp.h (macro_expand_next): Make first argument const.
3018 * p-exp.y (yylex): Make a local copy of 'lexptr'.
3019 Pass a const string to c_parse_escape.
3020 Make local variables 'p' and 'namestart' const.
3021 * parse.c (lexptr): Make const.
3022 (prev_lexptr): Likewise.
3023 (find_template_name_end): Return const.
3024 Make argument const, too.
3025 (parse_exp_in_context): Make first argument const.
3026 Remove the entire const_hack.
3027 (parse_exp_in_context_1): Make first argument const.
3028 * parser-defs.h (find_template_name_end): Return const.
3029 Make argument const, too.
3030 (lexptr): Make const.
3031 (prev_lexptr): Likewise.
3032 * utils.c (parse_escape): Make second argument const.
3033 * utils.h (parse_escape): Likewise.
3034
3035 2013-10-01 Keith Seitz <keiths@redhat.com>
3036
3037 * ada-exp.y (write_object_renaming): Update: struct stoken.ptr
3038 is now const.
3039 (block_lookup): Make 'raw_name' and 'name' const.
3040 * ada-lex.l (processString): Update for struct stoken.ptr.
3041 * c-exp.y (qualified_name : TYPENAME COLONCOLON '~' name): Likewise.
3042 (operator_stoken): Likewise.
3043 (lex_one_token): Remove temporary cast to char * for
3044 'yylval.sval.ptr'.
3045 * f-exp.y (yylex): Likewise.
3046 * gdb-types.c (lookup_struct_elt_type): Make argument 'name' const.
3047 * gdbtypes.h (lookup_struct_elt_type): Likewisee.
3048 * go-exp.y (lex_one_token): Remove temporary cast to char * for
3049 'yylval.sval.ptr'.
3050 * jv-exp.y (QualifiedName): Update for struct stoken.ptr.
3051 (yylex): Remove temporary cast to char * for 'yylval.sval.ptr'.
3052 * linespec.c (struct ls_parser): Make 'stream' const.
3053 (find_parameter_list_end): Make argument 'input' and local
3054 variable 'p' const.
3055 (linespec_lexer_lex_string): Make local variables 'start' and
3056 'p' const.
3057 Use skip_spaces_const instead of skip_spaces.
3058 (linespec_lexer_peek_token): Make local variable 'saved_stream'
3059 const.
3060 (parse_linespec): Temporarily cast 'argptr' to const for
3061 'parser->lexer.stream'.
3062 * m2-exp.y (yylex): Remove temporary cast to char * for
3063 'yylval.sval.ptr'.
3064 * objc-lang.c (add_msglist): Make local variable 'p' const.
3065 * p-exp.y (exp : exp '['): Update for struct stoken.ptr.
3066 (exp : STRING): Make 'sp' const.
3067 (parse_number): Make argument 'p' const.
3068 * parser-defs.h (struct stoken): Make 'ptr' const.
3069
3070 2013-10-01 Doug Evans <dje@google.com>
3071
3072 * cli/cli-decode.c: Remove unnecessary inclusion of tui/tui.h.
3073
3074 2013-10-01 Yao Qi <yao@codesourcery.com>
3075
3076 * varobj.c (c_value_of_root): Remove declaration.
3077 (cplus_value_of_root, java_value_of_root): Likewise.
3078 (ada_value_of_root): Likewise.
3079 (struct language_specific) <value_of_root>: Remove.
3080 (languages): Update initialization.
3081 (check_scope): Move earlier.
3082 (c_value_of_root): Move earlier and rename to ...
3083 (value_of_root_1): ... this.
3084 (value_of_root): Caller update.
3085 (cplus_value_of_root, java_value_of_root): Remove.
3086 (ada_value_of_root): Remove.
3087
3088 2013-10-01 Yao Qi <yao@codesourcery.com>
3089
3090 * varobj.c (varobj_format_string): Remove "unknown".
3091 (languages): Remove the first element.
3092 * varobj.h (enum varobj_languages): Remove vlang_c.
3093
3094 2013-10-01 Yao Qi <yao@codesourcery.com>
3095
3096 * varobj.c (struct language_specific) <language>: Remove.
3097 (languages): Update the initialization.
3098
3099 2013-10-01 Yao Qi <yao@codesourcery.com>
3100
3101 * arm-wince-tdep.c: Remove inclusion of "solib.h" and
3102 "solib-target.h". Include "windows-tdep.h".
3103 (arm_wince_init_abi): Call windows_init_abi. Remove call to
3104 set_solib_ops and set_gdbarch_has_dos_based_file_system.
3105 * configure.tgt (arm*-wince-pe | arm*-*-mingw32ce*): Append
3106 windows-tdep.o to gdb_target_obs.
3107
3108 2013-10-01 Yao Qi <yao@codesourcery.com>
3109
3110 * amd64-windows-tdep.c: Remove inclusion of "solib.h" and
3111 "solib-target.h".
3112 (amd64_windows_init_abi): Don't call set_solib_ops and
3113 set_gdbarch_iterate_over_objfiles_in_search_order. Call
3114 windows_init_abi instead.
3115 * i386-cygwin-tdep.c: Remove inclusion of "solib.h" and
3116 "solib-target.h".
3117 (i386_cygwin_init_abi): Don't call set_solib_ops,
3118 set_gdbarch_has_dos_based_file_system and
3119 set_gdbarch_iterate_over_objfiles_in_search_order. Call
3120 windows_init_abi instead.
3121 * windows-tdep.c: Include "solib.h" and "solib-target.h".
3122 (windows_init_abi): New function.
3123 (windows_iterate_over_objfiles_in_search_order): Make it
3124 static.
3125 * windows-tdep.h (windows_init_abi): Declare.
3126 (windows_iterate_over_objfiles_in_search_order): Remove
3127 declaration.
3128
3129 2013-10-01 Jerome Guitton <guitton@adacore.com>
3130
3131 Checked in by Joel Brobecker <brobecker@adacore.com>
3132 * system-gdbinit/elinos.py (get_elinos_environment): Return an
3133 incomplete dictionnary instead of None in case of missing
3134 environment variables.
3135 (elinos_init): in case of an incomplete environment, best
3136 effort to load system libraries instead of abort.
3137
3138 2013-10-01 Joel Brobecker <brobecker@adacore.com>
3139
3140 * ada-lang.c (ada_has_this_exception_support): Ignore
3141 mst_solib_trampoline minimal symbols.
3142
3143 2013-09-30 Tristan Gingold <gingold@adacore.com>
3144
3145 * i386-darwin-nat.c (darwin_complete_target): Install methods for
3146 hardware watchpoint.
3147 (i386_darwin_dr_set): Support 32 and 64 bit states.
3148 (i386_darwin_dr_get): Likewise.
3149 (i386_darwin_dr_set_control): Make static.
3150 (i386_darwin_dr_set_addr, i386_darwin_dr_get_addr)
3151 (i386_darwin_dr_get_status, i386_darwin_dr_get_control): Likewise.
3152
3153 2013-09-30 Luis Machado <lgustavo@codesourcery.com>
3154
3155 * aarch64-linux-nat.c: Replace PIDGET with ptid_get_pid.
3156 Replace TIDGET with ptid_get_lwp.
3157 Replace GET_LWP with ptid_get_lwp.
3158 * aix-thread.c (BUILD_THREAD, BUILD_LWP): Remove.
3159 Replace BUILD_THREAD with ptid_build.
3160 Replace BUILD_LWP with ptid_build.
3161 Replace PIDGET with ptid_get_pid.
3162 Replace TIDGET with ptid_get_lwp.
3163 * alphabsd-nat.c: Replace PIDGET with ptid_get_pid.
3164 * amd64-linux-nat.c: Replace PIDGET with ptid_get_pid.
3165 Replace TIDGET with ptid_get_lwp.
3166 * amd64bsd-nat.c: Replace PIDGET with ptid_get_pid.
3167 * arm-linux-nat.c: Replace PIDGET with ptid_get_pid.
3168 Replace TIDGET with ptid_get_lwp.
3169 Replace GET_LWP with ptid_get_lwp.
3170 * armnbsd-nat.c: Replace PIDGET with ptid_get_pid.
3171 * auxv.c: Likewise.
3172 * breakpoint.c: Likewise.
3173 * common/ptid.c (ptid_is_pid): Condense check for
3174 null_ptid and minus_one_ptid.
3175 (ptid_lwp_p): New function.
3176 (ptid_tid_p): New function.
3177 * common/ptid.h: Update comments for accessors.
3178 (ptid_lwp_p): New prototype.
3179 (ptid_tid_p): New prototype.
3180 * defs.h (PIDGET, TIDGET, MERGEPID): Do not define.
3181 * gcore.c: Replace PIDGET with ptid_get_pid.
3182 * gdbthread.h: Likewise.
3183 * gnu-nat.c: Likewise.
3184 * hppa-linux-nat.c: Replace PIDGET with ptid_get_pid.
3185 Replace TIDGET with ptid_get_lwp.
3186 * hppabsd-nat.c: Replace PIDGET with ptid_get_pid.
3187 * hppanbsd-nat.c: Likewise.
3188 * i386-linux-nat.c: Replace PIDGET with ptid_get_pid.
3189 Replace TIDGET with ptid_get_lwp.
3190 * i386bsd-nat.c: Replace PIDGET with ptid_get_pid.
3191 * ia64-linux-nat.c: Replace PIDGET with ptid_get_pid.
3192 * infcmd.c: Likewise.
3193 * inferior.h: Likewise.
3194 * inflow.c: Likewise.
3195 * infrun.c: Likewise.
3196 * linux-fork.c: Likewise.
3197 * linux-nat.c: Replace PIDGET with ptid_get_pid.
3198 Replace GET_PID with ptid_get_pid.
3199 Replace is_lwp with ptid_lwp_p.
3200 Replace GET_LWP with ptid_get_lwp.
3201 Replace BUILD_LWP with ptid_build.
3202
3203 2013-09-28 Mike Frysinger <vapier@gentoo.org>
3204
3205 * common/linux-btrace.c: Move sys/syscall.h out of the
3206 HAVE_LINUX_PERF_EVENT_H check and wrap it in HAVE_SYS_SYSCALL_H.
3207 Also check for SYS_perf_event_open before attempting to buid.
3208
3209 2013-09-27 Doug Evans <dje@google.com>
3210
3211 * dwarf2read.c (dwarf2_section_info): Add comment.
3212 (dwp_file): Split loaded_cutus into loaded_cus, loaded_tus.
3213 All uses updated.
3214 (dwarf2_section_empty_p): Rename arg from "info" to "section".
3215 (dwarf2_read_section): Delete unused local "header". Add section
3216 name to error message.
3217 (create_dwo_in_dwp): Tweak comment.
3218 (MAX_NR_DWO_SECTIONS): Combine count of .debug_macro + .debug_macinfo.
3219
3220 * dwarf2read.c (die_reader_specs): Tweak comment.
3221 (get_section_bfd_owner, get_section_bfd_section): New functions.
3222 (get_section_name, get_section_file_name): New functions.
3223 (get_section_id, get_section_flags): New functions.
3224 (*): Use new functions to access section fields.
3225
3226 * dwarf2read.c (struct dwo_file): Add/tweak comments.
3227 (lookup_dwo_unit_in_dwp): Renamed from lookup_dwo_in_dwp. Remove
3228 arg "htab". All callers updated.
3229 (create_debug_types_hash_table): Remove redundant copy of
3230 abbrev_section.
3231 (create_dwo_in_dwp): Tweak comments.
3232 (read_str_index): Tweak comment. Record dwarf form name in static
3233 local.
3234
3235 2013-09-27 Pedro Alves <palves@redhat.com>
3236
3237 * remote.h (REMOTE_SYSROOT_PREFIX): New define.
3238 (remote_filename_p): Add comment.
3239 * remote.c (remote_filename_p): Adjust to use
3240 REMOTE_SYSROOT_PREFIX.
3241 * solib.c (solib_find): When deciding whether we need to add a
3242 directory separator, check whether the sysroot is "remote:"
3243 instead of checking whether the patch has a drive spec. Add
3244 comments.
3245
3246 2013-09-27 Pedro Alves <palves@redhat.com>
3247
3248 * remote.c (struct stop_reply) <solibs_changed, replay_event>:
3249 Delete fields.
3250 (remote_parse_stop_reply): Adjust, setting event->ws.kind
3251 directly.
3252
3253 2013-09-26 Jan Kratochvil <jan.kratochvil@redhat.com>
3254
3255 Fix set debug frame output.
3256 * frame.c (fprint_frame_type): Add TAILCALL_FRAME entry. Move
3257 SENTINEL_FRAME entry lower to match enum frame_type order.
3258
3259 2013-09-26 Pierre Muller <muller@sourceware.org>
3260
3261 Replace constant values 8 to 15 by AMD64_R8_REGNUM to
3262 AMD64_R15_REGNUM when a register index is expected.
3263 * amd64-windows-tdep.c (amd64_windows_dummy_call_integer_regs):
3264 Substitute in array.
3265 * amd64-tdep.c (amd64_dwarf_regmap): Ditto.
3266 (amd64_push_arguments): Substitute in integer_regnum array.
3267
3268 2013-09-25 Doug Evans <dje@google.com>
3269
3270 * objfiles.c (allocate_objfile): Move comment to better place.
3271
3272 New option "set debug symfile on".
3273 * NEWS: Mention "set debug symfile".
3274 * Makefile.in (SFILES): Add symfile-debug.c.
3275 (COMMON_OBS): Add symfile-debug.o.
3276 * elfread.c (elf_symfile_read): Use objfile_set_sym_fns to set the
3277 objfile's symbol functions.
3278 * objfiles.h (objfile_set_sym_fns): Declare.
3279 * symfile-debug.c: New file.
3280 * symfile.c (syms_from_objfile_1): Use objfile_set_sym_fns to set the
3281 objfile's symbol functions.
3282 (reread_symbols): Ditto.
3283
3284 * symfile.h (struct sym_fns): Delete member "sym_flavour".
3285 All uses updated.
3286 (add_symtab_fns): Update prototype.
3287 * symfile.c (sym_fns_ptr): Delete. Replace with ...
3288 (registered_sym_fns): ... this.
3289 (symtab_fns): Update.
3290 (add_symtab_fns): New arg "flavour". All callers updated.
3291 (find_sym_fns): Rewrite to use new sym_fns registry.
3292
3293 * symfile.h (struct sym_fns): Add "objfile" argument to
3294 sym_read_linetable. All uses updated.
3295
3296 * symtab.c (domain_name, search_domain_name): New functions.
3297 * symtab.h (domain_name, search_domain_name): Declare.
3298
3299 * symfile.h (struct quick_symbol_functions): Reorg arg list of
3300 map_matching_symbols so objfile is first. All uses updated.
3301 * dwarf2read.c (dw2_map_matching_symbols): Update signature.
3302 * psymtab.c (map_matching_symbols_psymtab): Update signature.
3303
3304 2013-09-25 Andreas Arnez <arnez@linux.vnet.ibm.com>
3305
3306 PR shlibs/8882
3307 * solib-svr4.c (svr4_read_so_list): Skip the vDSO when reading
3308 link map entries.
3309
3310 2013-09-24 Doug Evans <dje@google.com>
3311
3312 * objfiles.c (free_objfile): Move comment.
3313
3314 2013-09-24 Joel Brobecker <brobecker@adacore.com>
3315
3316 * ada-exp.y (string_to_operator): Delete.
3317 (dummy_string_to_ada_operator): Delete.
3318
3319 2013-09-24 Joel Brobecker <brobecker@adacore.com>
3320
3321 Revert:
3322 * i386-tdep.h (enum amd64_reg_class): New, moved here from
3323 amd64-tdep.c.
3324 (struct gdbarch_tdep): Add fields call_dummy_num_integer_regs,
3325 call_dummy_integer_regs, and classify.
3326 * amd64-tdep.h (amd64_classify): Add declaration.
3327 * amd64-tdep.c (amd64_dummy_call_integer_regs): New static constant.
3328 (amd64_reg_class): Delete, moved to i386-tdep.h.
3329 (amd64_classify): Make non-static. Move declaration to amd64-tdep.h.
3330 Replace call to amd64_classify by call to tdep->classify.
3331 (amd64_push_arguments): Get the list of registers to use for
3332 passing integer parameters from the gdbarch tdep structure,
3333 rather than using a hardcoded one. Replace calls to amd64_classify
3334 by calls to tdep->classify.
3335 (amd64_push_dummy_call): Get the register number used for
3336 the "hidden" argument from tdep->call_dummy_integer_regs.
3337 (amd64_init_abi): Initialize tdep->call_dummy_num_integer_regs
3338 and tdep->call_dummy_integer_regs. Set tdep->classify.
3339
3340 2013-09-24 Joel Brobecker <brobecker@adacore.com>
3341
3342 Revert:
3343 * i386-tdep.h (gdbarch_tdep): Add field memory_args_by_pointer.
3344 * amd64-tdep.c (amd64_push_arguments): Add handling of architectures
3345 where tdep->memory_args_by_pointer is non-zero.
3346
3347 2013-09-24 Joel Brobecker <brobecker@adacore.com>
3348
3349 Revert:
3350 * i386-tdep.h (struct gdbarch_tdep): Add new field
3351 integer_param_regs_saved_in_caller_frame.
3352 * amd64-tdep.c (amd64_push_dummy_call): Allocate some memory on
3353 stack if tdep->integer_param_regs_saved_in_caller_frame is set.
3354
3355 2013-09-24 Joel Brobecker <brobecker@adacore.com>
3356
3357 * amd64-windows-tdep.c: #include "value.h"
3358 (amd64_windows_classify): Delete.
3359 (amd64_windows_passed_by_integer_register)
3360 (amd64_windows_passed_by_xmm_register)
3361 (amd64_windows_passed_by_pointer)
3362 (amd64_windows_adjust_args_passed_by_pointer)
3363 (amd64_windows_store_arg_in_reg, amd64_windows_push_arguments)
3364 (amd64_windows_push_dummy_call): New functions.
3365 (amd64_windows_init_abi): Remove setting of
3366 tdep->call_dummy_num_integer_regs, tdep->call_dummy_integer_regs,
3367 tdep->classify, tdep->memory_args_by_pointer and
3368 tdep->integer_param_regs_saved_in_caller_frame.
3369 Add call to set_gdbarch_push_dummy_call.
3370
3371 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
3372
3373 * dwarf2read.c (open_and_init_dwp_file): Try open_dwp_file also with
3374 objfile->original_name.
3375
3376 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
3377
3378 Pass down original filename for objfile.
3379 * coffread.c (coff_symfile_read): Update symbol_file_add_separate call.
3380 * elfread.c (elf_symfile_read): Likewise.
3381 * jit.c (jit_object_close_impl): Update allocate_objfile call, no
3382 longer set ORIGINAL_NAME.
3383 (jit_bfd_try_read_symtab): Update symbol_file_add_from_bfd call.
3384 * jv-lang.c (get_dynamics_objfile): Update allocate_objfile call.
3385 * machoread.c (macho_add_oso_symfile): Add parameter name. Update
3386 symbol_file_add_from_bfd call.
3387 (macho_symfile_read_all_oso): Update two macho_add_oso_symfile calls.
3388 (macho_check_dsym): Add parameter filenamep. Change function comment.
3389 Set *filenamep.
3390 (macho_symfile_read): New variable dsym_filename. Update
3391 macho_check_dsym call. Use it for symbol_file_add_separate.
3392 * objfiles.c (allocate_objfile): Add parameter name. New comment for
3393 it. Use it for objfile->original_name.
3394 (objfile_name): Return OBFD's filename, if available.
3395 * objfiles.h (allocate_objfile): Add new parameter name.
3396 * solib.c (solib_read_symbols): Update symbol_file_add_from_bfd call.
3397 * symfile-mem.c (symbol_file_add_from_memory): Update
3398 symbol_file_add_from_bfd call.
3399 * symfile.c (read_symbols): Update symbol_file_add_separate call, new
3400 comment for it.
3401 (symbol_file_add_with_addrs): New parameter name, add function comment
3402 for it. Remove variable name. Update allocate_objfile call.
3403 (symbol_file_add_separate): New parameter name, add function comment
3404 for it. Update symbol_file_add_with_addrs call.
3405 (symbol_file_add_from_bfd): New parameter name. Update
3406 symbol_file_add_with_addrs call.
3407 (symbol_file_add): Update symbol_file_add_from_bfd call.
3408 (reread_symbols): New variable original_name. Save
3409 objfile->original_name by it.
3410 * symfile.h (symbol_file_add_from_bfd, symbol_file_add_separate): Add
3411 second parameter.
3412
3413 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
3414
3415 Code cleanup: Add objfile_name accessor function.
3416 * ada-lang.c (is_known_support_routine): Use objfile_name.
3417 * auto-load.c (source_gdb_script_for_objfile)
3418 (auto_load_objfile_script): Likewise.
3419 * coffread.c (coff_symtab_read, read_one_sym): Likewise.
3420 * dbxread.c (dbx_symfile_read): Likewise.
3421 * dwarf2-frame.c (dwarf2_build_frame_info): Likewise.
3422 * dwarf2loc.c (locexpr_describe_location_piece): Likewise.
3423 * dwarf2read.c (dwarf2_get_dwz_file, dwarf2_read_index)
3424 (dw2_symtab_iter_next, dw2_expand_symtabs_matching)
3425 (lookup_dwp_signatured_type, lookup_dwo_unit)
3426 (dwarf2_build_psymtabs_hard, scan_partial_symbols, process_queue)
3427 (fixup_go_packaging, process_imported_unit_die, dwarf2_physname)
3428 (read_import_statement, create_dwo_cu, open_and_init_dwp_file)
3429 (lookup_dwo_cutu, read_call_site_scope, dwarf2_ranges_read)
3430 (dwarf2_record_block_ranges, read_common_block, read_typedef)
3431 (read_subrange_type, load_partial_dies, read_partial_die)
3432 (read_addr_index_1, read_str_index, dwarf_decode_lines_1)
3433 (die_containing_type, build_error_marker_type, lookup_die_type)
3434 (follow_die_ref_or_sig, follow_die_ref, dwarf2_fetch_die_loc_sect_off)
3435 (dwarf2_fetch_constant_bytes, follow_die_sig, get_signatured_type)
3436 (get_DW_AT_signature_type, write_psymtabs_to_index)
3437 (save_gdb_index_command): Likewise.
3438 * elfread.c (find_separate_debug_file_by_buildid, elf_symfile_read):
3439 Likewise.
3440 * expprint.c (dump_subexp_body_standard): Likewise.
3441 * gdbtypes.c (type_name_no_tag_or_error): Likewise.
3442 * jit.c (jit_object_close_impl): Use the objfile field name renamed to
3443 original_name.
3444 * linux-thread-db.c (try_thread_db_load_from_pdir_1): New variable
3445 obj_name, use objfile_name for it, use the variable.
3446 (try_thread_db_load_from_pdir, has_libpthread, thread_db_new_objfile):
3447 Use objfile_name.
3448 * machoread.c (macho_symtab_read, macho_check_dsym)
3449 (macho_symfile_relocate): Likewise.
3450 * maint.c (maintenance_translate_address): Likewise.
3451 * minidebug.c (find_separate_debug_file_in_section): Likewise.
3452 * minsyms.c (install_minimal_symbols): Likewise.
3453 * objfiles.c (allocate_objfile): Use the objfile field name renamed to
3454 original_name.
3455 (filter_overlapping_sections): Use objfile_name.
3456 (objfile_name): New function.
3457 * objfiles.h (struct objfile): Rename field name to original_name.
3458 (objfile_name): New prototype.
3459 * printcmd.c (sym_info, address_info): Use objfile_name.
3460 * probe.c (parse_probes, collect_probes, compare_probes)
3461 (info_probes_for_ops): Likewise.
3462 * progspace.c (clone_program_space): Likewise.
3463 * psymtab.c (require_partial_symbols, dump_psymtab, allocate_psymtab)
3464 (maintenance_info_psymtabs): Likewise.
3465 * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile)
3466 (source_section_scripts): Likewise.
3467 * python/py-objfile.c (objfpy_get_filename): Likewise.
3468 * python/py-progspace.c (pspy_get_filename): Likewise.
3469 * solib-aix.c (solib_aix_get_toc_value): Likewise.
3470 * solib-som.c (match_main, som_solib_section_offsets): Likewise.
3471 * solib.c (solib_read_symbols): Likewise.
3472 * stabsread.c (scan_file_globals): Likewise.
3473 * stap-probe.c (handle_stap_probe): Likewise.
3474 * symfile.c (symbol_file_clear, separate_debug_file_exists)
3475 (find_separate_debug_file_by_debuglink): Likewise.
3476 (reread_symbols): Likewise. Use the objfile field name renamed to
3477 original_name.
3478 (allocate_symtab): Use objfile_name.
3479 * symmisc.c (print_symbol_bcache_statistics, print_objfile_statistics)
3480 (dump_objfile, dump_msymbols, dump_symtab_1)
3481 (maintenance_print_msymbols, maintenance_print_objfiles)
3482 (maintenance_info_symtabs, maintenance_check_symtabs): Likewise.
3483 * target.c (target_translate_tls_address, target_info): Likewise.
3484 * xcoffread.c (xcoff_initial_scan): Make variable name const. Use
3485 objfile_name.
3486
3487 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
3488
3489 Code cleanup.
3490 * probe.c (parse_probes): Rename variable objfile_name to
3491 objfile_namestr.
3492
3493 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
3494
3495 Remove solib-sunos.c.
3496 * Makefile.in (ALLDEPFILES): Remove solib-sunos.c.
3497 * config/m68k/obsd.mh (NATDEPFILES): Remove solib-sunos.o.
3498 * objfiles.c (rt_common_objfile): Remove.
3499 (free_objfile): Remove rt_common_objfile comparison.
3500 * objfiles.h (rt_common_objfile): Remove.
3501 * solib-sunos.c: Remove.
3502 * symfile.c (reread_symbols): Remove solib-sunos.c comment.
3503
3504 2013-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
3505
3506 Remove a.out NetBSD and OpenBSD hosts.
3507 * NEWS (Removed native configurations): New.
3508 * config/arm/nbsdaout.mh: Remove.
3509 * config/i386/nbsdaout.mh: Remove.
3510 * config/i386/obsdaout.mh: Remove.
3511 * config/m68k/nbsdaout.mh: Remove.
3512 * config/sparc/nbsdaout.mh: Remove.
3513 * config/vax/nbsdaout.mh: Remove.
3514 * configure.host (arm*-*-netbsd*, i[34567]86-*-netbsd*)
3515 (i[34567]86-*-openbsd[0-2].*, i[34567]86-*-openbsd3.[0-3])
3516 (m68*-*-netbsd*, sparc-*-netbsd*, vax-*-netbsd*): Add them to obsolete
3517 error.
3518 (arm*-*-netbsd*, i[34567]86-*-netbsd*, i[34567]86-*-openbsd[0-2].*)
3519 (i[34567]86-*-openbsd3.[0-3], m68*-*-netbsd*, sparc-*-netbsdaout*)
3520 (sparc-*-netbsd*, vax-*-netbsd*): Remove.
3521
3522 2013-09-23 Tom Tromey <tromey@redhat.com>
3523
3524 * linespec.c (struct minsym_and_objfile): Remove.
3525 (minsym_and_objfile_d): Remove.
3526 (struct linespec, struct collect_info, linespec_parse_basic)
3527 (convert_linespec_to_sals, linespec_parser_delete, decode_objc)
3528 (compare_msymbols, find_method, find_function_symbols)
3529 (find_linespec_symbols, struct collect_minsyms, compare_msyms)
3530 (add_minsym, search_minsyms_for_name): Update.
3531
3532 2013-09-23 Andrew Burgess <aburgess@broadcom.com>
3533
3534 * regcache.c: Add include of valprint.h.
3535 (dump_endian_bytes): Delete.
3536 (regcache_dump): Use print_hex_chars not dump_endian_bytes.
3537
3538 2013-09-23 Andrew Burgess <aburgess@broadcom.com>
3539
3540 * sh64-tdep.c (sh64_do_fp_register): Use print_hex_chars.
3541
3542 2013-09-19 Pedro Alves <palves@redhat.com>
3543
3544 * breakpoint.c (remove_threaded_breakpoints): Skip non-user
3545 breakpoints.
3546
3547 2013-09-19 Pedro Alves <palves@redhat.com>
3548 Thomas Schwinge <thomas@codesourcery.com>
3549 Yue Lu <hacklu.newborn@gmail.com>
3550
3551 * gnu-nat.c (gnu_read_inferior, gnu_write_inferior): Make static.
3552 Take a gdb_byte pointer instead of a char pointer.
3553
3554 * gnu-nat.c (gnu_xfer_memory): Adjust interface as
3555 gnu_xfer_partial helper.
3556 (gnu_xfer_partial): New function.
3557 (gnu_target): Don't install a deprecated_xfer_memory hook.
3558 Install a to_xfer_partial hook.
3559
3560 2013-09-19 Jan Kratochvil <jan.kratochvil@redhat.com>
3561
3562 Constification.
3563 * main.c (captured_main): Replace catch_command_errors by
3564 catch_command_errors_const. Twice.
3565 * symfile.c (symbol_file_add_main_1): Make args parameter const.
3566 (symbol_file_add): Make name parameter const.
3567 (symbol_file_add_main, symbol_file_add_main_1): Make args parameter const.
3568 (symfile_bfd_open): Make name parameter const, rename it to cname. Add
3569 variable name. Change their usage accordingly.
3570 * symfile.h (symbol_file_add, symfile_bfd_open): Make first parameter
3571 const.
3572 (symbol_file_add_main): Make args parameter const.
3573
3574 2013-09-18 Raunaq Bathija <raunaq12@in.ibm.com>
3575 Ulrich Weigand <uweigand@de.ibm.com>
3576
3577 * xcoffread.c (struct coff_symbol): Use CORE_ADDR as type
3578 of c_value member.
3579 (read_xcoff_symtab): Use CORE_ADDR as type of fcn_start_addr.
3580
3581 2013-09-18 Pedro Alves <palves@redhat.com>
3582 Yue Lu <hacklu.newborn@gmail.com>
3583
3584 * gnu-nat.c (inf_validate_procs, gnu_wait, gnu_resume)
3585 (gnu_create_inferior)
3586 (gnu_attach, gnu_thread_alive, gnu_pid_to_str, cur_thread)
3587 (set_sig_thread_cmd): Use the lwpid field of ptids to
3588 store/extract thread ids instead of the tid field.
3589 * i386gnu-nat.c (gnu_fetch_registers): Adjust.
3590
3591 2013-09-18 Andrew Burgess <aburgess@broadcom.com>
3592
3593 * infcmd.c (default_print_one_register_info): Add detection of
3594 optimized out values.
3595 (default_print_registers_info): Switch to using
3596 get_frame_register_value.
3597
3598 2013-09-18 Markus Metzger <markus.t.metzger@intel.com>
3599
3600 * infrun.c (handle_inferior_event): Check if we know the
3601 function start address before setting a resume breakpoint.
3602
3603 2013-09-18 Pedro Alves <palves@redhat.com>
3604
3605 * gnu-nat.c (set_sig_thread_cmd): Compare the thread's ptid to
3606 minus_one_ptid instead of looking at the ptid's tid field and
3607 comparing that to -1.
3608
3609 2013-09-18 Andrew Burgess <aburgess@broadcom.com>
3610
3611 * main.h (get_gdb_program_name): Remove extra whitespace.
3612
3613 2013-09-18 Andrew Burgess <aburgess@broadcom.com>
3614
3615 * main.h (get_gdb_program_name): Add declaration.
3616 * main.c (get_gdb_program_name): Add definition.
3617
3618 2013-09-17 Doug Evans <dje@google.com>
3619
3620 * dwarf2read.c: Move definitions of complaint functions to after
3621 forward declarations of local functions.
3622
3623 2013-09-17 Muhammad Waqas <mwaqas@codesourcery.com>
3624 Pedro Alves <palves@redhat.com>
3625
3626 PR gdb/11568
3627 * breakpoint.c (remove_threaded_breakpoints): New function.
3628 (_initialize_breakpoint): Attach remove_threaded_breakpoints
3629 as thread_exit observer.
3630
3631 2013-09-17 Pedro Alves <palves@redhat.com>
3632
3633 PR gdb/15911
3634 * ada-tasks.c (task_command_1): Adjust call to print_stack_frame.
3635 * bsd-kvm.c (bsd_kvm_open, bsd_kvm_proc_cmd, bsd_kvm_pcb_cmd):
3636 * corelow.c (core_open):
3637 * frame.h (print_stack_frame, print_frame_info): New
3638 'set_current_sal' parameter.
3639 * infcmd.c (finish_command, kill_command): Adjust call to
3640 print_stack_frame.
3641 * inferior.c (inferior_command): Likewise.
3642 * infrun.c (normal_stop): Likewise.
3643 * linux-fork.c (linux_fork_context): Likewise.
3644 * record-full.c (record_full_goto_entry, record_full_restore):
3645 Likewise.
3646 * remote-mips.c (common_open): Likewise.
3647 * stack.c (print_stack_frame): New 'set_current_sal' parameter.
3648 Use it.
3649 (print_frame_info): New 'set_current_sal' parameter. Set the last
3650 displayed sal depending on the new paremeter instead of looking at
3651 print_what.
3652 (backtrace_command_1, select_and_print_frame, frame_command)
3653 (current_frame_command, up_command, down_command): Adjust call to
3654 print_stack_frame.
3655 * thread.c (print_thread_info, restore_selected_frame)
3656 (do_captured_thread_select): Adjust call to print_stack_frame.
3657 * tracepoint.c (tfind_1): Likewise.
3658 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames)
3659 (mi_cmd_stack_info_frame): Likewise.
3660 * mi/mi-interp.c (mi_on_normal_stop): Likewise.
3661 * mi/mi-main.c (mi_cmd_exec_return, mi_cmd_trace_find): Likewise.
3662
3663 2013-09-16 Sergio Durigan Junior <sergiodj@redhat.com>
3664
3665 * value.c (isvoid_internal_fn): Replace "parameter" with
3666 "argument".
3667
3668 2013-09-16 Stan Shebs <stan@codesourcery.com>
3669
3670 * README: Update references to writing code for GDB.
3671 * configure.ac (build_warnings): Remove obsolete comment.
3672 * configure: Regenerate.
3673 * gdbarch.sh: Remove references to gdbint.texinfo.
3674 * gdbarch.h: Regenerate.
3675 * gdbtypes.c (objfile_type): Remove comments referencing internals
3676 manual and D10V.
3677
3678 2013-09-16 Sergio Durigan Junior <sergiodj@redhat.com>
3679
3680 * NEWS: Mention new convenience function $_isvoid.
3681 * value.c (isvoid_internal_fn): New function.
3682 (_initialize_values): Add new convenience function $_isvoid.
3683
3684 2013-09-16 Pierre Muller <muller@sourceware.org>
3685
3686 * arm-linux-tdep.c: Add "elf/common.h" header.
3687 Remove AT_HWCAP macro definintion as it is provided in
3688 added include file.
3689 * s390-tdep.c: Remove system header <elf.h>
3690 Add "elf/common.h" header for AT_HWCAP definition.
3691 (s390_core_read_description): Use correct CORE_ADDR
3692 for hwcap local variable used as third parameter
3693 of function target_auxv_search.
3694
3695 2013-09-14 Pierre Muller <muller@sourceware.org>
3696 Tom Tromey <tromey@redhat.com>
3697 Pedro Alves <palves@redhat.com>
3698
3699 * common/filestuff.c (gdb_fopen_cloexec): Do not try to use "e"
3700 mode if operating system doesn't know O_CLOEXEC.
3701
3702 2013-09-13 Jan Kratochvil <jan.kratochvil@redhat.com>
3703
3704 Code cleanup.
3705 * symfile.c (reread_symbols): Move variable obfd_filename to a more
3706 inner block.
3707
3708 2013-09-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
3709
3710 * NEWS: Mention TDB support.
3711 * features/s390-tdb.xml: New file.
3712 * features/s390-te-linux64.xml: New file.
3713 * features/s390x-te-linux64.xml: New file.
3714 * features/Makefile (WHICH): Add new tdescs above.
3715 (s390-te-linux64-expedite): Set.
3716 (s390x-te-linux64-expedite): Set.
3717 * features/s390-te-linux64.c: New file (generated).
3718 * features/s390x-te-linux64.c: New file (generated).
3719 * regformats/s390-te-linux64.dat: New file (generated).
3720 * regformats/s390x-te-linux64.dat: New file (generated).
3721 * s390-tdep.h (HWCAP_S390_HIGH_GPRS): Define.
3722 (HWCAP_S390_TE): Likewise.
3723 (S390_TDB_DWORD0_REGNUM): Likewise.
3724 (S390_TDB_DWORD0_REGNUM): Likewise.
3725 (S390_TDB_ABORT_CODE_REGNUM): Likewise.
3726 (S390_TDB_CONFLICT_TOKEN_REGNUM): Likewise.
3727 (S390_TDB_ATIA_REGNUM): Likewise.
3728 (S390_TDB_R0_REGNUM): Likewise.
3729 (S390_TDB_R1_REGNUM): Likewise.
3730 (S390_TDB_R2_REGNUM): Likewise.
3731 (S390_TDB_R3_REGNUM): Likewise.
3732 (S390_TDB_R4_REGNUM): Likewise.
3733 (S390_TDB_R5_REGNUM): Likewise.
3734 (S390_TDB_R6_REGNUM): Likewise.
3735 (S390_TDB_R7_REGNUM): Likewise.
3736 (S390_TDB_R8_REGNUM): Likewise.
3737 (S390_TDB_R9_REGNUM): Likewise.
3738 (S390_TDB_R10_REGNUM): Likewise.
3739 (S390_TDB_R11_REGNUM): Likewise.
3740 (S390_TDB_R12_REGNUM): Likewise.
3741 (S390_TDB_R13_REGNUM): Likewise.
3742 (S390_TDB_R14_REGNUM): Likewise.
3743 (S390_TDB_R15_REGNUM): Likewise.
3744 (S390_NUM_REGS): Increase.
3745 (S390_IS_TDBREGSET_REGNUM): New macro.
3746 (s390_regmap_tdb): Declare.
3747 (s390_sizeof_tdbregset): Define.
3748 (tdesc_s390_te_linux64): Declare.
3749 (tdesc_s390x_te_linux64): Likewise.
3750 * s390-tdep.c: Add includes for "auxv.h", <elf.h>,
3751 "features/s390-te-linux64.c", and "features/s390x-te-linux64.c".
3752 (s390_regmap_tdb): New regmap.
3753 (s390_supply_tdb_regset): New function.
3754 (s390_tdb_regset): New regset.
3755 (s390_linux64v2_regset_sections): Add TDB regset to list.
3756 (s390x_linux64v2_regset_sections): Likewise.
3757 (s390_regset_from_core_section): Recognize TDB core note section.
3758 (s390_core_read_description): If HWCAP indicates TE support,
3759 select tdesc_s390_te_linux64 or tdesc_s390_s390x_te_linux64.
3760 (s390_gdbarch_init): Handle TDB regset.
3761 (_initialize_s390_tdep): Initialize new tdescs.
3762 * s390-nat.c (HWCAP_S390_HIGH_GPRS): Remove define.
3763 (have_regset_tdb): New variable.
3764 (s390_native_supply): Support register invalidation.
3765 (fetch_regset): Invalidate registers if ptrace yields ENODATA.
3766 (check_regset): Treat ENODATA as "regset exists".
3767 (s390_linux_fetch_inferior_registers): Add TDB.
3768 (s390_read_description): Check for TDB existence and select
3769 appropriate tdesc.
3770 * gdbserver/Makefile.in (clean): Add removal of new makefile
3771 targets.
3772 (s390-te-linux64.c): New makefile target.
3773 (s390x-te-linux64.c): Likewise.
3774 * gdbserver/configure.srv (srv_regobj): Append new objects
3775 s390-te-linux64.o and s390x-te-linux64.o.
3776 (srv_xmlfiles): Append new files s390-te-linux64.xml,
3777 s390x-te-linux64.xml, and s390-tdb.xml.
3778 * gdbserver/linux-s390-low.c (init_registers_s390_te_linux64): New
3779 declaration.
3780 (tdesc_s390_te_linux64): Likewise.
3781 (init_registers_s390x_te_linux64): Likewise.
3782 (tdesc_s390x_te_linux64): Likewise.
3783 (s390_check_regset): Treat ENODATA as "regset exists".
3784 (s390_arch_setup): Add TDB regset support.
3785 (initialize_low_arch): Initialize registers for new tdescs.
3786
3787 2013-09-13 Andreas Arnez <arnez@linux.vnet.ibm.com>
3788
3789 * s390-tdep.h (S390_IS_GREGSET_REGNUM): New macro.
3790 (S390_IS_FPREGSET_REGNUM): New macro.
3791 * s390-tdep.c (s390_dwarf_regmap): Make const.
3792 (regnum_is_gpr_full): New function for replacing repeated code.
3793 (s390_pseudo_register_name): Use it.
3794 (s390_pseudo_register_type): Likewise.
3795 (s390_pseudo_register_read): Likewise.
3796 (s390_pseudo_register_write): Likewise.
3797 (s390_unwind_pseudo_register): Likewise.
3798 (s390_regmap_gregset): New format for regmap.
3799 (s390x_regmap_gregset): Likewise.
3800 (s390_regmap_fpregset): Likewise.
3801 (s390_regmap_upper): Likewise.
3802 (s390_regmap_last_break): Likewise.
3803 (s390_regmap_system_call): Likewise.
3804 (s390_supply_regset): Adjust to new regmap format.
3805 (s390_collect_regset): Likewise.
3806 * s390-nat.c (s390_native_supply): Adjust to new regmap format.
3807 (s390_native_collect): Likewise.
3808 (supply_gregset): Likewise.
3809 (fill_gregset): Likewise.
3810 (supply_fpregset): Likewise.
3811 (fill_fpregset): Likewise.
3812 (fetch_regset): Likewise.
3813 (store_regset): Likewise.
3814 (s390_linux_fetch_inferior_registers): Likewise.
3815 (s390_linux_fetch_inferior_registers): Likewise.
3816
3817 2013-09-12 Andrew Pinski <apinski@cavium.com>
3818
3819 * aarch64-linux-nat.c (aarch64_linux_set_debug_regs): Zero out regs.
3820
3821 2013-09-10 Andreas Arnez <arnez@linux.vnet.ibm.com>
3822
3823 * config/s390/s390.mh (NATDEPFILES): Add linux-waitpid.o.
3824
3825 2013-09-09 Andrew Burgess <aburgess@broadcom.com>
3826
3827 * top.c (quit_confirm): Remove use of deprecated_init_ui_hook.
3828
3829 2013-09-06 Pedro Alves <palves@redhat.com>
3830
3831 * remote-sim.c (dump_mem, gdbsim_fetch_register)
3832 (gdbsim_store_register, gdbsim_kill, gdbsim_load)
3833 (gdbsim_create_inferior, gdbsim_open, gdbsim_close)
3834 (gdbsim_detach, gdbsim_resume_inferior, gdbsim_wait)
3835 (gdbsim_files_info, gdbsim_mourn_inferior): Send debug output to
3836 gdb_stdlog.
3837
3838 2013-09-06 Pedro Alves <palves@redhat.com>
3839
3840 * remote-sim.c (dump_mem): Constify buf parameter.
3841 gdbsim_xfer_inferior_memory): Rename to ...
3842 (gdbsim_xfer_memory): ... this. Adjust interface as
3843 target_xfer_partial helper.
3844 (gdbsim_xfer_partial): New function.
3845 (init_gdbsim_ops): Don't install a deprecated_xfer_memory hook.
3846 Install a to_xfer_partial hook. Send output to gdb_stdlog.
3847
3848 2013-09-06 Pedro Alves <palves@redhat.com>
3849
3850 * remote-sim.c (gdbsim_xfer_inferior_memory): Use
3851 host_address_to_string, and send debug output to gdb_stdlog.
3852
3853 2013-09-06 Ricard Wanderlof <ricardw@axis.com>
3854
3855 * Makefile.in (ALL_TARGET_OBS): Add cris-linux-tdep.o.
3856 * configure.tgt: Add cris-linux-tdep.o and linux-tdep.o to
3857 gdb_target_obs for cris target.
3858 * cris-tdep.c (struct gdbarch_tdep): Move to cris-tdep.h.
3859 (cris_gdbarch_init): Move calls to
3860 set_gdbarch_fetch_tls_load_module_address and
3861 set_solib_svr4_fetch_link_map_offsets to cris-linux-tdep.c.
3862 Add call to gdbarch_init_osabi.
3863 * cris-linux-tdep.c: New file.
3864 * cris-tdep.h: New file.
3865
3866 2013-09-06 Andrew Burgess <aburgess@broadcom.com>
3867
3868 * tui/tui-io.c (tui_initialize_io): Remove legacy comment referring
3869 to deprecated_init_ui_hook.
3870
3871 2013-09-06 Andrew Burgess <aburgess@broadcom.com>
3872
3873 * cli/cli-interp.c (_initialize_cli_interp): Add a
3874 command_loop_proc to interp_procs.
3875 * event-top.c (cli_command_loop): Change signature to match
3876 interp_command_loop_ftype.
3877 * event-top.h (cli_command_loop): Same.
3878 * interps.c (interp_new): Require every interpreter to have a
3879 command_loop_proc.
3880 (current_interp_command_loop): Just call the command_loop_proc on
3881 the current interpreter.
3882 * tui/tui-interp.c (_initialize_tui_interp): Add a
3883 command_loop_proc to interp_procs.
3884
3885 2013-09-06 Ricard Wanderlof <ricardw@axis.com>
3886
3887 * cris-tdep.c (cris_gdbarch_init): Add call to
3888 get_gdbarch_fetch_tls_load_module_address.
3889
3890 2013-09-06 Ricard Wanderlof <ricardw@axis.com>
3891
3892 * cris-tdep.c (cris_elf_greg_t): Rename from elf_greg_t.
3893 (cris_elf_gregset_t): Rename from elf_gregset_t.
3894 (crisv32_elf_gregset_t): Adjust.
3895 (cris_supply_gregset, fetch_core_registers): Adjust.
3896
3897 2013-09-06 Ricard Wanderlof <ricardw@axis.com>
3898
3899 * cris-tdep.c (elf_greg_t): Change typedef to unsigned char[4]
3900
3901 2013-09-05 Andrew Burgess <aburgess@broadcom.com>
3902
3903 * defs.h (deprecated_command_loop_hook): Remove, including
3904 references in comments.
3905 * interps.c (current_interp_command_loop): No longer use
3906 deprecated_command_loop_hook.
3907 (clear_interpreter_hooks): Remove deprecated_command_loop_hook
3908 setup.
3909 * top.c (deprecated_command_loop_hook): Remove.
3910
3911 2013-09-05 Pedro Alves <palves@redhat.com>
3912
3913 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): 'dwarf_regnum'
3914 local is now int instead of ULONGEST. Print it with %d
3915 instead of paddress.
3916
3917 2013-09-05 Tristan Gingold <gingold@adacore.com>
3918
3919 * MAINTAINERS: Remove avr maintainership.
3920
3921 2013-09-05 Pedro Alves <palves@redhat.com>
3922
3923 * findvar.c (value_of_register): Rework in terms of
3924 value_of_register_lazy.
3925
3926 2013-09-05 Muhammad Bilal <mbilal@codesourcery.com>
3927
3928 * symfile.c (add_symbol_file_command): Remove trailing
3929 whitespaces and blank line after comment.
3930
3931 2013-09-05 Pedro Alves <palves@redhat.com>
3932
3933 * tui/tui-regs.c (tui_register_format): Don't look at the
3934 register's name here. Return string representing register
3935 value instead of storing it in the data element.
3936 (tui_get_register): Compare register string representations
3937 instead of register value states and contents.
3938
3939 2013-09-05 Pedro Alves <palves@redhat.com>
3940
3941 PR tui/15933
3942 * tui/tui-regs.c (tui_show_registers): Show registers of the
3943 selected frame, not the current frame.
3944
3945 2013-09-05 Ricard Wanderlof <ricardw@axis.com>
3946
3947 * MAINTAINERS (Write After Approval): Add myself to the list.
3948
3949 2013-09-04 Doug Evans <dje@google.com>
3950
3951 * dwarf2read.c (queue_and_load_all_dwo_tus): New function.
3952 (queue_and_load_dwo_tu): New function.
3953 (lookup_dwo_signatured_type): Set per_cu.tu_read.
3954 (maybe_queue_comp_unit): Rename this_cu argument to dependent_cu.
3955 Make dependent_cu optional.
3956 (dw2_do_instantiate_symtab): If we just loaded a CU from a DWO,
3957 and an older .gdb_index is in use, queue and load all its TUs too.
3958
3959 2013-09-04 Jan Kratochvil <jan.kratochvil@redhat.com>
3960
3961 Code cleanup: Change OPF_DISABLE_REALPATH to OPF_RETURN_REALPATH.
3962 * cli/cli-cmds.c (find_and_open_script): Add OPF_RETURN_REALPATH to
3963 variable search_flags.
3964 * defs.h (OPF_DISABLE_REALPATH): Rename to ...
3965 (OPF_RETURN_REALPATH): ... here.
3966 * dwarf2read.c (try_open_dwop_file): Set OPF_RETURN_REALPATH for flags.
3967 * exec.c (exec_file_attach): Remove OPF_DISABLE_REALPATH from openp
3968 call. Twice.
3969 * nto-tdep.c (nto_find_and_open_solib): Add OPF_RETURN_REALPATH for
3970 openp call.
3971 * solib.c (solib_find): Likewise. Four times.
3972 * source.c (openp): Change OPF_DISABLE_REALPATH to OPF_RETURN_REALPATH
3973 in the function comment and for the realpath_fptr variable.
3974 (source_full_path_of): Add OPF_RETURN_REALPATH for openp call.
3975 (find_and_open_source): Likewise. Twice.
3976 * symfile.c (symfile_bfd_open): Likewise, also twice.
3977
3978 2013-09-04 Doug Evans <dje@google.com>
3979
3980 * progspace.c (save_current_space_and_thread): Remove unnecessary
3981 call to save_current_inferior.
3982
3983 2013-09-04 Andrew Burgess <aburgess@broadcom.com>
3984
3985 * sh64-tdep.c (sh64_do_register): Return after printing message
3986 about unavailable register contents.
3987
3988 2013-09-04 Muhammad Bilal <mbilal@codesourcery.com>
3989 Pedro Alves <palves@redhat.com>
3990
3991 * symfile.c (add_symbol_file_command): Error out on unknown
3992 option. Handle EXPECTING_SEC_ADDR/EXPECTING_SEC_NAME before '-'
3993 options and collapse into single conditional branch.
3994
3995 2013-09-03 Luis Machado <lgustavo@codesourcery.com>
3996
3997 * inf-child.c (inf_child_follow_fork): New parameter
3998 detach_fork.
3999 * inf-ptrace.c (inf_ptrace_follow_fork): Likewise.
4000 * inf-ttrace.c (inf_ttrace_follow_fork): Likewise.
4001 * inferior.h (detach_fork): Remove.
4002 * infrun.c (detach_fork): Adjust comment and make it
4003 static.
4004 (follow_fork): Pass detach_fork parameter to
4005 target_follow_fork.
4006 * linux-nat.c (linux_child_follow_fork): New parameter
4007 detach_fork.
4008 * target.c (target_follow_fork): New parameter detach_fork.
4009 Pass detach_fork as parameter and print its value.
4010 * target.h (struct target_ops) <to_follow_fork>: New int
4011 parameter.
4012 (target_follow_fork): New parameter detach_fork.
4013
4014 2013-09-03 Joel Brobecker <brobecker@adacore.com>
4015
4016 * solib-ia64-hpux.c (ia64_hpux_relocate_section_addresses):
4017 Replace sec->bfd by sec->the_bfd_section->owner.
4018
4019 2013-09-03 Yao Qi <yao@codesourcery.com>
4020
4021 * linux-tdep.c (linux_is_uclinux): New function. Code moved
4022 from linux_has_shared_address_space.
4023 (linux_has_shared_address_space): Call linux_is_uclinux.
4024 * linux-tdep.h (linux_is_uclinux): Declare.
4025 * m68klinux-tdep.c (m68k_linux_get_sigtramp_info): Call
4026 linux_is_uclinux.
4027
4028 2013-09-03 Yao Qi <yao@codesourcery.com>
4029
4030 * config/djgpp/fnchange.lst: Remove entry of
4031 i386-interix-nat.c and i386-interix-tdep.c.
4032 * configure.ac: Remove '*-*-interix*'.
4033 * configure: Re-generated.
4034 * defs.h (enum gdb_osabi): Remove GDB_OSABI_INTERIX.
4035 * i386-cygwin-tdep.c (i386_cygwin_osabi_sniffer): Remove
4036 obsolete comments.
4037 * osabi.c (gdb_osabi_names): Remove "Interix".
4038
4039 2013-09-03 Yao Qi <yao@codesourcery.com>
4040
4041 * arch-utils.c: Fix typo in the comment to gdbarch_update_p.
4042
4043 2013-09-02 Markus Metzger <markus.t.metzger@intel.com>
4044
4045 * record.h (record_print_flag) <record_print_src_line,
4046 record_print_insn_range>: Rename into ...
4047 (record_print_flag) <record_print_src_line,
4048 record_print_insn_range>: ... this. Update all users.
4049
4050 2013-09-02 Pierre Muller <muller@sourceware.org>
4051
4052 * windows-nat.c (windows_xfer_memory): Handle ERROR_PARTIAL_COPY
4053 error code.
4054
4055 2013-09-02 Pierre Muller <muller@sourceware.org>
4056
4057 * windows-nat.c (windows_xfer_memory): Fix compilation failure
4058 by use of plongest function.
4059
4060 2013-09-02 Tristan Gingold <gingold@adacore.com>
4061
4062 * NEWS: Add entry mentioning support for native Windows x64
4063 SEH data.
4064
4065 * amd64-windows-tdep.c: #include "objfiles.h", "frame-unwind.h",
4066 "coff/internal.h", "coff/i386.h", "coff/pe.h" and "libcoff.h".
4067 (struct amd64_windows_frame_cache): New struct.
4068 (amd64_windows_w2gdb_regnum): New global.
4069 (pc_in_range, amd64_windows_frame_decode_epilogue)
4070 (amd64_windows_frame_decode_insns, amd64_windows_find_unwind_info)
4071 (amd64_windows_frame_cache, amd64_windows_frame_prev_register)
4072 (amd64_windows_frame_this_id): New functions.
4073 (amd64_windows_frame_unwind): New static global.
4074 (amd64_windows_skip_prologue): New function.
4075 (amd64_windows_init_abi): Call frame_unwind_prepend_unwinder
4076 with amd64_windows_frame_unwind. Call set_gdbarch_skip_prologue
4077 with amd64_windows_skip_prologue.
4078
4079 2013-08-30 Joel Brobecker <brobecker@adacore.com>
4080
4081 GDB 7.6.1 released.
4082
4083 2013-08-30 Pedro Alves <palves@redhat.com>
4084
4085 * mi/mi-main.c (mi_cmd_trace_find): Use LOC_AND_ADDRESS instead of
4086 SRC_AND_LOC.
4087
4088 2013-08-30 Pedro Alves <palves@redhat.com>
4089
4090 * thread.c (restore_selected_frame): Use SRC_AND_LOC, and change
4091 warning text.
4092
4093 2013-08-30 Pedro Alves <palves@redhat.com>
4094
4095 * bsd-kvm.c (bsd_kvm_open, bsd_kvm_proc_cmd, bsd_kvm_pcb_cmd):
4096 Adjust arguments to print_stack_frame.
4097
4098 2013-08-30 Pedro Alves <palves@redhat.com>
4099
4100 * ada-tasks.c (task_command_1): Write SRC_AND_LOC instead '1'.
4101
4102 2013-08-30 Pedro Alves <palves@redhat.com>
4103
4104 * frame.h (show_and_print_stack_frame): Delete declaration.
4105
4106 2013-08-30 Phil Muldoon <pmuldoon@redhat.com>
4107
4108 PR python/15461
4109 * python/py-arch.c (ARCHPY_REQUIRE_VALID): New macro.
4110 (archpy_name): Check for valid architecture.
4111 (archpy_disassemble): Ditto.
4112
4113 2013-08-29 Joel Brobecker <brobecker@adacore.com>
4114
4115 * rs6000-nat.c (rs6000_ptrace32): Cast "addr" to "uintptr_t"
4116 instead of "long long" in call to ptrace64.
4117
4118 2013-08-29 Andrew Burgess <aburgess@broadcom.com>
4119
4120 * mi/mi-interp.c (mi_command_loop): Change signature to match
4121 interp_command_loop_ftype.
4122 (mi1_command_loop): Remove.
4123 (mi2_command_loop): Remove.
4124 (mi3_command_loop): Remove.
4125 (mi_interpreter_resume): Remove setting of
4126 deprecated_command_loop_hook.
4127 (_initialize_mi_interp): Set mi_command_loop as the command loop
4128 callback.
4129
4130 2013-08-29 Sanimir Agovic <sanimir.agovic@intel.com>
4131
4132 * valops.c (do_search_struct_field): Pass v2 instead of base_type to
4133 value_type.
4134
4135 2013-08-29 Sanimir Agovic <sanimir.agovic@intel.com>
4136
4137 * value.c (allocate_value_contents): Make static.
4138 * value.h (allocate_value_contents): Remove prototype.
4139
4140 2013-08-29 Sanimir Agovic <sanimir.agovic@intel.com>
4141
4142 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Use value_at_lazy instead
4143 of assembling value via allocate_value_lazy and attribute setter.
4144 * findvar.c (default_read_var_value): Use value_at_lazy instead of
4145 assembling value via allocate_value_lazy and attribute setter.
4146 * valops.c (do_search_struct_field): Use value_at_lazy instead of
4147 assembling value via allocate_value_lazy and attribute setter.
4148
4149 2013-08-29 Sanimir Agovic <sanimir.agovic@intel.com>
4150
4151 * value.c (value_from_contents_and_address): Replace allocate_value and
4152 memcpy with value_from_contents.
4153
4154 2013-08-29 Phil Muldoon <pmuldoon@redhat.com>
4155
4156 * python/py-framefilter.c (py_print_frame): Remove usage of
4157 PyString_AsString. Use python_string_to_host_string instead.
4158 Refactor function to work with a string as a new allocation
4159 instead of a pointer.
4160 (py_print_frame): Ditto.
4161 * python/lib/gdb/frames.py (return_list): Cain iterators together
4162 instead of adding them as a list.
4163 (_sort_list): Call return_list, and remove duplicate code.
4164 (execute_frame_filters): Convert iterator to a list with list().
4165 * python/lib/gdb/command/frame_filters.py
4166 (SetFrameFilterPriority._set_filter_priority): Convert priority
4167 attribute to an integer.
4168 * python/lib/gdb/FrameIterator.py (FrameIterator.next): Define
4169 wrapper function __next__.
4170 * python/lib/gdb/FrameDecorator.py: If basestring not defined,
4171 define as "str".
4172
4173 2013-08-29 Phil Muldoon <pmuldoon@redhat.com>
4174
4175 PR python/15752
4176 * python/py-framefilter.c (apply_frame_filter): Check
4177 gdb_python_initialized. Exit if the Python frame-filter code
4178 cannot be initialized.
4179
4180 2013-08-29 Phil Muldoon <pmuldoon@redhat.com>
4181
4182 PR cli/15842
4183 * top.c (print_gdb_version): Remove erroneous newline after help
4184 text.
4185
4186 2013-08-29 Yao Qi <yao@codesourcery.com>
4187
4188 * varobj.c (install_dynamic_child): Remove trailing space.
4189 Add one blank line after variable declaration.
4190
4191 2013-08-28 Jan Kratochvil <jan.kratochvil@redhat.com>
4192
4193 PR gdb/15415
4194 * corefile.c (get_exec_file): Use exec_filename.
4195 * defs.h (OPF_DISABLE_REALPATH): New definition. Add new comment.
4196 * exec.c (exec_close): Free EXEC_FILENAME.
4197 (exec_file_attach): New variable canonical_pathname. Use
4198 OPF_DISABLE_REALPATH. Call gdb_realpath explicitly. Set
4199 EXEC_FILENAME.
4200 * exec.h (exec_filename): New.
4201 * inferior.c (print_inferior, inferior_command): Use
4202 PSPACE_EXEC_FILENAME.
4203 * mi/mi-main.c (print_one_inferior): Likewise.
4204 * progspace.c (clone_program_space, print_program_space): Likewise.
4205 * progspace.h (struct program_space): New field pspace_exec_filename.
4206 * source.c (openp): Describe OPF_DISABLE_REALPATH. New variable
4207 realpath_fptr, initialize it from OPF_DISABLE_REALPATH, use it.
4208
4209 2013-08-28 Will Newton <will.newton@linaro.org>
4210
4211 * common/linux-ptrace.c: Include stdint.h unconditionally.
4212
4213 2013-08-28 Jan Kratochvil <jan.kratochvil@redhat.com>
4214
4215 Code cleanup.
4216 * nto-tdep.c (nto_find_and_open_solib): Use OPF_TRY_CWD_FIRST.
4217
4218 2013-08-28 Yao Qi <yao@codesourcery.com>
4219 Pedro Alves <palves@redhat.com>
4220
4221 * event-top.c (gdb_setup_readline): Call stderr_fileopen
4222 instead of stdio_fileopen.
4223 * main.c (captured_main) [__MINGW32__]: Set stderr unbuffered.
4224 .Call stderr_fileopen instead of stdio_fileopen.
4225 * ui-file.c [__MINGW32__] (stderr_file_write): New function.
4226 [__MINGW32__] (stderr_file_fputs): New function.
4227 (stderr_fileopen): New function.
4228 * ui-file.h (stderr_fileopen): Declare.
4229
4230 2013-08-27 Doug Evans <dje@google.com>
4231
4232 * dwarf2read.c (struct dwarf2_cu): Tweak comment.
4233 (struct dwarf2_per_cu_data): Ditto.
4234 (maybe_queue_comp_unit): Delete forward decl. Add comment.
4235 (process_imported_unit_die): Ditto.
4236 (follow_die_sig_1): Simplify assert.
4237
4238 2013-08-27 Pedro Alves <palves@redhat.com>
4239
4240 * windows-nat.c (windows_xfer_memory): Adjust prototype to follow
4241 xfer_partial's interface. Return TARGET_XFER_E_IO on error.
4242 (windows_xfer_partial): Defer TARGET_OBJECT_MEMORY handling to
4243 windows_xfer_memory directly.
4244 (init_windows_ops): Don't install a deprecated_xfer_memory method.
4245
4246 2013-08-27 Pedro Alves <palves@redhat.com>
4247
4248 * darwin-nat.c (darwin_xfer_memory): Delete.
4249 (_initialize_darwin_inferior): Don't install a
4250 deprecated_xfer_memory method.
4251
4252 2013-08-27 Pedro Alves <pedro@codesourcery.com>
4253 Yao Qi <yao@codesourcery.com>
4254
4255 * mi/mi-cmd-stack.c (list_args_or_locals): Adjust prototype.
4256 (parse_no_frames_option): Remove.
4257 (mi_cmd_stack_list_locals): Handle --skip-unavailable.
4258 (mi_cmd_stack_list_args): Adjust.
4259 (mi_cmd_stack_list_variables): Handle --skip-unavailable.
4260 (list_arg_or_local): Add new parameter 'skip_unavailable'. Return
4261 early if SKIP_UNAVAILABLE is true and ARG->val is unavailable.
4262 Caller update.
4263 (list_args_or_locals): New parameter 'skip_unavailable'.
4264 Handle it.
4265 * valprint.c (scalar_type_p): Rename to ...
4266 (val_print_scalar_type_p): ... this. Make extern.
4267 (val_print, value_check_printable): Adjust.
4268 * valprint.h (val_print_scalar_type_p): Declare.
4269 * value.c (value_entirely_unavailable): New function.
4270 * value.h (value_entirely_unavailable): Declare.
4271
4272 * NEWS: Mention the new option "--skip-unavailable" to MI
4273 commands '-stack-list-locals', '-stack-list-arguments' and
4274 '-stack-list-variables'.
4275
4276 2013-08-27 Yao Qi <yao@codesourcery.com>
4277
4278 * mi/mi-cmd-stack.c (parse_no_frames_option): Remove.
4279 (mi_cmd_stack_list_args): Use mi_getopt_silent to handle
4280 options.
4281 * mi/mi-getopt.c (mi_getopt): Remove.
4282 (mi_getopt_1): Renamed from mi_getopt. Add one parameter
4283 'error_on_unknown'.
4284 (mi_getopt): Call mi_getopt_1.
4285 (mi_getopt_silent): New.
4286 * mi/mi-getopt.h (mi_getopt_silent): Declare.
4287
4288 2013-08-26 Doug Evans <dje@google.com>
4289
4290 PR symtab/15885
4291 * dwarf2read.c (dw2_dump): Print some minimal information indicating
4292 .gdb_index is in use.
4293 * symfile.c (reread_symbols): Reset objfile->sf.
4294
4295 * NEWS: Document "mt print objfiles" now takes optional regexp.
4296 * symmisc.c (maintenance_print_objfiles): Argument is now an optional
4297 regexp of objfiles to print.
4298 (_initialize_symmisc): Update doc string for "mt print objfiles".
4299
4300 * dwarf2read.c (write_psymtabs_to_index): Move error checks ahead of
4301 missing debug info checks.
4302
4303 2013-08-26 Raunaq Bathija <raunaq12@in.ibm.com>
4304 Ulrich Weigand <uweigand@de.ibm.com>
4305
4306 * xcoffread.c (arrange_linetable): Add fix to correctly handle
4307 line tables generated by XLC compiled binaries.
4308
4309 2013-08-23 Doug Evans <dje@google.com>
4310
4311 * symmisc.c (dump_symtab): Delete prototype.
4312 (dump_msymbols, dump_objfile): Ditto.
4313 (maintenance_info_symtabs): Mark as dont_repeat.
4314 (_initialize_symmisc): Improve doc string for "mt info symtabs".
4315
4316 * elfread.c (elf_symfile_read): Move "Done reading minimal symbols"
4317 debugging printf to better location.
4318
4319 2013-08-23 Pedro Alves <palves@redhat.com>
4320
4321 * target.c (target_read_live_memory): Change type of 'ret' local
4322 to LONGEST.
4323
4324 2013-08-23 Pedro Alves <palves@redhat.com>
4325
4326 * remote.c (remote_write_bytes_aux, remote_write_bytes)
4327 (remote_read_bytes): Change return type to LONGEST, and adjust to
4328 return a target_xfer_error on error.
4329 (remote_xfer_memory): Delete.
4330 (remote_flash_write): Change type of 'ret' local to LONGEST.
4331 (remote_xfer_partial, remote_xfer_partial): Adjust.
4332 (init_remote_ops): Don't install a deprecated_xfer_memory hook.
4333
4334 2013-08-23 Pierre Muller <muller@sourceware.org>
4335
4336 ARI fix: Push # directives to start of line.
4337 * rs6000-nat.c (rs6000_ptrace32, rs6000_ptrace64): Rule applied.
4338
4339 2013-08-12 Muhammad Waqas <mwaqas@codesourcery.com>
4340
4341 PR gdb/15501
4342 * breakpoint.c (enable_command, disable_command): Iterate over
4343 all specified breakpoint locations.
4344
4345 2013-08-22 Luis Machado <lgustavo@codesourcery.com>
4346
4347 * common/linux-ptrace.c (linux_fork_to_function): Push #
4348 directives to the start of the line.
4349 (linux_check_ptrace_features): Fix warning message to use
4350 the "_" markup.
4351
4352 2013-08-22 Luis Machado <lgustavo@codesourcery.com>
4353
4354 * Makefile.in (HFILES_NO_SRCDIR): Add nat/linux-nat.h and
4355 nat/linux-waitpid.h.
4356 (linux-waitpid.o): New object file rule.
4357 * common/linux-ptrace.c: Include nat/linux-waitpid.h.
4358 (current_ptrace_options): Moved from linux-nat.c.
4359 (linux_ptrace_test_ret_to_nx): Use type casts for ptrace
4360 parameters.
4361 (linux_fork_to_function): New function.
4362 (linux_grandchild_function): Likewise.
4363 (linux_child_function): Likewise.
4364 (linux_check_ptrace_features): New function, heavily
4365 based on linux-nat.c:linux_test_for_tracefork.
4366 (linux_enable_event_reporting): New function.
4367 (ptrace_supports_feature): Likewise.
4368 (linux_supports_tracefork): Likewise.
4369 (linux_supports_traceclone): Likewise.
4370 (linux_supports_tracevforkdone): Likewise.
4371 (linux_supports_tracesysgood): Likewise.
4372 * common/linux-ptrace.h (HAS_NOMMU): Moved from
4373 gdbserver/linux-low.c.
4374 (linux_enable_event_reporting): New declaration.
4375 (linux_supports_tracefork): Likewise.
4376 (linux_supports_traceclone): Likewise.
4377 (linux_supports_tracevforkdone): Likewise.
4378 (linux_supports_tracesysgood): Likewise.
4379 * config.in (PTRACE_TYPE_ARG4): Regenerate.
4380 * config/aarch64/linux.mh (NATDEPFILES): Add linux-waitpid.o.
4381 * config/alpha/alpha-linux.mh (NATDEPFILES): Likewise.
4382 * config/arm/linux.mh (NATDEPFILES): Likewise.
4383 * config/i386/linux.mh (NATDEPFILES): Likewise.
4384 * config/i386/linux64.mh (NATDEPFILES): Likewise.
4385 * config/ia64/linux.mh (NATDEPFILES): Likewise.
4386 * config/m32r/linux.mh (NATDEPFILES): Likewise.
4387 * config/m68k/linux.mh (NATDEPFILES): Likewise.
4388 * config/mips/linux.mh (NATDEPFILES): Likewise.
4389 * config/pa/linux.mh (NATDEPFILES): Likewise..
4390 * config/powerpc/linux.mh (NATDEPFILES): Likewise..
4391 * config/powerpc/ppc64-linux.mh (NATDEPFILES): Likewise.
4392 * config/powerpc/spu-linux.mh (NATDEPFILES): Likewise.
4393 * config/sparc/linux.mh (NATDEPFILES): Likewise.
4394 * config/sparc/linux64.mh (NATDEPFILES): Likewise.
4395 * config/tilegx/linux.mh (NATDEPFILES): Likewise.
4396 * config/xtensa/linux.mh (NATDEPFILES): Likewise.
4397 * configure.ac (AC_CACHE_CHECK): Add void * to the list of
4398 ptrace's 4th argument's types.
4399 Check the type of PTRACE_TYPE_ARG4.
4400 * configure: Regenerate.
4401 * linux-nat.c: Include nat/linux-nat.h and nat/linux-waitpid.h.
4402 (SYSCALL_SIGTRAP): Moved to nat/linux-nat.h.
4403 (linux_supports_tracefork_flag): Remove.
4404 (linux_supports_tracesysgood_flag): Likewise.
4405 (linux_supports_tracevforkdone_flag): Likewise.
4406 (current_ptrace_options): Moved to
4407 common/linux-ptrace.c.
4408 (linux_tracefork_child): Remove.
4409 (my_waitpid): Remove.
4410 (linux_test_for_tracefork): Renamed to
4411 linux_check_ptrace_features and moved to common/linux-ptrace.c.
4412 (linux_test_for_tracesysgood): Remove.
4413 (linux_supports_tracesysgood): Remove.
4414 (linux_supports_tracefork): Remove.
4415 (linux_supports_tracevforkdone): Remove.
4416 (linux_enable_tracesysgood): Remove.
4417 (linux_enable_event_reporting): Remove.
4418 (linux_init_ptrace): New function.
4419 (linux_child_post_attach): Call linux_init_ptrace.
4420 (linux_child_post_startup_inferior): Call linux_init_ptrace.
4421 (linux_child_follow_fork): Call linux_supports_tracefork
4422 and linux_supports_tracevforkdone.
4423 (linux_child_insert_fork_catchpoint): Call
4424 linux_supports_tracefork.
4425 (linux_child_insert_vfork_catchpoint): Likewise.
4426 (linux_child_set_syscall_catchpoint): Call
4427 linux_supports_tracesysgood.
4428 (lin_lwp_attach_lwp): Call linux_supports_tracefork.
4429 * nat/linux-nat.h: New file.
4430 * nat/linux-waitpid.c: New file.
4431 * nat/linux-waitpid.h: New file.
4432
4433 2013-08-22 Samuel Bronson <naesten@gmail.com>
4434
4435 ARM Linux support for `catch syscall'.
4436 * syscalls/arm-linux.py: New file.
4437 * syscalls/arm-linux.xml: Likewise.
4438 * arm-linux-tdep.c (arm_linux_get_syscall_number): New function.
4439 (arm_linux_init_abi): Register the new function and syscall xml file.
4440 * data-directory/Makefile.in: Install the new syscall xml file.
4441 * NEWS: Brag about this.
4442
4443 2013-08-22 Pedro Alves <palves@redhat.com>
4444
4445 PR gdb/15871
4446 * corefile.c (target_xfer_memory_error): New function.
4447 (memory_error): Defer EIO to target_memory_error.
4448 (read_memory): Use target_xfer_partial, and handle finer-grained
4449 target xfer errors.
4450 * target.c (target_xfer_error_to_string): New function.
4451 (memory_xfer_partial_1): If memory is known to be
4452 unavailable, return TARGET_XFER_E_UNAVAILABLE instead of -1.
4453 (target_xfer_partial): Make extern.
4454 * target.h (enum target_xfer_error): New enum.
4455 (target_xfer_error_to_string): Declare function.
4456 (target_xfer_partial): Declare function.
4457 (struct target_ops) <xfer_partial>: Adjust describing comment.
4458
4459 2013-08-22 Alan Modra <amodra@gmail.com>
4460
4461 * configure.host: Support powerpc64le-linux and powerpcle-linux hosts.
4462 * configure.tgt: Likewise as targets.
4463
4464 2013-08-20 Doug Evans <dje@google.com>
4465
4466 * buildsym.c (subfile_stack): Move here from buildsym.h.
4467 (pending_macros): Ditto.
4468 (get_macro_table): New function.
4469 (buildsym_init): Initialize subfile_stack.
4470 * coffread.c (type_vector,type_vector_length): Moved here from
4471 buildsym.h.
4472 (INITIAL_TYPE_VECTOR_LENGTH): Ditto.
4473 (coff_symtab_read): Use it.
4474 * dbxread.c (read_ofile_symtab): Delete init of subfile_stack.
4475 * dwarf2read.c (macro_start_file): Replace uses of pending_macros
4476 with call to get_macro_table.
4477 * stabsread.c (type_vector,type_vector_length): Moved here from
4478 buildsym.h.
4479 (INITIAL_TYPE_VECTOR_LENGTH): Ditto.
4480 * buildsym.h (get_macro_table): Declare.
4481
4482 2013-08-20 Tom Tromey <tromey@redhat.com>
4483
4484 * dbxread.c (record_minimal_symbol): Make 'name' argument const.
4485 Update.
4486 (read_dbx_dynamic_symtab): Make 'name' const. Remove casts.
4487
4488 2013-08-20 Doug Evans <dje@google.com>
4489
4490 * blockframe.c: Remove #include "psymtab.h".
4491 * cp-support.c: Ditto.
4492 * source.c: Ditto.
4493 * stack.c: Ditto.
4494
4495 2013-08-20 Tom Tromey <tromey@redhat.com>
4496
4497 PR python/15816:
4498 * exceptions.h (return_mask): Now an enum.
4499 (RETURN_MASK_QUIT, RETURN_MASK_ERROR, RETURN_MASK_ALL): Now
4500 enum constants.
4501
4502 2013-08-20 Tom Tromey <tromey@redhat.com>
4503
4504 * cp-namespace.c (cp_lookup_symbol_imports_or_template): Use
4505 get_objfile_arch.
4506 * elfread.c (elf_rel_plt_read, elf_gnu_ifunc_record_cache)
4507 (elf_gnu_ifunc_resolve_by_got): Use get_objfile_arch.
4508 * jit.c (jit_object_close_impl): Update.
4509 * jv-lang.c (get_dynamics_objfile): Update.
4510 * linespec.c (add_minsym): Use get_dynamics_objfile.
4511 * objfiles.c (get_objfile_bfd_data): Initialize 'gdbarch' field.
4512 (allocate_objfile): Don't initialize 'gdbarch' field.
4513 (get_objfile_arch): Update.
4514 * objfiles.h (struct objfile_per_bfd_storage) <gdbarch>: New field,
4515 moved from...
4516 (struct objfile) <gdbarch>: ... here. Remove.
4517 * stap-probe.c (stap_can_evaluate_probe_arguments): Use
4518 get_objfile_arch.
4519 * symfile.c (init_entry_point_info): Use get_objfile_arch.
4520
4521 2013-08-20 Alan Modra <amodra@gmail.com>
4522
4523 * doublest.c (convert_floatformat_to_doublest): Use fmt->split_half
4524 for IBM long double nan and inf.
4525 (floatformat_is_negative, floatformat_classify,
4526 floatformat_mantissa): Similarly.
4527 (floatformat_ieee_single, floatformat_ieee_double,
4528 floatformat_ieee_quad, floatformat_arm_ext,
4529 floatformat_ia64_spill): Delete unused vars.
4530 (_initialize_doublest): Delete unused function.
4531 * gdbtypes.c (floatformats_ibm_long_double): Use new big- and
4532 little-endian variants of floatformat_ibm_long_double.
4533
4534 2013-08-19 Luis Machado <lgustavo@codesourcery.com>
4535
4536 * Makefile.in (SFILES): Remove common/target-common.c and
4537 add target/waitstatus.c.
4538 (HFILES_NO_SRCDIR): Remove common/target-common.h and add
4539 target/resume.h, target/wait.h and target/waitstatus.h.
4540 (COMMON_OBS): Remove target-common.o and add
4541 waitstatus.o.
4542 (target-common.o): Remove.
4543 (waitstatus.o): New target object file.
4544 * common/target-common.c: Move contents to
4545 target/waitstatus.c and remove.
4546 * common/target-common.h: Move contents to other files and
4547 remove.
4548 (enum resume_kind: Move to target/resume.h.
4549 (TARGET_WNOHANG): Move to target/wait.h.
4550 (enum target_waitkind): Move to target/waitstatus.h.
4551 (struct target_waitstatus): Likewise.
4552 * target.h: Do not include target-common.h and
4553 include target/resume.h, target/wait.h and
4554 target/waitstatus.h.
4555 * target/resume.h: New file.
4556 * target/wait.h: New file.
4557 * target/waitstatus.h: New file.
4558 * target/waitstatus.c: New file.
4559
4560 2013-08-19 Pedro Alves <palves@redhat.com>
4561
4562 * linux-nat.c (linux_test_for_tracefork)
4563 (linux_test_for_tracesysgood, linux_child_follow_fork)
4564 (lin_lwp_attach_lwp, linux_nat_resume): Don't block child signals.
4565 (linux_nat_wait_1): Extend comment.
4566 (linux_async_pipe): Add comment.
4567
4568 2013-08-15 Kevin Buettner <kevinb@redhat.com>
4569
4570 * rl78-tdep.c (RL78_RAW_PC_REGNUM): New enum.
4571 (RL78_PC_REGNUM): Move to list of pseudo-register enums.
4572 (rl78_register_type, rl78_register_name, rl78_register_reggroup_p):
4573 Update to account for fact that PC is now a pseudo-register.
4574 (rl78_pseudo_register_write, rl78_pseudo_register_read): Add
4575 cases for RL78_PC_REGNUM.
4576
4577 2013-08-15 Muhammad Bilal <mbilal@codesourcery.com>
4578
4579 PR cli/15841
4580 * top.c (quit_force): Skip writing history file
4581 if input is not from terminal.
4582
4583 2013-08-14 Tom Tromey <tromey@redhat.com>
4584
4585 * remote.c (struct remote_state) <echo_nextthread, nextthread,
4586 resultthreadlist>: New fields.
4587 (OPAQUETHREADBYTES, threadref, MAXTHREADLISTRESULTS): Move earlier.
4588 (remote_get_threadlist, remote_threadlist_iterator): Use
4589 new fields. Remove static variables.
4590
4591 2013-08-14 Tom Tromey <tromey@redhat.com>
4592
4593 * remote.c (struct remote_state) <remote_stopped_by_watchpoint_p,
4594 remote_watch_data_address>: New fields.
4595 (remote_stopped_by_watchpoint_p, remote_watch_data_address): Remove.
4596 (process_stop_reply, remote_wait_as)
4597 (remote_check_watch_resources, remote_stopped_data_address): Update.
4598
4599 2013-08-14 Tom Tromey <tromey@redhat.com>
4600
4601 * remote.c (struct remote_state) <async_client_callback,
4602 async_client_context>: New fields.
4603 (async_client_callback, async_client_context): Remove.
4604 (remote_async_serial_handler, remote_async): Update.
4605
4606 2013-08-14 Tom Tromey <tromey@redhat.com>
4607
4608 * remote.c (sizeof_pkt): Remove.
4609 (remote_trace_find): Use rs->buf_size, not sizeof_pkt.
4610
4611 2013-08-14 Tom Tromey <tromey@redhat.com>
4612
4613 * remote.c (struct remote_state) <use_threadinfo_query,
4614 use_threadextra_query>: New fields.
4615 (remote_threads_info, remote_threads_extra_info)
4616 (remote_open_1): Update.
4617
4618 2013-08-14 Tom Tromey <tromey@redhat.com>
4619
4620 * remote.c (struct remote_state) <finished_object,
4621 finished_annex, finished_offset>: New fields.
4622 (remote_read_qxfer): Use remote_state fields; remove static
4623 variables.
4624
4625 2013-08-14 Tom Tromey <tromey@redhat.com>
4626
4627 * remote.c (struct remote_state) <last_sent_step>:
4628 New field.
4629 (last_sent_step): Remove.
4630 (remote_resume, remote_wait_as): Update.
4631
4632 2013-08-14 Tom Tromey <tromey@redhat.com>
4633
4634 * remote.c (struct remote_state) <last_sent_signal>:
4635 New field.
4636 (last_sent_signal): Remove.
4637 (new_remote_state, remote_resume, remote_wait_as): Update.
4638
4639 2013-08-14 Tom Tromey <tromey@redhat.com>
4640
4641 * remote.c (struct remote_state) <last_program_signals_packet>:
4642 New field.
4643 (last_program_signals_packet): Remove.
4644 (remote_program_signals, remote_open_1): Update.
4645
4646 2013-08-14 Tom Tromey <tromey@redhat.com>
4647
4648 * remote.c (struct remote_state) <last_pass_packet>:
4649 New field.
4650 (last_pass_packet): Remove.
4651 (remote_pass_signals, remote_open_1): Update.
4652
4653 2013-08-14 Tom Tromey <tromey@redhat.com>
4654
4655 * remote.c (struct remote_state) <remote_traceframe_number>:
4656 New field.
4657 (remote_traceframe_number): Remove.
4658 (new_remote_state, remote_open_1, set_remote_traceframe)
4659 (remote_trace_find): Update.
4660
4661 2013-08-14 Tom Tromey <tromey@redhat.com>
4662
4663 * remote.c (struct remote_state) <general_thread, continue_thread>:
4664 New fields.
4665 (general_thread, continue_thread): Remove.
4666 (record_currthread, set_thread, set_general_process)
4667 (remote_open_1, extended_remote_attach_1, remote_wait_as)
4668 (extended_remote_mourn_1): Update.
4669
4670 2013-08-14 Tom Tromey <tromey@redhat.com>
4671
4672 * remote.c (struct remote_state) <remote_desc>: New field.
4673 (remote_desc): Remove.
4674 (remote_threads_info, remote_threads_extra_info, remote_close)
4675 (send_interrupt_sequence, remote_start_remote, remote_open_1)
4676 (readchar, remote_xfer_partial, remote_rcmd, packet_command)
4677 (remote_hostio_send_command, remote_file_put, remote_file_get)
4678 (remote_file_delete, remote_can_async_p, remote_is_async_p)
4679 (remote_async, remote_new_objfile, set_range_stepping): Update.
4680
4681 2013-08-14 Tom Tromey <tromey@redhat.com>
4682
4683 * remote.c (remote_state): Now a pointer.
4684 (get_remote_state_raw): Update.
4685 (new_remote_state): New function.
4686 (_initialize_remote): Use new_remote_state.
4687
4688 2013-08-14 Tom Tromey <tromey@redhat.com>
4689
4690 * remote.c (remote_protocol_features): Now const.
4691
4692 2013-08-14 Tom Tromey <tromey@redhat.com>
4693
4694 * remote.c (crc32_table, crc32): Remove.
4695 (remote_verify_memory): Use xcrc32.
4696
4697 2013-08-13 Sergio Durigan Junior <sergiodj@redhat.com>
4698
4699 * value.h (create_internalvar_type_lazy): Adjust prototype
4700 declaration.
4701
4702 2013-08-13 Andrew Burgess <aburgess@broadcom.com>
4703
4704 * common/format.c (parse_format_string): Don't allow '#' flag for
4705 pointer arguments in format string.
4706
4707 2013-08-13 Pierre Muller <muller@sourceware.org>
4708
4709 * utils.c (init_page_info): Only call tgetnum function
4710 if rl_get_screen_size did not return useful values.
4711
4712 2013-08-12 Ali Anwar <ali_anwar@codesourcery.com>
4713
4714 PR breakpoints/15117
4715 * linespec.c (linespec_parse_basic): Check for convenience
4716 variable or history value while parsing.
4717
4718 2013-08-12 Sergio Durigan Junior <sergiodj@redhat.com>
4719
4720 Revert implementation of gdbarch_gdb_signal_{to,from}_target for
4721 AVR.
4722 * avr-tdep.c: Remove include of "linux-tdep.h". Remove enum with
4723 different signals between the generic Linux kernel implementation
4724 and AVR's.
4725 (avr_linux_gdb_signal_from_target): Delete.
4726 (avr_linux_gdb_signal_to_target): Delete.
4727 (avr_gdbarch_init): Don't set gdbarch_gdb_signal_{to,from}_target.
4728
4729 2013-08-09 Doug Evans <dje@google.com>
4730
4731 * dwarf2read.c (create_addrmap_from_index): Ignore bad address table
4732 entries.
4733
4734 2013-08-09 Sergio Durigan Junior <sergiodj@redhat.com>
4735
4736 * linux-tdep.c: Define enum with generic signal numbers.
4737 (linux_gdb_signal_from_target): New function.
4738 (linux_gdb_signal_to_target): Likewise.
4739 (linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
4740 methods to the functions above.
4741 * linux-tdep.h (linux_gdb_signal_from_target): New prototype.
4742 (linux_gdb_signal_to_target): Likewise.
4743 * alpha-linux-tdep.c: Define new enum with signals different
4744 from generic Linux kernel.
4745 (alpha_linux_gdb_signal_from_target): New function.
4746 (alpha_linux_gdb_signal_to_target): Likewise.
4747 (alpha_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
4748 with the functions mentioned above.
4749 * avr-tdep.c: Define enum with differences between Linux kernel
4750 and AVR signals.
4751 (avr_linux_gdb_signal_from_target): New function.
4752 (avr_linux_gdb_signal_to_target): Likewise.
4753 (avr_gdbarch_init): Set gdbarch_gdb_signal_{to,from}_target to
4754 the functions mentioned above.
4755 * sparc-linux-tdep.c: Define enum with differences between SPARC
4756 and generic Linux kernel signal numbers.
4757 (sparc32_linux_gdb_signal_from_target): New function.
4758 (sparc32_linux_gdb_signal_to_target): Likewise.
4759 (sparc32_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
4760 to the functions defined above.
4761 * xtensa-linux-tdep.c: Define enum with differences between
4762 Xtensa and Linux kernel generic signals.
4763 (xtensa_linux_gdb_signal_from_target): New function.
4764 (xtensa_linux_gdb_signal_to_target): Likewise.
4765 (xtensa_linux_init_abi): Set gdbarch_gdb_signal_to_target
4766 to the functions defined above.
4767 * mips-linux-tdep.c: Define enum with differences between
4768 signals in MIPS and Linux kernel generic ones.
4769 (mips_gdb_signal_to_target): New function.
4770 (mips_gdb_signal_from_target): Redefine to use new enum, handle
4771 only different signals from the Linux kernel generic.
4772 (mips_linux_init_abi): Set gdbarch_gdb_signal_{to,from}_target
4773 the functions defined above.
4774 * mips-linux-tdep.h (enum mips_signals): Remove.
4775
4776 2013-08-09 Pedro Alves <palves@redhat.com>
4777
4778 * avr-tdep.c (XMALLOC): Delete macro.
4779 * cli/cli-dump.c (XMALLOC): Delete macro.
4780
4781 2013-08-09 Pedro Alves <palves@redhat.com>
4782
4783 * cli/cli-dump.c: Don't include cli/cli-dump.h.
4784 (scan_expression_with_cleanup, scan_filename_with_cleanup)
4785 (fopen_with_cleanup, add_dump_command): Make static.
4786 * cli/cli-dump.h: Delete file.
4787 * Makefile.in (HFILES_NO_SRCDIR): Remove reference to
4788 cli/cli-dump.h.
4789
4790 2013-08-09 Pedro Alves <palves@redhat.com>
4791
4792 * tracepoint.c (tfile_start): Show tilde-expanded filename in
4793 error message.
4794
4795 2013-08-09 Pedro Alves <palves@redhat.com>
4796
4797 * breakpoint.c (save_breakpoints): Show tilde-expanded filename in
4798 error message.
4799
4800 2013-08-09 Pedro Alves <palves@redhat.com>
4801
4802 * gcore.c (create_gcore_bfd): Don't use tilde_expand here.
4803 (gcore_command): Use tilde_expand here, and when showing the
4804 filename to the user, show the expanded version.
4805
4806 2013-08-09 Yao Qi <yao@codesourcery.com>
4807
4808 * stack.c (read_frame_arg): Set 'entryval_error' to NULL if
4809 'entryval' is set.
4810
4811 2013-08-08 Azat Khuzhin <a3at.mail@gmail.com> (tiny change)
4812
4813 * gcore.c (create_gcore_bfd): Use tilde_expand.
4814
4815 2013-08-08 Yao Qi <yao@codesourcery.com>
4816
4817 * frame.h (read_frame_local): Declare.
4818 * mi/mi-cmd-stack.c (list_args_or_locals): Call
4819 read_frame_local.
4820 * stack.c (read_frame_local): New.
4821
4822 2013-08-08 Yao Qi <yao@codesourcery.com>
4823
4824 * mi/mi-cmd-stack.c: Update comments to function
4825 list_args_or_locals.
4826
4827 2013-08-07 Tom Tromey <tromey@redhat.com>
4828
4829 PR symtab/15028:
4830 * dwarf2read.c (struct process_psymtab_comp_unit_data): New.
4831 (process_psymtab_comp_unit_reader): Use it.
4832 (process_psymtab_comp_unit): Update. Add "pretend_language"
4833 argument.
4834 (dwarf2_build_psymtabs_hard): Update.
4835 (scan_partial_symbols): Pass CU's language to
4836 process_psymtab_comp_unit.
4837
4838 2013-08-07 Tom Tromey <tromey@redhat.com>
4839
4840 * dwarf2read.c (dw2_get_primary_filename_reader): Remove.
4841 (dwarf2_gdb_index_functions): Update.
4842 * psymtab.c (find_symbol_file_from_partial): Remove.
4843 (psym_functions): Update.
4844 * symfile.h (struct quick_symbol_functions) <find_symbol_file>:
4845 Remove.
4846
4847 2013-08-07 Tom Tromey <tromey@redhat.com>
4848
4849 * symfile.c (set_initial_language): Look up "main" symbol
4850 and use its language.
4851 * symtab.c (find_main_filename): Remove.
4852 * symtab.h (find_main_filename): Remove.
4853
4854 2013-08-07 Tom Tromey <tromey@redhat.com>
4855
4856 * dwarf2read.c (recursively_compute_inclusions): Add
4857 "immediate_parent" argument. Set symtab's "user" field
4858 if not set.
4859 (compute_symtab_includes): Update.
4860
4861 2013-08-07 Tom Tromey <tromey@redhat.com>
4862
4863 * linespec.c (convert_linespec_to_sals): Use maybe_add_address
4864 when adding label symbols.
4865
4866 2013-08-07 Raunaq Bathija <raunaq12@in.ibm.com>
4867 Ulrich Weigand <uweigand@de.ibm.com>
4868
4869 * configure.tgt (powerpc64-*-aix*): Match powerpc64 running aix.
4870 * configure.host (powerpc64-*-aix*): Likewise.
4871
4872 2013-08-07 Raunaq Bathija <raunaq12@in.ibm.com>
4873 Ulrich Weigand <uweigand@de.ibm.com>
4874
4875 * gdb_ptrace.h: Use ptrace64 instead of ptrace if HAVE_PTRACE64
4876 is defined.
4877 * rs6000-nat.c: Check for __ld_info64_ if compiling 64 BIT gdb.
4878 (rs6000_ptrace32): Call ptrace64 instead of ptrace if present.
4879 (rs6000_ptrace64): Call ptace64 instead of ptracex if present.
4880 * configure.ac: Check for ptrace64.
4881 * configure, config.in: Regenerate.
4882
4883 2013-08-07 Raunaq Bathija <raunaq12@in.ibm.com>
4884 Ulrich Weigand <uweigand@de.ibm.com>
4885
4886 * aixthread.c: Call ptrace64 instead of ptracex if defined.
4887 Call ptrace64 instead of ptrace if defined.
4888 Add macro addr_ptr to take care of ptrace address argument.
4889 (pdc_read_regs): Likewise.
4890 (pdc_write_regs): Likewise.
4891 (aix_thread_resume): Likewise.
4892 (fetch_regs_kernel_thread): Likewise.
4893 (store_regs_kernel_thread): Likewise.
4894
4895 2013-08-07 Anton Blanchard <anton@samba.org>
4896
4897 * MAINTAINERS: Add myself to Write After Approval.
4898
4899 2013-08-05 Tom Tromey <tromey@redhat.com>
4900
4901 * aix-thread.c (_initialize_aix_thread): Use
4902 complete_target_initialization.
4903 * bsd-uthread.c (_initialize_bsd_uthread): Use
4904 complete_target_initialization.
4905 * dec-thread.c (_initialize_dec_thread): Use
4906 complete_target_initialization.
4907 * ravenscar-thread.c (_initialize_ravenscar): Use
4908 complete_target_initialization.
4909 * sol-thread.c (_initialize_sol_thread): Use
4910 complete_target_initialization.
4911 * spu-multiarch.c (_initialize_spu_multiarch): Use
4912 complete_target_initialization.
4913
4914 2013-08-05 Tom Tromey <tromey@redhat.com>
4915
4916 * ada-exp.y (write_var_or_type): Use bound_minimal_symbol.
4917 * ada-lang.c (ada_lookup_simple_minsym): Return
4918 bound_minimal_symbol.
4919 * ada-lang.h (ada_lookup_simple_minsym): Update.
4920 * c-exp.y (variable): Use lookup_bound_minimal_symbol.
4921 * f-exp.y (variable): Use lookup_bound_minimal_symbol.
4922 * go-exp.y (variable): Use lookup_bound_minimal_symbol.
4923 * jv-exp.y (push_expression_name): Use lookup_bound_minimal_symbol.
4924 * m2-exp.y (variable): Use lookup_bound_minimal_symbol.
4925 * minsyms.c (msymbol_objfile): Remove.
4926 (lookup_minimal_symbol_internal): New function, from
4927 lookup_minimal_symbol.
4928 (lookup_minimal_symbol): Rewrite using
4929 lookup_minimal_symbol_internal.
4930 (lookup_bound_minimal_symbol): New function.
4931 * minsyms.h (msymbol_objfile): Remove.
4932 (lookup_bound_minimal_symbol): Declare.
4933 * p-exp.y (variable): Use lookup_bound_minimal_symbol.
4934 * parse.c (write_exp_msymbol): Change parameter to a
4935 bound_minimal_symbol.
4936 (write_dollar_variable): Use lookup_bound_minimal_symbol.
4937 * parser-defs.h (write_exp_msymbol): Update.
4938 * printcmd.c (address_info): Use lookup_bound_minimal_symbol.
4939 * symfile.c (simple_read_overlay_table): Use
4940 lookup_bound_minimal_symbol.
4941 * symtab.c (skip_prologue_sal): Don't use msymbol_objfile.
4942 (search_symbols): Likewise.
4943 (print_msymbol_info): Take a bound_minimal_symbol argument.
4944 (symtab_symbol_info, rbreak_command): Update.
4945 * symtab.h (struct symbol_search) <msymbol>: Change type
4946 to bound_minimal_symbol.
4947 * valops.c (find_function_in_inferior): Use
4948 lookup_bound_minimal_symbol.
4949 * value.c (value_fn_field): Use lookup_bound_minimal_symbol.
4950
4951 2013-08-05 Jan Kratochvil <jan.kratochvil@redhat.com>
4952
4953 Code cleanup.
4954 * remote.c (cleanup_sigint_signal_handler): Rename the declaration
4955 to ...
4956 (async_cleanup_sigint_signal_handler): ... this.
4957 (initialize_sigint_signal_handler): Remove declaration.
4958 (handle_remote_sigint): Rename the declaration to ...
4959 (async_handle_remote_sigint): ... this.
4960 (handle_remote_sigint_twice): Rename the declaration to ...
4961 (async_handle_remote_sigint_twice): ... this.
4962 (async_remote_interrupt, async_remote_interrupt_twice)
4963 (remote_interrupt): Remove the declarations.
4964 (remote_interrupt_twice): Rename the declaration ...
4965 (sync_remote_interrupt_twice): ... this.
4966 (sigint_remote_twice_token): Rename the variable to ...
4967 (async_sigint_remote_twice_token): ... this.
4968 (sigint_remote_token): Rename the variable to ...
4969 (async_sigint_remote_token): ... this.
4970 (initialize_sigint_signal_handler): Rename the function to ...
4971 (async_initialize_sigint_signal_handler): ... this. Update the name
4972 inside.
4973 (handle_remote_sigint): Rename the function to ...
4974 (async_handle_remote_sigint): ... this. Update the names inside.
4975 (handle_remote_sigint_twice): Rename the function to ...
4976 (async_handle_remote_sigint_twice): ... this. Update the names inside.
4977 (cleanup_sigint_signal_handler): Rename the function to ...
4978 (async_cleanup_sigint_signal_handler): ... this.
4979 (remote_interrupt): Rename the function to ...
4980 (sync_remote_interrupt): this. Update the names inside.
4981 (remote_interrupt_twice): Rename the function to ...
4982 (sync_remote_interrupt_twice): this. Update the names inside.
4983 (remote_terminal_inferior, remote_terminal_ours, remote_wait_as)
4984 (_initialize_remote): Update the names inside.
4985
4986 2013-08-02 Tom Tromey <tromey@redhat.com>
4987
4988 PR symtab/15719:
4989 * breakpoint.c (update_watchpoint, watchpoint_check)
4990 (watch_command_1): Update.
4991 * eval.c (fetch_subexp_value): Add "preserve_errors"
4992 parameter.
4993 * ppc-linux-nat.c (check_condition): Update.
4994 * value.h (fetch_subexp_value): Update.
4995
4996 2013-08-02 Andrew Burgess <aburgess@broadcom.com>
4997
4998 * mi/mi-interp.c (mi_interpreter_resume): Remove call to
4999 add_file_handler.
5000
5001 2013-08-01 Doug Evans <dje@google.com>
5002
5003 PR symtab/15691
5004 * dwarf2read.c (struct dwarf2_per_cu_data): New member tu_read.
5005 (fill_in_sig_entry_from_dwo_entry): Reorganize asserts.
5006 Add assert of sig_entry->dwo_unit == NULL.
5007 (lookup_dwo_signatured_type): Don't assign TU to a DWO if the TU
5008 had already been read.
5009 (read_signatured_type): Set per_cu.tu_read.
5010
5011 PR symtab/15695
5012 * valops.c (value_struct_elt): Add missing call to check_typedef.
5013 (value_find_oload_method_list): Ditto.
5014
5015 * symtab.c (do_free_search_symbols_cleanup): Change arg to,
5016 effectively, struct symbol_search **.
5017 (make_cleanup_free_search_symbols): Change arg to struct
5018 symbol_search **. All callers updated.
5019 (compare_search_syms): Compare symtab file name and block as well.
5020 (search_symbols_equal): New function.
5021 (sort_search_symbols_remove_dups): Renamed from sort_search_symbols.
5022 New args new_head, new_tail. Result is now void. Remove dups after
5023 sorting the symbols.
5024 (search_symbols): Sort all found symbols once, after all have been
5025 found, and remove duplicates. Simplify cleanup tracking of result.
5026 * symtab.h (make_cleanup_free_search_symbols): Update prototype.
5027
5028 Further workarounds for binutils/15021.
5029 * dwarf2read.c (recursively_compute_inclusions): Change type of result
5030 parameter to VEC (symtab_ptr) **. New parameter all_type_symtabs.
5031 Watch for duplicate symtabs coming from type units.
5032 (compute_symtab_includes): Update call to
5033 recursively_compute_inclusions. Build vector of included symtabs
5034 instead of per_cus.
5035 * symtab.h (symtab_ptr): New typedef.
5036 (DEF_VEC_P (symtab_ptr)): New VEC type.
5037 * linespec.c (symtab_p): Delete. All uses updated to use symtab_ptr
5038 instead.
5039
5040 2013-08-01 Andrew Burgess <aburgess@broadcom.com>
5041
5042 * cli/cli-script.c (script_from_file): Remove use of
5043 error_pre_print.
5044 * main.c (captured_main): Remove use of error_pre_print and
5045 quit_pre_print.
5046 * utils.c (error_pre_print, quit_pre_print): Remove.
5047 * utils.h (error_pre_print, quit_pre_print): Likewise.
5048
5049 2013-08-01 Yao Qi <yao@codesourcery.com>
5050
5051 * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Parse argv
5052 with mi_getopt.
5053 (mi_cmd_stack_list_variables): Likewise.
5054
5055 2013-07-31 Andrew Burgess <aburgess@broadcom.com>
5056
5057 * exceptions.c (deprecated_throw_reason): Remove.
5058 * exceptions.h (deprecated_throw_reason): Remove.
5059
5060 2013-07-31 Andrew Burgess <aburgess@broadcom.com>
5061
5062 * remote-mips.c (mips_error): Replace use of
5063 deprecated_throw_reason with throw_verror. Use the error message
5064 passed to mips_error as the error message for throw_verror.
5065
5066 2013-07-31 Andrew Burgess <aburgess@broadcom.com>
5067
5068 * monitor.c (monitor_interrupt_query): Replace use of
5069 deprecated_throw_reason with quit.
5070 * nto-procfs.c (interrupt_query): Likewise.
5071 * remote-fileio.c (remote_fileio_sig_exit): Likewise.
5072 * remote-mips.c (mips_kill): Likewise.
5073 * remote.c (interrupt_query): Likewise.
5074
5075 2013-07-31 Andrew Burgess <aburgess@broadcom.com>
5076
5077 * utils.c (internal_verror): Replace use of deprecated_throw_reason
5078 with call to fatal.
5079
5080 2013-07-31 Pedro Alves <pedro@codesourcery.com>
5081 Yao Qi <yao@codesourcery.com>
5082
5083 * tracepoint.c (trace_dump_command): Select the current frame.
5084
5085 2013-07-30 Doug Evans <dje@google.com>
5086
5087 * dwarf2read.c (process_queue): Add type signature to debug output.
5088
5089 2013-07-30 Andrew Burgess <aburgess@broadcom.com>
5090
5091 * value.c (value_fetch_lazy): Mark optimized out values as such
5092 rather than raising an error.
5093
5094 2013-07-30 Andrew Burgess <aburgess@broadcom.com>
5095
5096 * value.c (value_fetch_lazy): Ensure parent value is not lazy
5097 before checking which bits of the parent, not the child, value are
5098 valid.
5099
5100 2013-07-30 Muhammad Bilal <mbilal@codesorcery.com>
5101
5102 PR gdb/15715
5103 * top.c: Include "filenames.h".
5104 (set_history_filename): New function.
5105 (init_main): Install it as set hook of the "set history filename"
5106 command.
5107
5108 2013-07-30 Sanimir Agovic <sanimir.agovic@intel.com>
5109
5110 * dwarf2read.c (dwarf2_get_ref_die_offset): Constify struct
5111 attribute parameter.
5112 (dwarf2_const_value_data): Constify struct attribute parameter.
5113 (dwarf2_const_value): Constify struct attribute parameter.
5114 (dwarf2_const_value_attr): Constify struct attribute parameter.
5115 (lookup_die_type): Constify struct attribute parameter.
5116 (dwarf2_get_attr_constant_value): Constify struct attribute parameter.
5117 (follow_die_ref_or_sig): Constify struct attribute parameter.
5118 (follow_die_ref): Constify struct attribute parameter.
5119 (follow_die_sig): Constify struct attribute parameter.
5120 (get_DW_AT_signature_type): Constify struct attribute parameter.
5121 (get_type_unit_group): Constify struct attribute parameter.
5122 (fill_in_loclist_baton): Constify struct attribute parameter.
5123 (dwarf2_symbol_mark_computed): Constify struct attribute parameter.
5124 (type_unit_group): Constify struct attribute parameter.
5125
5126 2013-07-30 Sanimir Agovic <sanimir.agovic@intel.com>
5127
5128 * dwarf2read.c (attr_form_is_block): Make argument const.
5129 (attr_form_is_section_offset): Make argument const.
5130 (attr_form_is_constant): Make argument const.
5131 (attr_form_is_ref): Make argument const.
5132
5133 2013-07-30 Sanimir Agovic <sanimir.agovic@intel.com>
5134
5135 * dwarf2read.c (attr_is_ref): Rename to attr_form_is_ref.
5136 All uses updated.
5137 (attr_form_is_ref): Moved below attr_form_is_constant.
5138
5139 2013-07-29 Doug Evans <dje@google.com>
5140
5141 * main.c (captured_command_loop): Tweak comment.
5142
5143 * target.c (target_async_permitted_1): Fix comment.
5144
5145 * symtab.c (iterate_over_some_symtabs): Add comment.
5146
5147 * symtab.c (iterate_over_some_symtabs): Fix indentation.
5148
5149 2013-07-27 Yao Qi <yao@codesourcery.com>
5150
5151 * NEWS: Mention that GDBserver now supports hardware
5152 watchpoints on the MIPS GNU/Linux target.
5153
5154 2013-07-27 Yao Qi <yao@codesourcery.com>
5155
5156 * Makefile.in (HFILES_NO_SRCDIR): Add
5157 common/mips-linux-watch.h.
5158 (mips-linux-watch.o): New rule.
5159 * common/mips-linux-watch.c: New.
5160 * common/mips-linux-watch.h: New.
5161 * config/mips/linux.mh (NATDEPFILES): Add mips-linux-watch.o
5162 * mips-linux-nat.c: Include mips-linux-watch.h.
5163 (W_BIT, R_BIT, I_BIT, W_MASK, R_MASK, I_MASK, IRW_MASK): Move
5164 to common/mips-linux-watch.h.
5165 (MAX_DEBUG_REGISTER): Likewise.
5166 (enum pt_watch_style): Likewise.
5167 (struct mips32_watch_regs): Likewise.
5168 (struct mips64_watch_regs): Likewise.
5169 (struct pt_watch_regs): Likewise.
5170 (struct mips_watchpoint): Likewise.
5171 (mips_linux_watch_get_irw_mask): Move to
5172 common/mips-linux-watch.c.
5173 (get_reg_mask, mips_linux_watch_get_num_valid): Likewise.
5174 (mips_linux_watch_get_watchlo): Likewise.
5175 (mips_linux_watch_set_watchlo): Likewise.
5176 (mips_linux_watch_get_watchhi): Likewise.
5177 (mips_linux_watch_set_watchhi): Likewise.
5178 (mips_linux_read_watch_registers): Likewise.
5179 (mips_linux_watch_type_to_irw): Likewise.
5180 (mips_linux_stopped_data_address, fill_mask): Likewise.
5181 (mips_linux_watch_try_one_watch): Likewise.
5182 (mips_linux_watch_populate_regs): Likewise.
5183
5184 2013-07-27 Yao Qi <yao@codesourcery.com>
5185
5186 * mips-linux-nat.c (get_irw_mask): Rename to ...
5187 (mips_linux_watch_get_irw_mask): ... this. Rename parameter
5188 'set' to 'n'. Update function comment. All callers changed.
5189 (get_reg_mask): Rename parameter 'set' to 'n'. Update
5190 function comment. All callers changed.
5191 (get_num_valid): Rename to ...
5192 (mips_linux_watch_get_num_valid): ... this. Rename parameter
5193 'set' to 'n'. Update function comment. All callers changed.
5194 (get_watchlo): Rename to ...
5195 (mips_linux_watch_get_watchlo): ... this. Rename parameter
5196 'set' to 'n'. Update function comment. All callers changed.
5197 (set_watchlo): Rename to ...
5198 (mips_linux_watch_set_watchlo): ... this. Rename parameter
5199 'set' to 'n'. Update function comment. All callers changed.
5200 (get_watchhi): Rename to ...
5201 (mips_linux_watch_get_watchhi): ... this. Update function
5202 comment. All callers changed.
5203 (set_watchhi): Rename to ...
5204 (mips_linux_watch_set_watchhi): ... this. Update function
5205 comment. All callers changed.
5206 (mips_linux_read_watch_registers): Update function comment.
5207 Add new parameters 'lwpid', 'watch_readback', and
5208 'watch_readback_valid'. Update.
5209 (type_to_irw): Rename to ...
5210 (mips_linux_watch_type_to_irw): ... this. Update function
5211 comment. All callers changed.
5212 (fill_mask): Update function comment.
5213 (try_one_watch): Rename to ...
5214 (mips_linux_watch_try_one_watch): ... this. Change the type
5215 of parameter 'irw' from 'unsigned' to 'uint32_t'.
5216 (populate_regs_from_watches): Rename to ...
5217 (mips_linux_watch_populate_regs): ... this. Add parameter
5218 'current_watches'. All callers changed.
5219
5220 2013-07-27 Yao Qi <yao@codesourcery.com>
5221
5222 * mips-linux-nat.c (MAX_DEBUG_REGISTER): Move it earlier in
5223 the code.
5224 (PTRACE_SET_WATCH_REGS, enum pt_watch_style): Remove.
5225 (struct mips32_watch_regs, struct mips64_watch_regs): Remove.
5226 (struct pt_watch_regs): Likewise.
5227 [!PTRACE_GET_WATCH_REGS] (PTRACE_SET_WATCH_REGS): New macro.
5228 [!PTRACE_GET_WATCH_REGS] (enum pt_watch_style): New.
5229 [!PTRACE_GET_WATCH_REGS] (struct mips32_watch_regs): New.
5230 [!PTRACE_GET_WATCH_REGS] (struct mips64_watch_regs): New.
5231 [!PTRACE_GET_WATCH_REGS] (struct pt_watch_regs): New.
5232
5233 2013-07-27 Yao Qi <yao@codesourcery.com>
5234
5235 * breakpoint.h: Include break-common.h.
5236 (enum target_hw_bp_type): Move to ...
5237 * common/break-common.h: ... here. New.
5238
5239 2013-07-26 Cyril Nikolaev <cyril@nichtverstehen.de>
5240
5241 * inflow.c (terminal_init_inferior_with_pgrp): Save inferior
5242 process group regardless of having tty on stdin.
5243
5244 2013-07-25 Doug Evans <dje@google.com>
5245
5246 * linux-fork.h (detach_fork): Delete.
5247
5248 2013-07-25 Tom Tromey <tromey@redhat.com>
5249
5250 PR remote/15256, PR remote/15266:
5251 * bfd-target.c (target_bfd_reopen): Initialize to_magic.
5252 * monitor.c (monitor_detach): Use unpush_target.
5253 * remote-m32r-sdi.c (m32r_detach): Use unpush_target.
5254 * remote-mips.c (mips_detach): Use unpush_target. Don't
5255 call mips_close.
5256 * remote-sim.c (gdbsim_detach): Use unpush_target.
5257 * target.c (pop_target): Remove.
5258 (pop_all_targets_above): Don't call target_close.
5259 (target_close): Assert that the target is unpushed.
5260 * target.h (pop_target): Don't declare.
5261 * tracepoint.c (tfile_open): Use unpush_target.
5262
5263 2013-07-25 Tom Tromey <tromey@redhat.com>
5264
5265 * linux-thread-db.c (init_thread_db_ops): Call
5266 complete_target_initialization.
5267 (_initialize_thread_db): Don't call add_target.
5268 * target.c (complete_target_initialization): New function.
5269 (add_target_with_completer): Call it.
5270 * target.h (complete_target_initialization): Declare.
5271
5272 2013-07-25 Mark Kettenis <kettenis@gnu.org>
5273
5274 * hppa-tdep.h (enum hppa_regnum): Add members for all space registers.
5275 * hppaobsd-tdep.c (HPPAOBSD_SIZEOF_GREGS): Add comment.
5276 (HPPANBSD_SIZEOF_GREGS): New define.
5277 (hppaobsd_supply_gregset): Handle additional registers.
5278 * hppabsd-nat.c (hppabsd_gregset_supplies_p): Adjust to indicate
5279 we provide more registers now.
5280 (hppabsd_supply_gregset): Supply additional registers.
5281 (hppabsd_collect_gregset): Collect additional registers.
5282
5283 2013-07-25 Mark Kettenis <kettenis@gnu.org>
5284
5285 * hppabsd-tdep.c: Include "dwarf2-frame.h".
5286 (hppabsd_dwarf2_frame_init_reg): New function.
5287 (hppabsd_init_abi): Hook in the DWARF CFI frame unwinder.
5288
5289 2013-07-25 Andrew Burgess <aburgess@broadcom.com>
5290
5291 * mi/mi-main.c (output_register): Make MI 'r' format use standard
5292 'z' format code. Remove error for optimized out values, standard
5293 code will handle these fine.
5294
5295 2013-07-25 Andrew Burgess <aburgess@broadcom.com>
5296
5297 * NEWS: Mention new 'z' formatter.
5298 * printcmd.c (print_scalar_formatted): Add new 'z' formatter.
5299 (_initialize_printcmd): Mention 'z' formatter in help text of the
5300 'x' command.
5301
5302 2013-07-24 Maciej W. Rozycki <macro@codesourcery.com>
5303
5304 * mips-tdep.c (micromips_deal_with_atomic_sequence): Correct
5305 formatting.
5306
5307 2013-07-24 Sergio Durigan Junior <sergiodj@redhat.com>
5308
5309 * breakpoint.c (create_longjmp_master_breakpoint): Check if probe
5310 interface can evaluate arguments. Fallback to the old mode if it
5311 cannot.
5312 (create_exception_master_breakpoint): Likewise.
5313 * elfread.c (elf_can_evaluate_probe_arguments): New function.
5314 (struct sym_probe_fns elf_probe_fns): Export function above to the
5315 probe interface.
5316 * probe.c (can_evaluate_probe_arguments): New function.
5317 * probe.h (struct probe_ops) <can_evaluate_probe_arguments>: New
5318 function pointer.
5319 (can_evaluate_probe_arguments): New function prototype.
5320 * solib-svr4.c (svr4_create_solib_event_breakpoints): Check if
5321 probe interface can evaluate arguments. Fallback to the old mode
5322 if it cannot.
5323 * stap-probe.c (stap_get_probe_argument_count): Check if probe
5324 interface can evaluate arguments. Warning the user if it cannot.
5325 (stap_can_evaluate_probe_arguments): New function.
5326 (struct probe_ops stap_probe_ops): Export function above to the
5327 probe interface.
5328 * symfile.h (struct sym_probe_fns) <can_evaluate_probe_arguments>:
5329 New function pointer.
5330
5331 2013-07-24 Luis Machado <lgustavo@codesourcery.com>
5332
5333 * Makefile.in (SFILES): Add common/target-common.c.
5334 Add common/target-common.h to headers.
5335 (COMMON_OBS): Add target-common.o.
5336 (target-common.o): New target.
5337 * linux-nat.h (resume_kind): Move to common/target-common.h.
5338 * target.c (target_waitstatus_to_string): Move to
5339 common/target-common.c.
5340 * target.h: Include target-common.h.
5341 (target_waitkind): Move to common/target-common.h.
5342 (target_waitstatus): Likewise.
5343 (TARGET_WNOHANG): Likewise.
5344 * common/target-common.c: New file.
5345 * common/target-common.h: New file.
5346
5347 2013-07-24 Doug Evans <dje@google.com>
5348
5349 * dwarf2read.c (lookup_dwo_cutu): Change missing DWO complaint to
5350 a warning.
5351
5352 2013-07-23 Yao Qi <yao@codesourcery.com>
5353
5354 * i386-tdep.c (i386_in_stack_tramp_p): Remove unused
5355 parameter 'gdbarch'.
5356 (i386_stack_tramp_frame_sniffer): Caller update.
5357 * i386-linux-tdep.c (i386_linux_core_read_xcr0): Remove
5358 parameter 'gdbarch' and 'target'.
5359 (i386_linux_core_read_description): Caller update.
5360 * amd64-linux-tdep.c (amd64_linux_core_read_description):
5361 Likewise.
5362 * i386-linux-tdep.h (i386_linux_core_read_xcr0): Update
5363 declaration.
5364
5365 2013-07-23 Tom Tromey <tromey@redhat.com>
5366
5367 * dwarf2read.c (init_cutu_and_read_dies): Revert patch from
5368 2013-07-22.
5369
5370 2013-07-22 Doug Evans <dje@google.com>
5371
5372 * exec.h (remove_target_sections): Delete arg abfd.
5373 * exec.c (exec_close): Update call to remove_target_sections.
5374 (remove_target_sections): Delete arg abfd.
5375 * solib.c (update_solib_list): Ditto.
5376 (reload_shared_libraries_1): Ditto.
5377 (clear_solib): Ditto, and unconditionally call remove_target_sections.
5378 * target.h (struct target_section): Rename key to owner.
5379 All uses updated.
5380
5381 2013-07-22 Tom Tromey <tromey@redhat.com>
5382
5383 * solib-som.c (som_open_symbol_file_object): Call do_cleanups.
5384
5385 2013-07-22 Tom Tromey <tromey@redhat.com>
5386
5387 * dwarf2read.c (init_cutu_and_read_dies): Remove 'free_cu_cleanup'.
5388 Simplify cleanup handling.
5389
5390 2013-07-22 Tom Tromey <tromey@redhat.com>
5391
5392 * dwarf2read.c (dwarf_decode_line_header): Call do_cleanups
5393 on all return paths.
5394
5395 2013-07-22 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
5396
5397 * ppc-linux-nat.c (PPC_DEBUG_FEATURE_DATA_BP_DAWR): New define.
5398 (ppc_linux_region_ok_for_hw_watchpoint): Add checking to use the new
5399 DAWR interface for longer ranges hardware watchpoint (up to 512 bytes).
5400
5401 2013-07-22 Phil Muldoon <pmuldoon@redhat.com>
5402
5403 * top.c (print_gdb_version): Add help, apropos description and
5404 url to online documentation.
5405
5406 2013-07-19 Hui Zhu <hui@codesourcery.com>
5407
5408 PR gdb/15692
5409 * mi/mi-cmd-break.c (mi_argv_to_format): Handle double quotes.
5410
5411 2013-07-19 Yao Qi <yao@codesourcery.com>
5412
5413 * target.c (update_current_target): Change the default action
5414 of 'to_traceframe_info' from tcomplain to return_zero.
5415 * target.h (struct target_ops) <to_traceframe_info>: Add more
5416 comments.
5417 * valops.c (read_value_memory): Call
5418 traceframe_available_memory unconditionally.
5419
5420 2013-07-18 Yao Qi <yao@codesourcery.com>
5421
5422 * coffread.c (coff_symfile_read): Iterate over minimal symbols,
5423 if the name is prefixed by "__imp_" or "_imp_", look for minimal
5424 symbol without prefix. If found, set its type to
5425 'mst_solib_trampoline'.
5426
5427 2013-07-17 Doug Evans <dje@google.com>
5428
5429 * NEWS: Mention "set print raw frame-arguments".
5430 * gdbcmd.h (setprintrawlist, showprintrawlist): Declare.
5431 * stack.c (print_raw_frame_arguments): New static global.
5432 (print_frame_arg): Set opts.raw from print_raw_frame_arguments.
5433 (_initialize_stack): New command "set/show print raw frame-arguments".
5434 * valprint.c (setprintrawlist, showprintrawlist): New globals.
5435 (set_print_raw, show_print_raw): New functions.
5436 (_initialize_valprint): New prefix command "set/show print raw".
5437 * valprint.h (value_print_options): Improve comments.
5438
5439 * cli/cli-cmds.c (init_cmd_lists): Delete unnecessary initialization
5440 of all *list variables.
5441
5442 * gdbcmd.h (togglelist): Delete.
5443 * cli/cli-cmds.c (togglelist): Delete.
5444 (init_cmd_lists): Update.
5445 * cli/cli-cmds.h (togglelist): Delete.
5446
5447 2013-07-17 Tom Tromey <tromey@redhat.com>
5448
5449 * dwarf2read.c (dwarf2_per_objfile_free): Clear
5450 dwarf2_per_objfile.
5451
5452 2013-07-16 Doug Evans <dje@google.com>
5453
5454 * nto-tdep.c (nto_relocate_section_addresses): Update,
5455 target_section.bfd deleted.
5456 * ppc64-tdep.c (ppc64_convert_from_func_ptr_addr): Ditto.
5457 * s390-tdep.c (s390_load): Ditto.
5458 * solib-aix.c (solib_aix_relocate_section_addresses): Ditto.
5459
5460 2013-07-16 Andrew Burgess <aburgess@broadcom.com>
5461
5462 * common/format.c (parse_format_string): Add checks for NULL
5463 character before calling strchr.
5464
5465 2013-07-16 Doug Evans <dje@google.com>
5466
5467 * solist.h (target_so_ops.find_and_open_solib): Clarify usage of
5468 temp_pathname argument.
5469 * nto-tdep.c (nto_find_and_open_solib): Fix setting of temp_pathname
5470 when opening the file fails.
5471
5472 * target.h (struct target_section): Delete member bfd.
5473 All users updated to use the_bfd_section->owner instead.
5474 * exec.c (add_to_section_table): Assert bfd is expected value.
5475 Remove initialization of target_section.bfd.
5476 (remove_target_sections): Update.
5477 (section_table_available_memory): Update.
5478 (section_table_xfer_memory_partial): Update.
5479 (print_section_info): Update.
5480 (exec_set_section_address): Update.
5481 * record-full.c (record_full_core_xfer_partial): Update.
5482 * solib-svr4.c (svr4_relocate_section_addresses): Update.
5483 * solib-target.c (solib_target_relocate_section_addresses): Update.
5484 * symfile.c (build_section_addr_info_from_section_table): Update.
5485 * target.c (memory_xfer_live_readonly_partial): Update.
5486 (memory_xfer_partial_1): Update.
5487
5488 2013-07-15 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
5489
5490 * ppc-linux-nat.c: Since the new PowerPC specific ptrace interface is
5491 now available for embedded (BookE) and server (BookS) processors,
5492 correct mentions of 'booke' and adjust comments accordingly in order to
5493 avoid confusion. Rename struct 'booke_debug_info' to 'hwdebug_info'.
5494 (have_ptrace_booke_interface): Rename function and variable
5495 'have_ptrace_booke_interface' to 'have_ptrace_hwdebug_interface'.
5496 Rename struct 'booke_debug_info' to 'hwdebug_info'. Update all uses.
5497 (booke_cmp_hw_point): Rename function 'booke_cmp_hw_point' to
5498 'hwdebug_point_cmp'. Update all uses.
5499 (booke_find_thread_points_by_tid): Rename function
5500 'booke_find_thread_points_by_tid' to
5501 'hwdebug_find_thread_points_by_tid'. Update all uses.
5502 (booke_insert_point): Rename function 'booke_insert_point' to
5503 'hwdebug_insert_point'. Update all uses.
5504 (booke_remove_point): Rename function 'booke_remove_point' to
5505 'hwdebug_remove_point'. Update all uses.
5506
5507 2013-07-15 Maciej W. Rozycki <macro@codesourcery.com>
5508
5509 * mips-tdep.c (mips_gdbarch_init): Replace hardcoded magic
5510 numbers with enum values.
5511
5512 2013-07-15 Ali Anwar <ali_anwar@codesourcery.com>
5513
5514 PR threads/13217
5515 * thread.c (thread_apply_all_command): Check for valid threads
5516 and thread count.
5517 (thread_array_cleanup): New struct.
5518 (set_thread_refcount): New function.
5519
5520 2013-07-11 Andrew Burgess <aburgess@broadcom.com>
5521
5522 * infcmd.c (default_print_one_register_info): Reuse function
5523 print_hex_chars.
5524
5525 2013-07-10 Tom Tromey <tromey@redhat.com>
5526
5527 * Makefile.in (GDB_WARN_CFLAGS_NO_DEFS, ADA_EXP_C): New macros.
5528 (ada-exp.o): New target.
5529
5530 2013-07-10 Sergio Durigan Junior <sergiodj@redhat.com>
5531
5532 * mt-tdep.c (mt_registers_info): Call
5533 get_no_prettyformat_print_options instead of
5534 get_raw_print_options (regression by last patch from Doug
5535 Evans).
5536
5537 2013-07-09 Pedro Alves <palves@redhat.com>
5538
5539 Checked in by Joel Brobecker <brobecker@adacore.com>.
5540 * ada-lang.c (coerce_unspec_val_to_type): Use
5541 value_optimized_out_const.
5542 * value.c (value_optimized_out_const): New function.
5543 * value.h (value_optimized_out_const): New declaration.
5544
5545 2013-07-09 Doug Evans <dje@google.com>
5546
5547 * defs.h (enum val_prettyformat): Renamed from val_prettyprint.
5548 Enum values rename as well. All uses updated.
5549 * valprint.h (value_print_options): Rename member pretty to
5550 pretty format. Rename member prettyprint_arrays to
5551 prettyformat_arrays. Rename member prettyprint_structs to
5552 prettyformat_structs. All uses updated.
5553 (get_no_prettyformat_print_options): Renamed from
5554 get_raw_print_options.
5555 * valprint.c (get_no_prettyformat_print_options): Renamed from
5556 get_raw_print_options. All callers updated.
5557 (show_prettyformat_structs): Renamed from show_prettyprint_structs.
5558 All callers updated.
5559 (show_prettyformat_arrays): Renamed from show_prettyprint_arrays.
5560 All callers updated.
5561 (_initialize_valprint): Improve help text for "set print pretty" and
5562 "set print arrays".
5563
5564 2013-07-09 Andrew Burgess <aburgess@broadcom.com>
5565
5566 * value.c (value_bits_valid): Revert previous change, and change
5567 by Pedro on 2013-07-04, due to regressions in
5568 gdb.dwarf2/implptr.exp and gdb.dwarf2/pieces.exp.
5569
5570 2013-07-08 Andrew Burgess <aburgess@broadcom.com>
5571 Pedro Alves <palves@redhat.com>
5572
5573 * value.c (value_bits_valid): If the value is not lval_computed
5574 or has no check validity handler then the answer is the
5575 optimized_out flag, otherwise defer to the handler.
5576
5577 2013-07-06 Eli Zaretskii <eliz@gnu.org>
5578
5579 * top.c (print_gdb_configuration): Explain in output of
5580 --configuration what does "relocatable" mean.
5581
5582 * main.c (print_gdb_help): Regroup options in the --help text.
5583 See http://sourceware.org/ml/gdb-patches/2013-04/msg00362.html for
5584 the relevant discussions.
5585
5586 2013-07-06 Yao Qi <yao@codesourcery.com>
5587
5588 * breakpoint.h (struct breakpoint_ops) <create_breakpoints_sal>:
5589 Remove parameter 'lsal'.
5590 * breakpoint.c (create_breakpoint): Move local variable 'lsal'
5591 to inner block. Caller update.
5592 (base_breakpoint_create_breakpoints_sal): Update.
5593 (bkpt_create_breakpoints_sal): Likewise.
5594 (tracepoint_create_breakpoints_sal): Likewise.
5595 (strace_marker_create_breakpoints_sal): Get 'lsal' from the
5596 element 0 of vector 'canonical->sals'.
5597
5598 2013-07-05 Luis Machado <lgustavo@codesourcery.com>
5599
5600 * rs6000-tdep.c (rs6000_stab_reg_to_regnum): Return the real
5601 register number instead of the pseudo register one.
5602 (rs6000_dwarf2_reg_to_regnum): Likewise.
5603
5604 2013-07-04 Pedro Alves <palves@redhat.com>
5605
5606 * findvar.c (value_of_register): Use allocate_optimized_out_value
5607 if the register has been optimized out, instead of
5608 set_value_optimized_out.
5609 * frame-unwind.c (frame_unwind_got_optimized): Use
5610 allocate_optimized_out_value.
5611
5612 2013-07-04 Pedro Alves <palves@redhat.com>
5613
5614 * value.c (value_bits_valid): If the value is not lval_computed,
5615 or doesn't have a check_validity hook, assume the value is entirely
5616 valid.
5617
5618 2013-07-04 Andrew Burgess <aburgess@broadcom.com>
5619
5620 * stack.c (read_frame_arg): No longer fetch lazy values.
5621 * value.c (value_optimized_out): If the value is not already
5622 marked optimized out, and is lazy then fetch it.
5623 (value_primitive_field): Move optimized out check to later in the
5624 function, after we have loaded any lazy values.
5625 (value_fetch_lazy): Use optimized out flag directly rather than
5626 calling optimized_out method.
5627
5628 2013-07-04 Andrew Burgess <aburgess@broadcom.com>
5629
5630 * valops.c: Don't include "user-regs.h".
5631 (value_fetch_lazy): Moved to value.c.
5632 * value.c: Include "user-regs.h".
5633 (value_fetch_lazy): Moved from valops.c.
5634
5635 2013-07-04 Yao Qi <yao@codesourcery.com>
5636
5637 Revert:
5638 2013-06-27 Yao Qi <yao@codesourcery.com>
5639
5640 * common/create-version.sh: Update comments. Handle the case
5641 that TARGET_ALIAS is empty.
5642
5643 2013-07-03 Pedro Alves <palves@redhat.com>
5644
5645 * Makefile.in (config.status): Depend on development.sh.
5646 (aclocal_m4_deps): Add libmcheck.m4.
5647 * acinclude.m4: Include libmcheck.m4.
5648 * configure.ac: Source development.sh instead of setting
5649 'development' here. --enable-libmcheck/--disable-libmcheck code
5650 factored out to GDB_AC_LIBMCHECK. Run it.
5651 * development.sh: New file.
5652 * libmcheck.m4: New file.
5653 * configure: Regenerate.
5654
5655 2013-07-02 Tom Tromey <tromey@redhat.com>
5656
5657 * contrib/ari/update-web-ari.sh: Update for version.in change.
5658
5659 2013-07-02 Tom Tromey <tromey@redhat.com>
5660
5661 * common/ptid.h: Comment fixes.
5662
5663 2013-07-01 Tom Tromey <tromey@redhat.com>
5664
5665 * dwarf2read.c (dwarf2_get_dwz_file): Return NULL if
5666 .gnu_debugaltlink not found. Use bfd_get_alt_debug_link_info.
5667 (dwarf2_read_index, create_all_comp_units): Update.
5668
5669 2013-07-01 Tom Tromey <tromey@redhat.com>
5670
5671 * configure.ac (build_warnings): Add -Wold-style-definition.
5672 * configure: Rebuild.
5673 * machoread.c (_initialize_machoread): Use "(void)".
5674 * macrocmd.c (macro_inform_no_debuginfo): Fix formatting;
5675 use "(void)".
5676
5677 2013-07-01 Tom Tromey <tromey@redhat.com>
5678
5679 * configure.ac (build_warnings): Add -Wold-style-declaration.
5680 * configure: Rebuild.
5681 * dsrec.c (make_srec): Use "static const", not "const static".
5682 * h8300-tdep.c (h8300_breakpoint_from_pc): Use "static const",
5683 not "const static".
5684 * mi/mi-parse.c (mi_no_values, mi_simple_values, mi_all_values):
5685 Use "static const", not "const static".
5686 * mn10300-tdep.c (mn10300_breakpoint_from_pc): Use "static const",
5687 not "const static".
5688 * moxie-tdep.c (moxie_breakpoint_from_pc): Use "static const",
5689 not "const static".
5690 * rs6000-tdep.c (rs6000_breakpoint_from_pc): Use "static const",
5691 not "const static".
5692 * v850-tdep.c (v850_breakpoint_from_pc): Use "static const",
5693 not "const static".
5694 (v850_dbtrap_breakpoint_from_pc): Likewise.
5695 * xstormy16-tdep.c (xstormy16_breakpoint_from_pc): Use "static const",
5696 not "const static".
5697
5698 2013-07-01 Tom Tromey <tromey@redhat.com>
5699
5700 * configure.ac (build_warnings): Add -Wmissing-parameter-type.
5701 * configure: Rebuild.
5702
5703 2013-07-01 Pedro Alves <palves@redhat.com>
5704
5705 * defs.h: Include "pathmax.h".
5706 * utils.c: Don't include sys/param.h.
5707 (gdb_realpath): Remove code that checks for MAXPATHLEN.
5708 * solib-ia64-hpux.c (ia64_hpux_handle_load_event): Use PATH_MAX
5709 instead of MAXPATHLEN.
5710 * solib-sunos.c: Don't include sys/param.h.
5711 * xcoffread.c: Don't include sys/param.h.
5712 * bsd-kvm.c: Don't include sys/param.h.
5713 * darwin-nat.c: Don't include sys/param.h.
5714 (darwin_pid_to_exec_file): Use PATH_MAX instead of MAXPATHLEN.
5715 * darwin-nat-info.c: Don't include sys/param.h.
5716 * fbsd-nat.c (fbsd_pid_to_exec_file): Use PATH_MAX instead of
5717 MAXPATHLEN.
5718 * i386obsd-nat.c: Don't include sys/param.h.
5719 * inf-child.c: Don't include sys/param.h.
5720 (inf_child_fileio_readlink): Use PATH_MAX instead of MAXPATHLEN.
5721 * linux-fork.c: Don't include sys/param.h.
5722 (fork_save_infrun_state): Use PATH_MAX instead of MAXPATHLEN.
5723 * linux-nat.c: Don't include sys/param.h.
5724 (linux_child_pid_to_exec_file, linux_proc_pending_signals)
5725 (linux_proc_pending_signals): Use PATH_MAX instead of MAXPATHLEN.
5726 * m68klinux-nat.c: Don't include sys/param.h.
5727 * nbsd-nat.c: Don't include sys/param.h.
5728 (nbsd_pid_to_exec_file): Use PATH_MAX instead of MAXPATHLEN.
5729 * ppc-linux-nat.c: Don't include sys/param.h.
5730 * rs6000-nat.c: Don't include sys/param.h.
5731 * spu-linux-nat.c. Don't include sys/param.h.
5732 * windows-nat.c: Don't include sys/param.h.
5733 * xtensa-linux-nat.c: Don't include sys/param.h.
5734 * config/i386/nm-fbsd.h: Don't include sys/param.h.
5735
5736 2013-07-01 Pedro Alves <palves@redhat.com>
5737
5738 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add pathmax.
5739 * gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/pathmax.m4.
5740 * gnulib/aclocal.m4: Regenerate.
5741 * gnulib/config.in: Regenerate.
5742 * gnulib/configure: Regenerate.
5743 * gnulib/import/pathmax.h: New file.
5744 * gnulib/import/Makefile.am: Regenerate.
5745 * gnulib/import/Makefile.in: Regenerate.
5746 * gnulib/import/m4/gnulib-cache.m4: Regenerate.
5747 * gnulib/import/m4/gnulib-comp.m4: Regenerate.
5748 * gnulib/import/m4/pathmax.m4: New file.
5749
5750 2013-07-01 Pedro Alves <palves@redhat.com>
5751
5752 * configure.ac (GDBINIT): Define, depending on host.
5753 * go32-nat.c (init_go32_ops): Don't override gdbinit here.
5754 * top.c (PATH_MAX): Delete fallback definition.
5755 (GDBINIT_FILENAME): Delete.
5756 (gdbinit): Reimplement as const char array set to the GDBINIT
5757 string constant.
5758 * top.h (gdbinit): Make const.
5759 * configure, config.in: Regenerate.
5760
5761 2013-07-01 Pedro Alves <palves@redhat.com>
5762
5763 * cli/cli-cmds.c (source_script): Make 'file' parameter const.
5764 * cli/cli-cmds.h (source_script): Likewise.
5765 * exceptions.c (catch_command_errors_const): New function.
5766 * exceptions.h (catch_command_errors_const): Declare.
5767 * main.c (get_init_files): Make parameters const, and adjust.
5768 (captured_main): Make 'system_gdbinit', 'home_gdbinit' and
5769 'local_gdbinit' locals const. Adjust to use
5770 catch_command_errors_const.
5771 (print_gdb_help): Make 'system_gdbinit', 'home_gdbinit' and
5772 'local_gdbinit' locals const.
5773
5774 2013-07-01 Pedro Alves <palves@redhat.com>
5775
5776 * defs.h: Don't check HAVE_UNISTD_H before including <unistd.h>.
5777 (STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO): Delete.
5778 * tracepoint.c: Don't check HAVE_UNISTD_H before including
5779 <unistd.h>.
5780
5781 2013-07-01 Pedro Alves <palves@redhat.com>
5782
5783 Import the "unistd" gnulib module.
5784 * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add "unistd".
5785 * gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/off_t.m4,
5786 import/m4/ssize_t.m4, import/m4/sys_types_h.m4 and
5787 import/m4/unistd_h.m4.
5788 * gnulib/aclocal.m4: Renenerate.
5789 * gnulib/config.in: Renenerate.
5790 * gnulib/configure: Renenerate.
5791 * gnulib/import/Makefile.am: Renenerate.
5792 * gnulib/import/Makefile.in: Renenerate.
5793 * gnulib/import/m4/gnulib-cache.m4: Renenerate.
5794 * gnulib/import/m4/gnulib-comp.m4: Renenerate.
5795 * gnulib/import/m4/off_t.m4: New file.
5796 * gnulib/import/m4/ssize_t.m4: New file.
5797 * gnulib/import/m4/sys_types_h.m4: New file.
5798 * gnulib/import/m4/unistd_h.m4: New file.
5799 * gnulib/import/sys_types.in.h: New file.
5800 * gnulib/import/unistd.c: New file.
5801 * gnulib/import/unistd.in.h: New file.
5802
5803 2013-07-01 Pedro Alves <palves@redhat.com>
5804
5805 * utils.c <pathconf/_PC_PATH_MAX use>: Check if _PC_PATH_MAX is
5806 defined instead of checking HAVE_UNISTD_H.
5807
5808 2013-07-01 Pedro Alves <palves@redhat.com>
5809
5810 Reimport gnulib from scratch.
5811 * gnulib/Makefile.in (aclocal_m4_deps): Remove reference to
5812 import/m4/onceonly.m4.
5813 * gnulib/aclocal.m4: Renegerate.
5814 * gnulib/config.in: Renegerate.
5815 * gnulib/configure: Renegerate.
5816 * gnulib/import/Makefile.in: Renegerate.
5817 * gnulib/import/extra/update-copyright: Renegerate.
5818 * gnulib/import/m4/onceonly.m4: Delete.
5819
5820 2013-07-01 Pedro Alves <palves@redhat.com>
5821
5822 * tui/tui-regs.c (pagination_enabled): Delete declaration.
5823
5824 2013-06-30 Jan Kratochvil <jan.kratochvil@redhat.com>
5825
5826 Code cleanup.
5827 * remote.c (async_remote_interrupt_twice): Make it static.
5828 * remote.h (async_remote_interrupt_twice): Remove the declaration.
5829
5830 2013-06-29 Sergio Durigan Junior <sergiodj@redhat.com>
5831
5832 * ia64-linux-tdep.c: Include <ctype.h>.
5833 (ia64_linux_stap_is_single_operand): New function.
5834 (ia64_linux_init_abi): Initialize SystemTap related attributes.
5835
5836 2013-06-28 Tom Tromey <tromey@redhat.com>
5837
5838 * Makefile.in (version.c): Use version.in, not
5839 common/version.in.
5840 * common/create-version.sh: Likewise.
5841 * common/version.in: Move...
5842 * version.in: ...here.
5843
5844 2013-06-28 Pedro Alves <palves@redhat.com>
5845
5846 * infrun.c (set_observer_mode): Don't declare pagination_enabled
5847 here.
5848 * utils.h (pagination_enabled): Declare.
5849
5850 2013-06-28 Pedro Alves <palves@redhat.com>
5851
5852 * infrun.c (non_stop, non_stop_1, set_non_stop, show_non_stop):
5853 Move higher up in file.
5854
5855 2013-06-28 Tom Tromey <tromey@redhat.com>
5856
5857 * tracepoint.c (deprecated_readline_begin_hook)
5858 (deprecated_readline_hook, deprecated_readline_end_hook): Don't
5859 declare.
5860
5861 2013-06-28 Pedro Alves <palves@redhat.com>
5862
5863 PR tui/14880
5864 * tui/tui-regs.c (tui_get_register): Fetch value contents before
5865 checking if they're available.
5866 * value.c (value_available_contents_eq): Change comment.
5867 * value.h (value_available_contents_eq): Expand comment.
5868
5869 2013-06-27 Tom Tromey <tromey@redhat.com>
5870
5871 * target.c (find_run_target): Remove.
5872 * target.h (find_run_target): Remove.
5873
5874 2013-06-27 Tom Tromey <tromey@redhat.com>
5875
5876 * corelow.c (core_gdbarch): Now static.
5877
5878 2013-06-27 Tom Tromey <tromey@redhat.com>
5879
5880 * target.c (target_struct_index): Remove.
5881
5882 2013-06-27 Pedro Alves <palves@redhat.com>
5883
5884 * infrun.c: Remove comment describing the 'stepping over runtime
5885 loader dynamic symbol resolution code' mechanism; moved to
5886 gdbint.texinfo.
5887
5888 2013-06-27 Pedro Alves <palves@redhat.com>
5889
5890 * exceptions.c (catch_command_errors): Remove spurious space.
5891 * exceptions.h (catch_command_errors): Second parameter is "arg",
5892 not "command".
5893
5894 2013-06-27 Yao Qi <yao@codesourcery.com>
5895
5896 * common/create-version.sh: Update comments. Handle the case
5897 that TARGET_ALIAS is empty.
5898
5899 2013-06-26 Pedro Alves <palves@redhat.com>
5900
5901 * infrun.c (SOLIB_IN_DYNAMIC_LINKER): Delete macro and describing
5902 comment.
5903
5904 2013-06-26 Pedro Alves <palves@redhat.com>
5905
5906 * infrun.c: Update comments on stepping over runtime loader
5907 dynamic symbol resolution code.
5908
5909 2013-06-26 Sergio Durigan Junior <sergiodj@redhat.com>
5910
5911 * ax-gdb.h (union exp_element): Forward declare.
5912 * parser-defs.h: Include expression.h.
5913
5914 2013-06-26 Maciej W. Rozycki <macro@codesourcery.com>
5915
5916 * mips-tdep.c (fetch_mips_16): Use unmake_compact_addr.
5917
5918 2013-06-26 Dmitry Kozlov <ddk@codesourcery.com>
5919
5920 * tracepoint.c (trace_save): Extend tsave to save starttime, stoptime.
5921
5922 2013-06-26 Dmitry Kozlov <ddk@codesourcery.com>
5923
5924 Fix trace-status to output proper start-time and stop-time.
5925 * tracepoint.c (trace_status_command): Fix type of printf arg to
5926 prevent improper type conversion.
5927 (trace_status_mi): Likewise.
5928
5929 2013-06-26 Maciej W. Rozycki <macro@codesourcery.com>
5930
5931 * mips-tdep.c (mips_next_pc): Fix a typo.
5932
5933 2013-06-26 Maciej W. Rozycki <macro@codesourcery.com>
5934
5935 * mips-tdep.c (micromips_scan_prologue): Fix a typo.
5936
5937 2013-06-26 Pedro Alves <pedro@codesourcery.com>
5938 Yao Qi <yao@codesourcery.com>
5939
5940 * mi/mi-cmds.c (mi_cmds): Register -trace-frame-collected.
5941 * mi/mi-cmds.h (mi_cmd_trace_frame_collected): Declare.
5942 * mi/mi-main.c (print_variable_or_computed): New function.
5943 (mi_cmd_trace_frame_collected): New function.
5944 * tracepoint.c (find_trace_state_variable_by_number): New.
5945 (struct traceframe_info): Move to tracepoint.h
5946 (struct collection_list): Likewise.
5947 (do_collect_symbol): Include locals and arguments in the
5948 collected variables list.
5949 (clear_collection_list): Clear wholly collected variables list
5950 and computed variables list.
5951 (append_exp): New function.
5952 (encode_actions_1): Include variables in the wholly
5953 collected variables list. Include memory ranges and
5954 full-fledged expressions in the computed expressions list.
5955 (encode_actions): Move some code to ...
5956 Return the cleanup chain.
5957 (encode_actions_rsp): ... here. New function.
5958 (get_traceframe_location, get_traceframe_info): Remove static.
5959 * tracepoint.h (struct memrange): Moved from tracepoint.c.
5960 (struct collection_list): Moved from tracepoint.c. Add two
5961 new fields 'wholly_collected' and 'computed'.
5962 (find_trace_state_variable_by_number): Declare.
5963 (encode_actions): Adjust declaration.
5964 (encode_actions_rsp): Declare.
5965 (get_traceframe_info, get_traceframe_location): Declare.
5966
5967 * NEWS: Mention new MI command -trace-frame-collected.
5968
5969 2013-06-26 Pedro Alves <pedro@codesourcery.com>
5970 Yao Qi <yao@codesourcery.com>
5971
5972 * ctf.c (ctf_traceframe_info): Push trace state variables
5973 present in the trace data into the traceframe info object.
5974 * breakpoint.c (DEF_VEC_I): Remove.
5975 * common/filestuff.c (DEF_VEC_I): Likewise.
5976 * dwarf2loc.c (DEF_VEC_I): Likewise.
5977 * mi/mi-main.c (DEF_VEC_I): Likewise.
5978 * common/gdb_vecs.h (DEF_VEC_I): Define vector for int.
5979 * features/traceframe-info.dtd: Add tvar element and its
5980 attributes.
5981 * tracepoint.c (free_traceframe_info): Free vector 'tvars'.
5982 (build_traceframe_info): Push trace state variables present in
5983 the trace data into the traceframe info object.
5984 (traceframe_info_start_tvar): New function.
5985 (tvar_attributes): New.
5986 (traceframe_info_children): Add "tvar" element.
5987 * tracepoint.h (struct traceframe_info) <tvars>: New field.
5988
5989 * NEWS: Mention the change in GDB and GDBserver.
5990
5991 2013-06-26 Pedro Alves <pedro@codesourcery.com>
5992 Yao Qi <yao@codesourcery.com>
5993
5994 * tracepoint.c (trace_dump_command): Move code to ...
5995 (get_traceframe_location): ... here. New.
5996
5997 2013-06-26 Pedro Alves <pedro@codesourcery.com>
5998 Yao Qi <yao@codesourcery.com>
5999
6000 * tracepoint.c (trace_dump_command): GDB emits an error
6001 instead of a warning when a traceframe is not selected.
6002
6003 2013-06-26 Pedro Alves <pedro@codesourcery.com>
6004 Yao Qi <yao@codesourcery.com>
6005
6006 * tracepoint.c (tracepoint_list, stepping_list): Remove.
6007 (clear_collection_list): Free fields 'aexpre_list' and 'list'
6008 in collection_list.
6009 (do_clear_collection_list, init_collection_list): New.
6010 (encode_actions): Add local variables 'tracepoint_list' and
6011 'stepping_list'. Call init_collection_list and make cleanup
6012 which calls do_clear_collection_list. Don't call
6013 clear_collection_list.
6014 (_initialize_tracepoint): Delete references to
6015 'tracepoint_list' and 'stepping_list'.
6016
6017 2013-06-25 Tom Tromey <tromey@redhat.com>
6018
6019 * common/create-version.sh (date): Use "$", not "$$" in sed
6020 expression.
6021
6022 2013-06-25 Kevin Buettner <kevinb@redhat.com>
6023
6024 * NEWS (New targets): Add entry for TI MSP430.
6025
6026 2013-06-25 Yao Qi <yao@codesourcery.com>
6027
6028 * remote.c (remote_start_remote): Move code to upload tsv
6029 earlier.
6030
6031 2013-06-25 Yao Qi <yao@codesourcery.com>
6032 Hui Zhu <hui@codesourcery.com>
6033 Pedro Alves <palves@redhat.com>
6034
6035 PR breakpoints/15075
6036 PR breakpoints/15434
6037 * breakpoint.c (bpstat_stop_status): Call
6038 b->ops->after_condition_true.
6039 (update_dprintf_command_list): Don't append "continue" command
6040 to the command list of dprintf breakpoint.
6041 (base_breakpoint_after_condition_true): New function.
6042 (base_breakpoint_ops): Add base_breakpoint_after_condition_true.
6043 (dprintf_after_condition_true): New function.
6044 (initialize_breakpoint_ops): Set dprintf_after_condition_true.
6045 * breakpoint.h (breakpoint_ops): Add after_condition_true.
6046
6047 2013-06-24 Kevin Buettner <kevinb@redhat.com>
6048
6049 * Makefile.in (ALL_TARGET_OBS): Add msp430-tdep.o.
6050 (ALLDEPFILES): Add msp430-tdep.c.
6051 * configure.tgt (msp430*-*-elf): New target.
6052 * msp430-tdep.c: New file.
6053
6054 2013-06-24 Maciej W. Rozycki <macro@codesourcery.com>
6055
6056 * mips-tdep.c (mips_elf_make_msymbol_special): Handle MIPS16 and
6057 microMIPS synthetic symbols.
6058
6059 2013-06-24 Maciej W. Rozycki <macro@codesourcery.com>
6060
6061 * objfiles.h (pc_in_section): New prototype.
6062 (in_plt_section): Remove name argument, replace prototype with
6063 static inline function.
6064 * mips-tdep.h: Include "objfiles.h".
6065 (in_mips_stubs_section): New function.
6066 * hppa-tdep.h (gdbarch_tdep): Remove name argument of
6067 in_solib_call_trampoline member.
6068 (hppa_in_solib_call_trampoline): Remove name argument.
6069 * objfiles.c (pc_in_section): New function.
6070 (in_plt_section): Remove function.
6071 * mips-linux-tdep.c: Include "objfiles.h".
6072 (mips_linux_in_dynsym_stub): Call in_mips_stubs_section. Remove
6073 name argument. Return 1 rather than the low 16-bit halfword of
6074 any instruction examined.
6075 (mips_linux_in_dynsym_resolve_code): Update
6076 mips_linux_in_dynsym_stub call accordingly.
6077 * mips-tdep.c (mips_stub_frame_sniffer): Use in_mips_stubs_section
6078 rather than an equivalent hand-coded sequence.
6079 * hppa-hpux-tdep.c (in_opd_section): Remove function.
6080 (hppa32_hpux_in_solib_call_trampoline): Remove name argument.
6081 (hppa64_hpux_in_solib_call_trampoline): Likewise.
6082 (hppa64_hpux_find_global_pointer): Use pc_in_section rather than
6083 in_opd_section.
6084 * hppa-tdep.c (hppa_stub_unwind_sniffer): Remove name argument
6085 on call to tdep->in_solib_call_trampoline.
6086 (hppa_in_solib_call_trampoline): Remove name argument, update
6087 according to in_plt_section change.
6088 (hppa_skip_trampoline_code): Update according to in_plt_section
6089 change.
6090 * aarch64-tdep.c (aarch64_stub_unwind_sniffer): Likewise.
6091 * arm-symbian-tdep.c (arm_symbian_skip_trampoline_code):
6092 Likewise.
6093 * arm-tdep.c (arm_stub_unwind_sniffer): Likewise.
6094 * hppa-linux-tdep.c (hppa_linux_find_global_pointer): Likewise.
6095 * hppabsd-tdep.c (hppabsd_find_global_pointer): Likewise.
6096 * nios2-tdep.c (nios2_stub_frame_sniffer): Likewise.
6097 * nto-tdep.c (nto_relocate_section_addresses): Likewise.
6098 * s390-tdep.c (s390_stub_frame_sniffer): Likewise.
6099 * sh-tdep.c (sh_stub_unwind_sniffer): Likewise.
6100 * solib-dsbt.c (dsbt_in_dynsym_resolve_code): Likewise.
6101 * solib-frv.c (frv_in_dynsym_resolve_code): Likewise.
6102 * solib-svr4.c (svr4_in_dynsym_resolve_code): Likewise.
6103 * solib-target.c (solib_target_in_dynsym_resolve_code): Likewise.
6104 * sparc-tdep.c (sparc_analyze_prologue): Likewise.
6105 * tic6x-tdep.c (tic6x_stub_unwind_sniffer): Likewise.
6106
6107 2013-06-24 Joel Brobecker <brobecker@adacore.com>
6108
6109 * common/create-version.sh: Fix expansion of $host_alias
6110 and $target_alias in generation of HOST_NAME and TARGET_NAME
6111 (resp.).
6112
6113 2013-06-24 Tom Tromey <tromey@redhat.com>
6114
6115 * common/create-version.sh: New file.
6116 * Makefile.in (version.c): Use bfd/version.h, common/version.in,
6117 create-version.sh.
6118 (HFILES_NO_SRCDIR): Use common/version.h.
6119 * version.in: Move to ...
6120 * common/version.in: ... here. Replace date with "DATE".
6121 * version.h: Move to ...
6122 * common/version.h: ... here.
6123
6124 2013-06-21 Joel Brobecker <brobecker@adacore.com>
6125
6126 * gdb/gnulib/Makefile.in: Update date in copyright header.
6127 * gdb/gnulib/configure.ac: Ditto.
6128 * gdb/gnulib/update-gnulib.sh: Ditto.
6129
6130 2013-06-21 Joel Brobecker <brobecker@adacore.com>
6131
6132 * copyright.py (EXCLUDE_LIST): Replace "gdb/gnulib" by
6133 "gdb/gnulib/import".
6134
6135 2013-06-21 Will Newton <will.newton@linaro.org>
6136
6137 * doublest.c (ldfrexp): Remove function.
6138 (convert_doublest_to_floatformat): Call frexpl instead of
6139 ldfrexp.
6140
6141 2013-06-21 Will Newton <will.newton@linaro.org>
6142
6143 * gnulib/update-gnulib.sh(IMPORTED_GNULIB_MODULES): Add frexpl.
6144 * gnulib/aclocal.m4: Regenerate.
6145 * gnulib/config.in: Regenerate.
6146 * gnulib/configure: Regenerate.
6147 * gnulib/import/Makefile.am: Update.
6148 * gnulib/import/Makefile.in: Update.
6149 * gnulib/import/m4/gnulib-cache.m4: Update.
6150 * gnulib/import/m4/gnulib-comp.m4: Update.
6151 * gnulib/import/float+.h: Import.
6152 * gnulib/import/float.c: Import.
6153 * gnulib/import/float.in.h: Import.
6154 * gnulib/import/fpucw.h: Import.
6155 * gnulib/import/frexp.c: Import.
6156 * gnulib/import/frexpl.c: Import.
6157 * gnulib/import/isnan.c: Import.
6158 * gnulib/import/isnand-nolibm.h: Import.
6159 * gnulib/import/isnand.c: Import.
6160 * gnulib/import/isnanl-nolibm.h: Import.
6161 * gnulib/import/isnanl.c: Import.
6162 * gnulib/import/itold.c: Import.
6163 * gnulib/import/m4/exponentd.m4: Import.
6164 * gnulib/import/m4/exponentl.m4: Import.
6165 * gnulib/import/m4/float_h.m4: Import.
6166 * gnulib/import/m4/fpieee.m4: Import.
6167 * gnulib/import/m4/frexp.m4: Import.
6168 * gnulib/import/m4/frexpl.m4: Import.
6169 * gnulib/import/m4/isnand.m4: Import.
6170 * gnulib/import/m4/isnanl.m4: Import.
6171 * gnulib/import/m4/math_h.m4: Import.
6172 * gnulib/import/math.c: Import.
6173 * gnulib/import/math.in.h: Import.
6174
6175 2013-06-21 Jan Kratochvil <jan.kratochvil@redhat.com>
6176
6177 * common/linux-btrace.c (cpu_supports_btrace): Remove variable vendor,
6178 replace strcmp with signature_INTEL_ebx, signature_INTEL_ecx and
6179 signature_INTEL_edx comparisons.
6180
6181 2013-06-20 Doug Evans <dje@google.com>
6182
6183 symtab/15652
6184 * dwarf2read.c (try_open_dwop_file): New arg search_cwd.
6185 All callers updated.
6186 (open_dwp_file): If we can't find the dwp file, search the basename
6187 in debug-file-directory.
6188
6189 * dwarf2read.c (struct dwp_file): Fix comment.
6190 (open_and_init_dwp_file): Set dwp_file->name to bfd's file name.
6191
6192 * source.c (openp): Document OPF_TRY_CWD_FIRST+OPF_SEARCH_IN_PATH
6193 better.
6194
6195 2013-06-20 Yao Qi <yao@codesourcery.com>
6196
6197 * breakpoint.c (create_breakpoint): Fix code indentation.
6198
6199 2013-06-20 Yao Qi <yao@codesourcery.com>
6200
6201 * breakpoint.c (create_breakpoints_sal_default): Remove
6202 parameter 'lsal'. Update declaration.
6203 (bkpt_create_breakpoints_sal): Caller update.
6204 (tracepoint_create_breakpoints_sal): Likewise.
6205
6206 2013-06-20 Pedro Alves <pedro@codesourcery.com>
6207 Yao Qi <yao@codesourcery.com>
6208
6209 * NEWS: Mention the new option '--skip-unavailable' of command
6210 -data-list-register-values.
6211 * mi/mi-main.c (mi_cmd_data_list_register_values): Accept the
6212 --skip-unavailable option. Adjust to use output_register.
6213 (output_register): Add new 'skip_unavailable' parameter.
6214 Handle it.
6215
6216 2013-06-19 Mike Frysinger <vapier@gentoo.org>
6217
6218 * Makefile.in (HFILES_NO_SRCDIR): Add common/i386-cpuid.h and
6219 common/i386-gcc-cpuid.h.
6220 * common/i386-cpuid.h: New wrapper header around i386-gcc-cpuid.h.
6221 * common/i386-gcc-cpuid.h: Rename from testsuite/gdb.arch/i386-cpuid.h.
6222 Copy the latest version from upstream gcc.
6223 * common/linux-btrace.c: Include i386-cpuid.h.
6224 (intel_supports_btrace): Delete x86 ifdefs and replace inline asm with
6225 call to i386_cpuid.
6226 (cpu_supports_btrace): Likewise.
6227 * go32-nat.c: Include i386-cpuid.h.
6228 (go32_sysinfo): Add (disabled) calls to i386_cpuid with comments.
6229
6230 2013-06-19 Doug Evans <dje@google.com>
6231
6232 * symfile.c (symfile_bfd_open): Delete unnecessary declaration.
6233 (get_section_index): Ditto.
6234
6235 2013-06-19 Tom Tromey <tromey@redhat.com>
6236
6237 * breakpoint.c (_initialize_breakpoint): Remove trailing \n from
6238 "dprintf" help.
6239
6240 2013-06-18 Doug Evans <dje@google.com>
6241
6242 * dwarf2read.c (dw2_symtab_iter_next): Check value of cu_index
6243 before using it.
6244 (dw2_expand_symtabs_matching): Fix symbol kind validity check.
6245 Move test of cu_index closer to use. Print complaint if cu_index
6246 is bad.
6247
6248 2013-06-18 Joel Brobecker <brobecker@adacore.com>
6249
6250 * machoread.c (oso_vector): Delete this global.
6251 (macho_register_oso): Add new parameter "oso_vector_ptr".
6252 Use it instead of the "oso_vector" global.
6253 (macho_symtab_read, macho_symfile_read_all_oso): Likewise.
6254 (macho_symfile_read): Use a local oso_vector, to be free'ed
6255 at the end of this function, in place of the old "oso_vector"
6256 global. Update various function calls accordingly. Use one
6257 single cleanup chain for the entire function.
6258
6259 2013-06-18 Joel Brobecker <brobecker@adacore.com>
6260
6261 * dwarf2read.c (dwarf2_per_objfile_free): Replace uses of
6262 DWARF2_PER_OBJFILE by uses of DATA instead.
6263
6264 2013-06-18 Tom Tromey <tromey@redhat.com>
6265
6266 * break-catch-sig.c (signal_catchpoint_explains_signal): Add 'sig'
6267 argument.
6268 * breakpoint.c (bpstat_explains_signal): Add 'sig' argument.
6269 Special case signals other than GDB_SIGNAL_TRAP.
6270 (explains_signal_watchpoint): New function.
6271 (base_breakpoint_explains_signal): Add 'sig' argument.
6272 (initialize_breakpoint_ops): Set 'explains_signal' method for
6273 watchpoints.
6274 * breakpoint.h (struct breakpoint_ops) <explains_signal>: Add
6275 signal argument.
6276 (bpstat_explains_signal): Likewise.
6277 * infrun.c (handle_syscall_event, handle_inferior_event): Update.
6278
6279 2013-06-18 Tom Tromey <tromey@redhat.com>
6280
6281 * python/py-inferior.c (gdbpy_selected_inferior): Don't incref.
6282
6283 2013-06-18 Tom Tromey <tromey@redhat.com>
6284
6285 * python/python.c (finish_python_initialization): Decref
6286 'pythondir' on failure path as well.
6287
6288 2013-06-18 Tom Tromey <tromey@redhat.com>
6289
6290 PR symtab/15391:
6291 * dwarf2loc.c (read_pieced_value): Truncate this_size_bits
6292 after taking bits_to_skip into account. Sign extend byte_offset.
6293 * utils.h (gdb_sign_extend): Declare.
6294 * utils.c (gdb_sign_extend): New function.
6295
6296 2013-06-18 Jan Kratochvil <jan.kratochvil@redhat.com>
6297
6298 * dwarf2read.c (write_psymtabs_to_index): Ignore NULL PSYMTAB.
6299
6300 2013-06-17 Pierre Muller <muller@sourceware.org>
6301
6302 * corelow.c (core_open): Print GDB signal name instead of target
6303 signal number.
6304
6305 2013-06-17 Mike Frysinger <vapier@gentoo.org>
6306
6307 * .gitignore: Add /gcore.
6308
6309 2013-06-13 Doug Evans <dje@google.com>
6310
6311 * dwarf2read.c (try_open_dwop_file): Work around behaviour of
6312 OPF_TRY_CWD_FIRST to not search path if the file contains a '/'.
6313
6314 2013-06-12 Phil Muldoon <pmuldoon@redhat.com>
6315
6316 * stack.c (backtrace_command_1): Fix indentation.
6317
6318 2013-06-11 Joel Brobecker <brobecker@adacore.com>
6319
6320 * window-nat.c (thread_rec): Add missing empty line after
6321 local variable declaration.
6322
6323 2013-06-11 Joel Brobecker <brobecker@adacore.com>
6324
6325 * windows-nat.c (thread_rec): Revert format used to print
6326 error code returned by SuspendThread from %d back to %u.
6327
6328 2013-06-11 Joel Brobecker <brobecker@adacore.com>
6329
6330 * windows-nat.c (windows_continue): Add "0x" prefix for thread
6331 ID in debug trace.
6332 (get_windows_debug_event): Likewise, for all debug traces.
6333
6334 2013-06-11 Joel Brobecker <brobecker@adacore.com>
6335
6336 * window-nat.c (thread_rec): Add thread ID in SuspendThread
6337 warning message.
6338
6339 2013-06-08 Pedro Alves <pedro@codesourcery.com>
6340 Yao Qi <yao@codesourcery.com>
6341
6342 * mi/mi-main.c (get_register): Remove declaration.
6343 (output_register): Declare.
6344 (mi_cmd_data_list_register_values): Remove local variable
6345 'tuple_cleanup'. Move some code into output_register.
6346 (get_register): Renamed to ...
6347 (output_register): ... this. Output the register's
6348 "number" ui_out tuple here.
6349
6350 2013-06-07 Pedro Alves <palves@redhat.com>
6351
6352 * darwin-nat.c: Fix formating in copyright header.
6353 * darwin-nat.h: Likewise.
6354 * gnu-nat.c: Likewise.
6355 * machoread.c: Likewise.
6356
6357 2013-06-07 Pedro Alves <palves@redhat.com>
6358
6359 PR server/14823
6360 * regformats/regdat.sh: Output #include tdesc.h. Make globals
6361 static. Output a global target description pointer.
6362 (init_registers_${name}): Adjust to initialize a
6363 target description structure.
6364
6365 2013-06-07 Will Newton <will.newton@linaro.org>
6366
6367 * printcmd.c (build_address_symbolic): Call
6368 gdbarch_addr_bits_remove for text minimal symbols.
6369
6370 2013-06-07 Will Newton <will.newton@linaro.org>
6371
6372 * MAINTAINERS: Add myself to Write After Approval.
6373
6374 2013-06-07 Yao Qi <yao@codesourcery.com>
6375
6376 * tracepoint.c (start_tracing): Move code to ...
6377 (trace_reset_local_state): ... here. New.
6378 (disconnect_tracing): Don't call set_current_traceframe,
6379 set_tracepoint_num, and set_traceframe_context. Call
6380 trace_reset_local_state instead.
6381 (tfile_close): Call trace_reset_local_state.
6382 * ctf.c (ctf_close): Likewise.
6383 * remote.c (remote_close): Likewise.
6384 * tracepoint.h (trace_reset_local_state): Declare.
6385
6386 2013-06-06 Doug Evans <dje@google.com>
6387
6388 * dwarf2read.c: Whitespace fixes for DWP file format documentation,
6389 and fix header docs.
6390
6391 2013-06-05 Doug Evans <dje@google.com>
6392 Keith Seitz <keiths@redhat.com>
6393
6394 PR 15519
6395 * cp-namespace.c (find_symbol_in_baseclass): Call
6396 cp_lookup_symbol_in_namespace instead of cp_lookup_symbol_namespace.
6397 Check result of call to lookup_symbol_static.
6398 Call lookup_static_symbol_aux unconditionally.
6399 Call check_typedef on base types before accessing them.
6400 (cp_lookup_nested_symbol): Fix comment.
6401
6402 2013-06-05 Luis Machado <lgustavo@codesourcery.com>
6403
6404 * gnu-v3-abi.c (gnuv3_skip_trampoline): Handle thunk
6405 minimal symbols pointing to function descriptors.
6406
6407 2013-06-05 Tom Tromey <tromey@redhat.com>
6408
6409 * python/py-utils.c (gdb_pymodule_addobject): Cast away const.
6410
6411 2013-06-04 Sergio Durigan Junior <sergiodj@redhat.com>
6412 Pedro Alves <palves@redhat.com>
6413
6414 * remote.c (remote_wait_as): Restore signal handler before returning
6415 when GDB gets a notification.
6416
6417 2013-06-04 Gary Benson <gbenson@redhat.com>
6418
6419 PR 2328
6420 * breakpoint.h (handle_solib_event): Moved function declaration
6421 to solib.h.
6422 * breakpoint.c (handle_solib_event): Moved function to solib.c.
6423 (bpstat_stop_status): Pass new argument to handle_solib_event.
6424 * solib.h (update_solib_breakpoints): New function declaration.
6425 (handle_solib_event): Moved function declaration from
6426 breakpoint.h.
6427 * solib.c (update_solib_breakpoints): New function.
6428 (handle_solib_event): Moved function from breakpoint.c.
6429 Updated to call solib_ops->handle_event if not NULL.
6430 * solist.h (target_so_ops): New fields "update_breakpoints" and
6431 "handle_event".
6432 * infrun.c (set_stop_on_solib_events): New function.
6433 (_initialize_infrun): Use the above for "set
6434 stop-on-solib-events".
6435 (handle_inferior_event): Pass new argument to handle_solib_event.
6436 * solib-svr4.c (probe.h): New include.
6437 (svr4_free_library_list): New forward declaration.
6438 (probe_action): New enum.
6439 (probe_info): New struct.
6440 (probe_info): New static variable.
6441 (NUM_PROBES): New definition.
6442 (svr4_info): New fields "using_xfer", "probes_table" and
6443 "solib_list".
6444 (free_probes_table): New function.
6445 (free_solib_list): New function.
6446 (svr4_pspace_data_cleanup): Free probes table and solib list.
6447 (svr4_copy_library_list): New function.
6448 (svr4_current_sos_via_xfer_libraries): New parameter "annex".
6449 (svr4_read_so_list): New parameter "prev_lm".
6450 (svr4_current_sos_direct): Renamed from "svr4_current_sos".
6451 (svr4_current_sos): New function.
6452 (probe_and_action): New struct.
6453 (hash_probe_and_action): New function.
6454 (equal_probe_and_action): Likewise.
6455 (register_solib_event_probe): Likewise.
6456 (solib_event_probe_at): Likewise.
6457 (solib_event_probe_action): Likewise.
6458 (solist_update_full): Likewise.
6459 (solist_update_incremental): Likewise.
6460 (disable_probes_interface_cleanup): Likewise.
6461 (svr4_handle_solib_event): Likewise.
6462 (svr4_update_solib_event_breakpoint): Likewise.
6463 (svr4_update_solib_event_breakpoints): Likewise.
6464 (svr4_create_solib_event_breakpoints): Likewise.
6465 (enable_break): Free probes table before creating breakpoints.
6466 Use svr4_create_solib_event_breakpoints to create breakpoints.
6467 (svr4_solib_create_inferior_hook): Free the solib list.
6468 (_initialize_svr4_solib): Initialise
6469 svr4_so_ops.handle_solib_event and svr4_so_ops.update_breakpoints.
6470
6471 2013-06-04 Gary Benson <gbenson@redhat.com>
6472
6473 * target.h (target_ops): New field
6474 "to_augmented_libraries_svr4_read".
6475 (target_augmented_libraries_svr4_read): New macro.
6476 * target.c (update_current_target): Handle
6477 to_augmented_libraries_svr4_read.
6478 * remote.c (remote_state): New field
6479 "augmented_libraries_svr4_read".
6480 (remote_augmented_libraries_svr4_read_feature): New function.
6481 (remote_protocol_features): Add entry for
6482 "augmented-libraries-svr4-read".
6483 (remote_augmented_libraries_svr4_read): New function.
6484 (init_remote_ops): Initialize
6485 remote_ops.to_augmented_libraries_svr4_read.
6486
6487 2013-06-04 Gary Benson <gbenson@redhat.com>
6488
6489 * NEWS: Update.
6490
6491 2013-06-04 Gary Benson <gbenson@redhat.com>
6492
6493 * objfiles.h (inhibit_section_map_updates): New function
6494 declaration.
6495 (resume_section_map_updates): Likewise.
6496 (resume_section_map_updates_cleanup): Likewise.
6497 * objfiles.c (objfile_pspace_info): Removed field
6498 "objfiles_changed_p". New fields "new_objfiles_available",
6499 "section_map_dirty" and "inhibit_updates".
6500 (allocate_objfile): Set new_objfiles_available.
6501 (free_objfile): Set section_map_dirty.
6502 (objfile_relocate1): Likewise.
6503 (in_plt_section): Likewise.
6504 (find_pc_section): Update the conditions under which the
6505 section map will be updated.
6506 (inhibit_section_map_updates): New function.
6507 (resume_section_map_updates): Likewise.
6508 (resume_section_map_updates_cleanup): Likewise.
6509
6510 2013-06-04 Gary Benson <gbenson@redhat.com>
6511
6512 * probe.h (get_probe_argument_count): New declaration.
6513 (evaluate_probe_argument): Likewise.
6514 * probe.c (get_probe_argument_count): New function.
6515 (evaluate_probe_argument): Likewise.
6516 (probe_safe_evaluate_at_pc): Use the above new functions.
6517
6518 2013-06-04 Alan Modra <amodra@gmail.com>
6519
6520 * ppc-tdep.h (ppc_insns_match_pattern): Update prototype.
6521 * rs6000-tdep.c (read_insn): Add frame param, don't assume big-endian.
6522 (ppc_insns_match_pattern): Add frame param. Avoid multiple
6523 target mem reads on optional insns.
6524 * ppc-linux-tdep.c (ppc_skip_trampoline_code): Update
6525 ppc_insns_match_pattern calls.
6526 * ppc64-tdep.c (ppc64_standard_linkage2, ppc64_standard_linkage3):
6527 Add match for power7 thread safety insns, and new order of
6528 std 2,40(1) insn. Correct code shown for _dl_runtime_resolve
6529 invocation in comment, and update rest of comment.
6530 (PPC64_STANDARD_LINKAGE1_LEN, PPC64_STANDARD_LINKAGE2_LEN,
6531 PPC64_STANDARD_LINKAGE3_LEN): Delete.
6532 (ppc64_standard_linkage2_target): Update insn offsets.
6533 (ppc64_skip_trampoline_code): Use a single insn buffer. Match newer
6534 stubs first. Update calls.
6535
6536 2013-06-04 Yao Qi <yao@codesourcery.com>
6537
6538 * solib.c (solib_find): Don't need dir separator if path has
6539 drive spec.
6540
6541 2013-06-03 Joel Brobecker <brobecker@adacore.com>
6542
6543 Revert (indirectly causes a SIGSEGV):
6544 * machoread.c (macho_symfile_read): Assign first cleanup to
6545 'back_to'.
6546
6547 2013-06-03 Yao Qi <yao@codesourcery.com>
6548
6549 * mi/mi-cmd-var.c (mi_no_values, mi_simple_values): Move to
6550 mi-parse.c. Make them static.
6551 (mi_all_values): Likewise.
6552 (mi_parse_values_option): Move to mi-parse.c. Rename it to
6553 mi_parse_print_values. Make it external.
6554 * mi/mi-cmds.h (mi_no_values, mi_simple_values, mi_all_values):
6555 Remove the declarations.
6556 * mi/mi-parse.c (mi_parse_print_values): Moved from mi-cmd-var.c.
6557 * mi/mi-parse.h (mi_parse_print_values): Declare.
6558 * mi/mi-cmd-stack.c: Include mi-parse.h.
6559 (parse_print_values): Remove
6560 (mi_cmd_stack_list_locals): Call mi_parse_print_values instead
6561 of parse_print_values.
6562 (mi_cmd_stack_list_args, mi_cmd_stack_list_variables): Likewise.
6563
6564 2013-05-31 Pedro Alves <pedro@codesourcery.com>
6565 Yao Qi <yao@codesourcery.com>
6566
6567 * tracepoint.c (all_tracepoint_actions_and_cleanup): Declare.
6568 (encode_actions): Move code to ...
6569 (all_tracepoint_actions_and_cleanup): ... here. New.
6570 (trace_dump_command): Likewise.
6571
6572 2013-05-30 Tom Tromey <tromey@redhat.com>
6573
6574 * symmisc.c (maintenance_expand_symtabs): Call do_cleanups.
6575
6576 2013-05-30 Tom Tromey <tromey@redhat.com>
6577
6578 * xml-support.c (gdb_xml_create_parser_and_cleanup): Rename from
6579 gdb_xml_create_parser_and_cleanup_1. Return a cleanup. Remove
6580 'old_chain' argument. Add 'parser_result' argument.
6581 (gdb_xml_create_parser_and_cleanup): Remove old version.
6582 (gdb_xml_parse_quick): Update.
6583 (xml_process_xincludes): Update.
6584 * xml-support.h (gdb_xml_create_parser_and_cleanup): Don't
6585 declare.
6586
6587 2013-05-30 Tom Tromey <tromey@redhat.com>
6588
6589 * probe.c (collect_probes): Check arguments for NULL before
6590 calling compile_rx_or_error.
6591 * utils.c (compile_rx_or_error): Require 'rx' to be non-NULL.
6592 Remove NULL return.
6593
6594 2013-05-30 Tom Tromey <tromey@redhat.com>
6595
6596 * infrun.c (adjust_pc_after_break): Introduce an outer null
6597 cleanup.
6598
6599 2013-05-30 Tom Tromey <tromey@redhat.com>
6600
6601 * mi/mi-cmd-var.c (varobj_update_one): Add an outer null cleanup.
6602
6603 2013-05-30 Tom Tromey <tromey@redhat.com>
6604
6605 * cli/cli-script.c (read_command_lines_1): Use a null cleanup
6606 for 'old_chain'. Do not check 'head' before processing
6607 cleanups.
6608
6609 2013-05-30 Tom Tromey <tromey@redhat.com>
6610
6611 * mi/mi-cmd-stack.c (list_arg_or_local): Remove
6612 "cleanup_tuple".
6613
6614 2013-05-30 Tom Tromey <tromey@redhat.com>
6615
6616 * dbxread.c (dbx_read_symtab): Declare 'back_to' in a more
6617 inner scope. Unconditionally call do_cleanups.
6618
6619 2013-05-30 Tom Tromey <tromey@redhat.com>
6620
6621 * source.c (find_and_open_source): Call do_cleanups.
6622
6623 2013-05-30 Tom Tromey <tromey@redhat.com>
6624
6625 * linux-thread-db.c (thread_db_load_search): Unconditionally
6626 call do_cleanups.
6627
6628 2013-05-30 Tom Tromey <tromey@redhat.com>
6629
6630 * solib-aix.c (solib_aix_bfd_open): Don't use a null cleanup
6631 for 'cleanup'; instead use a later one.
6632
6633 2013-05-30 Tom Tromey <tromey@redhat.com>
6634
6635 * python/py-breakpoint.c (bppy_get_commands): Use
6636 explicit, unconditional return.
6637 * python/py-frame.c (frapy_read_var): Likewise.
6638 * python/python.c (gdbpy_decode_line): Likewise.
6639
6640 2013-05-30 Tom Tromey <tromey@redhat.com>
6641
6642 * cp-namespace.c (cp_lookup_symbol_imports_or_template): Call
6643 do_cleanups on all return paths.
6644
6645 2013-05-30 Tom Tromey <tromey@redhat.com>
6646
6647 * top.c (execute_command): Discard 'cleanup_if_error' cleanups.
6648
6649 2013-05-30 Tom Tromey <tromey@redhat.com>
6650
6651 * stabsread.c (read_struct_type): Call do_cleanups along
6652 all return paths.
6653
6654 2013-05-30 Maciej W. Rozycki <macro@codesourcery.com>
6655
6656 * mips-linux-tdep.c: Adjust formatting throughout.
6657
6658 2013-05-30 Tom Tromey <tromey@redhat.com>
6659
6660 * mipsread.c (read_alphacoff_dynamic_symtab): Call do_cleanups
6661 along all return paths.
6662
6663 2013-05-30 Tom Tromey <tromey@redhat.com>
6664
6665 * symfile.c (find_separate_debug_file): Call do_cleanups
6666 along all return paths.
6667
6668 2013-05-30 Tom Tromey <tromey@redhat.com>
6669
6670 * symtab.c (search_symbols): Introduce a null cleanup for
6671 'retval_chain'.
6672
6673 2013-05-30 Tom Tromey <tromey@redhat.com>
6674
6675 * python/py-value.c (valpy_binop): Call do_cleanups before
6676 exiting loop.
6677
6678 2013-05-30 Tom Tromey <tromey@redhat.com>
6679
6680 * python/py-prettyprint.c (print_children): Remove extra
6681 do_cleanups call.
6682
6683 2013-05-30 Tom Tromey <tromey@redhat.com>
6684
6685 * python/py-frame.c (frapy_read_var): Call do_cleanups along
6686 all return paths.
6687
6688 2013-05-30 Tom Tromey <tromey@redhat.com>
6689
6690 * python/py-breakpoint.c (bppy_get_commands): Call do_cleanups
6691 along all return paths.
6692
6693 2013-05-30 Tom Tromey <tromey@redhat.com>
6694
6695 * cli/cli-logging.c (set_logging_redirect): Unconditionally
6696 call do_cleanups.
6697
6698 2013-05-30 Tom Tromey <tromey@redhat.com>
6699
6700 * varobj.c (c_value_of_root): Call do_cleanups along all
6701 return paths.
6702
6703 2013-05-30 Tom Tromey <tromey@redhat.com>
6704
6705 * tracepoint.c (trace_dump_command): Unconditionally call
6706 do_cleanups.
6707
6708 2013-05-30 Tom Tromey <tromey@redhat.com>
6709
6710 * breakpoint.c (output_thread_groups, parse_cmd_to_aexpr): Call
6711 do_cleanups earlier.
6712
6713 2013-05-30 Tom Tromey <tromey@redhat.com>
6714
6715 * machoread.c (macho_symfile_read): Assign first cleanup to
6716 'back_to'.
6717
6718 2013-05-30 Tom Tromey <tromey@redhat.com>
6719
6720 * m32r-rom.c (m32r_load): Call do_cleanups at all returns.
6721
6722 2013-05-30 Tom Tromey <tromey@redhat.com>
6723
6724 * mi/mi-main.c (list_available_thread_groups): Call do_cleanups.
6725
6726 2013-05-30 Tom Tromey <tromey@redhat.com>
6727
6728 * inf-ptrace.c (inf_ptrace_create_inferior): Unconditionally
6729 call discard_cleanups.
6730 (inf_ptrace_attach): Likewise.
6731
6732 2013-05-30 Tom Tromey <tromey@redhat.com>
6733
6734 * remote-mips.c (mips_exit_debug): Call do_cleanups on all
6735 return paths.
6736 (mips_initialize): Likewise.
6737 (common_open): Call do_cleanups.
6738
6739 2013-05-30 Tom Tromey <tromey@redhat.com>
6740
6741 * utils.c (internal_vproblem): Call do_cleanups.
6742
6743 2013-05-30 Tom Tromey <tromey@redhat.com>
6744
6745 * linespec.c (find_linespec_symbols): Don't reassign to 'cleanup'.
6746
6747 2013-05-30 Tom Tromey <tromey@redhat.com>
6748
6749 * cli/cli-script.c (setup_user_args): Don't return after error.
6750
6751 2013-05-30 Tom Tromey <tromey@redhat.com>
6752
6753 * somread.c (som_symtab_read): Call do_cleanups.
6754
6755 2013-05-30 Tom Tromey <tromey@redhat.com>
6756
6757 * printcmd.c (print_command_1): Unconditionally call do_cleanups.
6758
6759 2013-05-30 Tom Tromey <tromey@redhat.com>
6760
6761 * cli/cli-cmds.c (cd_command, alias_command): Call do_cleanups.
6762 * cli/cli-dump.c (restore_binary_file): Call do_cleanups.
6763 * interps.c (interpreter_exec_cmd): Call do_cleanups.
6764 * source.c (show_substitute_path_command): Call do_cleanups.
6765 (unset_substitute_path_command, set_substitute_path_command):
6766 Likewise.
6767 * symfile.c (load_command): Call do_cleanups.
6768
6769 2013-05-30 Tom Tromey <tromey@redhat.com>
6770
6771 * contrib/cleanup_check.py: New file.
6772 * contrib/gcc-with-excheck: Add option parsing.
6773
6774 2013-05-30 Joel Brobecker <brobecker@adacore.com>
6775
6776 * windows-nat.c (windows_delete_thread): Add missing space
6777 in cast expression.
6778
6779 2013-05-30 Hafiz Abid Qadeer <abidh@codesourcery.com>
6780
6781 * inferior.c (top level): Include tilde.h.
6782 (add_inferior_command): Call tilde_expand on the value of 'exec'
6783 argument.
6784
6785 2013-05-30 Pedro Alves <pedro@codesourcery.com>
6786 Yao Qi <yao@codesourcery.com>
6787
6788 * tracepoint.c (encode_actions_1): Remove parameter 't'.
6789 Caller update.
6790 (encode_actions): Likewise.
6791 * remote.c (remote_download_tracepoint): Caller update.
6792 * tracepoint.h (encode_actions): Update declaration.
6793
6794 2013-05-30 Pedro Alves <palves@redhat.com>
6795
6796 * python/python-internal.h (gdb_Py_DECREF): Cast OP to PyObject
6797 pointer.
6798
6799 2013-05-30 Yao Qi <yao@codesourcery.com>
6800
6801 * remote.c (remote_check_symbols): Remove unused parameter
6802 'objfile'.
6803 Declaration update.
6804 (remote_start_remote, remote_new_objfile): Caller update.
6805
6806 2013-05-30 Yao Qi <yao@codesourcery.com>
6807
6808 * mi/mi-cmds.c (mi_cmds): Define MI command
6809 '-exec-arguments' by macro DEF_MI_CMD_CLI_1 instead of
6810 DEF_MI_CMD_CLI.
6811
6812 2013-05-29 Pedro Alves <palves@redhat.com>
6813
6814 * remote.c (remote_insert_breakpoint, remote_remove_breakpoint)
6815 (remote_insert_watchpoint, remote_remove_watchpoint)
6816 (remote_insert_hw_breakpoint, remote_remove_hw_breakpoint)
6817 (remote_verify_memory, compare_sections_command)
6818 (remote_search_memory): Set the general process/thread on the
6819 remote side.
6820
6821 2013-05-29 Pedro Alves <palves@redhat.com>
6822
6823 * aarch64-tdep.c: Don't include "features/aarch64-without-fpu.c".
6824 (_initialize_aarch64_tdep): Don't call
6825 initialize_tdesc_aarch64_without_fpu.
6826 * features/Makefile (WHICH): Remove reference to
6827 aarch64-without-fpu.
6828 * features/aarch64-without-fpu.c: Delete file.
6829 * regformats/aarch64-without-fpu.dat: Delete file.
6830
6831 2013-05-28 Yao Qi <yao@codesourcery.com>
6832
6833 * tracepoint.c (stringify_collection_list): Remove parameter
6834 'string'.
6835 (encode_actions): Caller update. Remove local variables.
6836
6837 2013-05-24 Yao Qi <yao@codesourcery.com>
6838
6839 * tracepoint.c (TFILE_PID): Remove.
6840 (tfile_open): Don't add thread and inferior.
6841 (tfile_close): Don't set 'inferior_ptid'. Don't call
6842 exit_inferior_silent.
6843 (tfile_thread_alive): Remove.
6844 (init_tfile_ops): Don't set field 'to_thread_alive' of
6845 tfile_ops.
6846
6847 2013-05-23 Doug Evans <dje@google.com>
6848
6849 * contrib/cc-with-tweaks.sh (-p): Handle no dwo files.
6850
6851 2013-05-23 Pedro Alves <palves@redhat.com>
6852
6853 * common/filestuff.c [USE_WIN32API]: Define HAVE_SOCKETS.
6854 [HAVE_SYS_SOCKET_H]: Define HAVE_SOCKETS.
6855 (socket_mark_cloexec, gdb_socketpair_cloexec, gdb_socket_cloexec):
6856 Only define if HAVE_SOCKETS is defined.
6857 * configure.ac: Check for sys/socket.h.
6858 * config.in, configure: Regenerate.
6859
6860 2013-05-23 Pedro Alves <palves@redhat.com>
6861
6862 * dwarf2read.c (create_dwp_hash_table, create_dwo_in_dwp)
6863 (open_and_init_dwp_file): Use %s/pulongest instead of %u for
6864 printing uint32_t variables.
6865
6866 2013-05-23 Pedro Alves <palves@redhat.com>
6867
6868 * NEWS: Mention GDBserver range stepping support.
6869
6870 2013-05-23 Yao Qi <yao@codesourcery.com>
6871 Pedro Alves <palves@redhat.com>
6872
6873 * gdbthread.h (struct thread_control_state) <may_range_step>: New
6874 field.
6875 * infcmd.c (step_once, until_next_command): Enable range stepping.
6876 * infrun.c (displaced_step_prepare): Disable range stepping.
6877 (resume): Disable range stepping if stepping over a breakpoint or
6878 we have software watchpoints. If range stepping is enabled,
6879 assert the thread is in the stepping range.
6880 (clear_proceed_status_thread): Clear may_range_step.
6881 (handle_inferior_event): Disable range stepping as soon as we know
6882 the thread that hit the event. Re-enable it whenever we're going
6883 to step with a step range.
6884 * remote.c (struct vCont_action_support) <r>: New field.
6885 (use_range_stepping): New global.
6886 (remote_vcont_probe): Handle 'r' action.
6887 (append_resumption): Append an 'r' action if the thread may range
6888 step.
6889 (show_range_stepping): New function.
6890 (set_range_stepping): New function.
6891 (_initialize_remote): Call add_setshow_boolean_cmd to register the
6892 'set range-stepping' and 'show range-stepping' commands.
6893 * NEWS: Mention range stepping, the new vCont;r action, and the
6894 new "set/show range-stepping" commands.
6895
6896 2013-05-23 Yao Qi <yao@codesourcery.com>
6897 Pedro Alves <palves@redhat.com>
6898
6899 * remote.c (struct vCont_action_support): New struct.
6900 (struct remote_state) <support_vCont_t>: Remove field.
6901 <vCont_actions_support>: New field.
6902 (remote_vcont_probe, remote_stop_ns): Update.
6903
6904 2013-05-23 Yao Qi <yao@codesourcery.com>
6905 Pedro Alves <palves@redhat.com>
6906
6907 * gdbthread.h (pc_in_thread_step_range): New declaration.
6908 * thread.c (pc_in_thread_step_range): New function.
6909 * infrun.c (handle_inferior_event): Use it.
6910
6911 2013-05-23 Joel Brobecker <brobecker@adacore.com>
6912
6913 * mi/mi-cmd-break.c (mi_argv_to_format): Use xsnprintf instead
6914 of sprintf.
6915
6916 2013-05-22 Keith Seitz <keiths@redhat.com>
6917
6918 * ada-lang.c (is_known_support_routine): Add explicit free of
6919 'func_name' from find_frame_funname.
6920 (ada_unhandled_exception_name_addr_from_raise): Add cleanups
6921 for func_name from find_frame_funname.
6922 * python/py-frame.c (frapy_name): Add explicit free of
6923 'name' from find_frame_funname.
6924 * stack.c (find_frame_funname): Add comment explaining that
6925 funcp must be freed by the caller.
6926 Return copy of symbol names instead of pointers.
6927 (print_frame): Add a cleanup for 'funname' from
6928 find_frame_funname.
6929 * stack.h (find_frame_funname): Remove "const" from
6930 'funname' parameter.
6931
6932 2013-05-22 Tom Tromey <tromey@redhat.com>
6933
6934 PR c++/15401:
6935 * c-valprint.c (c_value_print): Use value_addr for
6936 references. Convert back to reference type with value_ref.
6937
6938 2013-05-22 Eli Zaretskii <eliz@gnu.org>
6939
6940 * windows-nat.c (handle_unload_dll): Don't call solib_add for the
6941 unloaded DLL, it will be done by handle_solib_event. See
6942 http://sourceware.org/ml/gdb-patches/2013-05/msg00713.html for the
6943 details.
6944
6945 2013-05-22 Phil Muldoon <pmuldoon@redhat.com>
6946
6947 * ui-out.c: Create typedef ui_out_level_p and define vector
6948 operations for that type.
6949 (struct ui_out): Use a vector instead of an array.
6950 (current_level): Return level from a vector.
6951 (push_level): Create a level in a vector.
6952 (pop_level): Delete a level in a vector.
6953 (ui_out_new): Create initial level zero level, and store in a
6954 vector.
6955 (ui_out_destroy): Add vector cleanup.
6956
6957 2013-05-22 Pedro Alves <palves@redhat.com>
6958
6959 * python/python-internal.h (gdb_Py_DECREF): Tag with
6960 "ARI: editCase function".
6961
6962 2013-05-21 Paul Pluzhnikov <ppluzhnikov@google.com>
6963
6964 * solib-svr4.c (svr4_free_so): Protect against NULL dereference.
6965
6966 2013-05-21 Pedro Alves <palves@redhat.com>
6967
6968 * python/py-prettyprint.c (apply_val_pretty_printer): Check
6969 whether PRINTER is NULL before installing a Py_DECREF cleanup.
6970 * python/py-utils.c (py_decref): Don't check for NULL before
6971 calling Py_DECREF.
6972
6973 2013-05-21 Pedro Alves <palves@redhat.com>
6974
6975 * python/py-utils.c (py_decref): Remove extra braces.
6976 (gdb_pymodule_addobject): Remove extra braces.
6977 * python-internal.h (gdb_Py_DECREF): New static inline function.
6978 (Py_DECREF): Redefine as calling gdb_Py_DECREF.
6979
6980 2013-05-21 Philippe Waroquiers <philippe.waroquiers@skynet.be>
6981
6982 * breakpoints.c (detach_breakpoints): Do not
6983 detach breakpoints locations with loc_type bp_loc_other.
6984
6985 2013-05-21 Jan Kratochvil <jan.kratochvil@redhat.com>
6986
6987 Workaround Python 2.6.
6988 * python/py-utils.c (gdb_pymodule_addobject): Wrap Py_DECREF into
6989 a block.
6990
6991 2013-05-21 Jan Kratochvil <jan.kratochvil@redhat.com>
6992
6993 Code cleanup: constification.
6994 * solib.c (solib_ops): Make return type and ops variable type const.
6995 (set_solib_ops): Make the new_ops parameter and ops variable const.
6996 (solib_find, solib_map_sections, clear_so, free_so, update_solib_list)
6997 (solib_add, solib_keep_data_in_core, clear_solib)
6998 (solib_create_inferior_hook, in_solib_dynsym_resolve_code)
6999 (reload_shared_libraries, solib_global_lookup): Make the ops variable
7000 const.
7001 * solib.h (set_solib_ops): Make the new_ops parameter const.
7002
7003 2013-05-21 Joel Brobecker <brobecker@adacore.com>
7004
7005 * data-directory/Makefile.in (SYSTEM_GDBINIT_SRCDIR): New
7006 variable.
7007 (VPATH): Add SYSTEM_GDBINIT_SRCDIR.
7008 (SYSTEM_GDBINIT_DIR, SYSTEM_GDBINIT_INSTALL_DIR)
7009 (SYSTEM_GDBINIT_FILES): New variables.
7010 (all): Add stamp-system-gdbinit.
7011 (stamp-system-gdbinit): New rule.
7012 (clean-system-gdbinit, install-system-gdbinit)
7013 (uninstall-system-gdbinit): New rules. Make them .PHONY.
7014 (install-only): Add dependency on install-system-gdbinit.
7015 (uninstall): Add dependency on uninstall-system-gdbinit.
7016 (clean): Add dependency on clean-system-gdbinit.
7017 * system-gdbinit/elinos.py: New file.
7018 * system-gdbinit/wrs-linux.py: New file.
7019
7020 2013-05-21 Joel Brobecker <brobecker@adacore.com>
7021
7022 * ada-lang.c (old_renaming_is_invisible): Fix cleanup leak.
7023
7024 2013-05-21 Hui Zhu <hui@codesourcery.com>
7025
7026 * breakpoint.c (dprintf_breakpoint_ops): Remove its static.
7027 * breakpoint.h (dprintf_breakpoint_ops): Add extern.
7028 * mi/mi-cmd-break.c (ctype.h): New include.
7029 (gdb_obstack.h): New include.
7030 (mi_argv_to_format, mi_cmd_break_insert_1): New.
7031 (mi_cmd_break_insert): Call mi_cmd_break_insert_1.
7032 (mi_cmd_dprintf_insert): New.
7033 * mi/mi-cmds.c (mi_cmds): Add "dprintf-insert".
7034 * mi/mi-cmds.h (mi_cmd_dprintf_insert): New extern.
7035
7036 2013-05-20 Tom Tromey <tromey@redhat.com>
7037
7038 * python/py-prettyprint.c (search_pp_list): Decref 'attr'.
7039
7040 2013-05-20 Tom Tromey <tromey@redhat.com>
7041
7042 * python/py-value.c (valpy_get_dynamic_type): Simplify
7043 dynamic_type assignment. Use Py_XINCREF.
7044
7045 2013-05-20 Tom Tromey <tromey@redhat.com>
7046
7047 * python/py-type.c (typy_fields): Unconditionally decref 'r'.
7048
7049 2013-05-20 Tom Tromey <tromey@redhat.com>
7050
7051 * python/py-frame.c (frapy_older, frapy_newer, gdbpy_newest_frame)
7052 (gdbpy_selected_frame): Move object-construction code
7053 out of TRY_CATCH.
7054
7055 2013-05-20 Tom Tromey <tromey@redhat.com>
7056
7057 * python/py-arch.c (gdbpy_initialize_arch): Use
7058 gdb_pymodule_addobject.
7059 * python/py-block.c (gdbpy_initialize_blocks): Use
7060 gdb_pymodule_addobject.
7061 * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Use
7062 gdb_pymodule_addobject.
7063 * python/py-cmd.c (gdbpy_initialize_breakpoints): Use
7064 gdb_pymodule_addobject.
7065 * python/py-event.c (gdbpy_initialize_event_generic): Use
7066 gdb_pymodule_addobject.
7067 * python/py-evtregistry.c (gdbpy_initialize_eventregistry): Use
7068 gdb_pymodule_addobject.
7069 * python/py-evts.c (add_new_registry): Use
7070 gdb_pymodule_addobject.
7071 (gdbpy_initialize_py_events): Likewise.
7072 * python/py-finishbreakpoint.c
7073 (gdbpy_initialize_finishbreakpoints): Use
7074 gdb_pymodule_addobject.
7075 * python/py-frame.c (gdbpy_initialize_frames): Use
7076 gdb_pymodule_addobject.
7077 * python/py-function.c (gdbpy_initialize_functions): Use
7078 gdb_pymodule_addobject.
7079 * python/py-inferior.c (gdbpy_initialize_inferior): Use
7080 gdb_pymodule_addobject.
7081 * python/py-infthread.c (gdbpy_initialize_thread): Use
7082 gdb_pymodule_addobject.
7083 * python/py-objfile.c (gdbpy_initialize_objfile): Use
7084 gdb_pymodule_addobject.
7085 * python/py-param.c (gdbpy_initialize_parameters): Use
7086 gdb_pymodule_addobject.
7087 * python/py-progspace.c (gdbpy_initialize_pspace): Use
7088 gdb_pymodule_addobject.
7089 * python/py-symbol.c (gdbpy_initialize_symbols): Use
7090 gdb_pymodule_addobject.
7091 * python/py-symtab.c (gdbpy_initialize_symtabs): Use
7092 gdb_pymodule_addobject.
7093 * python/py-type.c (gdbpy_initialize_types): Use
7094 gdb_pymodule_addobject.
7095 * python/py-utils.c (gdb_pymodule_addobject): New function.
7096 * python/py-value.c (gdbpy_initialize_values): Use
7097 gdb_pymodule_addobject.
7098 * python/python-internal.h (gdb_pymodule_addobject): Declare.
7099 * python/python.c (_initialize_python): Use
7100 gdb_pymodule_addobject.
7101
7102 2013-05-20 Tom Tromey <tromey@redhat.com>
7103
7104 * python/py-cmd.c (cmdpy_completer): Use explicit decref.
7105 * python/py-param.c (get_set_value, get_show_value): Use
7106 explicit decrefs.
7107 * python/python.c (start_type_printers, apply_type_printers):
7108 Use explicit decrefs.
7109
7110 2013-05-20 Tom Tromey <tromey@redhat.com>
7111
7112 * python/py-evts.c (gdbpy_initialize_py_events): Don't
7113 incref the module.
7114
7115 2013-05-20 Tom Tromey <tromey@redhat.com>
7116
7117 * python/python.c (gdbpy_run_events): Decref the result
7118 of PyObject_CallObject.
7119
7120 2013-05-20 Tom Tromey <tromey@redhat.com>
7121
7122 * python/py-symtab.c (set_sal): Use
7123 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION. Return -1 on error.
7124 (symtab_and_line_to_sal_object): Update.
7125
7126 2013-05-20 Tom Tromey <tromey@redhat.com>
7127
7128 * python/py-param.c (compute_enum_values): Decref 'item'.
7129
7130 2013-05-20 Tom Tromey <tromey@redhat.com>
7131
7132 * mi/mi-main.c: Include python-internal.h.
7133 (mi_cmd_list_features): Check gdb_python_initialized.
7134 * python/py-inferior.c (python_on_normal_stop, python_on_resume)
7135 (python_inferior_exit, python_new_objfile, add_thread_object)
7136 (delete_thread_object, py_free_inferior): Check
7137 gdb_python_initialized.
7138 * python/py-prettyprint.c (apply_val_pretty_printer): Check
7139 gdb_python_initialized.
7140 * python/py-type.c (save_objfile_types): Check
7141 gdb_python_initialized.
7142 * python/python-internal.h (gdb_python_initialized): Declare.
7143 * python/python.c (ensure_python_env): Throw exception if
7144 Python not initialized.
7145 (before_prompt_hook, source_python_script_for_objfile)
7146 (start_type_printers, apply_type_printers,
7147 free_type_printers): Check gdb_python_initialized.
7148 * varobj.c (varobj_get_display_hint)
7149 (dynamic_varobj_has_child_method, update_dynamic_varobj_children)
7150 (install_new_value_visualizer, varobj_set_visualizer)
7151 (value_get_print_value): Check gdb_python_initialized.
7152
7153 2013-05-20 Tom Tromey <tromey@redhat.com>
7154
7155 * python/py-arch.c (gdbpy_initialize_arch): Return 'int'.
7156 Check errors.
7157 * python/py-auto-load.c (gdbpy_initialize_auto_load): Return 'int'.
7158 * python/py-block.c (gdbpy_initialize_blocks): Return 'int'.
7159 Check errors.
7160 * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Return 'int'.
7161 Check errors.
7162 * python/py-cmd.c (gdbpy_initialize_commands): Return 'int'.
7163 Check errors.
7164 * python/py-event.c (gdbpy_initialize_event): Return 'int'.
7165 Check errors.
7166 * python/py-event.h (GDBPY_NEW_EVENT_TYPE): Change generated
7167 init function to return 'int'.
7168 * python/py-evtregistry.c (gdbpy_initialize_eventregistry):
7169 Return 'int'. Check errors.
7170 * python/py-evts.c (gdbpy_initialize_py_events): Return 'int'.
7171 Check errors.
7172 * python/py-finishbreakpoint.c (gdbpy_initialize_finishbreakpoints):
7173 Return 'int'. Check errors.
7174 * python/py-frame.c (gdbpy_initialize_frames): Return 'int'.
7175 Check errors.
7176 * python/py-function.c (gdbpy_initialize_functions): Return 'int'.
7177 Check errors.
7178 * python/py-gdb-readline.c (gdbpy_initialize_gdb_readline):
7179 Check errors.
7180 * python/py-inferior.c (gdbpy_initialize_inferior): Return 'int'.
7181 Check errors.
7182 * python/py-infthread.c (gdbpy_initialize_thread): Return 'int'.
7183 Check errors.
7184 * python/py-lazy-string.c (gdbpy_initialize_lazy_string): Return 'int'.
7185 Check errors.
7186 * python/py-objfile.c (gdbpy_initialize_objfile): Return 'int'.
7187 Check errors.
7188 * python/py-param.c (gdbpy_initialize_parameters): Return 'int'.
7189 Check errors.
7190 * python/py-progspace.c (gdbpy_initialize_pspace): Return 'int'.
7191 Check errors.
7192 * python/py-symbol.c (gdbpy_initialize_symbols): Return 'int'.
7193 Check errors.
7194 * python/py-symtab.c (gdbpy_initialize_symtabs): Return 'int'.
7195 Check errors.
7196 * python/py-type.c (gdbpy_initialize_types): Return 'int'.
7197 Check errors.
7198 * python/py-value.c (gdbpy_initialize_values): Return 'int'.
7199 Check errors.
7200 * python/python-internal.h (gdbpy_initialize_auto_load,
7201 gdbpy_initialize_values, gdbpy_initialize_frames,
7202 gdbpy_initialize_symtabs, gdbpy_initialize_commands,
7203 gdbpy_initialize_symbols, gdbpy_initialize_symtabs,
7204 gdbpy_initialize_blocks, gdbpy_initialize_types,
7205 gdbpy_initialize_functions, gdbpy_initialize_pspace,
7206 gdbpy_initialize_objfile, gdbpy_initialize_breakpoints,
7207 gdbpy_initialize_finishbreakpoints,
7208 gdbpy_initialize_lazy_string, gdbpy_initialize_parameters,
7209 gdbpy_initialize_thread, gdbpy_initialize_inferior,
7210 gdbpy_initialize_eventregistry, gdbpy_initialize_event,
7211 gdbpy_initialize_py_events, gdbpy_initialize_stop_event,
7212 gdbpy_initialize_signal_event,
7213 gdbpy_initialize_breakpoint_event,
7214 gdbpy_initialize_continue_event,
7215 gdbpy_initialize_exited_event, gdbpy_initialize_thread_event,
7216 gdbpy_initialize_new_objfile_event, gdbpy_initialize_arch):
7217 Update. Use CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
7218 * python/python.c (gdb_python_initialized): New global.
7219 (gdbpy_initialize_events): Return 'int'. Check errors.
7220 (_initialize_python): Check errors. Set
7221 gdb_python_initialized.
7222
7223 2013-05-20 Tom Tromey <tromey@redhat.com>
7224
7225 * python/py-finishbreakpoint.c (bpfinishpy_out_of_scope):
7226 Decref the reslut of PyObject_CallMethod.
7227
7228 2013-05-20 Tom Tromey <tromey@redhat.com>
7229
7230 * python/py-event.c (gdbpy_initialize_event_generic): Return
7231 early if PyType_Ready fails.
7232
7233 2013-05-20 Tom Tromey <tromey@redhat.com>
7234
7235 * python/py-type.c (make_fielditem): Add gdb_assert_not_reached
7236 as 'default' in the switch.
7237
7238 2013-05-20 Tom Tromey <tromey@redhat.com>
7239
7240 * python/py-inferior.c (gdbpy_inferiors): Update. Hoist
7241 get_addr_from_python calls out of TRY_CATCH.
7242 (infpy_write_memory, infpy_search_memory): Likewise.
7243 * python/py-utils.c (get_addr_from_python): Return negative
7244 value on error. Use TRY_CATCH.
7245 * python/python-internal.h (get_addr_from_python): Use
7246 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
7247
7248 2013-05-20 Tom Tromey <tromey@redhat.com>
7249
7250 * python/py-event.c (evpy_emit_event): Decref the
7251 result of PyObject_CallFunctionObjArgs.
7252
7253 2013-05-20 Tom Tromey <tromey@redhat.com>
7254
7255 * python/py-cmd.c (cmdpy_completer): Use iterator protocol.
7256 Correctly decref.
7257
7258 2013-05-20 Tom Tromey <tromey@redhat.com>
7259
7260 * python/py-cmd.c (cmdpy_init): Decref 'ds_obj'.
7261
7262 2013-05-20 Tom Tromey <tromey@redhat.com>
7263
7264 * python/py-event.h (gdbpy_initialize_event_generic): Use
7265 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
7266 * python/py-evts.c (add_new_registry): Use
7267 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
7268 * python/python-internal.h
7269 (CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION): New macro.
7270
7271 2013-05-20 Tom Tromey <tromey@redhat.com>
7272
7273 * python/py-arch.c (archpy_disassemble): Update.
7274 * python/py-type.c (typy_get_composite, typy_lookup_typename)
7275 (typy_lookup_type): Use GDB_PY_HANDLE_EXCEPTION.
7276 * python/py-utils.c (gdbpy_convert_exception): Return 'void'.
7277 * python/python-internal.h (CPYCHECKER_SETS_EXCEPTION): New
7278 macro.
7279 (GDB_PY_HANDLE_EXCEPTION): Update.
7280 (gdbpy_convert_exception): Update. Use CPYCHECKER_SETS_EXCEPTION.
7281
7282 2013-05-20 Tom Tromey <tromey@redhat.com>
7283
7284 * python/python-internal.h (events_object_type): Remove.
7285
7286 2013-05-20 Tom Tromey <tromey@redhat.com>
7287
7288 * python/py-event.h (evpy_emit_event): Use
7289 CPYCHECKER_STEALS_REFERENCE_TO_ARG.
7290 * python/python-internal.h (CPYCHECKER_STEALS_REFERENCE_TO_ARG):
7291 New macro.
7292
7293 2013-05-20 Tom Tromey <tromey@redhat.com>
7294
7295 * py-evtregistry.c (create_event_object): Decref
7296 eventregistry_object if PyList_New fails.
7297
7298 2013-05-20 Tom Tromey <tromey@redhat.com>
7299
7300 * py-cmd.c (gdbpy_string_to_argv): Check result of
7301 PyList_New.
7302
7303 2013-05-20 Tom Tromey <tromey@redhat.com>
7304
7305 * python/python.c (before_prompt_hook): Add cleanup to
7306 decref 'hook'.
7307
7308 2013-05-20 Tom Tromey <tromey@redhat.com>
7309
7310 * python/py-function.c (fnpy_init): Decref result of
7311 PyObject_GetAttrString.
7312
7313 2013-05-20 Tom Tromey <tromey@redhat.com>
7314
7315 * python/py-threadevent.c (get_event_thread): Use
7316 CPYCHECKER_RETURNS_BORROWED_REF.
7317 * python/python-internal.h (CPYCHECKER_RETURNS_BORROWED_REF):
7318 New define.
7319 (pspace_to_pspace_object, objfile_to_objfile_object)
7320 (find_thread_object): Use it.
7321
7322 2013-05-20 Tom Tromey <tromey@redhat.com>
7323
7324 * python/py-arch.c (arch_object_type): Use
7325 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7326 * python/py-block.c (block_syms_iterator_object_type):
7327 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7328 * python/py-bpevent.c (breakpoint_event_object_type):
7329 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7330 * python/py-cmd.c (cmdpy_object_type): Use
7331 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7332 * python/py-continueevent.c (continue_event_object_type):
7333 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7334 * python/py-event.h (GDBPY_NEW_EVENT_TYPE):
7335 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7336 * python/py-events.h (thread_event_object_type):
7337 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7338 * python/py-evtregistry.c (eventregistry_object_type): Use
7339 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7340 * python/py-exitedevent.c (exited_event_object_type):
7341 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7342 * python/py-finishbreakpoint.c (finish_breakpoint_object_type):
7343 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7344 * python/py-function.c (fnpy_object_type): Use
7345 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7346 * python/py-inferior.c (inferior_object_type, membuf_object_type):
7347 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7348 * python/py-infthread.c (thread_object_type): Use
7349 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7350 * python/py-lazy-string.c (lazy_string_object_type):
7351 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7352 * python/py-newobjfileevent.c (new_objfile_event_object_type):
7353 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7354 * python/py-objfile.c (objfile_object_type): Use
7355 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7356 * python/py-param.c (parmpy_object_type):
7357 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7358 * python/py-progspace.c (pspace_object_type):
7359 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7360 * python/py-signalevent.c (signal_event_object_type):
7361 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7362 * python/py-symtab.c (symtab_object_type, sal_object_type): Use
7363 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7364 * python/py-type.c (type_object_type, field_object_type)
7365 (type_iterator_object_type): Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7366 * python/py-internal.h (CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF): New
7367 define.
7368 (value_object_type, block_object_type, symbol_object_type)
7369 (event_object_type, stop_event_object_type, breakpoint_object_type)
7370 (frame_object_type): Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
7371
7372 2013-05-20 Andreas Tobler <andreas@fgznet.ch>
7373
7374 * Makefile.in (ALL_TARGET_OBS): Add ppcfbsd-tdep.o.
7375 (ALLDEPFILES): Add ppcfbsd-nat.c and ppcfbsd-tdep.c.
7376
7377 2013-05-20 Doug Evans <dje@google.com>
7378
7379 When reading CU, stay in DWO. Be more tolerent of bad debug info.
7380 For Fission.
7381 * dwarf2read.c (struct dwarf2_per_cu_data): New member
7382 reading_dwo_directly.
7383 (struct signatured_type): New member dwo_unit.
7384 (struct die_reader_specs): New member comp_dir.
7385 (create_signatured_type_table_from_index): Use malloc for
7386 all_type_units instead of objfile's obstack.
7387 (create_all_type_units): Ditto.
7388 (fill_in_sig_entry_from_dwo_entry): New function.
7389 (add_type_unit): New function.
7390 (lookup_dwo_signatured_type): New function.
7391 (lookup_dwp_signatured_type): New function.
7392 (lookup_signatured_type): New arg cu. All callers updated.
7393 (init_cu_die_reader): Initialize comp_dir.
7394 (read_cutu_die_from_dwo): New arg stub_comp_dir. All callers updated.
7395 Change assert of matching type signatures to call error on mismatch.
7396 (lookup_dwo_unit): Add assert.
7397 (init_tu_and_read_dwo_dies): New function.
7398 (init_cutu_and_read_dies): Call it.
7399 (build_type_unit_groups): Handle case of no type unit groups created.
7400 (hash_dwo_file, eq_dwo_file): Handle missing comp_dir.
7401 (lookup_dwo_cutu): Tweak complaint.
7402 (dwarf2_free_abbrev_table): Check for NULL abbrev_table.
7403 (dwarf2_per_objfile_free): Free all_type_units.
7404
7405 2013-05-20 Joel Brobecker <brobecker@adacore.com>
7406
7407 * windows-nat.c (handle_unload_dll): Add missing empty line.
7408
7409 2013-05-20 Joel Brobecker <brobecker@adacore.com>
7410
7411 * dwarf2read.c (prototyped_function_p): New function.
7412 (read_subroutine_type): Use it.
7413
7414 2013-05-20 Joel Brobecker <brobecker@adacore.com>
7415
7416 * rs6000-aix-tdep.c: De-indent some example code provided
7417 as a comment.
7418
7419 2013-05-17 Edjunior Machado <emachado@linux.vnet.ibm.com>
7420
7421 * ppc-linux-nat.c (ppc_linux_region_ok_for_hw_watchpoint): Check if the
7422 region is ok for a hardware watchpoint using the new ptrace interface
7423 on Power servers.
7424
7425 2013-05-17 Doug Evans <dje@google.com>
7426
7427 * NEWS: Mention new maintenance commands check-symtabs, and
7428 expand-symtabs, and renamed check-psymtabs.
7429 * psymtab.c (maintenance_check_psymtabs): Renamed from
7430 maintenance_check_symtabs. Only process already-expanded symbol
7431 tables.
7432 (_initialize_psymtab): Update.
7433 * symmisc.c (maintenance_check_symtabs): New function.
7434 (maintenance_expand_name_matcher): New function
7435 (maintenance_expand_file_matcher): New function
7436 (maintenance_expand_symtabs): New function.
7437 (_initialize_symmisc): Add "mt check-symtabs" and "mt expand-symtabs"
7438 commands.
7439
7440 2013-05-17 Tom Tromey <tromey@redhat.com>
7441
7442 * python/py-inferior.c (infpy_read_memory): Don't call
7443 PyErr_SetString if PyObject_New fails.
7444 * python/py-frame.c (frame_info_to_frame_object): Don't call
7445 PyErr_SetString if PyObject_New fails.
7446
7447 2013-05-17 Pavel Chupin <pavel.v.chupin@intel.com>
7448
7449 * acinclude.m4: Add check for dlopen in libdl.
7450 * configure.ac: Ditto.
7451 * configure: Regenerate.
7452
7453 2013-05-17 Phil Muldoon <pmuldoon@redhat.com>
7454
7455 * frame.c (frame_stash): Convert to htab.
7456 (frame_addr_hash): New function.
7457 (frame_addr_hash_eq): New function.
7458 (frame_stash_create): Convert function to create
7459 a hash table.
7460 (frame_stash_add): Convert function to add an entry to a hash
7461 table.
7462 (frame_stash_find): Convert function to search the hash table.
7463 (frame_stash_invalidate): Convert function to empty the hash
7464 table.
7465 (get_frame_id): Only add to stash if a frame_id is created.
7466 (_initialize_frame): Call frame_stash_create.
7467
7468 2013-05-16 Yue Lu <hacklu.newborn@gmail.com> (tiny change)
7469
7470 * configure.ac: Ensure MIG is available when building for GNU Hurd
7471 hosts.
7472 * configure: Regenerate.
7473
7474 2013-05-16 Joel Brobecker <brobecker@adacore.com>
7475
7476 * dwarf2read.c (set_cu_language): Add DW_LANG_UPC handling.
7477
7478 2013-05-16 Joel Brobecker <brobecker@adacore.com>
7479
7480 * ada-lang.c (ada_make_symbol_completion_list): Make sure
7481 all cleanups are done before returning from this function.
7482
7483 2013-05-15 Joel Brobecker <brobecker@adacore.com>
7484
7485 * utils.h: #include "exceptions.h".
7486 (enum errors): Remove partial declaration.
7487
7488 2013-05-15 Joel Brobecker <brobecker@adacore.com>
7489
7490 * gdbarch.sh (core_xfer_shared_libraries_aix): New method.
7491 * gdbarch.h, gdbarch.c: Regenerate.
7492 * corelow.c (core_xfer_partial): Add TARGET_OBJECT_LIBRARIES_AIX
7493 handling.
7494
7495 * rs6000-aix-tdep.h: New file.
7496 * Makefile.in (HFILES_NO_SRCDIR): Add rs6000-aix-tdep.h.
7497 * rs6000-aix-tdep.c: Include "rs6000-aix-tdep.h" and
7498 "xml-utils.h".
7499 (struct field_info, struct ld_info_desc): New types.
7500 (ld_info32_desc, ld_info64_desc): New static constants.
7501 (struct ld_info): New type.
7502 (rs6000_aix_extract_ld_info): New function.
7503 (rs6000_aix_shared_library_to_xml): Likewise.
7504 (rs6000_aix_ld_info_to_xml): Likewise.
7505 (rs6000_aix_core_xfer_shared_libraries_aix): Likewise.
7506 (rs6000_aix_init_osabi): Add call to
7507 set_gdbarch_core_xfer_shared_libraries_aix.
7508 * rs6000-nat.c: Add "rs6000-aix-tdep.h" include.
7509 Remove "xml-utils.h" include.
7510 (LdInfo): Delete typedef.
7511 (ARCH64_DECL, LDI_FIELD, LDI_NEXT, LDI_FD, LDI_FILENAME):
7512 Delete macros.
7513 (rs6000_ptrace_ldinfo): Change return type to gdb_byte *.
7514 Adjust code accordingly.
7515 (rs6000_core_ldinfo): Delete, folded into
7516 rs6000_aix_core_xfer_shared_libraries_aix.
7517 (rs6000_xfer_shared_library): Delete.
7518 (rs6000_xfer_shared_libraries): Reimplement.
7519
7520 2013-05-15 Markus Metzger <markus.t.metzger@intel.com>
7521
7522 * record.c (record_goto_cmdlist): New.
7523 (cmd_record_goto): Split into this ...
7524 (cmd_record_goto_begin): ... this
7525 (cmd_record_goto_end): ... and this.
7526 (_initialize_record): Change "record goto" to prefix command.
7527 Add commands for "record goto begin" and "record goto end".
7528 Add an alias for "record goto start" to "record goto begin".
7529
7530 2013-05-14 Jan Kratochvil <jan.kratochvil@redhat.com>
7531
7532 * linespec.c (convert_linespec_to_sals): New comment for
7533 SOURCE_FILENAME assignment.
7534
7535 2013-05-14 Jan Kratochvil <jan.kratochvil@redhat.com>
7536
7537 * cleanups.c (restore_my_cleanups): Replace gdb_assert by
7538 internal_warning.
7539
7540 2013-05-14 Tom Tromey <tromey@redhat.com>
7541
7542 * eval.c (parse_and_eval_long): Make 'exp' const.
7543 * value.h (parse_and_eval_long): Update.
7544
7545 2013-05-14 Tom Tromey <tromey@redhat.com>
7546
7547 * ui-file.c (gdb_fopen): Make arguments const.
7548 * ui-file.h (gdb_fopen): Make arguments const.
7549
7550 2013-05-14 Tom Tromey <tromey@redhat.com>
7551
7552 * remote.c (remote_set_trace_notes): Make arguments const.
7553 * target.c (update_current_target): Update cast.
7554 * target.h (to_set_trace_notes): Make arguments const.
7555
7556 2013-05-14 Tom Tromey <tromey@redhat.com>
7557
7558 * go32-nat.c (go32_terminal_info): Make 'args' const.
7559 * inferior.h (child_terminal_info): Update.
7560 * inflow.c (child_terminal_info): Make 'args' const.
7561 * target.c (default_terminal_info): Make 'args' const.
7562 (debug_to_terminal_save_ours): Likewise.
7563 * target.h (struct target_ops) <to_terminal_info>: Make argument
7564 const.
7565
7566 2013-05-13 Tom Tromey <tromey@redhat.com>
7567
7568 * gcore.c (create_gcore_bfd): Make 'filename' const.
7569 * gcore.h (create_gcore_bfd): Make 'filename' const.
7570 * record-full.c (record_full_save): Make 'recfilename' const.
7571 * target.c (target_save_record): Make 'filename' const.
7572 * target.h (struct target_ops) <to_save_record>: Make 'filename'
7573 const.
7574 (target_save_record): Likewise.
7575
7576 2013-05-13 Tom Tromey <tromey@redhat.com>
7577
7578 PR gdb/15338:
7579 * dwarf2read.c (dwarf2_record_block_ranges): Ensure that the
7580 ranges section has been read.
7581
7582 2013-05-13 Tom Tromey <tromey@redhat.com>
7583
7584 PR exp/15364:
7585 * eval.c (evaluate_subexp_standard) <STRUCTOP_STRUCT,
7586 STRUCTOP_PTR>: Return a not_lval value for
7587 EVAL_AVOID_SIDE_EFFECTS.
7588 * opencl-lang.c (evaluate_subexp_opencl): Return a not_lval value
7589 for EVAL_AVOID_SIDE_EFFECTS.
7590
7591 2013-05-13 Joel Brobecker <brobecker@adacore.com>
7592
7593 * rs6000-aix-tdep.c (rs6000_push_dummy_call): Convert
7594 floating point registers to register type before storing
7595 value.
7596 * rs6000-lynx178-tdep.c (rs6000_lynx178_push_dummy_call):
7597 Likewise.
7598
7599 2013-05-10 Joel Brobecker <brobecker@adacore.com>
7600 Tom Tromey <tromey@redhat.com>
7601
7602 * common/filestuff.c (mark_fd_no_cloexec, unmark_fd_no_cloexec):
7603 New functions.
7604 * common/filestuff.c (mark_fd_no_cloexec, unmark_fd_no_cloexec):
7605 Declare.
7606 * darwin-nat.c (darwin_pre_ptrace): Use mark_fd_no_cloexec.
7607 (darwin_ptrace_him): Use unmark_fd_no_cloexec.
7608 * inf-ttrace.c (do_cleanup_pfds): Use unmark_fd_no_cloexec.
7609 (inf_ttrace_prepare): Use mark_fd_no_cloexec.
7610
7611 2013-05-10 Freddie Chopin <freddie_chopin@op.pl>
7612 Tom Tromey <tromey@redhat.com>
7613
7614 PR build/15414:
7615 * configure: Rebuild.
7616 * configure.ac (build_warnings): Do not use -Wformat-nonliteral
7617 with -Wno-format.
7618
7619 2013-05-10 Pedro Alves <palves@redhat.com>
7620
7621 * remote.c (_initialize_remote): Fix spelling of
7622 qXfer:traceframe-info:read packet in packet config command.
7623
7624 2013-05-10 David Taylor <dtaylor@emc.com>
7625
7626 PR remote/15455
7627
7628 * remote.c (remote_trace_set_readonly_regions): Do not overwrite
7629 "QTro" at start of packet.
7630
7631 2013-05-10 Joel Brobecker <brobecker@adacore.com>
7632
7633 * solib-aix.c (solib_aix_relocate_section_addresses):
7634 For the .bss section action, apply the same offset as
7635 the .data section.
7636
7637 2013-05-10 Joel Brobecker <brobecker@adacore.com>
7638
7639 * solib-aix.c (solib_aix_relocate_section_addresses):
7640 Remove FIXME comment.
7641
7642 2013-05-10 Joel Brobecker <brobecker@adacore.com>
7643
7644 PR tdep/15420:
7645 * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
7646 New functions, directly copied from sparc-sol-thread.c.
7647 * sparc-sol-thread.c: Delete.
7648 * configure.ac: Remove code handling sparc-solaris-thread.c.
7649 * configure: Regenerate.
7650
7651 2013-05-10 Phil Muldoon <pmuldoon@redhat.com>
7652
7653 * stack.c (backtrace_command_1): Add "no-filters", and Python frame
7654 filter logic.
7655 (backtrace_command): Add "no-filters" option parsing.
7656 (_initialize_stack): Alter help to reflect "no-filters" option.
7657 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-framefilter.o
7658 (SUBDIR_PYTHON_SRCS): Add py-framefilter.c
7659 (py-frame.o): Add target
7660 * data-directory/Makefile.in (PYTHON_DIR): Add Python frame
7661 filter files.
7662 * python/python.h: Add new frame filter constants, and flag enum.
7663 (apply_frame_filter): Add definition.
7664 * python/python.c (apply_frame_filter): New non-Python
7665 enabled function.
7666 * python/py-utils.c (py_xdecref): New function.
7667 (make_cleanup_py_xdecref): Ditto.
7668 * python/py-objfile.c: Declare frame_filters dictionary.
7669 (objfpy_dealloc): Add frame_filters dealloc.
7670 (objfpy_new): Initialize frame_filters attribute.
7671 (objfile_to_objfile_object): Ditto.
7672 (objfpy_get_frame_filters): New function.
7673 (objfpy_set_frame_filters): New function.
7674 * python/py-progspace.c: Declare frame_filters dictionary.
7675 (pspy_dealloc): Add frame_filters dealloc.
7676 (pspy_new): Initialize frame_filters attribute.
7677 (pspacee_to_pspace_object): Ditto.
7678 (pspy_get_frame_filters): New function.
7679 (pspy_set_frame_filters): New function.
7680 * python/py-framefilter.c: New file.
7681 * python/lib/gdb/command/frame_filters.py: New file.
7682 * python/lib/gdb/frames.py: New file.
7683 * python/lib/gdb/__init__.py: Initialize global frame_filters
7684 dictionary
7685 * python/lib/gdb/FrameDecorator.py: New file.
7686 * python/lib/gdb/FrameIterator.py: New file.
7687 * mi/mi-cmds.c (mi_cmds): Add frame filters command.
7688 * mi/mi-cmds.h: Declare.
7689 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames): Add
7690 --no-frame-filter logic, and Python frame filter logic.
7691 (stack_enable_frame_filters): New function.
7692 (parse_no_frame_option): Ditto.
7693 (mi_cmd_stack_list_frames): Add --no-frame-filter and Python frame
7694 filter logic.
7695 (mi_cmd_stack_list_locals): Ditto.
7696 (mi_cmd_stack_list_args): Ditto.
7697 (mi_cmd_stack_list_variables): Ditto.
7698 * NEWS: Add frame filter note.
7699
7700 2013-05-09 Doug Evans <dje@google.com>
7701
7702 * symfile.c (syms_from_objfile_1): Delete args offsets, num_offsets.
7703 All callers updated.
7704 (syms_from_objfile): Ditto. Make static.
7705 (symbol_file_add_with_addrs): Renamed from
7706 symbol_file_add_with_addrs_or_offsets. Delete args offsets,
7707 num_offsets. All callers updated.
7708 * symfile.h (syms_from_objfile): Delete.
7709
7710 * symfile.c (decrement_reading_symtab): Add assert.
7711 (increment_reading_symtab): Ditto.
7712
7713 2013-05-09 Joel Brobecker <brobecker@adacore.com>
7714
7715 * source.c (forward_search_command): Replace call to getc
7716 by call to fgetc.
7717 (reverse_search_command): Likewise.
7718
7719 2013-05-08 Doug Evans <dje@google.com>
7720
7721 * psymtab.c (expand_symtabs_matching_via_partial): Fix file name
7722 matching test.
7723
7724 2013-05-08 Joel Brobecker <brobecker@adacore.com>
7725
7726 * sol-thread.c (info_cb): Factorize the code a little.
7727
7728 2013-05-08 Joel Brobecker <brobecker@adacore.com>
7729
7730 * sol-thread.c (info_cb): Rework the output of the "maintenance
7731 info sol-threads" command a bit.
7732
7733 2013-05-08 Joel Brobecker <brobecker@adacore.com>
7734
7735 * sol-thread.c (info_cb) [ti.ti_state == TD_THR_SLEEP]:
7736 Replace ti.ti_startfunc by ti.ti_pc.
7737
7738 2013-05-08 Joel Brobecker <brobecker@adacore.com>
7739
7740 * solib-aix.c (solib_aix_free_library_list): New function
7741 for the case where HAVE_LIBEXPAT is not defined.
7742
7743 2013-05-07 Sergio Durigan Junior <sergiodj@redhat.com>
7744
7745 PR breakpoints/15413:
7746 * breakpoint.c (condition_completer): Simplify the code to
7747 disconsider multiple locations of breakpoints when completing the
7748 "condition" command.
7749
7750 2013-05-07 Pierre Muller <muller@sourceware.org>
7751
7752 * common/linux-btrace.c: ARI fix: Include "gdb_wait.h"
7753 instead of <sys/wait.h>.
7754
7755 2013-05-07 Pierre Muller <muller@sourceware.org>
7756
7757 * nios2-tdep.c (nios2_dwarf_reg_to_regnum): ARI fix: remove
7758 trailing new line from warning message.
7759
7760 2013-05-07 Pierre Muller <muller@sourceware.org>
7761
7762 * contrib/ari/gdb_ari.sh (SOLIB_ADD, SOLIB_CREATE_INFERIOR_HOOK)
7763 (PC_SOLIB): Change type from ari_deprecate to ari_regression.
7764
7765 2013-05-07 Joel Brobecker <brobecker@adacore.com>
7766
7767 * rs6000-nat.c (rs6000_core_ldinfo): Remove '\n' at end of
7768 error message (ARI fix).
7769
7770 2013-05-07 Joel Brobecker <brobecker@adacore.com>
7771
7772 * features/library-list-aix.dtd: Replace library-list by
7773 library-list-aix.
7774 * rs6000-nat.c: Replace library-list by library-list-aix
7775 throughout.
7776 * solib-aix.c: Likewise.
7777
7778 2013-05-07 Joel Brobecker <brobecker@adacore.com>
7779
7780 * target.h (enum target_object) [TARGET_OBJECT_LIBRARIES_AIX]:
7781 Renames TARGET_OBJECT_AIX_LIBRARIES.
7782 * rs6000-nat.c: Replace TARGET_OBJECT_AIX_LIBRARIES with
7783 TARGET_OBJECT_LIBRARIES_AIX throughout.
7784 * solib-aix.c: Likwise.
7785
7786 2013-05-07 Yao Qi <yao@codesourcery.com>
7787
7788 * solib-dsbt.c (struct dsbt_info) <enable_break2_done>: Remove.
7789 (get_dsbt_info, enable_break, dsbt_clear_solib): Update.
7790
7791 2013-05-07 Yao Qi <yao@codesourcery.com>
7792
7793 * solib-dsbt.c (enable_break): Declare.
7794 (dsbt_current_sos): Remove call to enable_break2.
7795 (enable_break2): Rename to enable_break. Set solib breakpoint
7796 on '_dl_debug_state'.
7797 (enable_break): Remove.
7798
7799 2013-05-07 Luis Machado <lgustavo@codesourcery.com>
7800
7801 * ppc-linux-nat.c (ppc_linux_new_thread): Clear the new thread's
7802 debug state prior to replicating existing hardware watchpoints or
7803 breakpoints.
7804
7805 2013-05-07 Jan Kratochvil <jan.kratochvil@redhat.com>
7806
7807 * gcore.c (gcore_create_callback): Ignore sections with
7808 separate_debug_objfile_backlink != NULL.
7809
7810 2013-05-06 Sandra Loosemore <sandra@codesourcery.com>
7811 Andrew Jenner <andrew@codesourcery.com>
7812 Chung-Lin Tang <cltang@codesourcery.com>
7813 Julian Brown <julian@codesourcery.com>
7814
7815 Based on the nios2-elf port from Altera Corporation.
7816
7817 * Makefile.in (ALL_TARGET_OBS): Add nios2-tdep.o and
7818 nios2-linux-tdep.o.
7819 (HFILES_NO_SRCDIR): Add nios2-tdep.h.
7820 (ALLDEPFILES): Add nios2-tdep.c and nios2-linux-tdep.c.
7821 * configure.tgt: Add nios2*-*-linux* and nios2*-*-* targets.
7822 * nios2-tdep.h: New.
7823 * nios2-tdep.c: New.
7824 * nios2-linux-tdep.c: New.
7825 * features/Makefile (WHICH): Add nios2-linux.
7826 (nios2-linux-expedite): Set.
7827 * features/nios2-cpu.xml: New.
7828 * features/nios2.xml: New.
7829 * features/nios2-linux.xml: New.
7830 * features/nios2.c: New (autogenerated).
7831 * features/nios2-linux.c: New (autogenerated).
7832 * regformats/nios2-linux.dat: New (autogenerated).
7833 * NEWS (Changes since GDB 7.6): Add new Nios II targets
7834 and commands.
7835
7836 2013-05-06 Doug Evans <dje@google.com>
7837
7838 * symfile.c: Whitespace cleanup.
7839
7840 * solist.h (struct target_so_ops): New member clear_so.
7841 * solib-svr4.c (svr4_clear_so): New function.
7842 (_initialize_svr4_solib): Set svr4_so_ops.clear_so.
7843 * solib.c (clear_so): Renamed from free_so_symbols.
7844 All callers updated. Call target clear_so if it exists.
7845
7846 2013-05-06 Tom Tromey <tromey@redhat.com>
7847
7848 * ada-lang.c (ada_value_primitive_packed_val): Don't
7849 call value_incref.
7850 * value.c (set_value_parent): Incref the new parent and decref
7851 the old parent.
7852 (value_copy, value_primitive_field): Use set_value_parent.
7853
7854 2013-05-06 Tom Tromey <tromey@redhat.com>
7855
7856 * dwarf2loc.c (invalid_synthetic_pointer): Move earlier.
7857 (indirect_pieced_value): Call dwarf2_fetch_constant_bytes
7858 if needed.
7859 * dwarf2loc.h (dwarf2_fetch_constant_bytes): Declare.
7860 * dwarf2read.c (write_constant_as_bytes)
7861 (dwarf2_fetch_constant_bytes): New functions.
7862
7863 2013-05-06 Tom Tromey <tromey@redhat.com>
7864
7865 * dwarf2read.c (dwarf2_const_value_data): Remove unused
7866 parameters.
7867 (dwarf2_const_value_attr): Update.
7868
7869 2013-05-06 Tom Tromey <tromey@redhat.com>
7870
7871 * somread.c (som_symfile_offsets): Add 'const' to addrs.
7872 * machoread.c (macho_symfile_offsets): Add 'const' to addrs.
7873 * xcoffread.c (xcoff_symfile_offsets): Add 'const' to addrs.
7874 Remove declaration.
7875
7876 2013-05-06 Tom Tromey <tromey@redhat.com>
7877
7878 * dwarf2read.c (dwarf2_const_value_attr): Use 'obstack', not
7879 objfile's obstack.
7880
7881 2013-05-06 Doug Evans <dje@google.com>
7882
7883 * dbxread.c (process_one_symbol): Constify section_offsets parameter.
7884 * stabsread.h (process_one_symbol): Update declaration.
7885 * dwarf2read.c (dw2_relocate): Constify new_offsets, delta parameters.
7886 * elfread.c (elf_symfile_relocate_probe): Ditto.
7887 * psymtab.c (relocate_psymtabs): Ditto.
7888 * objfiles.c (objfile_relocate1): Constify new_offsets parameter.
7889 (objfile_relocate): Ditto.
7890 * objfiles.h (objfile_relocate): Update declaration.
7891 * symfile.c (relative_addr_info_to_section_offsets): Constify
7892 addrs parameter.
7893 (default_symfile_offsets): Ditto.
7894 (syms_from_objfile_1): Constify offsets parameter.
7895 (syms_from_objfile): Ditto.
7896 (symbol_file_add_with_addrs_or_offsets): Ditto.
7897 (symfile_map_offsets_to_segments): Constify data parameter.
7898 * symfile.h (struct quick_symbol_functions): Constify new_offsets,
7899 delta parameters of member relocate.
7900 (struct sym_probe_fns): Constify new_offsets,
7901 delta parameters of member sym_relocate_probe.
7902 (struct sym_fns): Constify section_addr_info parameter of member
7903 sym_offsets.
7904 (relative_addr_info_to_section_offsets): Update declaration.
7905 (default_symfile_offsets): Ditto.
7906 (syms_from_objfile): Ditto.
7907 (symfile_map_offsets_to_segments): Ditto.
7908
7909 * symfile.c (syms_from_objfile_1): Use correct section count when
7910 objfile->sf == NULL.
7911
7912 2013-05-06 Mike Frysinger <vapier@gentoo.org>
7913
7914 * common/linux-btrace.c (intel_supports_btrace): Fix indentation.
7915
7916 2013-05-06 Doug Evans <dje@google.com>
7917
7918 * psympriv.h (struct partial_symtab): Augment comment for member
7919 section_offsets.
7920
7921 2013-05-06 Joel Brobecker <brobecker@adacore.com>
7922
7923 Reimplement shared library support on ppc-aix...
7924 * target.h (TARGET_OBJECT_AIX_LIBRARIES): New target_object enum.
7925 * features/library-list-aix.dtd: New file.
7926 * solib-aix.h, solib-aix.c: New file.
7927 * rs6000-aix-tdep.c: #include "solib.h" and "solib-aix.h".
7928 (rs6000_find_toc_address_hook): Delete.
7929 (rs6000_push_dummy_call): Rewrite code setting the TOC value.
7930 (rs6000_aix_init_osabi): Register solib_aix_so_ops.
7931 * rs6000-nat.c: Remove "xcoffsolib.h" include. Include
7932 "xml-utils.h".
7933 (map_vmap, vmap_exec, vmap_ldinfo, add_vmap, objfile_symbol_add)
7934 (vmap_symtab, fixup_breakpoints): Delete.
7935 (rs6000_xfer_shared_libraries): New function.
7936 (rs6000_xfer_partial): Add TARGET_OBJECT_AIX_LIBRARIES handling.
7937 (vmap_secs, bss_data_overlap, vmap_add_symbols): Delete.
7938 (xcoff_relocate_symtab, xcoff_relocate_core): Delete.
7939 (rs6000_ptrace_ldinfo, rs6000_core_ldinfo)
7940 (rs6000_xfer_shared_library): New function.
7941 (find_toc_address): Delete.
7942 (_initialize_rs6000_nat): Do not set rs6000_find_toc_address_hook.
7943 * rs6000-tdep.h (rs6000_find_toc_address_hook): Remove.
7944 * xcoffread.c (record_minimal_symbol): Reloate symbol address
7945 before creating minimal symbol. Adjust function description
7946 accordingly.
7947 (scan_xcoff_symtab): Replace call to
7948 prim_record_minimal_symbol_and_info by call to
7949 record_minimal_symbol.
7950 (xcoff_symfile_offsets): Reimplement mostly as a wrapper
7951 around default_symfile_offsets.
7952 * configure.tgt: Add solib-aix.o to gdb_target_obs for
7953 powerpc-aix targets.
7954 * config/rs6000/nm-rs6000.h: Delete.
7955 * config/powerpc/aix.mh (NAT_FILE): Delete.
7956 (NATDEPFILES): Remove xcoffsolib.o.
7957 * Makefile.in (XMLFILES): Add library-list-aix.dtd.
7958 (ALL_TARGET_OBS): Add solib-aix.o.
7959 (HFILES_NO_SRCDIR): Remove xcoffsolib.h and
7960 config/rs6000/nm-rs6000.h. Add solib-aix.h.
7961 (ALLDEPFILES): Add solib-aix.c. Remove xcoffsolib.c.
7962 * xcoffsolib.h, xcoffsolib.c: Delete.
7963
7964 * solib.c (reload_shared_libraries): Remove reference to
7965 SOLIB_CREATE_INFERIOR_HOOK.
7966 * breakpoint.c (handle_solib_event): Remove reference to SOLIB_ADD.
7967 (disable_breakpoints_in_shlibs): Remove reference to PC_SOLIB.
7968 (momentary_bkpt_re_set): Replace SOLIB_ADD by solib_add in
7969 comment.
7970 * corelow.c (deprecated_core_resize_section_table): Delete.
7971 * exec.c: Remove include of xcoffsolib.h".
7972 (map_vmap, vmap): Delete.
7973 (exec_close_1): Remove references to vmap.
7974 (exec_file_attach): Remove vmap handling code, and reference
7975 to DEPRECATED_IBM6000_TARGET.
7976 (bfdsec_to_vmap): Delete.
7977 (exec_files_info): Remove block of code handling VMAP.
7978 * infcmd.c (post_create_inferior): Remove reference to
7979 SOLIB_CREATE_INFERIOR_HOOK and SOLIB_ADD.
7980 * infrun.c (follow_exec): Remove reference to
7981 SOLIB_CREATE_INFERIOR_HOOK.
7982 * stack.c (print_frame): Remove reference to PC_SOLIB.
7983 * solib-dsbt.c (dsbt_current_sos): Adjust comment.
7984 (dsbt_relocate_main_executable): Likewise.
7985 * solib-frv.c (frv_current_sos): Likewise.
7986
7987 2013-05-06 Joel Brobecker <brobecker@adacore.com>
7988
7989 * sol-thread.c (rw_common): Cast BUF to "gdb_byte *" in calls
7990 to target_write_memory and target_read_memory.
7991
7992 2013-05-06 Joel Brobecker <brobecker@adacore.com>
7993
7994 * darwin-nat.c (darwin_setup_fake_stop_event): New function.
7995 (darwin_attach): Adjust using darwin_setup_fake_stop_event.
7996
7997 2013-05-06 Joel Brobecker <brobecker@adacore.com>
7998
7999 * darwin-nat.c: Replace all "%x" instances in format strings
8000 into "0x%x" throughout.
8001
8002 2013-05-06 Joel Brobecker <brobecker@adacore.com>
8003
8004 * darwin-nat.c (darwin_mourn_inferior): Replace call to
8005 gdb_assert by call to MACH_CHECK_ERROR.
8006 (darwin_attach_pid): Raise an error rather than a failed
8007 assertion when various system calls failed. Report a warning
8008 instead of raising a failed assertion when PREV_NOT is not NULL
8009 after call to mach_port_request_notification.
8010 (darwin_ptrace_me): Raise an error rather than a failed
8011 assertion when read returns nonzero.
8012
8013 2013-05-06 Joel Brobecker <brobecker@adacore.com>
8014
8015 * amd64-darwin-tdep.c: Remove #include "gdb_assert.h".
8016
8017 2013-05-05 Jan Kratochvil <jan.kratochvil@redhat.com>
8018
8019 * cleanups.c (restore_my_cleanups): New gdb_assert for SENTINEL_CLEANUP.
8020
8021 2013-05-05 Jan Kratochvil <jan.kratochvil@redhat.com>
8022
8023 * event-top.c (display_gdb_prompt): Call missing do_cleanups.
8024 * infcmd.c (get_return_value) <!stop_regs>: Do not overwrite CLEANUP.
8025 * symfile.c (symfile_bfd_open): New variable back_to. Do not leave
8026 a stale cleanup. Fix double free of NAME.
8027
8028 2013-05-04 Eli Zaretskii <eliz@gnu.org>
8029
8030 * windows-nat.c (windows_delete_thread): Accept an additional
8031 argument, the thread's exit code, and announce thread death when
8032 print_thread_events is non-zero and we are deleting a thread that
8033 is not the main thread.
8034 (get_windows_debug_event): Pass thread exit code to
8035 windows_delete_thread.
8036
8037 2013-05-03 Kevin Buettner <kevinb@redhat.com>
8038
8039 * v850-tdep.c (elf-bfd.h, elf/v850.h): Include.
8040 (R_149_REGNUM, E_NUM_OF_V850E2_REGS, E_SELID_1_R0_REGNUM)
8041 (E_SELID_1_R31_REGNUM, E_SELID_2_R0_REGNUM, E_SELID_2_R31_REGNUM)
8042 (E_SELID_3_R0_REGNUM, E_SELID_3_R31_REGNUM, E_SELID_4_R0_REGNUM)
8043 (E_SELID_4_R31_REGNUM, E_SELID_5_R0_REGNUM, E_SELID_5_R31_REGNUM)
8044 (E_SELID_6_R0_REGNUM, E_SELID_6_R31_REGNUM, E_SELID_7_R0_REGNUM, E_SELID_7_R31_REGNUM)
8045 (E_VR0_REGNUM, E_VR31_REGNUM, E_NUM_OF_V850E3V5_REGS): Define.
8046 (v850_abi, V850_ABI_GCC, V850_ABI_RH850): New enum and constants.
8047 (gdbarch_tdep): New struct.
8048 (v850e2_register_name): Use E_NUM_OF_V850E2_REGS instead of
8049 E_NUM_REGS.
8050 (v850e3v5_register_name): New function.
8051 (v850_register_type): v850e3v5 vector registers are 64-bits wide.
8052 (v850_use_struct_convention): Add `gdbarch' parameter. Add new
8053 code handling the struct return conventions for the RH850 ABI.
8054 Update all callers.
8055 (v850_eight_byte_align_p): New function.
8056 (v850_push_call_dummy): Push structs by value, not by reference
8057 for the RH850 ABI. Add support for eight byte alignment.
8058 (v850_dbtrap_breakpoint_from_pc): New function.
8059 (v850_gdbarch_init): Add ABI detection code. Register
8060 v850e3v5_register_name for the v850e3v5 architecture. Set the
8061 number of registers for v850e3v5. Register
8062 v850_dbtrap_breakpoint_from_pc as appropriate.
8063 (_initialize_gdbarch_init): Registration bfd_arch_v850_rh850.
8064
8065 2013-05-03 Doug Evans <dje@google.com>
8066
8067 * objfiles.c (objfile_relocate): Use gdb_bfd_count_sections instead
8068 of bfd_count_sections.
8069 * solib-target.c (solib_target_relocate_section_addresses): Ditto.
8070 * symfile.c (default_symfile_offsets): Ditto.
8071 (syms_from_objfile_1): Ditto. Make dummy addrs list an array of
8072 one entry, not bfd_count_sections entries.
8073
8074 2013-05-03 Kevin Buettner <kevinb@redhat.com>
8075
8076 * rl78-tdep.c (rl78_register_reggroup_p): Include SP in the
8077 `save' and `restore' register groups. Don't include SPL
8078 or SPH in these groups.
8079 (rl78_dwarf_reg_to_regnum): Adjust mapping for
8080 RL78_PC_REGNUM. Add mappings for RL78_PSW_REGNUM,
8081 RL78_ES_REGNUM, and RL78_CS_REGNUM.
8082 (rl78_gdbarch_init): Set `dwarf2_addr_size' to 4. Invoke
8083 dwarf2_append_unwinders().
8084
8085 2013-05-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
8086
8087 * break-catch-sig.c (signal_catchpoint_breakpoint_hit): Do not
8088 ignore SIGINT and SIGTRAP in case these internal signals are
8089 caught explicitely.
8090
8091 2013-05-01 Joel Brobecker <brobecker@adacore.com>
8092
8093 * darwin-nat.c (darwin_read_write_inferior): Change types
8094 of parameters rdaddr and wraddr to "gdb_byte *". Change type
8095 of copy_count to "mach_msg_type_number_t".
8096 (darwin_read_dyld_info): Change type of parameter
8097 rdaddr to "gdb_byte *".
8098
8099 2013-05-01 Joel Brobecker <brobecker@adacore.com>
8100
8101 * solib-ia64-hpux.c (ia64_hpux_read_dynamic_info): Change cast
8102 of &info->load_map from "char *" to "gdb_byte *".
8103
8104 2013-05-01 Joel Brobecker <brobecker@adacore.com>
8105
8106 * ia64-tdep.c (ia64_access_fpreg): Change cast of val
8107 from "char *" to "gdb_byte *".
8108 (ia64_access_rse_fpreg, ia64_access_mem): Likewise.
8109
8110 2013-04-30 Doug Evans <dje@google.com>
8111
8112 * dwarf2read.c (lookup_dwo_unit): Return NULL if DWO not found.
8113 (init_cutu_and_read_dies): Flag a complaint, not error, for bad
8114 DWO stub. If DWO isn't found, just use stub.
8115 (lookup_dwo_cutu): Don't try DWO if there's a DWP file.
8116
8117 * dwarf2read.c (dw2_find_symbol_file): Initialize filename before
8118 calling init_cutu_and_read_dies.
8119
8120 2013-03-27 Walfred Tedeschi <walfred.tedeschi@intel.com>
8121
8122 * target-descriptions.c (maint_print_c_tdesc_cmd):
8123 Add case to parse structures as register types and
8124 bitfields.
8125
8126 2013-04-30 Walfred Tedeschi <walfred.tedeschi@intel.com>
8127
8128 * MAINTAINERS (Write After Approval): Add myself to the list.
8129
8130 2013-04-30 Joel Brobecker <brobecker@adacore.com>
8131
8132 * sol-thread.c (rw_common): Change type of parameter "buf"
8133 to "gdb_byte *".
8134 (ps_pdwrite, ps_ptwrite): Cast parameter "buf" in call to
8135 rw_common to "gdb_byte *" instead of "char *".
8136
8137 2013-04-30 Joel Brobecker <brobecker@adacore.com>
8138
8139 * sol-thread.c (info_cb) [ti.ti_startfunc != 0]: Change type
8140 of local variable msym to const struct bound_minimal_symbol.
8141 Adjust use accordingly.
8142 [ti.ti_state == TD_THR_SLEEP]: Likewise.
8143
8144 2013-04-30 Samuel Thibault <samuel.thibault@gnu.org>
8145
8146 * i386gnu-nat.c (CREG_OFFSET): New macro.
8147 (creg_offset): New array.
8148 (CREG_ADDR): Use creg_offset instead of reg_offset.
8149
8150 2013-04-30 Joel Brobecker <brobecker@adacore.com>
8151
8152 * mep-tdep.c (mep_write_pc): Delete.
8153 (mep_gdbarch_init): Remove call to set_gdbarch_write_pc.
8154 Add call to set_gdbarch_pc_regnum.
8155
8156 2013-04-30 Joel Brobecker <brobecker@adacore.com>
8157
8158 * common/filestuff.c: Replace #include <dirent.h> by
8159 #include "gdb_dirent.h".
8160
8161 2013-04-30 Joel Brobecker <brobecker@adacore.com>
8162
8163 * common/filestuff.c: Replace #include <sys/stat.h> by
8164 #include "gdb_stat.h".
8165
8166 2013-04-29 Pierre Muller <muller@sourceware.org>
8167
8168 * dwarf2read.c (handle_DW_AT_stmt_list): Avoid ARI warning for
8169 editCase function rule.
8170 (get_DW_AT_signature_type): Likewise.
8171
8172 2013-04-29 Joel Brobecker <brobecker@adacore.com>
8173
8174 * m32r-tdep.c (m32r_write_pc): Delete.
8175 (m32r_gdbarch_init): Remove call to set_gdbarch_write_pc.
8176 Add call to set_gdbarch_pc_regnum.
8177
8178 2013-04-29 Pierre Muller <muller@sourceware.org>
8179
8180 * ./contrib/ari/gdb_ari.sh (editCase rule): Fix spelling error.
8181
8182 2013-04-29 Joel Brobecker <brobecker@adacore.com>
8183
8184 * dwarf2read.c (get_DW_AT_signature_type): Add ARI marker.
8185
8186 2013-04-28 Yao Qi <yao@codesourcery.com>
8187
8188 * solib-dsbt.c (fetch_loadmap): Re-indent.
8189 (displacement_from_map, enable_break2): Likewise.
8190 (dsbt_relocate_section_addresses): Likewise.
8191
8192 2013-04-26 Joel Brobecker <brobecker@adacore.com>
8193
8194 GDB 7.6 released.
8195
8196 2013-04-25 Andreas Kaufmann <Andreas.Kaufmann@synopsys.com>
8197
8198 PR corefiles/14983:
8199 * dwarf2read.c (process_full_comp_unit): Always create a static
8200 block.
8201
8202 2013-04-25 Hui Zhu <hui@codesourcery.com>
8203
8204 * breakpoint.c (build_target_command_list): Change loc->cond_bytecode
8205 to loc->cmd_bytecode.
8206
8207 2013-04-24 Doug Evans <dje@google.com>
8208
8209 * dwarf2read.c (setup_type_unit_groups): Fix comment.
8210
8211 2013-04-22 Keith Seitz <keiths@redhat.com>
8212
8213 * tracepoint.c (trace_save): Call the writer's start method.
8214
8215 2013-04-24 Muhammad Bilal <mbilal@codesourcery.com>
8216
8217 PR gdb/10462
8218 * cli/cli-decode.c (lookup_command): Show an error if there is no space
8219 before argument.
8220
8221 2013-04-23 Tom Tromey <tromey@redhat.com>
8222
8223 * common/filestuff.c: Check USE_WIN32API before including
8224 sys/socket.h.
8225 (HAVE_F_GETFD): New define.
8226 (mark_cloexec): Check HAVE_F_GETFD.
8227 (gdb_open_cloexec): Change 'mode' to unsigned long.
8228 (gdb_socketpair_cloexec): Check HAVE_SOCKETPAIR.
8229 (gdb_pipe_cloexec): Check HAVE_PIPE.
8230 * common/filestuff.h (gdb_open_cloexec): Change 'mode' to unsigned
8231 long.
8232
8233 2013-04-23 Hui Zhu <hui@codesourcery.com>
8234
8235 PR gdb/15293
8236 * breakpoint.c (bpstat_what): Add BPSTAT_WHAT_SINGLE to bp_dprintf.
8237
8238 2013-04-23 Hui Zhu <hui@codesourcery.com>
8239
8240 PR gdb/15165
8241 * breakpoint.c (dprintf_print_recreate): New.
8242 (save_breakpoints): Let it not save dprintf commands.
8243 (initialize_breakpoint_ops): Set dprintf_print_recreate.
8244
8245 2013-04-22 Tom Tromey <tromey@redhat.com>
8246
8247 PR gdb/7912:
8248 * Makefile.in (SFILES): Add filestuff.c
8249 (COMMON_OBS): Add filestuff.o.
8250 (filestuff.o): New target.
8251 * auto-load.c (auto_load_objfile_script_1): Use
8252 gdb_fopen_cloexec.
8253 * auxv.c (procfs_xfer_auxv): Use gdb_open_cloexec.
8254 * cli/cli-cmds.c (shell_escape): Call close_most_fds.
8255 * cli/cli-dump.c (fopen_with_cleanup): Use gdb_fopen_cloexec.
8256 * common/agent.c (gdb_connect_sync_socket): Use
8257 gdb_socket_cloexec.
8258 * common/filestuff.c: New file.
8259 * common/filestuff.h: New file.
8260 * common/linux-osdata.c (linux_common_core_of_thread)
8261 (command_from_pid, commandline_from_pid, print_source_lines)
8262 (linux_xfer_osdata_shm, linux_xfer_osdata_sem)
8263 (linux_xfer_osdata_msg, linux_xfer_osdata_modules): Use
8264 gdb_fopen_cloexec.
8265 * common/linux-procfs.c (linux_proc_get_int)
8266 (linux_proc_pid_has_state): Use gdb_fopen_cloexec.
8267 * config.in, configure: Rebuild.
8268 * configure.ac: Don't check for sys/socket.h. Check for
8269 fdwalk, pipe2.
8270 * corelow.c (core_open): Use gdb_open_cloexec.
8271 * dwarf2read.c (write_psymtabs_to_index): Use gdb_fopen_cloexec.
8272 * fork-child.c (fork_inferior): Call close_most_fds.
8273 * gdb_bfd.c (gdb_bfd_open): Use gdb_open_cloexec.
8274 * inf-child.c (inf_child_fileio_readlink): Use gdb_open_cloexec.
8275 * linux-nat.c (linux_nat_thread_name, linux_proc_pending_signals):
8276 Use gdb_fopen_cloexec.
8277 (linux_proc_xfer_partial, linux_proc_xfer_spu): Use
8278 gdb_open_cloexec.
8279 (linux_async_pipe): Use gdb_pipe_cloexec.
8280 * remote-fileio.c (remote_fileio_func_open): Use
8281 gdb_open_cloexec.
8282 * remote.c (remote_file_put, remote_file_get): Use
8283 gdb_fopen_cloexec.
8284 * ser-pipe.c (pipe_open): Use gdb_socketpair_cloexec,
8285 close_most_fds.
8286 * ser-tcp.c (net_open): Use gdb_socket_cloexec.
8287 * ser-unix.c (hardwire_open): Use gdb_open_cloexec.
8288 * solib.c (solib_find): Use gdb_open_cloexec.
8289 * source.c (openp, find_and_open_source): Use gdb_open_cloexec.
8290 * tracepoint.c (tfile_start): Use gdb_fopen_cloexec.
8291 (tfile_open): Use gdb_open_cloexec.
8292 * tui/tui-io.c (tui_initialize_io): Use gdb_pipe_cloexec.
8293 * ui-file.c (gdb_fopen): Use gdb_fopen_cloexec.
8294 * xml-support.c (xml_fetch_content_from_file): Use
8295 gdb_fopen_cloexec.
8296 * main.c (captured_main): Call notice_open_fds.
8297
8298 2013-04-22 Edjunior Machado <emachado@linux.vnet.ibm.com>
8299
8300 * remote-sim.c (dump_mem): Change the type of 'buf' parameter from
8301 'char *' to 'gdb_byte *'.
8302 (gdbsim_store_register): Change the type of 'tmp' from 'char' to
8303 'gdb_byte'.
8304
8305 2013-04-22 Yao Qi <yao@codesourcery.com>
8306
8307 * infrun.c: Fix typo in comment.
8308
8309 2013-04-22 Andrew Haley <aph@redhat.com>
8310
8311 * arm-tdep.c (BranchDest): Cast result as "unsigned long",
8312 instead of "long".
8313
8314 2013-04-20 Yao Qi <yao@codesourcery.com>
8315
8316 * ctf.c (ctf_fetch_registers): Change the type of 'regs' from
8317 'char *' to 'gdb_byte *'. Cast the return value of
8318 'bt_ctf_get_char_array' to 'gdb_byte *'.
8319
8320 2013-04-19 Pedro Alves <palves@redhat.com>
8321
8322 * configure.ac (build_warnings): Replace -Wno-pointer-sign with
8323 -Wpointer-sign.
8324 * configure: Regenerate.
8325
8326 2013-04-19 Pedro Alves <palves@redhat.com>
8327
8328 * ser-tcp.c (net_read_prim): Cast second argument to recv to
8329 'void *'.
8330
8331 2013-04-19 Pedro Alves <palves@redhat.com>
8332
8333 * monitor.c (monitor_write_memory, monitor_write_memory_bytes):
8334 Change type of 'myaddr' parameter to gdb_byte pointer.
8335 (monitor_write_memory_longlongs): Likewise. Cast 'myaddr' pointer
8336 to 'long long' pointer instead of to 'unsigned long long'.
8337 (monitor_write_memory_block, monitor_read_memory_single)
8338 (monitor_read_memory): Change type of 'myaddr' parameter to
8339 gdb_byte pointer.
8340
8341 2013-04-19 Pedro Alves <palves@redhat.com>
8342
8343 * record.c (validate_history_size): Make parameter 'setting'
8344 unsigned.
8345
8346 2013-04-19 Pedro Alves <palves@redhat.com>
8347
8348 * ctf.c (ctf_write_uploaded_tsv, ctf_write_uploaded_tp): Add casts
8349 to 'gdb_byte *'.
8350
8351 2013-04-19 Pedro Alves <palves@redhat.com>
8352
8353 * cp-valprint.c (cp_print_class_member): Change type of 'fieldno'
8354 local to int.
8355
8356 2013-04-19 Pedro Alves <palves@redhat.com>
8357
8358 * ada-lang.c (print_it_exception): Add cast to gdb_byte *.
8359 * ada-tasks.c (read_fat_string_value): Likewise.
8360
8361 2013-04-19 Pedro Alves <palves@redhat.com>
8362
8363 * dwarf2-frame.c (execute_cfa_program): Make 'bytes_read' local
8364 unsigned. Pass 'tmp' to safe_read_uleb128 instead of the signed
8365 'offset', and adjust.
8366
8367 2013-04-19 Pedro Alves <palves@redhat.com>
8368
8369 * dwarf2read.c (dwarf2_get_dwz_file): Add cast to const char *.
8370 (read_index_from_section): Add cast to 'char *'.
8371
8372 2013-04-19 Pedro Alves <palves@redhat.com>
8373
8374 * xcoffread.c (xcoff_initial_scan): Add cast to 'char *'.
8375
8376 2013-04-19 Pedro Alves <palves@redhat.com>
8377
8378 * coff-pe-read.c (read_pe_exported_syms): Handle strings as char.
8379
8380 2013-04-19 Pedro Alves <palves@redhat.com>
8381
8382 * record-full.c (record_full_get_bookmark): Change local 'ret'
8383 type to char * and add cast to gdb_byte *.
8384 (record_full_goto_bookmark): Handle 'bookmark' argument as a
8385 string.
8386 * reverse.c (goto_bookmark_command): Add casts to gdb_byte *.
8387
8388 2013-04-19 Pedro Alves <palves@redhat.com>
8389
8390 * python/py-inferior.c (infpy_write_memory): Add cast to gdb_byte
8391 * python/py-prettyprint.c (print_string_repr): Change type of
8392 'output' local to char *. Add cast to gdb_byte * in
8393 LA_PRINT_STRING call.
8394 (print_children): Change type of 'output' local to char *.
8395 * python/py-value.c (valpy_string): Add cast to const char * in
8396 PyUnicode_Decode call.
8397
8398 2013-04-19 Pedro Alves <palves@redhat.com>
8399
8400 * remote-mips.c (mips_cksum): Rename 'data' parameter to 'datastr'
8401 and change its type to 'const char *'. Adjust.
8402 (mips_send_packet): Add cast to 'char *', and remove cast to
8403 'unsigned char *'.
8404 (mips_receive_packet): Remove cast to 'unsigned char *'.
8405 (mips_load_srec): Use bfd_byte.
8406 (pmon_makeb64, pmon_zeroset): Make 'chksum' parameter unsigned.
8407 (pmon_checkset): Make 'value' parameter unsigned.
8408
8409 2013-04-19 Pedro Alves <palves@redhat.com>
8410
8411 * common/agent.c (agent_run_command): Add cast to gdb_byte *.
8412
8413 2013-04-19 Pedro Alves <palves@redhat.com>
8414
8415 * remote.c (remote_write_bytes_aux, compare_sections_command)
8416 (remote_read_qxfer)
8417 (remote_search_memory, remote_hostio_pwrite, remote_hostio_pread)
8418 (remote_hostio_readlink, remote_bfd_iovec_pread)
8419 (remote_set_trace_notes): Use gdb_byte when RSP buffer is used as
8420 binary buffer, and char when buffer is used as string.
8421 * tracepoint.c (encode_source_string, tfile_write_uploaded_tp)
8422 (trace_save, tfile_open, traceframe_walk_blocks)
8423 (tfile_fetch_registers): Likewise.
8424
8425 2013-04-19 Pedro Alves <palves@redhat.com>
8426
8427 * ser-base.c (ser_base_write): Change prototype -- take 'void *'
8428 buffer and size_t size. Adjust.
8429 * ser-base.h (ser_base_write): Adjust.
8430 * ser-go32.c (cnts): Change type to size_t.
8431 (dos_write): Change prototype -- take 'void *'
8432 buffer and size_t size. Adjust.
8433 (dos_info): Print elements of 'cnts' as unsigned long.
8434 * serial.c (serial_write): Likewise.
8435 * serial.h (serial_write): Adjust.
8436 (struct serial_ops) <write>: Change prototype -- take 'void *'
8437 buffer and size_t size. Adjust.
8438
8439 2013-04-19 Pedro Alves <palves@redhat.com>
8440
8441 * c-lang.c (evaluate_subexp_c): Cast result of obstack_base to
8442 gdb_byte *.
8443 * linux-tdep.c (linux_make_mappings_corefile_notes): Likewise.
8444
8445 2013-04-19 Pedro Alves <palves@redhat.com>
8446
8447 * alpha-tdep.c (alpha_extract_return_value): Use
8448 regcache_cooked_read_unsigned to read 'v0'.
8449
8450 2013-04-19 Pedro Alves <palves@redhat.com>
8451
8452 * xtensa-tdep.c (execute_l32e, execute_s32e): Change type of
8453 parameters 'at', 'as' and 'offset' to uint32_t.
8454
8455 2013-04-19 Pedro Alves <palves@redhat.com>
8456
8457 * aarch64-tdep.c (aarch64_analyze_prologue): Change type of local
8458 'is64' to signed 'int'.
8459
8460 2013-04-19 Pedro Alves <palves@redhat.com>
8461
8462 * s390-tdep.c (is_rs, is_rsy, is_rx, is_rxy): Change type of 'd2'
8463 parameter to int *.
8464
8465 2013-04-19 Pedro Alves <palves@redhat.com>
8466
8467 * ppc-linux-tdep.c (ppc_skip_trampoline_code): Change local
8468 'insnbuf' buffer type to unsigned int[].
8469
8470 2013-04-19 Pedro Alves <palves@redhat.com>
8471
8472 * mips-tdep.c (mips_read_pc): Change local 'pc' type to LONGEST.
8473
8474 2013-04-19 Pedro Alves <palves@redhat.com>
8475
8476 * mep-tdep.c (mep_get_insn): Change 'insn' parameter type to
8477 unsigned long *.
8478
8479 2013-04-19 Pedro Alves <palves@redhat.com>
8480
8481 * alpha-tdep.c (heuristic_fence_post): Change type to int.
8482 (alpha_heuristic_proc_start): Adjust to check -1 instead of
8483 UINT_MAX.
8484 * mips-tdep.c (heuristic_fence_post): Change type to int.
8485 (heuristic_proc_start): Adjust to check -1 instead of UINT_MAX.
8486
8487 2013-04-19 Pedro Alves <palves@redhat.com>
8488
8489 * cris-tdep.c (usr_cmd_cris_version): Make unsigned.
8490 (struct gdbarch_tdep) <cris_version>: Make unsigned.
8491 (cris_spec_reg_applicable, cris_gdbarch_init): Adjust locals.
8492
8493 2013-04-19 Pedro Alves <palves@redhat.com>
8494
8495 * avr-tdep.c (avr_io_reg_read_command): New local 'bufstr'. Use
8496 it to get a string view of the byte buffer.
8497 * i386-cygwin-tdep.c (core_process_module_section): Change local 'buf'
8498 type to gdb_byte *. Adjust.
8499 * linux-tdep.c (linux_info_proc, linux_find_memory_regions_full):
8500 Change local to char *.
8501 * solib-darwin.c (find_program_interpreter): Change return type to
8502 char *. Adjust.
8503 (darwin_solib_get_all_image_info_addr_at_init): Adjust.
8504 * solib-dsbt.c (enable_break2): Change local 'buf' to char *.
8505 * solib-frv.c (enable_break2): Change local 'buf' to char *.
8506 * solib-spu.c (spu_current_sos): Add gdb_byte * cast.
8507 * solib-svr4.c (find_program_interpreter): Change return type to
8508 char *. Adjust.
8509 (enable_break): Change local 'interp_name' to char *.
8510 * spu-multiarch.c (spu_xfer_partial): Add cast to 'char *'.
8511 * spu-tdep.c (spu_pseudo_register_read_spu): Add cast to 'char *'.
8512 (spu_pseudo_register_write_spu): Use char for string buffer.
8513 Adjust.
8514 (info_spu_event_command, info_spu_signal_command): Add casts to
8515 'char *'.
8516
8517 2013-04-19 Pedro Alves <palves@redhat.com>
8518
8519 * aarch64-tdep.c (aarch64_default_breakpoint): Change type to
8520 gdb_byte[].
8521 (aarch64_breakpoint_from_pc): Change return type to gdb_byte *.
8522 * ada-lang.c (ada_value_assign): Use gdb_byte.
8523 * alphanbsd-tdep.c (sigtramp_retcode): Change type to gdb_byte[].
8524 (alphanbsd_sigtramp_offset): Use gdb_byte.
8525 * arm-linux-tdep.c (arm_linux_arm_le_breakpoint)
8526 (arm_linux_arm_be_breakpoint, eabi_linux_arm_le_breakpoint)
8527 (eabi_linux_arm_be_breakpoint, arm_linux_thumb_be_breakpoint)
8528 (arm_linux_thumb_le_breakpoint, arm_linux_thumb2_be_breakpoint)
8529 (arm_linux_thumb2_le_breakpoint): Change type to gdb_byte[].
8530 * arm-tdep.c (arm_stub_unwind_sniffer)
8531 (arm_displaced_init_closure): Use gdb_byte.
8532 (arm_default_arm_le_breakpoint, arm_default_arm_be_breakpoint)
8533 (arm_default_thumb_le_breakpoint)
8534 (arm_default_thumb_be_breakpoint): Change type to gdb_byte[].
8535 * arm-tdep.h (struct gdbarch_tdep) <arm_breakpoint,
8536 thumb_breakpoint, thumb2_breakpoint>: Change type to gdb_byte *.
8537 * arm-wince-tdep.c (arm_wince_le_breakpoint)
8538 (arm_wince_thumb_le_breakpoint): Change type to gdb_byte[].
8539 * armnbsd-tdep.c (arm_nbsd_arm_le_breakpoint)
8540 (arm_nbsd_arm_be_breakpoint, arm_nbsd_thumb_le_breakpoint)
8541 (arm_nbsd_thumb_be_breakpoint): Change type to gdb_byte[].
8542 * armobsd-tdep.c (arm_obsd_thumb_le_breakpoint)
8543 (arm_obsd_thumb_be_breakpoint): Change type to gdb_byte[].
8544 * cris-tdep.c (push_stack_item, cris_push_dummy_call)
8545 (cris_store_return_value, cris_extract_return_value): Use
8546 gdb_byte.
8547 (constraint): Change type of parameter to char * from signed
8548 char*. Use gdb_byte.
8549 * dwarf2loc.c (read_pieced_value, write_pieced_value): Change type
8550 of local buffer to gdb_byte *.
8551 * dwarf2read.c (read_index_from_section): Use gdb_byte.
8552 (create_dwp_hash_table): Change type of locals to gdb_byte *.
8553 (add_address_entry): Change type of local buffer to gdb_byte[].
8554 * frv-tdep.c (frv_adjust_breakpoint_address, find_func_descr)
8555 (frv_push_dummy_call): Use gdb_byte.
8556 * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code)
8557 (hppa_hpux_supply_ss_fpblock, hppa_hpux_supply_ss_wide)
8558 (hppa_hpux_supply_save_state): Use gdb_byte.
8559 * hppa-tdep.c (hppa32_push_dummy_call)
8560 (hppa64_convert_code_addr_to_fptr): Use gdb_byte.
8561 * ia64-tdep.c (extract_bit_field, replace_bit_field)
8562 (slotN_contents, replace_slotN_contents): Change type of parameter
8563 to gdb_byte *.
8564 (fetch_instruction, ia64_pseudo_register_write)
8565 (ia64_register_to_value, ia64_value_to_register)
8566 (ia64_extract_return_value, ia64_store_return_value)
8567 (ia64_push_dummy_call): Use gdb_byte.
8568 * m32c-tdep.c (m32c_return_value): Remove cast.
8569 * m68hc11-tdep.c (m68hc11_pseudo_register_write)
8570 (m68hc11_push_dummy_call, m68hc11_store_return_value): Use
8571 gdb_byte.
8572 * mipsnbsd-tdep.c (mipsnbsd_get_longjmp_target): Use gdb_byte.
8573 * mn10300-tdep.c (mn10300_store_return_value)
8574 (mn10300_breakpoint_from_pc, mn10300_push_dummy_call): Use
8575 gdb_byte.
8576 * moxie-tdep.c (moxie_process_readu): Use gdb_byte.
8577 (moxie_process_record): Remove casts.
8578 * ppc-ravenscar-thread.c (supply_register_at_address)
8579 (ppc_ravenscar_generic_store_registers): Use gdb_byte.
8580 * ravenscar-thread.c (get_running_thread_id): Use gdb_byte.
8581 * remote-m32r-sdi.c (m32r_fetch_register): Use gdb_byte.
8582 * remote-mips.c (mips_xfer_memory): Use gdb_byte.
8583 * remote.c (compare_sections_command): Use gdb_byte.
8584 * score-tdep.c (score7_free_memblock): Change type of parameter to
8585 gdb_byte *.
8586 * sh-tdep.c (sh_justify_value_in_reg): Change return type to
8587 gdb_byte *. Use gdb_byte.
8588 (sh_push_dummy_call_fpu): Use gdb_byte.
8589 (sh_extract_return_value_nofpu, sh_extract_return_value_fpu)
8590 (sh_store_return_value_nofpu, sh_store_return_value_fpu)
8591 (sh_register_convert_to_virtual, sh_register_convert_to_raw):
8592 Change parameter type to 'gdb_byte *'. Use gdb_byte.
8593 (sh_pseudo_register_read, sh_pseudo_register_write): Use gdb_byte.
8594 * sh64-tdep.c (sh64_push_dummy_call): Use gdb_byte.
8595 (sh64_store_return_value, sh64_register_convert_to_virtual):
8596 Change parameter type to 'gdb_byte *'. Use gdb_byte.
8597 (sh64_pseudo_register_write): Use gdb_byte.
8598 * solib-darwin.c (darwin_current_sos): Add casts to 'gdb_byte *'.
8599 * solib-irix.c (fetch_lm_info): Likewise. Use gdb_byte for byte
8600 buffer.
8601 (irix_current_sos): Use gdb_byte.
8602 * solib-som.c (som_current_sos): Use gdb_byte.
8603 * sparc-ravenscar-thread.c (supply_register_at_address)
8604 (sparc_ravenscar_generic_store_registers): Use gdb_byte.
8605 * spu-multiarch.c (spu_xfer_partial): Add cast to 'char *'.
8606 * spu-tdep.c (spu_get_overlay_table): Use gdb_byte.
8607 * tic6x-tdep.c (tic6x_breakpoint_from_pc): Change return type to
8608 'gdb_byte *'.
8609 * tic6x-tdep.h (struct gdbarch_tdep) <breakpoint>: Change type to
8610 'gdb_byte *'.
8611 * tracepoint.c (tfile_fetch_registers): Use gdb_byte.
8612 * xstormy16-tdep.c (xstormy16_extract_return_value)
8613 (xstormy16_store_return_value): Change parameter type to
8614 'gdb_byte *'. Adjust.
8615 (xstormy16_push_dummy_call): Use gdb_byte.
8616 * xtensa-tdep.c (xtensa_scan_prologue, call0_ret)
8617 (call0_analyze_prologue, execute_code): Use gdb_byte.
8618
8619 2013-04-19 Vladimir Kargov <kargov@gmail.com>
8620 Pedro Alves <palves@redhat.com>
8621
8622 * i387-tdep.c (i387_print_float_info): Use gdb_byte for pointer to
8623 value contents.
8624
8625 2013-04-17 Doug Evans <dje@google.com>
8626
8627 * dwarf2read.c (struct signatured_type): New member type.
8628 (struct attribute): Replace member signatured_type with signature.
8629 (DW_SIGNATURE): Replaces DW_SIGNATURE_TYPE.
8630 (read_call_site_scope): Call follow_die_ref instead of
8631 follow_die_ref_or_sig.
8632 (read_structure_type): Rewrite handling of signatured types.
8633 (read_enumeration_type): Ditto.
8634 (read_attribute_value): Update.
8635 (build_error_marker_type): New function.
8636 (lookup_die_type): Add assert. Rewrite handling of signatured types.
8637 Don't call error for bad types, just build an error marker type.
8638 (dump_die_shallow): Update.
8639 (follow_die_sig_1): Renamed from follow_die_sig.
8640 Don't call error for bad types, instead return NULL.
8641 (follow_die_sig): New function.
8642 (get_signatured_type, get_DW_AT_signature_type): New functions.
8643
8644 2013-04-17 Yufeng Zhang <yufeng.zhang@arm.com>
8645
8646 * aarch64-tdep.c (aarch64_write_pc): Removed.
8647 (aarch64_gdbarch_init): Remove set_gdbarch_write_pc of the above
8648 function.
8649
8650 2013-04-17 Yao Qi <yao@codesourcery.com>
8651
8652 * top.c (print_gdb_configuration): Print configure-time
8653 parameter on using libbabeltrace or not.
8654
8655 2013-04-16 Pedro Alves <palves@redhat.com>
8656
8657 * copyright.py (EXCLUDE_LIST): Add gdb/common/glibc_thread_db.h.
8658
8659 2013-04-16 Pedro Alves <palves@redhat.com>
8660
8661 * common/glibc_thread_db.h: Update from upstream glibc
8662 (git 568035b7874a099087b77f7bba3e36a1173787b0).
8663
8664 2013-04-16 Pedro Alves <palves@redhat.com>
8665
8666 * common/gdb_thread_db.h [!HAVE_THREAD_DB_H]: Factor out to ...
8667 * common/glibc_thread_db.h: ... this new file ...
8668 * common/gdb_thread_db.h [!HAVE_THREAD_DB_H]: ... and include it.
8669
8670 2013-04-16 Will Newton <will.newton@gmail.com>
8671 Pedro Alves <palves@redhat.com>
8672
8673 PR build/11881
8674
8675 * common/gdb_thread_db.h (LIBTHREAD_DB_SO)
8676 (LIBTHREAD_DB_SEARCH_PATH): Move outside of #ifdef
8677 HAVE_THREAD_DB_H.
8678
8679 2013-04-16 Pedro Alves <palves@redhat.com>
8680 Eli Zaretskii <eliz@gnu.org>
8681
8682 * NEWS: Mention "set foo unlimited".
8683
8684 2013-04-15 Doug Evans <dje@google.com>
8685
8686 * dwarf2read.c (struct dwo_file): Replace member "cus" with "cu".
8687 (struct create_dwo_cu_data): Renamed from create_dwo_info_table_data.
8688 (create_dwo_cu_reader): Renamed from
8689 create_dwo_debug_info_hash_table_reader.
8690 (create_dwo_cu): Renamed from create_dwo_debug_info_hash_table.
8691 Remove support for multiple CUs in a DWO file.
8692 (open_and_init_dwo_file, lookup_dwo_cutu): Update.
8693
8694 * dwarf2read.c (create_debug_types_hash_table): Use hex_string
8695 instead of phex.
8696 (lookup_dwo_unit, create_dwo_debug_info_hash_table_reader): Ditto.
8697 (create_dwo_in_dwp): Ditto.
8698
8699 2013-04-15 Tom Tromey <tromey@redhat.com>
8700
8701 * NEWS: Move recent entries into "since 7.6" section.
8702
8703 2013-04-15 Tom Tromey <tromey@redhat.com>
8704
8705 PR c++/13588:
8706 * NEWS: Update.
8707 * break-catch-throw.c (struct exception_catchpoint)
8708 <exception_rx, pattern>: New fields.
8709 (fetch_probe_arguments, dtor_exception_catchpoint)
8710 (check_status_exception_catchpoint)
8711 (print_one_detail_exception_catchpoint): New functions.
8712 (handle_gnu_v3_exceptions): Add "except_rx" argument.
8713 Compile regular expression if needed.
8714 (extract_exception_regexp): New function.
8715 (catch_exception_command_1): Use extract_exception_regexp.
8716 (compute_exception): Use fetch_probe_arguments.
8717 (initialize_throw_catchpoint_ops): Set dtor, print_one_detail,
8718 and check_status fields.
8719 * cp-abi.c (cplus_typename_from_type_info): New function.
8720 * cp-abi.h (cplus_typename_from_type_info): Declare.
8721 (struct cp_abi_ops) <get_typename_from_type_info>: New field.
8722 * gdb_regex.h (compile_rx_or_error): Declare.
8723 * gnu-v3-abi.c (gnuv3_get_typename_from_type_info): Update
8724 comment.
8725 (init_gnuv3_ops): Set get_type_from_type_info field.
8726 * probe.c (compile_rx_or_error): Move...
8727 * utils.c (compile_rx_or_error): ... here.
8728
8729 2013-04-15 Tom Tromey <tromey@redhat.com>
8730
8731 PR c++/15176:
8732 * NEWS: Update.
8733 * break-catch-throw.c (compute_exception): New function.
8734 (exception_funcs): New global.
8735 (_initialize_break_catch_throw): Create $_exception.
8736 * cp-abi.c (cplus_type_from_type_info): New function.
8737 * cp-abi.h (cplus_type_from_type_info): Declare.
8738 (struct cp_abi_ops) <get_type_from_type_info>: New field.
8739 * gnu-v3-abi.c (gnuv3_get_typename_from_type_info)
8740 (gnuv3_get_type_from_type_info): New functions.
8741 (init_gnuv3_ops): Set get_type_from_type_info ABI field.
8742
8743 2013-04-15 Tom Tromey <tromey@redhat.com>
8744
8745 * break-catch-throw.c (struct exception_names): New.
8746 (exception_functions): Change type.
8747 (re_set_exception_catchpoint): Look for SDT probes.
8748
8749 2013-04-15 Tom Tromey <tromey@redhat.com>
8750
8751 PR c++/10119:
8752 * break-catch-throw.c (exception_functions): New global.
8753 (gnu_v3_exception_catchpoint_ops): Move earlier.
8754 (struct exception_catchpoint): New.
8755 (classify_exception_breakpoint): Rewrite.
8756 (re_set_exception_catchpoint): New function.
8757 (handle_gnu_v3_exceptions): Return void. Use init_catchpoint.
8758 Allocate a struct exception_catchpoint.
8759 (catch_exception_command_1): Update.
8760 (initialize_throw_catchpoint_ops): Set 're_set' method.
8761
8762 2013-04-15 Tom Tromey <tromey@redhat.com>
8763
8764 * Makefile.in (SFILES): Add break-catch-throw.c
8765 (COMMON_OBS): Add break-catch-throw.o.
8766 * break-catch-throw.c: New file.
8767 * breakpoint.c: Move exception-catching code to new file.
8768 (ep_parse_optional_if_clause): No longer static.
8769 * breakpoint.h (ep_parse_optional_if_clause): Declare.
8770
8771 2013-04-15 Tom Tromey <tromey@redhat.com>
8772
8773 PR c++/9065:
8774 * NEWS: Update.
8775 * breakpoint.c (watchpoint_exp_is_const): Add OP_TYPEID.
8776 * c-exp.y (TYPEID): New token.
8777 (exp): Add new TYPEID productions.
8778 (ident_tokens): Add "typeid".
8779 * cp-abi.c (cplus_typeid, cplus_typeid_type): New functions.
8780 * cp-abi.h (cplus_typeid, cplus_typeid_type): Declare.
8781 (struct cp_abi_ops) <get_typeid, get_typeid_type>: New fields.
8782 * eval.c (evaluate_subexp_standard) <OP_TYPEID>: New case.
8783 * expprint.c (dump_subexp_body_standard) <OP_TYPEID>: New
8784 case.
8785 * gnu-v3-abi.c (std_type_info_gdbarch_data): New global.
8786 (build_std_type_info_type, gnuv3_get_typeid_type)
8787 (gnuv3_get_typeid): New functions.
8788 (init_gnuv3_ops): Initialize std_type_info_gdbarch_data. Set
8789 new fields on ABI object.
8790 * parse.c (operator_length_standard) <OP_TYPEID>: New case.
8791 * std-operator.def (OP_TYPEID): New.
8792
8793 2013-04-15 Tom Tromey <tromey@redhat.com>
8794
8795 * elfread.c (elf_symtab_read): Install versioned symbol under
8796 unversioned name as well.
8797
8798 2013-04-15 Tom Tromey <tromey@redhat.com>
8799
8800 PR c++/11990:
8801 * c-lang.c (cplus_language_defn): Use gdb_demangle.
8802 * c-typeprint.c (c_type_print_base): Use gdb_demangle.
8803 * cp-support.c (mangled_name_to_comp): Use gdb_demangle.
8804 (gdb_demangle): New function.
8805 * cp-support.h (gdb_demangle): Declare.
8806 * dwarf2read.c (dwarf2_physname, fixup_partial_die)
8807 (dwarf2_name): Use gdb_demangle.
8808 * gdbtypes.c (check_stub_method): Use gdb_demangle.
8809 * gnu-v3-abi.c (gnuv3_rtti_type): Strip @plt and version
8810 suffixes from name.
8811 (gnuv3_print_method_ptr): Use gdb_demangle.
8812 * jv-lang.c (java_demangle): Use gdb_demangle.
8813 * jv-typeprint.c (java_type_print_base): Use gdb_demangle.
8814 * language.c (unk_lang_demangle): Use gdb_demangle.
8815 * symtab.c (symbol_find_demangled_name)
8816 (demangle_for_lookup): Use gdb_demangle.
8817
8818 2013-04-15 Tom Tromey <tromey@redhat.com>
8819
8820 PR c++/12824:
8821 * NEWS: Update.
8822 * breakpoint.c (enum exception_event_kind) <EX_EVENT_RETHROW>:
8823 New constant.
8824 (classify_exception_breakpoint): New function.
8825 (print_it_exception_catchpoint, print_one_exception_catchpoint)
8826 (print_mention_exception_catchpoint)
8827 (print_recreate_exception_catchpoint, handle_gnu_v3_exceptions)
8828 (catch_exception_command_1): Handle "rethrow" catchpoint.
8829 (catch_rethrow_command): New function.
8830 (_initialize_breakpoint): Add "catch rethrow" command.
8831
8832 2013-04-15 Pierre Muller <muller@sourceware.org>
8833
8834 * contrib/ari/gdb_ari.sh (write_pc rule): Do not consider
8835 set_gdbarch_write_pc as deprecated anymore.
8836
8837 2013-04-15 Joel Brobecker <brobecker@adacore.com>
8838
8839 * spu-tdep.c (spu_write_pc): Add empty line after local variable
8840 declarations.
8841
8842 2013-04-13 Yao Qi <yao@codesourcery.com>
8843
8844 * ctf.c (_initialize_ctf): Include "completer.h".
8845 Call add_target_with_completer instead of add_target.
8846
8847 2013-04-12 Jan Kratochvil <jan.kratochvil@redhat.com>
8848
8849 Fix GDB regression related to PR binutils/14813.
8850 * jit.c (mem_bfd_iovec_close): Return 0 for success.
8851 * minidebug.c (lzma_close): Add return value comment.
8852 * remote.c (remote_bfd_iovec_close): Return 0 for success.
8853 * solib-spu.c (spu_bfd_iovec_close): Likewise.
8854 * spu-linux-nat.c (spu_bfd_iovec_close): Likewise.
8855
8856 2013-04-12 Jan Kratochvil <jan.kratochvil@redhat.com>
8857
8858 * config.in: Regenerate.
8859
8860 2013-04-12 Tom Tromey <tromey@redhat.com>
8861
8862 * dwarf2-frame.c (struct comp_unit) <dwarf_frame_buffer>: Now
8863 const.
8864 * dwarf2read.c (struct dwarf2_section_info) <buffer>: Now const.
8865 (struct die_reader_specs) <buffer>: Likewise.
8866 (die_reader_func_ftype): Make 'info_ptr' const.
8867 (struct line_header) <include_dirs, statement_program_start,
8868 statement_program_end>: Now const.
8869 (struct file_entry) <name>: Likewise.
8870 (struct partial_die_info) <sibling>: Likewise.
8871 (struct dwarf_block) <data>: Likewise.
8872 (dwarf2_read_section): Remove cast.
8873 (dwarf2_get_section_info): Make 'bufp' const.
8874 (read_index_from_section): Constify.
8875 (dw2_get_file_names_reader): Make 'info_ptr' const.
8876 (dw2_get_primary_filename_reader): Likewise.
8877 (read_comp_unit_head): Make 'info_ptr' and return type const.
8878 (read_and_check_comp_unit_head, read_and_check_type_unit_head):
8879 Likewise.
8880 (read_abbrev_offset): Constify.
8881 (dwarf2_create_include_psymtab): Make 'name' const.
8882 (create_debug_types_hash_table): Update.
8883 (read_cutu_die_from_dwo): Make 'result_info_ptr' const.
8884 (init_cutu_and_read_dies, init_cutu_and_read_dies_no_follow):
8885 Constify.
8886 (process_psymtab_comp_unit_reader, build_type_psymtabs_reader)
8887 (load_partial_comp_unit_reader): Make 'info_ptr' const.
8888 (read_comp_units_from_section): Constify.
8889 (peek_abbrev_code, peek_die_abbrev, skip_children, skip_one_die)
8890 (locate_pdi_sibling, load_full_comp_unit_reader): Make 'info_ptr'
8891 const.
8892 (dwarf2_compute_name, setup_type_unit_groups): Constify.
8893 (create_dwo_debug_info_hash_table): Make 'info_ptr' const.
8894 (create_dwp_hash_table, dwarf2_ranges_read)
8895 (dwarf2_record_block_ranges): Constify.
8896 (read_die_and_children, read_die_and_siblings_1)
8897 (read_die_and_siblings): Make 'info_ptr' and 'new_info_ptr'
8898 const.
8899 (read_full_die_1, read_full_die): Make 'info_ptr' const.
8900 (abbrev_table_read_table): Constify.
8901 (load_partial_dies): Make 'info_ptr' const.
8902 (read_partial_die, read_attribute_value, read_attribute): Make
8903 'info_ptr' and return type const.
8904 (read_address, read_initial_length)
8905 (read_checked_initial_length_and_offset, read_offset)
8906 (read_offset_1, read_n_bytes, read_direct_string): Make 'buf'
8907 const.
8908 (read_direct_string): Make 'buf' and return type const.
8909 (read_indirect_string_at_offset, read_indirect_string_from_dwz)
8910 (read_indirect_string): Make return type const.
8911 (read_unsigned_leb128, read_signed_leb128): Make 'buf' const.
8912 (read_addr_index_from_leb128, dwarf2_read_addr_index_reader): Make
8913 'info_ptr' const.
8914 (read_str_index): Make return type const.
8915 (add_include_dir): Make 'include_dir' const.
8916 (add_file_name): Make 'name' const.
8917 (dwarf_decode_line_header): Constify.
8918 (psymtab_include_file_name): Make return type const.
8919 (dwarf_decode_lines_1, dwarf_decode_lines): Constify.
8920 (dwarf2_start_subfile): Make 'filename' const.
8921 (dwarf2_const_value_attr): Make 'bytes' const.
8922 (read_signatured_type_reader): Make 'info_ptr' const.
8923 (decode_locdesc): Constify.
8924 (skip_form_bytes): Make 'bytes', 'buffer_end', and return type
8925 const.
8926 (skip_unknown_opcode): Make 'opcode_definitions', 'mac_ptr',
8927 'mac_end', and return type const.
8928 (dwarf_parse_macro_header): Make 'mac_ptr' and return type const.
8929 (dwarf_decode_macro_bytes): Make 'mac_ptr', 'mac_end', and return
8930 type const.
8931 (per_cu_header_read_in): Constify.
8932 * symfile.h (dwarf2_get_section_info): Update.
8933
8934 2013-04-12 Tom Tromey <tromey@redhat.com>
8935
8936 * symtab.h (struct general_symbol_info) <value.bytes>: Make const.
8937
8938 2013-04-12 Eli Zaretskii <eliz@gnu.org>
8939
8940 * NEWS: Mention "show configuration", --configuration.
8941 * top.c (print_gdb_configuration): New function, displays the
8942 details about GDB configure-time parameters.
8943 (print_gdb_version): Mention "show configuration".
8944 * cli/cli-cmds.c (show_configuration): New function.
8945 (_initialize_cli_cmds): Add the "show configuration" command.
8946 * main.c (captured_main) <print_configuration>: New static var.
8947 <long_options>: Use it.
8948 If --configuration was given, call print_gdb_configuration.
8949
8950 2013-04-11 Jan Kratochvil <jan.kratochvil@redhat.com>
8951 Pedro Alves <palves@redhat.com>
8952
8953 * Makefile.in (HAVE_NATIVE_GCORE_TARGET): New.
8954 (generated_files): Add gcore.
8955 (install-only, uninstall): Add gcore if HAVE_NATIVE_GCORE_TARGET or
8956 HAVE_NATIVE_GCORE_HOST.
8957 (gcore): New.
8958 * NEWS (Changes since GDB 7.6): Mention newly installed gcore.
8959 * config/alpha/alpha-osf3.mh, config/i386/fbsd.mh,
8960 config/i386/fbsd64.mh, config/i386/i386gnu.mh, config/i386/i386sol2.mh,
8961 config/i386/sol2-64.mh, config/mips/irix5.mh, config/mips/irix6.mh,
8962 config/powerpc/fbsd.mh, config/sparc/fbsd.mh, config/sparc/sol2.mh:
8963 Add HAVE_NATIVE_GCORE_HOST.
8964 * configure: Regenerate.
8965 * configure.ac (HAVE_NATIVE_GCORE_TARGET): New, set it, AC_SUBST it.
8966 New AC_SUBST fir GDB_TRANSFORM_NAME and GCORE_TRANSFORM_NAME. New
8967 AC_CONFIG_FILES for gcore.
8968 * configure.tgt: Add gdb_have_gcore to the initial comment. Set
8969 gdb_have_gcore.
8970 * gdb_gcore.sh: Rename to ...
8971 * gcore.in: ... here. Remove gcore.sh comment. Use GDB_TRANSFORM_NAME
8972 and GCORE_TRANSFORM_NAME substitutions.
8973
8974 Fix parsing tabs in ${gdb_target_obs}.
8975 * configure.tgt (gdb_have_gcore): Replace case with for and if.
8976
8977 2013-04-11 Jan Kratochvil <jan.kratochvil@redhat.com>
8978
8979 * remote.c (unpush_and_perror): Add output message final dot.
8980
8981 2013-04-11 Yao Qi <yao@codesourcery.com>
8982
8983 * tracepoint.c (tfile_interp_line): Fit parameters line and
8984 utpp in one line.
8985
8986 2013-04-10 Joel Brobecker <brobecker@adacore.com>
8987
8988 * solib.c (solib_map_sections): Remove code overwriting
8989 SO->SO_NAME with the bfd's filename.
8990
8991 2013-04-10 Pedro Alves <palves@redhat.com>
8992
8993 * cli/cli-decode.c (integer_unlimited_completer): New function.
8994 (add_setshow_integer_cmd, add_setshow_uinteger_cmd)
8995 (add_setshow_zuinteger_unlimited_cmd): Install the "unlimited"
8996 completer.
8997 * cli/cli-setshow.c: Include "cli/cli-utils.h".
8998 (is_unlimited_literal): New function.
8999 (do_set_command): Handle literal "unlimited" arguments.
9000 * frame.c (_initialize_frame) <set backtrace limit>: Document
9001 "unlimited".
9002 * printcmd.c (_initialize_printcmd) <set print
9003 max-symbolic-offset>: Add help text.
9004 * record-full.c (_initialize_record_full) <set record full
9005 insn-number-max>: Likewise.
9006 * record.c (_initialize_record) <set record
9007 instruction-history-size, set record function-call-history-size>:
9008 Add help text.
9009 * ser-tcp.c (_initialize_ser_tcp) <set tcp connect-timeout>: Add
9010 help text.
9011 * tracepoint.c (_initialize_tracepoint) <set trace-buffer-size>:
9012 Likewise.
9013 * source.c (_initialize_source) <set listsize>: Add help text.
9014 * utils.c (initialize_utils) <set height, set width>: Likewise.
9015 <set pagination>: Mention "set height unlimited".
9016 * valprint.c (_initialize_valprint) <set print elements, set print
9017 repeats>: Document "unlimited".
9018
9019 2013-04-10 Pedro Alves <palves@redhat.com>
9020
9021 * cli/cli-cmds.c (quit_command): Call query_if_trace_running
9022 instead of disconnect_tracing.
9023 * infcmd.c (detach_command, disconnect_command): Call
9024 query_if_trace_running. Adjust.
9025 * top.c: Include "tracepoint.h".
9026 (quit_target): Delete. Contents moved ...
9027 (quit_force): ... here. Wrap each stage of teardown in
9028 TRY_CATCH. Call disconnect_tracing before detaching.
9029
9030 2013-04-10 Hui Zhu <hui@codesourcery.com>
9031 Yao Qi <yao@codesourcery.com>
9032
9033 * configure.ac: Check libbabeltrace is installed.
9034 * config.in: Regenerate.
9035 * configure: Regenerate.
9036 * Makefile.in (LIBBABELTRACE): New.
9037 (CLIBS): Add LIBBABELTRACE.
9038 * ctf.c: Include "exec.h".
9039 (CTF_EVENT_ID_STATUS, CTF_EVENT_ID_TSV_DEF): New macros.
9040 (CTF_EVENT_ID_TP_DEF, ctf_save_write_int32): New macros.
9041 (ctf_save_metadata_header): Define new type aliases in
9042 metadata.
9043 (ctf_write_header): Define event type "tsv_def" and "tp_def"
9044 in metadata. Start a new faked packet for trace status.
9045 (ctf_write_status): Write trace status to CTF.
9046 (ctf_write_uploaded_tsv): Write TSV to CTF.
9047 (ctf_write_uploaded_tp): Write tracepoint definition to CTF.
9048 (ctf_write_definition_end): End the faked packet.
9049
9050 (ctx, ctf_iter, trace_dirname): New.
9051 (start_pos): New variable.
9052 (ctf_destroy, ctf_open_dir, ctf_open): New.
9053 (SET_INT32_FIELD, SET_ARRAY_FIELD, SET_STRING_FIELD): New
9054 macros.
9055 (ctf_read_tsv, ctf_read_tp, ctf_close, ctf_files_info): New.
9056 (ctf_fetch_registers, ctf_xfer_partial): New.
9057 (ctf_get_trace_state_variable_value): New.
9058 (ctf_get_tpnum_from_frame_event): New.
9059 (ctf_get_traceframe_address): New.
9060 (ctf_trace_find, ctf_has_stack): New.
9061 (ctf_has_registers, ctf_traceframe_info, init_ctf_ops): New.
9062 (ctf_get_trace_status, ctf_read_status): New.
9063 (_initialize_ctf): New.
9064 * tracepoint.c (get_tracepoint_number): New
9065 (get_uploaded_tsv): Remove 'static'.
9066 (struct traceframe_info, trace_regblock_size): Move it to ...
9067 * tracepoint.h: ... here.
9068 (get_tracepoint_number): Declare it.
9069 (get_uploaded_tsv): Declare it.
9070
9071 * NEWS: Mention new configure option.
9072
9073 2013-04-10 Pedro Alves <palves@redhat.com>
9074 Hui Zhu <hui@codesourcery.com>
9075
9076 * breakpoint.c (dprintf_re_set): New.
9077 (initialize_breakpoint_ops): Set dprintf_breakpoint_ops re_set
9078 to dprintf_re_set.
9079
9080 2013-04-09 Joel Brobecker <brobecker@adacore.com>
9081
9082 * configure.tgt (gdb_target_obs) <powerpc-*-aix* | rs6000-*-*>:
9083 Remove solib-svr4.o from the list.
9084
9085 2013-04-09 Joel Brobecker <brobecker@adacore.com>
9086
9087 * varobj.c (update_dynamic_varobj_children) [!HAVE_PYTHON]:
9088 Use gdb_assert_not_reached instead of invalid boolean expression.
9089
9090 2013-04-09 Pedro Alves <palves@redhat.com>
9091
9092 * remote.c (unpush_and_perror): New function.
9093 (readchar, remote_serial_write): Use it.
9094
9095 2013-04-09 Markus Metzger <markus.t.metzger@intel.com>
9096
9097 * NEWS: Mention new btrace RSP packets.
9098
9099 2013-04-08 Tom Tromey <tromey@redhat.com>
9100
9101 * symmisc.c (dump_msymbols): Cast fprintf_filtered argument to
9102 long.
9103
9104 2013-04-08 Tom Tromey <tromey@redhat.com>
9105
9106 * maint.c (print_bfd_section_info): Print the section index.
9107 * symmisc.c (dump_msymbols): Print the section index.
9108
9109 2013-04-08 Tom Tromey <tromey@redhat.com>
9110
9111 PR symtab/8424:
9112 * blockframe.c (find_pc_partial_function_gnu_ifunc): Check
9113 SYMBOL_SECTION, not SYMBOL_OBJ_SECTION.
9114 * breakpoint.c (resolve_sal_pc): Update.
9115 * elfread.c (elf_gnu_ifunc_record_cache): Update.
9116 * findvar.c (struct minsym_lookup_data) <objfile>: New field.
9117 (minsym_lookup_iterator_cb): Use it.
9118 (default_read_var_value): Update.
9119 * hppa-hpux-tdep.c (hppa64_hpux_in_solib_call_trampoline):
9120 Update.
9121 * infcmd.c (jump_command): Update.
9122 * linespec.c (minsym_found): Update.
9123 * maint.c (maintenance_translate_address): Update.
9124 * minsyms.c (lookup_minimal_symbol_by_pc_section_1): Update.
9125 (prim_record_minimal_symbol_full): Don't set SYMBOL_OBJ_SECTION.
9126 * parse.c (write_exp_msymbol): Update.
9127 * printcmd.c (address_info): Update.
9128 * psymtab.c (find_pc_sect_psymbol): Update.
9129 (fixup_psymbol_section): Check SYMBOL_SECTION, not
9130 SYMBOL_OBJ_SECTION.
9131 (add_psymbol_to_bcache): Correctly initialize SYMBOL_SECTION.
9132 Don't initialize SYMBOL_OBJ_SECTION.
9133 * spu-tdep.c (spu_catch_start): Update.
9134 * stabsread.c (define_symbol): Don't set SYMBOL_SECTION.
9135 * symmisc.c (dump_msymbols, print_symbol): Update.
9136 * symtab.c (fixup_section): Don't set 'obj_section'. Change
9137 how fallback section is computed.
9138 (fixup_symbol_section): Update.
9139 (find_pc_sect_symtab, find_function_start_sal, skip_prologue_sal):
9140 Update.
9141 (allocate_symbol, initialize_symbol, allocate_template_symbol):
9142 Initialize SYMBOL_SECTION.
9143 * symtab.h (struct general_symbol_info) <section>: Update comment.
9144 <obj_section>: Remove.
9145 (SYMBOL_OBJ_SECTION): Add 'objfile' argument. Rewrite.
9146 (SYMBOL_OBJFILE): New macro.
9147
9148 2013-04-08 Tom Tromey <tromey@redhat.com>
9149
9150 * coffread.c (record_minimal_symbol): Update.
9151 * dbxread.c (record_minimal_symbol): Update.
9152 * elfread.c (record_minimal_symbol): Update.
9153 * machoread.c (macho_symtab_add_minsym): Update.
9154 * mdebugread.c (record_minimal_symbol, parse_partial_symbols):
9155 Update.
9156 * minsyms.c (prim_record_minimal_symbol): Update.
9157 (prim_record_minimal_symbol_full): Remove 'bfd_section'
9158 argument.
9159 (prim_record_minimal_symbol_and_info): Likewise.
9160 * minsyms.h (prim_record_minimal_symbol_full)
9161 (prim_record_minimal_symbol_and_info): Update.
9162 * symtab.c (allocate_symbol, initialize_symbol)
9163 (allocate_template_symbol): Initialize SYMBOL_SECTION.
9164 * xcoffread.c (record_minimal_symbol, scan_xcoff_symtab):
9165 Update.
9166
9167 2013-04-08 Tom Tromey <tromey@redhat.com>
9168
9169 PR symtab/8423:
9170 * solib-som.c (som_solib_section_offsets): Use BFD section
9171 indices. Set offsets for all sections.
9172 * somread.c (som_symtab_read): Compute BFD section for
9173 symbol. Use prim_record_minimal_symbol_and_info.
9174 (som_symfile_read): Fix comment.
9175 (struct find_section_offset_arg): New.
9176 (find_section_offset, set_section_index): New functions.
9177 (som_symfile_offsets): Use set_section_index to compute
9178 section indices.
9179
9180 2013-04-08 Tom Tromey <tromey@redhat.com>
9181
9182 * coffread.c (cs_to_section): Use gdb_bfd_section_index.
9183 * elfread.c (record_minimal_symbol, elf_symtab_read): Use
9184 gdb_bfd_section_index.
9185 * gdb_bfd.c (gdb_bfd_section_index, gdb_bfd_count_sections):
9186 New functions.
9187 * gdb_bfd.h (gdb_bfd_section_index, gdb_bfd_count_sections):
9188 Declare.
9189 * machoread.c (macho_symtab_add_minsym, macho_symfile_offsets):
9190 Update.
9191 * objfiles.c (add_to_objfile_sections_full): New function.
9192 (add_to_objfile_sections): Use it.
9193 (build_section_table): Rewrite.
9194 (objfile_relocate1): Use gdb_bfd_section_index. Update.
9195 * objfiles.h (obj_section_offset): Use gdb_bfd_section_index.
9196 (struct objfile) <sections>: Update comment.
9197 (ALL_OBJFILE_OSECTIONS): Skip sections where the_bfd_section
9198 is NULL.
9199 (ALL_OBJSECTIONS): Use it.
9200 * solib-dsbt.c (dsbt_relocate_main_executable): Update.
9201 * solib-frv.c (frv_relocate_main_executable): Update.
9202 * solib-target.c (solib_target_relocate_section_addresses):
9203 Use gdb_bfd_section_index.
9204 * symfile.c (build_section_addr_info_from_section_table):
9205 Use gdb_bfd_section_index.
9206 (build_section_addr_info_from_bfd, place_section): Likewise.
9207 * symtab.c (fixup_section): Update.
9208 * xcoffread.c (find_targ_sec): Use gdb_bfd_section_index.
9209
9210 2013-04-08 Tom Tromey <tromey@redhat.com>
9211
9212 * minsyms.h (struct bound_minimal_symbol): New.
9213 (lookup_minimal_symbol_and_objfile): Return bound_minimal_symbol.
9214 Remove objfile argument.
9215 (lookup_minimal_symbol_by_pc_section, lookup_minimal_symbol_by_pc):
9216 Return bound_minimal_symbol.
9217 * minsyms.c (lookup_minimal_symbol_by_pc_1)
9218 (lookup_minimal_symbol_by_pc_section, lookup_minimal_symbol_by_pc):
9219 Return bound_minimal_symbol.
9220 (in_gnu_ifunc_stub): Update.
9221 (lookup_minimal_symbol_and_objfile): Return bound_minimal_symbol.
9222 Remove 'objfile_p' argument.
9223 (lookup_solib_trampoline_symbol_by_pc): Update.
9224 * ada-tasks.c, amd64-windows-tdep.c, arm-tdep.c,
9225 arm-wince-tdep.c, block.c, blockframe.c, breakpoint.c, btrace.c,
9226 c-valprint.c, dwarf2loc.c, elfread.c, frame.c, frv-tdep.c,
9227 glibc-tdep.c, gnu-v2-abi.c, gnu-v3-abi.c, hppa-hpux-tdep.c,
9228 i386-tdep.c, ia64-tdep.c, infcall.c, infcmd.c, jit.c,
9229 linux-fork.c, m32c-tdep.c, m68hc11-tdep.c, maint.c,
9230 mips-tdep.c, p-valprint.c, parse.c, ppc-linux-tdep.c,
9231 ppc-sysv-tdep.c, printcmd.c, rs6000-tdep.c, sh64-tdep.c,
9232 stack.c, symtab.c, tui/tui-disasm.c: Update.
9233
9234 2013-04-08 Tom Tromey <tromey@redhat.com>
9235
9236 * ada-lang.c (ada_decode_symbol): Check and set 'ada_mangled'.
9237 Use symbol's obstack, not an objfile.
9238 * coffread.c (process_coff_symbol): Update.
9239 * dwarf2read.c (fixup_go_packaging, new_symbol_full): Update.
9240 * jv-lang.c (add_class_symbol): Update.
9241 * mdebugread.c (new_symbol): Update.
9242 * minsyms.c (prim_record_minimal_symbol_full)
9243 (terminate_minimal_symbol_table): Update.
9244 * psymtab.c (add_psymbol_to_bcache): Clear entire symbol. Update.
9245 * stabsread.c (define_symbol, read_enum_type): Update.
9246 * symtab.c (symbol_set_demangled_name, symbol_get_demangled_name):
9247 Handle Ada specially.
9248 (symbol_set_language): Add 'obstack' argument.
9249 (symbol_set_names): Update.
9250 (symbol_natural_name, symbol_demangled_name): Always use
9251 ada_decode_symbol.
9252 * symtab.h (struct general_symbol_info)
9253 <language_specific::obstack>: New field.
9254 <ada_mangled>: New field.
9255 (SYMBOL_SET_LANGUAGE): Add 'obstack' argument.
9256 (symbol_set_language): Update.
9257
9258 2013-04-08 Tom Tromey <tromey@redhat.com>
9259
9260 * symtab.c (symbol_init_cplus_specific, symbol_set_demangled_name):
9261 Take an obstack, not an objfile.
9262 (symbol_set_names): Update.
9263 * symtab.h (symbol_set_demangled_name): Update.
9264
9265 2013-04-08 Tom Tromey <tromey@redhat.com>
9266
9267 * coffread.c (process_coff_symbol, coff_read_enum_type): Call
9268 allocate_symbol.
9269 * dwarf2read.c (fixup_go_packaging): Call allocate_symbol.
9270 (read_func_scope): Call allocate_template_symbol.
9271 (new_symbol_full): Call allocate_symbol.
9272 * jit.c (finalize_symtab): Call allocate_symbol.
9273 * jv-lang.c (add_class_symbol): Call allocate_symbol.
9274 * mdebugread.c (parse_symbol, new_block): Call allocate_symbol.
9275 * stabsread.c (patch_block_stabs, define_symbol, read_enum_type)
9276 (common_block_end): Call allocate_symbol.
9277 * symtab.c (allocate_symbol, initialize_symbol)
9278 (allocate_template_symbol): New functions.
9279 * symtab.c (allocate_symbol, initialize_symbol)
9280 (allocate_template_symbol): Declare.
9281 * xcoffread.c (process_xcoff_symbol): Call initialize_symbol.
9282
9283 2013-04-08 Pedro Alves <palves@redhat.com>
9284 Keith Seitz <keiths@redhat.com>
9285
9286 * breakpoint.c (create_breakpoint): Rename
9287 "parse_condition_and_thread" parameter to "parse_arg". Update
9288 describing comment. If !PARSE_ARG, then error out if ARG is not
9289 the empty string after extracting the location.
9290 * breakpoint.h (create_breakpoint): Rename
9291 "parse_condition_and_thread" parameter to "parse_arg".
9292
9293 2013-04-08 Aleksandar Ristovski <aristovski@qnx.com
9294
9295 * solib-svr4.c (lm_addr_check): Add const qualifier to 'so' arg.
9296
9297 2013-04-07 Yao Qi <yao@codesourcery.com>
9298
9299 * remote.c (remote_trace_find): Change type of parameters 'addr1'
9300 and 'addr2' to CORE_ADDR.
9301 * target.c (update_current_target): Update.
9302 * target.h (struct target_ops) <to_trace_find>: Change parameter
9303 type to CORE_ADDR.
9304 * tracepoint.c (tfind_1): Change type of parameters 'addr1' and
9305 'addr2' to CORE_ADDR.
9306 (tfile_trace_find): Likewise.
9307 (tfile_get_traceframe_address): Change return type to CORE_ADDR.
9308 Change local variable 'addr' to type CORE_ADDR.
9309 * tracepoint.h (tfind_1): Update declaration.
9310
9311 2013-04-06 Eli Zaretskii <eliz@gnu.org>
9312
9313 * windows-nat.c (windows_get_absolute_argv0): Move from here...
9314 * mingw-hdep.c (windows_get_absolute_argv0): ...to here.
9315 Include main.h.
9316
9317 * windows-nat.h (windows_get_absolute_argv0): Move prototype from
9318 here...
9319 * main.h (windows_get_absolute_argv0): ...to here.
9320
9321 2013-04-05 Doug Evans <dje@google.com>
9322
9323 * dwarf2read.c (struct dwarf2_per_objfile): Tweak comment.
9324 (read_cutu_die_from_dwo): Add comments.
9325 (read_structure_type): Update comment.
9326 (read_enumeration_type, read_namespace_type): Update comment.
9327 (read_die_type, get_die_type_at_offset, get_die_type): Update comment.
9328
9329 2013-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
9330
9331 Convert man pages to texinfo, new gdbinit.5 texinfo page.
9332 * Makefile.in (gdb.z): Remove.
9333 (install-only): Remove $(man1dir) and gdb.1 installation.
9334 * gdb.1: Remove.
9335
9336 2013-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
9337
9338 Fix compatibility with Linux kernel 3.8.3.
9339 * linux-tdep.c (linux_find_memory_regions_full): Move variable number
9340 to more inner block. Remove parsing of NUMBER from outer block.
9341 Parse NUMBER only if KEYWORD has been identified.
9342
9343 2013-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
9344
9345 Fix variable name shadowing.
9346 * linux-tdep.c (linux_find_memory_regions_full): Rename outer variable
9347 filename to mapsfilename and update its uses.
9348
9349 2013-04-05 Eli Zaretskii <eliz@gnu.org>
9350
9351 * Makefile.in (TAGS): Avoid warning from etags when $GDB_NM_FILE is
9352 empty. See http://sourceware.org/ml/gdb-patches/2012-08/msg00504.html
9353 and http://sourceware.org/ml/gdb-patches/2013-04/msg00055.html for
9354 details of the problem.
9355
9356 2013-04-04 Pedro Alves <palves@redhat.com>
9357 Hui Zhu <hui@codesourcery.com>
9358
9359 * breakpoint.c (validate_commands_for_breakpoint): If validating a
9360 tracepoint, reset its STEP_COUNT and call validate_actionline.
9361
9362 2013-04-03 Doug Evans <dje@google.com>
9363
9364 * dwarf2read.c (read_die_and_siblings_1): Renamed from
9365 read_die_and_siblings.
9366 (read_die_and_siblings): New function.
9367 (read_cutu_die_from_dwo): Dump die if requested.
9368 (read_die_and_children): Call read_full_die_1 and
9369 read_die_and_siblings_1.
9370 (read_full_die): Dump die if requested.
9371
9372 * dwarf2read.c (read_comp_units_from_section): Add debugging printf.
9373
9374 * dwarf2read.c (struct dwo_file): New member comp_dir.
9375 Rename member name to dwo_name. All uses updated.
9376 (hash_dwo_file): Include comp_dir in computation.
9377 (eq_dwo_file): Ditto.
9378 (lookup_dwo_file_slot): New arg comp_dir. All callers updated.
9379 (create_dwo_in_dwp, lookup_dwo_in_dwp, open_and_init_dwo_file): Ditto.
9380
9381 * psymtab.c (read_psymtabs_with_fullname): Don't call
9382 psymtab_to_fullname if the basenames are different.
9383
9384 2013-04-03 Jan Kratochvil <jan.kratochvil@redhat.com>
9385
9386 * NEWS (Changes in GDB 7.6): Update the data-disassemble for "fullname".
9387 New entry about "fullname" presence.
9388
9389 2013-04-03 Pedro Alves <palves@redhat.com>
9390
9391 * NEWS: Mention x86_64/Cygwin as new native configuration.
9392
9393 2013-04-02 Doug Evans <dje@google.com>
9394
9395 * dwarf2read.c (read_structure_type): Fix typo in comment.
9396
9397 2013-04-02 Pedro Alves <palves@redhat.com>
9398
9399 * NEWS: Mention "set/show debug aarch64", "set/show debug
9400 coff-pe-read" and "set/show debug mach-o".
9401
9402 2013-04-02 Pedro Alves <palves@redhat.com>
9403
9404 * NEWS: Mention "set/show remote trace-buffer-size-packet".
9405
9406 2013-04-02 Eli Zaretskii <eliz@gnu.org>
9407
9408 * Makefile.in (HFILES_NO_SRCDIR): Remove call-cmds.h.
9409 gdb_string.h is now in common/.
9410
9411 2013-04-02 Pedro Alves <palves@redhat.com>
9412
9413 * NEWS: Move "set debug notification" and "set trace-buffer-size"
9414 under "New options".
9415
9416 2013-04-02 Jan Kratochvil <jan.kratochvil@redhat.com>
9417
9418 Revert this patch:
9419 PR gdb/15275
9420 * remote.c (remote_get_trace_status): Include putpkt in TRY_CATCH.
9421
9422 2013-04-02 Pedro Alves <palves@redhat.com>
9423
9424 PR gdb/15275
9425
9426 * remote.c (send_interrupt_sequence): Use remote_serial_write.
9427 (remote_serial_write): New function.
9428 (putpkt_binary, getpkt_or_notif_sane_1): Use remote_serial_write.
9429
9430 2013-04-01 Jiong Wang <jiwang@tilera.com>
9431
9432 * NEWS: Mention TILE-Gx in "New native configurations" and
9433 "New targets" sections.
9434
9435 2013-04-01 Doug Evans <dje@google.com>
9436
9437 * dwarf2read.c (lookup_signatured_type_at_offset): Delete.
9438 (process_enumeration_scope): Simplify.
9439
9440 * dwarf2read.c (struct dwarf2_per_cu_data): Move member
9441 type_unit_group ...
9442 (struct signatured_type): ... to here.
9443 (sig_type_ptr): New typedef.
9444 (type_unit_group): Delete member 't.first_cu'. Move member 'tus'
9445 out of union 't'. All uses updated.
9446 (dw2_get_file_names_reader): Assert not called for a type unit.
9447 (dw2_get_file_names): Assert not called for a type unit or type
9448 unit group.
9449 (build_type_psymtabs_reader): Assert called for a type unit.
9450 (build_type_psymtab_dependencies): Assert called for a type unit group.
9451
9452 * dwarf2read.c (free_dwo_file): Add comment.
9453 (dwarf2_per_objfile_free): Unref dwp bfd.
9454
9455 2013-04-01 Aleksandar Ristovski <aristovski@qnx.com>
9456
9457 * coff-pe-read.c (add_pe_exported_sym): Remove unused 'dll_name_len'.
9458 (add_pe_forwarded_sym): Remove unused 'section', 'dll_name_len'.
9459 (read_pe_exported_syms): Remove unused 'exportix'.
9460 (pe_text_section_offset): Remove unused 'opthdr_ofs', 'num_entries',
9461 'export_rva', 'export_size', 'expptr', 'exp_funcbase', 'expdata',
9462 'erva', 'name_rvas', 'ordinals', 'nexp', 'ordbase', 'dll_name'.
9463
9464 2013-04-01 Aleksandar Ristovski <aristovski@qnx.com>
9465
9466 * breakpoint.c (parse_cond_to_aexpr): Remove unused 'old_chain'.
9467 (print_it_watchpoint): Remove unused 'bl'.
9468 (say_where): Remove unused 'uiout'.
9469 (bpstat_remove_breakpoint_callback): Remove unused 'uiout'.
9470 (bkpt_breakpoint_hit): Remove unused 'b'.
9471 (internal_bkpt_print_it): Remove unused 'uiout'.
9472 * buildsym.c (augment_type_symtab): Remove unused 'i'.
9473
9474 2013-03-31 Tiago Stürmer Daitx <tdaitx@linux.vnet.ibm.com>
9475
9476 * ppc-sysv-tdep.c (ppc64_sysv_abi_push_float): New function.
9477 (ppc64_sysv_abi_push_dummy_call): Handle complex arguments.
9478
9479 2013-03-29 Doug Evans <dje@google.com>
9480
9481 * dwarf2read.c (open_dwo_file): Renamed from open_dwop_file.
9482 Delete arg is_dwp. All callers updated.
9483 (open_dwp_file): New function.
9484 (open_and_init_dwp_file): Call it.
9485 (get_dwp_file): New function.
9486 (lookup_dwo_cutu): Call it.
9487
9488 * dwarf2read.c (open_and_init_dwp_file): Remove incorrect, and
9489 unnecessary, cleanup.
9490
9491 * dwarf2read.c (lookup_dwo_cutu): Improve complaint text.
9492
9493 * dwarf2read.c (read_cutu_die_from_dwo): New function.
9494 (lookup_dwo_unit): New function.
9495 (init_cutu_and_read_dies): Move DWO handling to new functions.
9496
9497 * dwarf2read.c (struct signatured_type): Tweak comment.
9498 (struct dwo_unit): Tweak comment.
9499 (create_debug_types_hash_table): Tweak comment. Reformat long line.
9500 (create_dwo_debug_info_hash_table): Tweak comment.
9501 (dwarf2_per_cu_offset_and_type): Tweak comment.
9502
9503 * dwarf2read.c (lookup_signatured_type): Remove complaint about
9504 missing .debug_types section.
9505
9506 2013-03-29 Yao Qi <yao@codesourcery.com>
9507
9508 * corelow.c: Include "completer.h".
9509 (_initialize_corelow): Call add_target_with_completer with
9510 argument 'filename_completer'.
9511 * tracepoint.c: Likewise.
9512 * exec.c (_initialize_exec): Likewise.
9513 * target.c (add_target): Rename to ...
9514 (add_target_with_completer): ... this. Call set_cmd_completer
9515 if parameter completer is not NULL.
9516 (add_target): New.
9517 * target.h: Include "command.h".
9518 (add_target_with_completer): Declare it.
9519
9520 2013-03-28 Joel Brobecker <brobecker@adacore.com>
9521
9522 * coffread.c (is_import_fixup_symbol): New function.
9523 (record_minimal_symbol): Use is_import_fixup_symbol to
9524 detect import fixup symbols, and discard them.
9525
9526 2013-03-28 Doug Evans <dje@google.com>
9527
9528 * dwarf2read.c (create_debug_types_hash_table): Don't allocate the
9529 types hash table until we know we need it.
9530
9531 * dwarf2read.c (create_addrmap_from_index): Complain about bad CU
9532 index numbers.
9533
9534 * dwarf2read.c (dw2_get_file_names): Delete arg "objfile".
9535 All callers updated.
9536 (dw2_print_stats): Print #read CUs too.
9537 (dump_die_shallow): Print signatured types better.
9538
9539 * dwarf2read.c (struct dwarf2_per_cu_data): Rename member
9540 info_or_types_section to section. All uses updated.
9541 (struct dwo_unit): Ditto.
9542
9543 2013-03-28 Pedro Alves <palves@redhat.com>
9544
9545 * NEWS (New options): New section.
9546 (New options): Mention set/show remote trace-status-packet.
9547 * remote.c (PACKET_qTStatus): New enumeration value.
9548 (remote_get_trace_status): Skip sending qTStatus if the packet is
9549 disabled. Use packet_ok.
9550 (_initialize_remote): Register a configuration command for
9551 qTStatus packet.
9552
9553 2013-03-28 Doug Evans <dje@google.com>
9554
9555 * symfile.c (find_separate_debug_file): Add comment.
9556 (terminate_after_last_dir_separator): Tweak comment.
9557
9558 * dwarf2read.c (create_partial_symtab): Add forward decl.
9559 (create_partial_symtab): Move to be closer to other psymtab functions.
9560 (process_psymtab_comp_unit_reader, process_psymtab_comp_unit): Ditto.
9561
9562 * dwarf2read.c (dwarf2_physname): Move declaration to better spot.
9563 (compute_symtab_includes): Remove unnecessary forward declaration.
9564 (die_needs_namespace): Add comment marking group of functions for
9565 dwarf2 name computation.
9566
9567 * typeprint.c (_initialize_typeprint): Improve type help text.
9568
9569 * python/python.c (finish_python_initialization): Provide suggestion
9570 for how to tell gdb to find its python files.
9571
9572 2013-03-28 Pedro Alves <palves@redhat.com>
9573
9574 PR gdb/15294
9575
9576 * source.c (_initialize_source): Change back "set listsize" to an
9577 integer command.
9578
9579 2013-03-27 Gareth McMullin <gareth@blacksphere.co.nz>
9580
9581 PR gdb/15275
9582 * remote.c (remote_get_trace_status): Include putpkt in TRY_CATCH.
9583
9584 2013-03-27 Pedro Alves <palves@redhat.com>
9585
9586 * top.c (history_size): Rename to ...
9587 (history_size_setshow_var): ... this. Add comment.
9588 (show_commands): Use readline's 'history_length' instead of
9589 computing the history length by calling history_get in a loop.
9590 (set_history_size_command): Error out for sizes over INT_MAX.
9591 Restore previous history size on invalid size.
9592 (init_history): If HISTSIZE is negative, leave the history size as
9593 zero. Add comments.
9594 (init_main): Adjust.
9595
9596 2013-03-27 Pedro Alves <palves@redhat.com>
9597
9598 * coff-pe-read.c (_initialize_coff_pe_read): Rename "set debug
9599 coff_pe_read" command to "set debug coff-pe-read".
9600
9601 2013-03-27 Markus Metzger <markus.t.metzger@intel.com>
9602
9603 * record.c (command_size_to_target_size): Fix size comparison.
9604 Change parameter type from pointer to integer to integer.
9605 Update all users.
9606
9607 2013-03-27 Pierre Muller <muller@sourceware.org>
9608
9609 * windows-nat.c (handle_output_debug_string): Avoid typecast
9610 from integer of different size warning.
9611
9612 2013-03-26 Joel Brobecker <brobecker@adacore.com>
9613
9614 * windows-nat.c (handle_output_debug_string): Add empty line
9615 after local block variable definition.
9616
9617 2013-03-26 Pedro Alves <palves@redhat.com>
9618
9619 * ser-tcp.c (wait_for_connect): Make 'polls' parameter unsigned.
9620 (net_open): Make 'polls' local unsigned.
9621
9622 2013-03-26 Pedro Alves <palves@redhat.com>
9623
9624 * remote.c (_initialize_remote): Make "set remoteaddresssize"
9625 a zuinteger command instead of uinteger.
9626
9627 2013-03-26 Pedro Alves <palves@redhat.com>
9628
9629 * record-full.c (record_full_insn_num): Make it unsigned.
9630 (record_full_check_insn_num, record_full_message)
9631 (record_full_registers_change, record_full_xfer_partial): Remove
9632 record_full_insn_max_num check (it's always != 0).
9633 (record_full_info, record_full_restore): Use %u as format string.
9634 (): Use %u as format string.
9635 (set_record_full_insn_max_num): Remove record_full_insn_max_num
9636 check (it's always != 0).
9637
9638 2013-03-26 Pedro Alves <palves@redhat.com>
9639
9640 * dcache.c (_initialize_dcache): Make the "set dcache line-size"
9641 and "set dcache size" commands zuinteger instead of uinteger.
9642
9643 2013-03-26 Pedro Alves <palves@redhat.com>
9644
9645 * cris-tdep.c (_initialize_cris_tdep): Make the "set cris-version"
9646 command zuinteger instead of uinteger.
9647
9648 2013-03-26 Pedro Alves <palves@redhat.com>
9649
9650 * coff-pe-read.c (_initialize_coff_pe_read): Make the command
9651 zuinteger instead of uinteger.
9652
9653 2013-03-26 Pedro Alves <palves@redhat.com>
9654
9655 * record.c (record_insn_history_size_setshow_var)
9656 (record_call_history_size_setshow_var): New globals.
9657 (command_size_to_target_size): New function.
9658 (cmd_record_insn_history, cmd_record_call_history): Use
9659 command_size_to_target_size instead of cast.
9660 (validate_history_size, set_record_insn_history_size)
9661 (set_record_call_history_size): New functions.
9662 (_initialize_record): Install set_record_insn_history_size and
9663 set_record_call_history_size as "set" hooks of "set record
9664 instruction-history-size" and "set record
9665 function-call-history-size".
9666
9667 2013-03-26 Pedro Alves <palves@redhat.com>
9668
9669 * top.c (gdb_rl_operate_and_get_next): Replace max_input_history
9670 use with history_max_entries use. Remove FIXME note.
9671
9672 2013-03-26 Markus Metzger <markus.t.metzger@intel.com>
9673
9674 * record-btrace.c (record_btrace_close): Call
9675 record_btrace_auto_disable.
9676
9677 2013-03-25 Joel Brobecker <brobecker@adacore.com>
9678
9679 * rs6000-nat.c (fixup_breakpoints): Delete declaration.
9680
9681 2013-03-25 Doug Evans <dje@google.com>
9682
9683 * contrib/cc-with-tweaks.sh: Check exit code of dwp.
9684
9685 2013-03-25 Tom Tromey <tromey@redhat.com>
9686
9687 PR symtab/11462:
9688 * c-exp.y (exp): Add new productions for destructors after '.' and
9689 '->'.
9690 (write_destructor_name): New function.
9691
9692 2013-03-25 Tom Tromey <tromey@redhat.com>
9693
9694 PR c++/9197:
9695 * opencl-lang.c (evaluate_subexp_opencl) <STRUCTOP_STRUCT>: Use
9696 value_struct_elt, not lookup_struct_elt_type.
9697 * eval.c (evaluate_subexp_standard) <STRUCTOP_STRUCT,
9698 STRUCTOP_PTR>: Use value_struct_elt, not lookup_struct_elt_type.
9699 * expression.h (EVAL_AVOID_SIDE_EFFECTS): Update comment.
9700
9701 2013-03-25 Yao Qi <yao@codesourcery.com>
9702
9703 * ctf.c [USE_WIN32API]: Undef 'mkdir' and use 'mkdir'
9704 instead of '_mkdir'.
9705
9706 2013-03-23 Eli Zaretskii <eliz@gnu.org>
9707
9708 * windows-nat.c (windows_get_absolute_argv0): New function.
9709 * windows-nat.h: Add its prototype.
9710
9711 * main.c (get_init_files): Use filename_ncmp instead of strncmp.
9712 Use IS_DIR_SEPARATOR instead of looking for a character inside
9713 SLASH_STRING. Include filenames.h.
9714 (captured_main) [__MINGW32__]: Make argv[0] absolute, so that
9715 relocate_gdb_directory works when passed gdb_program_name.
9716 Include windows-nat.h.
9717
9718 2013-03-22 Jan Kratochvil <jan.kratochvil@redhat.com>
9719
9720 * exceptions.h (enum errors): New entry TARGET_CLOSE_ERROR.
9721 * remote.c (trace_error): Remove the special handling of '2'.
9722 (readchar) <SERIAL_EOF>
9723 (readchar) <SERIAL_ERROR>
9724 (getpkt_or_notif_sane_1): Use TARGET_CLOSE_ERROR for them.
9725 (remote_get_trace_status): Call throw_exception if EX is
9726 TARGET_CLOSE_ERROR.
9727 * utils.c (perror_with_name): Rename to ...
9728 (throw_perror_with_name): ... here. New parameter errcode, describe it
9729 in the function comment.
9730 (perror_with_name): New function wrapper.
9731 * utils.h (enum errors): New stub declaration.
9732 (throw_perror_with_name): New declaration.
9733
9734 2013-03-22 Pedro Alves <palves@redhat.com>
9735 Yao Qi <yao@codesourcery.com>
9736 Mark Kettenis <kettenis@gnu.org>
9737
9738 * cli/cli-setshow.c (do_set_command) <var_uinteger>:
9739 Don't let the user set the value to UINT_MAX directly.
9740 <var_integer>: Don't let the user set the value to INT_MAX
9741 directly.
9742
9743 2013-03-22 Jan Kratochvil <jan.kratochvil@redhat.com>
9744
9745 * remote.c (remote_unpush_target): New function.
9746 (remote_open_1): Remove two pop_target calls, update one comment, add
9747 comment to target_preopen call. Replace pop_target call by
9748 remote_unpush_target call.
9749 (interrupt_query, readchar, getpkt_or_notif_sane_1): Replace
9750 pop_target calls by remote_unpush_target calls.
9751
9752 2013-03-22 Pedro Alves <palves@redhat.com>
9753
9754 * linux-nat.c (linux_child_follow_fork): Don't call
9755 linux_enable_event_reporting.
9756 (linux_handle_extended_wait): Don't call
9757 linux_enable_event_reporting.
9758
9759 2013-03-22 Pedro Alves <palves@redhat.com>
9760
9761 * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code): Define INSN macro,
9762 use it to rewrite the trampoline buffers with type gdb_byte[], and
9763 undefine the macro. Remove char* cast.
9764
9765 2013-03-21 Doug Evans <dje@google.com>
9766
9767 New commands "mt set per-command {space,time,symtab} {on,off}".
9768 * NEWS: Add entry.
9769 * event-top.c: #include "maint.h".
9770 * main.c: #include "maint.h".
9771 * maint.c: #include <sys/time.h>, <time.h>, block.h, top.h,
9772 timeval-utils.h, maint.h, cli/cli-setshow.h.
9773 (per_command_time, per_command_space): New static globals.
9774 (per_command_symtab): New static global.
9775 (per_command_setlist, per_command_showlist): New static globals.
9776 (struct cmd_stats): Move here from utils.c.
9777 (set_per_command_time): Renamed from set_display_time in utils.c
9778 and moved here. All callers updated.
9779 (set_per_command_space): Renamed from set_display_space in utils.c
9780 and moved here. All callers updated.
9781 (count_symtabs_and_blocks): New function.
9782 (report_command_stats): Moved here from utils.c. Add support for
9783 printing symtab stats. Only print data if enabled before command
9784 executed.
9785 (make_command_stats_cleanup): Ditto.
9786 (sert_per_command_cmd, show_per_command_cmd): New functions.
9787 (_initialize_maint_cmds): Add new commands
9788 mt set per-command {space,time,symtab} {on,off}.
9789 * maint.h: New file.
9790 * top.c: #include "maint.h".
9791 * utils.c (reset_prompt_for_continue_wait_time): New function.
9792 (get_prompt_for_continue_wait_time): New function.
9793 * utils.h (reset_prompt_for_continue_wait_time): Declare
9794 (get_prompt_for_continue_wait_time): Declare.
9795 (make_command_stats_cleanup): Moved to maint.h.
9796 (set_display_time, set_display_space): Moved to maint.h and renamed
9797 to set_per_command_time, set_per_command_space.
9798 * cli/cli-setshow.c (parse_cli_boolean_value): Renamed from
9799 parse_binary_operation and made non-static. Don't call error,
9800 just return an error marker. All callers updated.
9801 * cli/cli-setshow.h (parse_cli_boolean_value): Declare.
9802
9803 2013-03-21 Tom Tromey <tromey@redhat.com>
9804
9805 * symfile.c (alloc_section_addr_info): Update header. Don't set
9806 'num_sections' field.
9807 (build_section_addr_info_from_section_table): Set 'num_sections'.
9808 (build_section_addr_info_from_bfd): Likewise.
9809 (build_section_addr_info_from_objfile): Remove dead loop
9810 condition.
9811 (free_section_addr_info): Unconditionally call xfree.
9812 (relative_addr_info_to_section_offsets, addrs_section_sort)
9813 (addr_info_make_relative, syms_from_objfile_1): Remove dead loop
9814 condition.
9815 (syms_from_objfile_1): Remove dead 'if' condition. Check
9816 'num_sections'.
9817 (add_symbol_file_command): Set 'num_sections'.
9818 * symfile-mem.c (symbol_file_add_from_memory): Set
9819 'num_sections'.
9820 * somread.c (som_symfile_offsets): Remove dead loop condition.
9821 * machoread.c (macho_symfile_offsets): Remove dead 'if'.
9822 * jit.c (jit_bfd_try_read_symtab): Set 'num_sections'.
9823
9824 2013-03-21 Tom Tromey <tromey@redhat.com>
9825
9826 * tracepoint.h (decode_agent_options): Add 'trace_string'
9827 argument.
9828 * tracepoint.c (decode_agent_options): Add 'trace_string'
9829 argument.
9830 (validate_actionline): Update.
9831 (collect_symbol): Add 'trace_string' argument.
9832 (struct add_local_symbols_data) <trace_string>: New field.
9833 (do_collect_symbol): Update.
9834 (add_local_symbols): Add 'trace_string' argument.
9835 (encode_actions_1): Update.
9836 (trace_dump_actions): Update.
9837 * dwarf2loc.c (access_memory): Update.
9838 * ax.h (struct agent_expr) <tracing, trace_string>: New fields.
9839 * ax-general.c (new_agent_expr): Update.
9840 * ax-gdb.h (gen_trace_for_expr, gen_trace_for_var)
9841 (gen_trace_for_return_address): Add argument.
9842 (trace_kludge, trace_string_kludge): Remove.
9843 * ax-gdb.c (trace_kludge, trace_string_kludge): Remove.
9844 (gen_traced_pop, gen_fetch, gen_bitfield_ref, gen_expr): Update.
9845 (gen_trace_for_var): Add 'trace_string' argument.
9846 (gen_trace_for_expr, gen_trace_for_return_address): Likewise.
9847 (gen_printf, agent_eval_command_one): Update.
9848
9849 2013-03-21 Tom Tromey <tromey@redhat.com>
9850
9851 PR exp/15109:
9852 * c-exp.y (yylex): Rewrite to push all tokens onto the FIFO.
9853 Handle FILENAME token.
9854
9855 2013-03-21 Tom Tromey <tromey@redhat.com>
9856
9857 * c-exp.y (YYPRINT): Define.
9858 (c_print_token): New function.
9859
9860 2013-03-21 Tom Tromey <tromey@redhat.com>
9861
9862 * c-exp.y (%union) <sym, ivar, ivec>: Remove.
9863
9864 2013-03-21 Yao Qi <yao@codesourcery.com>
9865
9866 * ctf.c: Include "gdb_stat.h".
9867 [USE_WIN32API]: New macro 'mkdir'.
9868 (ctf_start): Use permission bits macros if they are defined.
9869
9870 2013-03-20 Keith Seitz <keiths@redhat.com>
9871
9872 * breakpoint.h (struct breakpoint): Add comment to
9873 extra_string indicating that this member is mallod'd.
9874 * breakpoint.c (base_breakpoint_dtor): Free extra_string.
9875
9876 2013-03-20 Pedro Alves <palves@redhat.com>
9877
9878 PR gdb/15289
9879
9880 * cli/cli-setshow.c (do_set_command)
9881 <var_uinteger, var_zuinteger>: Use LONGEST for variable holding
9882 the result of parsing the command argument. Throw error if the
9883 value is greater than UINT_MAX. Print the invalid value with
9884 plongest.
9885 <var_integer, var_zinteger>: Use LONGEST for variable holding the
9886 result of parsing the command argument. Throw error if the value
9887 is greater than INT_MAX, not greater or equal. Also throw error
9888 if the value is less than INT_MIN. Print the invalid value with
9889 plongest.
9890 <var_zuinteger_unlimited>: Throw error if the value is greater
9891 than INT_MAX, not greater or equal.
9892 (do_show_command) <var_integer, var_zinteger,
9893 var_zuinteger_unlimited>: Use %d for printing int, not %u.
9894
9895 2013-03-20 Tom Tromey <tromey@redhat.com>
9896
9897 * ax-gdb.c (gen_var_ref): Unconditionally call via computed ops,
9898 if possible.
9899 * dwarf2read.c (read_func_scope): Remove old FIXME.
9900 * eval.c (evaluate_subexp_standard): Check SYMBOL_COMPUTED_OPS,
9901 not LOC_COMPUTED.
9902 * findvar.c (symbol_read_needs_frame, default_read_var_value):
9903 Unconditionally call via computed ops, if possible.
9904 * printcmd.c (address_info): Unconditionally call via computed ops,
9905 if possible.
9906 * stack.c (read_frame_arg): Unconditionally call via computed ops,
9907 if possible.
9908 * symtab.c (register_symbol_computed_impl): Sanity check 'ops'.
9909 * tracepoint.c (scope_info): Unconditionally call via computed ops,
9910 if possible.
9911
9912 2013-03-20 Jan Kratochvil <jan.kratochvil@redhat.com>
9913 Tom Tromey <tromey@redhat.com>
9914
9915 PR symtab/8421:
9916 * coffread.c (coff_register_index): New global.
9917 (process_coff_symbol, coff_read_enum_type): Set
9918 SYMBOL_ACLASS_INDEX.
9919 (_initialize_coffread): Initialize new global.
9920 * dwarf2loc.c (locexpr_find_frame_base_location)
9921 (dwarf2_block_frame_base_locexpr_funcs)
9922 (loclist_find_frame_base_location)
9923 (dwarf2_block_frame_base_loclist_funcs): New.
9924 (dwarf_expr_frame_base_1): Call SYMBOL_BLOCK_OPS, remove internal_error.
9925 (dwarf2_locexpr_funcs, dwarf2_loclist_funcs): Add location_has_loclist.
9926 * dwarf2loc.h (dwarf2_block_frame_base_locexpr_funcs)
9927 (dwarf2_block_frame_base_loclist_funcs): New.
9928 * dwarf2read.c (dwarf2_locexpr_index, dwarf2_loclist_index)
9929 (dwarf2_locexpr_block_index, dwarf2_loclist_block_index): New
9930 globals.
9931 (read_func_scope): Update.
9932 (fixup_go_packaging, mark_common_block_symbol_computed)
9933 (var_decode_location, new_symbol_full, dwarf2_const_value):
9934 Set SYMBOL_ACLASS_INDEX.
9935 (dwarf2_symbol_mark_computed): Likewise. Add 'is_block' argument.
9936 (_initialize_dwarf2_read): Initialize new globals.
9937 * jit.c (finalize_symtab): Set SYMBOL_ACLASS_INDEX.
9938 * jv-lang.c (add_class_symbol): Set SYMBOL_ACLASS_INDEX.
9939 * mdebugread.c (mdebug_register_index, mdebug_regparm_index): New
9940 globals.
9941 (parse_symbol, psymtab_to_symtab_1): Set SYMBOL_ACLASS_INDEX.
9942 (_initialize_mdebugread): Initialize new globals.
9943 * psympriv.h (struct partial_symbol) <aclass>: Update comment.
9944 * stabsread.c (patch_block_stabs): Set SYMBOL_ACLASS_INDEX.
9945 (stab_register_index, stab_regparm_index): New globals.
9946 (define_symbol, read_enum_type, common_block_end): Set
9947 SYMBOL_ACLASS_INDEX.
9948 (_initialize_stabsread): Initialize new globals.
9949 * symtab.c (next_aclass_value, symbol_impl, symbol_impls): New
9950 globals.
9951 (MAX_SYMBOL_IMPLS): New define.
9952 (register_symbol_computed_impl, register_symbol_block_impl)
9953 (register_symbol_register_impl)
9954 (initialize_ordinary_address_classes): New functions.
9955 (_initialize_symtab): Call initialize_ordinary_address_classes.
9956 * symtab.h (enum address_class) <LOC_FINAL_VALUE>: New constant.
9957 (struct symbol_impl): New.
9958 (SYMBOL_ACLASS_BITS): New define.
9959 (struct symbol) <aclass, ops>: Remove fields.
9960 <aclass_index>: New field.
9961 (symbol_impls): Declare.
9962 (SYMBOL_CLASS, SYMBOL_COMPUTED_OPS, SYMBOL_REGISTER_OPS): Redefine.
9963 (SYMBOL_IMPL, SYMBOL_ACLASS_INDEX): New defines.
9964 (register_symbol_computed_impl, register_symbol_block_impl)
9965 (register_symbol_register_impl): Declare.
9966 (struct symbol_computed_ops): Add location_has_loclist.
9967 (struct symbol_block_ops): New.
9968 (SYMBOL_BLOCK_OPS): New.
9969 * xcoffread.c (process_xcoff_symbol): Set SYMBOL_ACLASS_INDEX.
9970
9971 2013-03-20 Tom Tromey <tromey@redhat.com>
9972
9973 * psymtab.c (find_pc_sect_psymbol, fixup_psymbol_section)
9974 (print_partial_symbols, recursively_search_psymtabs): Use
9975 PSYMBOL_CLASS.
9976
9977 2013-03-20 Pierre Muller <muller@sourceware.org>
9978
9979 * contrib/ari/gdb_ari.sh (OP eol rule): Also check
9980 addtion, subtraction, multiplication and division binary operator.
9981
9982 2013-03-20 Jan Kratochvil <jan.kratochvil@redhat.com>
9983
9984 Code cleanup.
9985 * bfd-target.c (target_bfd_xclose): Remove parameter quitting.
9986 * bsd-kvm.c (bsd_kvm_close): Likewise.
9987 * bsd-uthread.c (bsd_uthread_close): Likewise.
9988 * corelow.c (core_close): Likewise.
9989 (core_close_cleanup): Remove parameter quitting from a caller.
9990 * event-top.c (async_disconnect): Likewise.
9991 * exec.c (exec_close_1): Remove parameter quitting.
9992 * go32-nat.c (go32_close): Likewise.
9993 * linux-nat.c (linux_nat_close): Remove parameter quitting. Remove
9994 parameter quitting from a caller.
9995 * mips-linux-nat.c (super_close): Remove parameter quitting from the
9996 variable.
9997 (mips_linux_close): Remove parameter quitting. Remove parameter
9998 quitting from a caller.
9999 * monitor.c (monitor_close): Remove parameter quitting.
10000 * monitor.h (monitor_close): Likewise.
10001 * record-btrace.c (record_btrace_close): Likewise.
10002 * record-full.c (record_full_close): Likewise.
10003 * remote-m32r-sdi.c (m32r_close): Remove parameter quitting and remove
10004 it also from fprintf_unfiltered.
10005 * remote-mips.c (mips_close): Remove parameter quitting.
10006 (mips_detach): Remove parameter quitting from a caller.
10007 * remote-sim.c (gdbsim_close): Remove parameter quitting.
10008 (gdbsim_close): Remove duplicate function comment. Remove parameter
10009 quitting and remove it also from printf_filtered.
10010 * remote.c (remote_close): Remove parameter quitting.
10011 * solib-svr4.c (enable_break): Remove parameter quitting from a caller.
10012 * target.c (update_current_target): Remove parameter int from to_close
10013 de_fault.
10014 (push_target, unpush_target, pop_target): Remove parameter quitting from
10015 a caller.
10016 (pop_all_targets_above, pop_all_targets): Remove parameter quitting.
10017 Remove parameter quitting from a caller.
10018 (target_preopen): Remove parameter quitting from a caller.
10019 (target_close): Remove parameter quitting. Remove parameter quitting
10020 from a caller two times. Remove parameter quitting also from
10021 fprintf_unfiltered.
10022 * target.h (struct target_ops): Remove parameter quitting and as int
10023 from fields to_xclose and to_close.
10024 (extern struct target_ops current_target):
10025 (target_close, pop_all_targets): Remove parameter quitting. Update the
10026 comment.
10027 (pop_all_targets_above): Remove parameter quitting.
10028 * top.c (quit_target): Remove parameter quitting from a caller.
10029 * tracepoint.c (tfile_close): Remove parameter quitting.
10030 * windows-nat.c (windows_close): Remove parameter quitting.
10031
10032 2013-03-20 Corinna Vinschen <vinschen@redhat.com>
10033
10034 * windows-nat.c (handle_output_debug_string): Replace call
10035 to string_to_core_addr with call to strtoull.
10036
10037 2013-03-20 Yao Qi <yao@codesourcery.com>
10038
10039 * ctf.c (ctf_save_metadata_header): Define macro HOST_ENDIANNESS
10040 and write it to CTF metadata.
10041
10042 2013-03-19 Corinna Vinschen <vinschen@redhat.com>
10043
10044 * windows-nat.c (handle_output_debug_string): Change type of n to
10045 SIZE_T to avoid crash on 64 bit systems.
10046
10047 2013-03-17 Eli Zaretskii <eliz@gnu.org>
10048
10049 * python/python-internal.h (HAVE_SNPRINTF)
10050 [_WIN32 && HAVE_DECL_SNPRINTF]: Define, to avoid compiler warnings
10051 about redefinition of snprintf by pyerrors.h.
10052
10053 2013-03-15 Steve Ellcey <sellcey@mips.com>
10054
10055 * remote-sim.c (sim_command_completer): Make char arguments const.
10056
10057 2013-03-15 Tom Tromey <tromey@redhat.com>
10058
10059 PR c++/15116:
10060 * gdbtypes.c (types_equal): Handle TYPE_CODE_FUNC.
10061
10062 2013-03-14 Tom Tromey <tromey@redhat.com>
10063
10064 * gdb_bfd.c (struct gdb_bfd_data) <crc_computed, crc>:
10065 New fields.
10066 (get_file_crc): Move from symfile.c.
10067 (gdb_bfd_crc): New function.
10068 * gdb_bfd.h (gdb_bfd_crc): Declare.
10069 * objfiles.h (struct objfile) <crc32, crc32_p>: Remove.
10070 * symfile.c (get_file_crc): Move to gdb_bfd.c.
10071 (separate_debug_file_exists): Use gdb_bfd_crc.
10072
10073 2013-03-14 Tom Tromey <tromey@redhat.com>
10074
10075 * symfile.c (get_debug_link_info): Remove.
10076 (find_separate_debug_file_by_debuglink): Use
10077 bfd_get_debug_link_info.
10078
10079 2013-03-14 Tom Tromey <tromey@redhat.com>
10080
10081 * symtab.c (error_in_psymtab_expansion): New function.
10082 (lookup_symbol_aux_quick)
10083 (basic_lookup_transparent_type_quick): Remove "last resort"
10084 code. Use error_in_psymtab_expansion.
10085
10086 2013-03-14 Doug Evans <dje@google.com>
10087 Jan Kratochvil <jan.kratochvil@redhat.com>
10088
10089 * dwarf2read.c (dw2_map_symtabs_matching_filename): Put continue after
10090 any successful compare_filenames_for_search or FILENAME_CMP.
10091 * psymtab.c (partial_map_symtabs_matching_filename): Likewise.
10092 * symtab.c (iterate_over_some_symtabs): Likewise.
10093
10094 2013-03-14 Jan Kratochvil <jan.kratochvil@redhat.com>
10095
10096 * source.c (print_source_lines_base): Make a local copy of
10097 symtab_to_fullname.
10098
10099 2013-03-14 Hui Zhu <hui_zhu@mentor.com>
10100 Jan Kratochvil <jan.kratochvil@redhat.com>
10101
10102 * source.c (print_source_lines_base): Suppress "file" for TUI.
10103
10104 2013-03-14 Keith Seitz <keiths@redhat.com>
10105 Alan Matsuoka <alanm@redhat.com>
10106
10107 PR c++/15203
10108 PR c++/15210
10109 * cp-namespace.c (cp_lookup_nested_symbol): Handle TYPE_CODE_FUNC and
10110 TYPE_CODE_METHOD.
10111 * elfread.c (elf_symtab_read): Handle BSF_GNU_UNIQUE for certain
10112 symbols.
10113
10114 2013-03-14 Yao Qi <yao@codesourcery.com>
10115
10116 * tracepoint.c (tfile_write_status): Write 'stop_desc' of trace
10117 status to tfile if trace is stopped by command 'tstop'.
10118
10119 2013-03-14 Yao Qi <yao@codesourcery.com>
10120
10121 * tracepoint.c (tfile_write_status): Write trace notes and user
10122 name into tfile if they are not NULL.
10123
10124 2013-03-14 Hui Zhu <hui@codesourcery.com>
10125 Yao Qi <yao@codesourcery.com>
10126
10127 * Makefile.in (REMOTE_OBS): Add ctf.o.
10128 (SFILES): Add ctf.c.
10129 (HFILES_NO_SRCDIR): Add ctf.h.
10130 * ctf.c, ctf.h: New files.
10131 * tracepoint.c: Include 'ctf.h'.
10132 (collect_pseudocommand): Remove static.
10133 (trace_save_command): Parse option "-ctf".
10134 Produce different trace file writers per option.
10135 Adjust output message.
10136 (trace_save_tfile, trace_save_ctf): New.
10137 * tracepoint.h (trace_save_tfile, trace_save_ctf): Declare.
10138 * mi/mi-main.c: Include 'ctf.h'.
10139 (mi_cmd_trace_save): Handle option '-ctf'. Call either
10140 trace_save_tfile or trace_save_ctf.
10141 * NEWS: Mention these changes.
10142
10143 2013-03-14 Yao Qi <yao@codesourcery.com>
10144
10145 * tracepoint.c (trace_file_writer_xfree): New.
10146 (struct tfile_writer_data): New.
10147 (tfile_dtor, tfile_can_target_save, tfile_start): New.
10148 (tfile_write_header, tfile_write_regblock_type): New.
10149 (tfile_write_status, tfile_write_uploaded_tsv): New.
10150 (tfile_write_uploaded_tp, tfile_write_definition_end): New.
10151 (tfile_write_raw_data, (tfile_end): New.
10152 (tfile_write_ops): New global variable.
10153 (TRACE_WRITE_R_BLOCK): New macro.
10154 (TRACE_WRITE_M_BLOCK_HEADER): New macro.
10155 (TRACE_WRITE_M_BLOCK_MEMORY): New macro.
10156 (TRACE_WRITE_V_BLOCK): New macro.
10157 (trace_save): Add extra one parameter WRITER. Make it static.
10158 Use WRITER to writer trace.
10159 (tfile_trace_file_writer_new): New.
10160 (trace_save_command): Caller update.
10161 (trace_save_tfile): Write trace data in TFILE format.
10162 * tracepoint.h (struct trace_frame_write_ops): New.
10163 (struct trace_file_write_ops): New.
10164 (struct trace_file_writer): New.
10165 (trace_save): Remove its declaration.
10166 (trace_save_tfile): Declare it.
10167 * mi/mi-main.c (mi_cmd_trace_save): Call trace_save_tfile
10168 instead of trace_save.
10169
10170 2013-03-13 Pedro Alves <palves@redhat.com>
10171
10172 * hppa-hpux-nat.c (hppa_hpux_save_state_offset): Make static.
10173
10174 2013-03-13 Pedro Alves <palves@redhat.com>
10175
10176 * dbxread.c (read_ofile_symtab, process_one_symbol): Remove
10177 commented out code.
10178 * demangle.c (current_demangling_style_string): Make it const.
10179 (set_demangling_command): Assert the demangling style is known.
10180 Remove all handling of unknown styles. Set
10181 'current_demangling_style_string' to an element of the
10182 demangling_style_names array.
10183 (set_demangling_style): Delete.
10184 (_initialize_demangler): Set current_demangling_style_string to the
10185 element of the demangling_style_names array that corresponds to
10186 the default demangling style. Remove FIXME note. Don't call
10187 set_demangling_style.
10188 * gdb-demangle.h (set_demangling_style): Remove declaration.
10189
10190 2013-03-13 Pedro Alves <palves@redhat.com>
10191
10192 * ada-lang.c (struct add_partial_datum) <text, text0, word>: Make
10193 fields const.
10194 (ada_make_symbol_completion_list): Make "text0" parameter const.
10195 * ax-gdb.c (agent_eval_command_one): Make "exp" parameter const.
10196 * breakpoint.c (condition_completer): Make "text" and "word"
10197 parameters const. Adjust.
10198 (check_tracepoint_command): Adjust to validate_actionline
10199 prototype change.
10200 (catch_syscall_completer): Make "text" and "word" parameters
10201 const.
10202 * cli/cli-cmds.c (show_user): Make "comname" local const.
10203 (valid_command_p): Make "command" parameter const.
10204 (alias_command): Make "alias_prefix" and "command_prefix" locals
10205 const.
10206 * cli/cli-decode.c (add_cmd): Make "name" parameter const.
10207 (add_alias_cmd): Make "name" and "oldname" parameters const.
10208 Adjust. No longer make copy of OLDNAME.
10209 (add_prefix_cmd, add_abbrev_prefix_cmd, add_set_or_show_cmd)
10210 (add_setshow_cmd_full, add_setshow_enum_cmd)
10211 (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
10212 (add_setshow_filename_cmd, add_setshow_string_cmd)
10213 (add_setshow_string_noescape_cmd)
10214 (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
10215 (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
10216 (add_setshow_zuinteger_unlimited_cmd, add_setshow_zuinteger_cmd)
10217 (delete_cmd, add_info, add_info_alias, add_com, add_com_alias):
10218 Make "name" parameter const.
10219 (help_cmd): Rename "command" parameter to "arg". New const local
10220 "command".
10221 (find_cmd): Make "command" parameter const.
10222 (lookup_cmd_1): Make "text" parameter pointer to const. Adjust to
10223 deprecated_cmd_warning prototype change.
10224 (undef_cmd_error): Make "cmdtype" parameter const.
10225 (lookup_cmd): Make "line" parameter const.
10226 (deprecated_cmd_warning): Change type of "text" parameter to
10227 pointer to const char, from pointer to pointer to char. Adjust.
10228 (lookup_cmd_composition): Make "text" parameter const.
10229 (complete_on_cmdlist, complete_on_enum): Make "text" and "word"
10230 parameters const.
10231 * cli/cli-decode.h (struct cmd_list_element) <name>: Make field
10232 const.
10233 * cli/cli-script.c (validate_comname): Make "tem" local const.
10234 (define_command): New const local "tem_c". Use it in calls to
10235 lookup_cmd.
10236 (document_command): Make "tem" and "comfull" locals const.
10237 (show_user_1): Make "prefix" and "name" parameters const.
10238 * cli-script.h (show_user_1): Make "prefix" and "name" parameters
10239 const.
10240 * command.h (add_cmd, add_alias_cmd, add_prefix_cmd)
10241 (add_abbrev_prefix_cmd, completer_ftype, lookup_cmd, lookup_cmd_1)
10242 (deprecated_cmd_warning, lookup_cmd_composition, add_com)
10243 (add_com_alias, add_info, add_info_alias, complete_on_cmdlist)
10244 (complete_on_enum, add_setshow_enum_cmd)
10245 (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
10246 (add_setshow_filename_cmd, add_setshow_string_cmd)
10247 (add_setshow_string_noescape_cmd)
10248 (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
10249 (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
10250 (add_setshow_zuinteger_cmd, add_setshow_zuinteger_unlimited_cmd):
10251 Change prototypes, constifying strings.
10252 * completer.c (noop_completer, filename_completer): Make "text"
10253 and "prefix" parameters const.
10254 (location_completer, expression_completer)
10255 (complete_line_internal): Make "text" and "prefix" parameters
10256 const and adjust.
10257 (command_completer, signal_completer): Make "text" and "prefix"
10258 parameters const.
10259 * completer.h (noop_completer, filename_completer)
10260 (expression_completer, location_completer, command_completer)
10261 (signal_completer): Change prototypes.
10262 * corefile.c (complete_set_gnutarget): Make "text" and "word"
10263 parameters const.
10264 * cp-abi.c (cp_abi_completer): Likewise.
10265 * expression.h (parse_expression_for_completion): Change
10266 prototype.
10267 * f-lang.c (f_make_symbol_completion_list): Make "text" and "word"
10268 parameters const.
10269 * infcmd.c (_initialize_infcmd): Make "cmd_name" local const.
10270 * infrun.c (handle_completer): Make "text" and "word" parameters
10271 const.
10272 * interps.c (interpreter_completer): Make "text" and "word"
10273 parameters const.
10274 * language.h (struct language_defn)
10275 <la_make_symbol_completion_list>: Make "text" and "word"
10276 parameters const.
10277 * parse.c (parse_exp_1): Move const hack to parse_exp_in_context.
10278 (parse_exp_in_context): Rename to ...
10279 (parse_exp_in_context_1): ... this.
10280 (parse_exp_in_context): Reimplement, with const hack from
10281 parse_exp_1.
10282 (parse_expression_for_completion): Make "string" parameter const.
10283 * printcmd.c (decode_format): Make "string_ptr" parameter pointer
10284 to pointer to const char. Adjust.
10285 (print_command_1): Make "exp" parameter const.
10286 (output_command): Rename to ...
10287 (output_command_const): ... this. Make "exp" parameter const.
10288 (output_command): Reimplement.
10289 (x_command): Adjust.
10290 (display_command): Rename "exp" parameter to "arg". New "exp"
10291 local, const version of "arg".
10292 * python/py-auto-load.c (gdbpy_initialize_auto_load): Make
10293 "cmd_name" local const.
10294 * python/py-cmd.c (cmdpy_destroyer): Cast const away in xfree
10295 call.
10296 (cmdpy_completer): Make "text" and "word" parameters const.
10297 (gdbpy_parse_command_name): Make "prefix_text2" local const.
10298 * python/py-param.c (add_setshow_generic): Make "tmp_name" local
10299 const.
10300 * remote.c (_initialize_remote): Make "cmd_name" local const.
10301 * symtab.c (language_search_unquoted_string): Make "text" and "p"
10302 parameters const. Adjust.
10303 (completion_list_add_fields): Make "sym_text", "text" and "word"
10304 parameters const.
10305 (struct add_name_data) <sym_text, text, word>: Make fields const.
10306 (default_make_symbol_completion_list_break_on): Make "text" and
10307 "word" parameters const. Adjust locals.
10308 (default_make_symbol_completion_list)
10309 (make_symbol_completion_list, make_symbol_completion_type)
10310 (make_symbol_completion_list_fn): Make "text" and "word"
10311 parameters const.
10312 (make_file_symbol_completion_list): Make "text", "word" and
10313 "srcfile" parameters const. Adjust locals.
10314 (add_filename_to_list): Make "text" and "word" parameters const.
10315 (struct add_partial_filename_data) <text, word>: Make fields
10316 const.
10317 (make_source_files_completion_list): Make "text" and "word"
10318 parameters const.
10319 * symtab.h (default_make_symbol_completion_list_break_on)
10320 (default_make_symbol_completion_list, make_symbol_completion_list)
10321 (make_symbol_completion_type enum type_code)
10322 (make_symbol_completion_list_fn make_file_symbol_completion_list)
10323 (make_source_files_completion_list): Change prototype.
10324 * top.c (execute_command): Adjust to pass pointer to pointer to
10325 const char to lookup_cmd, and to deprecated_cmd_warning prototype
10326 change.
10327 (set_verbose): Make "cmdname" local const.
10328 * tracepoint.c (decode_agent_options): Make "exp" parameter const,
10329 and adjust.
10330 (validate_actionline): Make "line" parameter a pointer to const
10331 char, and adjust.
10332 (encode_actions_1): Make "action_exp" local const, and adjust.
10333 (encode_actions): Adjust.
10334 (replace_comma): Delete.
10335 (trace_dump_actions): Make "action_exp" and "next_comma" locals
10336 const, and adjust. Don't frob the action string while splitting
10337 it at commas. Instead, make a copy of each split substring in
10338 turn.
10339 (trace_dump_command): Adjust to validate_actionline prototype
10340 change.
10341 * tracepoint.h (decode_agent_options, decode_agent_options)
10342 (encode_actions, validate_actionline): Change prototypes.
10343 * valprint.h (output_command): Delete declaration.
10344 (output_command_const): Declare.
10345 * value.c (function_destroyer): Cast const away in xfree call.
10346
10347 2013-03-13 Pedro Alves <palves@redhat.com>
10348
10349 * ada-lang.c (ada_decode_symbol): Cast away constness of GSYMBOL
10350 rather than casting 'const char * const *' to 'const char **'.
10351 * ada-lex.l (processInt): Make "trailer" local const. Remove
10352 'const char **' cast.
10353 * arm-linux-tdep.c (arm_stap_parse_special_token): Add 'char *'
10354 locals, and use those as strtol output pointer, instead than doing
10355 invalid casts to from 'const char **' to 'char **'.
10356 (_initialize_demangle): Remove cast.
10357 * i386-tdep.c (i386_stap_parse_special_token): : Add 'char *'
10358 locals, and use those as strtol output pointer, instead than doing
10359 invalid casts to from 'const char **' to 'char **'.
10360 * solib-dsbt.c (dsbt_get_initial_loadmaps): Remove 'gdb_byte**'
10361 casts.
10362 * stap-probe.c (stap_parse_register_operand)
10363 (stap_parse_single_operand): Likewise.
10364
10365 2013-03-13 Yao Qi <yao@codesourcery.com>
10366
10367 * tracepoint.c (tfile_get_trace_state_variable_value): Look for
10368 the last matched 'V' blcok in trace frame.
10369
10370 2013-03-12 Joel Brobecker <brobecker@adacore.com>
10371
10372 * NEWS: Create a new section for the next release branch.
10373 Rename the section of the current branch, now that it has
10374 been cut.
10375
10376 2013-03-12 Joel Brobecker <brobecker@adacore.com>
10377
10378 GDB 7.6 branch created (branch timestamp: 2013-03-12 22:15 UTC)
10379 * version.in: Bump version to 7.6.50.20130312-cvs.
10380
10381 2013-03-12 Keith Seitz <keiths@redhat.com>
10382
10383 * mi/mi-cmds.h (mi_execute_command): Make "cmd" const.
10384 * mi/mi-interp.c (mi_interpreter_exec): Make "command" const.
10385 Remove temporary copy of input string.
10386 (mi_execute_command_wrapper): Make "cmd" const.
10387 * mi/mi-main.c (mi_execute_command): Make "string_ptr" const.
10388 * mi/mi-parse.c (mi_parse_argv): Make "args" const.
10389 Use const strings.
10390 (mi_parse): Make "cmd" const.
10391 Use const strings.
10392 * mi/mi-parse.h (mi_parse): Make "cmd" const.
10393
10394 2013-03-12 Keith Seitz <keiths@redhat.com>
10395
10396 * ada-lang.c (ada_read_renaming_var_value): Pass const
10397 pointer to expression string to parse_exp_1.
10398 (create_excep_cond_exprs): Likewise.
10399 * ax-gdb.c (agent_eval_command_one): Likewise.
10400 (maint_agent_printf_command): Likewise.
10401 Constify much of the string handling/parsing.
10402 * breakpoint.c (set_breakpoint_condition): Pass const
10403 pointer to expression string to parse_exp_1.
10404 (update_watchpoint): Likewise.
10405 (parse_cmd_to_aexpr): Constify string handling.
10406 Pass const pointer to parse_exp_1.
10407 (init_breakpoint_sal): Pass const pointer to parse_exp_1.
10408 (find_condition_and_thread): Likewise.
10409 Make TOK const.
10410 (watch_command_1): Make "arg" const.
10411 Constify string handling.
10412 Copy the expression string instead of changing the input
10413 string.
10414 (update_breakpoint_location): Pass const pointer to
10415 parse_exp_1.
10416 * eval.c (parse_and_eval_address): Make "exp" const.
10417 (parse_to_comma_and_eval): Make "expp" const.
10418 (parse_and_eval): Make "exp" const.
10419 * expression.h (parse_expression): Make argument const.
10420 (parse_exp_1): Make first argument const.
10421 * findcmd.c (parse_find_args): Treat "args" as const.
10422 * linespec.c (parse_linespec): Pass const pointer to
10423 linespec_expression_to_pc.
10424 (linespec_expression_to_pc): Make "exp_ptr" const.
10425 * parse.c (parse_exp_1): Make "stringptr" const.
10426 Make a copy of the expression to pass to parse_exp_in_context until
10427 this whole interface can be constified.
10428 (parse_expression): Make "string" const.
10429 * printcmd.c (ui_printf): Treat "arg" as const.
10430 Handle const strings.
10431 * tracepoint.c (validate_actionline): Pass const pointer to
10432 all calls to parse_exp_1.
10433 (encode_actions_1): Likewise.
10434 * value.h (parse_to_comma_and_eval): Make argument const.
10435 (parse_and_eval_address): Likewise.
10436 (parse_and_eval): Likewise.
10437 * varobj.c (varobj_create): Pass const pointer to parse_exp_1.
10438 (varobj_set_value): Likewise.
10439 * cli/cli-cmds.c (disassemble_command): Treat "arg" as const and
10440 constify string handling.
10441 Pass const pointers to parse_and_eval_address and
10442 parse_to_comman_and_eval.
10443 * cli/cli-utils.c (skip_to_space): Rename to ...
10444 (skip_to_space_const): ... this. Handle const strings.
10445 * cli/cli-utils.h (skip_to_space): Turn into macro which invokes
10446 skip_to_space_const.
10447 (skip_to_space_const): Declare.
10448 * common/format.c (parse_format_string): Make "arg" const.
10449 Handle const strings.
10450 * common/format.h (parse_format_string): Make "arg" const.
10451 * gdbserver/ax.c (ax_printf): Make "format" const.
10452 * python/python.c (gdbpy_parse_and_eval): Do not make a copy
10453 of the expression string.
10454
10455 2013-03-12 Hui Zhu <hui@codesourcery.com>
10456
10457 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Update error message.
10458
10459 2013-03-12 Yao Qi <yao@codesourcery.com>
10460 Hui Zhu <hui@codesourcery.com>
10461
10462 * dwarf2loc.c (access_memory): Change nbits to nbytes in gdb_assert.
10463 (dwarf2_compile_expr_to_ax): Call access_memory in DW_OP_deref and
10464 DW_OP_deref_size.
10465
10466 2013-03-12 Paul Hilfinger <hilfingr@adacore.com>
10467
10468 * ada-lex.l (rules): Only recognize 'thread' as a
10469 delimiter when followed by numerals, as for c-exp.y.
10470 Use new rewind_to_char function to rewind the input for
10471 expression-delimiting tokens.
10472 (rewind_to_char): New function.
10473
10474 2013-03-11 Pedro Alves <palves@redhat.com>
10475 Jan Kratochvil <jan.kratochvil@redhat.com>
10476
10477 * configure: Regenerate.
10478 * configure.ac (check dynamic export flag): Link python test with
10479 $PYTHON_LIBS.
10480
10481 2013-03-11 Doug Evans <dje@google.com>
10482 Keith Seitz <keiths@redhat.com>
10483
10484 * linespec.c (find_linespec_symbols): Call find_function_symbols
10485 first, and then call lookup_prefix_sym/find_method.
10486
10487 2013-03-11 Pedro Alves <palves@redhat.com>
10488
10489 * charset.c (convert_between_encodings): Don't cast between
10490 different pointer to pointer types. Instead, make the 'inp' local
10491 be of the type iconv expects.
10492 (wchar_iterate): Don't cast between different pointer to pointer
10493 types. Instead, use new pointer local of the type iconv expects.
10494 * target.c (target_read_stralloc, target_fileio_read_stralloc):
10495 Add new local of type char pointer, and use it to get a
10496 char/string view of the byte buffer, instead of casting between
10497 pointer to pointer types.
10498
10499 2013-03-11 Hafiz Abid Qadeer <abidh@codesourcery.com>
10500
10501 * remote.c (remote_set_trace_buffer_size): Move != operator
10502 to the start of next line to fix an ARI warning.
10503
10504 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
10505
10506 * NEWS: Add record changes.
10507
10508 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
10509
10510 * record-btrace.c (btrace_insn_history): Omit the pc prefix in
10511 the instruction history disassembly.
10512 * disasm.c (dump_insns): Omit the pc prefix, if requested.
10513 * disasm.h (DISASSEMBLY_OMIT_PC): New.
10514
10515 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
10516
10517 * Makefile.in (SFILES): Add record-btrace.c
10518 (COMMON_OBS): Add record-btrace.o
10519 * record-btrace.c: New.
10520 * objfiles.c: Include btrace.h.
10521 (free_objfile): call btrace_free_objfile.
10522
10523 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
10524
10525 * target.c (target_call_history, target_call_history_from,
10526 target_call_history_range): New.
10527 * target.h (target_ops) <to_call_history, to_call_history_from,
10528 to_call_history_range>: New fields.
10529 (target_call_history, target_call_history_from,
10530 target_call_history_range): New declaration.
10531 * record.c (get_call_history_modifiers, cmd_record_call_history,
10532 record_call_history_size): New.
10533 (_initialize_record): Add the "record function-call-history" command.
10534 Add "set/show record function-call-history-size" commands.
10535 * record.h (record_print_flag): New.
10536
10537 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
10538
10539 * target.h (target_ops) <to_insn_history, to_insn_history_from,
10540 to_insn_history_range>: New fields.
10541 (target_insn_history): New.
10542 (target_insn_history_from): New.
10543 (target_insn_history_range): New.
10544 * target.c (target_insn_history): New.
10545 (target_insn_history_from): New.
10546 (target_insn_history_range): New.
10547 * record.c: Include cli/cli-utils.h, disasm.h, ctype.h.
10548 (record_insn_history_size): New.
10549 (get_insn_number): New.
10550 (get_context_size): New.
10551 (no_chunk): New.
10552 (get_insn_history_modifiers): New.
10553 (cmd_record_insn_history): New.
10554 (_initialize_record): Add "set/show record instruction-history-size"
10555 command. Add "record instruction-history" command.
10556
10557 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
10558
10559 * record.h (record_disconnect): New.
10560 (record_detach): New.
10561 (record_mourn_inferior): New.
10562 (record_kill): New.
10563 * record-full.c (record_disconnect, record_detach,
10564 record_mourn_inferior, record_kill): Move to...
10565 * record.c: ...here.
10566 (DEBUG): New.
10567 (record_stop): New.
10568 (record_unpush): New.
10569 (cmd_record_stop): Call record_stop. Replace unpush_target
10570 call with record_unpush call.
10571 (record_disconnect, record_detach): Assert that the target
10572 is of record stratum. Call record_unpush, record_stop, and
10573 DEBUG.
10574 (record_mourn_inferior, record_kill): Assert that the target
10575 is of record stratum. Call record_unpush and DEBUG.
10576
10577 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
10578
10579 * record-full.h, record-full.c (record_memory_query): Rename
10580 to ...
10581 (record_full_memory_query): ...this. Update all users.
10582 (record_arch_list_add_reg): Rename to ...
10583 (record_full_arch_list_add_reg): ...this. Update all users.
10584 (record_arch_list_add_mem): Rename to ...
10585 (record_full_arch_list_add_mem): ...this. Update all users.
10586 (record_arch_list_add_end): Rename to ...
10587 (record_full_arch_list_add_end): ...this. Update all users.
10588 (record_gdb_operation_disable_set): Rename to ...
10589 (record_full_gdb_operation_disable_set): ...this.
10590 Update all users.
10591
10592 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
10593
10594 * record-full.c (DEFAULT_RECORD_INSN_MAX_NUM): Renamed to ...
10595 (DEFAULT_RECORD_FULL_INSN_MAX_NUM): ... this. Updated all users.
10596 (RECORD_IS_REPLAY): Renamed to ...
10597 (RECORD_FULL_IS_REPLAY): ... this. Updated all users.
10598 (RECORD_FILE_MAGIC): Renamed to ...
10599 (RECORD_FULL_FILE_MAGIC): ... this. Updated all users.
10600 (record_mem_entry): Renamed to ...
10601 (record_full_mem_entry): ... this. Updated all users.
10602 (record_reg_entry): Renamed to ...
10603 (record_full_reg_entry): ... this. Updated all users.
10604 (record_end_entry): Renamed to ...
10605 (record_full_end_entry): ... this. Updated all users.
10606 (record_type) <record_end, record_reg, record_mem>: Renamed
10607 to ...
10608 (record_full_type) <record_full_end, record_full_reg,
10609 record_full_mem>: ... this. Updated all users.
10610 (record_entry): Renamed to ...
10611 (record_full_entry): ... this. Updated all users.
10612 (record_core_buf_entry): Renamed to ...
10613 (record_full_core_buf_entry): ... this. Updated all users.
10614 (record_core_regbuf): Renamed to ...
10615 (record_full_core_regbuf): ... this. Updated all users.
10616 (record_core_start): Renamed to ...
10617 (record_full_core_start): ... this. Updated all users.
10618 (record_core_end): Renamed to ...
10619 (record_full_core_end): ... this. Updated all users.
10620 (record_core_buf_list): Renamed to ...
10621 (record_full_core_buf_list): ... this. Updated all users.
10622 (record_first): Renamed to ...
10623 (record_full_first): ... this. Updated all users.
10624 (record_list): Renamed to ...
10625 (record_full_list): ... this. Updated all users.
10626 (record_arch_list_head): Renamed to ...
10627 (record_full_arch_list_head): ... this. Updated all users.
10628 (record_arch_list_tail): Renamed to ...
10629 (record_full_arch_list_tail): ... this. Updated all users.
10630 (record_stop_at_limit): Renamed to ...
10631 (record_full_stop_at_limit): ... this. Updated all users.
10632 (record_insn_max_num): Renamed to ...
10633 (record_full_insn_max_num): ... this. Updated all users.
10634 (record_insn_num): Renamed to ...
10635 (record_full_insn_num): ... this. Updated all users.
10636 (record_insn_count): Renamed to ...
10637 (record_full_insn_count): ... this. Updated all users.
10638 (record_ops): Renamed to ...
10639 (record_full_ops): ... this. Updated all users.
10640 (record_core_ops): Renamed to ...
10641 (record_full_core_ops): ... this. Updated all users.
10642 (set_record_cmdlist): Renamed to ...
10643 (set_record_full_cmdlist): ... this. Updated all users.
10644 (show_record_cmdlist): Renamed to ...
10645 (show_record_full_cmdlist): ... this. Updated all users.
10646 (record_cmdlist): Renamed to ...
10647 (record_full_cmdlist): ... this. Updated all users.
10648 (record_beneath_to_resume_ops): Renamed to ...
10649 (record_full_beneath_to_resume_ops): ... this. Updated all users.
10650 (record_beneath_to_resume): Renamed to ...
10651 (record_full_beneath_to_resume): ... this. Updated all users.
10652 (record_beneath_to_wait_ops): Renamed to ...
10653 (record_full_beneath_to_wait_ops): ... this. Updated all users.
10654 (record_beneath_to_wait): Renamed to ...
10655 (record_full_beneath_to_wait): ... this. Updated all users.
10656 (record_beneath_to_store_registers_ops): Renamed to ...
10657 (record_full_beneath_to_store_registers_ops): ... this.
10658 Updated all users.
10659 (record_beneath_to_store_registers): Renamed to ...
10660 (record_full_beneath_to_store_registers): ... this.
10661 Updated all users.
10662 (record_beneath_to_xfer_partial_ops): Renamed to ...
10663 (record_full_beneath_to_xfer_partial_ops): ... this.
10664 Updated all users.
10665 (record_beneath_to_xfer_partial): Renamed to ...
10666 (record_full_beneath_to_xfer_partial): ... this.
10667 Updated all users.
10668 (record_beneath_to_insert_breakpoint): Renamed to ...
10669 (record_full_beneath_to_insert_breakpoint): ... this.
10670 Updated all users.
10671 (record_beneath_to_stopped_by_watchpoint): Renamed to ...
10672 (record_full_beneath_to_stopped_by_watchpoint): ... this.
10673 Updated all users.
10674 (record_beneath_to_stopped_data_address): Renamed to ...
10675 (record_full_beneath_to_stopped_data_address): ... this.
10676 Updated all users.
10677 (record_beneath_to_async): Renamed to ...
10678 (record_full_beneath_to_async): ... this. Updated all users.
10679 (record_goto_insn): Renamed to ...
10680 (record_full_goto_insn): ... this. Updated all users.
10681 (record_save): Renamed to ...
10682 (record_full_save): ... this. Updated all users.
10683 (record_reg_alloc): Renamed to ...
10684 (record_full_reg_alloc): ... this. Updated all users.
10685 (record_reg_release): Renamed to ...
10686 (record_full_reg_release): ... this. Updated all users.
10687 (record_mem_alloc): Renamed to ...
10688 (record_full_mem_alloc): ... this. Updated all users.
10689 (record_mem_release): Renamed to ...
10690 (record_full_mem_release): ... this. Updated all users.
10691 (record_end_alloc): Renamed to ...
10692 (record_full_end_alloc): ... this. Updated all users.
10693 (record_end_release): Renamed to ...
10694 (record_full_end_release): ... this. Updated all users.
10695 (record_entry_release): Renamed to ...
10696 (record_full_entry_release): ... this. Updated all users.
10697 (record_list_release): Renamed to ...
10698 (record_full_list_release): ... this. Updated all users.
10699 (record_list_release_following): Renamed to ...
10700 (record_full_list_release_following): ... this.
10701 Updated all users.
10702 (record_list_release_first): Renamed to ...
10703 (record_full_list_release_first): ... this. Updated all users.
10704 (record_arch_list_add): Renamed to ...
10705 (record_full_arch_list_add): ... this. Updated all users.
10706 (record_get_loc): Renamed to ...
10707 (record_full_get_loc): ... this. Updated all users.
10708 (record_check_insn_num): Renamed to ...
10709 (record_full_check_insn_num): ... this. Updated all users.
10710 (record_arch_list_cleanups): Renamed to ...
10711 (record_full_arch_list_cleanups): ... this. Updated all users.
10712 (record_message): Renamed to ...
10713 (record_full_message): ... this. Updated all users.
10714 (record_message_wrapper): Renamed to ...
10715 (record_full_message_wrapper): ... this. Updated all users.
10716 (record_message_wrapper_safe): Renamed to ...
10717 (record_full_message_wrapper_safe): ... this. Updated all users.
10718 (record_gdb_operation_disable): Renamed to ...
10719 (record_full_gdb_operation_disable): ... this. Updated all users.
10720 (record_hw_watchpoint): Renamed to ...
10721 (record_full_hw_watchpoint): ... this. Updated all users.
10722 (record_exec_insn): Renamed to ...
10723 (record_full_exec_insn): ... this. Updated all users.
10724 (record_restore): Renamed to ...
10725 (record_full_restore): ... this. Updated all users.
10726 (record_async_inferior_event_token): Renamed to ...
10727 (record_full_async_inferior_event_token): ... this.
10728 Updated all users.
10729 (record_async_inferior_event_handler): Renamed to ...
10730 (record_full_async_inferior_event_handler): ... this.
10731 Updated all users.
10732 (record_core_open_1): Renamed to ...
10733 (record_full_core_open_1): ... this. Updated all users.
10734 (record_open_1): Renamed to ...
10735 (record_full_open_1): ... this. Updated all users.
10736 (record_open): Renamed to ...
10737 (record_full_open): ... this. Updated all users.
10738 (record_close): Renamed to ...
10739 (record_full_close): ... this. Updated all users.
10740 (record_resume_step): Renamed to ...
10741 (record_full_resume_step): ... this. Updated all users.
10742 (record_resumed): Renamed to ...
10743 (record_full_resumed): ... this. Updated all users.
10744 (record_execution_dir): Renamed to ...
10745 (record_full_execution_dir): ... this. Updated all users.
10746 (record_resume): Renamed to ...
10747 (record_full_resume): ... this. Updated all users.
10748 (record_get_sig): Renamed to ...
10749 (record_full_get_sig): ... this. Updated all users.
10750 (record_sig_handler): Renamed to ...
10751 (record_full_sig_handler): ... this. Updated all users.
10752 (record_wait_cleanups): Renamed to ...
10753 (record_full_wait_cleanups): ... this. Updated all users.
10754 (record_wait_1): Renamed to ...
10755 (record_full_wait_1): ... this. Updated all users.
10756 (record_wait): Renamed to ...
10757 (record_full_wait): ... this. Updated all users.
10758 (record_stopped_by_watchpoint): Renamed to ...
10759 (record_full_stopped_by_watchpoint): ... this. Updated all users.
10760 (record_disconnect): Renamed to ...
10761 (record_full_disconnect): ... this. Updated all users.
10762 (record_detach): Renamed to ...
10763 (record_full_detach): ... this. Updated all users.
10764 (record_mourn_inferior): Renamed to ...
10765 (record_full_mourn_inferior): ... this. Updated all users.
10766 (record_kill): Renamed to ...
10767 (record_full_kill): ... this. Updated all users.
10768 (record_stopped_data_address): Renamed to ...
10769 (record_full_stopped_data_address): ... this. Updated all users.
10770 (record_registers_change): Renamed to ...
10771 (record_full_registers_change): ... this. Updated all users.
10772 (record_store_registers): Renamed to ...
10773 (record_full_store_registers): ... this. Updated all users.
10774 (record_xfer_partial): Renamed to ...
10775 (record_full_xfer_partial): ... this. Updated all users.
10776 (record_breakpoint): Renamed to ...
10777 (record_full_breakpoint): ... this. Updated all users.
10778 (record_breakpoint_p): Renamed to ...
10779 (record_full_breakpoint_p): ... this. Updated all users.
10780 (record_breakpoints): Renamed to ...
10781 (record_full_breakpoints): ... this. Updated all users.
10782 (record_sync_record_breakpoints): Renamed to ...
10783 (record_full_sync_record_breakpoints): ... this.
10784 Updated all users.
10785 (record_init_record_breakpoints): Renamed to ...
10786 (record_full_init_record_breakpoints): ... this.
10787 Updated all users.
10788 (record_insert_breakpoint): Renamed to ...
10789 (record_full_insert_breakpoint): ... this. Updated all users.
10790 (record_remove_breakpoint): Renamed to ...
10791 (record_full_remove_breakpoint): ... this. Updated all users.
10792 (record_can_execute_reverse): Renamed to ...
10793 (record_full_can_execute_reverse): ... this. Updated all users.
10794 (record_get_bookmark): Renamed to ...
10795 (record_full_get_bookmark): ... this. Updated all users.
10796 (record_goto_bookmark): Renamed to ...
10797 (record_full_goto_bookmark): ... this. Updated all users.
10798 (record_async): Renamed to ...
10799 (record_full_async): ... this. Updated all users.
10800 (record_can_async_p): Renamed to ...
10801 (record_full_can_async_p): ... this. Updated all users.
10802 (record_is_async_p): Renamed to ...
10803 (record_full_is_async_p): ... this. Updated all users.
10804 (record_execution_direction): Renamed to ...
10805 (record_full_execution_direction): ... this. Updated all users.
10806 (record_info): Renamed to ...
10807 (record_full_info): ... this. Updated all users.
10808 (record_delete): Renamed to ...
10809 (record_full_delete): ... this. Updated all users.
10810 (record_is_replaying): Renamed to ...
10811 (record_full_is_replaying): ... this. Updated all users.
10812 (record_goto_entry): Renamed to ...
10813 (record_full_goto_entry): ... this. Updated all users.
10814 (record_goto_begin): Renamed to ...
10815 (record_full_goto_begin): ... this. Updated all users.
10816 (record_goto_end): Renamed to ...
10817 (record_full_goto_end): ... this. Updated all users.
10818 (record_goto): Renamed to ...
10819 (record_full_goto): ... this. Updated all users.
10820 (init_record_ops): Renamed to ...
10821 (init_record_full_ops): ... this. Updated all users.
10822 (record_core_resume): Renamed to ...
10823 (record_full_core_resume): ... this. Updated all users.
10824 (record_core_kill): Renamed to ...
10825 (record_full_core_kill): ... this. Updated all users.
10826 (record_core_fetch_registers): Renamed to ...
10827 (record_full_core_fetch_registers): ... this. Updated all users.
10828 (record_core_prepare_to_store): Renamed to ...
10829 (record_full_core_prepare_to_store): ... this. Updated all users.
10830 (record_core_store_registers): Renamed to ...
10831 (record_full_core_store_registers): ... this. Updated all users.
10832 (record_core_xfer_partial): Renamed to ...
10833 (record_full_core_xfer_partial): ... this. Updated all users.
10834 (record_core_insert_breakpoint): Renamed to ...
10835 (record_full_core_insert_breakpoint): ... this. Updated all users.
10836 (record_core_remove_breakpoint): Renamed to ...
10837 (record_full_core_remove_breakpoint): ... this. Updated all users.
10838 (record_core_has_execution): Renamed to ...
10839 (record_full_core_has_execution): ... this. Updated all users.
10840 (init_record_core_ops): Renamed to ...
10841 (init_record_full_core_ops): ... this. Updated all users.
10842 (cmd_record_restore): Renamed to ...
10843 (cmd_record_full_restore): ... this. Updated all users.
10844 (record_save_cleanups): Renamed to ...
10845 (record_full_save_cleanups): ... this. Updated all users.
10846 (cmd_record_start): Renamed to ...
10847 (cmd_record_full_start): ... this. Updated all users.
10848 (set_record_insn_max_num): Renamed to ...
10849 (set_record_full_insn_max_num): ... this. Updated all users.
10850 (set_record_command): Renamed to ...
10851 (set_record_full_command): ... this. Updated all users.
10852 (show_record_command): Renamed to ...
10853 (show_record_full_command): ... this. Updated all users.
10854 (_initialize_record): Renamed to ...
10855 (_initialize_record_full): ... this. Updated all users.
10856
10857 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
10858
10859 * record.h: Split into this and ...
10860 * record-full.h: ... this.
10861 * record.c: Split into this and ...
10862 * record-full.c: ... this.
10863 * target.h (target_ops): Add new fields to_info_record,
10864 to_save_record, to_delete_record, to_record_is_replaying,
10865 to_goto_record_begin, to_goto_record_end, to_goto_record.
10866 (target_info_record): New.
10867 (target_save_record): New.
10868 (target_supports_delete_record): New.
10869 (target_delete_record): New.
10870 (target_record_is_replaying): New.
10871 (target_goto_record_begin): New.
10872 (target_goto_record_end): New.
10873 (target_goto_record): New.
10874 * target.c (target_info_record): New.
10875 (target_save_record): New.
10876 (target_supports_delete_record): New.
10877 (target_delete_record): New.
10878 (target_record_is_replaying): New.
10879 (target_goto_record_begin): New.
10880 (target_goto_record_end): New.
10881 (target_goto_record): New.
10882 * record.h: Declare struct cmd_list_element.
10883 (record_cmdlist): New declaration.
10884 (set_record_cmdlist): New declaration.
10885 (show_record_cmdlist): New declaration.
10886 (info_record_cmdlist): New declaration.
10887 (cmd_record_goto): New declaration.
10888 * record.c: Remove unnecessary includes.
10889 Include inferior.h.
10890 (cmd_record_goto): Remove declaration.
10891 (record_cmdlist): Now extern. Initialize.
10892 (set_record_cmdlist): Now extern. Initialize.
10893 (show_record_cmdlist): Now extern. Initialize.
10894 (info_record_cmdlist): Now extern. Initialize.
10895 (find_record_target): New.
10896 (require_record_target): New.
10897 (cmd_record_start): Update.
10898 (cmd_record_delete): Remove target-specific code.
10899 Call target_delete_record.
10900 (cmd_record_stop): Unpush any record target.
10901 (set_record_insn_max_num): Move to record-full.c
10902 (set_record_command): Add comment.
10903 (show_record_command): Add comment.
10904 (info_record_command): Update comment.
10905 Remove target-specific code.
10906 Call the record target's to_info_record.
10907 (cmd_record_start): New.
10908 (cmd_record_goto): Now extern.
10909 Remove target-specific code.
10910 Call target_goto_begin, target_goto_end, or target_goto.
10911 (_initialize_record): Move record target ops initialization to
10912 record-full.c.
10913 Change "record" command help text.
10914 Move "record restore", "record set", and "record show" commands to
10915 record-full.c.
10916 * Makefile.in (SFILES): Add record-full.c.
10917 (HFILES_NO_SRCDIR): Add record-full.h.
10918 (COMMON_OBS): Add record-full.o.
10919 * amd64-linux-tdep.c: Include record-full.h instead of record.h.
10920 * arm-tdep.c: Include record-full.h.
10921 * i386-linux-tdep.c: Include record-full.h instead of record.h.
10922 * i386-tdep.c: Include record-full.h.
10923 * infrun.c: Include record-full.h.
10924 * linux-record.c: Include record-full.h.
10925 * moxie-tdep.c: Include record-full.h.
10926 * record-full.c: Include record-full.h.
10927 Change module comment.
10928 (set_record_full_cmdlist): New.
10929 (show_record_full_cmdlist): New.
10930 (record_full_cmdlist): New.
10931 (record_goto_insn): New declaration.
10932 (record_save): New declaration.
10933 (record_check_insn_num): Change query string.
10934 (record_info): New.
10935 (record_delete): New.
10936 (record_is_replaying): New.
10937 (record_goto_entry): New.
10938 (record_goto_begin): New.
10939 (record_goto_end): New.
10940 (record_goto): New.
10941 (init_record_ops): Update.
10942 (init_record_core_ops): Update.
10943 (cmd_record_save): Rename to record_save. Remove target and arg checks.
10944 (cmd_record_start): New.
10945 (set_record_insn_max_num): Moved from record.c
10946 (set_record_full_command): New.
10947 (show_record_full_command): New.
10948 (_initialize_record_full): New.
10949
10950 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
10951
10952 * target.h (add_deprecated_target_alias): New.
10953 * target.c (add_deprecated_target_alias): New.
10954
10955 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
10956
10957 * common/linux-btrace.c: Include sys/ptrace, sys/types, sys/wait.h,
10958 and signal.h.
10959 (linux_supports_btrace): Add kernel and
10960 cpuid check.
10961 (kernel_supports_btrace): New function.
10962 (cpu_supports_btrace): New function.
10963 (intel_supports_btrace): New function.
10964
10965 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
10966
10967 * target.h (enum target_object): Add TARGET_OBJECT_BTRACE.
10968 * remote.c: Include btrace.h.
10969 (struct btrace_target_info): New struct.
10970 (remote_supports_btrace): New function.
10971 (send_Qbtrace): New function.
10972 (remote_enable_btrace): New function.
10973 (remote_disable_btrace): New function.
10974 (remote_teardown_btrace): New function.
10975 (remote_read_btrace): New function.
10976 (init_remote_ops): Add btrace ops.
10977 (enum <unnamed>): Add btrace packets.
10978 (struct protocol_feature remote_protocol_features[]): Add btrace packets.
10979 (_initialize_remote): Add packet configuration for branch tracing.
10980
10981 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
10982
10983 * features/btrace.dtd: New file.
10984 * Makefile.in (XMLFILES): Add btrace.dtd.
10985 * btrace.h (parse_xml_btrace): New declaration.
10986 * btrace.c: Include xml-support.h.
10987 (parse_xml_btrace): New function.
10988 (parse_xml_btrace_block): New function.
10989 (block_attributes): New struct.
10990 (btrace_attributes): New struct.
10991 (btrace_children): New struct.
10992 (btrace_elements): New struct.
10993
10994 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
10995
10996 * amd64-linux-nat.c: Include btrace.h and linux-btrace.h.
10997 (amd64_linux_enable_btrace): New.
10998 (amd64_linux_disable_btrace): New.
10999 (amd64_linux_teardown_btrace): New.
11000 (_initialize_amd64_linux_nat): Initialize btrace ops.
11001 * i386-linux.nat.c: Include btrace.h and linux-btrace.h.
11002 (i386_linux_enable_btrace): New.
11003 (i386_linux_disable_btrace): New.
11004 (i386_linux_teardown_btrace): New.
11005 (_initialize_i386_linux_nat): Initialize btrace ops.
11006 * config/i386/linux.mh: Add linux-btrace.o.
11007 * config/i386/linux64.mh: Add linux-btrace.o.
11008
11009 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
11010
11011 * common/linux_btrace.h: New file.
11012 * common/linux_btrace.c: New file.
11013 * Makefile.in (SFILES): Add btrace.c.
11014 (HFILES_NO_SRCDIR): Add common/linux-btrace.h.
11015 (COMMON_OBS): Add btrace.o.
11016 (linux-btrace.o): New rule.
11017
11018 2013-03-11 Markus Metzger <markus.t.metzger@intel.com>
11019
11020 * target.h: Include btrace.h.
11021 (struct target_ops) <to_supports_btrace, to_enable_btrace,
11022 to_disable_btrace, to_teardown_btrace, to_read_btrace>: New.
11023 * target.c (target_supports_btrace): New function.
11024 (target_enable_btrace): New function.
11025 (target_disable_btrace): New function.
11026 (target_teardown_btrace): New function.
11027 (target_read_btrace): New function.
11028 * btrace.h: New file.
11029 * btrace.c: New file.
11030 * Makefile.in: Add btrace.c.
11031 * gdbthread.h: Include btrace.h.
11032 (struct thread_info): Add btrace field.
11033 * thread.c: Include btrace.h.
11034 (clear_thread_inferior_resources): Call target_teardown_btrace.
11035 * common/btrace-common.h: New file.
11036
11037 2013-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
11038
11039 * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Call also kill
11040 for CHILD, ignore PTRACE_KILL errors, move the inner block variable
11041 kill_status to outer block.
11042
11043 2013-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
11044
11045 Fix entry-values if the callee called a noreturn function.
11046 * dwarf2-frame-tailcall.c (dwarf2_tailcall_sniffer_first): Use
11047 get_frame_address_in_block. Add new comment.
11048
11049 2013-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
11050
11051 Fix entry-values in C++ across CUs.
11052 * dwarf2loc.c (call_site_to_target_addr) <FIELD_LOC_KIND_PHYSNAME>: Use
11053 lookup_minimal_symbol. Add a comment.
11054 * dwarf2read.c
11055 (read_call_site_scope) <is_ref_attr> <die_is_declaration>: Prefer
11056 DW_AT_linkage_name.
11057
11058 2013-03-08 Yao Qi <yao@codesourcery.com>
11059
11060 * tracepoint.c (_initialize_tracepoint): Indent the code.
11061
11062 2013-03-08 Pedro Alves <palves@redhat.com>
11063
11064 * findcmd.c (put_bits): Change type of parameter to 'gdb_byte *'.
11065 (parse_find_args, find_command): Change type of pattern buffer
11066 locals to 'gdb_byte *'.
11067
11068 2013-03-08 Stan Shebs <stan@codesourcery.com>
11069 Hafiz Abid Qadeer <abidh@codesourcery.com>
11070
11071 * NEWS: Mention set and show trace-buffer-size commands.
11072 Mention new packet.
11073 * target.h (struct target_ops): New method
11074 to_set_trace_buffer_size.
11075 (target_set_trace_buffer_size): New macro.
11076 * target.c (update_current_target): Set up new method.
11077 * tracepoint.c (trace_buffer_size): New global.
11078 (start_tracing): Send it to the target.
11079 (set_trace_buffer_size): New function.
11080 (_initialize_tracepoint): Add new setshow for trace-buffer-size.
11081 * remote.c (remote_set_trace_buffer_size): New function.
11082 (_initialize_remote): Use it.
11083 (QTBuffer:size) New remote command.
11084 (PACKET_QTBuffer_size): New enum.
11085 (remote_protocol_features): Add an entry for
11086 PACKET_QTBuffer_size.
11087
11088 2013-03-08 Tom Tromey <tromey@redhat.com>
11089
11090 * remote-m32r-sdi.c (m32r_load): Call skip_spaces on correct
11091 variable.
11092
11093 2013-03-07 Pedro Alves <palves@redhat.com>
11094
11095 * target.c (target_read_stralloc, target_fileio_read_alloc):
11096 *Cast pointer to 'gdb_byte *' in target call.
11097
11098 2013-03-07 Pedro Alves <palves@redhat.com>
11099
11100 * corefile.c (read_memory_string): Cast pointer to gdb_byte* in
11101 call.
11102
11103 2013-03-07 Keith Seitz <keiths@redhat.com>
11104
11105 * breakpoint.c (catch_syscall_split_args): Use skip_spaces.
11106 (trace_pass_command): Likewise.
11107 * cli/cli-cmds.c: Include cli/cli-utils.h.
11108 (source_command): Use skip-spaces.
11109 (disassemble_command): Likewise.
11110 * findcmd.c: Include cli/cli-utils.h.
11111 (parse_find_args): Use skip_spaces.
11112 * go32-nat.c: Include cli/cli-utils.h.
11113 (go32_sldt): Use skip_spaces.
11114 (go32_sgdt): Likewise.
11115 (go32_sidt): Likewise.
11116 (go32_pde): Likewise.
11117 (go32_pte): Likewise.
11118 (go32_pte_for_address): Likewise.
11119 * infcmd.c: Include cli/cli-utils.h.
11120 (registers_info): Use skip_spaces.
11121 * linux-tdep.c (read_mapping): Use skip_spaces_const.
11122 (linux_info_proc): Likewise.
11123 * linux-thread-db.c: Include cli/cli-utils.h.
11124 (info_auto_load_libthread_db): Use skip_spaces_const.
11125 * m32r-rom.c: Include cli/cli-utils.h.
11126 (m32r_upload_command): Use skip_spaces.
11127 * maint.c: Include cli/cli-utils.h.
11128 (maintenance_translate_address): Use skip_spaces.
11129 * mi/mi-parse.c: Include cli/cli-utils.h.
11130 (mi_parse_argv): Use skip_spaces.
11131 (mi_parse): Likewise.
11132 * minsyms.c: Include cli/cli-utils.h.
11133 (msymbol_hash_iw): Use skip_spaces_const.
11134 * objc-lang.c: Include cli/cli-utils.h.
11135 (parse_selector): Use skip_spaces.
11136 (parse_method): Likewise.
11137 * python/python.c: Include cli/cli-utils.h.
11138 (python_interactive_command)[HAVE_PYTHON]: Use skip_spaces.
11139 (python_command)[HAVE_PYTHON]: Likewise.
11140 (python_interactive_command)[!HAVE_PYTHON]: Likewise.
11141 * remote-m32r-sdi.c: Include cli/cli-utils.h.
11142 (m32r_load): Use skip_spaces.
11143 * serial.c: Include cli/cli-utils.h.
11144 (serial_open): Use skip_spaces_const.
11145 * stack.c: Include cli/cli-utils.h.
11146 (parse_frame_specification_1): Use skip_spaces_const.
11147 * symfile.c: Include cli/cli-utils.h.
11148 (set_ext_lang_command): Use skip_spaces.
11149 * symtab.c: Include cli/cli-utils.h.
11150 (rbreak_command): Use skip_spaces.
11151 * thread.c (thread_name_command): Use skip_spaces.
11152 * tracepoint.c (validate_actionline): Use skip_spaces.
11153 (encode_actions_1): Likewise.
11154 (trace_find_range_command): Likewise.
11155 (trace_find_outside_command): Likewise.
11156 (trace_dump_actions): Likewise.
11157
11158 2013-03-07 Pedro Alves <palves@redhat.com>
11159
11160 * c-lang.c (parse_one_string): Cast argument to gdb_byte *.
11161 * expprint.c (print_subexp_standard): Likewise.
11162 * utils.c (host_char_to_target): Likewise.
11163 * valprint.c (generic_emit_char, generic_printstr): Likewise.
11164 * varobj.c (value_get_print_value): Change type of local to char*.
11165 Cast it gdb_byte * in call to language printer.
11166
11167 2013-03-07 Pedro Alves <palves@redhat.com>
11168
11169 * charset.c (struct wchar_iterator) <input>: Change type to 'const
11170 gdb_byte *'.
11171 (make_wchar_iterator): Remove cast to char*.
11172 (wchar_iterate): Change type of local.
11173
11174 2013-03-07 Pedro Alves <palves@redhat.com>
11175
11176 * regcache.c (regcache_xmalloc_1): Call XCALLOC with signed char
11177 for 'regcache->register_status'.
11178
11179 2013-03-07 Pedro Alves <palves@redhat.com>
11180
11181 * breakpoint.c (breakpoint_xfer_memory): Change type of local to
11182 int.
11183
11184 2013-03-07 Pedro Alves <palves@redhat.com>
11185
11186 * stap-probe.c (handle_stap_probe): Add cast to char*.
11187
11188 2013-03-07 Pedro Alves <palves@redhat.com>
11189
11190 * linux-record.c (record_linux_system_call) <gdb_sys_msgrcv,
11191 RECORD_MSGRCV>: Pass a signed variable to
11192 regcache_raw_read_signed, instead of an unsigned one.
11193
11194 2013-03-07 Pedro Alves <palves@redhat.com>
11195
11196 * remote-notif.c (notif_debug): Change type to int.
11197 * remote-notif.h (notif_debug): Likewise.
11198
11199 2013-03-07 Pedro Alves <palves@redhat.com>
11200
11201 * ser-tcp.c (tcp_retry_limit): Change type to unsigned int.
11202
11203 2013-03-07 Pedro Alves <palves@redhat.com>
11204
11205 * remote.c (hex2bin, bin2hex): Move extern declarations to ...
11206 * remote.h (hex2bin, bin2hex): ... here.
11207 * tracepoint.c (hex2bin, bin2hex): Remove extern declarations.
11208
11209 2013-03-07 Eli Zaretskii <eliz@gnu.org>
11210
11211 * utils.c (initialize_utils): Improve doc strings of "set/show
11212 width", "set/show height", and "set/show pagination".
11213
11214 2013-03-06 Keith Seitz <keiths@redhat.com>
11215
11216 * ax-gdb.c (gen_printf): Make FORMAT const.
11217 * ax-gdb.h (gen_printf): Likewise.
11218 * ax-general.c (ax_string): Make STR const.
11219 * ax.h (ax_string): Likewise.
11220
11221 2013-03-06 Doug Evans <dje@google.com>
11222
11223 * elfread.c (elf_symfile_read): Move debugging printf to more
11224 logical location.
11225
11226 2013-03-06 Pedro Alves <palves@redhat.com>
11227
11228 * python/py-utils.c (target_string_to_unicode): Delete function.
11229 * python/python-internal.h (target_string_to_unicode): Delete
11230 declaration.
11231
11232 2013-03-06 Pierre Muller <muller@sourceware.org>
11233
11234 * linespec.c (get_current_search_block): ARI fix, use (void)
11235 for empty parameter list.
11236
11237 2013-03-05 Doug Evans <dje@google.com>
11238
11239 * ada-lang.c (ada_lookup_symbol_list_worker): New function, contents
11240 of old ada_lookup_symbol_list. In !full_search case, don't
11241 search superblocks.
11242 (ada_lookup_symbol_list): Delete arg full_search, all callers
11243 updated. Call ada_lookup_symbol_list_worker.
11244 (ada_iterate_over_symbols): Call ada_lookup_symbol_list_worker.
11245 * ada-lang.h (ada_lookup_symbol_list): Update.
11246 * language.h (language_defn): Update comment for
11247 la_iterate_over_symbols.
11248 * linespec.c (iterate_over_file_blocks): New function.
11249 (iterate_over_all_matching_symtabs): Call it.
11250 (lookup_prefix_sym): Ditto.
11251 (get_current_search_block): New function.
11252 (get_search_block): Delete.
11253 (find_label_symbols): Call get_current_search_block.
11254 (add_matching_symbols_to_info): Call iterate_over_file_blocks.
11255 * symtab.c (iterate_over_symbols): Don't search superblocks.
11256
11257 2013-03-05 Yao Qi <yao@codesourcery.com>
11258
11259 * cli/cli-decode.c (add_setshow_zuinteger_unlimited_cmd): Change
11260 parameter VAR's type from "unsigned int" to "int".
11261 * command.h (var_zuinteger_unlimited): Update its comments.
11262 (add_setshow_zuinteger_unlimited_cmd): Update the declaration.
11263
11264 2013-03-05 Corinna Vinschen <vinschen@redhat.de>
11265
11266 * NEWS: Mention new target x86_64-*-cygwin*.
11267
11268 2013-03-05 Corinna Vinschen <vinschen@redhat.de>
11269
11270 * configure.host: Add x86_64-*-cygwin* as host.
11271 * configure.tgt: Add x86_64-*-cygwin* as target.
11272 * config/i386/cygwin64.mh: New file.
11273
11274 2013-03-04 Jan Kratochvil <jan.kratochvil@redhat.com>
11275
11276 * linespec.c (decode_line_2): Fix duplicate request off by two message.
11277
11278 2013-03-04 Jan Kratochvil <jan.kratochvil@redhat.com>
11279
11280 * linespec.c (struct linespec_canonical_name): New.
11281 (struct linespec_state): Change canonical_names type to it.
11282 (add_sal_to_sals): Change variable canonical_name to canonical. Change
11283 xrealloc element size. Initialize the different CANONICAL fields.
11284 (canonical_to_fullform): New.
11285 (filter_results): Use it. Add variables canonical, fullform and
11286 cleanup.
11287 (struct decode_line_2_item, decode_line_2_compare_items): New.
11288 (decode_line_2): Remove variables iter and item_names, add variables
11289 items and items_count. Modify the code for these new variables.
11290
11291 2013-03-04 Corinna Vinschen <vinschen@redhat.com>
11292
11293 * coff-pe-read.c (read_pe_exported_syms): Don't return without
11294 calling do_cleanup.
11295
11296 2013-03-04 Luis Machado <lgustavo@codesourcery.com>
11297
11298 * tracepoint.c (build_traceframe_info): Add code for byte order.
11299
11300 2013-03-02 Kevin Buettner <kevinb@redhat.com>
11301
11302 * v850-tdep.c: (v850e2_register_name): Revise system register
11303 names to match current V850E2M architecture specifications.
11304 Update register number enum comments too.
11305
11306 2013-03-01 Jiong Wang <jiwang@tilera.com>
11307 Pedro Alves <palves@redhat.com>
11308
11309 * tilegx-tdep.c (tilegx_analyze_prologue): Limit bundle reading
11310 to END_ADDR.
11311 (tilegx_skip_prologue): Limit prologue analysis to section end.
11312
11313 2013-03-01 Jan Kratochvil <jan.kratochvil@redhat.com>
11314
11315 * dwarf2loc.c (call_site_find_chain_1): New variable save_callee_pc,
11316 use it.
11317
11318 2013-03-01 Pedro Alves <palves@redhat.com>
11319
11320 Use gdb_byte for bytes from the program being debugged.
11321
11322 * arm-tdep.c (arm_store_return_value, arm_get_longjmp_target):
11323 Change type of local 'buf' to gdb_byte.
11324 * avr-tdep.c (avr_frame_prev_register, avr_push_dummy_call): Likewise.
11325 * bfin-tdep.c (bfin_push_dummy_call): Likewise.
11326 * cris-tdep.c (cris_sigcontext_addr)
11327 (cris_sigtramp_frame_unwind_cache): Likewise.
11328 * frv-linux-tdep.c (frv_linux_pc_in_sigtramp)
11329 (frv_linux_sigcontext_reg_addr, frv_linux_sigtramp_frame_cache):
11330 Likewise.
11331 * frv-tdep.c (frv_pseudo_register_write, frv_analyze_prologue): Likewise.
11332 * hppa-hpux-tdep.c (hppa32_hpux_find_global_pointer)
11333 (hppa32_hpux_search_dummy_call_sequence)
11334 (hppa_hpux_supply_save_state): Likewise.
11335 * hppa-linux-tdep.c (insns_match_pattern)
11336 (hppa_linux_find_global_pointer): Likewise.
11337 * hppa-tdep.c (hppa_in_function_epilogue_p)
11338 (skip_prologue_hard_way, hppa_frame_cache): Likewise.
11339 * i386-nto-tdep.c (i386nto_sigcontext_addr): Likewise.
11340 * i386fbsd-tdep.c (i386fbsd_supply_uthread)
11341 (i386fbsd_collect_uthread): Likewise.
11342 * ia64-hpux-tdep.c (ia64_hpux_push_dummy_code): Likewise.
11343 * ia64-linux-tdep.c (ia64_linux_sigcontext_register_address): Likewise.
11344 * ia64-tdep.c (examine_prologue, ia64_frame_cache)
11345 (ia64_frame_prev_register, ia64_sigtramp_frame_cache)
11346 (ia64_sigtramp_frame_prev_register, ia64_access_reg)
11347 (ia64_access_rse_reg, ia64_libunwind_frame_this_id)
11348 (ia64_libunwind_frame_prev_register)
11349 (ia64_libunwind_sigtramp_frame_this_id)
11350 (ia64_find_global_pointer_from_dynamic_section)
11351 (find_extant_func_descr, find_func_descr, ia64_dummy_id)
11352 (ia64_unwind_pc): Likewise.
11353 * iq2000-tdep.c (iq2000_store_return_value): Likewise.
11354 * m68hc11-tdep.c (m68hc11_push_dummy_call)
11355 (m68hc11_extract_return_value): Likewise.
11356 * m68klinux-nat.c (fetch_register, store_register): Likewise.
11357 * mep-tdep.c (mep_pseudo_cr32_read, mep_pseudo_cr32_write)
11358 (mep_get_insn, mep_push_dummy_call): Likewise.
11359 * mips-linux-tdep.c (mips_linux_get_longjmp_target)
11360 (mips_linux_in_dynsym_stub): Likewise.
11361 * mn10300-tdep.c (mep_pseudo_cr32_write): Likewise.
11362 * ppc-linux-nat.c (fetch_register, store_register): Likewise.
11363 * regcache.c (dump_endian_bytes): Change type of parameter 'buf'
11364 to gdb_byte.
11365 * remote-mips.c (mips_set_register): Likewise.
11366 * remote-sim.c (gdbsim_fetch_register): Likewise.
11367 * score-tdep.c (score7_fetch_inst): Change type of parameter
11368 'memblock' and local 'buf' to gdb_byte.
11369 (score7_malloc_and_get_memblock): Change return type to gdb_byte.
11370 Change type of local 'buf' to gdb_byte. Adjust.
11371 (score7_adjust_memblock_ptr): Change type of parameter 'memblock'
11372 to gdb_byte**.
11373 (score7_analyze_prologue): Change type of 'memblock' and
11374 'memblock_ptr' locals to gdb_byte*.
11375 * sh64-tdep.c (sh64_extract_return_value)
11376 (sh64_store_return_value): Change type of local 'buf' to gdb_byte.
11377 * solib-darwin.c (darwin_current_sos, darwin_read_exec_load_addr):
11378 * solib-pa64.c (pa64_solib_create_inferior_hook)
11379 (pa64_open_symbol_file_object): Remove local 'buf'.
11380 * solib-som.c (som_solib_create_inferior_hook, link_map_start)
11381 (som_open_symbol_file_object): Likewise.
11382 * solib-spu.c (spu_current_sos): Likewise.
11383 * spu-linux-nat.c (spu_fetch_inferior_registers): Likewise.
11384 * spu-multiarch.c (parse_spufs_run, spu_fetch_registers)
11385 (spu_store_registers): Likewise.
11386 * target.c (debug_print_register): Likewise.
11387 * tic6x-tdep.c (tic6x_get_longjmp_target): Likewise.
11388 * xstormy16-tdep.c (xstormy16_store_return_value)
11389 (xstormy16_push_dummy_call, xstormy16_resolve_jmp_table_entry)
11390 (xstormy16_find_jmp_table_entry): Likewise.
11391
11392 2013-03-01 Jiong Wang <jiwang@tilera.com>
11393
11394 * tilegx-tdep.c (tilegx_get_longjmp_target): New function.
11395 (tilegx_gdbarch_init): Install it.
11396
11397 2013-02-28 Tom Tromey <tromey@redhat.com>
11398
11399 * python/py-arch.c (archpy_disassemble): Use PyInt_Check and
11400 PyLong_Check.
11401
11402 2013-02-28 Doug Evans <dje@google.com>
11403
11404 * python/py-finishbreakpoint.c (bpfinishpy_init): gcc -Wall lint.
11405 * python/python.c (gdbpy_find_pc_line): Ditto.
11406
11407 2013-02-28 Tom Tromey <tromey@redhat.com>
11408
11409 * contrib/excheck.py: New file.
11410 * contrib/exsummary.py: New file.
11411 * contrib/gcc-with-excheck: New file.
11412
11413 2013-02-28 Tom Tromey <tromey@redhat.com>
11414
11415 * python/python.c (gdbpy_print_stack): Call begin_line and
11416 fprintf_filtered inside TRY_CATCH.
11417
11418 2013-02-28 Tom Tromey <tromey@redhat.com>
11419
11420 * python/python.c (gdbpy_find_pc_line): Call find_pc_line
11421 inside TRY_CATCH.
11422
11423 2013-02-28 Tom Tromey <tromey@redhat.com>
11424
11425 * py-finishbreakpoint.c (bpfinishpy_init): Reorganize to call
11426 frame_object_to_frame_info inside TRY_CATCH.
11427
11428 2013-02-28 Tom Tromey <tromey@redhat.com>
11429
11430 * py-block.c (gdbpy_block_for_pc): Call block_for_pc inside
11431 TRY_CATCH.
11432
11433 2013-02-28 Tom Tromey <tromey@redhat.com>
11434
11435 * objfiles.h (ALL_PSPACE_OBJFILES): Remove trailing backlash.
11436
11437 2013-02-27 Corinna Vinschen <vinschen@redhat.com>
11438
11439 * windows-nat.c: Throughout, fix format strings and casts of
11440 printf-like functions to avoid type related warnings on all
11441 platforms.
11442 (handle_output_debug_string): Fetch context information address
11443 from debug string using string_to_core_addr.
11444
11445 2013-02-27 Jiong Wang <jiwang@tilera.com>
11446
11447 * regformats/reg-tilegx.dat (name): Change abi name to "tilegx".
11448 * regformats/reg-tilegx32.dat: New.
11449
11450 2013-02-27 Jiong Wang <jiwang@tilera.com>
11451
11452 * configure.tgt (tilegx-*-linux*): Enable gdbserver.
11453
11454 2013-02-27 Jiong Wang <jiwang@tilera.com>
11455
11456 * configure.tgt (tilegx-*-linux*): Replace whitespace with tab.
11457
11458 2013-02-27 Yao Qi <yao@codesourcery.com>
11459 Pedro Alves <palves@redhat.com>
11460
11461 * tracepoint.c (tfile_trace_find): For tfind
11462 pc/tp/range/outside, look for the next trace frame instead of
11463 always starting from frame 0.
11464
11465 2013-02-26 Anthony Green <green@moxielogic.com>
11466
11467 * configure.tgt: Add support for moxie-*-rtems* target.
11468
11469 2013-02-25 Pedro Alves <palves@redhat.com>
11470
11471 * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Change
11472 warning text.
11473
11474 2013-02-24 Maciej W. Rozycki <macro@codesourcery.com>
11475
11476 * mips-tdep.c (mips32_scan_prologue): Reset frame_offset to zero
11477 if $fp is used as the virtual frame pointer.
11478
11479 2013-02-23 Alan Modra <amodra@gmail.com>
11480
11481 * elfread.c (elf_symtab_read): Do not use udata.p here to find
11482 symbol size.
11483 * ppc64-tdep.c (ppc64_elf_make_msymbol_special): New function.
11484 * ppc64-tdep.h (ppc64_elf_make_msymbol_special): Declare.
11485 * ppc-linux-tdep.c (ppc_linux_init_abi): Set up to use the above.
11486 * ppcfbsd-tdep.c (ppcfbsd_init_abi): Likewise.
11487
11488 2013-02-22 Jan Kratochvil <jan.kratochvil@redhat.com>
11489
11490 Code cleanup.
11491 * elfread.c (build_id_bfd_get): Make the return type const.
11492 (build_id_verify): Make the check parameter const.
11493 (build_id_to_debug_filename): Make the build_id parameter and variable
11494 data const.
11495 (find_separate_debug_file_by_buildid): Make the variable build_id const.
11496
11497 2013-02-21 Alan Modra <amodra@gmail.com>
11498
11499 * elfread.c (build_id_bfd_get): Adjust for elf_tdata changes.
11500
11501 2013-02-20 Siva Chandra Reddy <sivachandra@google.com>
11502
11503 Add a new method 'disassemble' to gdb.Architecture class.
11504 * python/py-arch.c (archpy_disassmble): Implementation of the
11505 new method gdb.Architecture.disassemble.
11506 (arch_object_methods): Add entry for the new method.
11507
11508 2013-02-20 Jiong Wang <jiwang@tilera.com>
11509
11510 * MAINTAINERS (Write After Approval): Add myself to the list.
11511
11512 2013-02-19 Pedro Alves <palves@redhat.com>
11513
11514 Garbage collect 'struct monitor_ops'::load_routine.
11515
11516 * monitor.h (struct monitor_ops) <load_routine>: Remove field.
11517 * monitor.c (monitor_load): No longer call
11518 current_monitor->load_routine.
11519 * dbug-rom.c (init_dbug_cmds): Don't set 'load_routine'.
11520 * m32r-rom.c (init_m32r_cmds): Don't set 'load_routine'.
11521 * ppcbug-rom.c (init_ppc_cmds): Don't set 'load_routine'.
11522
11523 2013-02-19 Pedro Alves <palves@redhat.com>
11524
11525 PR gdb/15161
11526
11527 Harmonize with generic_load.
11528
11529 * monitor.c: Include "readline/readline.h".
11530 (monitor_load): Rename parameter 'file' to 'args'. Use build_argv
11531 instead of sscanf. Use CORE_ADDR/strtoulst instead of unsigned
11532 long/strtol for the 'load_offset' local. Error out if no argument
11533 is given or if too many arguments are given. Tilde expand the
11534 passed in file name.
11535
11536 2013-02-19 Kai Tietz <ktietz@redhat.com>
11537
11538 PR gdb/15161
11539 * symfile.c (load_section_data): Change type of load_offset
11540 to CORE_ADDR.
11541 (generic_load): User strtoulst instead of strtoul for conversion
11542 of load_offset.
11543
11544 2013-02-19 Jiong Wang <jiwang@tilera.com>
11545
11546 * tilegx-tdep.c (tilegx_analyze_prologue): add check for
11547 for return address, "lr" register, saved on stack.
11548 * tilegx-tdep.c (tilegx_frame_cache): update "PC" reg
11549 after we invoke tilegx_analyze_prologue.
11550
11551 2013-02-19 Jiong Wang <jiwang@tilera.com>
11552
11553 * tilegx-tdep.c (itilegx_gdbarch_init): char type should be signed.
11554
11555 2013-02-19 Jiong Wang <jiwang@tilera.com>
11556
11557 * tilegx-tdep.c (tilegx_skip_prologue): Use skip_prologue_using_sal.
11558
11559 2013-02-19 Jiong Wang <jiwang@tilera.com>
11560
11561 * tilegx-tdep.c (INT_SWINT_1_SIGRETURN): New macro.
11562 (tilegx_write_pc): New function.
11563 (tilegx_cannot_reference_register): Return zero if REGNO
11564 is TILEGX_FAULTNUM_REGNUM.
11565 (tilegx_gdbarch_init): Add call to set_gdbarch_write_pc.
11566 (tilegx_register_name): Add handling of "faultnum" register.
11567 * tilegx-tdep.h (enum tilegx_regnum): Add TILEGX_FAULTNUM_REGNUM.
11568 * tilegx-linux-tdep.c (tilegx_linux_supply_regset): Add
11569 handling of TILEGX_FAULTNUM_REGNUM.
11570 * tilegx-linux-nat.c (regmap): Add entry for TILEGX_FAULTNUM_REGNUM.
11571
11572 2013-02-19 Jiong Wang <jiwang@tilera.com>
11573
11574 * tilegx-tdep.c (tilegx_push_dummy_call): args pushed on stack
11575 should be aligned to 64bit.
11576
11577 2013-02-19 Kai Tietz <ktietz@redhat.com>
11578
11579 * windows-nat.c (windows_xfer_memory): Fix debug-output
11580 for LLP64.
11581
11582 2013-02-19 Lei Liu <lei.liu2@windriver.com>
11583
11584 * mips-linux-nat.c (mips64_linux_regsets_store_registers):
11585 Don't check DSP register number if HAVE_DSP is not set.
11586
11587 2013-02-19 Alan Modra <amodra@gmail.com>
11588
11589 * elfread.c (struct build_id): Delete. Use struct elf_build_id
11590 throughout file instead.
11591 (build_id_bfd_get): Update to use new elf_tdata build_id field.
11592 Don't xmalloc return value.
11593 (build_id_verify): Similarly. Don't xfree.
11594 (build_id_to_debug_filename): Update.
11595 (find_separate_debug_file_by_buildid): Update, don't xfree.
11596
11597 2013-02-18 Tom Tromey <tromey@redhat.com>
11598
11599 PR gdb/15102:
11600 * dwarf2read.c (read_subrange_type): Use result of
11601 'check_typedef'.
11602
11603 2013-02-16 Yuanhui Zhang <asmwarrior@gmail.com>
11604
11605 * frame.c: Remove one extra white space after #include
11606 directive.
11607
11608 2013-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
11609
11610 * contrib/cc-with-tweaks.sh: Extend the comment for -p option.
11611
11612 2013-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
11613
11614 * gdb-gdb.gdb.in: Wrap set complaints, b internal_error, b info_command
11615 and dir commands into an if block.
11616
11617 2013-02-15 Sanimir Agovic <sanimir.agovic@intel.com>
11618
11619 * python/py-breakpoint (struct pybp_code): Use int instead of
11620 enum type_code.
11621
11622 2013-02-15 Pedro Alves <pedro@codesourcery.com>
11623 Hafiz Abid Qadeer <abidh@codesourcery.com>
11624
11625 * NEWS: Mention new field "trace-file".
11626 * tracepoint.c (trace_status_mi): Output "trace-file" field.
11627 (tfile_open): Record the trace file's filename in the trace
11628 status.
11629 (tfile_files_info): Mention the name of the trace file.
11630 Check the "filename" field explicitely.
11631 (trace_status_command): Explicitely check "filename" field.
11632 (trace_find_command): Ditto.
11633 (trace_find_pc_command): Ditto.
11634 (trace_find_tracepoint_command): Ditto.
11635 (trace_find_line_command): Ditto.
11636 (trace_find_range_command): Ditto.
11637 (trace_find_outside_command): Ditto.
11638 * tracepoint.h (struct trace_status) <from_file>: Rename it
11639 to "filename" and make it hold the trace file's filename
11640 instead of a boolean.
11641 * remote.c (remote_get_trace_status): Initialize "filename"
11642 field with NULL instead of 0.
11643
11644 2013-02-15 Yao Qi <yao@codesourcery.com>
11645
11646 * remote.c: Fix a typo.
11647
11648 2013-02-14 Pierre Muller <muller@sourceware.org>
11649
11650 * contrib/ari/gdb_ari.sh (GNU/Linux rule): Remove.
11651
11652 2013-02-14 Pedro Alves <palves@redhat.com>
11653
11654 * utils.c (savestring): Don't #undef it. Move function to
11655 common/common-utils.c.
11656 * common/common-utils.c: Include gdb_string.h.
11657 (savestring): Move here from utils.c.
11658 * common/common-utils.h (savestring): Declare.
11659
11660 2013-02-14 Pedro Alves <palves@redhat.com>
11661
11662 * utils.c (savestring): Rename parameter 'size' to 'len'.
11663
11664 2013-02-14 Pedro Alves <palves@redhat.com>
11665 Yufeng Zhang <yufeng.zhang@arm.com>
11666
11667 * aarch64-linux-nat.c (aarch64_init_debug_reg_state): Delete.
11668 (aarch64_inferior_data, struct aarch64_inferior_data):
11669 Delete.
11670 (struct aarch64_process_info): New.
11671 (aarch64_process_list): New global.
11672 (aarch64_find_process_pid, aarch64_add_process)
11673 (aarch64_process_info_get): New functions.
11674 (aarch64_inferior_data_get): Delete.
11675 (aarch64_process_info_get): New function.
11676 (aarch64_forget_process): New function.
11677 (aarch64_get_debug_reg_state): New parameter 'pid'. Reimplement.
11678 (aarch64_linux_prepare_to_resume): Pass the lwp's pid to
11679 aarch64_get_debug_reg_state.
11680 (aarch64_notify_debug_reg_change): Use iterate_over_lwps
11681 instead of linux_nat_iterate_watchpoint_lwps.
11682 (aarch64_linux_new_fork): New function.
11683 (aarch64_linux_child_post_startup_inferior): Use
11684 aarch64_forget_process instead of aarch64_init_debug_reg_state.
11685 (aarch64_handle_breakpoint, aarch64_linux_insert_hw_breakpoint)
11686 (aarch64_linux_remove_hw_breakpoint)
11687 (aarch64_handle_aligned_watchpoint)
11688 (aarch64_handle_unaligned_watchpoint)
11689 (aarch64_linux_insert_watchpoint)
11690 (aarch64_linux_remove_watchpoint)
11691 (aarch64_linux_stopped_data_address): Adjust to pass the current
11692 process id to aarch64_debug_reg_state.
11693 (_initialize_aarch64_linux_nat): Install aarch64_linux_new_fork as
11694 linux_nat_new_fork hook, and aarch64_forget_process as
11695 linux_nat_forget_process hook; remove the call to
11696 register_inferior_data_with_cleanup.
11697
11698 2013-02-14 Pedro Alves <palves@redhat.com>
11699
11700 * eval.c (evaluate_subexp_for_address) <default_case_after_eval,
11701 EVAL_AVOID_SIDE_EFFECTS>: Swap and handle TYPE_CODE_REF before
11702 lval_memory.
11703
11704 2013-02-14 Pedro Alves <pedro@codesourcery.com>
11705 Hafiz Abid Qadeer <abidh@codesourcery.com>
11706
11707 * tracepoint.h (validate_trace_state_variable_name): Declare.
11708 * tracepoint.c (validate_trace_state_variable_name): New.
11709 (trace_variable_command): Parse the trace state variable's name
11710 without using parse_expression. Do several validations.
11711 * mi/mi-main.c (mi_cmd_trace_define_variable): Don't parse the
11712 trace state variable's name with parse_expression. Validate it.
11713
11714 2013-02-14 Yao Qi <yao@codesourcery.com>
11715
11716 * infcmd.c (breakpoint_proceeded): Remove it.
11717
11718 2013-02-14 Yao Qi <yao@codesourcery.com>
11719
11720 * tracepoint.c (end_actions_pseudocommand): Make it static.
11721 (while_stepping_pseudocommand): Likewise.
11722 * tracepoint.h (end_actions_pseudocommand): Remove the
11723 declaration.
11724 (while_stepping_pseudocommand): Likewise.
11725
11726 2013-02-14 Yao Qi <yao@codesourcery.com>
11727
11728 * cli/cli-decode.c (help_cmd): Remove the declaration of
11729 "cmdlist".
11730 (help_all): Likewise.
11731
11732 2013-02-13 Pedro Alves <palves@redhat.com>
11733
11734 * amd64-linux-nat.c (update_debug_registers_callback):
11735 Update comment.
11736 (amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use
11737 iterate_over_lwps.
11738 (amd64_linux_prepare_to_resume): Pass the lwp's pid to
11739 i386_debug_reg_state.
11740 (amd64_linux_new_fork): New function.
11741 (_initialize_amd64_linux_nat): Install amd64_linux_new_fork as
11742 linux_nat_new_fork hook, and i386_forget_process as
11743 linux_nat_forget_process hook.
11744 * i386-linux-nat.c (update_debug_registers_callback):
11745 Update comment.
11746 (i386_linux_dr_set_control, i386_linux_dr_set_addr): Use
11747 iterate_over_lwps.
11748 (i386_linux_prepare_to_resume): Pass the lwp's pid to
11749 i386_debug_reg_state.
11750 (i386_linux_new_fork): New function.
11751 (_initialize_i386_linux_nat): Install i386_linux_new_fork as
11752 linux_nat_new_fork hook, and i386_forget_process as
11753 linux_nat_forget_process hook.
11754 * i386-nat.c (i386_init_dregs): Delete.
11755 (i386_inferior_data, struct i386_inferior_data):
11756 Delete.
11757 (struct i386_process_info): New.
11758 (i386_process_list): New global.
11759 (i386_find_process_pid, i386_add_process, i386_process_info_get):
11760 New functions.
11761 (i386_inferior_data_get): Delete.
11762 (i386_process_info_get): New function.
11763 (i386_debug_reg_state): New parameter 'pid'. Reimplement.
11764 (i386_forget_process): New function.
11765 (i386_cleanup_dregs): Rewrite.
11766 (i386_update_inferior_debug_regs, i386_insert_watchpoint)
11767 (i386_remove_watchpoint, i386_region_ok_for_watchpoint)
11768 (i386_stopped_data_address, i386_insert_hw_breakpoint)
11769 (i386_remove_hw_breakpoint): Adjust to pass the current process id
11770 to i386_debug_reg_state.
11771 (i386_use_watchpoints): Don't register inferior data.
11772 * i386-nat.h (i386_debug_reg_state): Add new 'pid' parameter, and
11773 adjust comment.
11774 (i386_forget_process): Declare.
11775 * linux-fork.c (delete_fork): Call linux_nat_forget_process.
11776 * linux-nat.c (linux_nat_new_fork, linux_nat_forget_process_hook):
11777 New static globals.
11778 (linux_child_follow_fork): Don't call linux_nat_new_thread here.
11779 (add_initial_lwp): New, factored out from ...
11780 (add_lwp): ... this. Don't check the number of lwps before
11781 calling linux_nat_new_thread.
11782 (linux_nat_iterate_watchpoint_lwps): Delete.
11783 (linux_nat_attach): Use add_initial_lwp instead of add_lwp.
11784 (linux_handle_extended_wait): Call the linux_nat_new_fork hook on
11785 forks and vforks.
11786 (linux_nat_wait_1): Use add_initial_lwp instead of add_lwp for the
11787 initial lwp.
11788 (linux_nat_kill, linux_nat_mourn_inferior): Call
11789 linux_nat_forget_process.
11790 (linux_nat_set_new_fork, linux_nat_set_forget_process)
11791 (linux_nat_forget_process): New functions.
11792 * linux-nat.h (linux_nat_iterate_watchpoint_lwps_ftype): Delete
11793 type.
11794 (linux_nat_iterate_watchpoint_lwps): Delete declaration.
11795 (linux_nat_new_fork_ftype, linux_nat_forget_process_ftype): New
11796 types.
11797 (linux_nat_set_new_fork, linux_nat_set_forget_process)
11798 (linux_nat_forget_process): New declarations.
11799
11800 * amd64fbsd-nat.c (super_mourn_inferior): New global.
11801 (amd64fbsd_mourn_inferior): New function.
11802 (_initialize_amd64fbsd_nat): Override to_mourn_inferior.
11803 * windows-nat.c (windows_detach): Call i386_cleanup_dregs.
11804
11805 2013-02-13 Marcus Shawcroft <marcus.shawcroft@arm.com>
11806
11807 * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity):
11808 Adding _().
11809
11810 2013-02-13 Marcus Shawcroft <marcus.shawcroft@arm.com>
11811
11812 * aarch64-linux-nat.c (debug_reg_change_callback)
11813 (aarch64_linux_get_debug_reg_capacity): ARI fix: Replace %llx with
11814 %s and phex().
11815
11816 2013-02-13 Marcus Shawcroft <marcus.shawcroft@arm.com>
11817
11818 * aarch64-linux-nat.c (dr_changed_t): ARI fix: Replace long long
11819 with LONGEST.
11820
11821 2013-02-13 Pedro Alves <palves@redhat.com>
11822 Hafiz Abid Qadeer <abidh@codesourcery.com>
11823
11824 * c-lang.c (c_op_print_tab): Add entry for UNOP_PLUS.
11825
11826 2013-02-12 Tom Tromey <tromey@redhat.com>
11827
11828 PR symtab/11464:
11829 * c-exp.y (lex_one_token): Initialize other fields of yylval on
11830 NAME return.
11831 (classify_inner_name): Remove 'first_name' argument, add
11832 'context'. Remove unused variable.
11833 (yylex): Explicitly maintain the context type. Exit loop earlier
11834 if NAME result is seen.
11835
11836 2013-02-12 Pedro Alves <palves@redhat.com>
11837
11838 * amd64-darwin-tdep.c: Add (C) after Copyright.
11839 * cli/cli-cmds.h: Ditto.
11840 * cli/cli-decode.c: Ditto.
11841 * cli/cli-decode.h: Ditto.
11842 * cli/cli-dump.c: Ditto.
11843 * cli/cli-dump.h: Ditto.
11844 * cli/cli-interp.c: Ditto.
11845 * cli/cli-logging.c: Ditto.
11846 * cli/cli-script.c: Ditto.
11847 * cli/cli-script.h: Ditto.
11848 * cli/cli-setshow.c: Ditto.
11849 * cli/cli-setshow.h: Ditto.
11850 * cli/cli-utils.c: Ditto.
11851 * cli/cli-utils.h: Ditto.
11852 * config/alpha/nm-osf3.h: Ditto.
11853 * config/djgpp/djconfig.sh: Ditto.
11854 * config/i386/nm-fbsd.h: Ditto.
11855 * config/i386/nm-i386gnu.h: Ditto.
11856 * config/nm-linux.h: Ditto.
11857 * config/nm-nto.h: Ditto.
11858 * config/rs6000/nm-rs6000.h: Ditto.
11859 * config/sparc/nm-sol2.h: Ditto.
11860 * darwin-nat-info.c: Ditto.
11861 * dfp.c: Ditto.
11862 * dfp.h: Ditto.
11863 * gdb-demangle.h: Ditto.
11864 * i386-darwin-nat.c: Ditto.
11865 * i386-darwin-tdep.c: Ditto.
11866 * linux-fork.h: Ditto.
11867 * m32c-tdep.c: Ditto.
11868 * microblaze-linux-tdep.c: Ditto.
11869 * microblaze-rom.c: Ditto.
11870 * microblaze-tdep.c: Ditto.
11871 * microblaze-tdep.h: Ditto.
11872 * mips-linux-tdep.h: Ditto.
11873 * ppc-ravenscar-thread.c: Ditto.
11874 * ppc-ravenscar-thread.h: Ditto.
11875 * prologue-value.c: Ditto.
11876 * prologue-value.h: Ditto.
11877 * ravenscar-thread.c: Ditto.
11878 * ravenscar-thread.h: Ditto.
11879 * sparc-ravenscar-thread.c: Ditto.
11880 * sparc-ravenscar-thread.h: Ditto.
11881 * tilegx-linux-tdep.c: Ditto.
11882 * unwind_stop_reasons.def: Ditto.
11883 * windows-nat.h: Ditto.
11884 * xtensa-linux-tdep.c: Ditto.
11885 * xtensa-xtregs.c: Ditto.
11886 * regformats/regdat.sh: Ditto.
11887 * regformats/regdef.h: Ditto.
11888
11889 2013-02-12 Pedro Alves <palves@redhat.com>
11890
11891 * break-catch-sig.c: Update copyright years.
11892
11893 2013-02-11 Siva Chandra Reddy <sivachandra@google.com>
11894
11895 Add support for a destructor for ui_out data and use it to
11896 provide a ui_out destructor.
11897 * ui-out.h: Declare the new ui_out destructor.
11898 (ui_out_impl): Add a field for data destructor in ui_out_impl.
11899 * ui-out.c (default_data_destroy): Add a default data destructor
11900 which does nothing.
11901 (default_ui_out_impl): Set the new data_destroy field to
11902 default_data_destroy
11903 (uo_data_destroy): Local function which invokes the data
11904 destructor if present.
11905 (clear_table): Local function which clears the table data of a
11906 ui_out object.
11907 (ui_out_destroy): Public function which frees a ui_out object.
11908 (ui_out_table_end): Use the new clear_table function.
11909 * cli-out.c (cli_ui_out_impl): Set the new data_destroy field to
11910 NULL.
11911 * mi/mi-out.c (mi_ui_out_impl): Set the new data_destroy field
11912 to NULL.
11913
11914 2013-02-11 Doug Evans <dje@google.com>
11915
11916 * printcmd.c (printf_c_string,printf_wide_c_string): New functions.
11917 (printf_decfloat): New function. Broken out from ui_printf.
11918 Remove unnecessary code to shift the entire format string down.
11919 (printf_pointer): New function.
11920 (ui_printf): Code to print C strings, wide C strings, decfloats,
11921 and pointers moved to separate functions.
11922
11923 2013-02-11 Sergio Durigan Junior <sergiodj@redhat.com>
11924
11925 * valops.c (value_assign): Handling bitfield offset in
11926 `lval_internalvar_component' case.
11927
11928 2013-02-08 Doug Evans <dje@google.com>
11929
11930 * common/format.c (parse_format_string): Fix whitespace.
11931
11932 2013-02-08 Matthew Gretton-Dann <matthew.gretton-dann@linaro.org>
11933
11934 * stack.c (return_command): Work around uninitialized variable
11935 warning.
11936
11937 2013-02-08 Yufeng Zhang <yufeng.zhang@arm.com>
11938
11939 * aarch64-linux-tdep.c (AARCH64_LINUX_SIZEOF_GREGSET): Change the
11940 number of the registers from 36 to 34.
11941
11942 2013-02-08 Marcus Shawcroft <marcus.shawcroft@arm.com>
11943
11944 * NEWS: Mention new AArch64 native and target support.
11945
11946 2013-02-08 Marcus Shawcroft <marcus.shawcroft@arm.com>
11947
11948 * MAINTAINERS (Write After Approval): Add myself.
11949
11950 2013-02-08 Jim MacArthur <jim.macarthur@arm.com>
11951 Marcus Shawcroft <marcus.shawcroft@arm.com>
11952 Nigel Stephens <nigel.stephens@arm.com>
11953 Yufeng Zhang <yufeng.zhang@arm.com>
11954
11955 * aarch64-linux-nat.c: New file.
11956 * config/aarch64/linux.mh: New file.
11957 * configure.host: Add AArch64.
11958 * Makefile.in (ALLDEPFILES): Add aarch64-linux-nat.c.
11959
11960 2013-02-07 Doug Evans <dje@google.com>
11961
11962 * cli/cli-cmds.c (_initialize_cli_cmds): Clarify argument to
11963 disassemble command.
11964
11965 2013-02-07 Marcus Shawcroft <marcus.shawcroft@arm.com>
11966
11967 * aarch64-linux-tdep.c (aarch64_linux_init_abi): Call
11968 set_gdbarch_fetch_tls_load_module_address.
11969
11970 2013-02-06 David S. Miller <davem@davemloft.net>
11971
11972 * sparc-tdep.c (sparc32_return_value): Handle writing return value when
11973 using RETURN_VALUE_ABI_PRESERVES_ADDRESS.
11974 * value.c (struct_return_convention): New function.
11975 (using_struct_return): Implement in terms of struct_return_convention.
11976 * value.h (struct_return_convention): Declare.
11977 * stack.c (return_command): Allow successful overriding of the return
11978 value when RETURN_VALUE_ABI_PRESERVES_ADDRESS.
11979
11980 2013-02-06 Tom Tromey <tromey@redhat.com>
11981
11982 * python/py-type.c (typy_strip_typedefs): Don't call check_typedef
11983 outside of TRY_CATCH.
11984
11985 2013-02-06 Yao Qi <yao@codesourcery.com>
11986
11987 * mi/mi-interp.c: Include "tracepoint.h".
11988 (mi_tsv_modified): Declare.
11989 (mi_tsv_created, mi_tsv_deleted): Update declaration.
11990 (mi_interpreter_init): Call observer_attach_tsv_modified.
11991 (mi_tsv_modified): New.
11992 (mi_tsv_created, mi_tsv_deleted): Update.
11993 * tracepoint.c (trace_variable_command): Call
11994 observer_notify_tsv_modified if the initial value of tsv is
11995 changed.
11996 (delete_trace_state_variable): Call
11997 observer_notify_tsv_deleted earlier.
11998 (trace_variable_command): Caller update.
11999 (create_tsv_from_upload): Likewise.
12000 * observer.sh: Declare "struct trace_state_variable".
12001
12002 * NEWS: Mention the new MI notification "=tsv-modified".
12003
12004 2013-02-05 Doug Evans <dje@google.com>
12005
12006 * completer.c (location_completer): Fix typo in comment.
12007
12008 2013-02-05 Jan Kratochvil <jan.kratochvil@redhat.com>
12009
12010 * breakpoint.c (add_location_to_breakpoint): Insert the location with
12011 ADDRESS sorted.
12012
12013 2013-02-05 Marcus Shawcroft <marcus.shawcroft@arm.com>
12014
12015 * aarch64-tdep.c (aarch64_analyze_prologue): ARI fix:
12016 Refactor if statement to avoid trailing || operator.
12017
12018 2013-02-05 Andreas Tobler <andreast@fgznet.ch>
12019
12020 * NEWS: Add PowerPC FreeBSD as a new native configuration.
12021
12022 2013-02-04 Andreas Tobler <andreast@fgznet.ch>
12023
12024 * Makefile.in (ALL_TARGET_OBS): Add powerpc FreeBSD files.
12025 * configure.host: Add powerpc*-*-freebsd* target.
12026 * configure.tgt: Add target info for powerpc*-*-freebsd*.
12027 * ppcfbsd-nat.c, ppcfbsd-tdep.h, ppcfbsd-tdep.c: New files.
12028 * config/powerpc/fbsd.mh: New file.
12029
12030 2013-02-04 Sergio Durigan Junior <sergiodj@redhat.com>
12031 Denys Vlasenko <dvlasenk@redhat.com>
12032 Pedro Alves <palves@redhat.com>
12033
12034 * gdbarch.sh (elfcore_write_linux_prpsinfo): New F hook.
12035 (struct elf_internal_linux_prpsinfo): Forward declare.
12036 * gdbarch.h, gdbarch.c: Regenerate.
12037 * linux-tdep.c: Include `cli/cli-utils.h'.
12038 (linux_fill_prpsinfo): New function.
12039 (linux_make_corefile_notes): Use linux_fill_prpsinfo. If there's
12040 an elfcore_write_linux_prpsinfo hook, use it, otherwise, use
12041 elfcore_write_linux_prpsinfo32 or elfcore_write_linux_prpsinfo64
12042 depending on gdbarch pointer bitness.
12043 * ppc-linux-tdep.c: Include elf-bfd.h.
12044 (ppc_linux_init_abi): Hook in elfcore_write_ppc_linux_prpsinfo32
12045 on 32-bit.
12046
12047 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
12048 Marcus Shawcroft <marcus.shawcroft@arm.com>
12049 Nigel Stephens <nigel.stephens@arm.com>
12050 Yufeng Zhang <yufeng.zhang@arm.com>
12051
12052 * configure.tgt (aarch64*-*-linux*): Set build_gdbserver=yes.
12053
12054 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
12055 Marcus Shawcroft <marcus.shawcroft@arm.com>
12056 Nigel Stephens <nigel.stephens@arm.com>
12057 Yufeng Zhang <yufeng.zhang@arm.com>
12058
12059 * aarch64-newlib-tdep.c: New file.
12060 * configure.tgt: Add aarch64-newlib-tdep.o to gdb_target_obs of
12061 aarch64*-*-elf.
12062 * defs.h (enum gdb_osabi): Add GDB_OSABI_NEWLIB.
12063 * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-newlib-tdep.o.
12064 (ALLDEPFILES): Add aarch64-newlib-tdep.c.
12065 * osabi.c (gdb_osabi_names): Add "Newlib".
12066
12067 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
12068 Marcus Shawcroft <marcus.shawcroft@arm.com>
12069 Nigel Stephens <nigel.stephens@arm.com>
12070 Yufeng Zhang <yufeng.zhang@arm.com>
12071
12072 * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-linux-tdep.o.
12073 (ALLDEPFILES): Add aarch64-linux-tdep.c.
12074 * aarch64-linux-tdep.c: New file.
12075 * aarch64-linux-tdep.h: New file.
12076 * aarch64-tdep.h (gdbarch_tdep): Define gregset and fpregset.
12077 * configure.tgt: Add aarch64-none-linux-gnu.
12078
12079 2013-02-04 Jim MacArthur <jim.macarthur@arm.com>
12080 Marcus Shawcroft <marcus.shawcroft@arm.com>
12081 Nigel Stephens <nigel.stephens@arm.com>
12082 Yufeng Zhang <yufeng.zhang@arm.com>
12083
12084 * Makefile.in (ALL_64_TARGET_OBS): Add arch64-tdep.o.
12085 (HFILES_NO_SRCDIR): Add aarch64-tdep.h.
12086 (ALLDEPFILES): Add aarch64-tdep.c.
12087 * aarch64-tdep.c: New file.
12088 * aarch64-tdep.h: New file.
12089 * configure.tgt: Add AArch64.
12090 * features/Makefile (WHICH): Add aarch64 and aarch64-without-fpu.
12091 (aarch64-expedite): New definition.
12092 * features/aarch64-core.xml: New file.
12093 * features/aarch64-fpu.xml: New file.
12094 * features/aarch64-without-fpu.c: New file (generated).
12095 * features/aarch64-without-fpu.xml: New file.
12096 * features/aarch64.c: New file (generated).
12097 * features/aarch64.xml: New file.
12098 * regformats/aarch64-without-fpu.dat: New file (generated).
12099 * regformats/aarch64.dat: New file (generated).
12100
12101 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
12102
12103 * contrib/expect-read1.c: New file.
12104 * contrib/expect-read1.sh: New file.
12105
12106 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
12107
12108 * dwarf2read.c (file_file_name): New function with code from
12109 file_full_name.
12110 (file_full_name): Move most of the code to file_file_name.
12111 (macro_start_file): Rename variable full_name to file_name and use
12112 file_file_name for it. Add comp_dir parameter to new_macro_table.
12113 * macrocmd.c (show_pp_source_pos): New variable fullname. Replace any
12114 macro_source_file->filename access by macro_source_fullname call.
12115 * macroscope.c (_initialize_macroscope): Update the new_macro_table
12116 caller.
12117 * macrotab.c (struct macro_table): New field comp_dir.
12118 (macro_include): New variables link_fullname and source_fullname.
12119 Replace any macro_source_file->filename access by macro_source_fullname
12120 call.
12121 (macro_lookup_inclusion): Remove the partial filenames checking code.
12122 (check_for_redefinition): New variables source_fullname and
12123 found_key_fullname. Replace any macro_source_file->filename access by
12124 macro_source_fullname call.
12125 (macro_undef): New variables source_fullname and key_fullname. Replace
12126 any macro_source_file->filename access by macro_source_fullname call.
12127 (macro_lookup_definition): New variables retval and source_fullname.
12128 Replace any macro_source_file->filename access by macro_source_fullname
12129 call.
12130 (foreach_macro): New variable key_fullname. Replace any
12131 macro_source_file->filename access by macro_source_fullname call.
12132 (foreach_macro_in_scope): New variable datum_fullname. Replace any
12133 macro_source_file->filename access by macro_source_fullname call.
12134 (new_macro_table): Add parameter comp_dir. Initialize T with it.
12135 (macro_source_fullname): New function.
12136 * macrotab.h (struct macro_source_file): Extent the filename field
12137 comment.
12138 (new_macro_table): New parameter comp_dir, add a comment for it.
12139 (macro_source_fullname): new declaration.
12140
12141 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
12142
12143 * dwarf2read.c (dw2_map_symtabs_matching_filename): Move variable
12144 this_real_name to outer block. Use it also for
12145 compare_filenames_for_search.
12146 (dw2_expand_symtabs_matching): New variable this_real_name. Use it
12147 with dw2_get_real_path for file_matcher, considering also
12148 BASENAMES_MAY_DIFFER.
12149 (file_full_name): Prepend COMP_DIR even for relative lh->INCLUDE_DIRS.
12150
12151 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
12152
12153 * dwarf2read.c (dw2_expand_symtabs_matching): Add basenames parameter
12154 to the file_matcher parameter. Pass 0 to it.
12155 (dwarf2_create_include_psymtab): Copy also DIRNAME.
12156 * psymtab.c (partial_map_symtabs_matching_filename): Drop handling of
12157 NULL psymtab_to_fullname result.
12158 (psymtab_to_fullname): Remove variable r. Never return NULL, assemble
12159 an expected filename instead.
12160 (expand_symtabs_matching_via_partial): Add basenames parameter to the
12161 file_matcher parameter. Call also psymtab_to_fullname, after newly
12162 considering BASENAMES_MAY_DIFFER.
12163 * source.c (rewrite_source_path): Remove static.
12164 * source.h (rewrite_source_path): New declaration.
12165 * symfile.h (struct quick_symbol_functions): Add basenames parameter to
12166 the expand_symtabs_matching field. Comment it.
12167 * symtab.c (file_matches): New function comment. Add parameter
12168 basenames, implement it.
12169 (search_symbols_file_matches): Add basenames parameter. Update the
12170 file_matches caller.
12171 (search_symbols): Match FILES also against symtab_to_fullname.
12172 Optimize it for BASENAMES_MAY_DIFFER.
12173
12174 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
12175
12176 * source.c (print_source_lines_base): Print for TUI also "fullname".
12177 * tui/tui-data.c (init_content_element): Change tui_locator_element
12178 field to full_name.
12179 * tui/tui-data.h (struct tui_locator_element): Likewise.
12180 * tui/tui-disasm.c (tui_show_disassem_and_update_source): Rename
12181 tui_update_locator_filename calls to tui_update_locator_fullname.
12182 Replace symtab->filename refererence by symtab_to_fullname call.
12183 * tui/tui-out.c (tui_field_string): Check for "fullname" now.
12184 * tui/tui-source.c (tui_set_source_content): Change tui_locator_element
12185 field to full_name. Replace symtab->filename refererence by
12186 symtab_to_fullname call.
12187 (tui_show_symtab_source): Rename parameter to fullname. Change
12188 tui_locator_element field to full_name.
12189 * tui/tui-stack.c: Include source.h.
12190 (tui_set_locator_filename): Rename the declaration to ...
12191 (tui_set_locator_fullname): ... here. Rename its parameter to
12192 fullname, updates its comment.
12193 (tui_set_locator_info): Rename its parameter to fullname.
12194 (tui_set_locator_filename): Rename the definition to ...
12195 (tui_set_locator_fullname): ... here. Rename its parameter to
12196 fullname, updates its comment. Change tui_locator_element field to
12197 full_name.
12198 (tui_set_locator_info): Rename its parameter to fullname.
12199 (tui_set_locator_info): Rename callee to tui_set_locator_fullname.
12200 (tui_update_locator_filename): Rename to ...
12201 (tui_update_locator_fullname): ... here. Rename callee to
12202 tui_set_locator_fullname.
12203 (tui_show_frame_info): Replace symtab->filename refererence by
12204 symtab_to_fullname call.
12205 * tui/tui-stack.h (tui_update_locator_filename): Rename to ...
12206 (tui_update_locator_fullname): ... here.
12207 * tui/tui-winsource.c (tui_display_main): Rename the callee to
12208 tui_update_locator_fullname. Replace symtab->filename refererence by
12209 symtab_to_fullname call.
12210 * tui/tui.c (tui_show_source): Rename its parameter to fullname.
12211 Rename the callee to tui_update_locator_fullname.
12212 * tui/tui.h (tui_show_source): Rename its parameter to fullname.
12213
12214 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
12215
12216 * ada-lang.c (user_select_syms): Replace symtab->filename refererences
12217 by symtab_to_filename_for_display calls.
12218 * breakpoint.c (print_breakpoint_location, resolve_sal_pc): Likewise.
12219 (clear_command): New variable sal_fullname, initialize it. Replace
12220 compare_filenames_for_search by filename_cmp with sal_fullname.
12221 (say_where, update_static_tracepoint): Replace symtab->filename
12222 refererences by symtab_to_filename_for_display calls.
12223 * cli/cli-cmds.c (edit_command, list_command, ambiguous_line_spec):
12224 Likewise.
12225 * dwarf2read.c: Include source.h.
12226 (fixup_go_packaging): Replace symtab->filename refererences by
12227 symtab_to_filename_for_display calls.
12228 * linespec.c (add_sal_to_sals): Rename variable filename to fullname.
12229 Replace symtab->filename refererences by symtab_to_filename_for_display
12230 calls.
12231 (create_sals_line_offset, convert_linespec_to_sals): New variable
12232 fullname, initialize it, replace symtab->filename reference by the
12233 variable.
12234 * linux-fork.c: Include source.h.
12235 (info_checkpoints_command): Replace symtab->filename refererences by
12236 symtab_to_filename_for_display calls.
12237 * macroscope.c (sal_macro_scope): Replace symtab->filename refererences
12238 by symtab_to_filename_for_display calls.
12239 * mdebugread.c: Include source.h.
12240 (psymtab_to_symtab_1): Replace symtab->filename refererences by
12241 symtab_to_filename_for_display calls.
12242 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file)
12243 (mi_cmd_file_list_exec_source_files): Likewise.
12244 * printcmd.c: Include source.h.
12245 (build_address_symbolic): Replace symtab->filename refererences by
12246 symtab_to_filename_for_display calls.
12247 * psymtab.c (partial_map_symtabs_matching_filename)
12248 (read_psymtabs_with_fullname): Call compare_filenames_for_search also
12249 with psymtab_to_fullname.
12250 * python/py-symtab.c (stpy_str): Replace symtab->filename refererences
12251 by symtab_to_filename_for_display calls.
12252 (stpy_get_filename): New variable filename, initialize it, use instead
12253 of symtab->filename refererences.
12254 (salpy_str): Make variable filename const char *. Replace
12255 symtab->filename refererences by symtab_to_filename_for_display calls.
12256 * skip.c: Include source.h and filenames.h.
12257 (skip_file_command): Remove const from the symtab variable. Replace
12258 symtab->filename refererences by symtab_to_fullname call.
12259 (function_name_is_marked_for_skip): New variables searched_for_fullname
12260 and fullname. Use them to search also with symtab's fullname.
12261 * source.c (find_source_lines): Replace symtab->filename refererences
12262 by symtab_to_filename_for_display calls.
12263 (print_source_lines_base): New variable filename, use it instead of
12264 symtab->filename. Replace symtab->filename refererences by
12265 symtab_to_filename_for_display calls.
12266 (line_info, forward_search_command): Replace symtab->filename
12267 refererences by symtab_to_filename_for_display calls.
12268 (reverse_search_command): Replace symtab->filename refererences by
12269 symtab_to_filename_for_display calls. New variable filename for it.
12270 * stack.c (frame_info): Likewise.
12271 * symmisc.c: Include source.h.
12272 (dump_objfile, dump_symtab_1, maintenance_print_symbols)
12273 (maintenance_info_symtabs): Replace symtab->filename refererences by
12274 symtab_to_filename_for_display calls.
12275 * symtab.c (iterate_over_some_symtabs): Call
12276 compare_filenames_for_search also with symtab_to_fullname.
12277 (lookup_symbol_aux_quick, basic_lookup_transparent_type_quick): Replace
12278 symtab->filename refererences by symtab_to_filename_for_display calls.
12279 (find_line_symtab): Replace symtab->filename refererences by
12280 symtab_to_filename_for_display calls.
12281 (file_matches): Replace filename_cmp by compare_filenames_for_search.
12282 (print_symbol_info): Make the last parameter const char *. New
12283 variable s_filename. Use it in the function.
12284 (symtab_symbol_info): Make the last_filename variable const char *.
12285 Replace symtab->filename refererences by symtab_to_filename_for_display
12286 calls.
12287 (rbreak_command): New variable fullname. Use it. Replace
12288 symtab->filename refererence by symtab_to_filename_for_display call.
12289 * tracepoint.c (set_traceframe_context, trace_find_line_command)
12290 (print_one_static_tracepoint_marker): Replace symtab->filename
12291 refererences by symtab_to_filename_for_display calls.
12292 * tui/tui-source.c (tui_set_source_content): New variables filename and
12293 s_filename. Replace symtab->filename refererences by this variable.
12294 Replace other symtab->filename refererences by
12295 symtab_to_filename_for_display calls.
12296
12297 2013-02-03 Eldar Gaynetdinov <hal9000ed2k@gmail.com>
12298 Jan Kratochvil <jan.kratochvil@redhat.com>
12299
12300 Add a new variable that controls a way in which filenames are
12301 displayed.
12302 * NEWS (set filename-display): New entry.
12303 * source.c (filename_display_basename, filename_display_relative)
12304 (filename_display_absolute, filename_display_kind_names)
12305 (filename_display_string, show_filename_display_string)
12306 (symtab_to_filename_for_display): New.
12307 (_initialize_source): Added initialization of 'filename-display'
12308 variable.
12309 * source.h (symtab_to_filename_for_display): Added declaration.
12310 * stack.c (print_frame): Added new variable and calling of a new
12311 function and condition with this variable. Changed third argument of
12312 calling of a function.
12313
12314 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
12315
12316 * tui/tui-data.c (init_win_info, tui_del_window, tui_free_window):
12317 Rename field reference filename to fullname.
12318 * tui/tui-data.h (struct tui_source_info): Rename field filename to
12319 fullname. New comment for it.
12320 * tui/tui-source.c (tui_set_source_content): Rename field reference
12321 filename to fullname. Initialize field by symtab_to_fullname now.
12322 * tui/tui-winsource.c (tui_update_breakpoint_info): Rename field
12323 reference filename to fullname. Use symtab_to_fullname during
12324 comparison.
12325
12326 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
12327
12328 Code cleanup.
12329 * dwarf2read.c (dw2_expand_symtabs_with_filename): Rename to ...
12330 (dw2_expand_symtabs_with_fullname): ... here. Rename parameter
12331 filename to fullname. Rename variable this_name to this_fullname.
12332 Lowercase FILENAME_CMP call.
12333 (dw2_find_symbol_file): New comment for the returned string.
12334 (dwarf2_gdb_index_functions): Rename the function to
12335 dw2_expand_symtabs_with_fullname.
12336 * psymtab.c (read_psymtabs_with_filename): Rename to ...
12337 (read_psymtabs_with_fullname): ... here. Rename parameter filename to
12338 fullname.
12339 (psym_functions): Rename the function to read_psymtabs_with_fullname.
12340 * symfile.h (struct quick_symbol_functions): Rename field
12341 expand_symtabs_with_filename to expand_symtabs_with_fullname and its
12342 parameter filename to fullname. Document returned string meaning for
12343 find_symbol_file.
12344 * symtab.c (find_line_symtab): Rename the called function to
12345 expand_symtabs_with_fullname.
12346
12347 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
12348
12349 Code cleanup.
12350 * breakpoint.c (clear_command): Remove variable is_abs, unify the
12351 call of filename_cmp with compare_filenames_for_search.
12352 * dwarf2read.c (dw2_map_symtabs_matching_filename): Remove variable
12353 is_abs, unify the call of FILENAME_CMP with
12354 compare_filenames_for_search. New gdb_asserts for real_path and name.
12355 Unify the call of compare_filenames_for_search with FILENAME_CMP.
12356 * psymtab.c (partial_map_symtabs_matching_filename): Likewise.
12357 * symfile.h (struct quick_symbol_functions): Extend the comment for
12358 map_symtabs_matching_filename.
12359 * symtab.c (compare_filenames_for_search): Remove the function comment
12360 relative path requirement. Handle absolute filenames, with a comment.
12361 (iterate_over_some_symtabs): Remove variable is_abs, unify the call of
12362 FILENAME_CMP with compare_filenames_for_search. New gdb_asserts for
12363 real_path and name. Unify the call of compare_filenames_for_search
12364 with FILENAME_CMP.
12365 (iterate_over_symtabs): New gdb_assert on REAL_PATH.
12366
12367 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
12368
12369 Code cleanup.
12370 * breakpoint.c (print_breakpoint_location): Replace bp_location field
12371 source_file references by symtab field references. Remove variables
12372 sal and fullname.
12373 (momentary_breakpoint_from_master, add_location_to_breakpoint):
12374 (clear_command, say_where): Replace bp_location field source_file
12375 references by symtab field references.
12376 (bp_location_dtor): Remove the source_file reference.
12377 (update_static_tracepoint): Replace bp_location field source_file
12378 references by symtab field references.
12379 (breakpoint_free_objfile): New function.
12380 * breakpoint.h (struct bp_location): Extend the comment for line_number.
12381 Replace the field source_file by field symtab, extend its comment.
12382 (breakpoint_free_objfile): New declaration.
12383 * objfiles.c (free_objfile): Call breakpoint_free_objfile.
12384 * tui/tui-winsource.c (tui_update_breakpoint_info): Replace bp_location
12385 field source_file references by symtab field references.
12386
12387 2013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
12388
12389 Replace xfullpath calls by gdb_realpath calls.
12390 * cli/cli-cmds.c (find_and_open_script): Remove xfullpath from the
12391 function comment.
12392 * dwarf2read.c (dw2_map_expand_apply): Remove parameter full_path.
12393 Remove it from the iterate_over_some_symtabs call.
12394 (dw2_map_symtabs_matching_filename): Remove parameter full_path.
12395 Remove it from the dw2_map_expand_apply calls, remove a block handling
12396 it.
12397 * psymtab.c (partial_map_expand_apply): Remove parameter full_path.
12398 Remove it from the iterate_over_some_symtabs call.
12399 (partial_map_symtabs_matching_filename): Remove parameter full_path.
12400 Remove it from the partial_map_expand_apply calls, remove a block
12401 handling it. Drop gdb_realpath call and cleanups from the real_path
12402 handling.
12403 * source.c (openp): Drop the comment part about xfullpath. Replace
12404 xfullpath calls by gdb_realpath calls.
12405 (find_and_open_source): Replace xfullpath call by gdb_realpath call.
12406 * symfile.h (struct quick_symbol_functions): Remove parameter full_path
12407 from method map_symtabs_matching_filename and its comment.
12408 * symmisc.c (maintenance_print_msymbols): Replace xfullpath call by
12409 gdb_realpath call.
12410 * symtab.c (iterate_over_some_symtabs): Remove parameter full_path,
12411 remove it also from the function comment, remove a block handling it.
12412 Drop gdb_realpath call and cleanups from the real_path handling.
12413 (iterate_over_symtabs): Drop variable full_path and its use.
12414 * symtab.h (iterate_over_some_symtabs): Remove parameter full_path.
12415 * utils.c (xfullpath): Remove.
12416 * utils.h (xfullpath): Remove.
12417
12418 2013-02-01 Andreas Tobler <andreast@fgznet.ch>
12419
12420 * Makefile.in (ALL_TARGET_OBS): Add ppc64-tdep.o.
12421 (HFILES_NO_SRCDIR): Add ppc64-tdep.h.
12422 (ALLDEPFILES): Add ppc64-tdep.c.
12423 * configure.tgt (powerpc-*-linux* | powerpc64-*-linux*): Add
12424 ppc64-tdep.o to gdb_target_obs.
12425 * ppc64-tdep.h: New file.
12426 * ppc64-tdep.c: New file.
12427 (insn_d, insn_ds, insn_xfx, ppc64_desc_entry_point): Move from
12428 ppc-linux-tdep.c to here.
12429 (PPC64_STANDARD_LINKAGE1_LEN, PPC64_STANDARD_LINKAGE2_LEN)
12430 (PPC64_STANDARD_LINKAGE2_LEN): Likewise and use ARRAY_SIZE macro.
12431 (ppc64_standard_linkage1_target, ppc64_standard_linkage2_target)
12432 (ppc64_standard_linkage3_target, ppc64_skip_trampoline_code): Move
12433 from ppc-linux-tdep.c to here.
12434 (ppc64_convert_from_func_ptr_addr): Rename from
12435 ppc64_linux_convert_from_func_ptr_addr to
12436 ppc64_convert_from_func_ptr_addr and move from ppc-linux-tdep.c to
12437 here.
12438 * rs6000-tdep.c:
12439 (read_insn): Move from ppc-linux-tdep.c to here.
12440 (insns_match_pattern, insn_d_field, insn_ds_field): Move
12441 from ppc-linux-tdep.c to here and rename them with the ppc_ prefix.
12442 * ppc-linux-tdep.c: Include ppc64-tdep.h.
12443 Removed above functions.
12444 (ppc_linux_init_abi): Adjust.
12445
12446 2013-02-01 Aleksandar Ristovski <aristovski@qnx.com>
12447
12448 * ada-valprint.c (ada_print_floating): Remove unused 'len'.
12449
12450 2013-02-01 Aleksandar Ristovski <aristovski@qnx.com>
12451
12452 * ada-lang.c (assign_aggregate): Remove unused 'is_array_aggregate'.
12453
12454 2013-02-01 Pedro Alves <palves@redhat.com>
12455
12456 * dummy-frame.c (deprecated_pc_in_call_dummy): Delete function.
12457 * frame.h (deprecated_pc_in_call_dummy): Delete declaration.
12458
12459 2013-02-01 Jan Kratochvil <jan.kratochvil@redhat.com>
12460
12461 * elfread.c (elf_symfile_read): Limit separate debug info additions to
12462 files with no separate debug info.
12463 * objfiles.c (add_separate_debug_objfile): Add gdb_assert calls.
12464 * symfile.c (read_symbols): Call find_separate_debug_file_in_section
12465 only for files with no separate debug info.
12466
12467 2013-01-31 Tom Tromey <tromey@redhat.com>
12468
12469 * jit.c (jit_program_space_data): Rename from jit_inferior_data;
12470 change type.
12471 (struct jit_program_space_data): Rename from jit_inferior_data.
12472 Update comments.
12473 (get_jit_program_space_data): Rename from get_jit_inferior_data.
12474 Change return type. Attach data to program space.
12475 (jit_program_space_data_cleanup): Rename from
12476 jit_inferior_data_cleanup; change argument type.
12477 (jit_read_descriptor): Change 'inf_data' argument to 'ps_data',
12478 change type.
12479 (jit_register_code): Update.
12480 (jit_update_inferior_cache): Remove.
12481 (jit_breakpoint_deleted): Get jit data from the location's program
12482 space.
12483 (jit_breakpoint_re_set_internal): Rename 'inf_data' argument to
12484 'ps_data', change type.
12485 (jit_inferior_init, jit_breakpoint_re_set_internal)
12486 (jit_event_handler): Update.
12487 (free_objfile_data): Get data from objfile's program space.
12488 (_initialize_jit): Update.
12489
12490 2013-01-31 Tom Tromey <tromey@redhat.com>
12491
12492 PR gdb/13987:
12493 * jit.c (struct jit_inferior_data) <cached_code_address,
12494 jit_breakpoint>: New fields.
12495 (jit_breakpoint_re_set_internal): Fix logging. Only create
12496 breakpoint if cached address has changed.
12497 (jit_update_inferior_cache, jit_breakpoint_deleted): New
12498 functions.
12499 (_initialize_jit): Register breakpoint deleted observer.
12500
12501 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
12502
12503 * infrun.c (handle_syscall_event): Remove unused gdbarch.
12504 (save_infcall_suspend_state): Ifdef out unused inf.
12505 (restore_infcall_suspend_state): Ifdef out unused inf.
12506 * jit.c (jit_register_code): Remove unused i, b, inf_data.
12507 (jit_frame_sniffer): Remove unused inf_data.
12508
12509 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
12510
12511 * c-exp.y (classify_inner_name): Remove unused type.
12512 * c-lang.c (c_printstr): Remove unused byte_order, i, things_printed,
12513 in_quotes, need_comma, wchar_buf, output, cleanup, iter, finished,
12514 need_escape.
12515 (c_get_string): Remove unused kind.
12516 * c-typeprint.c (c_type_print_args): Remove unused i, len, args, table2.
12517
12518 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
12519
12520 * charset.c (intermediate_encoding): Remove unused i.
12521 * completer.c (signal_completer): Remove unused i.
12522 * continuations.c (discard_my_continuations_1): Remove unused
12523 continuation_ptr.
12524 * corelow.c (core_close): Remove unuseD name.
12525 (get_core_siginfo): Remove unused pid.
12526 * cp-namespace.c (cp_lookup_symbol_imports_or_template): Remove unused
12527 i, cps.
12528 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Remove unused base_offset.
12529 (loclist_describe_location): Remove unused first.
12530 * event-top.c (command_line_handler): Remove unused got_eof.
12531 * exec.c (exec_close_1): Remove unused need_symtab_cleanup.
12532 (resize_section_table): Remove unused old_value.
12533 * gdb_bfd.c (gdb_bfd_map_section): Remove unused header.
12534 * gnu-v3-abi.c (compute_vtable_size): Remove unused addr.
12535 * i386-tdep.c (i386_process_record): Remove unused rex.
12536 * infcmd.c (get_return_value): Remove unused uiout.
12537 * jv-lang.c (type_from_class): Remove unused is_array.
12538 * jv-valprint.c (java_val_print): Remove unused i.
12539 * linux-nat.c (linux_nat_stop_lwp): Remove unused ptid.
12540 * linux-thread-db.c (thread_db_find_new_threads_2): Remove unuseD pid.
12541 * m2-typeprint.c (m2_print_type): Remove unused code.
12542 * macroexp.c (get_character_constant): Remove unused body_start.
12543 (macro_stringify): Remove unused result.
12544 * objc-lang.c (find_methods): Remove unused gdbarch.
12545 * objfiles.c (filter_overlapping_sections): Remove unused abfd1, abfd2.
12546 * regcache.c (regcache_cooked_read): Remove unused gdbarch.
12547 * stack.c (print_frame_args): Remove unused summary.
12548 * thread.c (thread_apply_command): Remove unused p.
12549 * valarith.c (value_x_unop): Remove unused mangle_ptr.
12550 * valops.c (search_struct_method): Remove unused skip.
12551 * valprint.c (generic_val_print): Remove unused byte_order.
12552 * varobj.c (varobj_update): Remove unused changed.
12553 * cli/cli-cmds.c (complete_command): Remove unused next_item.
12554 (alias_command): Remove unused c.
12555 * mi/mi-cmd-catch.c (mi_catch_load_unload): Remove unused c.
12556 * mi/mi-main.c (mi_cmd_data_write_register_values): Remove unused
12557 format.
12558 (mi_cmd_data_write_memory): Remove unused word_format.
12559 (mi_cmd_data_write_memory_bytes): Remove unused r.
12560 * python/py-gdb-readline.c (gdbpy_readline_wrapper): Remove unused
12561 p_start, p_end.
12562 * python/python.c (_initialize_python): Remove unused cmd_name, cmd.
12563 * tui/tui-disasm.c (tui_set_disassem_content): Remove unused
12564 line_width.
12565
12566 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
12567
12568 * dwarf2-frame.c (dwarf2_compile_cfa_to_ax): Remove unused num_regs.
12569 * symtab.c (iterate_over_symtabs): Remove unused s.
12570 (find_pc_sect_symtab): Remove unused pspAce.
12571 (find_pc_sect_line): Remove unused alt_symtab.
12572 (find_pcs_for_symtab_line): Remove unused ix, previous_function.
12573 (completion_list_add_name): Remove unused newsize.
12574
12575 2013-01-31 Tom Tromey <tromey@redhat.com>
12576
12577 PR c++/14998:
12578 * dwarf2read.c (read_tag_ptr_to_member_type): Handle
12579 TYPE_CODE_FUNC.
12580
12581 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
12582
12583 * target.c (target_read_string): Remove unused origlen.
12584
12585 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
12586
12587 * auto-load.c (auto_load_expand_dir_vars): Remove unused dir_vec.
12588 * ax-gdb.c (gen_printf): Remove unused expr, i, bot, fr, flen, fmt.
12589 * ax-general.c (ax_print): Remove unused is_float.
12590 * blockframe.c (block_innermost_frame): Remove unused start, end.
12591 * break-catch-sig.c (catch_signal_command): Remove unused gdbarch.
12592
12593 2013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
12594
12595 * solib-svr4.c (svr4_keep_data_in_core): Remove unused lmo.
12596 (svr4_read_so_list): Remove unused lmo.
12597 * solib-target.c (solib_target_relocate_section_addresses): Remove
12598 unused flags.
12599
12600 2013-01-30 Tom Tromey <tromey@redhat.com>
12601
12602 * hppa-tdep.c (read_unwind_info): Use SECT_OFF_TEXT, not "0".
12603
12604 2013-01-30 Tom Tromey <tromey@redhat.com>
12605
12606 * symfile.c (get_file_crc): Use bfd_calc_gnu_debuglink_crc32.
12607 * utils.c (gnu_debuglink_crc32): Remove.
12608 * utils.h (gnu_debuglink_crc32): Don't declare.
12609
12610 2013-01-30 Tom Tromey <tromey@redhat.com>
12611
12612 * dwarf2read.c (compute_delayed_physnames, read_call_site_scope)
12613 (read_structure_type, read_enumeration_type): Remove cast.
12614
12615 2013-01-30 Tom Tromey <tromey@redhat.com>
12616
12617 * dwarf2read.c (read_namespace_type): Remove cast.
12618 (read_typedef): Likewise.
12619
12620 2013-01-29 Tom Tromey <tromey@redhat.com>
12621
12622 * dwarf2read.c (free_dwo_file): Remove assert.
12623
12624 2013-01-29 Tom Tromey <tromey@redhat.com>
12625
12626 * value.c (deprecated_set_value_modifiable): Remove.
12627 * value.h (deprecated_set_value_modifiable): Remove.
12628
12629 2013-01-28 Doug Evans <dje@google.com>
12630
12631 * dwarf2loc.c (dwarf2_find_location_expression): Don't add base address
12632 to addresses from dwo files.
12633
12634 2013-01-25 Siva Chandra Reddy <sivachandra@google.com>
12635
12636 * valops.c (find_overload_match): Remove unused argument 'lax'.
12637 * value.h: Remove unused argument 'lax' from the declaration of
12638 find_overload_match.
12639 * eval.c (value_subexp_standard): Do not pass a 'lax' argument
12640 to find_overload_match.
12641 * valarith.c (value_user_defined_cpp_op): Do not pass a 'lax'
12642 argument to find_overload_match.
12643
12644 2013-01-25 Tom Tromey <tromey@redhat.com>
12645
12646 * dwarf2read.c (processing_has_namespace_info): Remove.
12647 (struct dwarf2_cu) <processing_has_namespace_info>: New field.
12648 (process_die, read_func_scope, dwarf2_start_symtab)
12649 (new_symbol_full): Update.
12650
12651 2013-01-25 Tom Tromey <tromey@redhat.com>
12652
12653 * cp-namespace.c (cp_set_block_scope): Remove.
12654 * cp-support.h (cp_set_block_scope): Remove.
12655 * dbxread.c: Include block.h.
12656 (cp_set_block_scope): New function.
12657 (process_one_symbol): Update.
12658 * dwarf2read.c (read_func_scope): Use block_set_scope.
12659
12660 2013-01-25 Pedro Alves <palves@redhat.com>
12661
12662 * remote.c (add_current_inferior_and_thread): Tweak comment.
12663
12664 2013-01-25 Tom Tromey <tromey@redhat.com>
12665
12666 * cp-namespace.c (cp_scan_for_anonymous_namespaces): Update.
12667 (cp_add_using_directive): Add 'copy_names' argument.
12668 * cp-support.h (cp_add_using_directive): Update.
12669 (struct using_direct) <import_src, import_dest, alias,
12670 declaration>: Now const.
12671 * dwarf2read.c (read_import_statement): Use obconcat.
12672 Don't copy names passed to cp_add_using_directive.
12673
12674 2013-01-25 Tom Tromey <tromey@redhat.com>
12675
12676 * c-exp.y (qualified_name): Use TYPE_SAFE_NAME.
12677
12678 2013-01-25 Pedro Alves <palves@redhat.com>
12679
12680 * remote.c (stop_reply_extract_thread): New.
12681 (add_current_inferior_and_thread): New parameter 'wait_status'.
12682 Handle it.
12683 (remote_start_remote): Pass wait status to
12684 add_current_inferior_and_thread.
12685 (extended_remote_run): Update comment.
12686 (extended_remote_create_inferior_1): Pass wait status to
12687 add_current_inferior_and_thread.
12688
12689 2013-01-25 Andrew Burgess <aburgess@broadcom.com>
12690 Ulrich Weigand <uweigand@de.ibm.com>
12691
12692 * valarith.c (value_vector_widen): New function for replicating a
12693 scalar into a vector.
12694 (value_binop): Use value_vector_widen to widen scalar to vector
12695 rather than casting, this better matches gcc C behaviour.
12696 * valops.c (value_casst): Update logic for casting between vector
12697 types, and for casting from scalar to vector, try to match gcc C
12698 behaviour.
12699 * value.h (value_vector_widen): Declare.
12700 * opencl-lang.c (opencl_value_cast): New opencl specific casting
12701 function, handle special case for casting scalar to vector.
12702 (opencl_relop): Use opencl_value_cast.
12703 (evaluate_subexp_opencl): Use opencl_value_cast instead of
12704 value_cast, and handle BINOP_ASSIGN, UNOP_CAST, and UNOP_CAST_TYPE
12705 in order to use opencl_value_cast.
12706
12707 2013-01-25 Yao Qi <yao@codesourcery.com>
12708
12709 * event-loop.c: Include "queue.h".
12710 (gdb_event_p): New typedef.
12711 (DECLARE_QUEUE_P): Use.
12712 (DEFINE_QUEUE_P): Use.
12713 (async_queue_event): Remove.
12714 (gdb_event_xfree): New.
12715 (initialize_event_loop): New.
12716 (process_event): Use QUEUE macros.
12717 (event_queue): Remove.
12718 (gdb_wait_for_event): Caller update.
12719 (check_async_event_handlers): Likewise.
12720 (poll_timers): Likewise.
12721 * event-loop.h (initialize_event_loop): Declare.
12722 * event-loop.c (gdb_event_xfree): New.
12723 * top.c (gdb_init): Call initialize_event_loop.
12724
12725 2013-01-25 Yao Qi <yao@codesourcery.com>
12726
12727 * event-loop.c (async_queue_event): Remove one parameter
12728 'position'. Remove code handling 'position' == TAIL.
12729 (gdb_wait_for_event): Caller update.
12730 (check_async_event_handlers): Caller update.
12731 (poll_timers): Caller update.
12732 * event-loop.h (enum queue_position): Remove.
12733
12734 2013-01-25 Maxim Kuvyrkov <maxim@kugelworks.com>
12735
12736 * MAINTAINERS: Update my email.
12737
12738 2013-01-25 Yao Qi <yao@codesourcery.com>
12739
12740 * main.c (print_gdb_help): Remove "--epoch" from the help
12741 message.
12742
12743 2013-01-24 Ulrich Weigand  <uweigand@de.ibm.com>
12744
12745 * symtab.c (skip_prologue_using_sal): Consider a file
12746 change the same as an increased line number
12747
12748 2013-01-24 Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
12749
12750 * MAINTAINERS (Write After Approval): Add myself to the list.
12751
12752 2013-01-24 Tom Tromey <tromey@redhat.com>
12753
12754 * ada-lang.h (ada_decode_symbol): Make return type const.
12755 * ada-lang.c (ada_decode_symbol): Likewise.
12756
12757 2013-01-23 Doug Evans <dje@google.com>
12758
12759 * linespec.c (find_linespec_symbols): Make static.
12760
12761 2013-01-23 Tiago Stürmer Daitx <tdaitx@linux.vnet.ibm.com>
12762
12763 * ppc-sysv-tdep.c (ppc64_sysv_abi_return_value): Set correct
12764 type on float conversion for complex type.
12765
12766 2013-01-23 Siva Chandra Reddy <sivachandra@google.com>
12767
12768 Add a new class gdb.Architecture which exposes GDB's
12769 internal representation of architecture via GDB Python API.
12770 * Makefile.in: Add entries corresponding to the new file
12771 python/py-arch.c.
12772 * NEWS (Python Scripting): Add entries for the new class
12773 gdb.Architecture and the new method gdb.Frame.architecture.
12774 * python/py-arch.c: Implement gdb.Architecture class.
12775 * python/py-frame.c (frapy_arch): Implement the method
12776 gdb.Frame.architecture().
12777 (frame_object_methods): Add 'architecture' to the method table.
12778 * python/python-internal.h: Add declarations of new utility
12779 functions.
12780 * python/python.c (_initialize_python): Initialize
12781 gdb.Architecture class.
12782
12783 2013-01-23 Doug Evans <dje@google.com>
12784
12785 Work around binutils/15021.
12786 * dwarf2read.c (dwarf2_per_cu_data): Split imported_symtabs and
12787 type_unit_group out of union s. All uses updated.
12788 (read_index_from_section): Watch for index version 8.
12789 (follow_die_sig): If using .gdb_index version <= 7, record the TU as
12790 an imported symtab.
12791 (write_psymtabs_to_index): Increment version number to 8.
12792
12793 2013-01-22 Pedro Alves <palves@redhat.com>
12794
12795 * annotate.c (breakpoint_changed): Skip if breakpoint is not
12796 user-visible.
12797
12798 2013-01-22 Pedro Alves <palves@redhat.com>
12799
12800 * annotate.c (annotate_breakpoints_changed): Rename to ...
12801 (annotate_breakpoints_invalid): ... this. Make static.
12802 (breakpoint_changed): Adjust.
12803 (_initialize_annotate): Always install the observers. Install a
12804 "breakpoint_created" observer.
12805 * annotate.h (annotate_breakpoints_changed): Delete declaration.
12806 * breakpoint.c (set_breakpoint_condition)
12807 (breakpoint_set_commands, do_map_commands_command)
12808 (init_raw_breakpoint, clear_command, set_ignore_count)
12809 (enable_breakpoint_disp): No longer call
12810 annotate_breakpoints_changed.
12811
12812 2013-01-22 Pedro Alves <palves@redhat.com>
12813
12814 * annotate.c: Include "inferior.h".
12815 (frames_invalid_emitted)
12816 (breakpoints_invalid_emitted): New globals.
12817 (async_background_execution_p): New function.
12818 (annotate_breakpoints_changed, annotate_frames_invalid): Skip
12819 emitting the annotation if it has already been emitted.
12820 (annotate_display_prompt): New function.
12821 * annotate.h (annotate_display_prompt): New declaration.
12822 * event-top.c: Include annotate.h.
12823 (display_gdb_prompt): Call annotate_display_prompt.
12824
12825 2013-01-22 Pedro Alves <palves@redhat.com>
12826
12827 * annotate.c (ignore_count_changed): Delete.
12828 (annotate_breakpoints_changed): Don't clear ignore_count_changed.
12829 (annotate_ignore_count_change): Delete.
12830 (annotate_stopped): Don't emit a delayed breakpoints-changed
12831 annotation.
12832 * annotate.h (annotate_ignore_count_change): Delete.
12833 * breakpoint.c (bpstat_check_breakpoint_conditions): Don't call
12834 annotate_ignore_count_change.
12835
12836 2013-01-22 Tom Tromey <tromey@redhat.com>
12837
12838 * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>: Only
12839 require_rvalue for a register location.
12840
12841 2013-01-21 Marc Khouzam <marc.khouzam@ericsson.com>
12842
12843 * breakpoint.c (print_one_breakpoint_location): Add MI
12844 field 'thread-groups' when printing a breakpoint.
12845 (output_thread_groups): New function.
12846
12847 2013-01-21 Siva Chandra Reddy <sivachandra@google.com>
12848
12849 * python/lib/gdb/commands/explore.py
12850 (CompoundExplorer.explore_expr): Correct the name of a method
12851 being invoked.
12852 (ExploreTypeCommand.invoke): Add a missing 'return'.
12853
12854 2013-01-21 Tom Tromey <tromey@redhat.com>
12855
12856 * gdb_obstack.h (obconcat): Move declaration here, from...
12857 * symfile.h (obconcat): ... here.
12858 * gdb_obstack.c: New file.
12859 (obconcat): Move from...
12860 * symfile.c (obconcat): ... here.
12861 * Makefile.in (SFILES): Add gdb_obstack.c.
12862 (COMMON_OBS): Add gdb_obstack.o.
12863
12864 2013-01-21 Tom Tromey <tromey@redhat.com>
12865
12866 * symfile.h (obsavestring): Don't declare.
12867 * symfile.c (obsavestring): Remove.
12868 * ada-exp.y: Use obstack_copy0, not obsavestring.
12869 * ada-lang.c: Use obstack_copy0, not obsavestring.
12870 * coffread.c: Use obstack_copy0, not obsavestring.
12871 * cp-namespace.c: Use obstack_copy0, not obsavestring.
12872 * dbxread.c: Use obstack_copy0, not obsavestring.
12873 * dwarf2read.c: Use obstack_copy0, not obsavestring.
12874 * jit.c: Use obstack_copy0, not obsavestring.
12875 * mdebugread.c: Use obstack_copy0, not obsavestring.
12876 * psymtab.c: Use obstack_copy0, not obsavestring.
12877 * stabsread.c: Use obstack_copy0, not obsavestring.
12878 * xcoffread.c: Use obstack_copy0, not obsavestring.
12879
12880 2013-01-21 Tom Tromey <tromey@redhat.com>
12881
12882 * dwarf2read.c (fixup_go_packaging): Save package name
12883 on objfile obstack.
12884 * gdbtypes.c (init_type): Don't copy name.
12885
12886 2013-01-21 Tom Tromey <tromey@redhat.com>
12887
12888 * dwarf2read.c (struct partial_die_info) <name, scope>: Now
12889 const.
12890 (struct attribute) <u.str>: Now const.
12891 (struct fnfieldlist) <name>: Now const.
12892 (dw2_get_file_names_reader, init_cutu_and_read_dies): Update.
12893 (partial_die_parent_scope): Make return type const.
12894 (partial_die_full_name, add_partial_symbol): Update.
12895 (dwarf2_compute_name, dwarf2_full_name, dwarf2_physname): Make
12896 'name' const.
12897 (find_file_and_directory): Make 'name' and 'comp_dir' const.
12898 (read_file_scope, read_func_scope, dwarf2_add_field)
12899 (dwarf2_add_member_fn, read_structure_type)
12900 (process_enumeration_scope, read_array_type, read_module_type)
12901 (read_base_type, read_subrange_type): Update.
12902 (dwarf2_start_symtab): Make 'name' and 'comp_dir' const.
12903 (new_symbol_full, guess_full_die_structure_name): Update.
12904 (dwarf2_canonicalize_name): Return const type. Make 'name' const.
12905 (dwarf2_name): Return const type.
12906 (dwarf_decode_macro_bytes, dwarf_decode_macros): Make 'comp_dir'
12907 const.
12908
12909 2013-01-21 Tom Tromey <tromey@redhat.com>
12910
12911 * gdbtypes.c (init_type): Make 'name' const.
12912 * gdbtypes.h (init_type): Update.
12913
12914 2013-01-21 Tom Tromey <tromey@redhat.com>
12915
12916 * buildsym.c (patch_subfile_names): Use set_last_source_file.
12917 (start_symtab): Make 'name' and 'dirname' const. Use
12918 set_last_source_file.
12919 (restart_symtab, reset_symtab_globals): Use set_last_source_file.
12920 (last_source_file): Define. Now static.
12921 (set_last_source_file, get_last_source_file): New functions.
12922 * buildsym.h (last_source_file): Don't declare.
12923 (start_symtab): Update.
12924 (set_last_source_file, get_last_source_file): Declare.
12925 * coffread.c (complete_symtab): Use set_last_source_file.
12926 (coff_end_symtab): Likewise.
12927 (coff_symtab_read): Use set_last_source_file, get_last_source_file.
12928 * dbxread.c (read_dbx_symtab, read_ofile_symtab): Use
12929 set_last_source_file.
12930 (process_one_symbol): Use get_last_source_file.
12931 * mdebugread.c (parse_partial_symbols): Use set_last_source_file.
12932 (psymtab_to_symtab_1): Use get_last_source_file.
12933 * xcoffread.c (process_linenos): Use get_last_source_file.
12934 (complete_symtab): Use set_last_source_file.
12935 (read_xcoff_symtab): Use set_last_source_file, get_last_source_file.
12936 (scan_xcoff_symtab): Use set_last_source_file.
12937
12938 2013-01-21 Tom Tromey <tromey@redhat.com>
12939
12940 * symtab.c (struct demangled_name_entry) <mangled>: Now const.
12941 (symbol_set_names): Remove casts. Handle field const-ness.
12942
12943 2013-01-21 Tom Tromey <tromey@redhat.com>
12944
12945 * dwarf2read.c (new_symbol_full): Remove cast.
12946 * symtab.c (symbol_set_demangled_name): Make 'name' const.
12947 * symtab.h (symbol_set_demangled_name): Update.
12948
12949 2013-01-21 Tom Tromey <tromey@redhat.com>
12950
12951 * main.c (captured_main): Call bfd_init.
12952
12953 2013-01-21 Tom Tromey <tromey@redhat.com>
12954
12955 * gnu-v2-abi.c (_initialize_gnu_v2_abi): Don't set default ABI.
12956 * gnu-v3-abi.c (_initialize_gnu_v3_abi): Set default ABI.
12957 * minsyms.c (install_minimal_symbols): Don't check for _Z symbols.
12958 * NEWS: Update.
12959
12960 2013-01-21 Jan Kratochvil <jan.kratochvil@redhat.com>
12961
12962 * symmisc.c (maintenance_print_msymbols): Check also ST_DEV.
12963
12964 2013-01-21 Jan Kratochvil <jan.kratochvil@redhat.com>
12965
12966 Fix gdb.fortran/common-block.exp crash in PIE mode.
12967 * dwarf2read.c (new_symbol_full) <DW_TAG_common_block>: Use
12968 LOC_COMMON_BLOCK.
12969 * f-valprint.c (info_common_command_for_block): Expect
12970 LOC_COMMON_BLOCK in gdb_assert.
12971 * symtab.h (struct general_symbol_info): Update comment for the
12972 common_block member.
12973 (domain_enum): Extend comment for the COMMON_BLOCK_DOMAIN member.
12974 (enum address_class): New member LOC_COMMON_BLOCK.
12975
12976 2013-01-18 David Blaikie <dblaikie@gmail.com>
12977
12978 * MAINTAINERS (Write After Approval): Add "David Blaikie".
12979
12980 2013-01-18 Tom Tromey <tromey@redhat.com>
12981
12982 PR c++/14999:
12983 * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>:
12984 Call require_rvalue.
12985
12986 2013-01-18 Yao Qi <yao@codesourcery.com>
12987
12988 * dbxread.c (dbx_psymtab_to_symtab): Delete the declaration.
12989 (dbx_read_symtab): New declaration.
12990 (dbx_psymtab_to_symtab): Delete.
12991 (dbx_read_symtab): Rename from dbx_psymtab_to_symtab.
12992 Rename parameter PST to SELF. Exchanged two parameters.
12993 (start_psymtab): Caller update.
12994 * dwarf2read.c (dwarf2_psymtab_to_symtab): Delete the declaration.
12995 (dwarf2_read_symtab): New declaration.
12996 (dwarf2_psymtab_to_symtab): Delete.
12997 (dwarf2_read_symtab): Rename from dwarf2_psymtab_to_symtab.
12998 Rename parameter PST to SELF. Exchanged two parameters.
12999 (create_partial_symtab): Caller update.
13000 * mdebugread.c (mdebug_psymtab_to_symtab): Delete.
13001 (mdebug_read_symtab): Rename from mdebug_psymtab_to_symtab.
13002 Rename parameter PST to SELF. Exchanged two parameters.
13003 (parse_partial_symbols, new_psymtab): Caller update.
13004 * psympriv.h (struct partial_symtab) <read_symtab>: Exchange
13005 two parameters.
13006 * psymtab.c (psymtab_to_symtab): Caller update.
13007 * xcoffread.c (xcoff_psymtab_to_symtab): Delete.
13008 (xcoff_read_symtab): Rename from xcoff_psymtab_to_symtab.
13009 Rename parameter PST to SELF. Exchanged two parameters.
13010 (xcoff_start_psymtab): Caller update.
13011
13012 2013-01-18 Yao Qi <yao@codesourcery.com>
13013
13014 * infrun.c (proceed): Rename local variable 'oneproc' to
13015 'force_step'.
13016
13017 2013-01-17 Doug Evans <dje@google.com>
13018
13019 * dwarf2read.c (dw2_build_type_unit_groups_reader): Delete.
13020 (dw2_build_type_unit_groups): Delete. All uses updated.
13021
13022 * symtab.h (struct symbol_search): Add comment.
13023
13024 2013-01-17 Jan Kratochvil <jan.kratochvil@redhat.com>
13025
13026 * symtab.c (compare_filenames_for_search): New comment for
13027 HAS_DRIVE_SPEC.
13028
13029 2013-01-17 Tom Tromey <tromey@redhat.com>
13030
13031 * cp-abi.c (cp_abi_completer): Fix typo in assignment.
13032
13033 2013-01-17 Jan Kratochvil <jan.kratochvil@redhat.com>
13034
13035 * symtab.c (iterate_over_some_symtabs): New variable cleanups,
13036 initialize it by existing make_cleanup. Call new do_cleanups.
13037
13038 2013-01-17 Tom Tromey <tromey@redhat.com>
13039
13040 * cp-abi.c (cp_abi_completer): New function.
13041 (_initialize_cp_abi): Set completer for "set cp-abi".
13042
13043 2013-01-17 Tom Tromey <tromey@redhat.com>
13044
13045 * mem-break.c: Remove obsolete comment.
13046 * bfin-tdep.c (bfin_breakpoint_from_pc): Fix comment.
13047
13048 2012-01-17 Sanjoy Das <sanjoy@playingwithpointers.com>
13049
13050 * jit.c (jit_reader_load_command): Interpret the jit reader name
13051 as an absolute path if it begins with a forward slash.
13052
13053 2012-01-17 Sanjoy Das <sanjoy@playingwithpointers.com>
13054
13055 PR gdb/14550
13056
13057 * jit.c (finalize_symtab): Ensure that only the global block has a
13058 NULL superblock.
13059
13060 2013-01-17 Pedro Alves <palves@redhat.com>
13061
13062 * acinclude.m4: Include ../config/plugins.m4,
13063 ../config/largefile.m4 and ../config/lead-dot.m4. Add comments.
13064 * Makefile.in (aclocal_m4_deps): Update.
13065 * aclocal.m4: Renegerate.
13066
13067 2013-01-16 Doug Evans <dje@google.com>
13068
13069 * contrib/cc-with-tweaks.sh: Add references to Fission docs.
13070
13071 2013-01-16 Pedro Alves <palves@redhat.com>
13072 Tom Tromey <tromey@redhat.com>
13073
13074 PR cli/7221:
13075 * NEWS: Add "catch signal".
13076 * breakpoint.c (base_breakpoint_ops): No longer static.
13077 (bpstat_explains_signal): New function.
13078 (init_catchpoint): No longer static.
13079 (base_breakpoint_explains_signal): New function.
13080 (base_breakpoint_ops): Initialize new field.
13081 * breakpoint.h (enum bpstat_signal_value): New.
13082 (struct breakpoint_ops) <explains_signal>: New field.
13083 (bpstat_explains_signal): Remove macro, declare as function.
13084 (base_breakpoint_ops, init_catchpoint): Declare.
13085 * break-catch-sig.c: New file.
13086 * inferior.h (signal_catch_update): Declare.
13087 * infrun.c (signal_catch): New global.
13088 (handle_syscall_event): Update for change to
13089 bpstat_explains_signal.
13090 (handle_inferior_event): Likewise. Always handle random signals
13091 via bpstats.
13092 (signal_cache_update): Check signal_catch.
13093 (signal_catch_update): New function.
13094 (_initialize_infrun): Initialize signal_catch.
13095 * Makefile.in (SFILES): Add break-catch-sig.c.
13096 (COMMON_OBS): Add break-catch-sig.o.
13097
13098 2013-01-16 Tom Tromey <tromey@redhat.com>
13099
13100 * breakpoint.c (print_one_catch_fork, print_one_catch_vfork)
13101 (print_one_catch_solib, print_one_catch_syscall)
13102 (print_one_catch_exec, print_one_exception_catchpoint): Emit
13103 "catch-type".
13104
13105 2013-01-16 Yao Qi <yao@codesourcery.com>
13106
13107 * printcmd.c (current_display_number): Make it static.
13108
13109 2013-01-16 Yao Qi <yao@codesourcery.com>
13110
13111 * infcmd.c (step_once): Don't check '!single_inst' as it was
13112 checked before.
13113
13114 2013-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
13115
13116 * dwarf2read.c (psymtab_include_file_name): Extend the function comment.
13117
13118 2013-01-14 Tom Tromey <tromey@redhat.com>
13119
13120 * cli/cli-decode.c (add_setshow_string_noescape_cmd): Return the
13121 set command.
13122 * command.h (add_setshow_string_noescape_cmd): Update.
13123 * corefile.c (set_gnutarget_command): Remove trailing whitespace.
13124 (complete_set_gnutarget): New function.
13125 (_initialize_core): Set the "set gnutarget" completer.
13126
13127 2013-01-14 Tom Tromey <tromey@redhat.com>
13128
13129 PR symtab/14442:
13130 * c-typeprint.c (cp_type_print_method_args): Handle 'restrict'.
13131 (c_type_print_modifier): Likewise.
13132 * dwarf2read.c (read_tag_restrict_type): New function.
13133 (read_type_die_1): Handle DW_TAG_restrict_type.
13134 * gdbtypes.c (make_restrict_type): New function.
13135 (recursive_dump_type): Handle TYPE_RESTRICT.
13136 * gdbtypes.h (enum type_flag_values): Renumber.
13137 (enum type_instance_flag_value): Add
13138 TYPE_INSTANCE_FLAG_RESTRICT.
13139 (TYPE_RESTRICT): New macro.
13140 (make_restrict_type): Declare.
13141
13142 2013-01-14 Tom Tromey <tromey@redhat.com>
13143
13144 PR symtab/14931:
13145 * psymtab.c (struct psymtab_state): New.
13146 (discard_psymtabs_upto, make_cleanup_discard_psymtabs): New
13147 functions.
13148 * psympriv.h (make_cleanup_discard_psymtabs): Declare.
13149 * dwarf2read.c (dwarf2_build_psymtabs): Catch exceptions.
13150
13151 2013-01-14 Richard Sharman <richard_sharman@mitel.com>
13152 Pedro Alves <palves@redhat.com>
13153
13154 PR remote/14786
13155
13156 * remote.c (remote_threads_info): Make a copy of the reply from
13157 qfThreadInfo and use that instead of rs->buf.
13158
13159 2013-01-14 Yao Qi <yao@codesourcery.com>
13160
13161 * dbxread.c (dbx_psymtab_to_symtab_1): Don't check PST is NULL.
13162 (dbx_psymtab_to_symtab): Likewise.
13163 * dwarf2read.c (dwarf2_psymtab_to_symtab): Likewise.
13164 * mdebugread.c (mdebug_psymtab_to_symtab): Likewise.
13165 * xcoffread.c (xcoff_psymtab_to_symtab_1): Likewise.
13166
13167 2013-01-13 Jan Kratochvil <jan.kratochvil@redhat.com>
13168
13169 * parse.c (parse_exp_in_context): New variable inner_chain. Call
13170 make_cleanup_restore_current_language. Call set_language. Move
13171 OLD_CHAIN and INNER_CHAIN cleanups.
13172 * utils.c (do_restore_current_language)
13173 (make_cleanup_restore_current_language): New functions.
13174 * utils.h (make_cleanup_restore_current_language): New declaration.
13175
13176 2013-01-13 Jan Kratochvil <jan.kratochvil@redhat.com>
13177
13178 * source.c (symtab_to_fullname): Apply rewrite_source_path also for
13179 non-existing files.
13180
13181 * source.c (symtab_to_fullname): Do not prepend DIRNAME for
13182 non-existing files if FILENAME is already absolute.
13183
13184 2013-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
13185
13186 * macrocmd.c (macro_inform_no_debuginfo): Use puts_filtered instead of
13187 fputs_filtered. Append trailing newline.
13188
13189 2013-01-11 Yao Qi <yao@codesourcery.com>
13190 Stan Shebs <stan@codesourcery.com>
13191
13192 * psymtab.c (init_psymbol_list): Clarify the comment.
13193
13194 2013-01-11 Yao Qi <yao@codesourcery.com>
13195
13196 * breakpoint.c (print_one_breakpoint_location): Remove dead code.
13197 (update_dprintf_command_list): Assert that 'printf_line' is
13198 non-null. Remove condition check.
13199
13200 2013-01-10 Jan Kratochvil <jan.kratochvil@redhat.com>
13201
13202 Code cleanup.
13203 * psymtab.c (psymtab_to_fullname, psymtab_to_fullname): Make the return
13204 type const char *.
13205 * tui/tui-source.c (tui_source_is_displayed): Make the parameter fname
13206 const char *.
13207 * tui/tui-source.h (tui_source_is_displayed): Likewise.
13208
13209 2013-01-09 Anthony Green <green@moxielogic.com>
13210
13211 * cp-abi.c (cplus_print_vtable): Don't return value from void
13212 function.
13213 * ada-lang.c (re_set_catch_assert): Ditto.
13214
13215 2013-01-09 Doug Evans <dje@google.com>
13216
13217 * symfile.h (quick_symbol_functions): Delete member
13218 pre_expand_symtabs_matching. All uses removed.
13219 * dwarf2read.c (dw2_lookup_symbol): Implement.
13220 (dw2_do_expand_symtabs_matching): Delete.
13221 (dw2_pre_expand_symtabs_matching): Delete.
13222 (struct dw2_symtab_iterator): New type.
13223 (dw2_symtab_iter_init, dw2_symtab_iter_next): New functions.
13224 (dw2_expand_symtabs_for_function): Rewrite.
13225 (dwarf2_gdb_index_functions): Update.
13226 * psymtab.c (pre_expand_symtabs_matching_psymtabs): Delete.
13227 (psym_functions): Update.
13228
13229 2013-01-09 Tom Tromey <tromey@redhat.com>
13230
13231 * config/pa/hpux.mh (NATDEPFILES): Remove somread.o.
13232 * configure: Rebuild.
13233 * configure.ac: Add somread.o to the build if BFD has SOM
13234 support.
13235 * somread.c: Include som/aout.h, not syms.h.
13236 (som_symtab_read): Use som_external_symbol_dictionary_record.
13237 Unpack records manually.
13238 (_initialize_somread): Declare.
13239
13240 2012-01-08 Mike Frysinger <vapier@gentoo.org>
13241
13242 * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx) [__x86_64__]:
13243 Cast return_address to 64bits.
13244
13245 2013-01-08 Hui Zhu <hui_zhu@mentor.com>
13246
13247 * printcmd.c: Remove define of function output_command.
13248 * tracepoint.c: Remove extern of function output_command.
13249 * valprint.h: (output_command): New extern.
13250
13251 2013-01-07 Tom Tromey <tromey@redhat.com>
13252
13253 * objc-lang.c (objc_emit_char, objc_printchar, objc_printstr):
13254 Remove.
13255 (objc_language_defn): Use c_printchar, c_printstr,
13256 c_emit_char.
13257
13258 2013-01-07 Tom Tromey <tromey@redhat.com>
13259
13260 PR cli/7719:
13261 * NEWS: Update.
13262 * ada-valprint.c (printstr, print_field_values): Remove
13263 "inspect_it" code.
13264 * cp-valprint.c (cp_print_value_fields): Remove "inspect_it"
13265 code.
13266 * jv-valprint.c (java_print_value_fields): Remove "inspect_it"
13267 code.
13268 * m2-lang.c (m2_printstr): Remove "inspect_it" code.
13269 * main.c (captured_main): Remove "epoch" argument.
13270 * objc-lang.c (objc_printstr): Remove "inspect_it" code.
13271 * p-lang.c (pascal_printstr): Remove "inspect_it" code.
13272 * p-valprint.c (pascal_object_print_value_fields): Remove
13273 "inspect_it" code.
13274 * printcmd.c (print_command_1): Remove 'inspect' argument.
13275 (print_command, call_command): Update.
13276 (inspect_command): Remove.
13277 (_initialize_printcmd): Make "inspect" an alias for "print".
13278 * top.c (epoch_interface): Remove.
13279 * top.h (epoch_interface): Remove.
13280 * valprint.c (user_print_options): Update.
13281 (print_converted_chars_to_obstack): Remove "inspect_it" code.
13282 * valprint.h (struct value_print_options) <inspect_it>: Remove
13283 field.
13284
13285 2013-01-04 Tom Tromey <tromey@redhat.com>
13286
13287 * valprint.h (read_string): Add 'extern'.
13288
13289 2013-01-07 Joel Brobecker <brobecker@adacore.com>
13290
13291 * darwin-nat.c: Fix typo in TASK_DYLD_INFO_COUNT macro test
13292 used to decide whether to define darwin_read_dyld_info or not.
13293
13294 2013-01-03 Pierre Muller <muller@sourceware.org>
13295
13296 * main.c (relocate_gdb_directory): Avoid calling stat function
13297 if DIR is empty.
13298
13299 2013-01-03 Yao Qi <yao@codesourcery.com>
13300
13301 * psymtab.c (fixup_psymbol_section): Update declaration.
13302 (fixup_psymbol_section): Remove code returning value.
13303
13304 2013-01-03 Yao Qi <yao@codesourcery.com>
13305
13306 * symtab.h: Remove some out of date comments.
13307 (enum exception_event_kind): Move it ...
13308 * breakpoint.c: ... here.
13309
13310 2013-01-02 Iain Sandoe <developer@sandoe-acoustics.co.uk>
13311
13312 PR gdb/14405
13313 * darwin-nat.c (darwin_read_dyld_info): Only build if
13314 TASK_DYLD_INFO_COUNT is defined.
13315 (darwin_xfer_partial): Call darwin_read_dyld_info only if
13316 TASK_DYLD_INFO_COUNT is defined.
13317
13318 2013-01-02 Tom Tromey <tromey@redhat.com>
13319
13320 * symfile.h (struct ecoff_debug_hack): Remove.
13321 * objfiles.c: Don't include mdebugread.h.
13322
13323 2013-01-02 Tom Tromey <tromey@redhat.com>
13324
13325 * config/i386/darwin.mh (NATDEPFILES): Remove machoread.o.
13326 * configure.ac: Check for Mach-O support in BFD. Update
13327 CONFIG_OBS.
13328 * configure: Rebuild.
13329
13330 2013-01-02 Tom Tromey <tromey@redhat.com>
13331
13332 * acinclude.m4 (GDB_AC_CHECK_BFD): New macro.
13333 * configure.ac: Use GDB_AC_CHECK_BFD.
13334 * configure: Rebuild.
13335
13336 2013-01-01 Maxim Kuvyrkov <maxim.kuvyrkov@gmail.com>
13337
13338 * MAINTAINERS: Update my email.
13339
13340 2013-01-01 Joel Brobecker <brobecker@adacore.com>
13341
13342 * cli/cli-script.h (make_cleanup_free_command_lines): Make extern.
13343
13344 2013-01-01 Joel Brobecker <brobecker@adacore.com>
13345
13346 * rs6000-nat.c (bss_data_overlap): New function.
13347 (vmap_symtab): Use it to adjust the .bss section's offset.
13348
13349 2013-01-01 Joel Brobecker <brobecker@adacore.com>
13350
13351 Update year range in copyright notice of all files.
13352
13353 2013-01-01, 13 Joel Brobecker <brobecker@adacore.com>
13354
13355 * top.c (print_gdb_version): Update copyright year.
13356
13357 For older changes see ChangeLog-2012.
13358 \f
13359 Local Variables:
13360 mode: change-log
13361 left-margin: 8
13362 fill-column: 74
13363 version-control: never
13364 coding: utf-8
13365 End: