Use rs->buf after getpkt
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2014-02-05 Yao Qi <yao@codesourcery.com>
2
3 * remote.c (remote_pass_signals): Remove local 'buf' and use
4 rs->buf.
5 (remote_program_signals): Likewise.
6
7 2014-02-05 Yao Qi <yao@codesourcery.com>
8
9 * ctf.c: Include "inferior.h" and "gdbthread.h".
10 (CTF_PID): A new macro.
11 (ctf_open): Call inferior_appeared and add_thread_silent.
12 (ctf_close): Call exit_inferior_silent and set inferior_ptid.
13 (ctf_thread_alive): New function.
14 (init_ctf_ops): Install ctf_thread_alive to to_thread_alive.
15
16 2014-02-05 Yao Qi <yao@codesourcery.com>
17
18 Revert this patch:
19
20 2013-05-24 Yao Qi <yao@codesourcery.com>
21
22 * tracepoint.c (TFILE_PID): Remove.
23 (tfile_open): Don't add thread and inferior.
24 (tfile_close): Don't set 'inferior_ptid'. Don't call
25 exit_inferior_silent.
26 (tfile_thread_alive): Remove.
27 (init_tfile_ops): Don't set field 'to_thread_alive' of
28 tfile_ops.
29
30 2014-02-04 Christian Eggers <ceggers@gmx.de> (tiny change)
31
32 * remote.c (remote_start_remote): Call remote_check_symbols even
33 if only symbol-file (not file) has been given.
34
35 2014-02-04 Ulrich Weigand  <uweigand@de.ibm.com>
36
37 * gdbarch.sh (skip_entrypoint): New callback.
38 * gdbarch.c, gdbarch.h: Regenerate.
39 * symtab.c (skip_prologue_sal): Call gdbarch_skip_entrypoint.
40 * infrun.c (fill_in_stop_func): Likewise.
41 * ppc-linux-tdep.c: Include "elf/ppc64.h".
42 (ppc_elfv2_elf_make_msymbol_special): New function.
43 (ppc_elfv2_skip_entrypoint): Likewise.
44 (ppc_linux_init_abi): Install them for ELFv2.
45
46 2014-02-04 Ulrich Weigand  <uweigand@de.ibm.com>
47
48 * ppc-sysv-tdep.c (ppc64_aggregate_candidate): New routine.
49 (ppc64_elfv2_abi_homogeneous_aggregate): Likewise.
50 (ppc64_sysv_abi_push_param): Handle ELFv2 homogeneous structs.
51 (ppc64_sysv_abi_return_value): Likewise. Also, handle small
52 structures returned in GPRs.
53
54 2014-02-04 Ulrich Weigand  <uweigand@de.ibm.com>
55
56 * ppc-sysv-tdep.c (ppc64_sysv_abi_push_dummy_call): Use correct
57 offset to the stack parameter list for the ELFv2 ABI.
58
59 2014-02-04 Ulrich Weigand  <uweigand@de.ibm.com>
60
61 * ppc-linux-tdep.c (ppc_linux_init_abi): Only call
62 set_gdbarch_convert_from_func_ptr_addr and
63 set_gdbarch_elf_make_msymbol_special for ELFv1.
64 * ppc-sysv-tdep.c (ppc64_sysv_abi_push_param): Only handle
65 function descriptors on ELFv1.
66 (ppc64_sysv_abi_push_dummy_call): Likewise. On ELFv2,
67 set up r12 at function entry.
68
69 2014-02-04 Ulrich Weigand  <uweigand@de.ibm.com>
70
71 * ppc-tdep.h (enum powerpc_elf_abi): New data type.
72 (struct gdbarch_tdep): New member elf_abi.
73
74 * rs6000-tdep.c: Include "elf/ppc64.h".
75 (rs6000_gdbarch_init): Detect ELF ABI version.
76
77 2014-02-04 Ulrich Weigand  <uweigand@de.ibm.com>
78
79 * ppc-sysv-tdep.c (ppc64_sysv_abi_push_freg): Use correct order
80 within a register pair holding a DFP 128-bit value on little-endian.
81 (ppc64_sysv_abi_return_value_base): Likewise.
82 * rs6000-tdep.c (dfp_pseudo_register_read): Likewise.
83 (dfp_pseudo_register_write): Likewise.
84
85 2014-02-04 Ulrich Weigand  <uweigand@de.ibm.com>
86
87 * ppc-sysv-tdep.c (ppc64_sysv_abi_push_freg): Use correct
88 offset on little-endian when passing _Decimal32.
89 (ppc64_sysv_abi_return_value_base): Likewise for return values.
90
91 2014-02-04 Ulrich Weigand  <uweigand@de.ibm.com>
92
93 * rs6000-tdep.c (efpr_pseudo_register_read): Use correct offset
94 of the overlapped FP register within the VSX register on little-
95 endian platforms.
96 (efpr_pseudo_register_write): Likewise.
97
98 2014-02-04 Ulrich Weigand  <uweigand@de.ibm.com>
99
100 * ppc-sysv-tdep.c (ppc64_sysv_abi_push_val): Use correct
101 offset on little-endian when passing small structures.
102
103 2014-02-04 Ulrich Weigand  <uweigand@de.ibm.com>
104
105 * ppc-sysv-tdep.c (get_decimal_float_return_value): Update comment.
106 (struct ppc64_sysv_argpos): New data structure.
107 (ppc64_sysv_abi_push_float): Remove.
108 (ppc64_sysv_abi_push_val): New function.
109 (ppc64_sysv_abi_push_integer): Likewise.
110 (ppc64_sysv_abi_push_freg): Likewise.
111 (ppc64_sysv_abi_push_vreg): Likewise.
112 (ppc64_sysv_abi_push_param): Likewise.
113 (ppc64_sysv_abi_push_dummy_call): Refactor to use those new routines.
114 (ppc64_sysv_abi_return_value_base): New function.
115 (ppc64_sysv_abi_return_value): Refactor to use it.
116
117 2014-02-04 Ulrich Weigand  <uweigand@de.ibm.com>
118
119 * NEWS: Document new target powerpc64le-*-linux*.
120
121 2014-02-04 Mark Kettenis <kettenis@gnu.org>
122
123 * sparc64obsd-tdep.c (sparc64obsd_gregset): New variable.
124 (sparc64obsd_supply_gregset): Handle registers sets used in ELF
125 core dumps.
126 (sparc64obsd_init_abi): Adjust minimum size of the general purpose
127 register set used in ELF core dumps. Add floating-point register set.
128
129 2014-02-03 Kevin Buettner <kevinb@redhat.com>
130
131 * mn10300-tdep.c (mn10300_dwarf2_reg_to_regnum): Rewrite
132 dwarf2_to_gdb[] table using symbolic constants. Adjust
133 penultimate entry from number representing the PC register
134 to symbolic constant representing the MDR register. Add
135 constant for the PC register to the end of the table.
136
137 2014-02-03 Mark Kettenis <kettenis@gnu.org>
138
139 * bsd-kvm.c: Include <sys/param.h>
140
141 2014-02-03 Mark Kettenis <kettenis@gnu.org>
142
143 * sparc64nbsd-nat.c (sparc64nbsd_supply_fpregset): Fix prototype.
144
145 2014-01-31 Joel Brobecker <brobecker@adacore.com>
146
147 * ada-lang.h (clear_ada_sym_cache): Delete.
148
149 2014-01-30 Ulrich Weigand  <uweigand@de.ibm.com>
150
151 * auxv.c (fprint_target_auxv): Handle AT_HWCAP2.
152
153 2014-01-29 Jose E. Marchesi <jose.marchesi@oracle.com>
154
155 * sparc64-linux-tdep.c (sparc64_linux_step_trap): Get PC from
156 the sigreturn register save area only if the syscall is
157 sigreturn.
158
159 2014-01-29 Joel Brobecker <brobecker@adacore.com>
160
161 * valops.c (value_slice): Minor reformatting.
162
163 2014-01-28 Ulrich Weigand  <uweigand@de.ibm.com>
164
165 * ppc64-tdep.c (ppc64_standard_linkage7): Fix typo.
166
167 2014-01-28 Joel Brobecker <brobecker@adacore.com>
168
169 * ada-lang.c (maint_set_ada_cmdlist, maint_show_ada_cmdlist):
170 New static globals.
171 (maint_set_ada_cmd, maint_show_ada_cmd): New functions.
172 (ada_ignore_descriptive_types_p): New static global.
173 (find_parallel_type_by_descriptive_type): Return immediately
174 if ada_ignore_descriptive_types_p is set.
175 (_initialize_ada_language): Register new commands "maintenance
176 set ada", "maintenance show ada", "maintenance set ada
177 ignore-descriptive-types" and "maintenance show ada
178 ignore-descriptive-types".
179 * NEWS: Add entry for new "maint ada set/show
180 ignore-descriptive-types" commands.
181
182 2014-01-27 Markus Metzger <markus.t.metzger@intel.com>
183
184 * record-btrace.c (record_btrace_close): Call btrace_teardown
185 for all threads.
186
187 2014-01-27 Joel Brobecker <brobecker@adacore.com>
188
189 * ada-lang.c: Remove "#ifdef UI_OUT" condition for including
190 "ui-out.h".
191
192 2014-01-27 Joel Brobecker <brobecker@adacore.com>
193
194 * ada-typeprint (type_is_full_subrange_of_target_type):
195 New function.
196 (print_range): Add parameter bounds_prefered_p. If not set,
197 try printing range types using the name of their base type.
198 (print_range_type): Add parameter bounds_prefered_p.
199 Use it in call to print_range.
200 (print_array_type, ada_print_type): Update calls to print_range
201 and print_range_type.
202
203 2014-01-27 Joel Brobecker <brobecker@adacore.com>
204
205 * ada-typeprint.c (print_array_type, print_choices, print_range)
206 (print_range_bound, print_dynamic_range_bound, print_range_type):
207 Remove declaration.
208
209 2014-01-27 Joel Brobecker <brobecker@adacore.com>
210
211 * ada-typeprint.c (print_range): Add missing empty line
212 after local declaration.
213
214 2014-01-27 Joel Brobecker <brobecker@adacore.com>
215
216 * ada-valprint.c (print_optional_low_bound): Get index_type's
217 target type for as long as it is a TYPE_CODE_RANGE.
218
219 2014-01-27 Joel Brobecker <brobecker@adacore.com>
220
221 * procfs.c (procfs_make_note_section): Remove assertion and
222 associated comment.
223
224 2014-01-24 Yao Qi <yao@codesourcery.com>
225
226 * remote.c (remote_read_bytes): Change type of len to ULONGEST.
227 * corelow.c (get_core_siginfo): Likewise.
228
229 2014-01-24 Yao Qi <yao@codesourcery.com>
230
231 * remote.c (remote_write_bytes_aux): Change type of 'len' to
232 ULONGEST. Don't check 'len' is negative.
233 (remote_write_bytes): Change type of 'len' to ULONGEST.
234
235 2014-01-23 Tom Tromey <tromey@redhat.com>
236
237 PR python/16485:
238 * python/lib/gdb/FrameDecorator.py: (FrameVars.fetch_frame_args):
239 Handle exception from frame.block.
240 (FrameVars.fetch_frame_locals): Likewise.
241
242 2014-01-23 Tom Tromey <tromey@redhat.com>
243
244 PR python/16487:
245 * python/py-framefilter.c (py_print_frame): Don't call Py_DECREF
246 on a NULL pointer. Move "goto error" to correct place.
247
248 2014-01-23 Tom Tromey <tromey@redhat.com>
249
250 PR python/16491:
251 * python/py-framefilter.c (apply_frame_filter): Call
252 ensure_python_env after computing gdbarch.
253
254 2014-01-23 Yao Qi <yao@codesourcery.com>
255
256 * target.c (raw_memory_xfer_partial): Change argument type
257 from void * to gdb_byte *.
258 (memory_xfer_partial_1, memory_xfer_partial): Likewise.
259
260 2014-01-22 Doug Evans <dje@google.com>
261
262 New gdbserver option --debug-format=timestamp.
263 * NEWS: Mention it.
264
265 2014-01-22 Andreas Arnez <arnez@vnet.linux.ibm.com>
266
267 * syscalls/s390x-linux.xml: New file.
268 * syscalls/s390-linux.xml: New file.
269 * s390-linux-tdep.c (XML_SYSCALL_FILENAME_S390): New macro.
270 (XML_SYSCALL_FILENAME_S390X): Likewise.
271 (op_svc): New enum value for SVC opcode.
272 (s390_sigtramp_frame_sniffer): Replace literal by 'op_svc'.
273 (s390_linux_get_syscall_number): New function.
274 (s390_gdbarch_init): Register '*get_syscall_number' and the
275 syscall xml file name.
276 * data-directory/Makefile.in (SYSCALLS_FILES): Add
277 "s390-linux.xml" and "s390x-linux.xml".
278 * NEWS: Announce new feature.
279
280 2014-01-22 Baruch Siach <baruch@tkos.co.il>
281
282 * xtensa-tdep.h (xtensa_elf_greg_t): Change type to uint32_t.
283
284 2014-01-22 Pedro Alves <palves@redhat.com>
285
286 * xtensa-config.c: Include defs.h.
287
288 2014-01-22 Joel Brobecker <brobecker@adacore.com>
289
290 * common/common-utils.h: Add "ARI:" comment beside __func__
291 reference.
292
293 2014-01-22 Joel Brobecker <brobecker@adacore.com>
294
295 * common/common-utils.h (FUNCTION_NAME): Expand the macro's
296 documentation a bit.
297
298 2014-01-21 Roland McGrath <mcgrathr@google.com>
299
300 * configure.ac: Call AM_PROG_INSTALL_STRIP.
301 * configure: Regenerate.
302 * aclocal.m4: Regenerate.
303 * Makefile.in (install_sh, INSTALL_STRIP_PROGRAM, STRIP):
304 New substituted variables.
305 (install-strip): New target.
306 (INSTALL_SCRIPT): New substituted variable.
307 (FLAGS_TO_PASS): Add it.
308 (install-only): Use $(INSTALL_SCRIPT) rather than
309 $(INSTALL_PROGRAM) for gcore.
310
311 2014-01-20 Tom Tromey <tromey@redhat.com>
312
313 * cli/cli-decode.h (struct cmd_list_element): Move all bitfields
314 together.
315
316 2014-01-20 Tom Tromey <tromey@redhat.com>
317
318 * cli/cli-decode.c (add_cmd, deprecate_cmd, add_alias_cmd)
319 (add_setshow_cmd_full, delete_cmd, lookup_cmd_1)
320 (deprecated_cmd_warning, complete_on_cmdlist): Update.
321 * cli/cli-decode.h (CMD_DEPRECATED, DEPRECATED_WARN_USER)
322 (MALLOCED_REPLACEMENT, DOC_ALLOCATED): Remove.
323 (struct cmd_list_element) <flags>: Remove.
324 <cmd_deprecated, deprecated_warn_user, malloced_replacement,
325 doc_allocated>: New fields.
326 <hook_in, allow_unknown, abbrev_flag, type, var_type>: Now
327 bitfields.
328 * maint.c (maintenance_do_deprecate): Update.
329 * top.c (execute_command): Update.
330
331 2014-01-20 Baruch Siach <baruch@tkos.co.il>
332
333 * xtensa-linux-nat.c: Include asm/ptrace.h.
334
335 2014-01-17 Iain Buclaw <ibuclaw@gdcproject.org>
336
337 * Makefile.in (SFILES): Add d-support.c.
338 (COMMON_OBS): Add d-support.o.
339 * d-lang.h (d_parse_symbol): Add comment, now defined in
340 d-support.c.
341 * d-lang.c (parse_call_convention)
342 (parse_attributes, parse_function_types)
343 (parse_function_args, parse_type, parse_identifier)
344 (call_convention_p, d_parse_symbol): Move functions to ...
345 * d-support.c: ... New file.
346
347 2014-01-17 Iain Buclaw <ibuclaw@gdcproject.org>
348
349 * d-lang.h (d_parse_symbol): Add declaration.
350 * d-lang.c (extract_identifiers)
351 (extract_type_info): Remove functions.
352 (parse_call_convention, parse_attributes)
353 (parse_function_types, parse_function_args)
354 (parse_type, parse_identifier, call_convention_p)
355 (d_parse_symbol): New functions.
356 (d_demangle): Use d_parse_symbol to demangle D symbols.
357
358 2014-01-17 Iain Buclaw <ibuclaw@gdcproject.org>
359
360 * d-lang.h (struct builtin_d_type): New data type.
361 (builtin_d_type): Add declaration.
362 * d-lang.c (d_language_arch_info, build_d_types)
363 (builtin_d_type): New functions.
364 (enum d_primitive_types): New data type.
365 (d_language_defn): Change c_language_arch_info to
366 d_language_arch_info.
367 (d_type_data): New static variable.
368 (_initialize_d_language): Initialize d_type_data.
369
370 2014-01-17 Iain Buclaw <ibuclaw@gdcproject.org>
371
372 * d-lang.h (d_main_name): Add declaration.
373 * d-lang.c (d_main_name): New function.
374 * symtab.c (find_main_name): Add call to d_main_name.
375
376 2014-01-17 Iain Buclaw <ibuclaw@gdcproject.org>
377
378 * d-lang.c (d_language_defn): Change macro_expansion_c to
379 macro_expansion_no.
380
381 2014-01-17 Iain Buclaw <ibuclaw@gdcproject.org>
382
383 * MAINTAINERS: Add myself as a write-after-approval maintainer.
384
385 2014-01-17 Sergio Durigan Junior <sergiodj@redhat.com>
386
387 * breakpoint.c (insert_bp_location): Add "volatile" keyword to "struct
388 gdb_exception" declaration.
389 * remote.c (getpkt_or_notif_sane): Likewise.
390
391 2014-01-17 Doug Evans <dje@google.com>
392
393 * common/gdb_vecs.c (delim_string_to_char_ptr_vec_append): New
394 function, contents of dirnames_to_char_ptr_vec_append moved here.
395 (delim_string_to_char_ptr_vec): New function.
396 (dirnames_to_char_ptr_vec_append): Rewrite.
397 * common/gdb_vecs.h (delim_string_to_char_ptr_vec): Declare.
398
399 2014-01-17 Doug Evans <dje@google.com>
400
401 * common/common-utils.h (FUNCTION_NAME): Renamed from ASSERT_FUNCTION,
402 and moved here ...
403 * common/gdb_assert.h (ASSERT_FUNCTION): ... from here.
404 #include "common-utils.h".
405 (gdb_assert, gdb_assert_fail, gdb_assert_not_reached): Update.
406 * common/vec.h (VEC_ASSERT_PASS): Update.
407 * darwin-nat.h: Replace #include of gdb_assert.h with common-utils.h.
408 (MACH_CHECK_ERROR): Update.
409
410 2014-01-17 Simon Marchi <simon.marchi@ericsson.com>
411
412 * gdbarch.sh (gdbarch_address_class_name_to_type_flags): Add
413 comments.
414 * gdbarch.h: Regenerate.
415
416 2014-01-16 Tom Tromey <tromey@redhat.com>
417
418 * value.c (struct value) <regnum>: Move earlier.
419
420 2014-01-16 Tom Tromey <tromey@redhat.com>
421
422 * remote.c (extended_remote_create_inferior): Rename from
423 extended_remote_create_inferior_1. Add "ops" argument. Remove
424 old implementation.
425
426 2014-01-16 Pedro Alves <palves@redhat.com>
427
428 * s390-linux-tdep.c (s390_frame_unwind_cache): Swallow
429 NOT_AVAILABLE_ERROR errors while parsing the prologue or reading
430 the backchain.
431
432 2014-01-16 Doug Evans <dje@google.com>
433
434 * dwarf2read.c (open_and_init_dwp_file): Fix typo in comment.
435
436 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
437
438 * btrace.h (btrace_thread_flag): New.
439 (struct btrace_thread_info) <flags>: New.
440 * record-btrace.c (record_btrace_resume_thread)
441 (record_btrace_find_thread_to_move, btrace_step_no_history)
442 (btrace_step_stopped, record_btrace_start_replaying)
443 (record_btrace_step_thread, record_btrace_decr_pc_after_break)
444 (record_btrace_find_resume_thread): New.
445 (record_btrace_resume, record_btrace_wait): Extend.
446 (record_btrace_can_execute_reverse): New.
447 (record_btrace_open): Fail in non-stop mode.
448 (record_btrace_set_replay): Split into this, ...
449 (record_btrace_stop_replaying): ... this, ...
450 (record_btrace_clear_histories): ... and this.
451 (init_record_btrace_ops): Init to_can_execute_reverse.
452 * NEWS: Announce it.
453
454 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
455
456 * target.h (struct target_ops) <to_decr_pc_after_break>: New.
457 (forward_target_decr_pc_after_break)
458 (target_decr_pc_after_break): New.
459 * target.c (forward_target_decr_pc_after_break)
460 (target_decr_pc_after_break): New.
461 * aix-thread.c (aix_thread_wait): Call target_decr_pc_after_break
462 instead of gdbarch_decr_pc_after_break.
463 * darwin-nat.c (cancel_breakpoint): Call target_decr_pc_after_break
464 instead of gdbarch_decr_pc_after_break.
465 * infrun.c (adjust_pc_after_break): Call target_decr_pc_after_break
466 instead of gdbarch_decr_pc_after_break.
467 * linux-nat.c (cancel_breakpoint): Call target_decr_pc_after_break
468 instead of gdbarch_decr_pc_after_break.
469 * linux-thread-db.c (check_event): Call target_decr_pc_after_break
470 instead of gdbarch_decr_pc_after_break.
471 * record-full.c (record_full_wait_1): Call target_decr_pc_after_break
472 instead of gdbarch_decr_pc_after_break.
473
474 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
475
476 * btrace.c: Include regcache.h.
477 (btrace_add_pc): New.
478 (btrace_enable): Call btrace_add_pc.
479 (btrace_is_empty): New.
480 * btrace.h (btrace_is_empty): New.
481 * record-btrace.c (require_btrace, record_btrace_info): Call
482 btrace_is_empty.
483
484 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
485
486 * common/linux-btrace.c (perf_event_read_bts, linux_read_btrace):
487 Support delta reads.
488 (linux_disable_btrace): Change return type.
489 * common/linux-btrace.h (linux_read_btrace): Change parameters
490 and return type to allow error reporting. Update users.
491 (linux_disable_btrace): Change return type. Update users.
492 * common/btrace-common.h (btrace_read_type) <BTRACE_READ_DELTA>:
493 New.
494 (btrace_error): New.
495 (btrace_block) <begin>: Comment on BEGIN == 0.
496 * btrace.c (btrace_compute_ftrace): Start from the end of
497 the current trace.
498 (btrace_stitch_trace, btrace_clear_history): New.
499 (btrace_fetch): Read delta trace, return if replaying.
500 (btrace_clear): Move clear history code to btrace_clear_history.
501 (parse_xml_btrace): Throw an error if parsing failed.
502 * target.h (struct target_ops) <to_read_btrace>: Change parameters
503 and return type to allow error reporting.
504 (target_read_btrace): Change parameters and return type to allow
505 error reporting.
506 * target.c (target_read_btrace): Update.
507 * remote.c (remote_read_btrace): Support delta reads. Pass
508 errors on.
509 * NEWS: Announce it.
510
511 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
512
513 * record.h (record_btrace_frame_unwind)
514 (record_btrace_tailcall_frame_unwind): New declarations.
515 * dwarf2-frame: Include record.h
516 (dwarf2_frame_cfa): Throw an error for btrace frames.
517 * record-btrace.c: Include hashtab.h.
518 (btrace_get_bfun_name): New.
519 (btrace_call_history): Call btrace_get_bfun_name.
520 (struct btrace_frame_cache): New.
521 (bfcache): New.
522 (bfcache_hash, bfcache_eq, bfcache_new): New.
523 (btrace_get_frame_function): New.
524 (record_btrace_frame_unwind_stop_reason): Allow unwinding.
525 (record_btrace_frame_this_id): Compute own id.
526 (record_btrace_frame_prev_register): Provide PC, throw_error
527 for all other registers.
528 (record_btrace_frame_sniffer): Detect btrace frames.
529 (record_btrace_tailcall_frame_sniffer): New.
530 (record_btrace_frame_dealloc_cache): New.
531 (record_btrace_frame_unwind): Add new functions.
532 (record_btrace_tailcall_frame_unwind): New.
533 (_initialize_record_btrace): Allocate cache.
534 * btrace.c (btrace_clear): Call reinit_frame_cache.
535 * NEWS: Announce it.
536
537 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
538
539 * record-btrace.c (record_btrace_set_replay)
540 (record_btrace_goto_begin, record_btrace_goto_end)
541 (record_btrace_goto): New.
542 (init_record_btrace_ops): Initialize them.
543 * NEWS: Announce it.
544
545 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
546
547 * record-btrace.c (record_btrace_find_new_threads)
548 (record_btrace_thread_alive): New.
549 (init_record_btrace_ops): Initialize to_find_new_threads and
550 to_thread_alive.
551
552 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
553
554 * record-btrace.c (record_btrace_resume): New.
555 (record_btrace_wait): New.
556 (init_record_btrace_ops): Initialize to_wait and to_resume.
557
558 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
559
560 * record-btrace.c (record_btrace_xfer_partial)
561 (record_btrace_insert_breakpoint, record_btrace_remove_breakpoint)
562 (record_btrace_allow_memory_access): New.
563 (init_record_btrace_ops): Initialize new methods.
564 * target.c (raw_memory_xfer_partial): Bail out if target reports
565 that this memory is not available.
566
567 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
568
569 * target.h (target_ops) <to_insert_breakpoint>
570 <to_remove_breakpoint>: Add target_ops parameter.
571 (forward_target_insert_breakpoint): New.
572 (forward_target_remove_breakpoint): New.
573 (memory_remove_breakpoint, memory_insert_breakpoint):
574 Add target_ops parameter.
575 * target.c (target_insert_breakpoint): Split into this and ...
576 (forward_target_insert_breakpoint): ... this.
577 (target_remove_breakpoint): Split into this and ...
578 (forward_target_remove_breakpoint): ... this.
579 (debug_to_insert_breakpoint): Add target_ops parameter.
580 Call forward_target_insert_breakpoint.
581 (debug_to_remove_breakpoint): Add target_ops parameter.
582 Call forward_target_remove_breakpoint.
583 (update_current_target): Do not inherit or default to_insert_breakpoint
584 and to_remove_breakpoint.
585 * corelow.c (ignore): Add target_ops parameter.
586 * exec.c (ignore): Add target_ops parameter.
587 * mem-break.c (memory_insert_breakpoint, memory_remove_breakpoint):
588 Add target_ops parameter.
589 * monitor.c (monitor_insert_breakpoint, monitor_remove_breakpoint):
590 Add target_ops parameter.
591 * nto-procfs.c (procfs_insert_breakpoint, procfs_remove_breakpoint):
592 Add target_ops parameter.
593 * record-full.c (record_full_beneath_to_insert_breakpoint)
594 (record_full_beneath_to_remove_breakpoint, tmp_to_insert_breakpoint)
595 (tmp_to_remove_breakpoint, record_full_insert_breakpoint)
596 (record_full_remove_breakpoint, record_full_core_insert_breakpoint)
597 (record_full_core_remove_breakpoint): Add target_ops parameter.
598 Update users.
599 (record_full_beneath_to_insert_breakpoint_ops)
600 (record_full_beneath_to_remove_breakpoint_ops)
601 (tmp_to_insert_breakpoint_ops, tmp_to_remove_breakpoint_ops): New.
602 (record_full_open): Initialize tmp_to_insert_breakpoint_ops,
603 tmp_to_remove_breakpoint_ops,
604 record_full_beneath_to_insert_breakpoint_ops, and
605 record_full_beneath_to_remove_breakpoint_ops.
606 * remote-m32r-sdi.c (m32r_insert_breakpoint)
607 (m32r_remove_breakpoint): Add target_ops parameter.
608 * remote-mips.c (mips_insert_breakpoint, mips_remove_breakpoint):
609 Add target_ops parameter.
610 * remote.c (remote_insert_breakpoint, remote_remove_breakpoint):
611 Add target_ops parameter.
612
613 2014-01-16 Jan Kratochvil <jan.kratochvil@redhat.com>
614 Markus Metzger <markus.t.metzger@intel.com>
615
616 * record-btrace.c: Include frame-unwind.h.
617 (record_btrace_frame_unwind_stop_reason)
618 (record_btrace_frame_this_id, record_btrace_frame_prev_register)
619 (record_btrace_frame_sniffer, record_btrace_frame_unwind):
620 New.
621 (init_record_btrace_ops): Install it.
622
623 2014-01-16 Jan Kratochvil <jan.kratochvil@redhat.com>
624
625 * frame.c (get_frame_unwind_stop_reason): Unconditionally call
626 get_prev_frame_1.
627
628 2014-01-16 Jan Kratochvil <jan.kratochvil@redhat.com>
629
630 * dwarf2-frame.c (dwarf2_frame_cfa): Move UNWIND_UNAVAILABLE check
631 earlier.
632
633 2014-01-16 Jan Kratochvil <jan.kratochvil@redhat.com>
634
635 * frame-unwind.c: Include target.h.
636 (frame_unwind_try_unwinder): New function with code from ...
637 (frame_unwind_find_by_frame): ... here. New variable
638 unwinder_from_target, call also target_get_unwinder)
639 (target_get_tailcall_unwinder, and frame_unwind_try_unwinder for it.
640 * target.c (target_get_unwinder, target_get_tailcall_unwinder): New.
641 * target.h (struct target_ops): New fields to_get_unwinder and
642 to_get_tailcall_unwinder.
643 (target_get_unwinder, target_get_tailcall_unwinder): New declarations.
644
645 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
646
647 * record-btrace.c (record_btrace_fetch_registers)
648 (record_btrace_store_registers)
649 (record_btrace_to_prepare_to_store): New.
650 (init_record_btrace_ops): Add the above.
651
652 2014-01-16 Tom Tromey <tromey@redhat.com>
653
654 * windows-nat.c (windows_prepare_to_store): Add 'self' argument.
655 * target.h (struct target_ops) <to_prepare_to_store>: Add
656 argument.
657 (target_prepare_to_store): Add argument.
658 * target.c (debug_to_prepare_to_store): Add argument.
659 (update_current_target): Update.
660 * remote.c (remote_prepare_to_store): Add 'self' argument.
661 * remote-sim.c (gdbsim_prepare_to_store): Add 'self' argument.
662 * remote-mips.c (mips_prepare_to_store): Add 'self' argument.
663 * remote-m32r-sdi.c (m32r_prepare_to_store): Add 'self' argument.
664 * record-full.c (record_full_core_prepare_to_store): Add 'self'
665 argument.
666 * ravenscar-thread.c (ravenscar_prepare_to_store): Add argument.
667 * nto-procfs.c (procfs_prepare_to_store): Add 'self' argument.
668 * monitor.c (monitor_prepare_to_store): Add 'self' argument.
669 * inf-child.c (inf_child_prepare_to_store): Add 'self' argument.
670 * go32-nat.c (go32_prepare_to_store): Add 'self' argument.
671
672 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
673
674 * btrace.h (replay) <replay>: New.
675 (btrace_is_replaying): New.
676 * btrace.c (btrace_clear): Free replay iterator.
677 (btrace_is_replaying): New.
678 * record-btrace.c (record_btrace_is_replaying): New.
679 (record_btrace_info): Print insn number if replaying.
680 (record_btrace_insn_history): Start at replay position.
681 (record_btrace_call_history): Start at replay position.
682 (init_record_btrace_ops): Init to_record_is_replaying.
683
684 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
685
686 * record-btrace.c (record_btrace_insn_history_range): Include
687 end.
688 (record_btrace_insn_history_from): Adjust range.
689 (record_btrace_call_history_range): Include
690 end.
691 (record_btrace_call_history_from): Adjust range.
692 * NEWS: Announce changes.
693
694 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
695
696 * record.h (enum record_print_flag)
697 <record_print_indent_calls>: New.
698 * record.c (get_call_history_modifiers): Recognize /c modifier.
699 (_initialize_record): Document /c modifier.
700 * record-btrace.c (btrace_call_history): Add btinfo parameter.
701 Reorder fields. Optionally indent the function name. Update
702 all users.
703 * NEWS: Announce changes.
704
705 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
706
707 * common/linux-btrace.c (linux_enable_btrace): Enlarge buffer.
708
709 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
710
711 * btrace.c (ftrace_new_function): Start counting at one.
712 * record-btrace.c (record_btrace_info): Adjust number of calls
713 and insns.
714 * NEWS: Announce it.
715
716 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
717
718 * record-btrace.c (btrace_call_history_insn_range): Print
719 insn range as [begin, end].
720
721 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
722
723 * btrace.h (struct btrace_func_link): New.
724 (enum btrace_function_flag): New.
725 (struct btrace_inst): Rename to ...
726 (struct btrace_insn): ...this. Update all users.
727 (struct btrace_func) <ibegin, iend>: Remove.
728 (struct btrace_func_link): New.
729 (struct btrace_func): Rename to ...
730 (struct btrace_function): ...this. Update all users.
731 (struct btrace_function) <segment, flow, up, insn, insn_offset)
732 (number, level, flags>: New.
733 (struct btrace_insn_iterator): Rename to ...
734 (struct btrace_insn_history): ...this.
735 Update all users.
736 (struct btrace_insn_iterator, btrace_call_iterator): New.
737 (struct btrace_target_info) <btrace, itrace, ftrace>: Remove.
738 (struct btrace_target_info) <begin, end, level>
739 <insn_history, call_history>: New.
740 (btrace_insn_get, btrace_insn_number, btrace_insn_begin)
741 (btrace_insn_end, btrace_insn_prev, btrace_insn_next)
742 (btrace_insn_cmp, btrace_find_insn_by_number, btrace_call_get)
743 (btrace_call_number, btrace_call_begin, btrace_call_end)
744 (btrace_call_prev, btrace_call_next, btrace_call_cmp)
745 (btrace_find_function_by_number, btrace_set_insn_history)
746 (btrace_set_call_history): New.
747 * btrace.c (btrace_init_insn_iterator)
748 (btrace_init_func_iterator, compute_itrace): Remove.
749 (ftrace_print_function_name, ftrace_print_filename)
750 (ftrace_skip_file): Change
751 parameter to const.
752 (ftrace_init_func): Remove.
753 (ftrace_debug): Use new btrace_function fields.
754 (ftrace_function_switched): Also consider gaining and
755 losing symbol information).
756 (ftrace_print_insn_addr, ftrace_new_call, ftrace_new_return)
757 (ftrace_new_switch, ftrace_find_caller, ftrace_new_function)
758 (ftrace_update_caller, ftrace_fixup_caller, ftrace_new_tailcall):
759 New.
760 (ftrace_new_function): Move. Remove debug print.
761 (ftrace_update_lines, ftrace_update_insns): New.
762 (ftrace_update_function): Check for call, ret, and jump.
763 (compute_ftrace): Renamed to ...
764 (btrace_compute_ftrace): ...this. Rewritten to compute call
765 stack.
766 (btrace_fetch, btrace_clear): Updated.
767 (btrace_insn_get, btrace_insn_number, btrace_insn_begin)
768 (btrace_insn_end, btrace_insn_prev, btrace_insn_next)
769 (btrace_insn_cmp, btrace_find_insn_by_number, btrace_call_get)
770 (btrace_call_number, btrace_call_begin, btrace_call_end)
771 (btrace_call_prev, btrace_call_next, btrace_call_cmp)
772 (btrace_find_function_by_number, btrace_set_insn_history)
773 (btrace_set_call_history): New.
774 * record-btrace.c (require_btrace): Use new btrace thread
775 info fields.
776 (record_btrace_info, btrace_insn_history)
777 (record_btrace_insn_history, record_btrace_insn_history_range):
778 Use new btrace thread info fields and new iterator.
779 (btrace_func_history_src_line): Rename to ...
780 (btrace_call_history_src_line): ...this. Use new btrace
781 thread info fields.
782 (btrace_func_history): Rename to ...
783 (btrace_call_history): ...this. Use new btrace thread info
784 fields and new iterator.
785 (record_btrace_call_history, record_btrace_call_history_range):
786 Use new btrace thread info fields and new iterator.
787
788 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
789
790 * frame.h (frame_id_build_unavailable_stack_special): New.
791 * frame.c (frame_id_build_unavailable_stack_special): New.
792
793 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
794
795 * amd64-tdep.c (amd64_classify_insn_at, amd64_insn_is_call)
796 (amd64_insn_is_ret, amd64_insn_is_jump, amd64_jmp_p): New.
797 (amd64_init_abi): Add insn_is_call, insn_is_ret, and insn_is_jump
798 to gdbarch.
799 * i386-tdep.c (i386_insn_is_call, i386_insn_is_ret)
800 (i386_insn_is_jump, i386_jmp_p): New.
801 (i386_gdbarch_init): Add insn_is_call, insn_is_ret, and
802 insn_is_jump to gdbarch.
803 * gdbarch.sh (insn_is_call, insn_is_ret, insn_is_jump): New.
804 * gdbarch.h: Regenerated.
805 * gdbarch.c: Regenerated.
806 * arch-utils.h (default_insn_is_call, default_insn_is_ret)
807 (default_insn_is_jump): New.
808 * arch-utils.c (default_insn_is_call, default_insn_is_ret)
809 (default_insn_is_jump): New.
810
811 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
812
813 * common/btrace-common.h (btrace_read_type) <btrace_read_all>:
814 Change to ...
815 (btrace_read_type) <BTRACE_READ_ALL>: ... this. Update users.
816 (btrace_read_type) <btrace_read_new>: Change to ...
817 (btrace_read_type) <BTRACE_READ_NEW>: ... this. Update users.
818
819 2014-01-16 Markus Metzger <markus.t.metzger@intel.com>
820
821 * common/linux-btrace.c (linux_read_btrace): Free trace from
822 previous iteration.
823
824 2014-01-15 Doug Evans <dje@google.com>
825
826 * dwarf2read.c (open_and_init_dwp_file): Use pulongest to print
827 uint32_t.
828
829 2014-01-15 Tom Tromey <tromey@redhat.com>
830
831 * dbxread.c (process_one_symbol): Use set_objfile_main_name.
832 * dwarf2read.c (read_partial_die): Use set_objfile_main_name.
833 * objfiles.c (get_objfile_bfd_data): Initialize language_of_main.
834 (set_objfile_main_name): New function.
835 * objfiles.h (struct objfile_per_bfd_storage) <name_of_main,
836 language_of_main>: New fields.
837 (set_objfile_main_name): Declare.
838 * symtab.c (find_main_name): Loop over objfiles to find the main
839 name and language.
840 (set_main_name): Now static.
841 (get_main_info): Add comment.
842 * symtab.h (set_main_name): Don't declare.
843
844 2014-01-15 Tom Tromey <tromey@redhat.com>
845
846 * symtab.c (main_progspace_key): New global.
847 (struct main_info): New.
848 (name_of_main, language_of_main): Remove.
849 (get_main_info, main_info_cleanup): New function.
850 (set_main_name, main_name, main_language): Use get_main_info.
851 (_initialize_symtab): Initialize main_progspace_key.
852
853 2014-01-15 Tom Tromey <tromey@redhat.com>
854
855 * dbxread.c (process_one_symbol): Update.
856 * dwarf2read.c (read_partial_die): Update.
857 * symfile.c (set_initial_language): Call main_language.
858 * symtab.c (language_of_main): Now static.
859 (set_main_name): Add 'lang' parameter.
860 (find_main_name): Update.
861 (main_language): New function.
862 (symtab_observer_executable_changed): Update.
863 * symtab.h (set_main_name): Update.
864 (language_of_main): Remove.
865 (main_language): Declare.
866
867 2014-01-15 Tom Tromey <tromey@redhat.com>
868
869 * symfile.c (init_entry_point_info): Use new "initialized" field.
870 Update.
871 * objfiles.h (struct entry_point) <initialized>: New field.
872 (struct objfile_per_bfd_storage) <ei>: New field, moved from...
873 (struct objfile) <ei>: ...here. Remove.
874 * objfiles.c (entry_point_address_query): Update.
875
876 2014-01-15 Tom Tromey <tromey@redhat.com>
877
878 * objfiles.c (entry_point_address_query): Relocate entry point
879 address.
880 (objfile_relocate1): Do not relocate entry point address.
881 * objfiles.h (struct entry_info) <entry_point>: Update comment.
882 <the_bfd_section_index>: New field.
883 * symfile.c (init_entry_point_info): Find the entry point's
884 section.
885
886 2014-01-15 Tom Tromey <tromey@redhat.com>
887
888 * solib-frv.c (enable_break): Use entry_point_address_query.
889
890 2014-01-15 Omair Javaid <omair.javaid@linaro.org>
891
892 * NEWS: Add note on improved process record-replay on
893 arm*-linux* targets.
894
895 2014-01-15 Omair Javaid <omair.javaid@linaro.org>
896
897 * arm-tdep.c (enum arm_record_result): New enum.
898 (arm_record_unsupported_insn): New function.
899 (arm_record_coproc_data_proc): Removed.
900 (thumb2_record_ld_st_multiple): New function.
901 (thumb2_record_ld_st_dual_ex_tbb): New function.
902 (thumb2_record_data_proc_sreg_mimm): New function.
903 (thumb2_record_ps_dest_generic): New function.
904 (thumb2_record_branch_misc_cntrl): New function.
905 (thumb2_record_str_single_data): New function.
906 (thumb2_record_ld_mem_hints): New function.
907 (thumb2_record_ld_word): New function.
908 (thumb2_record_lmul_lmla_div): New function.
909 (thumb2_record_decode_insn_handler): New function.
910 (decode_insn): Add thumb32 instruction handlers.
911
912 2014-01-15 Omair Javaid <omair.javaid@linaro.org>
913
914 * arm-linux-tdep.c: Include "record-full.h" and "linux-record.h".
915 (struct arm_linux_record_tdep): Declare.
916 (arm_canonicalize_syscall): New function.
917 (arm_all_but_pc_registers_record): New function.
918 (arm_linux_syscall_record): New function.
919 (arm_linux_init_abi): Add syscall recording constructs.
920 * arm-tdep.c (thumb_record_ldm_stm_swi): Update thumb syscall
921 decoding. (arm_record_coproc_data_proc): Update arm syscall
922 decoding.
923 * arm-tdep.h (struct gdbarch_tdep) <arm_swi_record>: Remove.
924 <arm_syscall_record>: New field.
925 * configure.tgt (arm*-*-linux*): Add linux-record.o to
926 gdb_target_obs.
927
928 2014-01-15 Omair Javaid <omair.javaid@linaro.org>
929
930 * arm-tdep.c (thumb_record_misc): Update to use sp as base
931 register for push instruction recording.
932
933 2014-01-15 Omair Javaid <omair.javaid@linaro.org>
934
935 * arm-tdep.c (thumb_record_misc): Update to correct logical
936 error while recording ldm, ldmia and pop instructions.
937
938 2014-01-15 Omair Javaid <omair.javaid@linaro.org>
939
940 * arm-tdep.c (struct arm_mem_r) <addr>: Change type to uint32_t.
941
942 2014-01-15 Pedro Alves <palves@redhat.com>
943
944 * go32-nat.c (go32_open, go32_close, go32_attach, go32_detach)
945 (go32_resume, go32_fetch_registers, store_register)
946 (go32_store_registers, go32_prepare_to_store)
947 (go32_xfer_memory, go32_files_info, go32_kill_inferior)
948 (go32_create_inferior, go32_can_run, go32_terminal_init)
949 (go32_terminal_inferior, go32_terminal_ours): Delete forward
950 declarations.
951
952 2014-01-15 Tom Tromey <tromey@redhat.com>
953
954 * target.h (async_callback_ftype): New typedef.
955 (struct target_ops) <to_async>: Use it.
956
957 2014-01-15 Joel Brobecker <brobecker@adacore.com>
958
959 * python/py-value.c (get_field_type): Remove unnecessary curly
960 braces for single-statement if block.
961
962 2014-01-15 Joel Brobecker <brobecker@adacore.com>
963
964 * python/py-type.c (convert_field): Add missing empty line
965 after declarations.
966
967 2014-01-14 Doug Evans <dje@google.com>
968
969 * symfile.h (expand_symtabs_matching): Renamed from
970 expand_partial_symbol_names. Update prototype.
971 (map_symbol_filenames): Renamed from map_partial_symbol_filenames.
972 * symfile.c (expand_symtabs_matching): Renamed from
973 expand_partial_symbol_names. New args file_matcher, kind.
974 Rename arg fun to symbol_matcher.
975 (map_symbol_filenames): Renamed from map_partial_symbol_filenames.
976 * ada-lang.c (ada_complete_symbol_matcher): Renamed from
977 ada_expand_partial_symbol_name.
978 (ada_make_symbol_completion_list): Update to call
979 expand_symtabs_matching.
980 (ada_add_global_exceptions): Call expand_symtabs_matching.
981 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_files): Update to
982 call map_symbol_filenames.
983 * symtab.c (sources_info): Update to call map_symbol_filenames.
984 (search_symbols): Call expand_symtabs_matching.
985 (symbol_completion_matcher): Renamed from expand_partial_symbol_name.
986 (default_make_symbol_completion_list_break_on): Update to call
987 expand_symtabs_matching.
988 (make_source_files_completion_list): Update to call
989 map_symbol_filenames.
990
991 2014-01-14 Doug Evans <dje@google.com>
992
993 * symfile.h (expand_symtabs_file_matcher_ftype): New typedef.
994 (expand_symtabs_symbol_matcher_ftype): New typedef.
995 (quick_symbol_functions.expand_symtabs_matching): Update to use.
996 expand_symtabs_file_matcher_ftype, expand_symtabs_symbol_matcher_ftype.
997 * symfile.c (expand_partial_symbol_names): Update to use
998 expand_symtabs_symbol_matcher_ftype.
999 * dwarf2read.c (dw2_expand_symtabs_matching): Update to use
1000 expand_symtabs_file_matcher_ftype, expand_symtabs_symbol_matcher_ftype.
1001 Arg name_matcher renamed to symbol_matcher.
1002 * psymtab.c (recursively_search_psymtabs): Update to use
1003 expand_symtabs_symbol_matcher_ftype. Arg name_matcher renamed to
1004 sym_matcher.
1005 (expand_symtabs_matching_via_partial): Update to use
1006 expand_symtabs_file_matcher_ftype, expand_symtabs_symbol_matcher_ftype.
1007 Arg name_matcher renamed to symbol_matcher.
1008
1009 2014-01-14 Doug Evans <dje@google.com>
1010
1011 * psymtab.c (expand_partial_symbol_names): Delete, moved to symfile.c.
1012 (map_partial_symbol_filenames): Ditto.
1013 * psymtab.h (expand_partial_symbol_names): Delete, moved to symfile.h.
1014 (map_partial_symbol_filenames): Ditto.
1015 * symfile.c (expand_partial_symbol_names): Moved here from psymtab.c.
1016 (map_partial_symbol_filenames): Ditto.
1017 * symfile.h (expand_partial_symbol_names): Moved here from psymtab.h.
1018 (map_partial_symbol_filenames): Ditto.
1019 * symtab.c: Delete #include "psymtab.h".
1020
1021 2014-01-14 Pedro Alves <palves@redhat.com>
1022 Tom Tromey <tromey@redhat.com>
1023
1024 * infrun.c (use_displaced_stepping): Use find_record_target
1025 instead of RECORD_IS_USED.
1026 (adjust_pc_after_break): Use record_full_is_used instead of
1027 RECORD_IS_USED.
1028 * record-btrace.c (record_btrace_open): Call record_preopen
1029 instead of checking RECORD_IS_USED.
1030 * record-full.c (record_full_shortname)
1031 (record_full_core_shortname): New globals.
1032 (record_full_is_used): New function.
1033 (find_full_open): Call record_preopen instead of checking
1034 RECORD_IS_USED.
1035 (init_record_full_ops): Set the target's shortname to
1036 record_full_shortname.
1037 (init_record_full_core_ops): Set the target's shortname to
1038 record_full_core_shortname.
1039 * record-full.h (record_full_is_used): Declare.
1040 * record.c (find_record_target): Make extern.
1041 (record_preopen): New function.
1042 * record.h (RECORD_IS_USED): Delete macro.
1043 (find_record_target, record_preopen): Declare functions.
1044
1045 2014-01-14 Yao Qi <yao@codesourcery.com>
1046
1047 * gdbarch.sh (core_xfer_shared_libraries): Change its argument
1048 'len''s type to ULONGEST.
1049 (core_xfer_shared_libraries_aix): Likewise.
1050 * gdbarch.c, gdbarch.h: Regenerated.
1051 * i386-cygwin-tdep.c (windows_core_xfer_shared_libraries):
1052 Change type of 'len' to ULONGEST.
1053 * rs6000-aix-tdep.c (rs6000_aix_ld_info_to_xml): Likewise.
1054 (rs6000_aix_core_xfer_shared_libraries_aix): Likewise.
1055
1056 2014-01-14 Yao Qi <yao@codesourcery.com>
1057
1058 * common/linux-osdata.c (linux_xfer_osdata_processes): Change
1059 type of 'len' to ULONGEST.
1060 (linux_xfer_osdata_processgroups): Likewise.
1061 (linux_xfer_osdata_threads): Likewise.
1062 (linux_xfer_osdata_fds): Likewise.
1063 (linux_xfer_osdata_isockets): Likewise.
1064 (linux_xfer_osdata_shm): Likewise.
1065 (linux_xfer_osdata_sem): Likewise.
1066 (linux_xfer_osdata_msg): Likewise.
1067 (linux_common_xfer_osdata): Likewise.
1068 (struct osdata_type) <getter>: Likewise.
1069 * common/linux-osdata.h (linux_common_xfer_osdata): Update
1070 the declaration.
1071
1072 2014-01-14 Yao Qi <yao@codesourcery.com>
1073
1074 * target.h (target_xfer_partial_ftype): Update.
1075 (struct target_ops) <to_xfer_partial>: Change 'len' type to
1076 ULONGEST.
1077 * aix-thread.c (aix_thread_xfer_partial): Change type of
1078 argument 'len' to ULONGEST.
1079 * auxv.c (procfs_xfer_auxv): Likewise.
1080 (ld_so_xfer_auxv): Likewise.
1081 (memory_xfer_auxv): Likewise.
1082 * bfd-target.c (target_bfd_xfer_partial): Likewise.
1083 * bsd-kvm.c (bsd_kvm_xfer_partial): Likewise.
1084 * bsd-uthread.c (bsd_uthread_xfer_partial): Likewise.
1085 * corelow.c (core_xfer_partial): Likewise.
1086 * ctf.c (ctf_xfer_partial): Likewise.
1087 * darwin-nat.c (darwin_read_write_inferior): Likewise. Use
1088 '%u'.
1089 (darwin_read_dyld_info): Likewise.
1090 (darwin_xfer_partial): Likewise.
1091 * exec.c (section_table_xfer_memory_partial): Likewise.
1092 (exec_xfer_partial): Likewise.
1093 * exec.h (section_table_xfer_memory_partial): Update
1094 declaration.
1095 * gnu-nat.c (gnu_xfer_memory): Likewise. Call pulongest
1096 instead of plongest.
1097 (gnu_xfer_partial): Likewise.
1098 * ia64-hpux-nat.c (ia64_hpux_xfer_memory): Likewise.
1099 (ia64_hpux_xfer_solib_got): Likewise.
1100 (ia64_hpux_xfer_partial): Likewise.
1101 * ia64-linux-nat.c (ia64_linux_xfer_partial):
1102 * inf-ptrace.c (inf_ptrace_xfer_partial):
1103 * inf-ttrace.c (inf_ttrace_xfer_partial):
1104 * linux-nat.c (linux_xfer_siginfo): Likewise.
1105 (linux_nat_xfer_partial): Likewise.
1106 (spu_enumerate_spu_ids, linux_proc_xfer_spu): Likewise.
1107 (linux_nat_xfer_osdata, linux_xfer_partial): Likewise.
1108 * monitor.c (monitor_xfer_memory): Likewise.
1109 (monitor_xfer_partial): Likewise.
1110 * procfs.c (procfs_xfer_partial): Likewise.
1111 * record-full.c (record_full_xfer_partial): Likewise.
1112 (record_full_core_xfer_partial): Likewise.
1113 * remote-sim.c (gdbsim_xfer_memory): Likewise. Call pulongest
1114 instead of plongest.
1115 (gdbsim_xfer_partial): Likewise.
1116 * remote.c (remote_xfer_partial): Likewise.
1117 * rs6000-aix-tdep.c (rs6000_aix_ld_info_to_xml): Likewise.
1118 * rs6000-aix-tdep.h (rs6000_aix_ld_info_to_xml): Update
1119 declaration.
1120 * rs6000-nat.c (rs6000_xfer_partial): Likewise.
1121 (rs6000_xfer_shared_libraries): Likewise.
1122 * sol-thread.c (sol_thread_xfer_partial): Likewise.
1123 * sparc-nat.c (sparc_xfer_wcookie): Likewise.
1124 (sparc_xfer_partial): Likewise.
1125 * spu-linux-nat.c (spu_proc_xfer_spu): Likewise.
1126 (spu_xfer_partial): Likewise.
1127 * spu-multiarch.c (spu_xfer_partial): Likewise.
1128 * target.c (target_read_live_memory): Likewise.
1129 (memory_xfer_live_readonly_partial): Likewise.
1130 (memory_xfer_partial, memory_xfer_partial_1): Likewise.
1131 (target_xfer_partial, default_xfer_partial): Likewise.
1132 (current_xfer_partial): Likewise.
1133 * tracepoint.c (tfile_xfer_partial): Likewise.
1134 * windows-nat.c (windows_xfer_memory): Likewise. Call
1135 pulongest instead of plongest.
1136 (windows_xfer_partial): Likewise.
1137 (windows_xfer_shared_libraries): Likewise.
1138
1139 2014-01-14 Yao Qi <yao@codesourcery.com>
1140
1141 * rs6000-nat.c (rs6000_xfer_shared_libraries): Use
1142 target_xfer_partial_ftype.
1143
1144 2014-01-13 Siva Chandra Reddy <sivachandra@google.com>
1145
1146 PR python/15464
1147 PR python/16113
1148 * valops.c (value_struct_elt_bitpos): New function
1149 * py-type.c (convert_field): Set 'name' attribute of a gdb.Field
1150 object to 'None' if the field name is an empty string ("").
1151 * python/py-value.c (valpy_getitem): Use 'bitpos' and 'type'
1152 attribute to look for a field when 'name' is 'None'.
1153 (get_field_type): New function
1154
1155 2014-01-13 Doug Evans <dje@google.com>
1156
1157 PR symtab/16426
1158 * dwarf2read.c (dwarf2_get_dwz_file): Call gdb_bfd_record_inclusion.
1159 (try_open_dwop_file): Ditto.
1160 * gdb_bfd.c: #include "vec.h".
1161 (bfdp): New typedef.
1162 (struct gdb_bfd_data): New member included_bfds.
1163 (gdb_bfd_unref): Unref all included bfds.
1164 (gdb_bfd_record_inclusion): New function.
1165 * gdb_bfd.h (gdb_bfd_record_inclusion): Declare.
1166
1167 2014-01-13 Tom Tromey <tromey@redhat.com>
1168
1169 * gdbcore.h (deprecated_core_resize_section_table): Remove.
1170
1171 2014-01-13 Tom Tromey <tromey@redhat.com>
1172
1173 * defs.h (use_windows): Remove.
1174 * gdb.c (main): Update.
1175 * main.c (captured_main, gdb_main): Update.
1176 * main.h (struct captured_main_args) <use_windows>: Remove.
1177 * top.c (use_windows): Remove.
1178
1179 2014-01-13 Tom Tromey <tromey@redhat.com>
1180
1181 * defs.h (deprecated_flush_hook): Remove.
1182
1183 2014-01-13 Jan Kratochvil <jan.kratochvil@redhat.com>
1184
1185 PR threads/16216
1186 * linux-thread-db.c (try_thread_db_load): Add parameter
1187 check_auto_load_safe. Move here the file_is_auto_load_safe call.
1188 (try_thread_db_load_from_pdir_1): Move it there from here.
1189 (try_thread_db_load_from_sdir): Update caller.
1190 (try_thread_db_load_from_dir): Move it there from here.
1191
1192 2014-01-13 Patrick Palka <patrick@parcs.ath.cx>
1193
1194 * regformats/regdat.sh: Always rewrite the register file.
1195
1196 2014-01-13 Pedro Alves <palves@redhat.com>
1197
1198 * Makefile.in (CHECK_HEADERS): New variable.
1199 (check-headers:): New rule.
1200
1201 2014-01-13 Tom Tromey <tromey@redhat.com>
1202
1203 * cli/cli-setshow.c (do_set_command): Update.
1204 * defs.h (deprecated_set_hook): Remove.
1205 * top.c (deprecated_set_hook): Remove.
1206
1207 2014-01-13 Pedro Alves <palves@redhat.com>
1208
1209 * tracepoint.c (tfile_fetch_registers): Don't infer the PC from
1210 the tracepoint if the PC is a pseudo-register.
1211
1212 2014-01-13 Tom Tromey <tromey@redhat.com>
1213
1214 * defs.h (XCALLOC): Remove.
1215 * bcache.c (bcache_xmalloc): Use XCNEW, not XCALLOC.
1216 (print_bcache_statistics): Use XCNEWVEC, not XCALLOC.
1217 * dwarf2loc.c (allocate_piece_closure): Likewise.
1218 * elfread.c (elf_symfile_segments): Likewise.
1219 (elf_symfile_segments): Likewise.
1220 * gdbtypes.c (copy_type_recursive): Likewise.
1221 * i386-tdep.c (i386_gdbarch_init): Use XCNEW, not XCALLOC.
1222 * jit.c (jit_frame_sniffer): Use XCNEWVEC, not XCALLOC.
1223 * minsyms.c (prim_record_minimal_symbol_full): Use XCNEW, not
1224 XCALLOC.
1225 * mt-tdep.c (mt_gdbarch_init): Likewise.
1226 * opencl-lang.c (allocate_lval_closure): Use XCNEWVEC, not
1227 XCALLOC.
1228 * psymtab.c (psymbol_compare): Use XCNEW, not XCALLOC.
1229 * regcache.c (regcache_xmalloc_1): Use XCNEWVEC, not XCALLOC.
1230 * registry.c (registry_alloc_data): Likewise.
1231 * rs6000-tdep.c (rs6000_gdbarch_init): Use XCNEW, not XCALLOC.
1232 * s390-linux-tdep.c (s390_gdbarch_init): Likewise.
1233 * serial.c (serial_fdopen_ops): Likewise.
1234 * solib-aix.c (solib_aix_get_section_offsets): Use XCNEWVEC, not
1235 XCALLOC.
1236 * spu-tdep.c (spu_gdbarch_init): Use XCNEW, not XCALLOC.
1237 * symfile.c (default_symfile_segments): Use XCNEW and XCNEWVEC,
1238 not XCALLOC.
1239
1240 2014-01-13 Tom Tromey <tromey@redhat.com>
1241
1242 * defs.h (XMALLOC): Remove.
1243 * avr-tdep.c (avr_gdbarch_init): Use XNEW, not XMALLOC.
1244 * bfin-tdep.c (bfin_gdbarch_init): Likewise.
1245 * cli-out.c (struct ui_out *): Likewise.
1246 * cli/cli-dump.c (add_dump_command): Likewise.
1247 (add_dump_command): Likewise.
1248 * complaints.c (get_complaints): Likewise.
1249 (find_complaint): Likewise.
1250 * dwarf2-frame.c (execute_cfa_program): Likewise.
1251 * dwarf2read.c (abbrev_table_read_table): Likewise.
1252 * gdbarch.sh: Likewise.
1253 * gdbarch.c: Rebuild.
1254 * inf-ttrace.c (inf_ttrace_add_page): Likewise.
1255 * interps.c (interp_new): Likewise.
1256 * lm32-tdep.c (lm32_gdbarch_init): Likewise.
1257 * m32r-tdep.c (m32r_gdbarch_init): Likewise.
1258 * mi/mi-console.c (mi_console_file_new): Likewise.
1259 * mi/mi-interp.c (mi_interpreter_init): Likewise.
1260 * mi/mi-out.c (mi_out_new): Likewise.
1261 * mi/mi-parse.c (mi_parse): Likewise.
1262 * microblaze-tdep.c (microblaze_gdbarch_init): Likewise.
1263 * moxie-tdep.c (moxie_gdbarch_init): Likewise.
1264 * observer.c (xalloc_observer_list_node): Likewise.
1265 * regcache.c (regcache_xmalloc_1): Likewise.
1266 * reggroups.c (reggroup_new): Likewise.
1267 (_initialize_reggroup): Likewise.
1268 * registry.c (register_data_with_cleanup): Likewise.
1269 * remote.c (remote_notif_stop_alloc_reply): Likewise.
1270 * ser-base.c (serial_ttystate): Likewise.
1271 * ser-mingw.c (make_pipe_state): Likewise.
1272 * ser-pipe.c (pipe_open): Likewise.
1273 * serial.c (serial_open): Likewise.
1274 * sh64-tdep.c (sh64_gdbarch_init): Likewise.
1275 * tui/tui-data.c (tui_alloc_generic_win_info): Likewise.
1276 (tui_alloc_win_info): Likewise.
1277 (tui_add_content_elements): Likewise.
1278 * tui/tui-file.c (tui_file_new): Likewise.
1279 * tui/tui-out.c (tui_out_new): Likewise.
1280 * ui-file.c (mem_file_new): Likewise.
1281 * ui-out.c (push_level): Likewise.
1282 (make_cleanup_ui_out_end): Likewise.
1283 (append_header_to_list): Likewise.
1284 (ui_out_new): Likewise.
1285 * user-regs.c (user_reg_add_builtin): Likewise.
1286
1287 2014-01-13 Tom Tromey <tromey@redhat.com>
1288
1289 * defs.h (XZALLOC): Remove.
1290 * ada-lang.c (get_ada_inferior_data): Use XCNEW, not XZALLOC.
1291 * ada-tasks.c (get_ada_tasks_pspace_data): Likewise.
1292 (get_ada_tasks_inferior_data): Likewise.
1293 * auto-load.c (get_auto_load_pspace_data): Likewise.
1294 * auxv.c (get_auxv_inferior_data): Likewise.
1295 * bfd-target.c (target_bfd_reopen): Likewise.
1296 * breakpoint.c (get_catch_syscall_inferior_data): Likewise.
1297 (deprecated_insert_raw_breakpoint): Likewise.
1298 * bsd-uthread.c (bsd_uthread_pid_to_str): Likewise.
1299 * corelow.c (core_open): Likewise.
1300 * darwin-nat.c (darwin_check_new_threads): Likewise.
1301 (darwin_attach_pid): Likewise.
1302 * dummy-frame.c (dummy_frame_push): Likewise.
1303 * dwarf2-frame.c (dwarf2_frame_cache): Likewise.
1304 * dwarf2loc.c (allocate_piece_closure): Likewise.
1305 * elfread.c (elf_symfile_segments): Likewise.
1306 * eval.c (ptrmath_type_p): Likewise.
1307 * exceptions.c (EXCEPTIONS_SIGJMP_BUF): Likewise.
1308 * gdbtypes.c (alloc_type_arch): Likewise.
1309 (alloc_type_instance): Likewise.
1310 * hppa-tdep.c (hppa_gdbarch_init): Likewise.
1311 * inf-child.c (inf_child_can_use_agent): Likewise.
1312 * inflow.c (get_inflow_inferior_data): Likewise.
1313 * infrun.c (save_infcall_suspend_state): Likewise.
1314 * jit.c (jit_reader_load): Likewise.
1315 (get_jit_objfile_data): Likewise.
1316 (get_jit_program_space_data): Likewise.
1317 (jit_object_open_impl): Likewise.
1318 (jit_symtab_open_impl): Likewise.
1319 (jit_block_open_impl): Likewise.
1320 (jit_frame_sniffer): Likewise.
1321 * linux-fork.c (add_fork): Likewise.
1322 * maint.c (make_command_stats_cleanup): Likewise.
1323 * objfiles.c (get_objfile_pspace_data): Likewise.
1324 * opencl-lang.c (struct lval_closure): Likewise.
1325 * osdata.c (osdata_start_osdata): Likewise.
1326 * progspace.c (new_address_space): Likewise.
1327 (add_program_space): Likewise.
1328 * remote-sim.c (get_sim_inferior_data): Likewise.
1329 * sh-tdep.c (sh_gdbarch_init): Likewise.
1330 * skip.c (Ignore): Likewise.
1331 (skip_delete_command): Likewise.
1332 * solib-aix.c (get_solib_aix_inferior_data): Likewise.
1333 (library_list_start_library): Likewise.
1334 (solib_aix_current_sos): Likewise.
1335 * solib-darwin.c (get_darwin_info): Likewise.
1336 (darwin_current_sos): Likewise.
1337 * solib-dsbt.c (get_dsbt_info): Likewise.
1338 * solib-ia64-hpux.c (new_so_list): Likewise.
1339 (ia64_hpux_get_solib_linkage_addr): Likewise.
1340 * solib-spu.c (append_ocl_sos): Likewise.
1341 (spu_current_sos): Likewise.
1342 * solib-svr4.c (get_svr4_info): Likewise.
1343 (svr4_keep_data_in_core): Likewise.
1344 (library_list_start_library): Likewise.
1345 (svr4_default_sos): Likewise.
1346 (svr4_read_so_list): Likewise.
1347 * solib-target.c (library_list_start_library): Likewise.
1348 (solib_target_current_sos): Likewise.
1349 * sparc-tdep.c (sparc32_gdbarch_init): Likewise.
1350 * symfile-debug.c (install_symfile_debug_logging): Likewise.
1351 * symfile.c (default_symfile_segments): Likewise.
1352 * target-descriptions.c (tdesc_data_init): Likewise.
1353 (tdesc_create_reg): Likewise.
1354 (struct tdesc_type *): Likewise.
1355 (tdesc_create_vector): Likewise.
1356 (tdesc_set_struct_size): Likewise.
1357 (struct tdesc_type *): Likewise.
1358 (tdesc_free_feature): Likewise.
1359 (tdesc_create_feature): Likewise.
1360 * windows-nat.c (windows_add_thread): Likewise.
1361 (windows_make_so): Likewise.
1362 * xml-support.c (gdb_xml_body_text): Likewise.
1363 (gdb_xml_create_parser_and_cleanup): Likewise.
1364 (xml_process_xincludes): Likewise.
1365 * xml-syscall.c (allocate_syscalls_info): Likewise.
1366 (syscall_create_syscall_desc): Likewise.
1367
1368 2014-01-12 Sergio Durigan Junior <sergiodj@redhat.com>
1369
1370 * i386-tdep.c (i386_stap_parse_special_token_triplet): New
1371 function, with code from i386_stap_parse_special_token.
1372 (i386_stap_parse_special_token_three_arg_disp): Likewise.
1373 (i386_stap_parse_special_token): Move code to the two functions
1374 above; simplify it.
1375
1376 2014-01-09 Pedro Alves <palves@redhat.com>
1377 Hui Zhu <hui@codesourcery.com>
1378
1379 PR gdb/16101
1380 * breakpoint.c (insert_bp_location): Rename hw_bp_err_string to
1381 bp_err_string. Don't mark the location shlib_disabled if the
1382 error thrown wasn't a generic or memory error. Catch errors
1383 thrown while inserting breakpoints in overlayed code. Output
1384 error message of software breakpoints.
1385 * remote.c (remote_insert_breakpoint): If this breakpoint has
1386 target-side commands but this stub doesn't support Z0 packets,
1387 throw NOT_SUPPORTED_ERROR error.
1388 * exceptions.h (enum errors) <NOT_SUPPORTED_ERROR>: New error.
1389 * target.h (target_insert_breakpoint): Extend comment.
1390 (target_insert_hw_breakpoint): Add comment.
1391
1392 2014-01-08 Pedro Alves <palves@redhat.com>
1393
1394 * remote.c (remote_add_thread): Add threads silently if starting
1395 up.
1396 (remote_notice_new_inferior): If in all-stop, and starting up,
1397 don't call notice_new_inferior.
1398 (get_current_thread): New function, factored out from ...
1399 (add_current_inferior_and_thread): ... this. Adjust.
1400 (remote_start_remote) <all-stop>: Fetch the thread list. If we
1401 found any thread, then select the remote's current thread as GDB's
1402 current thread too.
1403
1404 2014-01-08 Joel Brobecker <brobecker@adacore.com>
1405
1406 * NEWS: Create a new section for the next release branch.
1407 Rename the section of the current branch, now that it has
1408 been cut.
1409
1410 2014-01-08 Joel Brobecker <brobecker@adacore.com>
1411
1412 GDB 7.7 branch created (79301218fa0f074c5656db0ec8972a5ddcf91fb5):
1413 * version.in: Bump version to 7.7.50.DATE-cvs.
1414
1415 2014-01-08 Yao Qi <yao@codesourcery.com>
1416
1417 * spu-linux-nat.c (spu_symbol_file_add_from_memory): Change
1418 type of 'id' to gdb_byte. Cast 'id' to 'const char *'.
1419 (spu_xfer_partial): Cast 'buf' to 'const char *'.
1420
1421 2014-01-08 Yao Qi <yao@codesourcery.com>
1422
1423 * spu-linux-nat.c (spu_symbol_file_add_from_memory): Pass
1424 return value of bfd_get_filename to symbol_file_add_from_bfd.
1425
1426 2014-01-08 Pierre Muller <muller@sourceware.org>
1427
1428 Fix PR16201.
1429 * coff-pe-read.c (struct read_pe_section_data): Add index field.
1430 (add_pe_exported_sym): Use SECTION_DATA->INDEX for call
1431 to prim_record_mininal_symbol_and_info.
1432 (add_pe_forwarded_sym): Use known section number of forwarded symbol
1433 in call to prim_record_minimal_symbol_and_info.
1434 (read_pe_exported_syms): Set index field of section_data.
1435
1436 2014-01-07 Andrew Pinski <apinski@cavium.com>
1437
1438 * features/aarch64-core.xml (cpsr): Change to be 64bit.
1439 * features/aarch64.c: Regenerate.
1440
1441 2014-01-07 Andreas Schwab <schwab@linux-m68k.org>
1442
1443 * target.c (return_null): Define.
1444 (update_current_target): Use it instead of return_zero for
1445 functions that return a pointer.
1446
1447 2014-01-07 Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>
1448
1449 * source.c (add_path): Fix check for duplicated paths in the previously
1450 included paths.
1451
1452 2014-01-07 Honggyu Kim <hong.gyu.kim@lge.com>
1453
1454 * ada-lang.c: Remove duplicated include statements.
1455 * alphabsd-nat.c: Ditto.
1456 * amd64-darwin-tdep.c: Ditto.
1457 * amd64fbsd-nat.c: Ditto.
1458 * auto-load.c: Ditto.
1459 * ax-gdb.c: Ditto.
1460 * breakpoint.c: Ditto.
1461 * dbxread.c: Ditto.
1462 * fork-child.c: Ditto.
1463 * gdb_usleep.c: Ditto.
1464 * i386-darwin-tdep.c: Ditto.
1465 * i386fbsd-nat.c: Ditto.
1466 * infcmd.c: Ditto.
1467 * inferior.c: Ditto.
1468 * jv-lang.c: Ditto.
1469 * linux-nat.c: Ditto.
1470 * linux-tdep.c: Ditto.
1471 * m68kbsd-nat.c: Ditto.
1472 * m68klinux-nat.c: Ditto.
1473 * microblaze-tdep.c: Ditto.
1474 * mips-linux-tdep.c: Ditto.
1475 * mn10300-tdep.c: Ditto.
1476 * nto-tdep.c: Ditto.
1477 * opencl-lang.c: Ditto.
1478 * osdata.c: Ditto.
1479 * printcmd.c: Ditto.
1480 * regcache.c: Ditto.
1481 * remote-m32r-sdi.c: Ditto.
1482 * remote.c: Ditto.
1483 * symfile.c: Ditto.
1484 * symtab.c: Ditto.
1485 * tilegx-linux-nat.c: Ditto.
1486 * tilegx-tdep.c: Ditto.
1487 * tracepoint.c: Ditto.
1488 * valops.c: Ditto.
1489 * vaxbsd-nat.c: Ditto.
1490 * windows-nat.c: Ditto.
1491 * xtensa-tdep.c: Ditto.
1492
1493 2014-01-07 Yao Qi <yao@codesourcery.com>
1494
1495 * spu-linux-nat.c (_initialize_spu_nat): Declare.
1496
1497 2014-01-07 Yao Qi <yao@codesourcery.com>
1498 Joel Brobecker <brobecker@adacore.com>
1499
1500 * aix-thread.c (pdc_read_regs): Cast parameter to uintptr_t.
1501 (pdc_write_regs): Likewise.
1502 (fetch_regs_kernel_thread): Likewise.
1503 (store_regs_kernel_thread): Likewise.
1504
1505 2014-01-07 Joel Brobecker <brobecker@adacore.com>
1506
1507 * ada-varobj.c (ada_varobj_adjust_for_child_access): Convert
1508 tagged type objects to their actual type.
1509
1510 2014-01-07 Joel Brobecker <brobecker@adacore.com>
1511
1512 * ada-valprint.c (print_field_values): Add "language" parameter.
1513 Update calls to print_field_values and print_variant_part.
1514 Pass new parameter "language" in call to val_print instead
1515 of "current_language". Replace call to ada_val_print by call
1516 to val_print.
1517 (print_variant_part): Add "language" parameter.
1518 (ada_val_print_struct_union): Update call to print_field_values.
1519
1520 2014-01-07 Joel Brobecker <brobecker@adacore.com>
1521
1522 * ada-valprint.c (ui_memcpy): Delete.
1523 (ada_print_floating): Update documentation. Add empty line
1524 between between function documentation and implementation.
1525 Delete variable "buffer". Use ui_file_xstrdup in place of
1526 ui_file_put. Minor adjustments following this change.
1527
1528 2014-01-07 Joel Brobecker <brobecker@adacore.com>
1529
1530 * ada-valprint.c (ada_val_print_string): New function,
1531 extracted from ada_val_print_array.
1532 (ada_val_print_array): Replace extracted code by call
1533 to ada_val_print_string followed by a return. Move
1534 "else" branch to the function's top block.
1535
1536 2014-01-07 Joel Brobecker <brobecker@adacore.com>
1537
1538 * ada-valprint.c (ada_val_print_array): Move implementation
1539 down. Rename parameter "offset" and "val" into "offset_aligned"
1540 and "original_value" respectively. Add parameter "offset".
1541
1542 2014-01-07 Joel Brobecker <brobecker@adacore.com>
1543
1544 * ada-valprint.c (ada_val_print_ref): Rewrite by mostly
1545 re-organizing the code. Change the "???" message printed
1546 when target type is a TYPE_CODE_UNDEF into
1547 "<ref to undefined type>".
1548
1549 2014-01-07 Joel Brobecker <brobecker@adacore.com>
1550
1551 * ada-valprint.c (print_record): Delete, implementation inlined...
1552 (ada_val_print_struct_union): ... here. Remove call to
1553 ada_check_typedef in inlined implementation.
1554
1555 2014-01-07 Joel Brobecker <brobecker@adacore.com>
1556
1557 * ada-valprint.c (ada_val_print_gnat_array): New function,
1558 extracted from ada_val_print_1;
1559 (ada_val_print_ptr, ada_val_print_num, ada_val_print_enum)
1560 (ada_val_print_flt, ada_val_print_struct_union)
1561 (ada_val_print_ref): Likewise.
1562 (ada_val_print_1): Delete variables i and elttype.
1563 Replace extracted-out code by call to corresponding
1564 new functions.
1565
1566 2014-01-07 Joel Brobecker <brobecker@adacore.com>
1567
1568 * ada-valprint.c (ada_val_print_1): Remove call to gdb_flush.
1569
1570 2014-01-07 Joel Brobecker <brobecker@adacore.com>
1571
1572 * ada-valprint.c (ada_val_print_1): Replace calls to
1573 ada_val_print_1 by calls to val_print.
1574
1575 2014-01-07 Joel Brobecker <brobecker@adacore.com>
1576
1577 * ada-valprint.c (ada_val_print_1): Add parameter "language".
1578 Update calls to self accordingly. Replace calls to c_val_print
1579 by calls to val_print.
1580
1581 2014-01-07 Joel Brobecker <brobecker@adacore.com>
1582
1583 * ada-valprint.c (print_record): Delete declaration.
1584 (adjust_type_signedness, ada_val_print_1): Likewise.
1585 (ada_val_print): Move function implementation down.
1586 (print_variant_part, print_field_values, print_record):
1587 Move function implementation up.
1588
1589 2014-01-07 Joel Brobecker <brobecker@adacore.com>
1590
1591 * python/py-type.c (typy_get_name): New function.
1592 (type_object_getset): Add entry for attribute "name".
1593 * NEWS: Add entry mentioning this new attribute.
1594
1595 2014-01-07 Yao Qi <yao@codesourcery.com>
1596
1597 * gnu-nat.c (set_exceptions_cmd): Remove an empty body 'if'
1598 statement.
1599
1600 2014-01-07 Yao Qi <yao@codesourcery.com>
1601
1602 * gnu-nat.c (info_port_rights): Add qualifier const to
1603 argument args.
1604
1605 2014-01-07 Yao Qi <yao@codesourcery.com>
1606
1607 * gnu-nat.c (trace_me): Use 'void' for empty argument list.
1608
1609 2014-01-07 Yao Qi <yao@codesourcery.com>
1610
1611 * gnu-nat.c (make_inf) Update declaration.
1612 (make_inf): Make it static.
1613 (inf_set_traced): Likewise.
1614 (inf_port_to_thread, inf_task_died_status): Likewise.
1615
1616 2014-01-07 Yao Qi <yao@codesourcery.com>
1617
1618 * gnu-nat.c (inf_tid_to_proc): Remove declaration.
1619
1620 2014-01-07 Yao Qi <yao@codesourcery.com>
1621
1622 * gnu-nat.c (_initialize_gnu_nat): Declare.
1623
1624 2014-01-07 Yao Qi <yao@codesourcery.com>
1625
1626 * gdbarch.sh (byte_order, byte_order_for_code): Change type to
1627 'enum bfd_endian'.
1628 (struct gdbarch_info) <byte_order>: Change type to
1629 'enum bfd_endian'.
1630 <byte_order_for_code>: Likewise.
1631 * gdbarch.c, gdbarch.h: Regenerated.
1632
1633 2014-01-06 Sasha Smundak <asmundak@google.com>
1634
1635 * jit.c: (jit_reader_load_command): Fix JIT reader path creation.
1636
1637 2014-01-06 Tom Tromey <tromey@redhat.com>
1638
1639 * doublest.c (convert_doublest_to_floatformat): Use const, not
1640 CONST.
1641 * somread.c (som_symtab_read): Likewise.
1642
1643 2014-01-07 Hui Zhu <hui@codesourcery.com>
1644
1645 * gdb_bfd.c (gdb_bfd_stash_filename): Removed.
1646 (gdb_bfd_open): Removed gdb_bfd_stash_filename.
1647 (gdb_bfd_fopen): Ditto.
1648 (gdb_bfd_openr): Ditto.
1649 (gdb_bfd_openw): Ditto.
1650 (gdb_bfd_openr_iovec): Ditto.
1651 (gdb_bfd_fdopenr): Ditto.
1652 * gdb_bfd.h (gdb_bfd_stash_filename): Removed.
1653 * solib-aix.c (solib_aix_bfd_open): Alloc object_bfd->filename
1654 with xstrdup.
1655 * solib-darwin.c (darwin_bfd_open): Alloc res->filename
1656 with xstrdup.
1657 * symfile-mem.c (symbol_file_add_from_memory): Removed
1658 gdb_bfd_stash_filename.
1659
1660 2014-01-03 Doug Evans <dje@google.com>
1661
1662 * nat/linux-waitpid.c (linux_debug): Remove extraneous \n from
1663 output.
1664
1665 2014-01-01 Joel Brobecker <brobecker@adacore.com>
1666
1667 Update year range in copyright notice of all files.
1668
1669 2014-01-01 Joel Brobecker <brobecker@adacore.com>
1670
1671 * top.c (print_gdb_version): Set copyright year to 2014.
1672
1673 2014-01-01 Joel Brobecker <brobecker@adacore.com>
1674
1675 * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2013.
1676
1677 For older changes see ChangeLog-2013.
1678 \f
1679 Local Variables:
1680 mode: change-log
1681 left-margin: 8
1682 fill-column: 74
1683 version-control: never
1684 coding: utf-8
1685 End:
This page took 0.142705 seconds and 5 git commands to generate.