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