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