[AArch64] Range check only resolved relocations.
[deliverable/binutils-gdb.git] / gdb / ChangeLog
CommitLineData
a73e3634
YQ
12013-05-28 Yao Qi <yao@codesourcery.com>
2
3 * tracepoint.c (stringify_collection_list): Remove parameter
4 'string'.
5 (encode_actions): Caller update. Remove local variables.
6
c0ea94eb
YQ
72013-05-24 Yao Qi <yao@codesourcery.com>
8
9 * tracepoint.c (TFILE_PID): Remove.
10 (tfile_open): Don't add thread and inferior.
11 (tfile_close): Don't set 'inferior_ptid'. Don't call
12 exit_inferior_silent.
13 (tfile_thread_alive): Remove.
14 (init_tfile_ops): Don't set field 'to_thread_alive' of
15 tfile_ops.
16
20d7f211
DE
172013-05-23 Doug Evans <dje@google.com>
18
19 * contrib/cc-with-tweaks.sh (-p): Handle no dwo files.
20
8658d16d
PA
212013-05-23 Pedro Alves <palves@redhat.com>
22
23 * common/filestuff.c [USE_WIN32API]: Define HAVE_SOCKETS.
24 [HAVE_SYS_SOCKET_H]: Define HAVE_SOCKETS.
25 (socket_mark_cloexec, gdb_socketpair_cloexec, gdb_socket_cloexec):
26 Only define if HAVE_SOCKETS is defined.
27 * configure.ac: Check for sys/socket.h.
28 * config.in, configure: Regenerate.
29
21aa081e
PA
302013-05-23 Pedro Alves <palves@redhat.com>
31
32 * dwarf2read.c (create_dwp_hash_table, create_dwo_in_dwp)
33 (open_and_init_dwp_file): Use %s/pulongest instead of %u for
34 printing uint32_t variables.
35
c2d6af84
PA
362013-05-23 Pedro Alves <palves@redhat.com>
37
38 * NEWS: Mention GDBserver range stepping support.
39
c1e36e3e
PA
402013-05-23 Yao Qi <yao@codesourcery.com>
41 Pedro Alves <palves@redhat.com>
42
43 * gdbthread.h (struct thread_control_state) <may_range_step>: New
44 field.
45 * infcmd.c (step_once, until_next_command): Enable range stepping.
46 * infrun.c (displaced_step_prepare): Disable range stepping.
47 (resume): Disable range stepping if stepping over a breakpoint or
48 we have software watchpoints. If range stepping is enabled,
49 assert the thread is in the stepping range.
50 (clear_proceed_status_thread): Clear may_range_step.
51 (handle_inferior_event): Disable range stepping as soon as we know
52 the thread that hit the event. Re-enable it whenever we're going
53 to step with a step range.
54 * remote.c (struct vCont_action_support) <r>: New field.
55 (use_range_stepping): New global.
56 (remote_vcont_probe): Handle 'r' action.
57 (append_resumption): Append an 'r' action if the thread may range
58 step.
59 (show_range_stepping): New function.
60 (set_range_stepping): New function.
61 (_initialize_remote): Call add_setshow_boolean_cmd to register the
62 'set range-stepping' and 'show range-stepping' commands.
63 * NEWS: Mention range stepping, the new vCont;r action, and the
64 new "set/show range-stepping" commands.
65
d458bd84
PA
662013-05-23 Yao Qi <yao@codesourcery.com>
67 Pedro Alves <palves@redhat.com>
68
69 * remote.c (struct vCont_action_support): New struct.
70 (struct remote_state) <support_vCont_t>: Remove field.
71 <vCont_actions_support>: New field.
72 (remote_vcont_probe, remote_stop_ns): Update.
73
ce4c476a
PA
742013-05-23 Yao Qi <yao@codesourcery.com>
75 Pedro Alves <palves@redhat.com>
76
77 * gdbthread.h (pc_in_thread_step_range): New declaration.
78 * thread.c (pc_in_thread_step_range): New function.
79 * infrun.c (handle_inferior_event): Use it.
80
ce70887a
JB
812013-05-23 Joel Brobecker <brobecker@adacore.com>
82
83 * mi/mi-cmd-break.c (mi_argv_to_format): Use xsnprintf instead
84 of sprintf.
85
55b87a52
KS
862013-05-22 Keith Seitz <keiths@redhat.com>
87
88 * ada-lang.c (is_known_support_routine): Add explicit free of
89 'func_name' from find_frame_funname.
90 (ada_unhandled_exception_name_addr_from_raise): Add cleanups
91 for func_name from find_frame_funname.
92 * python/py-frame.c (frapy_name): Add explicit free of
93 'name' from find_frame_funname.
94 * stack.c (find_frame_funname): Add comment explaining that
95 funcp must be freed by the caller.
96 Return copy of symbol names instead of pointers.
97 (print_frame): Add a cleanup for 'funname' from
98 find_frame_funname.
99 * stack.h (find_frame_funname): Remove "const" from
100 'funname' parameter.
101
5f2e6b00
TT
1022013-05-22 Tom Tromey <tromey@redhat.com>
103
104 PR c++/15401:
105 * c-valprint.c (c_value_print): Use value_addr for
106 references. Convert back to reference type with value_ref.
107
d85c4847
EZ
1082013-05-22 Eli Zaretskii <eliz@gnu.org>
109
110 * windows-nat.c (handle_unload_dll): Don't call solib_add for the
111 unloaded DLL, it will be done by handle_solib_event. See
112 http://sourceware.org/ml/gdb-patches/2013-05/msg00713.html for the
113 details.
114
54eb231c
PM
1152013-05-22 Phil Muldoon <pmuldoon@redhat.com>
116
117 * ui-out.c: Create typedef ui_out_level_p and define vector
118 operations for that type.
119 (struct ui_out): Use a vector instead of an array.
120 (current_level): Return level from a vector.
121 (push_level): Create a level in a vector.
122 (pop_level): Delete a level in a vector.
123 (ui_out_new): Create initial level zero level, and store in a
124 vector.
125 (ui_out_destroy): Add vector cleanup.
126
ac90359c
PA
1272013-05-22 Pedro Alves <palves@redhat.com>
128
129 * python/python-internal.h (gdb_Py_DECREF): Tag with
130 "ARI: editCase function".
131
6dcc1893
PP
1322013-05-21 Paul Pluzhnikov <ppluzhnikov@google.com>
133
134 * solib-svr4.c (svr4_free_so): Protect against NULL dereference.
135
c8c735b9
PA
1362013-05-21 Pedro Alves <palves@redhat.com>
137
138 * python/py-prettyprint.c (apply_val_pretty_printer): Check
139 whether PRINTER is NULL before installing a Py_DECREF cleanup.
140 * python/py-utils.c (py_decref): Don't check for NULL before
141 calling Py_DECREF.
142
1915daeb
PA
1432013-05-21 Pedro Alves <palves@redhat.com>
144
145 * python/py-utils.c (py_decref): Remove extra braces.
146 (gdb_pymodule_addobject): Remove extra braces.
147 * python-internal.h (gdb_Py_DECREF): New static inline function.
148 (Py_DECREF): Redefine as calling gdb_Py_DECREF.
149
bd9673a4
PW
1502013-05-21 Philippe Waroquiers <philippe.waroquiers@skynet.be>
151
152 * breakpoints.c (detach_breakpoints): Do not
153 detach breakpoints locations with loc_type bp_loc_other.
154
ff6009d0
JK
1552013-05-21 Jan Kratochvil <jan.kratochvil@redhat.com>
156
157 Workaround Python 2.6.
158 * python/py-utils.c (gdb_pymodule_addobject): Wrap Py_DECREF into
159 a block.
160
3641da11
JK
1612013-05-21 Jan Kratochvil <jan.kratochvil@redhat.com>
162
163 Code cleanup: constification.
164 * solib.c (solib_ops): Make return type and ops variable type const.
165 (set_solib_ops): Make the new_ops parameter and ops variable const.
166 (solib_find, solib_map_sections, clear_so, free_so, update_solib_list)
167 (solib_add, solib_keep_data_in_core, clear_solib)
168 (solib_create_inferior_hook, in_solib_dynsym_resolve_code)
169 (reload_shared_libraries, solib_global_lookup): Make the ops variable
170 const.
171 * solib.h (set_solib_ops): Make the new_ops parameter const.
172
776af39e
JB
1732013-05-21 Joel Brobecker <brobecker@adacore.com>
174
175 * data-directory/Makefile.in (SYSTEM_GDBINIT_SRCDIR): New
176 variable.
177 (VPATH): Add SYSTEM_GDBINIT_SRCDIR.
178 (SYSTEM_GDBINIT_DIR, SYSTEM_GDBINIT_INSTALL_DIR)
179 (SYSTEM_GDBINIT_FILES): New variables.
180 (all): Add stamp-system-gdbinit.
181 (stamp-system-gdbinit): New rule.
182 (clean-system-gdbinit, install-system-gdbinit)
183 (uninstall-system-gdbinit): New rules. Make them .PHONY.
184 (install-only): Add dependency on install-system-gdbinit.
185 (uninstall): Add dependency on uninstall-system-gdbinit.
186 (clean): Add dependency on clean-system-gdbinit.
187 * system-gdbinit/elinos.py: New file.
188 * system-gdbinit/wrs-linux.py: New file.
189
1509e573
JB
1902013-05-21 Joel Brobecker <brobecker@adacore.com>
191
192 * ada-lang.c (old_renaming_is_invisible): Fix cleanup leak.
193
c5867ab6
HZ
1942013-05-21 Hui Zhu <hui@codesourcery.com>
195
196 * breakpoint.c (dprintf_breakpoint_ops): Remove its static.
197 * breakpoint.h (dprintf_breakpoint_ops): Add extern.
198 * mi/mi-cmd-break.c (ctype.h): New include.
199 (gdb_obstack.h): New include.
200 (mi_argv_to_format, mi_cmd_break_insert_1): New.
201 (mi_cmd_break_insert): Call mi_cmd_break_insert_1.
202 (mi_cmd_dprintf_insert): New.
203 * mi/mi-cmds.c (mi_cmds): Add "dprintf-insert".
204 * mi/mi-cmds.h (mi_cmd_dprintf_insert): New extern.
205
7d38e38f
TT
2062013-05-20 Tom Tromey <tromey@redhat.com>
207
208 * python/py-prettyprint.c (search_pp_list): Decref 'attr'.
209
97b77b39
TT
2102013-05-20 Tom Tromey <tromey@redhat.com>
211
212 * python/py-value.c (valpy_get_dynamic_type): Simplify
213 dynamic_type assignment. Use Py_XINCREF.
214
53e66479
TT
2152013-05-20 Tom Tromey <tromey@redhat.com>
216
217 * python/py-type.c (typy_fields): Unconditionally decref 'r'.
218
dcf87832
TT
2192013-05-20 Tom Tromey <tromey@redhat.com>
220
221 * python/py-frame.c (frapy_older, frapy_newer, gdbpy_newest_frame)
222 (gdbpy_selected_frame): Move object-construction code
223 out of TRY_CATCH.
224
aa36459a
TT
2252013-05-20 Tom Tromey <tromey@redhat.com>
226
227 * python/py-arch.c (gdbpy_initialize_arch): Use
228 gdb_pymodule_addobject.
229 * python/py-block.c (gdbpy_initialize_blocks): Use
230 gdb_pymodule_addobject.
231 * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Use
232 gdb_pymodule_addobject.
233 * python/py-cmd.c (gdbpy_initialize_breakpoints): Use
234 gdb_pymodule_addobject.
235 * python/py-event.c (gdbpy_initialize_event_generic): Use
236 gdb_pymodule_addobject.
237 * python/py-evtregistry.c (gdbpy_initialize_eventregistry): Use
238 gdb_pymodule_addobject.
239 * python/py-evts.c (add_new_registry): Use
240 gdb_pymodule_addobject.
241 (gdbpy_initialize_py_events): Likewise.
242 * python/py-finishbreakpoint.c
243 (gdbpy_initialize_finishbreakpoints): Use
244 gdb_pymodule_addobject.
245 * python/py-frame.c (gdbpy_initialize_frames): Use
246 gdb_pymodule_addobject.
247 * python/py-function.c (gdbpy_initialize_functions): Use
248 gdb_pymodule_addobject.
249 * python/py-inferior.c (gdbpy_initialize_inferior): Use
250 gdb_pymodule_addobject.
251 * python/py-infthread.c (gdbpy_initialize_thread): Use
252 gdb_pymodule_addobject.
253 * python/py-objfile.c (gdbpy_initialize_objfile): Use
254 gdb_pymodule_addobject.
255 * python/py-param.c (gdbpy_initialize_parameters): Use
256 gdb_pymodule_addobject.
257 * python/py-progspace.c (gdbpy_initialize_pspace): Use
258 gdb_pymodule_addobject.
259 * python/py-symbol.c (gdbpy_initialize_symbols): Use
260 gdb_pymodule_addobject.
261 * python/py-symtab.c (gdbpy_initialize_symtabs): Use
262 gdb_pymodule_addobject.
263 * python/py-type.c (gdbpy_initialize_types): Use
264 gdb_pymodule_addobject.
265 * python/py-utils.c (gdb_pymodule_addobject): New function.
266 * python/py-value.c (gdbpy_initialize_values): Use
267 gdb_pymodule_addobject.
268 * python/python-internal.h (gdb_pymodule_addobject): Declare.
269 * python/python.c (_initialize_python): Use
270 gdb_pymodule_addobject.
271
3d4a3c3e
TT
2722013-05-20 Tom Tromey <tromey@redhat.com>
273
274 * python/py-cmd.c (cmdpy_completer): Use explicit decref.
275 * python/py-param.c (get_set_value, get_show_value): Use
276 explicit decrefs.
277 * python/python.c (start_type_printers, apply_type_printers):
278 Use explicit decrefs.
279
72ff8829
TT
2802013-05-20 Tom Tromey <tromey@redhat.com>
281
282 * python/py-evts.c (gdbpy_initialize_py_events): Don't
283 incref the module.
284
02146ba5
TT
2852013-05-20 Tom Tromey <tromey@redhat.com>
286
287 * python/python.c (gdbpy_run_events): Decref the result
288 of PyObject_CallObject.
289
33ee792f
TT
2902013-05-20 Tom Tromey <tromey@redhat.com>
291
292 * python/py-symtab.c (set_sal): Use
293 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION. Return -1 on error.
294 (symtab_and_line_to_sal_object): Update.
295
fcb49fc8
TT
2962013-05-20 Tom Tromey <tromey@redhat.com>
297
298 * python/py-param.c (compute_enum_values): Decref 'item'.
299
0646da15
TT
3002013-05-20 Tom Tromey <tromey@redhat.com>
301
302 * mi/mi-main.c: Include python-internal.h.
303 (mi_cmd_list_features): Check gdb_python_initialized.
304 * python/py-inferior.c (python_on_normal_stop, python_on_resume)
305 (python_inferior_exit, python_new_objfile, add_thread_object)
306 (delete_thread_object, py_free_inferior): Check
307 gdb_python_initialized.
308 * python/py-prettyprint.c (apply_val_pretty_printer): Check
309 gdb_python_initialized.
310 * python/py-type.c (save_objfile_types): Check
311 gdb_python_initialized.
312 * python/python-internal.h (gdb_python_initialized): Declare.
313 * python/python.c (ensure_python_env): Throw exception if
314 Python not initialized.
315 (before_prompt_hook, source_python_script_for_objfile)
316 (start_type_printers, apply_type_printers,
317 free_type_printers): Check gdb_python_initialized.
318 * varobj.c (varobj_get_display_hint)
319 (dynamic_varobj_has_child_method, update_dynamic_varobj_children)
320 (install_new_value_visualizer, varobj_set_visualizer)
321 (value_get_print_value): Check gdb_python_initialized.
322
999633ed
TT
3232013-05-20 Tom Tromey <tromey@redhat.com>
324
325 * python/py-arch.c (gdbpy_initialize_arch): Return 'int'.
326 Check errors.
327 * python/py-auto-load.c (gdbpy_initialize_auto_load): Return 'int'.
328 * python/py-block.c (gdbpy_initialize_blocks): Return 'int'.
329 Check errors.
330 * python/py-breakpoint.c (gdbpy_initialize_breakpoints): Return 'int'.
331 Check errors.
332 * python/py-cmd.c (gdbpy_initialize_commands): Return 'int'.
333 Check errors.
334 * python/py-event.c (gdbpy_initialize_event): Return 'int'.
335 Check errors.
336 * python/py-event.h (GDBPY_NEW_EVENT_TYPE): Change generated
337 init function to return 'int'.
338 * python/py-evtregistry.c (gdbpy_initialize_eventregistry):
339 Return 'int'. Check errors.
340 * python/py-evts.c (gdbpy_initialize_py_events): Return 'int'.
341 Check errors.
342 * python/py-finishbreakpoint.c (gdbpy_initialize_finishbreakpoints):
343 Return 'int'. Check errors.
344 * python/py-frame.c (gdbpy_initialize_frames): Return 'int'.
345 Check errors.
346 * python/py-function.c (gdbpy_initialize_functions): Return 'int'.
347 Check errors.
348 * python/py-gdb-readline.c (gdbpy_initialize_gdb_readline):
349 Check errors.
350 * python/py-inferior.c (gdbpy_initialize_inferior): Return 'int'.
351 Check errors.
352 * python/py-infthread.c (gdbpy_initialize_thread): Return 'int'.
353 Check errors.
354 * python/py-lazy-string.c (gdbpy_initialize_lazy_string): Return 'int'.
355 Check errors.
356 * python/py-objfile.c (gdbpy_initialize_objfile): Return 'int'.
357 Check errors.
358 * python/py-param.c (gdbpy_initialize_parameters): Return 'int'.
359 Check errors.
360 * python/py-progspace.c (gdbpy_initialize_pspace): Return 'int'.
361 Check errors.
362 * python/py-symbol.c (gdbpy_initialize_symbols): Return 'int'.
363 Check errors.
364 * python/py-symtab.c (gdbpy_initialize_symtabs): Return 'int'.
365 Check errors.
366 * python/py-type.c (gdbpy_initialize_types): Return 'int'.
367 Check errors.
368 * python/py-value.c (gdbpy_initialize_values): Return 'int'.
369 Check errors.
370 * python/python-internal.h (gdbpy_initialize_auto_load,
371 gdbpy_initialize_values, gdbpy_initialize_frames,
372 gdbpy_initialize_symtabs, gdbpy_initialize_commands,
373 gdbpy_initialize_symbols, gdbpy_initialize_symtabs,
374 gdbpy_initialize_blocks, gdbpy_initialize_types,
375 gdbpy_initialize_functions, gdbpy_initialize_pspace,
376 gdbpy_initialize_objfile, gdbpy_initialize_breakpoints,
377 gdbpy_initialize_finishbreakpoints,
378 gdbpy_initialize_lazy_string, gdbpy_initialize_parameters,
379 gdbpy_initialize_thread, gdbpy_initialize_inferior,
380 gdbpy_initialize_eventregistry, gdbpy_initialize_event,
381 gdbpy_initialize_py_events, gdbpy_initialize_stop_event,
382 gdbpy_initialize_signal_event,
383 gdbpy_initialize_breakpoint_event,
384 gdbpy_initialize_continue_event,
385 gdbpy_initialize_exited_event, gdbpy_initialize_thread_event,
386 gdbpy_initialize_new_objfile_event, gdbpy_initialize_arch):
387 Update. Use CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
388 * python/python.c (gdb_python_initialized): New global.
389 (gdbpy_initialize_events): Return 'int'. Check errors.
390 (_initialize_python): Check errors. Set
391 gdb_python_initialized.
392
18868860
TT
3932013-05-20 Tom Tromey <tromey@redhat.com>
394
395 * python/py-finishbreakpoint.c (bpfinishpy_out_of_scope):
396 Decref the reslut of PyObject_CallMethod.
397
9f4ff0c2
TT
3982013-05-20 Tom Tromey <tromey@redhat.com>
399
400 * python/py-event.c (gdbpy_initialize_event_generic): Return
401 early if PyType_Ready fails.
402
0d3a2e8a
TT
4032013-05-20 Tom Tromey <tromey@redhat.com>
404
405 * python/py-type.c (make_fielditem): Add gdb_assert_not_reached
406 as 'default' in the switch.
407
b86af38a
TT
4082013-05-20 Tom Tromey <tromey@redhat.com>
409
410 * python/py-inferior.c (gdbpy_inferiors): Update. Hoist
411 get_addr_from_python calls out of TRY_CATCH.
412 (infpy_write_memory, infpy_search_memory): Likewise.
413 * python/py-utils.c (get_addr_from_python): Return negative
414 value on error. Use TRY_CATCH.
415 * python/python-internal.h (get_addr_from_python): Use
416 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
417
c127ec58
TT
4182013-05-20 Tom Tromey <tromey@redhat.com>
419
420 * python/py-event.c (evpy_emit_event): Decref the
421 result of PyObject_CallFunctionObjArgs.
422
ba327838
TT
4232013-05-20 Tom Tromey <tromey@redhat.com>
424
425 * python/py-cmd.c (cmdpy_completer): Use iterator protocol.
426 Correctly decref.
427
d8191432
TT
4282013-05-20 Tom Tromey <tromey@redhat.com>
429
430 * python/py-cmd.c (cmdpy_init): Decref 'ds_obj'.
431
5d153bd1
TT
4322013-05-20 Tom Tromey <tromey@redhat.com>
433
434 * python/py-event.h (gdbpy_initialize_event_generic): Use
435 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
436 * python/py-evts.c (add_new_registry): Use
437 CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION.
438 * python/python-internal.h
439 (CPYCHECKER_NEGATIVE_RESULT_SETS_EXCEPTION): New macro.
440
56cc411c
TT
4412013-05-20 Tom Tromey <tromey@redhat.com>
442
443 * python/py-arch.c (archpy_disassemble): Update.
444 * python/py-type.c (typy_get_composite, typy_lookup_typename)
445 (typy_lookup_type): Use GDB_PY_HANDLE_EXCEPTION.
446 * python/py-utils.c (gdbpy_convert_exception): Return 'void'.
447 * python/python-internal.h (CPYCHECKER_SETS_EXCEPTION): New
448 macro.
449 (GDB_PY_HANDLE_EXCEPTION): Update.
450 (gdbpy_convert_exception): Update. Use CPYCHECKER_SETS_EXCEPTION.
451
8919e174
TT
4522013-05-20 Tom Tromey <tromey@redhat.com>
453
454 * python/python-internal.h (events_object_type): Remove.
455
9b08f225
TT
4562013-05-20 Tom Tromey <tromey@redhat.com>
457
458 * python/py-event.h (evpy_emit_event): Use
459 CPYCHECKER_STEALS_REFERENCE_TO_ARG.
460 * python/python-internal.h (CPYCHECKER_STEALS_REFERENCE_TO_ARG):
461 New macro.
462
f04010ff
TT
4632013-05-20 Tom Tromey <tromey@redhat.com>
464
465 * py-evtregistry.c (create_event_object): Decref
466 eventregistry_object if PyList_New fails.
467
3919fd96
TT
4682013-05-20 Tom Tromey <tromey@redhat.com>
469
470 * py-cmd.c (gdbpy_string_to_argv): Check result of
471 PyList_New.
472
0430e8cb
TT
4732013-05-20 Tom Tromey <tromey@redhat.com>
474
475 * python/python.c (before_prompt_hook): Add cleanup to
476 decref 'hook'.
477
764123e4
TT
4782013-05-20 Tom Tromey <tromey@redhat.com>
479
480 * python/py-function.c (fnpy_init): Decref result of
481 PyObject_GetAttrString.
482
634c58be
TT
4832013-05-20 Tom Tromey <tromey@redhat.com>
484
485 * python/py-threadevent.c (get_event_thread): Use
486 CPYCHECKER_RETURNS_BORROWED_REF.
487 * python/python-internal.h (CPYCHECKER_RETURNS_BORROWED_REF):
488 New define.
489 (pspace_to_pspace_object, objfile_to_objfile_object)
490 (find_thread_object): Use it.
491
62eec1a5
TT
4922013-05-20 Tom Tromey <tromey@redhat.com>
493
494 * python/py-arch.c (arch_object_type): Use
495 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
496 * python/py-block.c (block_syms_iterator_object_type):
497 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
498 * python/py-bpevent.c (breakpoint_event_object_type):
499 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
500 * python/py-cmd.c (cmdpy_object_type): Use
501 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
502 * python/py-continueevent.c (continue_event_object_type):
503 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
504 * python/py-event.h (GDBPY_NEW_EVENT_TYPE):
505 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
506 * python/py-events.h (thread_event_object_type):
507 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
508 * python/py-evtregistry.c (eventregistry_object_type): Use
509 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
510 * python/py-exitedevent.c (exited_event_object_type):
511 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
512 * python/py-finishbreakpoint.c (finish_breakpoint_object_type):
513 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
514 * python/py-function.c (fnpy_object_type): Use
515 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
516 * python/py-inferior.c (inferior_object_type, membuf_object_type):
517 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
518 * python/py-infthread.c (thread_object_type): Use
519 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
520 * python/py-lazy-string.c (lazy_string_object_type):
521 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
522 * python/py-newobjfileevent.c (new_objfile_event_object_type):
523 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
524 * python/py-objfile.c (objfile_object_type): Use
525 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
526 * python/py-param.c (parmpy_object_type):
527 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
528 * python/py-progspace.c (pspace_object_type):
529 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
530 * python/py-signalevent.c (signal_event_object_type):
531 Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
532 * python/py-symtab.c (symtab_object_type, sal_object_type): Use
533 CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
534 * python/py-type.c (type_object_type, field_object_type)
535 (type_iterator_object_type): Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
536 * python/py-internal.h (CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF): New
537 define.
538 (value_object_type, block_object_type, symbol_object_type)
539 (event_object_type, stop_event_object_type, breakpoint_object_type)
540 (frame_object_type): Use CPYCHECKER_TYPE_OBJECT_FOR_TYPEDEF.
541
81ea8796
AT
5422013-05-20 Andreas Tobler <andreas@fgznet.ch>
543
544 * Makefile.in (ALL_TARGET_OBS): Add ppcfbsd-tdep.o.
545 (ALLDEPFILES): Add ppcfbsd-nat.c and ppcfbsd-tdep.c.
546
a2ce51a0
DE
5472013-05-20 Doug Evans <dje@google.com>
548
549 When reading CU, stay in DWO. Be more tolerent of bad debug info.
550 For Fission.
551 * dwarf2read.c (struct dwarf2_per_cu_data): New member
552 reading_dwo_directly.
553 (struct signatured_type): New member dwo_unit.
554 (struct die_reader_specs): New member comp_dir.
555 (create_signatured_type_table_from_index): Use malloc for
556 all_type_units instead of objfile's obstack.
557 (create_all_type_units): Ditto.
558 (fill_in_sig_entry_from_dwo_entry): New function.
559 (add_type_unit): New function.
560 (lookup_dwo_signatured_type): New function.
561 (lookup_dwp_signatured_type): New function.
562 (lookup_signatured_type): New arg cu. All callers updated.
563 (init_cu_die_reader): Initialize comp_dir.
564 (read_cutu_die_from_dwo): New arg stub_comp_dir. All callers updated.
565 Change assert of matching type signatures to call error on mismatch.
566 (lookup_dwo_unit): Add assert.
567 (init_tu_and_read_dwo_dies): New function.
568 (init_cutu_and_read_dies): Call it.
569 (build_type_unit_groups): Handle case of no type unit groups created.
570 (hash_dwo_file, eq_dwo_file): Handle missing comp_dir.
571 (lookup_dwo_cutu): Tweak complaint.
572 (dwarf2_free_abbrev_table): Check for NULL abbrev_table.
573 (dwarf2_per_objfile_free): Free all_type_units.
574
a25cd31f
JB
5752013-05-20 Joel Brobecker <brobecker@adacore.com>
576
577 * windows-nat.c (handle_unload_dll): Add missing empty line.
578
4d804846
JB
5792013-05-20 Joel Brobecker <brobecker@adacore.com>
580
581 * dwarf2read.c (prototyped_function_p): New function.
582 (read_subroutine_type): Use it.
583
1c432e72
JB
5842013-05-20 Joel Brobecker <brobecker@adacore.com>
585
586 * rs6000-aix-tdep.c: De-indent some example code provided
587 as a comment.
588
4feebbdd
EBM
5892013-05-17 Edjunior Machado <emachado@linux.vnet.ibm.com>
590
591 * ppc-linux-nat.c (ppc_linux_region_ok_for_hw_watchpoint): Check if the
592 region is ok for a hardware watchpoint using the new ptrace interface
593 on Power servers.
594
7d0c9981
DE
5952013-05-17 Doug Evans <dje@google.com>
596
597 * NEWS: Mention new maintenance commands check-symtabs, and
598 expand-symtabs, and renamed check-psymtabs.
599 * psymtab.c (maintenance_check_psymtabs): Renamed from
600 maintenance_check_symtabs. Only process already-expanded symbol
601 tables.
602 (_initialize_psymtab): Update.
603 * symmisc.c (maintenance_check_symtabs): New function.
604 (maintenance_expand_name_matcher): New function
605 (maintenance_expand_file_matcher): New function
606 (maintenance_expand_symtabs): New function.
607 (_initialize_symmisc): Add "mt check-symtabs" and "mt expand-symtabs"
608 commands.
609
6cbc7c3d
TT
6102013-05-17 Tom Tromey <tromey@redhat.com>
611
612 * python/py-inferior.c (infpy_read_memory): Don't call
613 PyErr_SetString if PyObject_New fails.
614 * python/py-frame.c (frame_info_to_frame_object): Don't call
615 PyErr_SetString if PyObject_New fails.
616
a48b32c0
L
6172013-05-17 Pavel Chupin <pavel.v.chupin@intel.com>
618
619 * acinclude.m4: Add check for dlopen in libdl.
620 * configure.ac: Ditto.
621 * configure: Regenerate.
622
3de661e6
PM
6232013-05-17 Phil Muldoon <pmuldoon@redhat.com>
624
625 * frame.c (frame_stash): Convert to htab.
626 (frame_addr_hash): New function.
627 (frame_addr_hash_eq): New function.
628 (frame_stash_create): Convert function to create
629 a hash table.
630 (frame_stash_add): Convert function to add an entry to a hash
631 table.
632 (frame_stash_find): Convert function to search the hash table.
633 (frame_stash_invalidate): Convert function to empty the hash
634 table.
635 (get_frame_id): Only add to stash if a frame_id is created.
636 (_initialize_frame): Call frame_stash_create.
637
bb4168a9 6382013-05-16 Yue Lu <hacklu.newborn@gmail.com> (tiny change)
036c3acb
TS
639
640 * configure.ac: Ensure MIG is available when building for GNU Hurd
641 hosts.
642 * configure: Regenerate.
643
d1be3247
JB
6442013-05-16 Joel Brobecker <brobecker@adacore.com>
645
646 * dwarf2read.c (set_cu_language): Add DW_LANG_UPC handling.
647
b8fea896
JB
6482013-05-16 Joel Brobecker <brobecker@adacore.com>
649
650 * ada-lang.c (ada_make_symbol_completion_list): Make sure
651 all cleanups are done before returning from this function.
652
af880d85
JB
6532013-05-15 Joel Brobecker <brobecker@adacore.com>
654
655 * utils.h: #include "exceptions.h".
656 (enum errors): Remove partial declaration.
657
356a5233
JB
6582013-05-15 Joel Brobecker <brobecker@adacore.com>
659
660 * gdbarch.sh (core_xfer_shared_libraries_aix): New method.
661 * gdbarch.h, gdbarch.c: Regenerate.
662 * corelow.c (core_xfer_partial): Add TARGET_OBJECT_LIBRARIES_AIX
663 handling.
664
665 * rs6000-aix-tdep.h: New file.
666 * Makefile.in (HFILES_NO_SRCDIR): Add rs6000-aix-tdep.h.
667 * rs6000-aix-tdep.c: Include "rs6000-aix-tdep.h" and
668 "xml-utils.h".
669 (struct field_info, struct ld_info_desc): New types.
670 (ld_info32_desc, ld_info64_desc): New static constants.
671 (struct ld_info): New type.
672 (rs6000_aix_extract_ld_info): New function.
673 (rs6000_aix_shared_library_to_xml): Likewise.
674 (rs6000_aix_ld_info_to_xml): Likewise.
675 (rs6000_aix_core_xfer_shared_libraries_aix): Likewise.
676 (rs6000_aix_init_osabi): Add call to
677 set_gdbarch_core_xfer_shared_libraries_aix.
678 * rs6000-nat.c: Add "rs6000-aix-tdep.h" include.
679 Remove "xml-utils.h" include.
680 (LdInfo): Delete typedef.
681 (ARCH64_DECL, LDI_FIELD, LDI_NEXT, LDI_FD, LDI_FILENAME):
682 Delete macros.
683 (rs6000_ptrace_ldinfo): Change return type to gdb_byte *.
684 Adjust code accordingly.
685 (rs6000_core_ldinfo): Delete, folded into
686 rs6000_aix_core_xfer_shared_libraries_aix.
687 (rs6000_xfer_shared_library): Delete.
688 (rs6000_xfer_shared_libraries): Reimplement.
689
742ce053
MM
6902013-05-15 Markus Metzger <markus.t.metzger@intel.com>
691
692 * record.c (record_goto_cmdlist): New.
693 (cmd_record_goto): Split into this ...
694 (cmd_record_goto_begin): ... this
695 (cmd_record_goto_end): ... and this.
696 (_initialize_record): Change "record goto" to prefix command.
697 Add commands for "record goto begin" and "record goto end".
698 Add an alias for "record goto start" to "record goto begin".
699
e93ba630
JK
7002013-05-14 Jan Kratochvil <jan.kratochvil@redhat.com>
701
702 * linespec.c (convert_linespec_to_sals): New comment for
703 SOURCE_FILENAME assignment.
704
5821aace
JK
7052013-05-14 Jan Kratochvil <jan.kratochvil@redhat.com>
706
707 * cleanups.c (restore_my_cleanups): Replace gdb_assert by
708 internal_warning.
709
a1b8c4cc
TT
7102013-05-14 Tom Tromey <tromey@redhat.com>
711
712 * eval.c (parse_and_eval_long): Make 'exp' const.
713 * value.h (parse_and_eval_long): Update.
714
23b3a2c3
TT
7152013-05-14 Tom Tromey <tromey@redhat.com>
716
717 * ui-file.c (gdb_fopen): Make arguments const.
718 * ui-file.h (gdb_fopen): Make arguments const.
719
ca623f82
TT
7202013-05-14 Tom Tromey <tromey@redhat.com>
721
722 * remote.c (remote_set_trace_notes): Make arguments const.
723 * target.c (update_current_target): Update cast.
724 * target.h (to_set_trace_notes): Make arguments const.
725
503ebb2c
TT
7262013-05-14 Tom Tromey <tromey@redhat.com>
727
728 * go32-nat.c (go32_terminal_info): Make 'args' const.
729 * inferior.h (child_terminal_info): Update.
730 * inflow.c (child_terminal_info): Make 'args' const.
731 * target.c (default_terminal_info): Make 'args' const.
732 (debug_to_terminal_save_ours): Likewise.
733 * target.h (struct target_ops) <to_terminal_info>: Make argument
734 const.
735
85e1311a
TT
7362013-05-13 Tom Tromey <tromey@redhat.com>
737
738 * gcore.c (create_gcore_bfd): Make 'filename' const.
739 * gcore.h (create_gcore_bfd): Make 'filename' const.
740 * record-full.c (record_full_save): Make 'recfilename' const.
741 * target.c (target_save_record): Make 'filename' const.
742 * target.h (struct target_ops) <to_save_record>: Make 'filename'
743 const.
744 (target_save_record): Likewise.
745
d62bfeaf
TT
7462013-05-13 Tom Tromey <tromey@redhat.com>
747
92ce080b 748 PR gdb/15338:
d62bfeaf
TT
749 * dwarf2read.c (dwarf2_record_block_ranges): Ensure that the
750 ranges section has been read.
751
ac1ca910
TT
7522013-05-13 Tom Tromey <tromey@redhat.com>
753
754 PR exp/15364:
755 * eval.c (evaluate_subexp_standard) <STRUCTOP_STRUCT,
756 STRUCTOP_PTR>: Return a not_lval value for
757 EVAL_AVOID_SIDE_EFFECTS.
758 * opencl-lang.c (evaluate_subexp_opencl): Return a not_lval value
759 for EVAL_AVOID_SIDE_EFFECTS.
760
36d1c68c
JB
7612013-05-13 Joel Brobecker <brobecker@adacore.com>
762
763 * rs6000-aix-tdep.c (rs6000_push_dummy_call): Convert
764 floating point registers to register type before storing
765 value.
766 * rs6000-lynx178-tdep.c (rs6000_lynx178_push_dummy_call):
767 Likewise.
768
21ff4686
TT
7692013-05-10 Joel Brobecker <brobecker@adacore.com>
770 Tom Tromey <tromey@redhat.com>
771
772 * common/filestuff.c (mark_fd_no_cloexec, unmark_fd_no_cloexec):
773 New functions.
774 * common/filestuff.c (mark_fd_no_cloexec, unmark_fd_no_cloexec):
775 Declare.
776 * darwin-nat.c (darwin_pre_ptrace): Use mark_fd_no_cloexec.
777 (darwin_ptrace_him): Use unmark_fd_no_cloexec.
778 * inf-ttrace.c (do_cleanup_pfds): Use unmark_fd_no_cloexec.
779 (inf_ttrace_prepare): Use mark_fd_no_cloexec.
780
d3685d60
TT
7812013-05-10 Freddie Chopin <freddie_chopin@op.pl>
782 Tom Tromey <tromey@redhat.com>
783
784 PR build/15414:
785 * configure: Rebuild.
786 * configure.ac (build_warnings): Do not use -Wformat-nonliteral
787 with -Wno-format.
788
eb9fe518
PA
7892013-05-10 Pedro Alves <palves@redhat.com>
790
791 * remote.c (_initialize_remote): Fix spelling of
792 qXfer:traceframe-info:read packet in packet config command.
793
9779ab84
PA
7942013-05-10 David Taylor <dtaylor@emc.com>
795
796 PR remote/15455
797
798 * remote.c (remote_trace_set_readonly_regions): Do not overwrite
799 "QTro" at start of packet.
800
060cfbef
JB
8012013-05-10 Joel Brobecker <brobecker@adacore.com>
802
803 * solib-aix.c (solib_aix_relocate_section_addresses):
804 For the .bss section action, apply the same offset as
805 the .data section.
806
ab1c4e88
JB
8072013-05-10 Joel Brobecker <brobecker@adacore.com>
808
809 * solib-aix.c (solib_aix_relocate_section_addresses):
810 Remove FIXME comment.
811
c1357578
JB
8122013-05-10 Joel Brobecker <brobecker@adacore.com>
813
814 PR tdep/15420:
815 * sol-thread.c (ps_lgetxregsize, ps_lgetxregs, ps_lsetxregs):
816 New functions, directly copied from sparc-sol-thread.c.
817 * sparc-sol-thread.c: Delete.
818 * configure.ac: Remove code handling sparc-solaris-thread.c.
819 * configure: Regenerate.
820
1e611234
PM
8212013-05-10 Phil Muldoon <pmuldoon@redhat.com>
822
823 * stack.c (backtrace_command_1): Add "no-filters", and Python frame
824 filter logic.
825 (backtrace_command): Add "no-filters" option parsing.
826 (_initialize_stack): Alter help to reflect "no-filters" option.
827 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-framefilter.o
828 (SUBDIR_PYTHON_SRCS): Add py-framefilter.c
829 (py-frame.o): Add target
830 * data-directory/Makefile.in (PYTHON_DIR): Add Python frame
831 filter files.
832 * python/python.h: Add new frame filter constants, and flag enum.
833 (apply_frame_filter): Add definition.
834 * python/python.c (apply_frame_filter): New non-Python
835 enabled function.
836 * python/py-utils.c (py_xdecref): New function.
837 (make_cleanup_py_xdecref): Ditto.
838 * python/py-objfile.c: Declare frame_filters dictionary.
839 (objfpy_dealloc): Add frame_filters dealloc.
840 (objfpy_new): Initialize frame_filters attribute.
841 (objfile_to_objfile_object): Ditto.
842 (objfpy_get_frame_filters): New function.
843 (objfpy_set_frame_filters): New function.
844 * python/py-progspace.c: Declare frame_filters dictionary.
845 (pspy_dealloc): Add frame_filters dealloc.
846 (pspy_new): Initialize frame_filters attribute.
847 (pspacee_to_pspace_object): Ditto.
848 (pspy_get_frame_filters): New function.
849 (pspy_set_frame_filters): New function.
850 * python/py-framefilter.c: New file.
851 * python/lib/gdb/command/frame_filters.py: New file.
852 * python/lib/gdb/frames.py: New file.
853 * python/lib/gdb/__init__.py: Initialize global frame_filters
854 dictionary
855 * python/lib/gdb/FrameDecorator.py: New file.
856 * python/lib/gdb/FrameIterator.py: New file.
857 * mi/mi-cmds.c (mi_cmds): Add frame filters command.
858 * mi/mi-cmds.h: Declare.
859 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames): Add
860 --no-frame-filter logic, and Python frame filter logic.
861 (stack_enable_frame_filters): New function.
862 (parse_no_frame_option): Ditto.
863 (mi_cmd_stack_list_frames): Add --no-frame-filter and Python frame
864 filter logic.
865 (mi_cmd_stack_list_locals): Ditto.
866 (mi_cmd_stack_list_args): Ditto.
867 (mi_cmd_stack_list_variables): Ditto.
868 * NEWS: Add frame filter note.
869
2cb9c859
DE
8702013-05-09 Doug Evans <dje@google.com>
871
6bf667bb
DE
872 * symfile.c (syms_from_objfile_1): Delete args offsets, num_offsets.
873 All callers updated.
874 (syms_from_objfile): Ditto. Make static.
875 (symbol_file_add_with_addrs): Renamed from
876 symbol_file_add_with_addrs_or_offsets. Delete args offsets,
877 num_offsets. All callers updated.
878 * symfile.h (syms_from_objfile): Delete.
879
2cb9c859
DE
880 * symfile.c (decrement_reading_symtab): Add assert.
881 (increment_reading_symtab): Ditto.
882
40aea477
JB
8832013-05-09 Joel Brobecker <brobecker@adacore.com>
884
885 * source.c (forward_search_command): Replace call to getc
886 by call to fgetc.
887 (reverse_search_command): Likewise.
888
680d1742
DE
8892013-05-08 Doug Evans <dje@google.com>
890
891 * psymtab.c (expand_symtabs_matching_via_partial): Fix file name
892 matching test.
893
17e760ae
JB
8942013-05-08 Joel Brobecker <brobecker@adacore.com>
895
896 * sol-thread.c (info_cb): Factorize the code a little.
897
c0f5f490
JB
8982013-05-08 Joel Brobecker <brobecker@adacore.com>
899
900 * sol-thread.c (info_cb): Rework the output of the "maintenance
901 info sol-threads" command a bit.
902
5d74e061
JB
9032013-05-08 Joel Brobecker <brobecker@adacore.com>
904
905 * sol-thread.c (info_cb) [ti.ti_state == TD_THR_SLEEP]:
906 Replace ti.ti_startfunc by ti.ti_pc.
907
814a3ff7
JB
9082013-05-08 Joel Brobecker <brobecker@adacore.com>
909
910 * solib-aix.c (solib_aix_free_library_list): New function
911 for the case where HAVE_LIBEXPAT is not defined.
912
58ce7251
SDJ
9132013-05-07 Sergio Durigan Junior <sergiodj@redhat.com>
914
915 PR breakpoints/15413:
916 * breakpoint.c (condition_completer): Simplify the code to
917 disconsider multiple locations of breakpoints when completing the
918 "condition" command.
919
be8b1ea6
PM
9202013-05-07 Pierre Muller <muller@sourceware.org>
921
922 * common/linux-btrace.c: ARI fix: Include "gdb_wait.h"
923 instead of <sys/wait.h>.
924
1e52bda6
PM
9252013-05-07 Pierre Muller <muller@sourceware.org>
926
927 * nios2-tdep.c (nios2_dwarf_reg_to_regnum): ARI fix: remove
928 trailing new line from warning message.
929
27fd0c6b
PM
9302013-05-07 Pierre Muller <muller@sourceware.org>
931
932 * contrib/ari/gdb_ari.sh (SOLIB_ADD, SOLIB_CREATE_INFERIOR_HOOK)
933 (PC_SOLIB): Change type from ari_deprecate to ari_regression.
934
e228ac87
JB
9352013-05-07 Joel Brobecker <brobecker@adacore.com>
936
937 * rs6000-nat.c (rs6000_core_ldinfo): Remove '\n' at end of
938 error message (ARI fix).
939
9402013-05-07 Joel Brobecker <brobecker@adacore.com>
941
942 * features/library-list-aix.dtd: Replace library-list by
943 library-list-aix.
944 * rs6000-nat.c: Replace library-list by library-list-aix
945 throughout.
946 * solib-aix.c: Likewise.
947
9482013-05-07 Joel Brobecker <brobecker@adacore.com>
949
950 * target.h (enum target_object) [TARGET_OBJECT_LIBRARIES_AIX]:
951 Renames TARGET_OBJECT_AIX_LIBRARIES.
952 * rs6000-nat.c: Replace TARGET_OBJECT_AIX_LIBRARIES with
953 TARGET_OBJECT_LIBRARIES_AIX throughout.
954 * solib-aix.c: Likwise.
955
26a4dda9
YQ
9562013-05-07 Yao Qi <yao@codesourcery.com>
957
958 * solib-dsbt.c (struct dsbt_info) <enable_break2_done>: Remove.
959 (get_dsbt_info, enable_break, dsbt_clear_solib): Update.
960
3582629f
YQ
9612013-05-07 Yao Qi <yao@codesourcery.com>
962
963 * solib-dsbt.c (enable_break): Declare.
964 (dsbt_current_sos): Remove call to enable_break2.
965 (enable_break2): Rename to enable_break. Set solib breakpoint
966 on '_dl_debug_state'.
967 (enable_break): Remove.
968
aacbb8a5
LM
9692013-05-07 Luis Machado <lgustavo@codesourcery.com>
970
971 * ppc-linux-nat.c (ppc_linux_new_thread): Clear the new thread's
972 debug state prior to replicating existing hardware watchpoints or
973 breakpoints.
974
0c013353
JK
9752013-05-07 Jan Kratochvil <jan.kratochvil@redhat.com>
976
977 * gcore.c (gcore_create_callback): Ignore sections with
978 separate_debug_objfile_backlink != NULL.
979
a1217d97
SL
9802013-05-06 Sandra Loosemore <sandra@codesourcery.com>
981 Andrew Jenner <andrew@codesourcery.com>
982 Chung-Lin Tang <cltang@codesourcery.com>
983 Julian Brown <julian@codesourcery.com>
984
985 Based on the nios2-elf port from Altera Corporation.
986
987 * Makefile.in (ALL_TARGET_OBS): Add nios2-tdep.o and
988 nios2-linux-tdep.o.
989 (HFILES_NO_SRCDIR): Add nios2-tdep.h.
990 (ALLDEPFILES): Add nios2-tdep.c and nios2-linux-tdep.c.
991 * configure.tgt: Add nios2*-*-linux* and nios2*-*-* targets.
992 * nios2-tdep.h: New.
993 * nios2-tdep.c: New.
994 * nios2-linux-tdep.c: New.
995 * features/Makefile (WHICH): Add nios2-linux.
996 (nios2-linux-expedite): Set.
997 * features/nios2-cpu.xml: New.
998 * features/nios2.xml: New.
999 * features/nios2-linux.xml: New.
1000 * features/nios2.c: New (autogenerated).
1001 * features/nios2-linux.c: New (autogenerated).
1002 * regformats/nios2-linux.dat: New (autogenerated).
1003 * NEWS (Changes since GDB 7.6): Add new Nios II targets
1004 and commands.
1005
0892cb63
DE
10062013-05-06 Doug Evans <dje@google.com>
1007
3b7bacac
DE
1008 * symfile.c: Whitespace cleanup.
1009
0892cb63
DE
1010 * solist.h (struct target_so_ops): New member clear_so.
1011 * solib-svr4.c (svr4_clear_so): New function.
1012 (_initialize_svr4_solib): Set svr4_so_ops.clear_so.
1013 * solib.c (clear_so): Renamed from free_so_symbols.
1014 All callers updated. Call target clear_so if it exists.
1015
40501e00
TT
10162013-05-06 Tom Tromey <tromey@redhat.com>
1017
1018 * ada-lang.c (ada_value_primitive_packed_val): Don't
1019 call value_incref.
1020 * value.c (set_value_parent): Incref the new parent and decref
1021 the old parent.
1022 (value_copy, value_primitive_field): Use set_value_parent.
1023
b6807d98
TT
10242013-05-06 Tom Tromey <tromey@redhat.com>
1025
1026 * dwarf2loc.c (invalid_synthetic_pointer): Move earlier.
1027 (indirect_pieced_value): Call dwarf2_fetch_constant_bytes
1028 if needed.
1029 * dwarf2loc.h (dwarf2_fetch_constant_bytes): Declare.
1030 * dwarf2read.c (write_constant_as_bytes)
1031 (dwarf2_fetch_constant_bytes): New functions.
1032
3aef2284
TT
10332013-05-06 Tom Tromey <tromey@redhat.com>
1034
1035 * dwarf2read.c (dwarf2_const_value_data): Remove unused
1036 parameters.
1037 (dwarf2_const_value_attr): Update.
1038
66f65e2b
TT
10392013-05-06 Tom Tromey <tromey@redhat.com>
1040
1041 * somread.c (som_symfile_offsets): Add 'const' to addrs.
1042 * machoread.c (macho_symfile_offsets): Add 'const' to addrs.
1043 * xcoffread.c (xcoff_symfile_offsets): Add 'const' to addrs.
1044 Remove declaration.
1045
7919a973
TT
10462013-05-06 Tom Tromey <tromey@redhat.com>
1047
1048 * dwarf2read.c (dwarf2_const_value_attr): Use 'obstack', not
1049 objfile's obstack.
1050
a7bfba49
DE
10512013-05-06 Doug Evans <dje@google.com>
1052
3189cb12
DE
1053 * dbxread.c (process_one_symbol): Constify section_offsets parameter.
1054 * stabsread.h (process_one_symbol): Update declaration.
1055 * dwarf2read.c (dw2_relocate): Constify new_offsets, delta parameters.
1056 * elfread.c (elf_symfile_relocate_probe): Ditto.
1057 * psymtab.c (relocate_psymtabs): Ditto.
1058 * objfiles.c (objfile_relocate1): Constify new_offsets parameter.
1059 (objfile_relocate): Ditto.
1060 * objfiles.h (objfile_relocate): Update declaration.
1061 * symfile.c (relative_addr_info_to_section_offsets): Constify
1062 addrs parameter.
1063 (default_symfile_offsets): Ditto.
1064 (syms_from_objfile_1): Constify offsets parameter.
1065 (syms_from_objfile): Ditto.
1066 (symbol_file_add_with_addrs_or_offsets): Ditto.
1067 (symfile_map_offsets_to_segments): Constify data parameter.
1068 * symfile.h (struct quick_symbol_functions): Constify new_offsets,
1069 delta parameters of member relocate.
1070 (struct sym_probe_fns): Constify new_offsets,
1071 delta parameters of member sym_relocate_probe.
1072 (struct sym_fns): Constify section_addr_info parameter of member
1073 sym_offsets.
1074 (relative_addr_info_to_section_offsets): Update declaration.
1075 (default_symfile_offsets): Ditto.
1076 (syms_from_objfile): Ditto.
1077 (symfile_map_offsets_to_segments): Ditto.
1078
a7bfba49
DE
1079 * symfile.c (syms_from_objfile_1): Use correct section count when
1080 objfile->sf == NULL.
1081
5f8e0b8f
MF
10822013-05-06 Mike Frysinger <vapier@gentoo.org>
1083
1084 * common/linux-btrace.c (intel_supports_btrace): Fix indentation.
1085
ea52d893
DE
10862013-05-06 Doug Evans <dje@google.com>
1087
1088 * psympriv.h (struct partial_symtab): Augment comment for member
1089 section_offsets.
1090
4d1eb6b4
JB
10912013-05-06 Joel Brobecker <brobecker@adacore.com>
1092
1093 Reimplement shared library support on ppc-aix...
1094 * target.h (TARGET_OBJECT_AIX_LIBRARIES): New target_object enum.
1095 * features/library-list-aix.dtd: New file.
1096 * solib-aix.h, solib-aix.c: New file.
1097 * rs6000-aix-tdep.c: #include "solib.h" and "solib-aix.h".
1098 (rs6000_find_toc_address_hook): Delete.
1099 (rs6000_push_dummy_call): Rewrite code setting the TOC value.
1100 (rs6000_aix_init_osabi): Register solib_aix_so_ops.
1101 * rs6000-nat.c: Remove "xcoffsolib.h" include. Include
1102 "xml-utils.h".
1103 (map_vmap, vmap_exec, vmap_ldinfo, add_vmap, objfile_symbol_add)
1104 (vmap_symtab, fixup_breakpoints): Delete.
1105 (rs6000_xfer_shared_libraries): New function.
1106 (rs6000_xfer_partial): Add TARGET_OBJECT_AIX_LIBRARIES handling.
1107 (vmap_secs, bss_data_overlap, vmap_add_symbols): Delete.
1108 (xcoff_relocate_symtab, xcoff_relocate_core): Delete.
1109 (rs6000_ptrace_ldinfo, rs6000_core_ldinfo)
1110 (rs6000_xfer_shared_library): New function.
1111 (find_toc_address): Delete.
1112 (_initialize_rs6000_nat): Do not set rs6000_find_toc_address_hook.
1113 * rs6000-tdep.h (rs6000_find_toc_address_hook): Remove.
1114 * xcoffread.c (record_minimal_symbol): Reloate symbol address
1115 before creating minimal symbol. Adjust function description
1116 accordingly.
1117 (scan_xcoff_symtab): Replace call to
1118 prim_record_minimal_symbol_and_info by call to
1119 record_minimal_symbol.
1120 (xcoff_symfile_offsets): Reimplement mostly as a wrapper
1121 around default_symfile_offsets.
1122 * configure.tgt: Add solib-aix.o to gdb_target_obs for
1123 powerpc-aix targets.
1124 * config/rs6000/nm-rs6000.h: Delete.
1125 * config/powerpc/aix.mh (NAT_FILE): Delete.
1126 (NATDEPFILES): Remove xcoffsolib.o.
1127 * Makefile.in (XMLFILES): Add library-list-aix.dtd.
1128 (ALL_TARGET_OBS): Add solib-aix.o.
1129 (HFILES_NO_SRCDIR): Remove xcoffsolib.h and
1130 config/rs6000/nm-rs6000.h. Add solib-aix.h.
1131 (ALLDEPFILES): Add solib-aix.c. Remove xcoffsolib.c.
1132 * xcoffsolib.h, xcoffsolib.c: Delete.
1133
1134 * solib.c (reload_shared_libraries): Remove reference to
1135 SOLIB_CREATE_INFERIOR_HOOK.
1136 * breakpoint.c (handle_solib_event): Remove reference to SOLIB_ADD.
1137 (disable_breakpoints_in_shlibs): Remove reference to PC_SOLIB.
1138 (momentary_bkpt_re_set): Replace SOLIB_ADD by solib_add in
1139 comment.
1140 * corelow.c (deprecated_core_resize_section_table): Delete.
1141 * exec.c: Remove include of xcoffsolib.h".
1142 (map_vmap, vmap): Delete.
1143 (exec_close_1): Remove references to vmap.
1144 (exec_file_attach): Remove vmap handling code, and reference
1145 to DEPRECATED_IBM6000_TARGET.
1146 (bfdsec_to_vmap): Delete.
1147 (exec_files_info): Remove block of code handling VMAP.
1148 * infcmd.c (post_create_inferior): Remove reference to
1149 SOLIB_CREATE_INFERIOR_HOOK and SOLIB_ADD.
1150 * infrun.c (follow_exec): Remove reference to
1151 SOLIB_CREATE_INFERIOR_HOOK.
1152 * stack.c (print_frame): Remove reference to PC_SOLIB.
1153 * solib-dsbt.c (dsbt_current_sos): Adjust comment.
1154 (dsbt_relocate_main_executable): Likewise.
1155 * solib-frv.c (frv_current_sos): Likewise.
1156
0c4f667c
JB
11572013-05-06 Joel Brobecker <brobecker@adacore.com>
1158
1159 * sol-thread.c (rw_common): Cast BUF to "gdb_byte *" in calls
1160 to target_write_memory and target_read_memory.
1161
726ce67c
JB
11622013-05-06 Joel Brobecker <brobecker@adacore.com>
1163
1164 * darwin-nat.c (darwin_setup_fake_stop_event): New function.
1165 (darwin_attach): Adjust using darwin_setup_fake_stop_event.
1166
c8c9911f
JB
11672013-05-06 Joel Brobecker <brobecker@adacore.com>
1168
1169 * darwin-nat.c: Replace all "%x" instances in format strings
1170 into "0x%x" throughout.
1171
fda184b6
JB
11722013-05-06 Joel Brobecker <brobecker@adacore.com>
1173
1174 * darwin-nat.c (darwin_mourn_inferior): Replace call to
1175 gdb_assert by call to MACH_CHECK_ERROR.
1176 (darwin_attach_pid): Raise an error rather than a failed
1177 assertion when various system calls failed. Report a warning
1178 instead of raising a failed assertion when PREV_NOT is not NULL
1179 after call to mach_port_request_notification.
1180 (darwin_ptrace_me): Raise an error rather than a failed
1181 assertion when read returns nonzero.
1182
d1d69afb
JB
11832013-05-06 Joel Brobecker <brobecker@adacore.com>
1184
1185 * amd64-darwin-tdep.c: Remove #include "gdb_assert.h".
1186
dc90b24d
JK
11872013-05-05 Jan Kratochvil <jan.kratochvil@redhat.com>
1188
1189 * cleanups.c (restore_my_cleanups): New gdb_assert for SENTINEL_CLEANUP.
1190
faab9922
JK
11912013-05-05 Jan Kratochvil <jan.kratochvil@redhat.com>
1192
1193 * event-top.c (display_gdb_prompt): Call missing do_cleanups.
1194 * infcmd.c (get_return_value) <!stop_regs>: Do not overwrite CLEANUP.
1195 * symfile.c (symfile_bfd_open): New variable back_to. Do not leave
1196 a stale cleanup. Fix double free of NAME.
1197
e0ea48a0
EZ
11982013-05-04 Eli Zaretskii <eliz@gnu.org>
1199
1200 * windows-nat.c (windows_delete_thread): Accept an additional
1201 argument, the thread's exit code, and announce thread death when
1202 print_thread_events is non-zero and we are deleting a thread that
1203 is not the main thread.
1204 (get_windows_debug_event): Pass thread exit code to
1205 windows_delete_thread.
1206
83b2706a
KB
12072013-05-03 Kevin Buettner <kevinb@redhat.com>
1208
1209 * v850-tdep.c (elf-bfd.h, elf/v850.h): Include.
1210 (R_149_REGNUM, E_NUM_OF_V850E2_REGS, E_SELID_1_R0_REGNUM)
1211 (E_SELID_1_R31_REGNUM, E_SELID_2_R0_REGNUM, E_SELID_2_R31_REGNUM)
1212 (E_SELID_3_R0_REGNUM, E_SELID_3_R31_REGNUM, E_SELID_4_R0_REGNUM)
1213 (E_SELID_4_R31_REGNUM, E_SELID_5_R0_REGNUM, E_SELID_5_R31_REGNUM)
1214 (E_SELID_6_R0_REGNUM, E_SELID_6_R31_REGNUM, E_SELID_7_R0_REGNUM, E_SELID_7_R31_REGNUM)
1215 (E_VR0_REGNUM, E_VR31_REGNUM, E_NUM_OF_V850E3V5_REGS): Define.
1216 (v850_abi, V850_ABI_GCC, V850_ABI_RH850): New enum and constants.
1217 (gdbarch_tdep): New struct.
1218 (v850e2_register_name): Use E_NUM_OF_V850E2_REGS instead of
1219 E_NUM_REGS.
1220 (v850e3v5_register_name): New function.
1221 (v850_register_type): v850e3v5 vector registers are 64-bits wide.
1222 (v850_use_struct_convention): Add `gdbarch' parameter. Add new
1223 code handling the struct return conventions for the RH850 ABI.
1224 Update all callers.
1225 (v850_eight_byte_align_p): New function.
1226 (v850_push_call_dummy): Push structs by value, not by reference
1227 for the RH850 ABI. Add support for eight byte alignment.
1228 (v850_dbtrap_breakpoint_from_pc): New function.
1229 (v850_gdbarch_init): Add ABI detection code. Register
1230 v850e3v5_register_name for the v850e3v5 architecture. Set the
1231 number of registers for v850e3v5. Register
1232 v850_dbtrap_breakpoint_from_pc as appropriate.
1233 (_initialize_gdbarch_init): Registration bfd_arch_v850_rh850.
1234
d445b2f6
DE
12352013-05-03 Doug Evans <dje@google.com>
1236
1237 * objfiles.c (objfile_relocate): Use gdb_bfd_count_sections instead
1238 of bfd_count_sections.
1239 * solib-target.c (solib_target_relocate_section_addresses): Ditto.
1240 * symfile.c (default_symfile_offsets): Ditto.
1241 (syms_from_objfile_1): Ditto. Make dummy addrs list an array of
1242 one entry, not bfd_count_sections entries.
1243
b3ce41ea
KB
12442013-05-03 Kevin Buettner <kevinb@redhat.com>
1245
1246 * rl78-tdep.c (rl78_register_reggroup_p): Include SP in the
1247 `save' and `restore' register groups. Don't include SPL
1248 or SPH in these groups.
1249 (rl78_dwarf_reg_to_regnum): Adjust mapping for
1250 RL78_PC_REGNUM. Add mappings for RL78_PSW_REGNUM,
1251 RL78_ES_REGNUM, and RL78_CS_REGNUM.
1252 (rl78_gdbarch_init): Set `dwarf2_addr_size' to 4. Invoke
1253 dwarf2_append_unwinders().
1254
96f7d3f1
PW
12552013-05-03 Philippe Waroquiers <philippe.waroquiers@skynet.be>
1256
1257 * break-catch-sig.c (signal_catchpoint_breakpoint_hit): Do not
1258 ignore SIGINT and SIGTRAP in case these internal signals are
1259 caught explicitely.
1260
b9dd1947
JB
12612013-05-01 Joel Brobecker <brobecker@adacore.com>
1262
1263 * darwin-nat.c (darwin_read_write_inferior): Change types
1264 of parameters rdaddr and wraddr to "gdb_byte *". Change type
1265 of copy_count to "mach_msg_type_number_t".
1266 (darwin_read_dyld_info): Change type of parameter
1267 rdaddr to "gdb_byte *".
1268
4ca18a63
JB
12692013-05-01 Joel Brobecker <brobecker@adacore.com>
1270
1271 * solib-ia64-hpux.c (ia64_hpux_read_dynamic_info): Change cast
1272 of &info->load_map from "char *" to "gdb_byte *".
1273
2b692d32
JB
12742013-05-01 Joel Brobecker <brobecker@adacore.com>
1275
1276 * ia64-tdep.c (ia64_access_fpreg): Change cast of val
1277 from "char *" to "gdb_byte *".
1278 (ia64_access_rse_fpreg, ia64_access_mem): Likewise.
1279
a98c29a0
DE
12802013-04-30 Doug Evans <dje@google.com>
1281
6a506a2d
DE
1282 * dwarf2read.c (lookup_dwo_unit): Return NULL if DWO not found.
1283 (init_cutu_and_read_dies): Flag a complaint, not error, for bad
1284 DWO stub. If DWO isn't found, just use stub.
1285 (lookup_dwo_cutu): Don't try DWO if there's a DWP file.
1286
a98c29a0
DE
1287 * dwarf2read.c (dw2_find_symbol_file): Initialize filename before
1288 calling init_cutu_and_read_dies.
1289
f92b06da
WT
12902013-03-27 Walfred Tedeschi <walfred.tedeschi@intel.com>
1291
1292 * target-descriptions.c (maint_print_c_tdesc_cmd):
1293 Add case to parse structures as register types and
1294 bitfields.
1295
95eebdcc
WT
12962013-04-30 Walfred Tedeschi <walfred.tedeschi@intel.com>
1297
1298 * MAINTAINERS (Write After Approval): Add myself to the list.
1299
019c1128
JB
13002013-04-30 Joel Brobecker <brobecker@adacore.com>
1301
1302 * sol-thread.c (rw_common): Change type of parameter "buf"
1303 to "gdb_byte *".
1304 (ps_pdwrite, ps_ptwrite): Cast parameter "buf" in call to
1305 rw_common to "gdb_byte *" instead of "char *".
1306
5812197c
JB
13072013-04-30 Joel Brobecker <brobecker@adacore.com>
1308
1309 * sol-thread.c (info_cb) [ti.ti_startfunc != 0]: Change type
1310 of local variable msym to const struct bound_minimal_symbol.
1311 Adjust use accordingly.
1312 [ti.ti_state == TD_THR_SLEEP]: Likewise.
1313
ecccb813
TS
13142013-04-30 Samuel Thibault <samuel.thibault@gnu.org>
1315
1316 * i386gnu-nat.c (CREG_OFFSET): New macro.
1317 (creg_offset): New array.
1318 (CREG_ADDR): Use creg_offset instead of reg_offset.
1319
f1d02dd4 13202013-04-30 Joel Brobecker <brobecker@adacore.com>
54746424
JB
1321
1322 * mep-tdep.c (mep_write_pc): Delete.
1323 (mep_gdbarch_init): Remove call to set_gdbarch_write_pc.
1324 Add call to set_gdbarch_pc_regnum.
1325
f1d02dd4 13262013-04-30 Joel Brobecker <brobecker@adacore.com>
01da98f9
JB
1327
1328 * common/filestuff.c: Replace #include <dirent.h> by
1329 #include "gdb_dirent.h".
1330
f1d02dd4 13312013-04-30 Joel Brobecker <brobecker@adacore.com>
366c6766
JB
1332
1333 * common/filestuff.c: Replace #include <sys/stat.h> by
1334 #include "gdb_stat.h".
1335
b385a60d
PM
13362013-04-29 Pierre Muller <muller@sourceware.org>
1337
1338 * dwarf2read.c (handle_DW_AT_stmt_list): Avoid ARI warning for
1339 editCase function rule.
1340 (get_DW_AT_signature_type): Likewise.
1341
d27b54ad
JB
13422013-04-29 Joel Brobecker <brobecker@adacore.com>
1343
1344 * m32r-tdep.c (m32r_write_pc): Delete.
1345 (m32r_gdbarch_init): Remove call to set_gdbarch_write_pc.
1346 Add call to set_gdbarch_pc_regnum.
1347
47d21dc5
PM
13482013-04-29 Pierre Muller <muller@sourceware.org>
1349
1350 * ./contrib/ari/gdb_ari.sh (editCase rule): Fix spelling error.
1351
9056882e
JB
13522013-04-29 Joel Brobecker <brobecker@adacore.com>
1353
1354 * dwarf2read.c (get_DW_AT_signature_type): Add ARI marker.
1355
7ee4732a
YQ
13562013-04-28 Yao Qi <yao@codesourcery.com>
1357
1358 * solib-dsbt.c (fetch_loadmap): Re-indent.
1359 (displacement_from_map, enable_break2): Likewise.
1360 (dsbt_relocate_section_addresses): Likewise.
1361
2260af53 13622013-04-26 Joel Brobecker <brobecker@adacore.com>
1363
1364 GDB 7.6 released.
1365
ff546935
TT
13662013-04-25 Andreas Kaufmann <Andreas.Kaufmann@synopsys.com>
1367
1368 PR corefiles/14983:
1369 * dwarf2read.c (process_full_comp_unit): Always create a static
1370 block.
1371
40fb6c5e
HZ
13722013-04-25 Hui Zhu <hui@codesourcery.com>
1373
1374 * breakpoint.c (build_target_command_list): Change loc->cond_bytecode
1375 to loc->cmd_bytecode.
1376
74e04d1c
DE
13772013-04-24 Doug Evans <dje@google.com>
1378
1379 * dwarf2read.c (setup_type_unit_groups): Fix comment.
1380
3cf62c1d
KS
13812013-04-22 Keith Seitz <keiths@redhat.com>
1382
1383 * tracepoint.c (trace_save): Call the writer's start method.
1384
bf9e4d0c
MB
13852013-04-24 Muhammad Bilal <mbilal@codesourcery.com>
1386
1387 PR gdb/10462
1388 * cli/cli-decode.c (lookup_command): Show an error if there is no space
1389 before argument.
1390
5d71132c
TT
13912013-04-23 Tom Tromey <tromey@redhat.com>
1392
1393 * common/filestuff.c: Check USE_WIN32API before including
1394 sys/socket.h.
1395 (HAVE_F_GETFD): New define.
1396 (mark_cloexec): Check HAVE_F_GETFD.
1397 (gdb_open_cloexec): Change 'mode' to unsigned long.
1398 (gdb_socketpair_cloexec): Check HAVE_SOCKETPAIR.
1399 (gdb_pipe_cloexec): Check HAVE_PIPE.
1400 * common/filestuff.h (gdb_open_cloexec): Change 'mode' to unsigned
1401 long.
1402
a11cfd87
HZ
14032013-04-23 Hui Zhu <hui@codesourcery.com>
1404
1405 PR gdb/15293
a11cfd87
HZ
1406 * breakpoint.c (bpstat_what): Add BPSTAT_WHAT_SINGLE to bp_dprintf.
1407
2d9442cc
HZ
14082013-04-23 Hui Zhu <hui@codesourcery.com>
1409
1410 PR gdb/15165
2d9442cc
HZ
1411 * breakpoint.c (dprintf_print_recreate): New.
1412 (save_breakpoints): Let it not save dprintf commands.
1413 (initialize_breakpoint_ops): Set dprintf_print_recreate.
1414
614c279d
TT
14152013-04-22 Tom Tromey <tromey@redhat.com>
1416
1417 PR gdb/7912:
1418 * Makefile.in (SFILES): Add filestuff.c
1419 (COMMON_OBS): Add filestuff.o.
1420 (filestuff.o): New target.
1421 * auto-load.c (auto_load_objfile_script_1): Use
1422 gdb_fopen_cloexec.
1423 * auxv.c (procfs_xfer_auxv): Use gdb_open_cloexec.
1424 * cli/cli-cmds.c (shell_escape): Call close_most_fds.
1425 * cli/cli-dump.c (fopen_with_cleanup): Use gdb_fopen_cloexec.
1426 * common/agent.c (gdb_connect_sync_socket): Use
1427 gdb_socket_cloexec.
1428 * common/filestuff.c: New file.
1429 * common/filestuff.h: New file.
1430 * common/linux-osdata.c (linux_common_core_of_thread)
1431 (command_from_pid, commandline_from_pid, print_source_lines)
1432 (linux_xfer_osdata_shm, linux_xfer_osdata_sem)
1433 (linux_xfer_osdata_msg, linux_xfer_osdata_modules): Use
1434 gdb_fopen_cloexec.
1435 * common/linux-procfs.c (linux_proc_get_int)
1436 (linux_proc_pid_has_state): Use gdb_fopen_cloexec.
1437 * config.in, configure: Rebuild.
1438 * configure.ac: Don't check for sys/socket.h. Check for
1439 fdwalk, pipe2.
1440 * corelow.c (core_open): Use gdb_open_cloexec.
1441 * dwarf2read.c (write_psymtabs_to_index): Use gdb_fopen_cloexec.
1442 * fork-child.c (fork_inferior): Call close_most_fds.
1443 * gdb_bfd.c (gdb_bfd_open): Use gdb_open_cloexec.
1444 * inf-child.c (inf_child_fileio_readlink): Use gdb_open_cloexec.
1445 * linux-nat.c (linux_nat_thread_name, linux_proc_pending_signals):
1446 Use gdb_fopen_cloexec.
1447 (linux_proc_xfer_partial, linux_proc_xfer_spu): Use
1448 gdb_open_cloexec.
1449 (linux_async_pipe): Use gdb_pipe_cloexec.
1450 * remote-fileio.c (remote_fileio_func_open): Use
1451 gdb_open_cloexec.
1452 * remote.c (remote_file_put, remote_file_get): Use
1453 gdb_fopen_cloexec.
1454 * ser-pipe.c (pipe_open): Use gdb_socketpair_cloexec,
1455 close_most_fds.
1456 * ser-tcp.c (net_open): Use gdb_socket_cloexec.
1457 * ser-unix.c (hardwire_open): Use gdb_open_cloexec.
1458 * solib.c (solib_find): Use gdb_open_cloexec.
1459 * source.c (openp, find_and_open_source): Use gdb_open_cloexec.
1460 * tracepoint.c (tfile_start): Use gdb_fopen_cloexec.
1461 (tfile_open): Use gdb_open_cloexec.
1462 * tui/tui-io.c (tui_initialize_io): Use gdb_pipe_cloexec.
1463 * ui-file.c (gdb_fopen): Use gdb_fopen_cloexec.
1464 * xml-support.c (xml_fetch_content_from_file): Use
1465 gdb_fopen_cloexec.
1466 * main.c (captured_main): Call notice_open_fds.
1467
5fda2332
EBM
14682013-04-22 Edjunior Machado <emachado@linux.vnet.ibm.com>
1469
1470 * remote-sim.c (dump_mem): Change the type of 'buf' parameter from
1471 'char *' to 'gdb_byte *'.
1472 (gdbsim_store_register): Change the type of 'tmp' from 'char' to
1473 'gdb_byte'.
1474
eb6c553b
YQ
14752013-04-22 Yao Qi <yao@codesourcery.com>
1476
1477 * infrun.c: Fix typo in comment.
1478
9991b207
SDJ
14792013-04-22 Andrew Haley <aph@redhat.com>
1480
1481 * arm-tdep.c (BranchDest): Cast result as "unsigned long",
1482 instead of "long".
1483
8b4833e3
YQ
14842013-04-20 Yao Qi <yao@codesourcery.com>
1485
1486 * ctf.c (ctf_fetch_registers): Change the type of 'regs' from
1487 'char *' to 'gdb_byte *'. Cast the return value of
1488 'bt_ctf_get_char_array' to 'gdb_byte *'.
1489
bd3f3b55
PA
14902013-04-19 Pedro Alves <palves@redhat.com>
1491
1492 * configure.ac (build_warnings): Replace -Wno-pointer-sign with
1493 -Wpointer-sign.
1494 * configure: Regenerate.
1495
c49e7f76
PA
14962013-04-19 Pedro Alves <palves@redhat.com>
1497
1498 * ser-tcp.c (net_read_prim): Cast second argument to recv to
1499 'void *'.
1500
12ff8552
PA
15012013-04-19 Pedro Alves <palves@redhat.com>
1502
1503 * monitor.c (monitor_write_memory, monitor_write_memory_bytes):
1504 Change type of 'myaddr' parameter to gdb_byte pointer.
1505 (monitor_write_memory_longlongs): Likewise. Cast 'myaddr' pointer
1506 to 'long long' pointer instead of to 'unsigned long long'.
1507 (monitor_write_memory_block, monitor_read_memory_single)
1508 (monitor_read_memory): Change type of 'myaddr' parameter to
1509 gdb_byte pointer.
1510
9c37696b
PA
15112013-04-19 Pedro Alves <palves@redhat.com>
1512
1513 * record.c (validate_history_size): Make parameter 'setting'
1514 unsigned.
1515
a398505b
PA
15162013-04-19 Pedro Alves <palves@redhat.com>
1517
1518 * ctf.c (ctf_write_uploaded_tsv, ctf_write_uploaded_tp): Add casts
1519 to 'gdb_byte *'.
1520
9f8afa72
PA
15212013-04-19 Pedro Alves <palves@redhat.com>
1522
1523 * cp-valprint.c (cp_print_class_member): Change type of 'fieldno'
1524 local to int.
1525
c714b426
PA
15262013-04-19 Pedro Alves <palves@redhat.com>
1527
1528 * ada-lang.c (print_it_exception): Add cast to gdb_byte *.
1529 * ada-tasks.c (read_fat_string_value): Likewise.
1530
507a579c
PA
15312013-04-19 Pedro Alves <palves@redhat.com>
1532
1533 * dwarf2-frame.c (execute_cfa_program): Make 'bytes_read' local
1534 unsigned. Pass 'tmp' to safe_read_uleb128 instead of the signed
1535 'offset', and adjust.
1536
f9d83a0b
PA
15372013-04-19 Pedro Alves <palves@redhat.com>
1538
1539 * dwarf2read.c (dwarf2_get_dwz_file): Add cast to const char *.
1540 (read_index_from_section): Add cast to 'char *'.
1541
745eb4fd
PA
15422013-04-19 Pedro Alves <palves@redhat.com>
1543
1544 * xcoffread.c (xcoff_initial_scan): Add cast to 'char *'.
1545
db5be46f
PA
15462013-04-19 Pedro Alves <palves@redhat.com>
1547
1548 * coff-pe-read.c (read_pe_exported_syms): Handle strings as char.
1549
0f928d68
PA
15502013-04-19 Pedro Alves <palves@redhat.com>
1551
1552 * record-full.c (record_full_get_bookmark): Change local 'ret'
1553 type to char * and add cast to gdb_byte *.
1554 (record_full_goto_bookmark): Handle 'bookmark' argument as a
1555 string.
1556 * reverse.c (goto_bookmark_command): Add casts to gdb_byte *.
1557
89f6d837
PA
15582013-04-19 Pedro Alves <palves@redhat.com>
1559
1560 * python/py-inferior.c (infpy_write_memory): Add cast to gdb_byte
1561 * python/py-prettyprint.c (print_string_repr): Change type of
1562 'output' local to char *. Add cast to gdb_byte * in
1563 LA_PRINT_STRING call.
1564 (print_children): Change type of 'output' local to char *.
1565 * python/py-value.c (valpy_string): Add cast to const char * in
1566 PyUnicode_Decode call.
1567
ce6ec7d8
PA
15682013-04-19 Pedro Alves <palves@redhat.com>
1569
1570 * remote-mips.c (mips_cksum): Rename 'data' parameter to 'datastr'
1571 and change its type to 'const char *'. Adjust.
1572 (mips_send_packet): Add cast to 'char *', and remove cast to
1573 'unsigned char *'.
1574 (mips_receive_packet): Remove cast to 'unsigned char *'.
1575 (mips_load_srec): Use bfd_byte.
1576 (pmon_makeb64, pmon_zeroset): Make 'chksum' parameter unsigned.
1577 (pmon_checkset): Make 'value' parameter unsigned.
1578
fda0389f
PA
15792013-04-19 Pedro Alves <palves@redhat.com>
1580
1581 * common/agent.c (agent_run_command): Add cast to gdb_byte *.
1582
bc20a4af
PA
15832013-04-19 Pedro Alves <palves@redhat.com>
1584
1585 * remote.c (remote_write_bytes_aux, compare_sections_command)
1586 (remote_read_qxfer)
1587 (remote_search_memory, remote_hostio_pwrite, remote_hostio_pread)
1588 (remote_hostio_readlink, remote_bfd_iovec_pread)
1589 (remote_set_trace_notes): Use gdb_byte when RSP buffer is used as
1590 binary buffer, and char when buffer is used as string.
1591 * tracepoint.c (encode_source_string, tfile_write_uploaded_tp)
1592 (trace_save, tfile_open, traceframe_walk_blocks)
1593 (tfile_fetch_registers): Likewise.
1594
c628b528
PA
15952013-04-19 Pedro Alves <palves@redhat.com>
1596
1597 * ser-base.c (ser_base_write): Change prototype -- take 'void *'
1598 buffer and size_t size. Adjust.
1599 * ser-base.h (ser_base_write): Adjust.
1600 * ser-go32.c (cnts): Change type to size_t.
1601 (dos_write): Change prototype -- take 'void *'
1602 buffer and size_t size. Adjust.
1603 (dos_info): Print elements of 'cnts' as unsigned long.
1604 * serial.c (serial_write): Likewise.
1605 * serial.h (serial_write): Adjust.
1606 (struct serial_ops) <write>: Change prototype -- take 'void *'
1607 buffer and size_t size. Adjust.
1608
51a5cd90
PA
16092013-04-19 Pedro Alves <palves@redhat.com>
1610
1611 * c-lang.c (evaluate_subexp_c): Cast result of obstack_base to
1612 gdb_byte *.
1613 * linux-tdep.c (linux_make_mappings_corefile_notes): Likewise.
1614
a9933661
PA
16152013-04-19 Pedro Alves <palves@redhat.com>
1616
1617 * alpha-tdep.c (alpha_extract_return_value): Use
1618 regcache_cooked_read_unsigned to read 'v0'.
1619
19afdd07
PA
16202013-04-19 Pedro Alves <palves@redhat.com>
1621
1622 * xtensa-tdep.c (execute_l32e, execute_s32e): Change type of
1623 parameters 'at', 'as' and 'offset' to uint32_t.
1624
96b32e50
PA
16252013-04-19 Pedro Alves <palves@redhat.com>
1626
1627 * aarch64-tdep.c (aarch64_analyze_prologue): Change type of local
1628 'is64' to signed 'int'.
1629
eb1bd1fb
PA
16302013-04-19 Pedro Alves <palves@redhat.com>
1631
1632 * s390-tdep.c (is_rs, is_rsy, is_rx, is_rxy): Change type of 'd2'
1633 parameter to int *.
1634
463920bf
PA
16352013-04-19 Pedro Alves <palves@redhat.com>
1636
1637 * ppc-linux-tdep.c (ppc_skip_trampoline_code): Change local
1638 'insnbuf' buffer type to unsigned int[].
1639
70242eb1
PA
16402013-04-19 Pedro Alves <palves@redhat.com>
1641
1642 * mips-tdep.c (mips_read_pc): Change local 'pc' type to LONGEST.
1643
9d1dd0e2
PA
16442013-04-19 Pedro Alves <palves@redhat.com>
1645
1646 * mep-tdep.c (mep_get_insn): Change 'insn' parameter type to
1647 unsigned long *.
1648
44096aee
PA
16492013-04-19 Pedro Alves <palves@redhat.com>
1650
1651 * alpha-tdep.c (heuristic_fence_post): Change type to int.
1652 (alpha_heuristic_proc_start): Adjust to check -1 instead of
1653 UINT_MAX.
1654 * mips-tdep.c (heuristic_fence_post): Change type to int.
1655 (heuristic_proc_start): Adjust to check -1 instead of UINT_MAX.
1656
e4286e57
PA
16572013-04-19 Pedro Alves <palves@redhat.com>
1658
1659 * cris-tdep.c (usr_cmd_cris_version): Make unsigned.
1660 (struct gdbarch_tdep) <cris_version>: Make unsigned.
1661 (cris_spec_reg_applicable, cris_gdbarch_init): Adjust locals.
1662
001f13d8
PA
16632013-04-19 Pedro Alves <palves@redhat.com>
1664
1665 * avr-tdep.c (avr_io_reg_read_command): New local 'bufstr'. Use
1666 it to get a string view of the byte buffer.
1667 * i386-cygwin-tdep.c (core_process_module_section): Change local 'buf'
1668 type to gdb_byte *. Adjust.
1669 * linux-tdep.c (linux_info_proc, linux_find_memory_regions_full):
1670 Change local to char *.
1671 * solib-darwin.c (find_program_interpreter): Change return type to
1672 char *. Adjust.
1673 (darwin_solib_get_all_image_info_addr_at_init): Adjust.
1674 * solib-dsbt.c (enable_break2): Change local 'buf' to char *.
1675 * solib-frv.c (enable_break2): Change local 'buf' to char *.
1676 * solib-spu.c (spu_current_sos): Add gdb_byte * cast.
1677 * solib-svr4.c (find_program_interpreter): Change return type to
1678 char *. Adjust.
1679 (enable_break): Change local 'interp_name' to char *.
1680 * spu-multiarch.c (spu_xfer_partial): Add cast to 'char *'.
1681 * spu-tdep.c (spu_pseudo_register_read_spu): Add cast to 'char *'.
1682 (spu_pseudo_register_write_spu): Use char for string buffer.
1683 Adjust.
1684 (info_spu_event_command, info_spu_signal_command): Add casts to
1685 'char *'.
1686
948f8e3d
PA
16872013-04-19 Pedro Alves <palves@redhat.com>
1688
1689 * aarch64-tdep.c (aarch64_default_breakpoint): Change type to
1690 gdb_byte[].
1691 (aarch64_breakpoint_from_pc): Change return type to gdb_byte *.
1692 * ada-lang.c (ada_value_assign): Use gdb_byte.
1693 * alphanbsd-tdep.c (sigtramp_retcode): Change type to gdb_byte[].
1694 (alphanbsd_sigtramp_offset): Use gdb_byte.
1695 * arm-linux-tdep.c (arm_linux_arm_le_breakpoint)
1696 (arm_linux_arm_be_breakpoint, eabi_linux_arm_le_breakpoint)
1697 (eabi_linux_arm_be_breakpoint, arm_linux_thumb_be_breakpoint)
1698 (arm_linux_thumb_le_breakpoint, arm_linux_thumb2_be_breakpoint)
1699 (arm_linux_thumb2_le_breakpoint): Change type to gdb_byte[].
1700 * arm-tdep.c (arm_stub_unwind_sniffer)
1701 (arm_displaced_init_closure): Use gdb_byte.
1702 (arm_default_arm_le_breakpoint, arm_default_arm_be_breakpoint)
1703 (arm_default_thumb_le_breakpoint)
1704 (arm_default_thumb_be_breakpoint): Change type to gdb_byte[].
1705 * arm-tdep.h (struct gdbarch_tdep) <arm_breakpoint,
1706 thumb_breakpoint, thumb2_breakpoint>: Change type to gdb_byte *.
1707 * arm-wince-tdep.c (arm_wince_le_breakpoint)
1708 (arm_wince_thumb_le_breakpoint): Change type to gdb_byte[].
1709 * armnbsd-tdep.c (arm_nbsd_arm_le_breakpoint)
1710 (arm_nbsd_arm_be_breakpoint, arm_nbsd_thumb_le_breakpoint)
1711 (arm_nbsd_thumb_be_breakpoint): Change type to gdb_byte[].
1712 * armobsd-tdep.c (arm_obsd_thumb_le_breakpoint)
1713 (arm_obsd_thumb_be_breakpoint): Change type to gdb_byte[].
1714 * cris-tdep.c (push_stack_item, cris_push_dummy_call)
1715 (cris_store_return_value, cris_extract_return_value): Use
1716 gdb_byte.
1717 (constraint): Change type of parameter to char * from signed
1718 char*. Use gdb_byte.
1719 * dwarf2loc.c (read_pieced_value, write_pieced_value): Change type
1720 of local buffer to gdb_byte *.
1721 * dwarf2read.c (read_index_from_section): Use gdb_byte.
1722 (create_dwp_hash_table): Change type of locals to gdb_byte *.
1723 (add_address_entry): Change type of local buffer to gdb_byte[].
1724 * frv-tdep.c (frv_adjust_breakpoint_address, find_func_descr)
1725 (frv_push_dummy_call): Use gdb_byte.
1726 * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code)
1727 (hppa_hpux_supply_ss_fpblock, hppa_hpux_supply_ss_wide)
1728 (hppa_hpux_supply_save_state): Use gdb_byte.
1729 * hppa-tdep.c (hppa32_push_dummy_call)
1730 (hppa64_convert_code_addr_to_fptr): Use gdb_byte.
1731 * ia64-tdep.c (extract_bit_field, replace_bit_field)
1732 (slotN_contents, replace_slotN_contents): Change type of parameter
1733 to gdb_byte *.
1734 (fetch_instruction, ia64_pseudo_register_write)
1735 (ia64_register_to_value, ia64_value_to_register)
1736 (ia64_extract_return_value, ia64_store_return_value)
1737 (ia64_push_dummy_call): Use gdb_byte.
1738 * m32c-tdep.c (m32c_return_value): Remove cast.
1739 * m68hc11-tdep.c (m68hc11_pseudo_register_write)
1740 (m68hc11_push_dummy_call, m68hc11_store_return_value): Use
1741 gdb_byte.
1742 * mipsnbsd-tdep.c (mipsnbsd_get_longjmp_target): Use gdb_byte.
1743 * mn10300-tdep.c (mn10300_store_return_value)
1744 (mn10300_breakpoint_from_pc, mn10300_push_dummy_call): Use
1745 gdb_byte.
1746 * moxie-tdep.c (moxie_process_readu): Use gdb_byte.
1747 (moxie_process_record): Remove casts.
1748 * ppc-ravenscar-thread.c (supply_register_at_address)
1749 (ppc_ravenscar_generic_store_registers): Use gdb_byte.
1750 * ravenscar-thread.c (get_running_thread_id): Use gdb_byte.
1751 * remote-m32r-sdi.c (m32r_fetch_register): Use gdb_byte.
1752 * remote-mips.c (mips_xfer_memory): Use gdb_byte.
1753 * remote.c (compare_sections_command): Use gdb_byte.
1754 * score-tdep.c (score7_free_memblock): Change type of parameter to
1755 gdb_byte *.
1756 * sh-tdep.c (sh_justify_value_in_reg): Change return type to
1757 gdb_byte *. Use gdb_byte.
1758 (sh_push_dummy_call_fpu): Use gdb_byte.
1759 (sh_extract_return_value_nofpu, sh_extract_return_value_fpu)
1760 (sh_store_return_value_nofpu, sh_store_return_value_fpu)
1761 (sh_register_convert_to_virtual, sh_register_convert_to_raw):
1762 Change parameter type to 'gdb_byte *'. Use gdb_byte.
1763 (sh_pseudo_register_read, sh_pseudo_register_write): Use gdb_byte.
1764 * sh64-tdep.c (sh64_push_dummy_call): Use gdb_byte.
1765 (sh64_store_return_value, sh64_register_convert_to_virtual):
1766 Change parameter type to 'gdb_byte *'. Use gdb_byte.
1767 (sh64_pseudo_register_write): Use gdb_byte.
1768 * solib-darwin.c (darwin_current_sos): Add casts to 'gdb_byte *'.
1769 * solib-irix.c (fetch_lm_info): Likewise. Use gdb_byte for byte
1770 buffer.
1771 (irix_current_sos): Use gdb_byte.
1772 * solib-som.c (som_current_sos): Use gdb_byte.
1773 * sparc-ravenscar-thread.c (supply_register_at_address)
1774 (sparc_ravenscar_generic_store_registers): Use gdb_byte.
1775 * spu-multiarch.c (spu_xfer_partial): Add cast to 'char *'.
1776 * spu-tdep.c (spu_get_overlay_table): Use gdb_byte.
1777 * tic6x-tdep.c (tic6x_breakpoint_from_pc): Change return type to
1778 'gdb_byte *'.
1779 * tic6x-tdep.h (struct gdbarch_tdep) <breakpoint>: Change type to
1780 'gdb_byte *'.
1781 * tracepoint.c (tfile_fetch_registers): Use gdb_byte.
1782 * xstormy16-tdep.c (xstormy16_extract_return_value)
1783 (xstormy16_store_return_value): Change parameter type to
1784 'gdb_byte *'. Adjust.
1785 (xstormy16_push_dummy_call): Use gdb_byte.
1786 * xtensa-tdep.c (xtensa_scan_prologue, call0_ret)
1787 (call0_analyze_prologue, execute_code): Use gdb_byte.
1788
433730c9
PA
17892013-04-19 Vladimir Kargov <kargov@gmail.com>
1790 Pedro Alves <palves@redhat.com>
1791
1792 * i387-tdep.c (i387_print_float_info): Use gdb_byte for pointer to
1793 value contents.
1794
ac9ec31b
DE
17952013-04-17 Doug Evans <dje@google.com>
1796
1797 * dwarf2read.c (struct signatured_type): New member type.
1798 (struct attribute): Replace member signatured_type with signature.
1799 (DW_SIGNATURE): Replaces DW_SIGNATURE_TYPE.
1800 (read_call_site_scope): Call follow_die_ref instead of
1801 follow_die_ref_or_sig.
1802 (read_structure_type): Rewrite handling of signatured types.
1803 (read_enumeration_type): Ditto.
1804 (read_attribute_value): Update.
1805 (build_error_marker_type): New function.
1806 (lookup_die_type): Add assert. Rewrite handling of signatured types.
1807 Don't call error for bad types, just build an error marker type.
1808 (dump_die_shallow): Update.
1809 (follow_die_sig_1): Renamed from follow_die_sig.
1810 Don't call error for bad types, instead return NULL.
1811 (follow_die_sig): New function.
1812 (get_signatured_type, get_DW_AT_signature_type): New functions.
1813
e546e8bb
YZ
18142013-04-17 Yufeng Zhang <yufeng.zhang@arm.com>
1815
1816 * aarch64-tdep.c (aarch64_write_pc): Removed.
543cdd95
JB
1817 (aarch64_gdbarch_init): Remove set_gdbarch_write_pc of the above
1818 function.
e546e8bb 1819
ab116149
YQ
18202013-04-17 Yao Qi <yao@codesourcery.com>
1821
1822 * top.c (print_gdb_configuration): Print configure-time
1823 parameter on using libbabeltrace or not.
1824
488a42b8
PA
18252013-04-16 Pedro Alves <palves@redhat.com>
1826
1827 * copyright.py (EXCLUDE_LIST): Add gdb/common/glibc_thread_db.h.
1828
f5fb825b
PA
18292013-04-16 Pedro Alves <palves@redhat.com>
1830
85d494ea 1831 * common/glibc_thread_db.h: Update from upstream glibc
f5fb825b
PA
1832 (git 568035b7874a099087b77f7bba3e36a1173787b0).
1833
e1154999
PA
18342013-04-16 Pedro Alves <palves@redhat.com>
1835
1836 * common/gdb_thread_db.h [!HAVE_THREAD_DB_H]: Factor out to ...
1837 * common/glibc_thread_db.h: ... this new file ...
1838 * common/gdb_thread_db.h [!HAVE_THREAD_DB_H]: ... and include it.
1839
e3b50a7f
PA
18402013-04-16 Will Newton <will.newton@gmail.com>
1841 Pedro Alves <palves@redhat.com>
1842
1843 PR build/11881
1844
1845 * common/gdb_thread_db.h (LIBTHREAD_DB_SO)
1846 (LIBTHREAD_DB_SEARCH_PATH): Move outside of #ifdef
1847 HAVE_THREAD_DB_H.
1848
1c2e4450
PA
18492013-04-16 Pedro Alves <palves@redhat.com>
1850 Eli Zaretskii <eliz@gnu.org>
1851
1852 * NEWS: Mention "set foo unlimited".
1853
4031ecc5
DE
18542013-04-15 Doug Evans <dje@google.com>
1855
19c3d4c9
DE
1856 * dwarf2read.c (struct dwo_file): Replace member "cus" with "cu".
1857 (struct create_dwo_cu_data): Renamed from create_dwo_info_table_data.
1858 (create_dwo_cu_reader): Renamed from
1859 create_dwo_debug_info_hash_table_reader.
1860 (create_dwo_cu): Renamed from create_dwo_debug_info_hash_table.
1861 Remove support for multiple CUs in a DWO file.
1862 (open_and_init_dwo_file, lookup_dwo_cutu): Update.
1863
4031ecc5
DE
1864 * dwarf2read.c (create_debug_types_hash_table): Use hex_string
1865 instead of phex.
1866 (lookup_dwo_unit, create_dwo_debug_info_hash_table_reader): Ditto.
1867 (create_dwo_in_dwp): Ditto.
1868
b340913d
TT
18692013-04-15 Tom Tromey <tromey@redhat.com>
1870
1871 * NEWS: Move recent entries into "since 7.6" section.
1872
cc16e6c9
TT
18732013-04-15 Tom Tromey <tromey@redhat.com>
1874
1875 PR c++/13588:
1876 * NEWS: Update.
1877 * break-catch-throw.c (struct exception_catchpoint)
1878 <exception_rx, pattern>: New fields.
1879 (fetch_probe_arguments, dtor_exception_catchpoint)
1880 (check_status_exception_catchpoint)
1881 (print_one_detail_exception_catchpoint): New functions.
1882 (handle_gnu_v3_exceptions): Add "except_rx" argument.
1883 Compile regular expression if needed.
1884 (extract_exception_regexp): New function.
1885 (catch_exception_command_1): Use extract_exception_regexp.
1886 (compute_exception): Use fetch_probe_arguments.
1887 (initialize_throw_catchpoint_ops): Set dtor, print_one_detail,
1888 and check_status fields.
1889 * cp-abi.c (cplus_typename_from_type_info): New function.
1890 * cp-abi.h (cplus_typename_from_type_info): Declare.
1891 (struct cp_abi_ops) <get_typename_from_type_info>: New field.
1892 * gdb_regex.h (compile_rx_or_error): Declare.
1893 * gnu-v3-abi.c (gnuv3_get_typename_from_type_info): Update
1894 comment.
1895 (init_gnuv3_ops): Set get_type_from_type_info field.
1896 * probe.c (compile_rx_or_error): Move...
1897 * utils.c (compile_rx_or_error): ... here.
1898
72f1fe8a
TT
18992013-04-15 Tom Tromey <tromey@redhat.com>
1900
1901 PR c++/15176:
1902 * NEWS: Update.
1903 * break-catch-throw.c (compute_exception): New function.
1904 (exception_funcs): New global.
1905 (_initialize_break_catch_throw): Create $_exception.
1906 * cp-abi.c (cplus_type_from_type_info): New function.
1907 * cp-abi.h (cplus_type_from_type_info): Declare.
1908 (struct cp_abi_ops) <get_type_from_type_info>: New field.
1909 * gnu-v3-abi.c (gnuv3_get_typename_from_type_info)
1910 (gnuv3_get_type_from_type_info): New functions.
1911 (init_gnuv3_ops): Set get_type_from_type_info ABI field.
1912
fc4746a2
TT
19132013-04-15 Tom Tromey <tromey@redhat.com>
1914
1915 * break-catch-throw.c (struct exception_names): New.
1916 (exception_functions): Change type.
1917 (re_set_exception_catchpoint): Look for SDT probes.
1918
15a73f56
TT
19192013-04-15 Tom Tromey <tromey@redhat.com>
1920
1921 PR c++/10119:
1922 * break-catch-throw.c (exception_functions): New global.
1923 (gnu_v3_exception_catchpoint_ops): Move earlier.
1924 (struct exception_catchpoint): New.
1925 (classify_exception_breakpoint): Rewrite.
1926 (re_set_exception_catchpoint): New function.
1927 (handle_gnu_v3_exceptions): Return void. Use init_catchpoint.
1928 Allocate a struct exception_catchpoint.
1929 (catch_exception_command_1): Update.
1930 (initialize_throw_catchpoint_ops): Set 're_set' method.
1931
916703c0
TT
19322013-04-15 Tom Tromey <tromey@redhat.com>
1933
1934 * Makefile.in (SFILES): Add break-catch-throw.c
1935 (COMMON_OBS): Add break-catch-throw.o.
1936 * break-catch-throw.c: New file.
1937 * breakpoint.c: Move exception-catching code to new file.
1938 (ep_parse_optional_if_clause): No longer static.
1939 * breakpoint.h (ep_parse_optional_if_clause): Declare.
1940
6e72ca20
TT
19412013-04-15 Tom Tromey <tromey@redhat.com>
1942
1943 PR c++/9065:
1944 * NEWS: Update.
1945 * breakpoint.c (watchpoint_exp_is_const): Add OP_TYPEID.
1946 * c-exp.y (TYPEID): New token.
1947 (exp): Add new TYPEID productions.
1948 (ident_tokens): Add "typeid".
1949 * cp-abi.c (cplus_typeid, cplus_typeid_type): New functions.
1950 * cp-abi.h (cplus_typeid, cplus_typeid_type): Declare.
1951 (struct cp_abi_ops) <get_typeid, get_typeid_type>: New fields.
1952 * eval.c (evaluate_subexp_standard) <OP_TYPEID>: New case.
1953 * expprint.c (dump_subexp_body_standard) <OP_TYPEID>: New
1954 case.
1955 * gnu-v3-abi.c (std_type_info_gdbarch_data): New global.
1956 (build_std_type_info_type, gnuv3_get_typeid_type)
1957 (gnuv3_get_typeid): New functions.
1958 (init_gnuv3_ops): Initialize std_type_info_gdbarch_data. Set
1959 new fields on ABI object.
1960 * parse.c (operator_length_standard) <OP_TYPEID>: New case.
1961 * std-operator.def (OP_TYPEID): New.
1962
715c6909
TT
19632013-04-15 Tom Tromey <tromey@redhat.com>
1964
1965 * elfread.c (elf_symtab_read): Install versioned symbol under
1966 unversioned name as well.
1967
8de20a37
TT
19682013-04-15 Tom Tromey <tromey@redhat.com>
1969
1970 PR c++/11990:
1971 * c-lang.c (cplus_language_defn): Use gdb_demangle.
1972 * c-typeprint.c (c_type_print_base): Use gdb_demangle.
1973 * cp-support.c (mangled_name_to_comp): Use gdb_demangle.
1974 (gdb_demangle): New function.
1975 * cp-support.h (gdb_demangle): Declare.
1976 * dwarf2read.c (dwarf2_physname, fixup_partial_die)
1977 (dwarf2_name): Use gdb_demangle.
1978 * gdbtypes.c (check_stub_method): Use gdb_demangle.
1979 * gnu-v3-abi.c (gnuv3_rtti_type): Strip @plt and version
1980 suffixes from name.
1981 (gnuv3_print_method_ptr): Use gdb_demangle.
1982 * jv-lang.c (java_demangle): Use gdb_demangle.
1983 * jv-typeprint.c (java_type_print_base): Use gdb_demangle.
1984 * language.c (unk_lang_demangle): Use gdb_demangle.
1985 * symtab.c (symbol_find_demangled_name)
1986 (demangle_for_lookup): Use gdb_demangle.
1987
591f19e8
TT
19882013-04-15 Tom Tromey <tromey@redhat.com>
1989
1990 PR c++/12824:
1991 * NEWS: Update.
1992 * breakpoint.c (enum exception_event_kind) <EX_EVENT_RETHROW>:
1993 New constant.
1994 (classify_exception_breakpoint): New function.
1995 (print_it_exception_catchpoint, print_one_exception_catchpoint)
1996 (print_mention_exception_catchpoint)
1997 (print_recreate_exception_catchpoint, handle_gnu_v3_exceptions)
1998 (catch_exception_command_1): Handle "rethrow" catchpoint.
1999 (catch_rethrow_command): New function.
2000 (_initialize_breakpoint): Add "catch rethrow" command.
2001
4d40cad2
PM
20022013-04-15 Pierre Muller <muller@sourceware.org>
2003
2004 * contrib/ari/gdb_ari.sh (write_pc rule): Do not consider
2005 set_gdbarch_write_pc as deprecated anymore.
2006
30bcb456
JB
20072013-04-15 Joel Brobecker <brobecker@adacore.com>
2008
2009 * spu-tdep.c (spu_write_pc): Add empty line after local variable
2010 declarations.
2011
da9160e4
YQ
20122013-04-13 Yao Qi <yao@codesourcery.com>
2013
2014 * ctf.c (_initialize_ctf): Include "completer.h".
2015 Call add_target_with_completer instead of add_target.
2016
39ed5604
JK
20172013-04-12 Jan Kratochvil <jan.kratochvil@redhat.com>
2018
2019 Fix GDB regression related to PR binutils/14813.
2020 * jit.c (mem_bfd_iovec_close): Return 0 for success.
2021 * minidebug.c (lzma_close): Add return value comment.
2022 * remote.c (remote_bfd_iovec_close): Return 0 for success.
2023 * solib-spu.c (spu_bfd_iovec_close): Likewise.
2024 * spu-linux-nat.c (spu_bfd_iovec_close): Likewise.
2025
20262013-04-12 Jan Kratochvil <jan.kratochvil@redhat.com>
49369217
JK
2027
2028 * config.in: Regenerate.
2029
d521ce57
TT
20302013-04-12 Tom Tromey <tromey@redhat.com>
2031
2032 * dwarf2-frame.c (struct comp_unit) <dwarf_frame_buffer>: Now
2033 const.
2034 * dwarf2read.c (struct dwarf2_section_info) <buffer>: Now const.
2035 (struct die_reader_specs) <buffer>: Likewise.
2036 (die_reader_func_ftype): Make 'info_ptr' const.
2037 (struct line_header) <include_dirs, statement_program_start,
2038 statement_program_end>: Now const.
2039 (struct file_entry) <name>: Likewise.
2040 (struct partial_die_info) <sibling>: Likewise.
2041 (struct dwarf_block) <data>: Likewise.
2042 (dwarf2_read_section): Remove cast.
2043 (dwarf2_get_section_info): Make 'bufp' const.
2044 (read_index_from_section): Constify.
2045 (dw2_get_file_names_reader): Make 'info_ptr' const.
2046 (dw2_get_primary_filename_reader): Likewise.
2047 (read_comp_unit_head): Make 'info_ptr' and return type const.
2048 (read_and_check_comp_unit_head, read_and_check_type_unit_head):
2049 Likewise.
2050 (read_abbrev_offset): Constify.
2051 (dwarf2_create_include_psymtab): Make 'name' const.
2052 (create_debug_types_hash_table): Update.
2053 (read_cutu_die_from_dwo): Make 'result_info_ptr' const.
2054 (init_cutu_and_read_dies, init_cutu_and_read_dies_no_follow):
2055 Constify.
2056 (process_psymtab_comp_unit_reader, build_type_psymtabs_reader)
2057 (load_partial_comp_unit_reader): Make 'info_ptr' const.
2058 (read_comp_units_from_section): Constify.
2059 (peek_abbrev_code, peek_die_abbrev, skip_children, skip_one_die)
2060 (locate_pdi_sibling, load_full_comp_unit_reader): Make 'info_ptr'
2061 const.
2062 (dwarf2_compute_name, setup_type_unit_groups): Constify.
2063 (create_dwo_debug_info_hash_table): Make 'info_ptr' const.
2064 (create_dwp_hash_table, dwarf2_ranges_read)
2065 (dwarf2_record_block_ranges): Constify.
2066 (read_die_and_children, read_die_and_siblings_1)
2067 (read_die_and_siblings): Make 'info_ptr' and 'new_info_ptr'
2068 const.
2069 (read_full_die_1, read_full_die): Make 'info_ptr' const.
2070 (abbrev_table_read_table): Constify.
2071 (load_partial_dies): Make 'info_ptr' const.
2072 (read_partial_die, read_attribute_value, read_attribute): Make
2073 'info_ptr' and return type const.
2074 (read_address, read_initial_length)
2075 (read_checked_initial_length_and_offset, read_offset)
2076 (read_offset_1, read_n_bytes, read_direct_string): Make 'buf'
2077 const.
2078 (read_direct_string): Make 'buf' and return type const.
2079 (read_indirect_string_at_offset, read_indirect_string_from_dwz)
2080 (read_indirect_string): Make return type const.
2081 (read_unsigned_leb128, read_signed_leb128): Make 'buf' const.
2082 (read_addr_index_from_leb128, dwarf2_read_addr_index_reader): Make
2083 'info_ptr' const.
2084 (read_str_index): Make return type const.
2085 (add_include_dir): Make 'include_dir' const.
2086 (add_file_name): Make 'name' const.
2087 (dwarf_decode_line_header): Constify.
2088 (psymtab_include_file_name): Make return type const.
2089 (dwarf_decode_lines_1, dwarf_decode_lines): Constify.
2090 (dwarf2_start_subfile): Make 'filename' const.
2091 (dwarf2_const_value_attr): Make 'bytes' const.
2092 (read_signatured_type_reader): Make 'info_ptr' const.
2093 (decode_locdesc): Constify.
2094 (skip_form_bytes): Make 'bytes', 'buffer_end', and return type
2095 const.
2096 (skip_unknown_opcode): Make 'opcode_definitions', 'mac_ptr',
2097 'mac_end', and return type const.
2098 (dwarf_parse_macro_header): Make 'mac_ptr' and return type const.
2099 (dwarf_decode_macro_bytes): Make 'mac_ptr', 'mac_end', and return
2100 type const.
2101 (per_cu_header_read_in): Constify.
2102 * symfile.h (dwarf2_get_section_info): Update.
2103
d47a1bc1
TT
21042013-04-12 Tom Tromey <tromey@redhat.com>
2105
2106 * symtab.h (struct general_symbol_info) <value.bytes>: Make const.
2107
6eaaf48b
EZ
21082013-04-12 Eli Zaretskii <eliz@gnu.org>
2109
fc4c25bf 2110 * NEWS: Mention "show configuration", --configuration.
6eaaf48b
EZ
2111 * top.c (print_gdb_configuration): New function, displays the
2112 details about GDB configure-time parameters.
2113 (print_gdb_version): Mention "show configuration".
6eaaf48b
EZ
2114 * cli/cli-cmds.c (show_configuration): New function.
2115 (_initialize_cli_cmds): Add the "show configuration" command.
6eaaf48b
EZ
2116 * main.c (captured_main) <print_configuration>: New static var.
2117 <long_options>: Use it.
2118 If --configuration was given, call print_gdb_configuration.
2119
b292c783
JK
21202013-04-11 Jan Kratochvil <jan.kratochvil@redhat.com>
2121 Pedro Alves <palves@redhat.com>
2122
2123 * Makefile.in (HAVE_NATIVE_GCORE_TARGET): New.
2124 (generated_files): Add gcore.
2125 (install-only, uninstall): Add gcore if HAVE_NATIVE_GCORE_TARGET or
2126 HAVE_NATIVE_GCORE_HOST.
2127 (gcore): New.
2128 * NEWS (Changes since GDB 7.6): Mention newly installed gcore.
2129 * config/alpha/alpha-osf3.mh, config/i386/fbsd.mh,
2130 config/i386/fbsd64.mh, config/i386/i386gnu.mh, config/i386/i386sol2.mh,
2131 config/i386/sol2-64.mh, config/mips/irix5.mh, config/mips/irix6.mh,
2132 config/powerpc/fbsd.mh, config/sparc/fbsd.mh, config/sparc/sol2.mh:
2133 Add HAVE_NATIVE_GCORE_HOST.
2134 * configure: Regenerate.
2135 * configure.ac (HAVE_NATIVE_GCORE_TARGET): New, set it, AC_SUBST it.
2136 New AC_SUBST fir GDB_TRANSFORM_NAME and GCORE_TRANSFORM_NAME. New
2137 AC_CONFIG_FILES for gcore.
2138 * configure.tgt: Add gdb_have_gcore to the initial comment. Set
2139 gdb_have_gcore.
2140 * gdb_gcore.sh: Rename to ...
2141 * gcore.in: ... here. Remove gcore.sh comment. Use GDB_TRANSFORM_NAME
2142 and GCORE_TRANSFORM_NAME substitutions.
2143
c96b3c4f
JK
2144 Fix parsing tabs in ${gdb_target_obs}.
2145 * configure.tgt (gdb_have_gcore): Replace case with for and if.
2146
d6cb50a2
JK
21472013-04-11 Jan Kratochvil <jan.kratochvil@redhat.com>
2148
2149 * remote.c (unpush_and_perror): Add output message final dot.
2150
cf2cb5ec
YQ
21512013-04-11 Yao Qi <yao@codesourcery.com>
2152
2153 * tracepoint.c (tfile_interp_line): Fit parameters line and
2154 utpp in one line.
2155
07293be4
JB
21562013-04-10 Joel Brobecker <brobecker@adacore.com>
2157
2158 * solib.c (solib_map_sections): Remove code overwriting
2159 SO->SO_NAME with the bfd's filename.
2160
f81d1120
PA
21612013-04-10 Pedro Alves <palves@redhat.com>
2162
2163 * cli/cli-decode.c (integer_unlimited_completer): New function.
2164 (add_setshow_integer_cmd, add_setshow_uinteger_cmd)
2165 (add_setshow_zuinteger_unlimited_cmd): Install the "unlimited"
2166 completer.
2167 * cli/cli-setshow.c: Include "cli/cli-utils.h".
2168 (is_unlimited_literal): New function.
2169 (do_set_command): Handle literal "unlimited" arguments.
2170 * frame.c (_initialize_frame) <set backtrace limit>: Document
2171 "unlimited".
2172 * printcmd.c (_initialize_printcmd) <set print
2173 max-symbolic-offset>: Add help text.
2174 * record-full.c (_initialize_record_full) <set record full
2175 insn-number-max>: Likewise.
2176 * record.c (_initialize_record) <set record
2177 instruction-history-size, set record function-call-history-size>:
2178 Add help text.
2179 * ser-tcp.c (_initialize_ser_tcp) <set tcp connect-timeout>: Add
2180 help text.
2181 * tracepoint.c (_initialize_tracepoint) <set trace-buffer-size>:
2182 Likewise.
2183 * source.c (_initialize_source) <set listsize>: Add help text.
2184 * utils.c (initialize_utils) <set height, set width>: Likewise.
2185 <set pagination>: Mention "set height unlimited".
2186 * valprint.c (_initialize_valprint) <set print elements, set print
2187 repeats>: Document "unlimited".
2188
2f9d54cf
PA
21892013-04-10 Pedro Alves <palves@redhat.com>
2190
2191 * cli/cli-cmds.c (quit_command): Call query_if_trace_running
2192 instead of disconnect_tracing.
2193 * infcmd.c (detach_command, disconnect_command): Call
2194 query_if_trace_running. Adjust.
2195 * top.c: Include "tracepoint.h".
2196 (quit_target): Delete. Contents moved ...
2197 (quit_force): ... here. Wrap each stage of teardown in
2198 TRY_CATCH. Call disconnect_tracing before detaching.
2199
393fd4c3
YQ
22002013-04-10 Hui Zhu <hui@codesourcery.com>
2201 Yao Qi <yao@codesourcery.com>
2202
2203 * configure.ac: Check libbabeltrace is installed.
2204 * config.in: Regenerate.
2205 * configure: Regenerate.
2206 * Makefile.in (LIBBABELTRACE): New.
2207 (CLIBS): Add LIBBABELTRACE.
2208 * ctf.c: Include "exec.h".
2209 (CTF_EVENT_ID_STATUS, CTF_EVENT_ID_TSV_DEF): New macros.
2210 (CTF_EVENT_ID_TP_DEF, ctf_save_write_int32): New macros.
2211 (ctf_save_metadata_header): Define new type aliases in
2212 metadata.
2213 (ctf_write_header): Define event type "tsv_def" and "tp_def"
2214 in metadata. Start a new faked packet for trace status.
2215 (ctf_write_status): Write trace status to CTF.
2216 (ctf_write_uploaded_tsv): Write TSV to CTF.
2217 (ctf_write_uploaded_tp): Write tracepoint definition to CTF.
2218 (ctf_write_definition_end): End the faked packet.
2219
2220 (ctx, ctf_iter, trace_dirname): New.
2221 (start_pos): New variable.
2222 (ctf_destroy, ctf_open_dir, ctf_open): New.
2223 (SET_INT32_FIELD, SET_ARRAY_FIELD, SET_STRING_FIELD): New
2224 macros.
2225 (ctf_read_tsv, ctf_read_tp, ctf_close, ctf_files_info): New.
2226 (ctf_fetch_registers, ctf_xfer_partial): New.
2227 (ctf_get_trace_state_variable_value): New.
2228 (ctf_get_tpnum_from_frame_event): New.
2229 (ctf_get_traceframe_address): New.
2230 (ctf_trace_find, ctf_has_stack): New.
2231 (ctf_has_registers, ctf_traceframe_info, init_ctf_ops): New.
2232 (ctf_get_trace_status, ctf_read_status): New.
2233 (_initialize_ctf): New.
2234 * tracepoint.c (get_tracepoint_number): New
2235 (get_uploaded_tsv): Remove 'static'.
5f8e0b8f 2236 (struct traceframe_info, trace_regblock_size): Move it to ...
393fd4c3
YQ
2237 * tracepoint.h: ... here.
2238 (get_tracepoint_number): Declare it.
2239 (get_uploaded_tsv): Declare it.
2240
2241 * NEWS: Mention new configure option.
2242
5c2b4418
HZ
22432013-04-10 Pedro Alves <palves@redhat.com>
2244 Hui Zhu <hui@codesourcery.com>
2245
2246 * breakpoint.c (dprintf_re_set): New.
2247 (initialize_breakpoint_ops): Set dprintf_breakpoint_ops re_set
2248 to dprintf_re_set.
2249
a5c66735
JB
22502013-04-09 Joel Brobecker <brobecker@adacore.com>
2251
2252 * configure.tgt (gdb_target_obs) <powerpc-*-aix* | rs6000-*-*>:
2253 Remove solib-svr4.o from the list.
2254
9e77999c
JB
22552013-04-09 Joel Brobecker <brobecker@adacore.com>
2256
2257 * varobj.c (update_dynamic_varobj_children) [!HAVE_PYTHON]:
2258 Use gdb_assert_not_reached instead of invalid boolean expression.
2259
1927e618
PA
22602013-04-09 Pedro Alves <palves@redhat.com>
2261
2262 * remote.c (unpush_and_perror): New function.
2263 (readchar, remote_serial_write): Use it.
2264
10782d74
MM
22652013-04-09 Markus Metzger <markus.t.metzger@intel.com>
2266
2267 * NEWS: Mention new btrace RSP packets.
2268
4c8429ef
TT
22692013-04-08 Tom Tromey <tromey@redhat.com>
2270
2271 * symmisc.c (dump_msymbols): Cast fprintf_filtered argument to
2272 long.
2273
8625fc1b
TT
22742013-04-08 Tom Tromey <tromey@redhat.com>
2275
2276 * maint.c (print_bfd_section_info): Print the section index.
2277 * symmisc.c (dump_msymbols): Print the section index.
2278
e27d198c
TT
22792013-04-08 Tom Tromey <tromey@redhat.com>
2280
2281 PR symtab/8424:
2282 * blockframe.c (find_pc_partial_function_gnu_ifunc): Check
2283 SYMBOL_SECTION, not SYMBOL_OBJ_SECTION.
2284 * breakpoint.c (resolve_sal_pc): Update.
2285 * elfread.c (elf_gnu_ifunc_record_cache): Update.
2286 * findvar.c (struct minsym_lookup_data) <objfile>: New field.
2287 (minsym_lookup_iterator_cb): Use it.
2288 (default_read_var_value): Update.
2289 * hppa-hpux-tdep.c (hppa64_hpux_in_solib_call_trampoline):
2290 Update.
2291 * infcmd.c (jump_command): Update.
2292 * linespec.c (minsym_found): Update.
2293 * maint.c (maintenance_translate_address): Update.
2294 * minsyms.c (lookup_minimal_symbol_by_pc_section_1): Update.
2295 (prim_record_minimal_symbol_full): Don't set SYMBOL_OBJ_SECTION.
2296 * parse.c (write_exp_msymbol): Update.
2297 * printcmd.c (address_info): Update.
2298 * psymtab.c (find_pc_sect_psymbol): Update.
2299 (fixup_psymbol_section): Check SYMBOL_SECTION, not
2300 SYMBOL_OBJ_SECTION.
2301 (add_psymbol_to_bcache): Correctly initialize SYMBOL_SECTION.
2302 Don't initialize SYMBOL_OBJ_SECTION.
2303 * spu-tdep.c (spu_catch_start): Update.
2304 * stabsread.c (define_symbol): Don't set SYMBOL_SECTION.
2305 * symmisc.c (dump_msymbols, print_symbol): Update.
2306 * symtab.c (fixup_section): Don't set 'obj_section'. Change
2307 how fallback section is computed.
2308 (fixup_symbol_section): Update.
2309 (find_pc_sect_symtab, find_function_start_sal, skip_prologue_sal):
2310 Update.
2311 (allocate_symbol, initialize_symbol, allocate_template_symbol):
2312 Initialize SYMBOL_SECTION.
2313 * symtab.h (struct general_symbol_info) <section>: Update comment.
2314 <obj_section>: Remove.
2315 (SYMBOL_OBJ_SECTION): Add 'objfile' argument. Rewrite.
2316 (SYMBOL_OBJFILE): New macro.
2317
e6dc44a8
TT
23182013-04-08 Tom Tromey <tromey@redhat.com>
2319
2320 * coffread.c (record_minimal_symbol): Update.
2321 * dbxread.c (record_minimal_symbol): Update.
2322 * elfread.c (record_minimal_symbol): Update.
2323 * machoread.c (macho_symtab_add_minsym): Update.
2324 * mdebugread.c (record_minimal_symbol, parse_partial_symbols):
2325 Update.
2326 * minsyms.c (prim_record_minimal_symbol): Update.
2327 (prim_record_minimal_symbol_full): Remove 'bfd_section'
2328 argument.
2329 (prim_record_minimal_symbol_and_info): Likewise.
2330 * minsyms.h (prim_record_minimal_symbol_full)
2331 (prim_record_minimal_symbol_and_info): Update.
2332 * symtab.c (allocate_symbol, initialize_symbol)
2333 (allocate_template_symbol): Initialize SYMBOL_SECTION.
2334 * xcoffread.c (record_minimal_symbol, scan_xcoff_symtab):
2335 Update.
2336
36192a8d
TT
23372013-04-08 Tom Tromey <tromey@redhat.com>
2338
2339 PR symtab/8423:
2340 * solib-som.c (som_solib_section_offsets): Use BFD section
2341 indices. Set offsets for all sections.
2342 * somread.c (som_symtab_read): Compute BFD section for
2343 symbol. Use prim_record_minimal_symbol_and_info.
2344 (som_symfile_read): Fix comment.
2345 (struct find_section_offset_arg): New.
2346 (find_section_offset, set_section_index): New functions.
2347 (som_symfile_offsets): Use set_section_index to compute
2348 section indices.
2349
65cf3563
TT
23502013-04-08 Tom Tromey <tromey@redhat.com>
2351
2352 * coffread.c (cs_to_section): Use gdb_bfd_section_index.
2353 * elfread.c (record_minimal_symbol, elf_symtab_read): Use
2354 gdb_bfd_section_index.
2355 * gdb_bfd.c (gdb_bfd_section_index, gdb_bfd_count_sections):
2356 New functions.
2357 * gdb_bfd.h (gdb_bfd_section_index, gdb_bfd_count_sections):
2358 Declare.
2359 * machoread.c (macho_symtab_add_minsym, macho_symfile_offsets):
2360 Update.
2361 * objfiles.c (add_to_objfile_sections_full): New function.
2362 (add_to_objfile_sections): Use it.
2363 (build_section_table): Rewrite.
2364 (objfile_relocate1): Use gdb_bfd_section_index. Update.
2365 * objfiles.h (obj_section_offset): Use gdb_bfd_section_index.
2366 (struct objfile) <sections>: Update comment.
2367 (ALL_OBJFILE_OSECTIONS): Skip sections where the_bfd_section
2368 is NULL.
2369 (ALL_OBJSECTIONS): Use it.
2370 * solib-dsbt.c (dsbt_relocate_main_executable): Update.
2371 * solib-frv.c (frv_relocate_main_executable): Update.
2372 * solib-target.c (solib_target_relocate_section_addresses):
2373 Use gdb_bfd_section_index.
2374 * symfile.c (build_section_addr_info_from_section_table):
2375 Use gdb_bfd_section_index.
2376 (build_section_addr_info_from_bfd, place_section): Likewise.
2377 * symtab.c (fixup_section): Update.
2378 * xcoffread.c (find_targ_sec): Use gdb_bfd_section_index.
2379
7cbd4a93
TT
23802013-04-08 Tom Tromey <tromey@redhat.com>
2381
2382 * minsyms.h (struct bound_minimal_symbol): New.
2383 (lookup_minimal_symbol_and_objfile): Return bound_minimal_symbol.
2384 Remove objfile argument.
2385 (lookup_minimal_symbol_by_pc_section, lookup_minimal_symbol_by_pc):
2386 Return bound_minimal_symbol.
2387 * minsyms.c (lookup_minimal_symbol_by_pc_1)
2388 (lookup_minimal_symbol_by_pc_section, lookup_minimal_symbol_by_pc):
2389 Return bound_minimal_symbol.
2390 (in_gnu_ifunc_stub): Update.
2391 (lookup_minimal_symbol_and_objfile): Return bound_minimal_symbol.
2392 Remove 'objfile_p' argument.
2393 (lookup_solib_trampoline_symbol_by_pc): Update.
2394 * ada-tasks.c, amd64-windows-tdep.c, arm-tdep.c,
2395 arm-wince-tdep.c, block.c, blockframe.c, breakpoint.c, btrace.c,
2396 c-valprint.c, dwarf2loc.c, elfread.c, frame.c, frv-tdep.c,
2397 glibc-tdep.c, gnu-v2-abi.c, gnu-v3-abi.c, hppa-hpux-tdep.c,
2398 i386-tdep.c, ia64-tdep.c, infcall.c, infcmd.c, jit.c,
2399 linux-fork.c, m32c-tdep.c, m68hc11-tdep.c, maint.c,
2400 mips-tdep.c, p-valprint.c, parse.c, ppc-linux-tdep.c,
2401 ppc-sysv-tdep.c, printcmd.c, rs6000-tdep.c, sh64-tdep.c,
2402 stack.c, symtab.c, tui/tui-disasm.c: Update.
2403
f85f34ed
TT
24042013-04-08 Tom Tromey <tromey@redhat.com>
2405
2406 * ada-lang.c (ada_decode_symbol): Check and set 'ada_mangled'.
2407 Use symbol's obstack, not an objfile.
2408 * coffread.c (process_coff_symbol): Update.
2409 * dwarf2read.c (fixup_go_packaging, new_symbol_full): Update.
2410 * jv-lang.c (add_class_symbol): Update.
2411 * mdebugread.c (new_symbol): Update.
2412 * minsyms.c (prim_record_minimal_symbol_full)
2413 (terminate_minimal_symbol_table): Update.
2414 * psymtab.c (add_psymbol_to_bcache): Clear entire symbol. Update.
2415 * stabsread.c (define_symbol, read_enum_type): Update.
2416 * symtab.c (symbol_set_demangled_name, symbol_get_demangled_name):
2417 Handle Ada specially.
2418 (symbol_set_language): Add 'obstack' argument.
2419 (symbol_set_names): Update.
2420 (symbol_natural_name, symbol_demangled_name): Always use
2421 ada_decode_symbol.
2422 * symtab.h (struct general_symbol_info)
2423 <language_specific::obstack>: New field.
2424 <ada_mangled>: New field.
2425 (SYMBOL_SET_LANGUAGE): Add 'obstack' argument.
2426 (symbol_set_language): Update.
2427
ccde22c0
TT
24282013-04-08 Tom Tromey <tromey@redhat.com>
2429
2430 * symtab.c (symbol_init_cplus_specific, symbol_set_demangled_name):
2431 Take an obstack, not an objfile.
2432 (symbol_set_names): Update.
2433 * symtab.h (symbol_set_demangled_name): Update.
2434
e623cf5d
TT
24352013-04-08 Tom Tromey <tromey@redhat.com>
2436
2437 * coffread.c (process_coff_symbol, coff_read_enum_type): Call
2438 allocate_symbol.
2439 * dwarf2read.c (fixup_go_packaging): Call allocate_symbol.
2440 (read_func_scope): Call allocate_template_symbol.
2441 (new_symbol_full): Call allocate_symbol.
2442 * jit.c (finalize_symtab): Call allocate_symbol.
2443 * jv-lang.c (add_class_symbol): Call allocate_symbol.
2444 * mdebugread.c (parse_symbol, new_block): Call allocate_symbol.
2445 * stabsread.c (patch_block_stabs, define_symbol, read_enum_type)
2446 (common_block_end): Call allocate_symbol.
2447 * symtab.c (allocate_symbol, initialize_symbol)
2448 (allocate_template_symbol): New functions.
2449 * symtab.c (allocate_symbol, initialize_symbol)
2450 (allocate_template_symbol): Declare.
2451 * xcoffread.c (process_xcoff_symbol): Call initialize_symbol.
2452
f6de8ec2
PA
24532013-04-08 Pedro Alves <palves@redhat.com>
2454 Keith Seitz <keiths@redhat.com>
2455
2456 * breakpoint.c (create_breakpoint): Rename
2457 "parse_condition_and_thread" parameter to "parse_arg". Update
2458 describing comment. If !PARSE_ARG, then error out if ARG is not
2459 the empty string after extracting the location.
2460 * breakpoint.h (create_breakpoint): Rename
2461 "parse_condition_and_thread" parameter to "parse_arg".
2462
f65ce5fb
AR
24632013-04-08 Aleksandar Ristovski <aristovski@qnx.com
2464
2465 * solib-svr4.c (lm_addr_check): Add const qualifier to 'so' arg.
2466
cc5925ad
YQ
24672013-04-07 Yao Qi <yao@codesourcery.com>
2468
2469 * remote.c (remote_trace_find): Change type of parameters 'addr1'
2470 and 'addr2' to CORE_ADDR.
2471 * target.c (update_current_target): Update.
2472 * target.h (struct target_ops) <to_trace_find>: Change parameter
2473 type to CORE_ADDR.
2474 * tracepoint.c (tfind_1): Change type of parameters 'addr1' and
2475 'addr2' to CORE_ADDR.
2476 (tfile_trace_find): Likewise.
2477 (tfile_get_traceframe_address): Change return type to CORE_ADDR.
2478 Change local variable 'addr' to type CORE_ADDR.
2479 * tracepoint.h (tfind_1): Update declaration.
2480
d9ac0664
EZ
24812013-04-06 Eli Zaretskii <eliz@gnu.org>
2482
2483 * windows-nat.c (windows_get_absolute_argv0): Move from here...
2484 * mingw-hdep.c (windows_get_absolute_argv0): ...to here.
2485 Include main.h.
2486
2487 * windows-nat.h (windows_get_absolute_argv0): Move prototype from
2488 here...
2489 * main.h (windows_get_absolute_argv0): ...to here.
2490
02142a6c
DE
24912013-04-05 Doug Evans <dje@google.com>
2492
2493 * dwarf2read.c (struct dwarf2_per_objfile): Tweak comment.
2494 (read_cutu_die_from_dwo): Add comments.
2495 (read_structure_type): Update comment.
2496 (read_enumeration_type, read_namespace_type): Update comment.
2497 (read_die_type, get_die_type_at_offset, get_die_type): Update comment.
2498
43662968
JK
24992013-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
2500
2501 Convert man pages to texinfo, new gdbinit.5 texinfo page.
2502 * Makefile.in (gdb.z): Remove.
2503 (install-only): Remove $(man1dir) and gdb.1 installation.
2504 * gdb.1: Remove.
2505
9ead1b84
JK
25062013-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
2507
2508 Fix compatibility with Linux kernel 3.8.3.
2509 * linux-tdep.c (linux_find_memory_regions_full): Move variable number
2510 to more inner block. Remove parsing of NUMBER from outer block.
2511 Parse NUMBER only if KEYWORD has been identified.
2512
d1794952
JK
25132013-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
2514
2515 Fix variable name shadowing.
2516 * linux-tdep.c (linux_find_memory_regions_full): Rename outer variable
2517 filename to mapsfilename and update its uses.
2518
9025569e
EZ
25192013-04-05 Eli Zaretskii <eliz@gnu.org>
2520
2521 * Makefile.in (TAGS): Avoid warning from etags when $GDB_NM_FILE is
2522 empty. See http://sourceware.org/ml/gdb-patches/2012-08/msg00504.html
2523 and http://sourceware.org/ml/gdb-patches/2013-04/msg00055.html for
2524 details of the problem.
2525
c9a6ce02
PA
25262013-04-04 Pedro Alves <palves@redhat.com>
2527 Hui Zhu <hui@codesourcery.com>
2528
2529 * breakpoint.c (validate_commands_for_breakpoint): If validating a
2530 tracepoint, reset its STEP_COUNT and call validate_actionline.
2531
5ff888ce
DE
25322013-04-03 Doug Evans <dje@google.com>
2533
bf6af496
DE
2534 * dwarf2read.c (read_die_and_siblings_1): Renamed from
2535 read_die_and_siblings.
2536 (read_die_and_siblings): New function.
2537 (read_cutu_die_from_dwo): Dump die if requested.
2538 (read_die_and_children): Call read_full_die_1 and
2539 read_die_and_siblings_1.
2540 (read_full_die): Dump die if requested.
2541
2542 * dwarf2read.c (read_comp_units_from_section): Add debugging printf.
2543
0ac5b59e
DE
2544 * dwarf2read.c (struct dwo_file): New member comp_dir.
2545 Rename member name to dwo_name. All uses updated.
2546 (hash_dwo_file): Include comp_dir in computation.
2547 (eq_dwo_file): Ditto.
2548 (lookup_dwo_file_slot): New arg comp_dir. All callers updated.
2549 (create_dwo_in_dwp, lookup_dwo_in_dwp, open_and_init_dwo_file): Ditto.
2550
5ff888ce
DE
2551 * psymtab.c (read_psymtabs_with_fullname): Don't call
2552 psymtab_to_fullname if the basenames are different.
2553
ec83d211
JK
25542013-04-03 Jan Kratochvil <jan.kratochvil@redhat.com>
2555
2556 * NEWS (Changes in GDB 7.6): Update the data-disassemble for "fullname".
2557 New entry about "fullname" presence.
2558
4f4352f7
PA
25592013-04-03 Pedro Alves <palves@redhat.com>
2560
2561 * NEWS: Mention x86_64/Cygwin as new native configuration.
2562
3d1d5ea3
DE
25632013-04-02 Doug Evans <dje@google.com>
2564
2565 * dwarf2read.c (read_structure_type): Fix typo in comment.
2566
be9a8770
PA
25672013-04-02 Pedro Alves <palves@redhat.com>
2568
2569 * NEWS: Mention "set/show debug aarch64", "set/show debug
2570 coff-pe-read" and "set/show debug mach-o".
2571
a46c1e42
PA
25722013-04-02 Pedro Alves <palves@redhat.com>
2573
2574 * NEWS: Mention "set/show remote trace-buffer-size-packet".
2575
3ad18b19
EZ
25762013-04-02 Eli Zaretskii <eliz@gnu.org>
2577
2578 * Makefile.in (HFILES_NO_SRCDIR): Remove call-cmds.h.
2579 gdb_string.h is now in common/.
2580
e9f1758d
PA
25812013-04-02 Pedro Alves <palves@redhat.com>
2582
2583 * NEWS: Move "set debug notification" and "set trace-buffer-size"
2584 under "New options".
2585
049dc89b
JK
25862013-04-02 Jan Kratochvil <jan.kratochvil@redhat.com>
2587
2588 Revert this patch:
2589 PR gdb/15275
2590 * remote.c (remote_get_trace_status): Include putpkt in TRY_CATCH.
2591
c33e31fd
PA
25922013-04-02 Pedro Alves <palves@redhat.com>
2593
2594 PR gdb/15275
2595
2596 * remote.c (send_interrupt_sequence): Use remote_serial_write.
2597 (remote_serial_write): New function.
2598 (putpkt_binary, getpkt_or_notif_sane_1): Use remote_serial_write.
2599
ea5f3910
JW
26002013-04-01 Jiong Wang <jiwang@tilera.com>
2601
2602 * NEWS: Mention TILE-Gx in "New native configurations" and
2603 "New targets" sections.
2604
5c6fa7ab
DE
26052013-04-01 Doug Evans <dje@google.com>
2606
c0f78cd4
DE
2607 * dwarf2read.c (lookup_signatured_type_at_offset): Delete.
2608 (process_enumeration_scope): Simplify.
2609
0186c6a7
DE
2610 * dwarf2read.c (struct dwarf2_per_cu_data): Move member
2611 type_unit_group ...
2612 (struct signatured_type): ... to here.
2613 (sig_type_ptr): New typedef.
2614 (type_unit_group): Delete member 't.first_cu'. Move member 'tus'
2615 out of union 't'. All uses updated.
2616 (dw2_get_file_names_reader): Assert not called for a type unit.
2617 (dw2_get_file_names): Assert not called for a type unit or type
2618 unit group.
2619 (build_type_psymtabs_reader): Assert called for a type unit.
2620 (build_type_psymtab_dependencies): Assert called for a type unit group.
2621
5c6fa7ab
DE
2622 * dwarf2read.c (free_dwo_file): Add comment.
2623 (dwarf2_per_objfile_free): Unref dwp bfd.
2624
b3c0ad67 26252013-04-01 Aleksandar Ristovski <aristovski@qnx.com>
cebca8c1
AR
2626
2627 * coff-pe-read.c (add_pe_exported_sym): Remove unused 'dll_name_len'.
2628 (add_pe_forwarded_sym): Remove unused 'section', 'dll_name_len'.
2629 (read_pe_exported_syms): Remove unused 'exportix'.
2630 (pe_text_section_offset): Remove unused 'opthdr_ofs', 'num_entries',
2631 'export_rva', 'export_size', 'expptr', 'exp_funcbase', 'expdata',
2632 'erva', 'name_rvas', 'ordinals', 'nexp', 'ordbase', 'dll_name'.
2633
e2df1547
AR
26342013-04-01 Aleksandar Ristovski <aristovski@qnx.com>
2635
2636 * breakpoint.c (parse_cond_to_aexpr): Remove unused 'old_chain'.
2637 (print_it_watchpoint): Remove unused 'bl'.
2638 (say_where): Remove unused 'uiout'.
2639 (bpstat_remove_breakpoint_callback): Remove unused 'uiout'.
2640 (bkpt_breakpoint_hit): Remove unused 'b'.
2641 (internal_bkpt_print_it): Remove unused 'uiout'.
2642 * buildsym.c (augment_type_symtab): Remove unused 'i'.
2643
d81e75c0
TD
26442013-03-31 Tiago Stürmer Daitx <tdaitx@linux.vnet.ibm.com>
2645
2646 * ppc-sysv-tdep.c (ppc64_sysv_abi_push_float): New function.
2647 (ppc64_sysv_abi_push_dummy_call): Handle complex arguments.
2648
5a8b3f62
DE
26492013-03-29 Doug Evans <dje@google.com>
2650
ab5088bf
DE
2651 * dwarf2read.c (open_dwo_file): Renamed from open_dwop_file.
2652 Delete arg is_dwp. All callers updated.
2653 (open_dwp_file): New function.
2654 (open_and_init_dwp_file): Call it.
2655 (get_dwp_file): New function.
2656 (lookup_dwo_cutu): Call it.
2657
a8ad1e57
DE
2658 * dwarf2read.c (open_and_init_dwp_file): Remove incorrect, and
2659 unnecessary, cleanup.
2660
6296d8c1
DE
2661 * dwarf2read.c (lookup_dwo_cutu): Improve complaint text.
2662
b0c7bfa9
DE
2663 * dwarf2read.c (read_cutu_die_from_dwo): New function.
2664 (lookup_dwo_unit): New function.
2665 (init_cutu_and_read_dies): Move DWO handling to new functions.
2666
c88ee1f0
DE
2667 * dwarf2read.c (struct signatured_type): Tweak comment.
2668 (struct dwo_unit): Tweak comment.
2669 (create_debug_types_hash_table): Tweak comment. Reformat long line.
2670 (create_dwo_debug_info_hash_table): Tweak comment.
2671 (dwarf2_per_cu_offset_and_type): Tweak comment.
2672
5a8b3f62
DE
2673 * dwarf2read.c (lookup_signatured_type): Remove complaint about
2674 missing .debug_types section.
2675
9852c492
YQ
26762013-03-29 Yao Qi <yao@codesourcery.com>
2677
2678 * corelow.c: Include "completer.h".
2679 (_initialize_corelow): Call add_target_with_completer with
2680 argument 'filename_completer'.
2681 * tracepoint.c: Likewise.
2682 * exec.c (_initialize_exec): Likewise.
2683 * target.c (add_target): Rename to ...
2684 (add_target_with_completer): ... this. Call set_cmd_completer
2685 if parameter completer is not NULL.
2686 (add_target): New.
2687 * target.h: Include "command.h".
2688 (add_target_with_completer): Declare it.
2689
af312be7
JB
26902013-03-28 Joel Brobecker <brobecker@adacore.com>
2691
2692 * coffread.c (is_import_fixup_symbol): New function.
2693 (record_minimal_symbol): Use is_import_fixup_symbol to
2694 detect import fixup symbols, and discard them.
2695
8a0459fd
DE
26962013-03-28 Doug Evans <dje@google.com>
2697
0349ea22
DE
2698 * dwarf2read.c (create_debug_types_hash_table): Don't allocate the
2699 types hash table until we know we need it.
2700
f652bce2
DE
2701 * dwarf2read.c (create_addrmap_from_index): Complain about bad CU
2702 index numbers.
2703
e4a48d9d
DE
2704 * dwarf2read.c (dw2_get_file_names): Delete arg "objfile".
2705 All callers updated.
2706 (dw2_print_stats): Print #read CUs too.
2707 (dump_die_shallow): Print signatured types better.
2708
8a0459fd
DE
2709 * dwarf2read.c (struct dwarf2_per_cu_data): Rename member
2710 info_or_types_section to section. All uses updated.
2711 (struct dwo_unit): Ditto.
2712
bd3eecc3
PA
27132013-03-28 Pedro Alves <palves@redhat.com>
2714
2715 * NEWS (New options): New section.
2716 (New options): Mention set/show remote trace-status-packet.
2717 * remote.c (PACKET_qTStatus): New enumeration value.
2718 (remote_get_trace_status): Skip sending qTStatus if the packet is
2719 disabled. Use packet_ok.
2720 (_initialize_remote): Register a configuration command for
2721 qTStatus packet.
2722
41245087
DE
27232013-03-28 Doug Evans <dje@google.com>
2724
7edbb660
DE
2725 * symfile.c (find_separate_debug_file): Add comment.
2726 (terminate_after_last_dir_separator): Tweak comment.
2727
0018ea6f
DE
2728 * dwarf2read.c (create_partial_symtab): Add forward decl.
2729 (create_partial_symtab): Move to be closer to other psymtab functions.
2730 (process_psymtab_comp_unit_reader, process_psymtab_comp_unit): Ditto.
2731
ca69b9e6
DE
2732 * dwarf2read.c (dwarf2_physname): Move declaration to better spot.
2733 (compute_symtab_includes): Remove unnecessary forward declaration.
2734 (die_needs_namespace): Add comment marking group of functions for
2735 dwarf2 name computation.
2736
a9375afe
DE
2737 * typeprint.c (_initialize_typeprint): Improve type help text.
2738
41245087
DE
2739 * python/python.c (finish_python_initialization): Provide suggestion
2740 for how to tell gdb to find its python files.
2741
7f7cc265
PA
27422013-03-28 Pedro Alves <palves@redhat.com>
2743
2744 PR gdb/15294
2745
2746 * source.c (_initialize_source): Change back "set listsize" to an
2747 integer command.
2748
ec21308c
JK
27492013-03-27 Gareth McMullin <gareth@blacksphere.co.nz>
2750
2751 PR gdb/15275
2752 * remote.c (remote_get_trace_status): Include putpkt in TRY_CATCH.
2753
840a9a1f
PA
27542013-03-27 Pedro Alves <palves@redhat.com>
2755
2756 * top.c (history_size): Rename to ...
2757 (history_size_setshow_var): ... this. Add comment.
2758 (show_commands): Use readline's 'history_length' instead of
2759 computing the history length by calling history_get in a loop.
2760 (set_history_size_command): Error out for sizes over INT_MAX.
2761 Restore previous history size on invalid size.
2762 (init_history): If HISTSIZE is negative, leave the history size as
2763 zero. Add comments.
2764 (init_main): Adjust.
2765
826ecc4d
PA
27662013-03-27 Pedro Alves <palves@redhat.com>
2767
2768 * coff-pe-read.c (_initialize_coff_pe_read): Rename "set debug
2769 coff_pe_read" command to "set debug coff-pe-read".
2770
0ccfeeae
MM
27712013-03-27 Markus Metzger <markus.t.metzger@intel.com>
2772
2773 * record.c (command_size_to_target_size): Fix size comparison.
2774 Change parameter type from pointer to integer to integer.
2775 Update all users.
2776
40653b35
PM
27772013-03-27 Pierre Muller <muller@sourceware.org>
2778
2779 * windows-nat.c (handle_output_debug_string): Avoid typecast
2780 from integer of different size warning.
2781
c62fa0e2
JB
27822013-03-26 Joel Brobecker <brobecker@adacore.com>
2783
2784 * windows-nat.c (handle_output_debug_string): Add empty line
2785 after local block variable definition.
2786
2c619be2
PA
27872013-03-26 Pedro Alves <palves@redhat.com>
2788
2789 * ser-tcp.c (wait_for_connect): Make 'polls' parameter unsigned.
2790 (net_open): Make 'polls' local unsigned.
2791
1b493192
PA
27922013-03-26 Pedro Alves <palves@redhat.com>
2793
2794 * remote.c (_initialize_remote): Make "set remoteaddresssize"
2795 a zuinteger command instead of uinteger.
2796
7ee70bf5
PA
27972013-03-26 Pedro Alves <palves@redhat.com>
2798
2799 * record-full.c (record_full_insn_num): Make it unsigned.
2800 (record_full_check_insn_num, record_full_message)
2801 (record_full_registers_change, record_full_xfer_partial): Remove
2802 record_full_insn_max_num check (it's always != 0).
2803 (record_full_info, record_full_restore): Use %u as format string.
2804 (): Use %u as format string.
2805 (set_record_full_insn_max_num): Remove record_full_insn_max_num
2806 check (it's always != 0).
2807
dfd1f9bb
PA
28082013-03-26 Pedro Alves <palves@redhat.com>
2809
2810 * dcache.c (_initialize_dcache): Make the "set dcache line-size"
2811 and "set dcache size" commands zuinteger instead of uinteger.
2812
addb4faf
PA
28132013-03-26 Pedro Alves <palves@redhat.com>
2814
2815 * cris-tdep.c (_initialize_cris_tdep): Make the "set cris-version"
2816 command zuinteger instead of uinteger.
2817
b75bf488
PA
28182013-03-26 Pedro Alves <palves@redhat.com>
2819
2820 * coff-pe-read.c (_initialize_coff_pe_read): Make the command
2821 zuinteger instead of uinteger.
2822
42c634cb
PA
28232013-03-26 Pedro Alves <palves@redhat.com>
2824
2825 * record.c (record_insn_history_size_setshow_var)
2826 (record_call_history_size_setshow_var): New globals.
2827 (command_size_to_target_size): New function.
2828 (cmd_record_insn_history, cmd_record_call_history): Use
2829 command_size_to_target_size instead of cast.
2830 (validate_history_size, set_record_insn_history_size)
2831 (set_record_call_history_size): New functions.
2832 (_initialize_record): Install set_record_insn_history_size and
2833 set_record_call_history_size as "set" hooks of "set record
2834 instruction-history-size" and "set record
2835 function-call-history-size".
2836
1fb2e2b5
PA
28372013-03-26 Pedro Alves <palves@redhat.com>
2838
2839 * top.c (gdb_rl_operate_and_get_next): Replace max_input_history
2840 use with history_max_entries use. Remove FIXME note.
2841
99c819ee
MM
28422013-03-26 Markus Metzger <markus.t.metzger@intel.com>
2843
2844 * record-btrace.c (record_btrace_close): Call
2845 record_btrace_auto_disable.
2846
9f9e404c
JB
28472013-03-25 Joel Brobecker <brobecker@adacore.com>
2848
2849 * rs6000-nat.c (fixup_breakpoints): Delete declaration.
2850
ebcdfe33
DE
28512013-03-25 Doug Evans <dje@google.com>
2852
2853 * contrib/cc-with-tweaks.sh: Check exit code of dwp.
2854
24955f63
TT
28552013-03-25 Tom Tromey <tromey@redhat.com>
2856
2857 PR symtab/11462:
2858 * c-exp.y (exp): Add new productions for destructors after '.' and
2859 '->'.
2860 (write_destructor_name): New function.
2861
fce632b6
TT
28622013-03-25 Tom Tromey <tromey@redhat.com>
2863
2864 PR c++/9197:
2865 * opencl-lang.c (evaluate_subexp_opencl) <STRUCTOP_STRUCT>: Use
2866 value_struct_elt, not lookup_struct_elt_type.
2867 * eval.c (evaluate_subexp_standard) <STRUCTOP_STRUCT,
2868 STRUCTOP_PTR>: Use value_struct_elt, not lookup_struct_elt_type.
2869 * expression.h (EVAL_AVOID_SIDE_EFFECTS): Update comment.
2870
a4341769
YQ
28712013-03-25 Yao Qi <yao@codesourcery.com>
2872
2873 * ctf.c [USE_WIN32API]: Undef 'mkdir' and use 'mkdir'
2874 instead of '_mkdir'.
2875
b5981e5a
EZ
28762013-03-23 Eli Zaretskii <eliz@gnu.org>
2877
2878 * windows-nat.c (windows_get_absolute_argv0): New function.
2879 * windows-nat.h: Add its prototype.
2880
2881 * main.c (get_init_files): Use filename_ncmp instead of strncmp.
2882 Use IS_DIR_SEPARATOR instead of looking for a character inside
2883 SLASH_STRING. Include filenames.h.
2884 (captured_main) [__MINGW32__]: Make argv[0] absolute, so that
2885 relocate_gdb_directory works when passed gdb_program_name.
2886 Include windows-nat.h.
2887
598d3636
JK
28882013-03-22 Jan Kratochvil <jan.kratochvil@redhat.com>
2889
2890 * exceptions.h (enum errors): New entry TARGET_CLOSE_ERROR.
2891 * remote.c (trace_error): Remove the special handling of '2'.
2892 (readchar) <SERIAL_EOF>
2893 (readchar) <SERIAL_ERROR>
2894 (getpkt_or_notif_sane_1): Use TARGET_CLOSE_ERROR for them.
2895 (remote_get_trace_status): Call throw_exception if EX is
2896 TARGET_CLOSE_ERROR.
2897 * utils.c (perror_with_name): Rename to ...
2898 (throw_perror_with_name): ... here. New parameter errcode, describe it
2899 in the function comment.
2900 (perror_with_name): New function wrapper.
2901 * utils.h (enum errors): New stub declaration.
2902 (throw_perror_with_name): New declaration.
2903
82b821e9
PA
29042013-03-22 Pedro Alves <palves@redhat.com>
2905 Yao Qi <yao@codesourcery.com>
2906 Mark Kettenis <kettenis@gnu.org>
2907
2908 * cli/cli-setshow.c (do_set_command) <var_uinteger>:
2909 Don't let the user set the value to UINT_MAX directly.
2910 <var_integer>: Don't let the user set the value to INT_MAX
2911 directly.
2912
78a095c3
JK
29132013-03-22 Jan Kratochvil <jan.kratochvil@redhat.com>
2914
2915 * remote.c (remote_unpush_target): New function.
2916 (remote_open_1): Remove two pop_target calls, update one comment, add
2917 comment to target_preopen call. Replace pop_target call by
2918 remote_unpush_target call.
2919 (interrupt_query, readchar, getpkt_or_notif_sane_1): Replace
2920 pop_target calls by remote_unpush_target calls.
2921
3e74e146
PA
29222013-03-22 Pedro Alves <palves@redhat.com>
2923
2924 * linux-nat.c (linux_child_follow_fork): Don't call
2925 linux_enable_event_reporting.
2926 (linux_handle_extended_wait): Don't call
2927 linux_enable_event_reporting.
2928
a2213dca
PA
29292013-03-22 Pedro Alves <palves@redhat.com>
2930
2931 * hppa-hpux-tdep.c (hppa_hpux_push_dummy_code): Define INSN macro,
2932 use it to rewrite the trampoline buffers with type gdb_byte[], and
2933 undefine the macro. Remove char* cast.
2934
bd712aed
DE
29352013-03-21 Doug Evans <dje@google.com>
2936
2937 New commands "mt set per-command {space,time,symtab} {on,off}".
2938 * NEWS: Add entry.
2939 * event-top.c: #include "maint.h".
2940 * main.c: #include "maint.h".
2941 * maint.c: #include <sys/time.h>, <time.h>, block.h, top.h,
2942 timeval-utils.h, maint.h, cli/cli-setshow.h.
2943 (per_command_time, per_command_space): New static globals.
2944 (per_command_symtab): New static global.
2945 (per_command_setlist, per_command_showlist): New static globals.
2946 (struct cmd_stats): Move here from utils.c.
2947 (set_per_command_time): Renamed from set_display_time in utils.c
2948 and moved here. All callers updated.
2949 (set_per_command_space): Renamed from set_display_space in utils.c
2950 and moved here. All callers updated.
2951 (count_symtabs_and_blocks): New function.
2952 (report_command_stats): Moved here from utils.c. Add support for
2953 printing symtab stats. Only print data if enabled before command
2954 executed.
2955 (make_command_stats_cleanup): Ditto.
2956 (sert_per_command_cmd, show_per_command_cmd): New functions.
2957 (_initialize_maint_cmds): Add new commands
2958 mt set per-command {space,time,symtab} {on,off}.
2959 * maint.h: New file.
2960 * top.c: #include "maint.h".
2961 * utils.c (reset_prompt_for_continue_wait_time): New function.
2962 (get_prompt_for_continue_wait_time): New function.
2963 * utils.h (reset_prompt_for_continue_wait_time): Declare
2964 (get_prompt_for_continue_wait_time): Declare.
2965 (make_command_stats_cleanup): Moved to maint.h.
2966 (set_display_time, set_display_space): Moved to maint.h and renamed
2967 to set_per_command_time, set_per_command_space.
2968 * cli/cli-setshow.c (parse_cli_boolean_value): Renamed from
2969 parse_binary_operation and made non-static. Don't call error,
2970 just return an error marker. All callers updated.
2971 * cli/cli-setshow.h (parse_cli_boolean_value): Declare.
2972
d76488d8
TT
29732013-03-21 Tom Tromey <tromey@redhat.com>
2974
2975 * symfile.c (alloc_section_addr_info): Update header. Don't set
2976 'num_sections' field.
2977 (build_section_addr_info_from_section_table): Set 'num_sections'.
2978 (build_section_addr_info_from_bfd): Likewise.
2979 (build_section_addr_info_from_objfile): Remove dead loop
2980 condition.
2981 (free_section_addr_info): Unconditionally call xfree.
2982 (relative_addr_info_to_section_offsets, addrs_section_sort)
2983 (addr_info_make_relative, syms_from_objfile_1): Remove dead loop
2984 condition.
2985 (syms_from_objfile_1): Remove dead 'if' condition. Check
2986 'num_sections'.
2987 (add_symbol_file_command): Set 'num_sections'.
2988 * symfile-mem.c (symbol_file_add_from_memory): Set
2989 'num_sections'.
2990 * somread.c (som_symfile_offsets): Remove dead loop condition.
2991 * machoread.c (macho_symfile_offsets): Remove dead 'if'.
2992 * jit.c (jit_bfd_try_read_symtab): Set 'num_sections'.
2993
a72e5169 29942013-03-21 Tom Tromey <tromey@redhat.com>
92bc6a20
TT
2995
2996 * tracepoint.h (decode_agent_options): Add 'trace_string'
2997 argument.
2998 * tracepoint.c (decode_agent_options): Add 'trace_string'
2999 argument.
3000 (validate_actionline): Update.
3001 (collect_symbol): Add 'trace_string' argument.
3002 (struct add_local_symbols_data) <trace_string>: New field.
3003 (do_collect_symbol): Update.
3004 (add_local_symbols): Add 'trace_string' argument.
3005 (encode_actions_1): Update.
3006 (trace_dump_actions): Update.
3007 * dwarf2loc.c (access_memory): Update.
3008 * ax.h (struct agent_expr) <tracing, trace_string>: New fields.
3009 * ax-general.c (new_agent_expr): Update.
3010 * ax-gdb.h (gen_trace_for_expr, gen_trace_for_var)
3011 (gen_trace_for_return_address): Add argument.
3012 (trace_kludge, trace_string_kludge): Remove.
3013 * ax-gdb.c (trace_kludge, trace_string_kludge): Remove.
3014 (gen_traced_pop, gen_fetch, gen_bitfield_ref, gen_expr): Update.
3015 (gen_trace_for_var): Add 'trace_string' argument.
3016 (gen_trace_for_expr, gen_trace_for_return_address): Likewise.
3017 (gen_printf, agent_eval_command_one): Update.
3018
b2f83c08
TT
30192013-03-21 Tom Tromey <tromey@redhat.com>
3020
3021 PR exp/15109:
3022 * c-exp.y (yylex): Rewrite to push all tokens onto the FIFO.
3023 Handle FILENAME token.
3024
9507860e
TT
30252013-03-21 Tom Tromey <tromey@redhat.com>
3026
3027 * c-exp.y (YYPRINT): Define.
3028 (c_print_token): New function.
3029
e403aa4b
TT
30302013-03-21 Tom Tromey <tromey@redhat.com>
3031
3032 * c-exp.y (%union) <sym, ivar, ivec>: Remove.
3033
af307d6a
YQ
30342013-03-21 Yao Qi <yao@codesourcery.com>
3035
3036 * ctf.c: Include "gdb_stat.h".
3037 [USE_WIN32API]: New macro 'mkdir'.
3038 (ctf_start): Use permission bits macros if they are defined.
3039
fb81d016
KS
30402013-03-20 Keith Seitz <keiths@redhat.com>
3041
3042 * breakpoint.h (struct breakpoint): Add comment to
3043 extra_string indicating that this member is mallod'd.
3044 * breakpoint.c (base_breakpoint_dtor): Free extra_string.
3045
ef0026f0
PA
30462013-03-20 Pedro Alves <palves@redhat.com>
3047
3048 PR gdb/15289
3049
3050 * cli/cli-setshow.c (do_set_command)
3051 <var_uinteger, var_zuinteger>: Use LONGEST for variable holding
3052 the result of parsing the command argument. Throw error if the
3053 value is greater than UINT_MAX. Print the invalid value with
3054 plongest.
3055 <var_integer, var_zinteger>: Use LONGEST for variable holding the
3056 result of parsing the command argument. Throw error if the value
3057 is greater than INT_MAX, not greater or equal. Also throw error
3058 if the value is less than INT_MIN. Print the invalid value with
3059 plongest.
3060 <var_zuinteger_unlimited>: Throw error if the value is greater
3061 than INT_MAX, not greater or equal.
3062 (do_show_command) <var_integer, var_zinteger,
3063 var_zuinteger_unlimited>: Use %d for printing int, not %u.
3064
24d6c2a0
TT
30652013-03-20 Tom Tromey <tromey@redhat.com>
3066
3067 * ax-gdb.c (gen_var_ref): Unconditionally call via computed ops,
3068 if possible.
3069 * dwarf2read.c (read_func_scope): Remove old FIXME.
3070 * eval.c (evaluate_subexp_standard): Check SYMBOL_COMPUTED_OPS,
3071 not LOC_COMPUTED.
3072 * findvar.c (symbol_read_needs_frame, default_read_var_value):
3073 Unconditionally call via computed ops, if possible.
3074 * printcmd.c (address_info): Unconditionally call via computed ops,
3075 if possible.
3076 * stack.c (read_frame_arg): Unconditionally call via computed ops,
3077 if possible.
3078 * symtab.c (register_symbol_computed_impl): Sanity check 'ops'.
3079 * tracepoint.c (scope_info): Unconditionally call via computed ops,
3080 if possible.
3081
f1e6e072
TT
30822013-03-20 Jan Kratochvil <jan.kratochvil@redhat.com>
3083 Tom Tromey <tromey@redhat.com>
3084
3085 PR symtab/8421:
3086 * coffread.c (coff_register_index): New global.
3087 (process_coff_symbol, coff_read_enum_type): Set
3088 SYMBOL_ACLASS_INDEX.
3089 (_initialize_coffread): Initialize new global.
3090 * dwarf2loc.c (locexpr_find_frame_base_location)
3091 (dwarf2_block_frame_base_locexpr_funcs)
3092 (loclist_find_frame_base_location)
3093 (dwarf2_block_frame_base_loclist_funcs): New.
3094 (dwarf_expr_frame_base_1): Call SYMBOL_BLOCK_OPS, remove internal_error.
3095 (dwarf2_locexpr_funcs, dwarf2_loclist_funcs): Add location_has_loclist.
3096 * dwarf2loc.h (dwarf2_block_frame_base_locexpr_funcs)
3097 (dwarf2_block_frame_base_loclist_funcs): New.
3098 * dwarf2read.c (dwarf2_locexpr_index, dwarf2_loclist_index)
3099 (dwarf2_locexpr_block_index, dwarf2_loclist_block_index): New
3100 globals.
3101 (read_func_scope): Update.
3102 (fixup_go_packaging, mark_common_block_symbol_computed)
3103 (var_decode_location, new_symbol_full, dwarf2_const_value):
3104 Set SYMBOL_ACLASS_INDEX.
3105 (dwarf2_symbol_mark_computed): Likewise. Add 'is_block' argument.
3106 (_initialize_dwarf2_read): Initialize new globals.
3107 * jit.c (finalize_symtab): Set SYMBOL_ACLASS_INDEX.
3108 * jv-lang.c (add_class_symbol): Set SYMBOL_ACLASS_INDEX.
3109 * mdebugread.c (mdebug_register_index, mdebug_regparm_index): New
3110 globals.
3111 (parse_symbol, psymtab_to_symtab_1): Set SYMBOL_ACLASS_INDEX.
3112 (_initialize_mdebugread): Initialize new globals.
3113 * psympriv.h (struct partial_symbol) <aclass>: Update comment.
3114 * stabsread.c (patch_block_stabs): Set SYMBOL_ACLASS_INDEX.
3115 (stab_register_index, stab_regparm_index): New globals.
3116 (define_symbol, read_enum_type, common_block_end): Set
3117 SYMBOL_ACLASS_INDEX.
3118 (_initialize_stabsread): Initialize new globals.
3119 * symtab.c (next_aclass_value, symbol_impl, symbol_impls): New
3120 globals.
3121 (MAX_SYMBOL_IMPLS): New define.
3122 (register_symbol_computed_impl, register_symbol_block_impl)
3123 (register_symbol_register_impl)
3124 (initialize_ordinary_address_classes): New functions.
3125 (_initialize_symtab): Call initialize_ordinary_address_classes.
3126 * symtab.h (enum address_class) <LOC_FINAL_VALUE>: New constant.
3127 (struct symbol_impl): New.
3128 (SYMBOL_ACLASS_BITS): New define.
3129 (struct symbol) <aclass, ops>: Remove fields.
3130 <aclass_index>: New field.
3131 (symbol_impls): Declare.
3132 (SYMBOL_CLASS, SYMBOL_COMPUTED_OPS, SYMBOL_REGISTER_OPS): Redefine.
3133 (SYMBOL_IMPL, SYMBOL_ACLASS_INDEX): New defines.
3134 (register_symbol_computed_impl, register_symbol_block_impl)
3135 (register_symbol_register_impl): Declare.
3136 (struct symbol_computed_ops): Add location_has_loclist.
3137 (struct symbol_block_ops): New.
3138 (SYMBOL_BLOCK_OPS): New.
3139 * xcoffread.c (process_xcoff_symbol): Set SYMBOL_ACLASS_INDEX.
3140
dbccfd4c
TT
31412013-03-20 Tom Tromey <tromey@redhat.com>
3142
3143 * psymtab.c (find_pc_sect_psymbol, fixup_psymbol_section)
3144 (print_partial_symbols, recursively_search_psymtabs): Use
3145 PSYMBOL_CLASS.
3146
e3f1ad4f
PM
31472013-03-20 Pierre Muller <muller@sourceware.org>
3148
3149 * contrib/ari/gdb_ari.sh (OP eol rule): Also check
3150 addtion, subtraction, multiplication and division binary operator.
3151
460014f5
JK
31522013-03-20 Jan Kratochvil <jan.kratochvil@redhat.com>
3153
3154 Code cleanup.
3155 * bfd-target.c (target_bfd_xclose): Remove parameter quitting.
3156 * bsd-kvm.c (bsd_kvm_close): Likewise.
3157 * bsd-uthread.c (bsd_uthread_close): Likewise.
3158 * corelow.c (core_close): Likewise.
3159 (core_close_cleanup): Remove parameter quitting from a caller.
3160 * event-top.c (async_disconnect): Likewise.
3161 * exec.c (exec_close_1): Remove parameter quitting.
3162 * go32-nat.c (go32_close): Likewise.
3163 * linux-nat.c (linux_nat_close): Remove parameter quitting. Remove
3164 parameter quitting from a caller.
3165 * mips-linux-nat.c (super_close): Remove parameter quitting from the
3166 variable.
3167 (mips_linux_close): Remove parameter quitting. Remove parameter
3168 quitting from a caller.
3169 * monitor.c (monitor_close): Remove parameter quitting.
3170 * monitor.h (monitor_close): Likewise.
3171 * record-btrace.c (record_btrace_close): Likewise.
3172 * record-full.c (record_full_close): Likewise.
3173 * remote-m32r-sdi.c (m32r_close): Remove parameter quitting and remove
3174 it also from fprintf_unfiltered.
3175 * remote-mips.c (mips_close): Remove parameter quitting.
3176 (mips_detach): Remove parameter quitting from a caller.
3177 * remote-sim.c (gdbsim_close): Remove parameter quitting.
3178 (gdbsim_close): Remove duplicate function comment. Remove parameter
3179 quitting and remove it also from printf_filtered.
3180 * remote.c (remote_close): Remove parameter quitting.
3181 * solib-svr4.c (enable_break): Remove parameter quitting from a caller.
3182 * target.c (update_current_target): Remove parameter int from to_close
3183 de_fault.
3184 (push_target, unpush_target, pop_target): Remove parameter quitting from
3185 a caller.
3186 (pop_all_targets_above, pop_all_targets): Remove parameter quitting.
3187 Remove parameter quitting from a caller.
3188 (target_preopen): Remove parameter quitting from a caller.
3189 (target_close): Remove parameter quitting. Remove parameter quitting
3190 from a caller two times. Remove parameter quitting also from
3191 fprintf_unfiltered.
3192 * target.h (struct target_ops): Remove parameter quitting and as int
3193 from fields to_xclose and to_close.
3194 (extern struct target_ops current_target):
3195 (target_close, pop_all_targets): Remove parameter quitting. Update the
3196 comment.
3197 (pop_all_targets_above): Remove parameter quitting.
3198 * top.c (quit_target): Remove parameter quitting from a caller.
3199 * tracepoint.c (tfile_close): Remove parameter quitting.
3200 * windows-nat.c (windows_close): Remove parameter quitting.
3201
35a7120b
CV
32022013-03-20 Corinna Vinschen <vinschen@redhat.com>
3203
3204 * windows-nat.c (handle_output_debug_string): Replace call
3205 to string_to_core_addr with call to strtoull.
3206
8249a5a9
YQ
32072013-03-20 Yao Qi <yao@codesourcery.com>
3208
3209 * ctf.c (ctf_save_metadata_header): Define macro HOST_ENDIANNESS
3210 and write it to CTF metadata.
3211
2c15ef43
CV
32122013-03-19 Corinna Vinschen <vinschen@redhat.com>
3213
3214 * windows-nat.c (handle_output_debug_string): Change type of n to
3215 SIZE_T to avoid crash on 64 bit systems.
3216
1cdd3232
EZ
32172013-03-17 Eli Zaretskii <eliz@gnu.org>
3218
3219 * python/python-internal.h (HAVE_SNPRINTF)
3220 [_WIN32 && HAVE_DECL_SNPRINTF]: Define, to avoid compiler warnings
3221 about redefinition of snprintf by pyerrors.h.
3222
3cb2ab1a
SE
32232013-03-15 Steve Ellcey <sellcey@mips.com>
3224
3225 * remote-sim.c (sim_command_completer): Make char arguments const.
3226
9ce98649
TT
32272013-03-15 Tom Tromey <tromey@redhat.com>
3228
3229 PR c++/15116:
3230 * gdbtypes.c (types_equal): Handle TYPE_CODE_FUNC.
3231
dccee2de
TT
32322013-03-14 Tom Tromey <tromey@redhat.com>
3233
3234 * gdb_bfd.c (struct gdb_bfd_data) <crc_computed, crc>:
3235 New fields.
3236 (get_file_crc): Move from symfile.c.
3237 (gdb_bfd_crc): New function.
3238 * gdb_bfd.h (gdb_bfd_crc): Declare.
3239 * objfiles.h (struct objfile) <crc32, crc32_p>: Remove.
3240 * symfile.c (get_file_crc): Move to gdb_bfd.c.
3241 (separate_debug_file_exists): Use gdb_bfd_crc.
3242
cc0ea93c
TT
32432013-03-14 Tom Tromey <tromey@redhat.com>
3244
3245 * symfile.c (get_debug_link_info): Remove.
3246 (find_separate_debug_file_by_debuglink): Use
3247 bfd_get_debug_link_info.
3248
08c23b0d
TT
32492013-03-14 Tom Tromey <tromey@redhat.com>
3250
3251 * symtab.c (error_in_psymtab_expansion): New function.
3252 (lookup_symbol_aux_quick)
3253 (basic_lookup_transparent_type_quick): Remove "last resort"
3254 code. Use error_in_psymtab_expansion.
3255
288e77a7
JK
32562013-03-14 Doug Evans <dje@google.com>
3257 Jan Kratochvil <jan.kratochvil@redhat.com>
3258
3259 * dwarf2read.c (dw2_map_symtabs_matching_filename): Put continue after
3260 any successful compare_filenames_for_search or FILENAME_CMP.
3261 * psymtab.c (partial_map_symtabs_matching_filename): Likewise.
3262 * symtab.c (iterate_over_some_symtabs): Likewise.
3263
8f1b8b82
JK
32642013-03-14 Jan Kratochvil <jan.kratochvil@redhat.com>
3265
3266 * source.c (print_source_lines_base): Make a local copy of
3267 symtab_to_fullname.
3268
23eb71e4
JK
32692013-03-14 Hui Zhu <hui_zhu@mentor.com>
3270 Jan Kratochvil <jan.kratochvil@redhat.com>
3271
3272 * source.c (print_source_lines_base): Suppress "file" for TUI.
3273
bb869963
SDJ
32742013-03-14 Keith Seitz <keiths@redhat.com>
3275 Alan Matsuoka <alanm@redhat.com>
3276
3277 PR c++/15203
3278 PR c++/15210
3279 * cp-namespace.c (cp_lookup_nested_symbol): Handle TYPE_CODE_FUNC and
3280 TYPE_CODE_METHOD.
3281 * elfread.c (elf_symtab_read): Handle BSF_GNU_UNIQUE for certain
3282 symbols.
3283
d6682f9e
YQ
32842013-03-14 Yao Qi <yao@codesourcery.com>
3285
3286 * tracepoint.c (tfile_write_status): Write 'stop_desc' of trace
3287 status to tfile if trace is stopped by command 'tstop'.
3288
a22fa6e4
YQ
32892013-03-14 Yao Qi <yao@codesourcery.com>
3290
3291 * tracepoint.c (tfile_write_status): Write trace notes and user
3292 name into tfile if they are not NULL.
3293
d0353e76
YQ
32942013-03-14 Hui Zhu <hui@codesourcery.com>
3295 Yao Qi <yao@codesourcery.com>
3296
3297 * Makefile.in (REMOTE_OBS): Add ctf.o.
3298 (SFILES): Add ctf.c.
3299 (HFILES_NO_SRCDIR): Add ctf.h.
3300 * ctf.c, ctf.h: New files.
3301 * tracepoint.c: Include 'ctf.h'.
3302 (collect_pseudocommand): Remove static.
3303 (trace_save_command): Parse option "-ctf".
3304 Produce different trace file writers per option.
3305 Adjust output message.
3306 (trace_save_tfile, trace_save_ctf): New.
3307 * tracepoint.h (trace_save_tfile, trace_save_ctf): Declare.
3308 * mi/mi-main.c: Include 'ctf.h'.
3309 (mi_cmd_trace_save): Handle option '-ctf'. Call either
3310 trace_save_tfile or trace_save_ctf.
3311 * NEWS: Mention these changes.
3312
3f43bc09
YQ
33132013-03-14 Yao Qi <yao@codesourcery.com>
3314
3315 * tracepoint.c (trace_file_writer_xfree): New.
3316 (struct tfile_writer_data): New.
3317 (tfile_dtor, tfile_can_target_save, tfile_start): New.
3318 (tfile_write_header, tfile_write_regblock_type): New.
3319 (tfile_write_status, tfile_write_uploaded_tsv): New.
3320 (tfile_write_uploaded_tp, tfile_write_definition_end): New.
3321 (tfile_write_raw_data, (tfile_end): New.
3322 (tfile_write_ops): New global variable.
3323 (TRACE_WRITE_R_BLOCK): New macro.
3324 (TRACE_WRITE_M_BLOCK_HEADER): New macro.
3325 (TRACE_WRITE_M_BLOCK_MEMORY): New macro.
3326 (TRACE_WRITE_V_BLOCK): New macro.
3327 (trace_save): Add extra one parameter WRITER. Make it static.
3328 Use WRITER to writer trace.
3329 (tfile_trace_file_writer_new): New.
3330 (trace_save_command): Caller update.
3331 (trace_save_tfile): Write trace data in TFILE format.
3332 * tracepoint.h (struct trace_frame_write_ops): New.
3333 (struct trace_file_write_ops): New.
3334 (struct trace_file_writer): New.
3335 (trace_save): Remove its declaration.
3336 (trace_save_tfile): Declare it.
3337 * mi/mi-main.c (mi_cmd_trace_save): Call trace_save_tfile
3338 instead of trace_save.
3339
58665b40
PA
33402013-03-13 Pedro Alves <palves@redhat.com>
3341
3342 * hppa-hpux-nat.c (hppa_hpux_save_state_offset): Make static.
3343
10217050
PA
33442013-03-13 Pedro Alves <palves@redhat.com>
3345
3346 * dbxread.c (read_ofile_symtab, process_one_symbol): Remove
3347 commented out code.
3348 * demangle.c (current_demangling_style_string): Make it const.
3349 (set_demangling_command): Assert the demangling style is known.
3350 Remove all handling of unknown styles. Set
3351 'current_demangling_style_string' to an element of the
3352 demangling_style_names array.
3353 (set_demangling_style): Delete.
3354 (_initialize_demangler): Set current_demangling_style_string to the
3355 element of the demangling_style_names array that corresponds to
3356 the default demangling style. Remove FIXME note. Don't call
3357 set_demangling_style.
3358 * gdb-demangle.h (set_demangling_style): Remove declaration.
3359
6f937416
PA
33602013-03-13 Pedro Alves <palves@redhat.com>
3361
3362 * ada-lang.c (struct add_partial_datum) <text, text0, word>: Make
3363 fields const.
3364 (ada_make_symbol_completion_list): Make "text0" parameter const.
3365 * ax-gdb.c (agent_eval_command_one): Make "exp" parameter const.
3366 * breakpoint.c (condition_completer): Make "text" and "word"
3367 parameters const. Adjust.
3368 (check_tracepoint_command): Adjust to validate_actionline
3369 prototype change.
3370 (catch_syscall_completer): Make "text" and "word" parameters
3371 const.
3372 * cli/cli-cmds.c (show_user): Make "comname" local const.
3373 (valid_command_p): Make "command" parameter const.
3374 (alias_command): Make "alias_prefix" and "command_prefix" locals
3375 const.
3376 * cli/cli-decode.c (add_cmd): Make "name" parameter const.
3377 (add_alias_cmd): Make "name" and "oldname" parameters const.
3378 Adjust. No longer make copy of OLDNAME.
3379 (add_prefix_cmd, add_abbrev_prefix_cmd, add_set_or_show_cmd)
3380 (add_setshow_cmd_full, add_setshow_enum_cmd)
3381 (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
3382 (add_setshow_filename_cmd, add_setshow_string_cmd)
3383 (add_setshow_string_noescape_cmd)
3384 (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
3385 (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
3386 (add_setshow_zuinteger_unlimited_cmd, add_setshow_zuinteger_cmd)
3387 (delete_cmd, add_info, add_info_alias, add_com, add_com_alias):
3388 Make "name" parameter const.
3389 (help_cmd): Rename "command" parameter to "arg". New const local
3390 "command".
3391 (find_cmd): Make "command" parameter const.
3392 (lookup_cmd_1): Make "text" parameter pointer to const. Adjust to
3393 deprecated_cmd_warning prototype change.
3394 (undef_cmd_error): Make "cmdtype" parameter const.
3395 (lookup_cmd): Make "line" parameter const.
3396 (deprecated_cmd_warning): Change type of "text" parameter to
3397 pointer to const char, from pointer to pointer to char. Adjust.
3398 (lookup_cmd_composition): Make "text" parameter const.
3399 (complete_on_cmdlist, complete_on_enum): Make "text" and "word"
3400 parameters const.
3401 * cli/cli-decode.h (struct cmd_list_element) <name>: Make field
3402 const.
3403 * cli/cli-script.c (validate_comname): Make "tem" local const.
3404 (define_command): New const local "tem_c". Use it in calls to
3405 lookup_cmd.
3406 (document_command): Make "tem" and "comfull" locals const.
3407 (show_user_1): Make "prefix" and "name" parameters const.
3408 * cli-script.h (show_user_1): Make "prefix" and "name" parameters
3409 const.
3410 * command.h (add_cmd, add_alias_cmd, add_prefix_cmd)
3411 (add_abbrev_prefix_cmd, completer_ftype, lookup_cmd, lookup_cmd_1)
3412 (deprecated_cmd_warning, lookup_cmd_composition, add_com)
3413 (add_com_alias, add_info, add_info_alias, complete_on_cmdlist)
3414 (complete_on_enum, add_setshow_enum_cmd)
3415 (add_setshow_auto_boolean_cmd, add_setshow_boolean_cmd)
3416 (add_setshow_filename_cmd, add_setshow_string_cmd)
3417 (add_setshow_string_noescape_cmd)
3418 (add_setshow_optional_filename_cmd, add_setshow_integer_cmd)
3419 (add_setshow_uinteger_cmd, add_setshow_zinteger_cmd)
3420 (add_setshow_zuinteger_cmd, add_setshow_zuinteger_unlimited_cmd):
3421 Change prototypes, constifying strings.
3422 * completer.c (noop_completer, filename_completer): Make "text"
3423 and "prefix" parameters const.
3424 (location_completer, expression_completer)
3425 (complete_line_internal): Make "text" and "prefix" parameters
3426 const and adjust.
3427 (command_completer, signal_completer): Make "text" and "prefix"
3428 parameters const.
3429 * completer.h (noop_completer, filename_completer)
3430 (expression_completer, location_completer, command_completer)
3431 (signal_completer): Change prototypes.
3432 * corefile.c (complete_set_gnutarget): Make "text" and "word"
3433 parameters const.
3434 * cp-abi.c (cp_abi_completer): Likewise.
3435 * expression.h (parse_expression_for_completion): Change
3436 prototype.
3437 * f-lang.c (f_make_symbol_completion_list): Make "text" and "word"
3438 parameters const.
3439 * infcmd.c (_initialize_infcmd): Make "cmd_name" local const.
3440 * infrun.c (handle_completer): Make "text" and "word" parameters
3441 const.
3442 * interps.c (interpreter_completer): Make "text" and "word"
3443 parameters const.
3444 * language.h (struct language_defn)
3445 <la_make_symbol_completion_list>: Make "text" and "word"
3446 parameters const.
3447 * parse.c (parse_exp_1): Move const hack to parse_exp_in_context.
3448 (parse_exp_in_context): Rename to ...
3449 (parse_exp_in_context_1): ... this.
3450 (parse_exp_in_context): Reimplement, with const hack from
3451 parse_exp_1.
3452 (parse_expression_for_completion): Make "string" parameter const.
3453 * printcmd.c (decode_format): Make "string_ptr" parameter pointer
3454 to pointer to const char. Adjust.
3455 (print_command_1): Make "exp" parameter const.
3456 (output_command): Rename to ...
3457 (output_command_const): ... this. Make "exp" parameter const.
3458 (output_command): Reimplement.
3459 (x_command): Adjust.
3460 (display_command): Rename "exp" parameter to "arg". New "exp"
3461 local, const version of "arg".
3462 * python/py-auto-load.c (gdbpy_initialize_auto_load): Make
3463 "cmd_name" local const.
3464 * python/py-cmd.c (cmdpy_destroyer): Cast const away in xfree
3465 call.
3466 (cmdpy_completer): Make "text" and "word" parameters const.
3467 (gdbpy_parse_command_name): Make "prefix_text2" local const.
3468 * python/py-param.c (add_setshow_generic): Make "tmp_name" local
3469 const.
3470 * remote.c (_initialize_remote): Make "cmd_name" local const.
3471 * symtab.c (language_search_unquoted_string): Make "text" and "p"
3472 parameters const. Adjust.
3473 (completion_list_add_fields): Make "sym_text", "text" and "word"
3474 parameters const.
3475 (struct add_name_data) <sym_text, text, word>: Make fields const.
3476 (default_make_symbol_completion_list_break_on): Make "text" and
3477 "word" parameters const. Adjust locals.
3478 (default_make_symbol_completion_list)
3479 (make_symbol_completion_list, make_symbol_completion_type)
3480 (make_symbol_completion_list_fn): Make "text" and "word"
3481 parameters const.
3482 (make_file_symbol_completion_list): Make "text", "word" and
3483 "srcfile" parameters const. Adjust locals.
3484 (add_filename_to_list): Make "text" and "word" parameters const.
3485 (struct add_partial_filename_data) <text, word>: Make fields
3486 const.
3487 (make_source_files_completion_list): Make "text" and "word"
3488 parameters const.
3489 * symtab.h (default_make_symbol_completion_list_break_on)
3490 (default_make_symbol_completion_list, make_symbol_completion_list)
3491 (make_symbol_completion_type enum type_code)
3492 (make_symbol_completion_list_fn make_file_symbol_completion_list)
3493 (make_source_files_completion_list): Change prototype.
3494 * top.c (execute_command): Adjust to pass pointer to pointer to
3495 const char to lookup_cmd, and to deprecated_cmd_warning prototype
3496 change.
3497 (set_verbose): Make "cmdname" local const.
3498 * tracepoint.c (decode_agent_options): Make "exp" parameter const,
3499 and adjust.
3500 (validate_actionline): Make "line" parameter a pointer to const
3501 char, and adjust.
3502 (encode_actions_1): Make "action_exp" local const, and adjust.
3503 (encode_actions): Adjust.
3504 (replace_comma): Delete.
3505 (trace_dump_actions): Make "action_exp" and "next_comma" locals
3506 const, and adjust. Don't frob the action string while splitting
3507 it at commas. Instead, make a copy of each split substring in
3508 turn.
3509 (trace_dump_command): Adjust to validate_actionline prototype
3510 change.
3511 * tracepoint.h (decode_agent_options, decode_agent_options)
3512 (encode_actions, validate_actionline): Change prototypes.
3513 * valprint.h (output_command): Delete declaration.
3514 (output_command_const): Declare.
3515 * value.c (function_destroyer): Cast const away in xfree call.
3516
a0bcdaa7
PA
35172013-03-13 Pedro Alves <palves@redhat.com>
3518
3519 * ada-lang.c (ada_decode_symbol): Cast away constness of GSYMBOL
3520 rather than casting 'const char * const *' to 'const char **'.
3521 * ada-lex.l (processInt): Make "trailer" local const. Remove
3522 'const char **' cast.
3523 * arm-linux-tdep.c (arm_stap_parse_special_token): Add 'char *'
3524 locals, and use those as strtol output pointer, instead than doing
3525 invalid casts to from 'const char **' to 'char **'.
3526 (_initialize_demangle): Remove cast.
3527 * i386-tdep.c (i386_stap_parse_special_token): : Add 'char *'
3528 locals, and use those as strtol output pointer, instead than doing
3529 invalid casts to from 'const char **' to 'char **'.
3530 * solib-dsbt.c (dsbt_get_initial_loadmaps): Remove 'gdb_byte**'
3531 casts.
3532 * stap-probe.c (stap_parse_register_operand)
3533 (stap_parse_single_operand): Likewise.
3534
8ddb1965
YQ
35352013-03-13 Yao Qi <yao@codesourcery.com>
3536
3537 * tracepoint.c (tfile_get_trace_state_variable_value): Look for
3538 the last matched 'V' blcok in trace frame.
3539
2d450646
JB
35402013-03-12 Joel Brobecker <brobecker@adacore.com>
3541
3542 * NEWS: Create a new section for the next release branch.
3543 Rename the section of the current branch, now that it has
3544 been cut.
3545
b4b79973 35462013-03-12 Joel Brobecker <brobecker@adacore.com>
3547
3548 GDB 7.6 branch created (branch timestamp: 2013-03-12 22:15 UTC)
3549 * version.in: Bump version to 7.6.50.20130312-cvs.
3550
ee047554
KS
35512013-03-12 Keith Seitz <keiths@redhat.com>
3552
3553 * mi/mi-cmds.h (mi_execute_command): Make "cmd" const.
3554 * mi/mi-interp.c (mi_interpreter_exec): Make "command" const.
3555 Remove temporary copy of input string.
3556 (mi_execute_command_wrapper): Make "cmd" const.
3557 * mi/mi-main.c (mi_execute_command): Make "string_ptr" const.
3558 * mi/mi-parse.c (mi_parse_argv): Make "args" const.
3559 Use const strings.
3560 (mi_parse): Make "cmd" const.
3561 Use const strings.
3562 * mi/mi-parse.h (mi_parse): Make "cmd" const.
3563
bbc13ae3
KS
35642013-03-12 Keith Seitz <keiths@redhat.com>
3565
3566 * ada-lang.c (ada_read_renaming_var_value): Pass const
3567 pointer to expression string to parse_exp_1.
3568 (create_excep_cond_exprs): Likewise.
3569 * ax-gdb.c (agent_eval_command_one): Likewise.
3570 (maint_agent_printf_command): Likewise.
3571 Constify much of the string handling/parsing.
3572 * breakpoint.c (set_breakpoint_condition): Pass const
3573 pointer to expression string to parse_exp_1.
3574 (update_watchpoint): Likewise.
3575 (parse_cmd_to_aexpr): Constify string handling.
3576 Pass const pointer to parse_exp_1.
3577 (init_breakpoint_sal): Pass const pointer to parse_exp_1.
3578 (find_condition_and_thread): Likewise.
3579 Make TOK const.
3580 (watch_command_1): Make "arg" const.
3581 Constify string handling.
3582 Copy the expression string instead of changing the input
3583 string.
3584 (update_breakpoint_location): Pass const pointer to
3585 parse_exp_1.
3586 * eval.c (parse_and_eval_address): Make "exp" const.
3587 (parse_to_comma_and_eval): Make "expp" const.
3588 (parse_and_eval): Make "exp" const.
3589 * expression.h (parse_expression): Make argument const.
3590 (parse_exp_1): Make first argument const.
3591 * findcmd.c (parse_find_args): Treat "args" as const.
3592 * linespec.c (parse_linespec): Pass const pointer to
3593 linespec_expression_to_pc.
3594 (linespec_expression_to_pc): Make "exp_ptr" const.
3595 * parse.c (parse_exp_1): Make "stringptr" const.
3596 Make a copy of the expression to pass to parse_exp_in_context until
3597 this whole interface can be constified.
3598 (parse_expression): Make "string" const.
3599 * printcmd.c (ui_printf): Treat "arg" as const.
3600 Handle const strings.
3601 * tracepoint.c (validate_actionline): Pass const pointer to
3602 all calls to parse_exp_1.
3603 (encode_actions_1): Likewise.
3604 * value.h (parse_to_comma_and_eval): Make argument const.
3605 (parse_and_eval_address): Likewise.
3606 (parse_and_eval): Likewise.
3607 * varobj.c (varobj_create): Pass const pointer to parse_exp_1.
3608 (varobj_set_value): Likewise.
3609 * cli/cli-cmds.c (disassemble_command): Treat "arg" as const and
3610 constify string handling.
3611 Pass const pointers to parse_and_eval_address and
3612 parse_to_comman_and_eval.
3613 * cli/cli-utils.c (skip_to_space): Rename to ...
3614 (skip_to_space_const): ... this. Handle const strings.
3615 * cli/cli-utils.h (skip_to_space): Turn into macro which invokes
3616 skip_to_space_const.
3617 (skip_to_space_const): Declare.
3618 * common/format.c (parse_format_string): Make "arg" const.
3619 Handle const strings.
3620 * common/format.h (parse_format_string): Make "arg" const.
3621 * gdbserver/ax.c (ax_printf): Make "format" const.
3622 * python/python.c (gdbpy_parse_and_eval): Do not make a copy
3623 of the expression string.
3624
f3cec7e6
HZ
36252013-03-12 Hui Zhu <hui@codesourcery.com>
3626
3627 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Update error message.
3628
9df7235c
HZ
36292013-03-12 Yao Qi <yao@codesourcery.com>
3630 Hui Zhu <hui@codesourcery.com>
3631
3632 * dwarf2loc.c (access_memory): Change nbits to nbytes in gdb_assert.
3633 (dwarf2_compile_expr_to_ax): Call access_memory in DW_OP_deref and
3634 DW_OP_deref_size.
3635
82d049ab
PH
36362013-03-12 Paul Hilfinger <hilfingr@adacore.com>
3637
5f8e0b8f
MF
3638 * ada-lex.l (rules): Only recognize 'thread' as a
3639 delimiter when followed by numerals, as for c-exp.y.
3640 Use new rewind_to_char function to rewind the input for
3641 expression-delimiting tokens.
3642 (rewind_to_char): New function.
82d049ab 3643
8c1fb155
JK
36442013-03-11 Pedro Alves <palves@redhat.com>
3645 Jan Kratochvil <jan.kratochvil@redhat.com>
3646
3647 * configure: Regenerate.
3648 * configure.ac (check dynamic export flag): Link python test with
3649 $PYTHON_LIBS.
3650
cc81e1c6
DE
36512013-03-11 Doug Evans <dje@google.com>
3652 Keith Seitz <keiths@redhat.com>
3653
3654 * linespec.c (find_linespec_symbols): Call find_function_symbols
3655 first, and then call lookup_prefix_sym/find_method.
3656
39086a0e
PA
36572013-03-11 Pedro Alves <palves@redhat.com>
3658
3659 * charset.c (convert_between_encodings): Don't cast between
3660 different pointer to pointer types. Instead, make the 'inp' local
3661 be of the type iconv expects.
3662 (wchar_iterate): Don't cast between different pointer to pointer
3663 types. Instead, use new pointer local of the type iconv expects.
3664 * target.c (target_read_stralloc, target_fileio_read_stralloc):
3665 Add new local of type char pointer, and use it to get a
3666 char/string view of the byte buffer, instead of casting between
3667 pointer to pointer types.
3668
90585175
HAQ
36692013-03-11 Hafiz Abid Qadeer <abidh@codesourcery.com>
3670
3671 * remote.c (remote_set_trace_buffer_size): Move != operator
3672 to the start of next line to fix an ARI warning.
3673
59ea5688
MM
36742013-03-11 Markus Metzger <markus.t.metzger@intel.com>
3675
3676 * NEWS: Add record changes.
3677
946287b7
MM
36782013-03-11 Markus Metzger <markus.t.metzger@intel.com>
3679
3680 * record-btrace.c (btrace_insn_history): Omit the pc prefix in
3681 the instruction history disassembly.
3682 * disasm.c (dump_insns): Omit the pc prefix, if requested.
3683 * disasm.h (DISASSEMBLY_OMIT_PC): New.
3684
afedecd3
MM
36852013-03-11 Markus Metzger <markus.t.metzger@intel.com>
3686
3687 * Makefile.in (SFILES): Add record-btrace.c
3688 (COMMON_OBS): Add record-btrace.o
3689 * record-btrace.c: New.
3690 * objfiles.c: Include btrace.h.
3691 (free_objfile): call btrace_free_objfile.
3692
15984c13
MM
36932013-03-11 Markus Metzger <markus.t.metzger@intel.com>
3694
3695 * target.c (target_call_history, target_call_history_from,
3696 target_call_history_range): New.
3697 * target.h (target_ops) <to_call_history, to_call_history_from,
3698 to_call_history_range>: New fields.
3699 (target_call_history, target_call_history_from,
3700 target_call_history_range): New declaration.
3701 * record.c (get_call_history_modifiers, cmd_record_call_history,
3702 record_call_history_size): New.
3703 (_initialize_record): Add the "record function-call-history" command.
3704 Add "set/show record function-call-history-size" commands.
3705 * record.h (record_print_flag): New.
3706
67c86d06
MM
37072013-03-11 Markus Metzger <markus.t.metzger@intel.com>
3708
3709 * target.h (target_ops) <to_insn_history, to_insn_history_from,
3710 to_insn_history_range>: New fields.
3711 (target_insn_history): New.
3712 (target_insn_history_from): New.
3713 (target_insn_history_range): New.
3714 * target.c (target_insn_history): New.
3715 (target_insn_history_from): New.
3716 (target_insn_history_range): New.
3717 * record.c: Include cli/cli-utils.h, disasm.h, ctype.h.
3718 (record_insn_history_size): New.
3719 (get_insn_number): New.
3720 (get_context_size): New.
3721 (no_chunk): New.
3722 (get_insn_history_modifiers): New.
3723 (cmd_record_insn_history): New.
3724 (_initialize_record): Add "set/show record instruction-history-size"
3725 command. Add "record instruction-history" command.
3726
7c1687a9
MM
37272013-03-11 Markus Metzger <markus.t.metzger@intel.com>
3728
3729 * record.h (record_disconnect): New.
3730 (record_detach): New.
3731 (record_mourn_inferior): New.
3732 (record_kill): New.
3733 * record-full.c (record_disconnect, record_detach,
3734 record_mourn_inferior, record_kill): Move to...
3735 * record.c: ...here.
3736 (DEBUG): New.
3737 (record_stop): New.
3738 (record_unpush): New.
3739 (cmd_record_stop): Call record_stop. Replace unpush_target
3740 call with record_unpush call.
3741 (record_disconnect, record_detach): Assert that the target
3742 is of record stratum. Call record_unpush, record_stop, and
3743 DEBUG.
3744 (record_mourn_inferior, record_kill): Assert that the target
3745 is of record stratum. Call record_unpush and DEBUG.
3746
25ea693b
MM
37472013-03-11 Markus Metzger <markus.t.metzger@intel.com>
3748
3749 * record-full.h, record-full.c (record_memory_query): Rename
3750 to ...
3751 (record_full_memory_query): ...this. Update all users.
3752 (record_arch_list_add_reg): Rename to ...
3753 (record_full_arch_list_add_reg): ...this. Update all users.
3754 (record_arch_list_add_mem): Rename to ...
3755 (record_full_arch_list_add_mem): ...this. Update all users.
3756 (record_arch_list_add_end): Rename to ...
3757 (record_full_arch_list_add_end): ...this. Update all users.
3758 (record_gdb_operation_disable_set): Rename to ...
3759 (record_full_gdb_operation_disable_set): ...this.
3760 Update all users.
3761
88d1aa9d
MM
37622013-03-11 Markus Metzger <markus.t.metzger@intel.com>
3763
3764 * record-full.c (DEFAULT_RECORD_INSN_MAX_NUM): Renamed to ...
3765 (DEFAULT_RECORD_FULL_INSN_MAX_NUM): ... this. Updated all users.
3766 (RECORD_IS_REPLAY): Renamed to ...
3767 (RECORD_FULL_IS_REPLAY): ... this. Updated all users.
3768 (RECORD_FILE_MAGIC): Renamed to ...
3769 (RECORD_FULL_FILE_MAGIC): ... this. Updated all users.
3770 (record_mem_entry): Renamed to ...
3771 (record_full_mem_entry): ... this. Updated all users.
3772 (record_reg_entry): Renamed to ...
3773 (record_full_reg_entry): ... this. Updated all users.
3774 (record_end_entry): Renamed to ...
3775 (record_full_end_entry): ... this. Updated all users.
3776 (record_type) <record_end, record_reg, record_mem>: Renamed
3777 to ...
3778 (record_full_type) <record_full_end, record_full_reg,
3779 record_full_mem>: ... this. Updated all users.
3780 (record_entry): Renamed to ...
3781 (record_full_entry): ... this. Updated all users.
3782 (record_core_buf_entry): Renamed to ...
3783 (record_full_core_buf_entry): ... this. Updated all users.
3784 (record_core_regbuf): Renamed to ...
3785 (record_full_core_regbuf): ... this. Updated all users.
3786 (record_core_start): Renamed to ...
3787 (record_full_core_start): ... this. Updated all users.
3788 (record_core_end): Renamed to ...
3789 (record_full_core_end): ... this. Updated all users.
3790 (record_core_buf_list): Renamed to ...
3791 (record_full_core_buf_list): ... this. Updated all users.
3792 (record_first): Renamed to ...
3793 (record_full_first): ... this. Updated all users.
3794 (record_list): Renamed to ...
3795 (record_full_list): ... this. Updated all users.
3796 (record_arch_list_head): Renamed to ...
3797 (record_full_arch_list_head): ... this. Updated all users.
3798 (record_arch_list_tail): Renamed to ...
3799 (record_full_arch_list_tail): ... this. Updated all users.
3800 (record_stop_at_limit): Renamed to ...
3801 (record_full_stop_at_limit): ... this. Updated all users.
3802 (record_insn_max_num): Renamed to ...
3803 (record_full_insn_max_num): ... this. Updated all users.
3804 (record_insn_num): Renamed to ...
3805 (record_full_insn_num): ... this. Updated all users.
3806 (record_insn_count): Renamed to ...
3807 (record_full_insn_count): ... this. Updated all users.
3808 (record_ops): Renamed to ...
3809 (record_full_ops): ... this. Updated all users.
3810 (record_core_ops): Renamed to ...
3811 (record_full_core_ops): ... this. Updated all users.
3812 (set_record_cmdlist): Renamed to ...
3813 (set_record_full_cmdlist): ... this. Updated all users.
3814 (show_record_cmdlist): Renamed to ...
3815 (show_record_full_cmdlist): ... this. Updated all users.
3816 (record_cmdlist): Renamed to ...
3817 (record_full_cmdlist): ... this. Updated all users.
3818 (record_beneath_to_resume_ops): Renamed to ...
3819 (record_full_beneath_to_resume_ops): ... this. Updated all users.
3820 (record_beneath_to_resume): Renamed to ...
3821 (record_full_beneath_to_resume): ... this. Updated all users.
3822 (record_beneath_to_wait_ops): Renamed to ...
3823 (record_full_beneath_to_wait_ops): ... this. Updated all users.
3824 (record_beneath_to_wait): Renamed to ...
3825 (record_full_beneath_to_wait): ... this. Updated all users.
3826 (record_beneath_to_store_registers_ops): Renamed to ...
3827 (record_full_beneath_to_store_registers_ops): ... this.
3828 Updated all users.
3829 (record_beneath_to_store_registers): Renamed to ...
3830 (record_full_beneath_to_store_registers): ... this.
3831 Updated all users.
3832 (record_beneath_to_xfer_partial_ops): Renamed to ...
3833 (record_full_beneath_to_xfer_partial_ops): ... this.
3834 Updated all users.
3835 (record_beneath_to_xfer_partial): Renamed to ...
3836 (record_full_beneath_to_xfer_partial): ... this.
3837 Updated all users.
3838 (record_beneath_to_insert_breakpoint): Renamed to ...
3839 (record_full_beneath_to_insert_breakpoint): ... this.
3840 Updated all users.
3841 (record_beneath_to_stopped_by_watchpoint): Renamed to ...
3842 (record_full_beneath_to_stopped_by_watchpoint): ... this.
3843 Updated all users.
3844 (record_beneath_to_stopped_data_address): Renamed to ...
3845 (record_full_beneath_to_stopped_data_address): ... this.
3846 Updated all users.
3847 (record_beneath_to_async): Renamed to ...
3848 (record_full_beneath_to_async): ... this. Updated all users.
3849 (record_goto_insn): Renamed to ...
3850 (record_full_goto_insn): ... this. Updated all users.
3851 (record_save): Renamed to ...
3852 (record_full_save): ... this. Updated all users.
3853 (record_reg_alloc): Renamed to ...
3854 (record_full_reg_alloc): ... this. Updated all users.
3855 (record_reg_release): Renamed to ...
3856 (record_full_reg_release): ... this. Updated all users.
3857 (record_mem_alloc): Renamed to ...
3858 (record_full_mem_alloc): ... this. Updated all users.
3859 (record_mem_release): Renamed to ...
3860 (record_full_mem_release): ... this. Updated all users.
3861 (record_end_alloc): Renamed to ...
3862 (record_full_end_alloc): ... this. Updated all users.
3863 (record_end_release): Renamed to ...
3864 (record_full_end_release): ... this. Updated all users.
3865 (record_entry_release): Renamed to ...
3866 (record_full_entry_release): ... this. Updated all users.
3867 (record_list_release): Renamed to ...
3868 (record_full_list_release): ... this. Updated all users.
3869 (record_list_release_following): Renamed to ...
3870 (record_full_list_release_following): ... this.
3871 Updated all users.
3872 (record_list_release_first): Renamed to ...
3873 (record_full_list_release_first): ... this. Updated all users.
3874 (record_arch_list_add): Renamed to ...
3875 (record_full_arch_list_add): ... this. Updated all users.
3876 (record_get_loc): Renamed to ...
3877 (record_full_get_loc): ... this. Updated all users.
3878 (record_check_insn_num): Renamed to ...
3879 (record_full_check_insn_num): ... this. Updated all users.
3880 (record_arch_list_cleanups): Renamed to ...
3881 (record_full_arch_list_cleanups): ... this. Updated all users.
3882 (record_message): Renamed to ...
3883 (record_full_message): ... this. Updated all users.
3884 (record_message_wrapper): Renamed to ...
3885 (record_full_message_wrapper): ... this. Updated all users.
3886 (record_message_wrapper_safe): Renamed to ...
3887 (record_full_message_wrapper_safe): ... this. Updated all users.
3888 (record_gdb_operation_disable): Renamed to ...
3889 (record_full_gdb_operation_disable): ... this. Updated all users.
3890 (record_hw_watchpoint): Renamed to ...
3891 (record_full_hw_watchpoint): ... this. Updated all users.
3892 (record_exec_insn): Renamed to ...
3893 (record_full_exec_insn): ... this. Updated all users.
3894 (record_restore): Renamed to ...
3895 (record_full_restore): ... this. Updated all users.
3896 (record_async_inferior_event_token): Renamed to ...
3897 (record_full_async_inferior_event_token): ... this.
3898 Updated all users.
3899 (record_async_inferior_event_handler): Renamed to ...
3900 (record_full_async_inferior_event_handler): ... this.
3901 Updated all users.
3902 (record_core_open_1): Renamed to ...
3903 (record_full_core_open_1): ... this. Updated all users.
3904 (record_open_1): Renamed to ...
3905 (record_full_open_1): ... this. Updated all users.
3906 (record_open): Renamed to ...
3907 (record_full_open): ... this. Updated all users.
3908 (record_close): Renamed to ...
3909 (record_full_close): ... this. Updated all users.
3910 (record_resume_step): Renamed to ...
3911 (record_full_resume_step): ... this. Updated all users.
3912 (record_resumed): Renamed to ...
3913 (record_full_resumed): ... this. Updated all users.
3914 (record_execution_dir): Renamed to ...
3915 (record_full_execution_dir): ... this. Updated all users.
3916 (record_resume): Renamed to ...
3917 (record_full_resume): ... this. Updated all users.
3918 (record_get_sig): Renamed to ...
3919 (record_full_get_sig): ... this. Updated all users.
3920 (record_sig_handler): Renamed to ...
3921 (record_full_sig_handler): ... this. Updated all users.
3922 (record_wait_cleanups): Renamed to ...
3923 (record_full_wait_cleanups): ... this. Updated all users.
3924 (record_wait_1): Renamed to ...
3925 (record_full_wait_1): ... this. Updated all users.
3926 (record_wait): Renamed to ...
3927 (record_full_wait): ... this. Updated all users.
3928 (record_stopped_by_watchpoint): Renamed to ...
3929 (record_full_stopped_by_watchpoint): ... this. Updated all users.
3930 (record_disconnect): Renamed to ...
3931 (record_full_disconnect): ... this. Updated all users.
3932 (record_detach): Renamed to ...
3933 (record_full_detach): ... this. Updated all users.
3934 (record_mourn_inferior): Renamed to ...
3935 (record_full_mourn_inferior): ... this. Updated all users.
3936 (record_kill): Renamed to ...
3937 (record_full_kill): ... this. Updated all users.
3938 (record_stopped_data_address): Renamed to ...
3939 (record_full_stopped_data_address): ... this. Updated all users.
3940 (record_registers_change): Renamed to ...
3941 (record_full_registers_change): ... this. Updated all users.
3942 (record_store_registers): Renamed to ...
3943 (record_full_store_registers): ... this. Updated all users.
3944 (record_xfer_partial): Renamed to ...
3945 (record_full_xfer_partial): ... this. Updated all users.
3946 (record_breakpoint): Renamed to ...
3947 (record_full_breakpoint): ... this. Updated all users.
3948 (record_breakpoint_p): Renamed to ...
3949 (record_full_breakpoint_p): ... this. Updated all users.
3950 (record_breakpoints): Renamed to ...
3951 (record_full_breakpoints): ... this. Updated all users.
3952 (record_sync_record_breakpoints): Renamed to ...
3953 (record_full_sync_record_breakpoints): ... this.
3954 Updated all users.
3955 (record_init_record_breakpoints): Renamed to ...
3956 (record_full_init_record_breakpoints): ... this.
3957 Updated all users.
3958 (record_insert_breakpoint): Renamed to ...
3959 (record_full_insert_breakpoint): ... this. Updated all users.
3960 (record_remove_breakpoint): Renamed to ...
3961 (record_full_remove_breakpoint): ... this. Updated all users.
3962 (record_can_execute_reverse): Renamed to ...
3963 (record_full_can_execute_reverse): ... this. Updated all users.
3964 (record_get_bookmark): Renamed to ...
3965 (record_full_get_bookmark): ... this. Updated all users.
3966 (record_goto_bookmark): Renamed to ...
3967 (record_full_goto_bookmark): ... this. Updated all users.
3968 (record_async): Renamed to ...
3969 (record_full_async): ... this. Updated all users.
3970 (record_can_async_p): Renamed to ...
3971 (record_full_can_async_p): ... this. Updated all users.
3972 (record_is_async_p): Renamed to ...
3973 (record_full_is_async_p): ... this. Updated all users.
3974 (record_execution_direction): Renamed to ...
3975 (record_full_execution_direction): ... this. Updated all users.
3976 (record_info): Renamed to ...
3977 (record_full_info): ... this. Updated all users.
3978 (record_delete): Renamed to ...
3979 (record_full_delete): ... this. Updated all users.
3980 (record_is_replaying): Renamed to ...
3981 (record_full_is_replaying): ... this. Updated all users.
3982 (record_goto_entry): Renamed to ...
3983 (record_full_goto_entry): ... this. Updated all users.
3984 (record_goto_begin): Renamed to ...
3985 (record_full_goto_begin): ... this. Updated all users.
3986 (record_goto_end): Renamed to ...
3987 (record_full_goto_end): ... this. Updated all users.
3988 (record_goto): Renamed to ...
3989 (record_full_goto): ... this. Updated all users.
3990 (init_record_ops): Renamed to ...
3991 (init_record_full_ops): ... this. Updated all users.
3992 (record_core_resume): Renamed to ...
3993 (record_full_core_resume): ... this. Updated all users.
3994 (record_core_kill): Renamed to ...
3995 (record_full_core_kill): ... this. Updated all users.
3996 (record_core_fetch_registers): Renamed to ...
3997 (record_full_core_fetch_registers): ... this. Updated all users.
3998 (record_core_prepare_to_store): Renamed to ...
3999 (record_full_core_prepare_to_store): ... this. Updated all users.
4000 (record_core_store_registers): Renamed to ...
4001 (record_full_core_store_registers): ... this. Updated all users.
4002 (record_core_xfer_partial): Renamed to ...
4003 (record_full_core_xfer_partial): ... this. Updated all users.
4004 (record_core_insert_breakpoint): Renamed to ...
4005 (record_full_core_insert_breakpoint): ... this. Updated all users.
4006 (record_core_remove_breakpoint): Renamed to ...
4007 (record_full_core_remove_breakpoint): ... this. Updated all users.
4008 (record_core_has_execution): Renamed to ...
4009 (record_full_core_has_execution): ... this. Updated all users.
4010 (init_record_core_ops): Renamed to ...
4011 (init_record_full_core_ops): ... this. Updated all users.
4012 (cmd_record_restore): Renamed to ...
4013 (cmd_record_full_restore): ... this. Updated all users.
4014 (record_save_cleanups): Renamed to ...
4015 (record_full_save_cleanups): ... this. Updated all users.
4016 (cmd_record_start): Renamed to ...
4017 (cmd_record_full_start): ... this. Updated all users.
4018 (set_record_insn_max_num): Renamed to ...
4019 (set_record_full_insn_max_num): ... this. Updated all users.
4020 (set_record_command): Renamed to ...
4021 (set_record_full_command): ... this. Updated all users.
4022 (show_record_command): Renamed to ...
4023 (show_record_full_command): ... this. Updated all users.
4024 (_initialize_record): Renamed to ...
4025 (_initialize_record_full): ... this. Updated all users.
4026
d02ed0bb
MM
40272013-03-11 Markus Metzger <markus.t.metzger@intel.com>
4028
4029 * record.h: Split into this and ...
4030 * record-full.h: ... this.
4031 * record.c: Split into this and ...
4032 * record-full.c: ... this.
4033 * target.h (target_ops): Add new fields to_info_record,
4034 to_save_record, to_delete_record, to_record_is_replaying,
4035 to_goto_record_begin, to_goto_record_end, to_goto_record.
4036 (target_info_record): New.
4037 (target_save_record): New.
4038 (target_supports_delete_record): New.
4039 (target_delete_record): New.
4040 (target_record_is_replaying): New.
4041 (target_goto_record_begin): New.
4042 (target_goto_record_end): New.
4043 (target_goto_record): New.
4044 * target.c (target_info_record): New.
4045 (target_save_record): New.
4046 (target_supports_delete_record): New.
4047 (target_delete_record): New.
4048 (target_record_is_replaying): New.
4049 (target_goto_record_begin): New.
4050 (target_goto_record_end): New.
4051 (target_goto_record): New.
4052 * record.h: Declare struct cmd_list_element.
4053 (record_cmdlist): New declaration.
4054 (set_record_cmdlist): New declaration.
4055 (show_record_cmdlist): New declaration.
4056 (info_record_cmdlist): New declaration.
4057 (cmd_record_goto): New declaration.
4058 * record.c: Remove unnecessary includes.
4059 Include inferior.h.
4060 (cmd_record_goto): Remove declaration.
4061 (record_cmdlist): Now extern. Initialize.
4062 (set_record_cmdlist): Now extern. Initialize.
4063 (show_record_cmdlist): Now extern. Initialize.
4064 (info_record_cmdlist): Now extern. Initialize.
4065 (find_record_target): New.
4066 (require_record_target): New.
4067 (cmd_record_start): Update.
4068 (cmd_record_delete): Remove target-specific code.
4069 Call target_delete_record.
4070 (cmd_record_stop): Unpush any record target.
4071 (set_record_insn_max_num): Move to record-full.c
4072 (set_record_command): Add comment.
4073 (show_record_command): Add comment.
4074 (info_record_command): Update comment.
4075 Remove target-specific code.
4076 Call the record target's to_info_record.
4077 (cmd_record_start): New.
4078 (cmd_record_goto): Now extern.
4079 Remove target-specific code.
4080 Call target_goto_begin, target_goto_end, or target_goto.
4081 (_initialize_record): Move record target ops initialization to
4082 record-full.c.
4083 Change "record" command help text.
4084 Move "record restore", "record set", and "record show" commands to
4085 record-full.c.
4086 * Makefile.in (SFILES): Add record-full.c.
4087 (HFILES_NO_SRCDIR): Add record-full.h.
4088 (COMMON_OBS): Add record-full.o.
4089 * amd64-linux-tdep.c: Include record-full.h instead of record.h.
4090 * arm-tdep.c: Include record-full.h.
4091 * i386-linux-tdep.c: Include record-full.h instead of record.h.
4092 * i386-tdep.c: Include record-full.h.
4093 * infrun.c: Include record-full.h.
4094 * linux-record.c: Include record-full.h.
4095 * moxie-tdep.c: Include record-full.h.
4096 * record-full.c: Include record-full.h.
4097 Change module comment.
4098 (set_record_full_cmdlist): New.
4099 (show_record_full_cmdlist): New.
4100 (record_full_cmdlist): New.
4101 (record_goto_insn): New declaration.
4102 (record_save): New declaration.
4103 (record_check_insn_num): Change query string.
4104 (record_info): New.
4105 (record_delete): New.
4106 (record_is_replaying): New.
4107 (record_goto_entry): New.
4108 (record_goto_begin): New.
4109 (record_goto_end): New.
4110 (record_goto): New.
4111 (init_record_ops): Update.
4112 (init_record_core_ops): Update.
4113 (cmd_record_save): Rename to record_save. Remove target and arg checks.
4114 (cmd_record_start): New.
4115 (set_record_insn_max_num): Moved from record.c
4116 (set_record_full_command): New.
4117 (show_record_full_command): New.
4118 (_initialize_record_full): New.
4119
b48d48eb
MM
41202013-03-11 Markus Metzger <markus.t.metzger@intel.com>
4121
4122 * target.h (add_deprecated_target_alias): New.
4123 * target.c (add_deprecated_target_alias): New.
4124
a950d57c
MM
41252013-03-11 Markus Metzger <markus.t.metzger@intel.com>
4126
4127 * common/linux-btrace.c: Include sys/ptrace, sys/types, sys/wait.h,
4128 and signal.h.
4129 (linux_supports_btrace): Add kernel and
4130 cpuid check.
4131 (kernel_supports_btrace): New function.
4132 (cpu_supports_btrace): New function.
4133 (intel_supports_btrace): New function.
4134
9accd112
MM
41352013-03-11 Markus Metzger <markus.t.metzger@intel.com>
4136
4137 * target.h (enum target_object): Add TARGET_OBJECT_BTRACE.
4138 * remote.c: Include btrace.h.
4139 (struct btrace_target_info): New struct.
4140 (remote_supports_btrace): New function.
4141 (send_Qbtrace): New function.
4142 (remote_enable_btrace): New function.
4143 (remote_disable_btrace): New function.
4144 (remote_teardown_btrace): New function.
4145 (remote_read_btrace): New function.
4146 (init_remote_ops): Add btrace ops.
4147 (enum <unnamed>): Add btrace packets.
4148 (struct protocol_feature remote_protocol_features[]): Add btrace packets.
4149 (_initialize_remote): Add packet configuration for branch tracing.
4150
c12a2917
MM
41512013-03-11 Markus Metzger <markus.t.metzger@intel.com>
4152
4153 * features/btrace.dtd: New file.
4154 * Makefile.in (XMLFILES): Add btrace.dtd.
4155 * btrace.h (parse_xml_btrace): New declaration.
4156 * btrace.c: Include xml-support.h.
4157 (parse_xml_btrace): New function.
4158 (parse_xml_btrace_block): New function.
4159 (block_attributes): New struct.
4160 (btrace_attributes): New struct.
4161 (btrace_children): New struct.
4162 (btrace_elements): New struct.
4163
3e3aea48
MM
41642013-03-11 Markus Metzger <markus.t.metzger@intel.com>
4165
4166 * amd64-linux-nat.c: Include btrace.h and linux-btrace.h.
4167 (amd64_linux_enable_btrace): New.
4168 (amd64_linux_disable_btrace): New.
4169 (amd64_linux_teardown_btrace): New.
4170 (_initialize_amd64_linux_nat): Initialize btrace ops.
4171 * i386-linux.nat.c: Include btrace.h and linux-btrace.h.
4172 (i386_linux_enable_btrace): New.
4173 (i386_linux_disable_btrace): New.
4174 (i386_linux_teardown_btrace): New.
4175 (_initialize_i386_linux_nat): Initialize btrace ops.
4176 * config/i386/linux.mh: Add linux-btrace.o.
4177 * config/i386/linux64.mh: Add linux-btrace.o.
4178
7c97f91e
MM
41792013-03-11 Markus Metzger <markus.t.metzger@intel.com>
4180
4181 * common/linux_btrace.h: New file.
4182 * common/linux_btrace.c: New file.
4183 * Makefile.in (SFILES): Add btrace.c.
4184 (HFILES_NO_SRCDIR): Add common/linux-btrace.h.
4185 (COMMON_OBS): Add btrace.o.
4186 (linux-btrace.o): New rule.
4187
1999790b 41882013-03-11 Markus Metzger <markus.t.metzger@intel.com>
02d27625
MM
4189
4190 * target.h: Include btrace.h.
4191 (struct target_ops) <to_supports_btrace, to_enable_btrace,
4192 to_disable_btrace, to_teardown_btrace, to_read_btrace>: New.
4193 * target.c (target_supports_btrace): New function.
4194 (target_enable_btrace): New function.
4195 (target_disable_btrace): New function.
4196 (target_teardown_btrace): New function.
4197 (target_read_btrace): New function.
4198 * btrace.h: New file.
4199 * btrace.c: New file.
4200 * Makefile.in: Add btrace.c.
4201 * gdbthread.h: Include btrace.h.
4202 (struct thread_info): Add btrace field.
4203 * thread.c: Include btrace.h.
4204 (clear_thread_inferior_resources): Call target_teardown_btrace.
4205 * common/btrace-common.h: New file.
4206
61a31a67
JK
42072013-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
4208
4209 * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Call also kill
4210 for CHILD, ignore PTRACE_KILL errors, move the inner block variable
4211 kill_status to outer block.
4212
05c56a9d
JK
42132013-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
4214
4215 Fix entry-values if the callee called a noreturn function.
4216 * dwarf2-frame-tailcall.c (dwarf2_tailcall_sniffer_first): Use
4217 get_frame_address_in_block. Add new comment.
4218
9112db09
JK
42192013-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
4220
4221 Fix entry-values in C++ across CUs.
4222 * dwarf2loc.c (call_site_to_target_addr) <FIELD_LOC_KIND_PHYSNAME>: Use
4223 lookup_minimal_symbol. Add a comment.
4224 * dwarf2read.c
4225 (read_call_site_scope) <is_ref_attr> <die_is_declaration>: Prefer
4226 DW_AT_linkage_name.
4227
9b67fcec
YQ
42282013-03-08 Yao Qi <yao@codesourcery.com>
4229
4230 * tracepoint.c (_initialize_tracepoint): Indent the code.
4231
6221be90
PA
42322013-03-08 Pedro Alves <palves@redhat.com>
4233
4234 * findcmd.c (put_bits): Change type of parameter to 'gdb_byte *'.
4235 (parse_find_args, find_command): Change type of pattern buffer
4236 locals to 'gdb_byte *'.
4237
be9a119c 42382013-03-08 Stan Shebs <stan@codesourcery.com>
f6f899bf
HAQ
4239 Hafiz Abid Qadeer <abidh@codesourcery.com>
4240
4241 * NEWS: Mention set and show trace-buffer-size commands.
4242 Mention new packet.
4243 * target.h (struct target_ops): New method
4244 to_set_trace_buffer_size.
4245 (target_set_trace_buffer_size): New macro.
4246 * target.c (update_current_target): Set up new method.
4247 * tracepoint.c (trace_buffer_size): New global.
4248 (start_tracing): Send it to the target.
4249 (set_trace_buffer_size): New function.
4250 (_initialize_tracepoint): Add new setshow for trace-buffer-size.
4251 * remote.c (remote_set_trace_buffer_size): New function.
4252 (_initialize_remote): Use it.
4253 (QTBuffer:size) New remote command.
4254 (PACKET_QTBuffer_size): New enum.
4255 (remote_protocol_features): Add an entry for
4256 PACKET_QTBuffer_size.
4257
7da3ab79
TT
42582013-03-08 Tom Tromey <tromey@redhat.com>
4259
4260 * remote-m32r-sdi.c (m32r_load): Call skip_spaces on correct
4261 variable.
4262
0c1f71e7
PA
42632013-03-07 Pedro Alves <palves@redhat.com>
4264
4265 * target.c (target_read_stralloc, target_fileio_read_alloc):
4266 *Cast pointer to 'gdb_byte *' in target call.
4267
c8af03a2
PA
42682013-03-07 Pedro Alves <palves@redhat.com>
4269
4270 * corefile.c (read_memory_string): Cast pointer to gdb_byte* in
4271 call.
4272
529480d0
KS
42732013-03-07 Keith Seitz <keiths@redhat.com>
4274
4275 * breakpoint.c (catch_syscall_split_args): Use skip_spaces.
4276 (trace_pass_command): Likewise.
4277 * cli/cli-cmds.c: Include cli/cli-utils.h.
4278 (source_command): Use skip-spaces.
4279 (disassemble_command): Likewise.
4280 * findcmd.c: Include cli/cli-utils.h.
4281 (parse_find_args): Use skip_spaces.
4282 * go32-nat.c: Include cli/cli-utils.h.
4283 (go32_sldt): Use skip_spaces.
4284 (go32_sgdt): Likewise.
4285 (go32_sidt): Likewise.
4286 (go32_pde): Likewise.
4287 (go32_pte): Likewise.
4288 (go32_pte_for_address): Likewise.
4289 * infcmd.c: Include cli/cli-utils.h.
4290 (registers_info): Use skip_spaces.
4291 * linux-tdep.c (read_mapping): Use skip_spaces_const.
4292 (linux_info_proc): Likewise.
4293 * linux-thread-db.c: Include cli/cli-utils.h.
4294 (info_auto_load_libthread_db): Use skip_spaces_const.
4295 * m32r-rom.c: Include cli/cli-utils.h.
4296 (m32r_upload_command): Use skip_spaces.
4297 * maint.c: Include cli/cli-utils.h.
4298 (maintenance_translate_address): Use skip_spaces.
4299 * mi/mi-parse.c: Include cli/cli-utils.h.
4300 (mi_parse_argv): Use skip_spaces.
4301 (mi_parse): Likewise.
4302 * minsyms.c: Include cli/cli-utils.h.
4303 (msymbol_hash_iw): Use skip_spaces_const.
4304 * objc-lang.c: Include cli/cli-utils.h.
4305 (parse_selector): Use skip_spaces.
4306 (parse_method): Likewise.
4307 * python/python.c: Include cli/cli-utils.h.
4308 (python_interactive_command)[HAVE_PYTHON]: Use skip_spaces.
4309 (python_command)[HAVE_PYTHON]: Likewise.
4310 (python_interactive_command)[!HAVE_PYTHON]: Likewise.
4311 * remote-m32r-sdi.c: Include cli/cli-utils.h.
4312 (m32r_load): Use skip_spaces.
4313 * serial.c: Include cli/cli-utils.h.
4314 (serial_open): Use skip_spaces_const.
4315 * stack.c: Include cli/cli-utils.h.
4316 (parse_frame_specification_1): Use skip_spaces_const.
4317 * symfile.c: Include cli/cli-utils.h.
4318 (set_ext_lang_command): Use skip_spaces.
4319 * symtab.c: Include cli/cli-utils.h.
4320 (rbreak_command): Use skip_spaces.
4321 * thread.c (thread_name_command): Use skip_spaces.
4322 * tracepoint.c (validate_actionline): Use skip_spaces.
4323 (encode_actions_1): Likewise.
4324 (trace_find_range_command): Likewise.
4325 (trace_find_outside_command): Likewise.
4326 (trace_dump_actions): Likewise.
4327
ac91cd70
PA
43282013-03-07 Pedro Alves <palves@redhat.com>
4329
4330 * c-lang.c (parse_one_string): Cast argument to gdb_byte *.
4331 * expprint.c (print_subexp_standard): Likewise.
4332 * utils.c (host_char_to_target): Likewise.
4333 * valprint.c (generic_emit_char, generic_printstr): Likewise.
4334 * varobj.c (value_get_print_value): Change type of local to char*.
4335 Cast it gdb_byte * in call to language printer.
4336
2898e560
PA
43372013-03-07 Pedro Alves <palves@redhat.com>
4338
4339 * charset.c (struct wchar_iterator) <input>: Change type to 'const
4340 gdb_byte *'.
4341 (make_wchar_iterator): Remove cast to char*.
4342 (wchar_iterate): Change type of local.
4343
a09b4448
PA
43442013-03-07 Pedro Alves <palves@redhat.com>
4345
4346 * regcache.c (regcache_xmalloc_1): Call XCALLOC with signed char
4347 for 'regcache->register_status'.
4348
20ced3e4
PA
43492013-03-07 Pedro Alves <palves@redhat.com>
4350
c2d6a675 4351 * breakpoint.c (breakpoint_xfer_memory): Change type of local to
20ced3e4
PA
4352 int.
4353
fe106009
PA
43542013-03-07 Pedro Alves <palves@redhat.com>
4355
4356 * stap-probe.c (handle_stap_probe): Add cast to char*.
4357
8ac2c12b
PA
43582013-03-07 Pedro Alves <palves@redhat.com>
4359
4360 * linux-record.c (record_linux_system_call) <gdb_sys_msgrcv,
4361 RECORD_MSGRCV>: Pass a signed variable to
4362 regcache_raw_read_signed, instead of an unsigned one.
4363
99f0a309
PA
43642013-03-07 Pedro Alves <palves@redhat.com>
4365
4366 * remote-notif.c (notif_debug): Change type to int.
4367 * remote-notif.h (notif_debug): Likewise.
4368
964b8317
PA
43692013-03-07 Pedro Alves <palves@redhat.com>
4370
4371 * ser-tcp.c (tcp_retry_limit): Change type to unsigned int.
4372
f0cc8ad4
PA
43732013-03-07 Pedro Alves <palves@redhat.com>
4374
4375 * remote.c (hex2bin, bin2hex): Move extern declarations to ...
4376 * remote.h (hex2bin, bin2hex): ... here.
4377 * tracepoint.c (hex2bin, bin2hex): Remove extern declarations.
4378
77dec115
EZ
43792013-03-07 Eli Zaretskii <eliz@gnu.org>
4380
4381 * utils.c (initialize_utils): Improve doc strings of "set/show
4382 width", "set/show height", and "set/show pagination".
4383
741d92cf
KS
43842013-03-06 Keith Seitz <keiths@redhat.com>
4385
4386 * ax-gdb.c (gen_printf): Make FORMAT const.
4387 * ax-gdb.h (gen_printf): Likewise.
4388 * ax-general.c (ax_string): Make STR const.
4389 * ax.h (ax_string): Likewise.
4390
7b6c814e
DE
43912013-03-06 Doug Evans <dje@google.com>
4392
4393 * elfread.c (elf_symfile_read): Move debugging printf to more
4394 logical location.
4395
634334ab
PA
43962013-03-06 Pedro Alves <palves@redhat.com>
4397
4398 * python/py-utils.c (target_string_to_unicode): Delete function.
4399 * python/python-internal.h (target_string_to_unicode): Delete
4400 declaration.
4401
e482a1a7
PM
44022013-03-06 Pierre Muller <muller@sourceware.org>
4403
4404 * linespec.c (get_current_search_block): ARI fix, use (void)
4405 for empty parameter list.
4406
4eeaa230
DE
44072013-03-05 Doug Evans <dje@google.com>
4408
4409 * ada-lang.c (ada_lookup_symbol_list_worker): New function, contents
4410 of old ada_lookup_symbol_list. In !full_search case, don't
4411 search superblocks.
4412 (ada_lookup_symbol_list): Delete arg full_search, all callers
4413 updated. Call ada_lookup_symbol_list_worker.
4414 (ada_iterate_over_symbols): Call ada_lookup_symbol_list_worker.
4415 * ada-lang.h (ada_lookup_symbol_list): Update.
4416 * language.h (language_defn): Update comment for
4417 la_iterate_over_symbols.
4418 * linespec.c (iterate_over_file_blocks): New function.
4419 (iterate_over_all_matching_symtabs): Call it.
4420 (lookup_prefix_sym): Ditto.
4421 (get_current_search_block): New function.
4422 (get_search_block): Delete.
4423 (find_label_symbols): Call get_current_search_block.
4424 (add_matching_symbols_to_info): Call iterate_over_file_blocks.
4425 * symtab.c (iterate_over_symbols): Don't search superblocks.
4426
b69b1fb1
YQ
44272013-03-05 Yao Qi <yao@codesourcery.com>
4428
4429 * cli/cli-decode.c (add_setshow_zuinteger_unlimited_cmd): Change
4430 parameter VAR's type from "unsigned int" to "int".
4431 * command.h (var_zuinteger_unlimited): Update its comments.
4432 (add_setshow_zuinteger_unlimited_cmd): Update the declaration.
4433
3c095f49
CV
44342013-03-05 Corinna Vinschen <vinschen@redhat.de>
4435
4436 * NEWS: Mention new target x86_64-*-cygwin*.
4437
b5b0b0af
CV
44382013-03-05 Corinna Vinschen <vinschen@redhat.de>
4439
4440 * configure.host: Add x86_64-*-cygwin* as host.
4441 * configure.tgt: Add x86_64-*-cygwin* as target.
4442 * config/i386/cygwin64.mh: New file.
4443
f6f99966
JK
44442013-03-04 Jan Kratochvil <jan.kratochvil@redhat.com>
4445
4446 * linespec.c (decode_line_2): Fix duplicate request off by two message.
4447
33f448b1
JK
44482013-03-04 Jan Kratochvil <jan.kratochvil@redhat.com>
4449
4450 * linespec.c (struct linespec_canonical_name): New.
4451 (struct linespec_state): Change canonical_names type to it.
4452 (add_sal_to_sals): Change variable canonical_name to canonical. Change
4453 xrealloc element size. Initialize the different CANONICAL fields.
4454 (canonical_to_fullform): New.
4455 (filter_results): Use it. Add variables canonical, fullform and
4456 cleanup.
4457 (struct decode_line_2_item, decode_line_2_compare_items): New.
4458 (decode_line_2): Remove variables iter and item_names, add variables
4459 items and items_count. Modify the code for these new variables.
4460
feb14725
CV
44612013-03-04 Corinna Vinschen <vinschen@redhat.com>
4462
4463 * coff-pe-read.c (read_pe_exported_syms): Don't return without
4464 calling do_cleanup.
4465
e83b17ba
HZ
44662013-03-04 Luis Machado <lgustavo@codesourcery.com>
4467
4468 * tracepoint.c (build_traceframe_info): Add code for byte order.
4469
a2d13a0d
KB
44702013-03-02 Kevin Buettner <kevinb@redhat.com>
4471
8dddcae8
KB
4472 * v850-tdep.c: (v850e2_register_name): Revise system register
4473 names to match current V850E2M architecture specifications.
4474 Update register number enum comments too.
a2d13a0d 4475
d79e58d8
JW
44762013-03-01 Jiong Wang <jiwang@tilera.com>
4477 Pedro Alves <palves@redhat.com>
4478
4479 * tilegx-tdep.c (tilegx_analyze_prologue): Limit bundle reading
4480 to END_ADDR.
4481 (tilegx_skip_prologue): Limit prologue analysis to section end.
4482
c4be5165
JK
44832013-03-01 Jan Kratochvil <jan.kratochvil@redhat.com>
4484
4485 * dwarf2loc.c (call_site_find_chain_1): New variable save_callee_pc,
4486 use it.
4487
e362b510
PA
44882013-03-01 Pedro Alves <palves@redhat.com>
4489
4490 Use gdb_byte for bytes from the program being debugged.
4491
4492 * arm-tdep.c (arm_store_return_value, arm_get_longjmp_target):
4493 Change type of local 'buf' to gdb_byte.
4494 * avr-tdep.c (avr_frame_prev_register, avr_push_dummy_call): Likewise.
4495 * bfin-tdep.c (bfin_push_dummy_call): Likewise.
4496 * cris-tdep.c (cris_sigcontext_addr)
4497 (cris_sigtramp_frame_unwind_cache): Likewise.
4498 * frv-linux-tdep.c (frv_linux_pc_in_sigtramp)
4499 (frv_linux_sigcontext_reg_addr, frv_linux_sigtramp_frame_cache):
4500 Likewise.
4501 * frv-tdep.c (frv_pseudo_register_write, frv_analyze_prologue): Likewise.
4502 * hppa-hpux-tdep.c (hppa32_hpux_find_global_pointer)
4503 (hppa32_hpux_search_dummy_call_sequence)
4504 (hppa_hpux_supply_save_state): Likewise.
4505 * hppa-linux-tdep.c (insns_match_pattern)
4506 (hppa_linux_find_global_pointer): Likewise.
4507 * hppa-tdep.c (hppa_in_function_epilogue_p)
4508 (skip_prologue_hard_way, hppa_frame_cache): Likewise.
4509 * i386-nto-tdep.c (i386nto_sigcontext_addr): Likewise.
4510 * i386fbsd-tdep.c (i386fbsd_supply_uthread)
4511 (i386fbsd_collect_uthread): Likewise.
4512 * ia64-hpux-tdep.c (ia64_hpux_push_dummy_code): Likewise.
4513 * ia64-linux-tdep.c (ia64_linux_sigcontext_register_address): Likewise.
4514 * ia64-tdep.c (examine_prologue, ia64_frame_cache)
4515 (ia64_frame_prev_register, ia64_sigtramp_frame_cache)
4516 (ia64_sigtramp_frame_prev_register, ia64_access_reg)
4517 (ia64_access_rse_reg, ia64_libunwind_frame_this_id)
4518 (ia64_libunwind_frame_prev_register)
4519 (ia64_libunwind_sigtramp_frame_this_id)
4520 (ia64_find_global_pointer_from_dynamic_section)
4521 (find_extant_func_descr, find_func_descr, ia64_dummy_id)
4522 (ia64_unwind_pc): Likewise.
4523 * iq2000-tdep.c (iq2000_store_return_value): Likewise.
4524 * m68hc11-tdep.c (m68hc11_push_dummy_call)
4525 (m68hc11_extract_return_value): Likewise.
4526 * m68klinux-nat.c (fetch_register, store_register): Likewise.
4527 * mep-tdep.c (mep_pseudo_cr32_read, mep_pseudo_cr32_write)
4528 (mep_get_insn, mep_push_dummy_call): Likewise.
4529 * mips-linux-tdep.c (mips_linux_get_longjmp_target)
4530 (mips_linux_in_dynsym_stub): Likewise.
4531 * mn10300-tdep.c (mep_pseudo_cr32_write): Likewise.
4532 * ppc-linux-nat.c (fetch_register, store_register): Likewise.
4533 * regcache.c (dump_endian_bytes): Change type of parameter 'buf'
4534 to gdb_byte.
4535 * remote-mips.c (mips_set_register): Likewise.
4536 * remote-sim.c (gdbsim_fetch_register): Likewise.
4537 * score-tdep.c (score7_fetch_inst): Change type of parameter
4538 'memblock' and local 'buf' to gdb_byte.
4539 (score7_malloc_and_get_memblock): Change return type to gdb_byte.
4540 Change type of local 'buf' to gdb_byte. Adjust.
4541 (score7_adjust_memblock_ptr): Change type of parameter 'memblock'
4542 to gdb_byte**.
4543 (score7_analyze_prologue): Change type of 'memblock' and
4544 'memblock_ptr' locals to gdb_byte*.
4545 * sh64-tdep.c (sh64_extract_return_value)
4546 (sh64_store_return_value): Change type of local 'buf' to gdb_byte.
4547 * solib-darwin.c (darwin_current_sos, darwin_read_exec_load_addr):
4548 * solib-pa64.c (pa64_solib_create_inferior_hook)
4549 (pa64_open_symbol_file_object): Remove local 'buf'.
4550 * solib-som.c (som_solib_create_inferior_hook, link_map_start)
4551 (som_open_symbol_file_object): Likewise.
4552 * solib-spu.c (spu_current_sos): Likewise.
4553 * spu-linux-nat.c (spu_fetch_inferior_registers): Likewise.
4554 * spu-multiarch.c (parse_spufs_run, spu_fetch_registers)
4555 (spu_store_registers): Likewise.
4556 * target.c (debug_print_register): Likewise.
4557 * tic6x-tdep.c (tic6x_get_longjmp_target): Likewise.
4558 * xstormy16-tdep.c (xstormy16_store_return_value)
4559 (xstormy16_push_dummy_call, xstormy16_resolve_jmp_table_entry)
4560 (xstormy16_find_jmp_table_entry): Likewise.
4561
75cc61ca 45622013-03-01 Jiong Wang <jiwang@tilera.com>
61d8bd0e
JW
4563
4564 * tilegx-tdep.c (tilegx_get_longjmp_target): New function.
4565 (tilegx_gdbarch_init): Install it.
4566
ddb08e9c
TT
45672013-02-28 Tom Tromey <tromey@redhat.com>
4568
4569 * python/py-arch.c (archpy_disassemble): Use PyInt_Check and
4570 PyLong_Check.
4571
62d7fb51
DE
45722013-02-28 Doug Evans <dje@google.com>
4573
4574 * python/py-finishbreakpoint.c (bpfinishpy_init): gcc -Wall lint.
4575 * python/python.c (gdbpy_find_pc_line): Ditto.
4576
c4a9e8b4
TT
45772013-02-28 Tom Tromey <tromey@redhat.com>
4578
4579 * contrib/excheck.py: New file.
4580 * contrib/exsummary.py: New file.
4581 * contrib/gcc-with-excheck: New file.
4582
7f6a5dde
TT
45832013-02-28 Tom Tromey <tromey@redhat.com>
4584
4585 * python/python.c (gdbpy_print_stack): Call begin_line and
4586 fprintf_filtered inside TRY_CATCH.
4587
9e974e55
TT
45882013-02-28 Tom Tromey <tromey@redhat.com>
4589
4590 * python/python.c (gdbpy_find_pc_line): Call find_pc_line
4591 inside TRY_CATCH.
4592
dd5fa3e7
TT
45932013-02-28 Tom Tromey <tromey@redhat.com>
4594
4595 * py-finishbreakpoint.c (bpfinishpy_init): Reorganize to call
4596 frame_object_to_frame_info inside TRY_CATCH.
4597
86a3263f
TT
45982013-02-28 Tom Tromey <tromey@redhat.com>
4599
4600 * py-block.c (gdbpy_block_for_pc): Call block_for_pc inside
4601 TRY_CATCH.
4602
81b52a3a
TT
46032013-02-28 Tom Tromey <tromey@redhat.com>
4604
4605 * objfiles.h (ALL_PSPACE_OBJFILES): Remove trailing backlash.
4606
d50a0ce2
CV
46072013-02-27 Corinna Vinschen <vinschen@redhat.com>
4608
4609 * windows-nat.c: Throughout, fix format strings and casts of
4610 printf-like functions to avoid type related warnings on all
4611 platforms.
4612 (handle_output_debug_string): Fetch context information address
4613 from debug string using string_to_core_addr.
4614
e1f58301
JW
46152013-02-27 Jiong Wang <jiwang@tilera.com>
4616
4617 * regformats/reg-tilegx.dat (name): Change abi name to "tilegx".
4618 * regformats/reg-tilegx32.dat: New.
4619
4fcd89fc
JW
46202013-02-27 Jiong Wang <jiwang@tilera.com>
4621
4622 * configure.tgt (tilegx-*-linux*): Enable gdbserver.
4623
748d24e6
JW
46242013-02-27 Jiong Wang <jiwang@tilera.com>
4625
4626 * configure.tgt (tilegx-*-linux*): Replace whitespace with tab.
4627
6c8e944d
YQ
46282013-02-27 Yao Qi <yao@codesourcery.com>
4629 Pedro Alves <palves@redhat.com>
4630
4631 * tracepoint.c (tfile_trace_find): For tfind
5f8e0b8f
MF
4632 pc/tp/range/outside, look for the next trace frame instead of
4633 always starting from frame 0.
6c8e944d 4634
acd7db30
AG
46352013-02-26 Anthony Green <green@moxielogic.com>
4636
4637 * configure.tgt: Add support for moxie-*-rtems* target.
4638
025e6dce
PA
46392013-02-25 Pedro Alves <palves@redhat.com>
4640
4641 * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx): Change
4642 warning text.
4643
ca9c94ef
MR
46442013-02-24 Maciej W. Rozycki <macro@codesourcery.com>
4645
4646 * mips-tdep.c (mips32_scan_prologue): Reset frame_offset to zero
4647 if $fp is used as the virtual frame pointer.
4648
24c274a1
AM
46492013-02-23 Alan Modra <amodra@gmail.com>
4650
4651 * elfread.c (elf_symtab_read): Do not use udata.p here to find
4652 symbol size.
4653 * ppc64-tdep.c (ppc64_elf_make_msymbol_special): New function.
4654 * ppc64-tdep.h (ppc64_elf_make_msymbol_special): Declare.
4655 * ppc-linux-tdep.c (ppc_linux_init_abi): Set up to use the above.
4656 * ppcfbsd-tdep.c (ppcfbsd_init_abi): Likewise.
4657
bfada189
JK
46582013-02-22 Jan Kratochvil <jan.kratochvil@redhat.com>
4659
4660 Code cleanup.
4661 * elfread.c (build_id_bfd_get): Make the return type const.
4662 (build_id_verify): Make the check parameter const.
4663 (build_id_to_debug_filename): Make the build_id parameter and variable
4664 data const.
4665 (find_separate_debug_file_by_buildid): Make the variable build_id const.
4666
c0355132
AM
46672013-02-21 Alan Modra <amodra@gmail.com>
4668
4669 * elfread.c (build_id_bfd_get): Adjust for elf_tdata changes.
4670
9f44fbc0
SCR
46712013-02-20 Siva Chandra Reddy <sivachandra@google.com>
4672
4673 Add a new method 'disassemble' to gdb.Architecture class.
4674 * python/py-arch.c (archpy_disassmble): Implementation of the
4675 new method gdb.Architecture.disassemble.
4676 (arch_object_methods): Add entry for the new method.
4677
b74ea3eb
JW
46782013-02-20 Jiong Wang <jiwang@tilera.com>
4679
4680 * MAINTAINERS (Write After Approval): Add myself to the list.
4681
61a672f1
PA
46822013-02-19 Pedro Alves <palves@redhat.com>
4683
4684 Garbage collect 'struct monitor_ops'::load_routine.
4685
4686 * monitor.h (struct monitor_ops) <load_routine>: Remove field.
4687 * monitor.c (monitor_load): No longer call
4688 current_monitor->load_routine.
4689 * dbug-rom.c (init_dbug_cmds): Don't set 'load_routine'.
4690 * m32r-rom.c (init_m32r_cmds): Don't set 'load_routine'.
4691 * ppcbug-rom.c (init_ppc_cmds): Don't set 'load_routine'.
4692
40e397df
PA
46932013-02-19 Pedro Alves <palves@redhat.com>
4694
4695 PR gdb/15161
4696
4697 Harmonize with generic_load.
4698
4699 * monitor.c: Include "readline/readline.h".
4700 (monitor_load): Rename parameter 'file' to 'args'. Use build_argv
4701 instead of sscanf. Use CORE_ADDR/strtoulst instead of unsigned
4702 long/strtol for the 'load_offset' local. Error out if no argument
4703 is given or if too many arguments are given. Tilde expand the
4704 passed in file name.
4705
f698ca8e
KT
47062013-02-19 Kai Tietz <ktietz@redhat.com>
4707
4708 PR gdb/15161
4709 * symfile.c (load_section_data): Change type of load_offset
4710 to CORE_ADDR.
4711 (generic_load): User strtoulst instead of strtoul for conversion
4712 of load_offset.
4713
3361b059
WL
47142013-02-19 Jiong Wang <jiwang@tilera.com>
4715
4716 * tilegx-tdep.c (tilegx_analyze_prologue): add check for
4717 for return address, "lr" register, saved on stack.
4718 * tilegx-tdep.c (tilegx_frame_cache): update "PC" reg
4719 after we invoke tilegx_analyze_prologue.
4720
3e9d5130
WL
47212013-02-19 Jiong Wang <jiwang@tilera.com>
4722
bb1bcd86
WL
4723 * tilegx-tdep.c (itilegx_gdbarch_init): char type should be signed.
4724
3361b059 47252013-02-19 Jiong Wang <jiwang@tilera.com>
bb1bcd86 4726
b74ea3eb 4727 * tilegx-tdep.c (tilegx_skip_prologue): Use skip_prologue_using_sal.
3e9d5130 4728
4aaf2503
WL
47292013-02-19 Jiong Wang <jiwang@tilera.com>
4730
b74ea3eb 4731 * tilegx-tdep.c (INT_SWINT_1_SIGRETURN): New macro.
4aaf2503
WL
4732 (tilegx_write_pc): New function.
4733 (tilegx_cannot_reference_register): Return zero if REGNO
4734 is TILEGX_FAULTNUM_REGNUM.
4735 (tilegx_gdbarch_init): Add call to set_gdbarch_write_pc.
4736 (tilegx_register_name): Add handling of "faultnum" register.
4737 * tilegx-tdep.h (enum tilegx_regnum): Add TILEGX_FAULTNUM_REGNUM.
4738 * tilegx-linux-tdep.c (tilegx_linux_supply_regset): Add
4739 handling of TILEGX_FAULTNUM_REGNUM.
4740 * tilegx-linux-nat.c (regmap): Add entry for TILEGX_FAULTNUM_REGNUM.
4741
bc23a956
WL
47422013-02-19 Jiong Wang <jiwang@tilera.com>
4743
4744 * tilegx-tdep.c (tilegx_push_dummy_call): args pushed on stack
b74ea3eb 4745 should be aligned to 64bit.
bc23a956 4746
42f45f1a
KT
47472013-02-19 Kai Tietz <ktietz@redhat.com>
4748
4749 * windows-nat.c (windows_xfer_memory): Fix debug-output
4750 for LLP64.
4751
6ce4c112
LL
47522013-02-19 Lei Liu <lei.liu2@windriver.com>
4753
4754 * mips-linux-nat.c (mips64_linux_regsets_store_registers):
4755 Don't check DSP register number if HAVE_DSP is not set.
4756
30e8ee25
AM
47572013-02-19 Alan Modra <amodra@gmail.com>
4758
4759 * elfread.c (struct build_id): Delete. Use struct elf_build_id
4760 throughout file instead.
4761 (build_id_bfd_get): Update to use new elf_tdata build_id field.
4762 Don't xmalloc return value.
4763 (build_id_verify): Similarly. Don't xfree.
4764 (build_id_to_debug_filename): Update.
4765 (find_separate_debug_file_by_buildid): Update, don't xfree.
4766
4c9ad8c2
TT
47672013-02-18 Tom Tromey <tromey@redhat.com>
4768
4769 PR gdb/15102:
4770 * dwarf2read.c (read_subrange_type): Use result of
4771 'check_typedef'.
4772
983dc440
YQ
47732013-02-16 Yuanhui Zhang <asmwarrior@gmail.com>
4774
4775 * frame.c: Remove one extra white space after #include
4776 directive.
4777
7fb2b84a
JK
47782013-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
4779
4780 * contrib/cc-with-tweaks.sh: Extend the comment for -p option.
4781
edceb2a9
JK
47822013-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
4783
4784 * gdb-gdb.gdb.in: Wrap set complaints, b internal_error, b info_command
4785 and dir commands into an if block.
4786
e81b7af8
TT
47872013-02-15 Sanimir Agovic <sanimir.agovic@intel.com>
4788
4789 * python/py-breakpoint (struct pybp_code): Use int instead of
4790 enum type_code.
4791
f5911ea1
HAQ
47922013-02-15 Pedro Alves <pedro@codesourcery.com>
4793 Hafiz Abid Qadeer <abidh@codesourcery.com>
4794
4795 * NEWS: Mention new field "trace-file".
4796 * tracepoint.c (trace_status_mi): Output "trace-file" field.
4797 (tfile_open): Record the trace file's filename in the trace
4798 status.
4799 (tfile_files_info): Mention the name of the trace file.
4800 Check the "filename" field explicitely.
4801 (trace_status_command): Explicitely check "filename" field.
4802 (trace_find_command): Ditto.
4803 (trace_find_pc_command): Ditto.
4804 (trace_find_tracepoint_command): Ditto.
4805 (trace_find_line_command): Ditto.
4806 (trace_find_range_command): Ditto.
4807 (trace_find_outside_command): Ditto.
4808 * tracepoint.h (struct trace_status) <from_file>: Rename it
4809 to "filename" and make it hold the trace file's filename
4810 instead of a boolean.
4811 * remote.c (remote_get_trace_status): Initialize "filename"
4812 field with NULL instead of 0.
4813
796cb314
YQ
48142013-02-15 Yao Qi <yao@codesourcery.com>
4815
4816 * remote.c: Fix a typo.
4817
42e79b1d
PM
48182013-02-14 Pierre Muller <muller@sourceware.org>
4819
4820 * contrib/ari/gdb_ari.sh (GNU/Linux rule): Remove.
4821
baea0dae
PA
48222013-02-14 Pedro Alves <palves@redhat.com>
4823
4824 * utils.c (savestring): Don't #undef it. Move function to
4825 common/common-utils.c.
4826 * common/common-utils.c: Include gdb_string.h.
4827 (savestring): Move here from utils.c.
4828 * common/common-utils.h (savestring): Declare.
4829
57c3b6ed
PA
48302013-02-14 Pedro Alves <palves@redhat.com>
4831
4832 * utils.c (savestring): Rename parameter 'size' to 'len'.
4833
d6c44983
YZ
48342013-02-14 Pedro Alves <palves@redhat.com>
4835 Yufeng Zhang <yufeng.zhang@arm.com>
4836
4837 * aarch64-linux-nat.c (aarch64_init_debug_reg_state): Delete.
4838 (aarch64_inferior_data, struct aarch64_inferior_data):
4839 Delete.
4840 (struct aarch64_process_info): New.
4841 (aarch64_process_list): New global.
4842 (aarch64_find_process_pid, aarch64_add_process)
4843 (aarch64_process_info_get): New functions.
4844 (aarch64_inferior_data_get): Delete.
4845 (aarch64_process_info_get): New function.
4846 (aarch64_forget_process): New function.
4847 (aarch64_get_debug_reg_state): New parameter 'pid'. Reimplement.
4848 (aarch64_linux_prepare_to_resume): Pass the lwp's pid to
4849 aarch64_get_debug_reg_state.
4850 (aarch64_notify_debug_reg_change): Use iterate_over_lwps
4851 instead of linux_nat_iterate_watchpoint_lwps.
4852 (aarch64_linux_new_fork): New function.
4853 (aarch64_linux_child_post_startup_inferior): Use
4854 aarch64_forget_process instead of aarch64_init_debug_reg_state.
4855 (aarch64_handle_breakpoint, aarch64_linux_insert_hw_breakpoint)
4856 (aarch64_linux_remove_hw_breakpoint)
4857 (aarch64_handle_aligned_watchpoint)
4858 (aarch64_handle_unaligned_watchpoint)
4859 (aarch64_linux_insert_watchpoint)
4860 (aarch64_linux_remove_watchpoint)
4861 (aarch64_linux_stopped_data_address): Adjust to pass the current
4862 process id to aarch64_debug_reg_state.
4863 (_initialize_aarch64_linux_nat): Install aarch64_linux_new_fork as
4864 linux_nat_new_fork hook, and aarch64_forget_process as
4865 linux_nat_forget_process hook; remove the call to
4866 register_inferior_data_with_cleanup.
4867
4819b3f8
PA
48682013-02-14 Pedro Alves <palves@redhat.com>
4869
4870 * eval.c (evaluate_subexp_for_address) <default_case_after_eval,
4871 EVAL_AVOID_SIDE_EFFECTS>: Swap and handle TYPE_CODE_REF before
4872 lval_memory.
4873
1773c82c
HAQ
48742013-02-14 Pedro Alves <pedro@codesourcery.com>
4875 Hafiz Abid Qadeer <abidh@codesourcery.com>
4876
4877 * tracepoint.h (validate_trace_state_variable_name): Declare.
4878 * tracepoint.c (validate_trace_state_variable_name): New.
4879 (trace_variable_command): Parse the trace state variable's name
4880 without using parse_expression. Do several validations.
4881 * mi/mi-main.c (mi_cmd_trace_define_variable): Don't parse the
4882 trace state variable's name with parse_expression. Validate it.
4883
53778a97
YQ
48842013-02-14 Yao Qi <yao@codesourcery.com>
4885
4886 * infcmd.c (breakpoint_proceeded): Remove it.
4887
7b3ae3a6
YQ
48882013-02-14 Yao Qi <yao@codesourcery.com>
4889
4890 * tracepoint.c (end_actions_pseudocommand): Make it static.
4891 (while_stepping_pseudocommand): Likewise.
4892 * tracepoint.h (end_actions_pseudocommand): Remove the
4893 declaration.
4894 (while_stepping_pseudocommand): Likewise.
4895
64580925
YQ
48962013-02-14 Yao Qi <yao@codesourcery.com>
4897
4898 * cli/cli-decode.c (help_cmd): Remove the declaration of
4899 "cmdlist".
4900 (help_all): Likewise.
4901
26cb8b7c
PA
49022013-02-13 Pedro Alves <palves@redhat.com>
4903
4904 * amd64-linux-nat.c (update_debug_registers_callback):
4905 Update comment.
4906 (amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use
4907 iterate_over_lwps.
4908 (amd64_linux_prepare_to_resume): Pass the lwp's pid to
4909 i386_debug_reg_state.
4910 (amd64_linux_new_fork): New function.
4911 (_initialize_amd64_linux_nat): Install amd64_linux_new_fork as
4912 linux_nat_new_fork hook, and i386_forget_process as
4913 linux_nat_forget_process hook.
4914 * i386-linux-nat.c (update_debug_registers_callback):
4915 Update comment.
a8256ea1 4916 (i386_linux_dr_set_control, i386_linux_dr_set_addr): Use
26cb8b7c
PA
4917 iterate_over_lwps.
4918 (i386_linux_prepare_to_resume): Pass the lwp's pid to
4919 i386_debug_reg_state.
4920 (i386_linux_new_fork): New function.
4921 (_initialize_i386_linux_nat): Install i386_linux_new_fork as
4922 linux_nat_new_fork hook, and i386_forget_process as
4923 linux_nat_forget_process hook.
4924 * i386-nat.c (i386_init_dregs): Delete.
4925 (i386_inferior_data, struct i386_inferior_data):
4926 Delete.
4927 (struct i386_process_info): New.
4928 (i386_process_list): New global.
4929 (i386_find_process_pid, i386_add_process, i386_process_info_get):
4930 New functions.
4931 (i386_inferior_data_get): Delete.
4932 (i386_process_info_get): New function.
4933 (i386_debug_reg_state): New parameter 'pid'. Reimplement.
4934 (i386_forget_process): New function.
4935 (i386_cleanup_dregs): Rewrite.
4936 (i386_update_inferior_debug_regs, i386_insert_watchpoint)
4937 (i386_remove_watchpoint, i386_region_ok_for_watchpoint)
4938 (i386_stopped_data_address, i386_insert_hw_breakpoint)
4939 (i386_remove_hw_breakpoint): Adjust to pass the current process id
4940 to i386_debug_reg_state.
4941 (i386_use_watchpoints): Don't register inferior data.
4942 * i386-nat.h (i386_debug_reg_state): Add new 'pid' parameter, and
4943 adjust comment.
4944 (i386_forget_process): Declare.
4945 * linux-fork.c (delete_fork): Call linux_nat_forget_process.
4946 * linux-nat.c (linux_nat_new_fork, linux_nat_forget_process_hook):
4947 New static globals.
4948 (linux_child_follow_fork): Don't call linux_nat_new_thread here.
4949 (add_initial_lwp): New, factored out from ...
4950 (add_lwp): ... this. Don't check the number of lwps before
4951 calling linux_nat_new_thread.
4952 (linux_nat_iterate_watchpoint_lwps): Delete.
4953 (linux_nat_attach): Use add_initial_lwp instead of add_lwp.
4954 (linux_handle_extended_wait): Call the linux_nat_new_fork hook on
4955 forks and vforks.
4956 (linux_nat_wait_1): Use add_initial_lwp instead of add_lwp for the
4957 initial lwp.
4958 (linux_nat_kill, linux_nat_mourn_inferior): Call
4959 linux_nat_forget_process.
4960 (linux_nat_set_new_fork, linux_nat_set_forget_process)
4961 (linux_nat_forget_process): New functions.
4962 * linux-nat.h (linux_nat_iterate_watchpoint_lwps_ftype): Delete
4963 type.
4964 (linux_nat_iterate_watchpoint_lwps): Delete declaration.
4965 (linux_nat_new_fork_ftype, linux_nat_forget_process_ftype): New
4966 types.
4967 (linux_nat_set_new_fork, linux_nat_set_forget_process)
4968 (linux_nat_forget_process): New declarations.
4969
4970 * amd64fbsd-nat.c (super_mourn_inferior): New global.
4971 (amd64fbsd_mourn_inferior): New function.
4972 (_initialize_amd64fbsd_nat): Override to_mourn_inferior.
4973 * windows-nat.c (windows_detach): Call i386_cleanup_dregs.
4974
5befea72
MS
49752013-02-13 Marcus Shawcroft <marcus.shawcroft@arm.com>
4976
55015247
YQ
4977 * aarch64-linux-nat.c (aarch64_linux_get_debug_reg_capacity):
4978 Adding _().
5befea72 4979
1d3ffd6b
MS
49802013-02-13 Marcus Shawcroft <marcus.shawcroft@arm.com>
4981
4982 * aarch64-linux-nat.c (debug_reg_change_callback)
4983 (aarch64_linux_get_debug_reg_capacity): ARI fix: Replace %llx with
4984 %s and phex().
4985
6eb04473
MS
49862013-02-13 Marcus Shawcroft <marcus.shawcroft@arm.com>
4987
4988 * aarch64-linux-nat.c (dr_changed_t): ARI fix: Replace long long
4989 with LONGEST.
4990
a016fc87
HAQ
49912013-02-13 Pedro Alves <palves@redhat.com>
4992 Hafiz Abid Qadeer <abidh@codesourcery.com>
4993
4994 * c-lang.c (c_op_print_tab): Add entry for UNOP_PLUS.
4995
e234dfaf
TT
49962013-02-12 Tom Tromey <tromey@redhat.com>
4997
4998 PR symtab/11464:
4999 * c-exp.y (lex_one_token): Initialize other fields of yylval on
5000 NAME return.
5001 (classify_inner_name): Remove 'first_name' argument, add
5002 'context'. Remove unused variable.
5003 (yylex): Explicitly maintain the context type. Exit loop earlier
5004 if NAME result is seen.
5005
0b1afbb3
PA
50062013-02-12 Pedro Alves <palves@redhat.com>
5007
5008 * amd64-darwin-tdep.c: Add (C) after Copyright.
5009 * cli/cli-cmds.h: Ditto.
5010 * cli/cli-decode.c: Ditto.
5011 * cli/cli-decode.h: Ditto.
5012 * cli/cli-dump.c: Ditto.
5013 * cli/cli-dump.h: Ditto.
5014 * cli/cli-interp.c: Ditto.
5015 * cli/cli-logging.c: Ditto.
5016 * cli/cli-script.c: Ditto.
5017 * cli/cli-script.h: Ditto.
5018 * cli/cli-setshow.c: Ditto.
5019 * cli/cli-setshow.h: Ditto.
5020 * cli/cli-utils.c: Ditto.
5021 * cli/cli-utils.h: Ditto.
5022 * config/alpha/nm-osf3.h: Ditto.
5023 * config/djgpp/djconfig.sh: Ditto.
5024 * config/i386/nm-fbsd.h: Ditto.
5025 * config/i386/nm-i386gnu.h: Ditto.
5026 * config/nm-linux.h: Ditto.
5027 * config/nm-nto.h: Ditto.
5028 * config/rs6000/nm-rs6000.h: Ditto.
5029 * config/sparc/nm-sol2.h: Ditto.
5030 * darwin-nat-info.c: Ditto.
5031 * dfp.c: Ditto.
5032 * dfp.h: Ditto.
5033 * gdb-demangle.h: Ditto.
5034 * i386-darwin-nat.c: Ditto.
5035 * i386-darwin-tdep.c: Ditto.
5036 * linux-fork.h: Ditto.
5037 * m32c-tdep.c: Ditto.
5038 * microblaze-linux-tdep.c: Ditto.
5039 * microblaze-rom.c: Ditto.
5040 * microblaze-tdep.c: Ditto.
5041 * microblaze-tdep.h: Ditto.
5042 * mips-linux-tdep.h: Ditto.
5043 * ppc-ravenscar-thread.c: Ditto.
5044 * ppc-ravenscar-thread.h: Ditto.
5045 * prologue-value.c: Ditto.
5046 * prologue-value.h: Ditto.
5047 * ravenscar-thread.c: Ditto.
5048 * ravenscar-thread.h: Ditto.
5049 * sparc-ravenscar-thread.c: Ditto.
5050 * sparc-ravenscar-thread.h: Ditto.
5051 * tilegx-linux-tdep.c: Ditto.
5052 * unwind_stop_reasons.def: Ditto.
5053 * windows-nat.h: Ditto.
5054 * xtensa-linux-tdep.c: Ditto.
5055 * xtensa-xtregs.c: Ditto.
5056 * regformats/regdat.sh: Ditto.
5057 * regformats/regdef.h: Ditto.
5058
6c01dd94
PA
50592013-02-12 Pedro Alves <palves@redhat.com>
5060
5061 * break-catch-sig.c: Update copyright years.
5062
b65a2bd9
SCR
50632013-02-11 Siva Chandra Reddy <sivachandra@google.com>
5064
5065 Add support for a destructor for ui_out data and use it to
5066 provide a ui_out destructor.
5067 * ui-out.h: Declare the new ui_out destructor.
5068 (ui_out_impl): Add a field for data destructor in ui_out_impl.
5069 * ui-out.c (default_data_destroy): Add a default data destructor
5070 which does nothing.
5071 (default_ui_out_impl): Set the new data_destroy field to
5072 default_data_destroy
5073 (uo_data_destroy): Local function which invokes the data
5074 destructor if present.
5075 (clear_table): Local function which clears the table data of a
5076 ui_out object.
5077 (ui_out_destroy): Public function which frees a ui_out object.
5078 (ui_out_table_end): Use the new clear_table function.
5079 * cli-out.c (cli_ui_out_impl): Set the new data_destroy field to
5080 NULL.
5081 * mi/mi-out.c (mi_ui_out_impl): Set the new data_destroy field
5082 to NULL.
5083
c2792f5a
DE
50842013-02-11 Doug Evans <dje@google.com>
5085
5086 * printcmd.c (printf_c_string,printf_wide_c_string): New functions.
5087 (printf_decfloat): New function. Broken out from ui_printf.
5088 Remove unnecessary code to shift the entire format string down.
5089 (printf_pointer): New function.
5090 (ui_printf): Code to print C strings, wide C strings, decfloats,
5091 and pointers moved to separate functions.
5092
d9e98382
SDJ
50932013-02-11 Sergio Durigan Junior <sergiodj@redhat.com>
5094
5095 * valops.c (value_assign): Handling bitfield offset in
5096 `lval_internalvar_component' case.
5097
4ff3ce77
DE
50982013-02-08 Doug Evans <dje@google.com>
5099
5100 * common/format.c (parse_format_string): Fix whitespace.
5101
901900c4
MGD
51022013-02-08 Matthew Gretton-Dann <matthew.gretton-dann@linaro.org>
5103
5104 * stack.c (return_command): Work around uninitialized variable
5105 warning.
5106
b5dbc8d4
YZ
51072013-02-08 Yufeng Zhang <yufeng.zhang@arm.com>
5108
5109 * aarch64-linux-tdep.c (AARCH64_LINUX_SIZEOF_GREGSET): Change the
5110 number of the registers from 36 to 34.
5111
51d66578
MS
51122013-02-08 Marcus Shawcroft <marcus.shawcroft@arm.com>
5113
5114 * NEWS: Mention new AArch64 native and target support.
5115
176b1c95
MS
51162013-02-08 Marcus Shawcroft <marcus.shawcroft@arm.com>
5117
5118 * MAINTAINERS (Write After Approval): Add myself.
5119
9d19df75
MS
51202013-02-08 Jim MacArthur <jim.macarthur@arm.com>
5121 Marcus Shawcroft <marcus.shawcroft@arm.com>
5122 Nigel Stephens <nigel.stephens@arm.com>
5123 Yufeng Zhang <yufeng.zhang@arm.com>
5124
5125 * aarch64-linux-nat.c: New file.
5126 * config/aarch64/linux.mh: New file.
5127 * configure.host: Add AArch64.
5128 * Makefile.in (ALLDEPFILES): Add aarch64-linux-nat.c.
5129
7e1e0340
DE
51302013-02-07 Doug Evans <dje@google.com>
5131
5132 * cli/cli-cmds.c (_initialize_cli_cmds): Clarify argument to
5133 disassemble command.
5134
45e25a36
MS
51352013-02-07 Marcus Shawcroft <marcus.shawcroft@arm.com>
5136
5137 * aarch64-linux-tdep.c (aarch64_linux_init_abi): Call
5138 set_gdbarch_fetch_tls_load_module_address.
5139
bbfdfe1c
DM
51402013-02-06 David S. Miller <davem@davemloft.net>
5141
5142 * sparc-tdep.c (sparc32_return_value): Handle writing return value when
5143 using RETURN_VALUE_ABI_PRESERVES_ADDRESS.
5144 * value.c (struct_return_convention): New function.
5145 (using_struct_return): Implement in terms of struct_return_convention.
5146 * value.h (struct_return_convention): Declare.
5147 * stack.c (return_command): Allow successful overriding of the return
5148 value when RETURN_VALUE_ABI_PRESERVES_ADDRESS.
5149
bc9abe4a
TT
51502013-02-06 Tom Tromey <tromey@redhat.com>
5151
5152 * python/py-type.c (typy_strip_typedefs): Don't call check_typedef
5153 outside of TRY_CATCH.
5154
134a2066
YQ
51552013-02-06 Yao Qi <yao@codesourcery.com>
5156
5157 * mi/mi-interp.c: Include "tracepoint.h".
5158 (mi_tsv_modified): Declare.
5159 (mi_tsv_created, mi_tsv_deleted): Update declaration.
5160 (mi_interpreter_init): Call observer_attach_tsv_modified.
5161 (mi_tsv_modified): New.
5162 (mi_tsv_created, mi_tsv_deleted): Update.
5163 * tracepoint.c (trace_variable_command): Call
5164 observer_notify_tsv_modified if the initial value of tsv is
5165 changed.
5166 (delete_trace_state_variable): Call
5167 observer_notify_tsv_deleted earlier.
5168 (trace_variable_command): Caller update.
5169 (create_tsv_from_upload): Likewise.
5170 * observer.sh: Declare "struct trace_state_variable".
5171
5172 * NEWS: Mention the new MI notification "=tsv-modified".
5173
59be2b6a
DE
51742013-02-05 Doug Evans <dje@google.com>
5175
5176 * completer.c (location_completer): Fix typo in comment.
5177
d30113d4
JK
51782013-02-05 Jan Kratochvil <jan.kratochvil@redhat.com>
5179
5180 * breakpoint.c (add_location_to_breakpoint): Insert the location with
5181 ADDRESS sorted.
5182
14ac654f
MS
51832013-02-05 Marcus Shawcroft <marcus.shawcroft@arm.com>
5184
5185 * aarch64-tdep.c (aarch64_analyze_prologue): ARI fix:
5186 Refactor if statement to avoid trailing || operator.
5187
543bf33d
AT
51882013-02-05 Andreas Tobler <andreast@fgznet.ch>
5189
5190 * NEWS: Add PowerPC FreeBSD as a new native configuration.
5191
dc18f110
AT
51922013-02-04 Andreas Tobler <andreast@fgznet.ch>
5193
5194 * Makefile.in (ALL_TARGET_OBS): Add powerpc FreeBSD files.
5195 * configure.host: Add powerpc*-*-freebsd* target.
5196 * configure.tgt: Add target info for powerpc*-*-freebsd*.
5197 * ppcfbsd-nat.c, ppcfbsd-tdep.h, ppcfbsd-tdep.c: New files.
5198 * config/powerpc/fbsd.mh: New file.
5199
b3ac9c77
SDJ
52002013-02-04 Sergio Durigan Junior <sergiodj@redhat.com>
5201 Denys Vlasenko <dvlasenk@redhat.com>
5202 Pedro Alves <palves@redhat.com>
5203
5204 * gdbarch.sh (elfcore_write_linux_prpsinfo): New F hook.
5205 (struct elf_internal_linux_prpsinfo): Forward declare.
5206 * gdbarch.h, gdbarch.c: Regenerate.
5207 * linux-tdep.c: Include `cli/cli-utils.h'.
5208 (linux_fill_prpsinfo): New function.
5209 (linux_make_corefile_notes): Use linux_fill_prpsinfo. If there's
5210 an elfcore_write_linux_prpsinfo hook, use it, otherwise, use
5211 elfcore_write_linux_prpsinfo32 or elfcore_write_linux_prpsinfo64
5212 depending on gdbarch pointer bitness.
5213 * ppc-linux-tdep.c: Include elf-bfd.h.
5214 (ppc_linux_init_abi): Hook in elfcore_write_ppc_linux_prpsinfo32
5215 on 32-bit.
5216
176eb98c
MS
52172013-02-04 Jim MacArthur <jim.macarthur@arm.com>
5218 Marcus Shawcroft <marcus.shawcroft@arm.com>
5219 Nigel Stephens <nigel.stephens@arm.com>
5220 Yufeng Zhang <yufeng.zhang@arm.com>
5221
5222 * configure.tgt (aarch64*-*-linux*): Set build_gdbserver=yes.
5223
cf0dbd6f
MS
52242013-02-04 Jim MacArthur <jim.macarthur@arm.com>
5225 Marcus Shawcroft <marcus.shawcroft@arm.com>
5226 Nigel Stephens <nigel.stephens@arm.com>
5227 Yufeng Zhang <yufeng.zhang@arm.com>
5228
5229 * aarch64-newlib-tdep.c: New file.
5230 * configure.tgt: Add aarch64-newlib-tdep.o to gdb_target_obs of
5231 aarch64*-*-elf.
5232 * defs.h (enum gdb_osabi): Add GDB_OSABI_NEWLIB.
5233 * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-newlib-tdep.o.
5234 (ALLDEPFILES): Add aarch64-newlib-tdep.c.
5235 * osabi.c (gdb_osabi_names): Add "Newlib".
5236
1ae3db19
MS
52372013-02-04 Jim MacArthur <jim.macarthur@arm.com>
5238 Marcus Shawcroft <marcus.shawcroft@arm.com>
5239 Nigel Stephens <nigel.stephens@arm.com>
5240 Yufeng Zhang <yufeng.zhang@arm.com>
5241
5242 * Makefile.in (ALL_64_TARGET_OBS): Add aarch64-linux-tdep.o.
5243 (ALLDEPFILES): Add aarch64-linux-tdep.c.
5244 * aarch64-linux-tdep.c: New file.
5245 * aarch64-linux-tdep.h: New file.
5246 * aarch64-tdep.h (gdbarch_tdep): Define gregset and fpregset.
5247 * configure.tgt: Add aarch64-none-linux-gnu.
5248
07b287a0
MS
52492013-02-04 Jim MacArthur <jim.macarthur@arm.com>
5250 Marcus Shawcroft <marcus.shawcroft@arm.com>
5251 Nigel Stephens <nigel.stephens@arm.com>
5252 Yufeng Zhang <yufeng.zhang@arm.com>
5253
5254 * Makefile.in (ALL_64_TARGET_OBS): Add arch64-tdep.o.
5255 (HFILES_NO_SRCDIR): Add aarch64-tdep.h.
5256 (ALLDEPFILES): Add aarch64-tdep.c.
5257 * aarch64-tdep.c: New file.
5258 * aarch64-tdep.h: New file.
5259 * configure.tgt: Add AArch64.
5260 * features/Makefile (WHICH): Add aarch64 and aarch64-without-fpu.
5261 (aarch64-expedite): New definition.
5262 * features/aarch64-core.xml: New file.
5263 * features/aarch64-fpu.xml: New file.
5264 * features/aarch64-without-fpu.c: New file (generated).
5265 * features/aarch64-without-fpu.xml: New file.
5266 * features/aarch64.c: New file (generated).
5267 * features/aarch64.xml: New file.
5268 * regformats/aarch64-without-fpu.dat: New file (generated).
5269 * regformats/aarch64.dat: New file (generated).
5270
0f1b18ab
JK
52712013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
5272
5273 * contrib/expect-read1.c: New file.
5274 * contrib/expect-read1.sh: New file.
5275
233d95b5
JK
52762013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
5277
5278 * dwarf2read.c (file_file_name): New function with code from
5279 file_full_name.
5280 (file_full_name): Move most of the code to file_file_name.
5281 (macro_start_file): Rename variable full_name to file_name and use
5282 file_file_name for it. Add comp_dir parameter to new_macro_table.
5283 * macrocmd.c (show_pp_source_pos): New variable fullname. Replace any
5284 macro_source_file->filename access by macro_source_fullname call.
5285 * macroscope.c (_initialize_macroscope): Update the new_macro_table
5286 caller.
5287 * macrotab.c (struct macro_table): New field comp_dir.
5288 (macro_include): New variables link_fullname and source_fullname.
5289 Replace any macro_source_file->filename access by macro_source_fullname
5290 call.
5291 (macro_lookup_inclusion): Remove the partial filenames checking code.
5292 (check_for_redefinition): New variables source_fullname and
5293 found_key_fullname. Replace any macro_source_file->filename access by
5294 macro_source_fullname call.
5295 (macro_undef): New variables source_fullname and key_fullname. Replace
5296 any macro_source_file->filename access by macro_source_fullname call.
5297 (macro_lookup_definition): New variables retval and source_fullname.
5298 Replace any macro_source_file->filename access by macro_source_fullname
5299 call.
5300 (foreach_macro): New variable key_fullname. Replace any
5301 macro_source_file->filename access by macro_source_fullname call.
5302 (foreach_macro_in_scope): New variable datum_fullname. Replace any
5303 macro_source_file->filename access by macro_source_fullname call.
5304 (new_macro_table): Add parameter comp_dir. Initialize T with it.
5305 (macro_source_fullname): New function.
5306 * macrotab.h (struct macro_source_file): Extent the filename field
5307 comment.
5308 (new_macro_table): New parameter comp_dir, add a comment for it.
5309 (macro_source_fullname): new declaration.
5310
da235a7c
JK
53112013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
5312
5313 * dwarf2read.c (dw2_map_symtabs_matching_filename): Move variable
5314 this_real_name to outer block. Use it also for
5315 compare_filenames_for_search.
5316 (dw2_expand_symtabs_matching): New variable this_real_name. Use it
5317 with dw2_get_real_path for file_matcher, considering also
5318 BASENAMES_MAY_DIFFER.
5319 (file_full_name): Prepend COMP_DIR even for relative lh->INCLUDE_DIRS.
5320
fbd9ab74
JK
53212013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
5322
5323 * dwarf2read.c (dw2_expand_symtabs_matching): Add basenames parameter
5324 to the file_matcher parameter. Pass 0 to it.
5325 (dwarf2_create_include_psymtab): Copy also DIRNAME.
5326 * psymtab.c (partial_map_symtabs_matching_filename): Drop handling of
5327 NULL psymtab_to_fullname result.
5328 (psymtab_to_fullname): Remove variable r. Never return NULL, assemble
5329 an expected filename instead.
5330 (expand_symtabs_matching_via_partial): Add basenames parameter to the
5331 file_matcher parameter. Call also psymtab_to_fullname, after newly
5332 considering BASENAMES_MAY_DIFFER.
5333 * source.c (rewrite_source_path): Remove static.
5334 * source.h (rewrite_source_path): New declaration.
5335 * symfile.h (struct quick_symbol_functions): Add basenames parameter to
5336 the expand_symtabs_matching field. Comment it.
5337 * symtab.c (file_matches): New function comment. Add parameter
5338 basenames, implement it.
5339 (search_symbols_file_matches): Add basenames parameter. Update the
5340 file_matches caller.
5341 (search_symbols): Match FILES also against symtab_to_fullname.
5342 Optimize it for BASENAMES_MAY_DIFFER.
5343
56d397a3
JK
53442013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
5345
5346 * source.c (print_source_lines_base): Print for TUI also "fullname".
5347 * tui/tui-data.c (init_content_element): Change tui_locator_element
5348 field to full_name.
5349 * tui/tui-data.h (struct tui_locator_element): Likewise.
5350 * tui/tui-disasm.c (tui_show_disassem_and_update_source): Rename
5351 tui_update_locator_filename calls to tui_update_locator_fullname.
5352 Replace symtab->filename refererence by symtab_to_fullname call.
5353 * tui/tui-out.c (tui_field_string): Check for "fullname" now.
5354 * tui/tui-source.c (tui_set_source_content): Change tui_locator_element
5355 field to full_name. Replace symtab->filename refererence by
5356 symtab_to_fullname call.
5357 (tui_show_symtab_source): Rename parameter to fullname. Change
5358 tui_locator_element field to full_name.
5359 * tui/tui-stack.c: Include source.h.
5360 (tui_set_locator_filename): Rename the declaration to ...
5361 (tui_set_locator_fullname): ... here. Rename its parameter to
5362 fullname, updates its comment.
5363 (tui_set_locator_info): Rename its parameter to fullname.
5364 (tui_set_locator_filename): Rename the definition to ...
5365 (tui_set_locator_fullname): ... here. Rename its parameter to
5366 fullname, updates its comment. Change tui_locator_element field to
5367 full_name.
5368 (tui_set_locator_info): Rename its parameter to fullname.
5369 (tui_set_locator_info): Rename callee to tui_set_locator_fullname.
5370 (tui_update_locator_filename): Rename to ...
5371 (tui_update_locator_fullname): ... here. Rename callee to
5372 tui_set_locator_fullname.
5373 (tui_show_frame_info): Replace symtab->filename refererence by
5374 symtab_to_fullname call.
5375 * tui/tui-stack.h (tui_update_locator_filename): Rename to ...
5376 (tui_update_locator_fullname): ... here.
5377 * tui/tui-winsource.c (tui_display_main): Rename the callee to
5378 tui_update_locator_fullname. Replace symtab->filename refererence by
5379 symtab_to_fullname call.
5380 * tui/tui.c (tui_show_source): Rename its parameter to fullname.
5381 Rename the callee to tui_update_locator_fullname.
5382 * tui/tui.h (tui_show_source): Rename its parameter to fullname.
5383
05cba821
JK
53842013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
5385
5386 * ada-lang.c (user_select_syms): Replace symtab->filename refererences
5387 by symtab_to_filename_for_display calls.
5388 * breakpoint.c (print_breakpoint_location, resolve_sal_pc): Likewise.
5389 (clear_command): New variable sal_fullname, initialize it. Replace
5390 compare_filenames_for_search by filename_cmp with sal_fullname.
5391 (say_where, update_static_tracepoint): Replace symtab->filename
5392 refererences by symtab_to_filename_for_display calls.
5393 * cli/cli-cmds.c (edit_command, list_command, ambiguous_line_spec):
5394 Likewise.
5395 * dwarf2read.c: Include source.h.
5396 (fixup_go_packaging): Replace symtab->filename refererences by
5397 symtab_to_filename_for_display calls.
5398 * linespec.c (add_sal_to_sals): Rename variable filename to fullname.
5399 Replace symtab->filename refererences by symtab_to_filename_for_display
5400 calls.
5401 (create_sals_line_offset, convert_linespec_to_sals): New variable
5402 fullname, initialize it, replace symtab->filename reference by the
5403 variable.
5404 * linux-fork.c: Include source.h.
5405 (info_checkpoints_command): Replace symtab->filename refererences by
5406 symtab_to_filename_for_display calls.
5407 * macroscope.c (sal_macro_scope): Replace symtab->filename refererences
5408 by symtab_to_filename_for_display calls.
5409 * mdebugread.c: Include source.h.
5410 (psymtab_to_symtab_1): Replace symtab->filename refererences by
5411 symtab_to_filename_for_display calls.
5412 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file)
5413 (mi_cmd_file_list_exec_source_files): Likewise.
5414 * printcmd.c: Include source.h.
5415 (build_address_symbolic): Replace symtab->filename refererences by
5416 symtab_to_filename_for_display calls.
5417 * psymtab.c (partial_map_symtabs_matching_filename)
5418 (read_psymtabs_with_fullname): Call compare_filenames_for_search also
5419 with psymtab_to_fullname.
5420 * python/py-symtab.c (stpy_str): Replace symtab->filename refererences
5421 by symtab_to_filename_for_display calls.
5422 (stpy_get_filename): New variable filename, initialize it, use instead
5423 of symtab->filename refererences.
5424 (salpy_str): Make variable filename const char *. Replace
5425 symtab->filename refererences by symtab_to_filename_for_display calls.
5426 * skip.c: Include source.h and filenames.h.
5427 (skip_file_command): Remove const from the symtab variable. Replace
5428 symtab->filename refererences by symtab_to_fullname call.
5429 (function_name_is_marked_for_skip): New variables searched_for_fullname
5430 and fullname. Use them to search also with symtab's fullname.
5431 * source.c (find_source_lines): Replace symtab->filename refererences
5432 by symtab_to_filename_for_display calls.
5433 (print_source_lines_base): New variable filename, use it instead of
5434 symtab->filename. Replace symtab->filename refererences by
5435 symtab_to_filename_for_display calls.
5436 (line_info, forward_search_command): Replace symtab->filename
5437 refererences by symtab_to_filename_for_display calls.
5438 (reverse_search_command): Replace symtab->filename refererences by
5439 symtab_to_filename_for_display calls. New variable filename for it.
5440 * stack.c (frame_info): Likewise.
5441 * symmisc.c: Include source.h.
5442 (dump_objfile, dump_symtab_1, maintenance_print_symbols)
5443 (maintenance_info_symtabs): Replace symtab->filename refererences by
5444 symtab_to_filename_for_display calls.
5445 * symtab.c (iterate_over_some_symtabs): Call
5446 compare_filenames_for_search also with symtab_to_fullname.
5447 (lookup_symbol_aux_quick, basic_lookup_transparent_type_quick): Replace
5448 symtab->filename refererences by symtab_to_filename_for_display calls.
5449 (find_line_symtab): Replace symtab->filename refererences by
5450 symtab_to_filename_for_display calls.
5451 (file_matches): Replace filename_cmp by compare_filenames_for_search.
5452 (print_symbol_info): Make the last parameter const char *. New
5453 variable s_filename. Use it in the function.
5454 (symtab_symbol_info): Make the last_filename variable const char *.
5455 Replace symtab->filename refererences by symtab_to_filename_for_display
5456 calls.
5457 (rbreak_command): New variable fullname. Use it. Replace
5458 symtab->filename refererence by symtab_to_filename_for_display call.
5459 * tracepoint.c (set_traceframe_context, trace_find_line_command)
5460 (print_one_static_tracepoint_marker): Replace symtab->filename
5461 refererences by symtab_to_filename_for_display calls.
5462 * tui/tui-source.c (tui_set_source_content): New variables filename and
5463 s_filename. Replace symtab->filename refererences by this variable.
5464 Replace other symtab->filename refererences by
5465 symtab_to_filename_for_display calls.
5466
1b56eb55
JK
54672013-02-03 Eldar Gaynetdinov <hal9000ed2k@gmail.com>
5468 Jan Kratochvil <jan.kratochvil@redhat.com>
5469
5470 Add a new variable that controls a way in which filenames are
5471 displayed.
5472 * NEWS (set filename-display): New entry.
5473 * source.c (filename_display_basename, filename_display_relative)
5474 (filename_display_absolute, filename_display_kind_names)
5475 (filename_display_string, show_filename_display_string)
5476 (symtab_to_filename_for_display): New.
5477 (_initialize_source): Added initialization of 'filename-display'
5478 variable.
5479 * source.h (symtab_to_filename_for_display): Added declaration.
5480 * stack.c (print_frame): Added new variable and calling of a new
5481 function and condition with this variable. Changed third argument of
5482 calling of a function.
5483
aa079c93
JK
54842013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
5485
5486 * tui/tui-data.c (init_win_info, tui_del_window, tui_free_window):
5487 Rename field reference filename to fullname.
5488 * tui/tui-data.h (struct tui_source_info): Rename field filename to
5489 fullname. New comment for it.
5490 * tui/tui-source.c (tui_set_source_content): Rename field reference
5491 filename to fullname. Initialize field by symtab_to_fullname now.
5492 * tui/tui-winsource.c (tui_update_breakpoint_info): Rename field
5493 reference filename to fullname. Use symtab_to_fullname during
5494 comparison.
5495
652a8996
JK
54962013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
5497
5498 Code cleanup.
5499 * dwarf2read.c (dw2_expand_symtabs_with_filename): Rename to ...
5500 (dw2_expand_symtabs_with_fullname): ... here. Rename parameter
5501 filename to fullname. Rename variable this_name to this_fullname.
5502 Lowercase FILENAME_CMP call.
5503 (dw2_find_symbol_file): New comment for the returned string.
5504 (dwarf2_gdb_index_functions): Rename the function to
5505 dw2_expand_symtabs_with_fullname.
5506 * psymtab.c (read_psymtabs_with_filename): Rename to ...
5507 (read_psymtabs_with_fullname): ... here. Rename parameter filename to
5508 fullname.
5509 (psym_functions): Rename the function to read_psymtabs_with_fullname.
5510 * symfile.h (struct quick_symbol_functions): Rename field
5511 expand_symtabs_with_filename to expand_symtabs_with_fullname and its
5512 parameter filename to fullname. Document returned string meaning for
5513 find_symbol_file.
5514 * symtab.c (find_line_symtab): Rename the called function to
5515 expand_symtabs_with_fullname.
5516
af529f8f
JK
55172013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
5518
5519 Code cleanup.
5520 * breakpoint.c (clear_command): Remove variable is_abs, unify the
5521 call of filename_cmp with compare_filenames_for_search.
5522 * dwarf2read.c (dw2_map_symtabs_matching_filename): Remove variable
5523 is_abs, unify the call of FILENAME_CMP with
5524 compare_filenames_for_search. New gdb_asserts for real_path and name.
5525 Unify the call of compare_filenames_for_search with FILENAME_CMP.
5526 * psymtab.c (partial_map_symtabs_matching_filename): Likewise.
5527 * symfile.h (struct quick_symbol_functions): Extend the comment for
5528 map_symtabs_matching_filename.
5529 * symtab.c (compare_filenames_for_search): Remove the function comment
5530 relative path requirement. Handle absolute filenames, with a comment.
5531 (iterate_over_some_symtabs): Remove variable is_abs, unify the call of
5532 FILENAME_CMP with compare_filenames_for_search. New gdb_asserts for
5533 real_path and name. Unify the call of compare_filenames_for_search
5534 with FILENAME_CMP.
5535 (iterate_over_symtabs): New gdb_assert on REAL_PATH.
5536
2f202fde
JK
55372013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
5538
5539 Code cleanup.
5540 * breakpoint.c (print_breakpoint_location): Replace bp_location field
5541 source_file references by symtab field references. Remove variables
5542 sal and fullname.
5543 (momentary_breakpoint_from_master, add_location_to_breakpoint):
5544 (clear_command, say_where): Replace bp_location field source_file
5545 references by symtab field references.
5546 (bp_location_dtor): Remove the source_file reference.
5547 (update_static_tracepoint): Replace bp_location field source_file
5548 references by symtab field references.
5549 (breakpoint_free_objfile): New function.
5550 * breakpoint.h (struct bp_location): Extend the comment for line_number.
5551 Replace the field source_file by field symtab, extend its comment.
5552 (breakpoint_free_objfile): New declaration.
5553 * objfiles.c (free_objfile): Call breakpoint_free_objfile.
5554 * tui/tui-winsource.c (tui_update_breakpoint_info): Replace bp_location
5555 field source_file references by symtab field references.
5556
f5b95b50
JK
55572013-02-03 Jan Kratochvil <jan.kratochvil@redhat.com>
5558
5559 Replace xfullpath calls by gdb_realpath calls.
5560 * cli/cli-cmds.c (find_and_open_script): Remove xfullpath from the
5561 function comment.
5562 * dwarf2read.c (dw2_map_expand_apply): Remove parameter full_path.
5563 Remove it from the iterate_over_some_symtabs call.
5564 (dw2_map_symtabs_matching_filename): Remove parameter full_path.
5565 Remove it from the dw2_map_expand_apply calls, remove a block handling
5566 it.
5567 * psymtab.c (partial_map_expand_apply): Remove parameter full_path.
5568 Remove it from the iterate_over_some_symtabs call.
5569 (partial_map_symtabs_matching_filename): Remove parameter full_path.
5570 Remove it from the partial_map_expand_apply calls, remove a block
5571 handling it. Drop gdb_realpath call and cleanups from the real_path
5572 handling.
5573 * source.c (openp): Drop the comment part about xfullpath. Replace
5574 xfullpath calls by gdb_realpath calls.
5575 (find_and_open_source): Replace xfullpath call by gdb_realpath call.
5576 * symfile.h (struct quick_symbol_functions): Remove parameter full_path
5577 from method map_symtabs_matching_filename and its comment.
5578 * symmisc.c (maintenance_print_msymbols): Replace xfullpath call by
5579 gdb_realpath call.
5580 * symtab.c (iterate_over_some_symtabs): Remove parameter full_path,
5581 remove it also from the function comment, remove a block handling it.
5582 Drop gdb_realpath call and cleanups from the real_path handling.
5583 (iterate_over_symtabs): Drop variable full_path and its use.
5584 * symtab.h (iterate_over_some_symtabs): Remove parameter full_path.
5585 * utils.c (xfullpath): Remove.
5586 * utils.h (xfullpath): Remove.
5587
d78489bf
AT
55882013-02-01 Andreas Tobler <andreast@fgznet.ch>
5589
5590 * Makefile.in (ALL_TARGET_OBS): Add ppc64-tdep.o.
5591 (HFILES_NO_SRCDIR): Add ppc64-tdep.h.
5592 (ALLDEPFILES): Add ppc64-tdep.c.
5593 * configure.tgt (powerpc-*-linux* | powerpc64-*-linux*): Add
5594 ppc64-tdep.o to gdb_target_obs.
5595 * ppc64-tdep.h: New file.
5596 * ppc64-tdep.c: New file.
5597 (insn_d, insn_ds, insn_xfx, ppc64_desc_entry_point): Move from
5598 ppc-linux-tdep.c to here.
5599 (PPC64_STANDARD_LINKAGE1_LEN, PPC64_STANDARD_LINKAGE2_LEN)
5600 (PPC64_STANDARD_LINKAGE2_LEN): Likewise and use ARRAY_SIZE macro.
5601 (ppc64_standard_linkage1_target, ppc64_standard_linkage2_target)
5602 (ppc64_standard_linkage3_target, ppc64_skip_trampoline_code): Move
5603 from ppc-linux-tdep.c to here.
5604 (ppc64_convert_from_func_ptr_addr): Rename from
5605 ppc64_linux_convert_from_func_ptr_addr to
5606 ppc64_convert_from_func_ptr_addr and move from ppc-linux-tdep.c to
5607 here.
5608 * rs6000-tdep.c:
5609 (read_insn): Move from ppc-linux-tdep.c to here.
5610 (insns_match_pattern, insn_d_field, insn_ds_field): Move
5611 from ppc-linux-tdep.c to here and rename them with the ppc_ prefix.
5612 * ppc-linux-tdep.c: Include ppc64-tdep.h.
5613 Removed above functions.
5614 (ppc_linux_init_abi): Adjust.
5615
8db60374
AR
56162013-02-01 Aleksandar Ristovski <aristovski@qnx.com>
5617
5618 * ada-valprint.c (ada_print_floating): Remove unused 'len'.
5619
f2e5f4ce
AR
56202013-02-01 Aleksandar Ristovski <aristovski@qnx.com>
5621
5622 * ada-lang.c (assign_aggregate): Remove unused 'is_array_aggregate'.
5623
c1f7d745
PA
56242013-02-01 Pedro Alves <palves@redhat.com>
5625
5626 * dummy-frame.c (deprecated_pc_in_call_dummy): Delete function.
5627 * frame.h (deprecated_pc_in_call_dummy): Delete declaration.
5628
8a92335b
JK
56292013-02-01 Jan Kratochvil <jan.kratochvil@redhat.com>
5630
5631 * elfread.c (elf_symfile_read): Limit separate debug info additions to
5632 files with no separate debug info.
5633 * objfiles.c (add_separate_debug_objfile): Add gdb_assert calls.
5634 * symfile.c (read_symbols): Call find_separate_debug_file_in_section
5635 only for files with no separate debug info.
5636
8eacb197
TT
56372013-01-31 Tom Tromey <tromey@redhat.com>
5638
5639 * jit.c (jit_program_space_data): Rename from jit_inferior_data;
5640 change type.
5641 (struct jit_program_space_data): Rename from jit_inferior_data.
5642 Update comments.
5643 (get_jit_program_space_data): Rename from get_jit_inferior_data.
5644 Change return type. Attach data to program space.
5645 (jit_program_space_data_cleanup): Rename from
5646 jit_inferior_data_cleanup; change argument type.
5647 (jit_read_descriptor): Change 'inf_data' argument to 'ps_data',
5648 change type.
5649 (jit_register_code): Update.
5650 (jit_update_inferior_cache): Remove.
5651 (jit_breakpoint_deleted): Get jit data from the location's program
5652 space.
5653 (jit_breakpoint_re_set_internal): Rename 'inf_data' argument to
5654 'ps_data', change type.
5655 (jit_inferior_init, jit_breakpoint_re_set_internal)
5656 (jit_event_handler): Update.
5657 (free_objfile_data): Get data from objfile's program space.
5658 (_initialize_jit): Update.
5659
f25c0135
TT
56602013-01-31 Tom Tromey <tromey@redhat.com>
5661
5662 PR gdb/13987:
5663 * jit.c (struct jit_inferior_data) <cached_code_address,
5664 jit_breakpoint>: New fields.
5665 (jit_breakpoint_re_set_internal): Fix logging. Only create
5666 breakpoint if cached address has changed.
5667 (jit_update_inferior_cache, jit_breakpoint_deleted): New
5668 functions.
5669 (_initialize_jit): Register breakpoint deleted observer.
5670
974a734b
AR
56712013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
5672
5673 * infrun.c (handle_syscall_event): Remove unused gdbarch.
5674 (save_infcall_suspend_state): Ifdef out unused inf.
5675 (restore_infcall_suspend_state): Ifdef out unused inf.
5676 * jit.c (jit_register_code): Remove unused i, b, inf_data.
5677 (jit_frame_sniffer): Remove unused inf_data.
5678
df54f8eb
AR
56792013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
5680
5681 * c-exp.y (classify_inner_name): Remove unused type.
5682 * c-lang.c (c_printstr): Remove unused byte_order, i, things_printed,
5683 in_quotes, need_comma, wchar_buf, output, cleanup, iter, finished,
5684 need_escape.
5685 (c_get_string): Remove unused kind.
5686 * c-typeprint.c (c_type_print_args): Remove unused i, len, args, table2.
5687
5799c0b9
AR
56882013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
5689
5690 * charset.c (intermediate_encoding): Remove unused i.
5691 * completer.c (signal_completer): Remove unused i.
5692 * continuations.c (discard_my_continuations_1): Remove unused
5693 continuation_ptr.
5694 * corelow.c (core_close): Remove unuseD name.
5695 (get_core_siginfo): Remove unused pid.
5696 * cp-namespace.c (cp_lookup_symbol_imports_or_template): Remove unused
5697 i, cps.
5698 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Remove unused base_offset.
5699 (loclist_describe_location): Remove unused first.
5700 * event-top.c (command_line_handler): Remove unused got_eof.
5701 * exec.c (exec_close_1): Remove unused need_symtab_cleanup.
5702 (resize_section_table): Remove unused old_value.
5703 * gdb_bfd.c (gdb_bfd_map_section): Remove unused header.
5704 * gnu-v3-abi.c (compute_vtable_size): Remove unused addr.
5705 * i386-tdep.c (i386_process_record): Remove unused rex.
5706 * infcmd.c (get_return_value): Remove unused uiout.
5707 * jv-lang.c (type_from_class): Remove unused is_array.
5708 * jv-valprint.c (java_val_print): Remove unused i.
5709 * linux-nat.c (linux_nat_stop_lwp): Remove unused ptid.
5710 * linux-thread-db.c (thread_db_find_new_threads_2): Remove unuseD pid.
5711 * m2-typeprint.c (m2_print_type): Remove unused code.
5712 * macroexp.c (get_character_constant): Remove unused body_start.
5713 (macro_stringify): Remove unused result.
5714 * objc-lang.c (find_methods): Remove unused gdbarch.
5715 * objfiles.c (filter_overlapping_sections): Remove unused abfd1, abfd2.
5716 * regcache.c (regcache_cooked_read): Remove unused gdbarch.
5717 * stack.c (print_frame_args): Remove unused summary.
5718 * thread.c (thread_apply_command): Remove unused p.
5719 * valarith.c (value_x_unop): Remove unused mangle_ptr.
5720 * valops.c (search_struct_method): Remove unused skip.
5721 * valprint.c (generic_val_print): Remove unused byte_order.
5722 * varobj.c (varobj_update): Remove unused changed.
5723 * cli/cli-cmds.c (complete_command): Remove unused next_item.
5724 (alias_command): Remove unused c.
5725 * mi/mi-cmd-catch.c (mi_catch_load_unload): Remove unused c.
5726 * mi/mi-main.c (mi_cmd_data_write_register_values): Remove unused
5727 format.
5728 (mi_cmd_data_write_memory): Remove unused word_format.
5729 (mi_cmd_data_write_memory_bytes): Remove unused r.
5730 * python/py-gdb-readline.c (gdbpy_readline_wrapper): Remove unused
5731 p_start, p_end.
5732 * python/python.c (_initialize_python): Remove unused cmd_name, cmd.
5733 * tui/tui-disasm.c (tui_set_disassem_content): Remove unused
5734 line_width.
5735
c656bca5
AR
57362013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
5737
5738 * dwarf2-frame.c (dwarf2_compile_cfa_to_ax): Remove unused num_regs.
5739 * symtab.c (iterate_over_symtabs): Remove unused s.
5740 (find_pc_sect_symtab): Remove unused pspAce.
5741 (find_pc_sect_line): Remove unused alt_symtab.
5742 (find_pcs_for_symtab_line): Remove unused ix, previous_function.
5743 (completion_list_add_name): Remove unused newsize.
5744
7078baeb
TT
57452013-01-31 Tom Tromey <tromey@redhat.com>
5746
5747 PR c++/14998:
5748 * dwarf2read.c (read_tag_ptr_to_member_type): Handle
5749 TYPE_CODE_FUNC.
5750
c2e8b827
AR
57512013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
5752
5753 * target.c (target_read_string): Remove unused origlen.
5754
0e43993a
AR
57552013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
5756
5757 * auto-load.c (auto_load_expand_dir_vars): Remove unused dir_vec.
5758 * ax-gdb.c (gen_printf): Remove unused expr, i, bot, fr, flen, fmt.
5759 * ax-general.c (ax_print): Remove unused is_float.
5760 * blockframe.c (block_innermost_frame): Remove unused start, end.
5761 * break-catch-sig.c (catch_signal_command): Remove unused gdbarch.
5762
765a97ab
AR
57632013-01-31 Aleksandar Ristovski <aristovski@qnx.com>
5764
5765 * solib-svr4.c (svr4_keep_data_in_core): Remove unused lmo.
5766 (svr4_read_so_list): Remove unused lmo.
5767 * solib-target.c (solib_target_relocate_section_addresses): Remove
5768 unused flags.
5769
a99dad3d
TT
57702013-01-30 Tom Tromey <tromey@redhat.com>
5771
5772 * hppa-tdep.c (read_unwind_info): Use SECT_OFF_TEXT, not "0".
5773
3bff1ecd
TT
57742013-01-30 Tom Tromey <tromey@redhat.com>
5775
5776 * symfile.c (get_file_crc): Use bfd_calc_gnu_debuglink_crc32.
5777 * utils.c (gnu_debuglink_crc32): Remove.
5778 * utils.h (gnu_debuglink_crc32): Don't declare.
5779
7d455152
TT
57802013-01-30 Tom Tromey <tromey@redhat.com>
5781
5782 * dwarf2read.c (compute_delayed_physnames, read_call_site_scope)
5783 (read_structure_type, read_enumeration_type): Remove cast.
5784
abee88f2
TT
57852013-01-30 Tom Tromey <tromey@redhat.com>
5786
5787 * dwarf2read.c (read_namespace_type): Remove cast.
5788 (read_typedef): Likewise.
5789
8d9878a4
TT
57902013-01-29 Tom Tromey <tromey@redhat.com>
5791
5792 * dwarf2read.c (free_dwo_file): Remove assert.
5793
a543d2a9
TT
57942013-01-29 Tom Tromey <tromey@redhat.com>
5795
5796 * value.c (deprecated_set_value_modifiable): Remove.
5797 * value.h (deprecated_set_value_modifiable): Remove.
5798
bed911e5
DE
57992013-01-28 Doug Evans <dje@google.com>
5800
5801 * dwarf2loc.c (dwarf2_find_location_expression): Don't add base address
5802 to addresses from dwo files.
5803
28c64fc2
SCR
58042013-01-25 Siva Chandra Reddy <sivachandra@google.com>
5805
5806 * valops.c (find_overload_match): Remove unused argument 'lax'.
5807 * value.h: Remove unused argument 'lax' from the declaration of
5808 find_overload_match.
5809 * eval.c (value_subexp_standard): Do not pass a 'lax' argument
5810 to find_overload_match.
5811 * valarith.c (value_user_defined_cpp_op): Do not pass a 'lax'
5812 argument to find_overload_match.
5813
4d4ec4e5
TT
58142013-01-25 Tom Tromey <tromey@redhat.com>
5815
5816 * dwarf2read.c (processing_has_namespace_info): Remove.
5817 (struct dwarf2_cu) <processing_has_namespace_info>: New field.
5818 (process_die, read_func_scope, dwarf2_start_symtab)
5819 (new_symbol_full): Update.
5820
195a3f6c
TT
58212013-01-25 Tom Tromey <tromey@redhat.com>
5822
5823 * cp-namespace.c (cp_set_block_scope): Remove.
5824 * cp-support.h (cp_set_block_scope): Remove.
5825 * dbxread.c: Include block.h.
5826 (cp_set_block_scope): New function.
5827 (process_one_symbol): Update.
5828 * dwarf2read.c (read_func_scope): Use block_set_scope.
5829
8ba0730a
PA
58302013-01-25 Pedro Alves <palves@redhat.com>
5831
5832 * remote.c (add_current_inferior_and_thread): Tweak comment.
5833
12aaed36
TT
58342013-01-25 Tom Tromey <tromey@redhat.com>
5835
5836 * cp-namespace.c (cp_scan_for_anonymous_namespaces): Update.
5837 (cp_add_using_directive): Add 'copy_names' argument.
5838 * cp-support.h (cp_add_using_directive): Update.
5839 (struct using_direct) <import_src, import_dest, alias,
5840 declaration>: Now const.
5841 * dwarf2read.c (read_import_statement): Use obconcat.
5842 Don't copy names passed to cp_add_using_directive.
5843
7fc75ca7
TT
58442013-01-25 Tom Tromey <tromey@redhat.com>
5845
5846 * c-exp.y (qualified_name): Use TYPE_SAFE_NAME.
5847
3405876a
PA
58482013-01-25 Pedro Alves <palves@redhat.com>
5849
5850 * remote.c (stop_reply_extract_thread): New.
5851 (add_current_inferior_and_thread): New parameter 'wait_status'.
5852 Handle it.
5853 (remote_start_remote): Pass wait status to
5854 add_current_inferior_and_thread.
5855 (extended_remote_run): Update comment.
5856 (extended_remote_create_inferior_1): Pass wait status to
5857 add_current_inferior_and_thread.
5858
8954db33
AB
58592013-01-25 Andrew Burgess <aburgess@broadcom.com>
5860 Ulrich Weigand <uweigand@de.ibm.com>
5861
5862 * valarith.c (value_vector_widen): New function for replicating a
5863 scalar into a vector.
5864 (value_binop): Use value_vector_widen to widen scalar to vector
5865 rather than casting, this better matches gcc C behaviour.
5866 * valops.c (value_casst): Update logic for casting between vector
5867 types, and for casting from scalar to vector, try to match gcc C
5868 behaviour.
5869 * value.h (value_vector_widen): Declare.
5870 * opencl-lang.c (opencl_value_cast): New opencl specific casting
5871 function, handle special case for casting scalar to vector.
5872 (opencl_relop): Use opencl_value_cast.
5873 (evaluate_subexp_opencl): Use opencl_value_cast instead of
5874 value_cast, and handle BINOP_ASSIGN, UNOP_CAST, and UNOP_CAST_TYPE
5875 in order to use opencl_value_cast.
5876
843b20dc
YQ
58772013-01-25 Yao Qi <yao@codesourcery.com>
5878
5879 * event-loop.c: Include "queue.h".
5880 (gdb_event_p): New typedef.
5881 (DECLARE_QUEUE_P): Use.
5882 (DEFINE_QUEUE_P): Use.
5883 (async_queue_event): Remove.
5884 (gdb_event_xfree): New.
5885 (initialize_event_loop): New.
5886 (process_event): Use QUEUE macros.
5887 (event_queue): Remove.
5888 (gdb_wait_for_event): Caller update.
5889 (check_async_event_handlers): Likewise.
5890 (poll_timers): Likewise.
5891 * event-loop.h (initialize_event_loop): Declare.
5892 * event-loop.c (gdb_event_xfree): New.
5893 * top.c (gdb_init): Call initialize_event_loop.
5894
20ad8856
YQ
58952013-01-25 Yao Qi <yao@codesourcery.com>
5896
5897 * event-loop.c (async_queue_event): Remove one parameter
5898 'position'. Remove code handling 'position' == TAIL.
5899 (gdb_wait_for_event): Caller update.
5900 (check_async_event_handlers): Caller update.
5901 (poll_timers): Caller update.
5902 * event-loop.h (enum queue_position): Remove.
5903
3bbbe775
MK
59042013-01-25 Maxim Kuvyrkov <maxim@kugelworks.com>
5905
5906 * MAINTAINERS: Update my email.
5907
a87d9ac4
YQ
59082013-01-25 Yao Qi <yao@codesourcery.com>
5909
5910 * main.c (print_gdb_help): Remove "--epoch" from the help
5911 message.
5912
2077afdd
TD
59132013-01-24 Ulrich Weigand  <uweigand@de.ibm.com>
5914
5915 * symtab.c (skip_prologue_using_sal): Consider a file
5916 change the same as an increased line number
5917
63da4037
TD
59182013-01-24 Tiago Stürmer Daitx  <tdaitx@linux.vnet.ibm.com>
5919
30e8ee25 5920 * MAINTAINERS (Write After Approval): Add myself to the list.
63da4037 5921
45e6c716
TT
59222013-01-24 Tom Tromey <tromey@redhat.com>
5923
5924 * ada-lang.h (ada_decode_symbol): Make return type const.
5925 * ada-lang.c (ada_decode_symbol): Likewise.
5926
b1ae631a
DE
59272013-01-23 Doug Evans <dje@google.com>
5928
5929 * linespec.c (find_linespec_symbols): Make static.
5930
55a78401
SDJ
59312013-01-23 Tiago Stürmer Daitx <tdaitx@linux.vnet.ibm.com>
5932
5933 * ppc-sysv-tdep.c (ppc64_sysv_abi_return_value): Set correct
5934 type on float conversion for complex type.
5935
bea883fd
SCR
59362013-01-23 Siva Chandra Reddy <sivachandra@google.com>
5937
5938 Add a new class gdb.Architecture which exposes GDB's
5939 internal representation of architecture via GDB Python API.
5940 * Makefile.in: Add entries corresponding to the new file
5941 python/py-arch.c.
5942 * NEWS (Python Scripting): Add entries for the new class
5943 gdb.Architecture and the new method gdb.Frame.architecture.
5944 * python/py-arch.c: Implement gdb.Architecture class.
5945 * python/py-frame.c (frapy_arch): Implement the method
5946 gdb.Frame.architecture().
5947 (frame_object_methods): Add 'architecture' to the method table.
5948 * python/python-internal.h: Add declarations of new utility
5949 functions.
5950 * python/python.c (_initialize_python): Initialize
5951 gdb.Architecture class.
5952
796a7ff8
DE
59532013-01-23 Doug Evans <dje@google.com>
5954
5955 Work around binutils/15021.
5956 * dwarf2read.c (dwarf2_per_cu_data): Split imported_symtabs and
5957 type_unit_group out of union s. All uses updated.
5958 (read_index_from_section): Watch for index version 8.
5959 (follow_die_sig): If using .gdb_index version <= 7, record the TU as
5960 an imported symtab.
5961 (write_psymtabs_to_index): Increment version number to 8.
5962
0928e93d
PA
59632013-01-22 Pedro Alves <palves@redhat.com>
5964
5965 * annotate.c (breakpoint_changed): Skip if breakpoint is not
5966 user-visible.
5967
9c97429f
PA
59682013-01-22 Pedro Alves <palves@redhat.com>
5969
5970 * annotate.c (annotate_breakpoints_changed): Rename to ...
5971 (annotate_breakpoints_invalid): ... this. Make static.
5972 (breakpoint_changed): Adjust.
5973 (_initialize_annotate): Always install the observers. Install a
5974 "breakpoint_created" observer.
5975 * annotate.h (annotate_breakpoints_changed): Delete declaration.
5976 * breakpoint.c (set_breakpoint_condition)
5977 (breakpoint_set_commands, do_map_commands_command)
5978 (init_raw_breakpoint, clear_command, set_ignore_count)
5979 (enable_breakpoint_disp): No longer call
5980 annotate_breakpoints_changed.
5981
bd00c694
PA
59822013-01-22 Pedro Alves <palves@redhat.com>
5983
5984 * annotate.c: Include "inferior.h".
5985 (frames_invalid_emitted)
5986 (breakpoints_invalid_emitted): New globals.
5987 (async_background_execution_p): New function.
5988 (annotate_breakpoints_changed, annotate_frames_invalid): Skip
5989 emitting the annotation if it has already been emitted.
5990 (annotate_display_prompt): New function.
5991 * annotate.h (annotate_display_prompt): New declaration.
5992 * event-top.c: Include annotate.h.
5993 (display_gdb_prompt): Call annotate_display_prompt.
5994
187d10dd
PA
59952013-01-22 Pedro Alves <palves@redhat.com>
5996
5997 * annotate.c (ignore_count_changed): Delete.
5998 (annotate_breakpoints_changed): Don't clear ignore_count_changed.
5999 (annotate_ignore_count_change): Delete.
6000 (annotate_stopped): Don't emit a delayed breakpoints-changed
6001 annotation.
6002 * annotate.h (annotate_ignore_count_change): Delete.
6003 * breakpoint.c (bpstat_check_breakpoint_conditions): Don't call
6004 annotate_ignore_count_change.
6005
d84cf7eb
TT
60062013-01-22 Tom Tromey <tromey@redhat.com>
6007
6008 * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>: Only
6009 require_rvalue for a register location.
6010
8f1d5693
MK
60112013-01-21 Marc Khouzam <marc.khouzam@ericsson.com>
6012
6013 * breakpoint.c (print_one_breakpoint_location): Add MI
6014 field 'thread-groups' when printing a breakpoint.
6015 (output_thread_groups): New function.
6016
aa6199c6
SCR
60172013-01-21 Siva Chandra Reddy <sivachandra@google.com>
6018
6019 * python/lib/gdb/commands/explore.py
6020 (CompoundExplorer.explore_expr): Correct the name of a method
6021 being invoked.
6022 (ExploreTypeCommand.invoke): Add a missing 'return'.
6023
d2afef13
TT
60242013-01-21 Tom Tromey <tromey@redhat.com>
6025
6026 * gdb_obstack.h (obconcat): Move declaration here, from...
6027 * symfile.h (obconcat): ... here.
6028 * gdb_obstack.c: New file.
6029 (obconcat): Move from...
6030 * symfile.c (obconcat): ... here.
6031 * Makefile.in (SFILES): Add gdb_obstack.c.
6032 (COMMON_OBS): Add gdb_obstack.o.
6033
10f0c4bb
TT
60342013-01-21 Tom Tromey <tromey@redhat.com>
6035
6036 * symfile.h (obsavestring): Don't declare.
6037 * symfile.c (obsavestring): Remove.
6038 * ada-exp.y: Use obstack_copy0, not obsavestring.
6039 * ada-lang.c: Use obstack_copy0, not obsavestring.
6040 * coffread.c: Use obstack_copy0, not obsavestring.
6041 * cp-namespace.c: Use obstack_copy0, not obsavestring.
6042 * dbxread.c: Use obstack_copy0, not obsavestring.
6043 * dwarf2read.c: Use obstack_copy0, not obsavestring.
6044 * jit.c: Use obstack_copy0, not obsavestring.
6045 * mdebugread.c: Use obstack_copy0, not obsavestring.
6046 * psymtab.c: Use obstack_copy0, not obsavestring.
6047 * stabsread.c: Use obstack_copy0, not obsavestring.
6048 * xcoffread.c: Use obstack_copy0, not obsavestring.
6049
86f62fd7
TT
60502013-01-21 Tom Tromey <tromey@redhat.com>
6051
6052 * dwarf2read.c (fixup_go_packaging): Save package name
6053 on objfile obstack.
6054 * gdbtypes.c (init_type): Don't copy name.
6055
15d034d0
TT
60562013-01-21 Tom Tromey <tromey@redhat.com>
6057
6058 * dwarf2read.c (struct partial_die_info) <name, scope>: Now
6059 const.
6060 (struct attribute) <u.str>: Now const.
6061 (struct fnfieldlist) <name>: Now const.
6062 (dw2_get_file_names_reader, init_cutu_and_read_dies): Update.
6063 (partial_die_parent_scope): Make return type const.
6064 (partial_die_full_name, add_partial_symbol): Update.
6065 (dwarf2_compute_name, dwarf2_full_name, dwarf2_physname): Make
6066 'name' const.
6067 (find_file_and_directory): Make 'name' and 'comp_dir' const.
6068 (read_file_scope, read_func_scope, dwarf2_add_field)
6069 (dwarf2_add_member_fn, read_structure_type)
6070 (process_enumeration_scope, read_array_type, read_module_type)
6071 (read_base_type, read_subrange_type): Update.
6072 (dwarf2_start_symtab): Make 'name' and 'comp_dir' const.
6073 (new_symbol_full, guess_full_die_structure_name): Update.
6074 (dwarf2_canonicalize_name): Return const type. Make 'name' const.
6075 (dwarf2_name): Return const type.
6076 (dwarf_decode_macro_bytes, dwarf_decode_macros): Make 'comp_dir'
6077 const.
6078
748e18ae
TT
60792013-01-21 Tom Tromey <tromey@redhat.com>
6080
6081 * gdbtypes.c (init_type): Make 'name' const.
6082 * gdbtypes.h (init_type): Update.
6083
46212e0b
TT
60842013-01-21 Tom Tromey <tromey@redhat.com>
6085
6086 * buildsym.c (patch_subfile_names): Use set_last_source_file.
6087 (start_symtab): Make 'name' and 'dirname' const. Use
6088 set_last_source_file.
6089 (restart_symtab, reset_symtab_globals): Use set_last_source_file.
6090 (last_source_file): Define. Now static.
6091 (set_last_source_file, get_last_source_file): New functions.
6092 * buildsym.h (last_source_file): Don't declare.
6093 (start_symtab): Update.
6094 (set_last_source_file, get_last_source_file): Declare.
6095 * coffread.c (complete_symtab): Use set_last_source_file.
6096 (coff_end_symtab): Likewise.
6097 (coff_symtab_read): Use set_last_source_file, get_last_source_file.
6098 * dbxread.c (read_dbx_symtab, read_ofile_symtab): Use
6099 set_last_source_file.
6100 (process_one_symbol): Use get_last_source_file.
6101 * mdebugread.c (parse_partial_symbols): Use set_last_source_file.
6102 (psymtab_to_symtab_1): Use get_last_source_file.
6103 * xcoffread.c (process_linenos): Use get_last_source_file.
6104 (complete_symtab): Use set_last_source_file.
6105 (read_xcoff_symtab): Use set_last_source_file, get_last_source_file.
6106 (scan_xcoff_symtab): Use set_last_source_file.
6107
9d2ceabe
TT
61082013-01-21 Tom Tromey <tromey@redhat.com>
6109
6110 * symtab.c (struct demangled_name_entry) <mangled>: Now const.
6111 (symbol_set_names): Remove casts. Handle field const-ness.
6112
cfc594ee
TT
61132013-01-21 Tom Tromey <tromey@redhat.com>
6114
6115 * dwarf2read.c (new_symbol_full): Remove cast.
6116 * symtab.c (symbol_set_demangled_name): Make 'name' const.
6117 * symtab.h (symbol_set_demangled_name): Update.
6118
5484b13a
TT
61192013-01-21 Tom Tromey <tromey@redhat.com>
6120
6121 * main.c (captured_main): Call bfd_init.
6122
1605ef26
TT
61232013-01-21 Tom Tromey <tromey@redhat.com>
6124
6125 * gnu-v2-abi.c (_initialize_gnu_v2_abi): Don't set default ABI.
6126 * gnu-v3-abi.c (_initialize_gnu_v3_abi): Set default ABI.
6127 * minsyms.c (install_minimal_symbols): Don't check for _Z symbols.
6128 * NEWS: Update.
6129
3b74cdc3
JK
61302013-01-21 Jan Kratochvil <jan.kratochvil@redhat.com>
6131
6132 * symmisc.c (maintenance_print_msymbols): Check also ST_DEV.
6133
5a352474
JK
61342013-01-21 Jan Kratochvil <jan.kratochvil@redhat.com>
6135
6136 Fix gdb.fortran/common-block.exp crash in PIE mode.
6137 * dwarf2read.c (new_symbol_full) <DW_TAG_common_block>: Use
6138 LOC_COMMON_BLOCK.
6139 * f-valprint.c (info_common_command_for_block): Expect
6140 LOC_COMMON_BLOCK in gdb_assert.
6141 * symtab.h (struct general_symbol_info): Update comment for the
6142 common_block member.
6143 (domain_enum): Extend comment for the COMMON_BLOCK_DOMAIN member.
6144 (enum address_class): New member LOC_COMMON_BLOCK.
6145
c60797fd
DB
61462013-01-18 David Blaikie <dblaikie@gmail.com>
6147
6148 * MAINTAINERS (Write After Approval): Add "David Blaikie".
0cae7dfb 6149
46f35228
TT
61502013-01-18 Tom Tromey <tromey@redhat.com>
6151
6152 PR c++/14999:
6153 * dwarf2loc.c (dwarf2_compile_expr_to_ax) <DW_OP_fbreg>:
6154 Call require_rvalue.
6155
257e7a09
YQ
61562013-01-18 Yao Qi <yao@codesourcery.com>
6157
6158 * dbxread.c (dbx_psymtab_to_symtab): Delete the declaration.
6159 (dbx_read_symtab): New declaration.
6160 (dbx_psymtab_to_symtab): Delete.
6161 (dbx_read_symtab): Rename from dbx_psymtab_to_symtab.
6162 Rename parameter PST to SELF. Exchanged two parameters.
6163 (start_psymtab): Caller update.
6164 * dwarf2read.c (dwarf2_psymtab_to_symtab): Delete the declaration.
6165 (dwarf2_read_symtab): New declaration.
6166 (dwarf2_psymtab_to_symtab): Delete.
6167 (dwarf2_read_symtab): Rename from dwarf2_psymtab_to_symtab.
6168 Rename parameter PST to SELF. Exchanged two parameters.
6169 (create_partial_symtab): Caller update.
6170 * mdebugread.c (mdebug_psymtab_to_symtab): Delete.
6171 (mdebug_read_symtab): Rename from mdebug_psymtab_to_symtab.
6172 Rename parameter PST to SELF. Exchanged two parameters.
6173 (parse_partial_symbols, new_psymtab): Caller update.
6174 * psympriv.h (struct partial_symtab) <read_symtab>: Exchange
6175 two parameters.
6176 * psymtab.c (psymtab_to_symtab): Caller update.
6177 * xcoffread.c (xcoff_psymtab_to_symtab): Delete.
6178 (xcoff_read_symtab): Rename from xcoff_psymtab_to_symtab.
6179 Rename parameter PST to SELF. Exchanged two parameters.
6180 (xcoff_start_psymtab): Caller update.
6181
0de5618e
YQ
61822013-01-18 Yao Qi <yao@codesourcery.com>
6183
6184 * infrun.c (proceed): Rename local variable 'oneproc' to
6185 'force_step'.
6186
5c04624b
DE
61872013-01-17 Doug Evans <dje@google.com>
6188
848e3e78
DE
6189 * dwarf2read.c (dw2_build_type_unit_groups_reader): Delete.
6190 (dw2_build_type_unit_groups): Delete. All uses updated.
6191
5c04624b
DE
6192 * symtab.h (struct symbol_search): Add comment.
6193
d84fca2c
JK
61942013-01-17 Jan Kratochvil <jan.kratochvil@redhat.com>
6195
6196 * symtab.c (compare_filenames_for_search): New comment for
6197 HAS_DRIVE_SPEC.
6198
6108433d
TT
61992013-01-17 Tom Tromey <tromey@redhat.com>
6200
6201 * cp-abi.c (cp_abi_completer): Fix typo in assignment.
6202
c89ffd86
JK
62032013-01-17 Jan Kratochvil <jan.kratochvil@redhat.com>
6204
6205 * symtab.c (iterate_over_some_symtabs): New variable cleanups,
6206 initialize it by existing make_cleanup. Call new do_cleanups.
6207
db2b2972
TT
62082013-01-17 Tom Tromey <tromey@redhat.com>
6209
6210 * cp-abi.c (cp_abi_completer): New function.
6211 (_initialize_cp_abi): Set completer for "set cp-abi".
6212
be7d37a2
TT
62132013-01-17 Tom Tromey <tromey@redhat.com>
6214
6215 * mem-break.c: Remove obsolete comment.
6216 * bfin-tdep.c (bfin_breakpoint_from_pc): Fix comment.
6217
c9fb1240
SD
62182012-01-17 Sanjoy Das <sanjoy@playingwithpointers.com>
6219
6220 * jit.c (jit_reader_load_command): Interpret the jit reader name
6221 as an absolute path if it begins with a forward slash.
6222
db334a01
SD
62232012-01-17 Sanjoy Das <sanjoy@playingwithpointers.com>
6224
6225 PR gdb/14550
6226
6227 * jit.c (finalize_symtab): Ensure that only the global block has a
6228 NULL superblock.
6229
7d928dac
PA
62302013-01-17 Pedro Alves <palves@redhat.com>
6231
6232 * acinclude.m4: Include ../config/plugins.m4,
6233 ../config/largefile.m4 and ../config/lead-dot.m4. Add comments.
6234 * Makefile.in (aclocal_m4_deps): Update.
6235 * aclocal.m4: Renegerate.
6236
fb8cf7c5
DE
62372013-01-16 Doug Evans <dje@google.com>
6238
6239 * contrib/cc-with-tweaks.sh: Add references to Fission docs.
6240
ab04a2af
TT
62412013-01-16 Pedro Alves <palves@redhat.com>
6242 Tom Tromey <tromey@redhat.com>
6243
6244 PR cli/7221:
6245 * NEWS: Add "catch signal".
6246 * breakpoint.c (base_breakpoint_ops): No longer static.
6247 (bpstat_explains_signal): New function.
6248 (init_catchpoint): No longer static.
6249 (base_breakpoint_explains_signal): New function.
6250 (base_breakpoint_ops): Initialize new field.
6251 * breakpoint.h (enum bpstat_signal_value): New.
6252 (struct breakpoint_ops) <explains_signal>: New field.
6253 (bpstat_explains_signal): Remove macro, declare as function.
6254 (base_breakpoint_ops, init_catchpoint): Declare.
6255 * break-catch-sig.c: New file.
6256 * inferior.h (signal_catch_update): Declare.
6257 * infrun.c (signal_catch): New global.
6258 (handle_syscall_event): Update for change to
6259 bpstat_explains_signal.
6260 (handle_inferior_event): Likewise. Always handle random signals
6261 via bpstats.
6262 (signal_cache_update): Check signal_catch.
6263 (signal_catch_update): New function.
6264 (_initialize_infrun): Initialize signal_catch.
6265 * Makefile.in (SFILES): Add break-catch-sig.c.
6266 (COMMON_OBS): Add break-catch-sig.o.
6267
8ac3646f
TT
62682013-01-16 Tom Tromey <tromey@redhat.com>
6269
6270 * breakpoint.c (print_one_catch_fork, print_one_catch_vfork)
6271 (print_one_catch_solib, print_one_catch_syscall)
6272 (print_one_catch_exec, print_one_exception_catchpoint): Emit
6273 "catch-type".
6274
5a18e302
YQ
62752013-01-16 Yao Qi <yao@codesourcery.com>
6276
6277 * printcmd.c (current_display_number): Make it static.
6278
3f01d0d0
YQ
62792013-01-16 Yao Qi <yao@codesourcery.com>
6280
6281 * infcmd.c (step_once): Don't check '!single_inst' as it was
6282 checked before.
6283
1ed59174
JK
62842013-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
6285
6286 * dwarf2read.c (psymtab_include_file_name): Extend the function comment.
6287
44478ab3
TT
62882013-01-14 Tom Tromey <tromey@redhat.com>
6289
6290 * cli/cli-decode.c (add_setshow_string_noescape_cmd): Return the
6291 set command.
6292 * command.h (add_setshow_string_noescape_cmd): Update.
6293 * corefile.c (set_gnutarget_command): Remove trailing whitespace.
6294 (complete_set_gnutarget): New function.
6295 (_initialize_core): Set the "set gnutarget" completer.
6296
06d66ee9
TT
62972013-01-14 Tom Tromey <tromey@redhat.com>
6298
6299 PR symtab/14442:
6300 * c-typeprint.c (cp_type_print_method_args): Handle 'restrict'.
6301 (c_type_print_modifier): Likewise.
6302 * dwarf2read.c (read_tag_restrict_type): New function.
6303 (read_type_die_1): Handle DW_TAG_restrict_type.
6304 * gdbtypes.c (make_restrict_type): New function.
6305 (recursive_dump_type): Handle TYPE_RESTRICT.
6306 * gdbtypes.h (enum type_flag_values): Renumber.
6307 (enum type_instance_flag_value): Add
6308 TYPE_INSTANCE_FLAG_RESTRICT.
6309 (TYPE_RESTRICT): New macro.
6310 (make_restrict_type): Declare.
6311
c9bf0622
TT
63122013-01-14 Tom Tromey <tromey@redhat.com>
6313
6314 PR symtab/14931:
6315 * psymtab.c (struct psymtab_state): New.
6316 (discard_psymtabs_upto, make_cleanup_discard_psymtabs): New
6317 functions.
6318 * psympriv.h (make_cleanup_discard_psymtabs): Declare.
6319 * dwarf2read.c (dwarf2_build_psymtabs): Catch exceptions.
6320
44d594fd
PA
63212013-01-14 Richard Sharman <richard_sharman@mitel.com>
6322 Pedro Alves <palves@redhat.com>
6323
6324 PR remote/14786
6325
6326 * remote.c (remote_threads_info): Make a copy of the reply from
6327 qfThreadInfo and use that instead of rs->buf.
6328
442e4d9c
YQ
63292013-01-14 Yao Qi <yao@codesourcery.com>
6330
6331 * dbxread.c (dbx_psymtab_to_symtab_1): Don't check PST is NULL.
6332 (dbx_psymtab_to_symtab): Likewise.
6333 * dwarf2read.c (dwarf2_psymtab_to_symtab): Likewise.
6334 * mdebugread.c (mdebug_psymtab_to_symtab): Likewise.
6335 * xcoffread.c (xcoff_psymtab_to_symtab_1): Likewise.
6336
5b12a61c
JK
63372013-01-13 Jan Kratochvil <jan.kratochvil@redhat.com>
6338
6339 * parse.c (parse_exp_in_context): New variable inner_chain. Call
6340 make_cleanup_restore_current_language. Call set_language. Move
6341 OLD_CHAIN and INNER_CHAIN cleanups.
6342 * utils.c (do_restore_current_language)
6343 (make_cleanup_restore_current_language): New functions.
6344 * utils.h (make_cleanup_restore_current_language): New declaration.
6345
f0a4b570
JK
63462013-01-13 Jan Kratochvil <jan.kratochvil@redhat.com>
6347
6348 * source.c (symtab_to_fullname): Apply rewrite_source_path also for
6349 non-existing files.
6350
57b3c00c
JK
6351 * source.c (symtab_to_fullname): Do not prepend DIRNAME for
6352 non-existing files if FILENAME is already absolute.
6353
daefa854
JK
63542013-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
6355
6356 * macrocmd.c (macro_inform_no_debuginfo): Use puts_filtered instead of
6357 fputs_filtered. Append trailing newline.
6358
ca9c6ee2
YQ
63592013-01-11 Yao Qi <yao@codesourcery.com>
6360 Stan Shebs <stan@codesourcery.com>
6361
6362 * psymtab.c (init_psymbol_list): Clarify the comment.
6363
f28045c2
YQ
63642013-01-11 Yao Qi <yao@codesourcery.com>
6365
6366 * breakpoint.c (print_one_breakpoint_location): Remove dead code.
6367 (update_dprintf_command_list): Assert that 'printf_line' is
6368 non-null. Remove condition check.
6369
da5132d3
JK
63702013-01-10 Jan Kratochvil <jan.kratochvil@redhat.com>
6371
6372 Code cleanup.
6373 * psymtab.c (psymtab_to_fullname, psymtab_to_fullname): Make the return
6374 type const char *.
6375 * tui/tui-source.c (tui_source_is_displayed): Make the parameter fname
6376 const char *.
6377 * tui/tui-source.h (tui_source_is_displayed): Likewise.
6378
843e694d
AG
63792013-01-09 Anthony Green <green@moxielogic.com>
6380
6381 * cp-abi.c (cplus_print_vtable): Don't return value from void
6382 function.
6383 * ada-lang.c (re_set_catch_assert): Ditto.
6384
da51c347
DE
63852013-01-09 Doug Evans <dje@google.com>
6386
6387 * symfile.h (quick_symbol_functions): Delete member
6388 pre_expand_symtabs_matching. All uses removed.
6389 * dwarf2read.c (dw2_lookup_symbol): Implement.
6390 (dw2_do_expand_symtabs_matching): Delete.
6391 (dw2_pre_expand_symtabs_matching): Delete.
6392 (struct dw2_symtab_iterator): New type.
6393 (dw2_symtab_iter_init, dw2_symtab_iter_next): New functions.
6394 (dw2_expand_symtabs_for_function): Rewrite.
6395 (dwarf2_gdb_index_functions): Update.
6396 * psymtab.c (pre_expand_symtabs_matching_psymtabs): Delete.
6397 (psym_functions): Update.
6398
b2259038
TT
63992013-01-09 Tom Tromey <tromey@redhat.com>
6400
6401 * config/pa/hpux.mh (NATDEPFILES): Remove somread.o.
6402 * configure: Rebuild.
6403 * configure.ac: Add somread.o to the build if BFD has SOM
6404 support.
6405 * somread.c: Include som/aout.h, not syms.h.
6406 (som_symtab_read): Use som_external_symbol_dictionary_record.
6407 Unpack records manually.
6408 (_initialize_somread): Declare.
6409
bdad4180
MF
64102012-01-08 Mike Frysinger <vapier@gentoo.org>
6411
6412 * common/linux-ptrace.c (linux_ptrace_test_ret_to_nx) [__x86_64__]:
6413 Cast return_address to 64bits.
6414
03cdf680
HZ
64152013-01-08 Hui Zhu <hui_zhu@mentor.com>
6416
6417 * printcmd.c: Remove define of function output_command.
6418 * tracepoint.c: Remove extern of function output_command.
6419 * valprint.h: (output_command): New extern.
6420
8a808554
TT
64212013-01-07 Tom Tromey <tromey@redhat.com>
6422
6423 * objc-lang.c (objc_emit_char, objc_printchar, objc_printstr):
6424 Remove.
6425 (objc_language_defn): Use c_printchar, c_printstr,
6426 c_emit_char.
6427
e93a8774
TT
64282013-01-07 Tom Tromey <tromey@redhat.com>
6429
6430 PR cli/7719:
6431 * NEWS: Update.
6432 * ada-valprint.c (printstr, print_field_values): Remove
6433 "inspect_it" code.
6434 * cp-valprint.c (cp_print_value_fields): Remove "inspect_it"
6435 code.
6436 * jv-valprint.c (java_print_value_fields): Remove "inspect_it"
6437 code.
6438 * m2-lang.c (m2_printstr): Remove "inspect_it" code.
6439 * main.c (captured_main): Remove "epoch" argument.
6440 * objc-lang.c (objc_printstr): Remove "inspect_it" code.
6441 * p-lang.c (pascal_printstr): Remove "inspect_it" code.
6442 * p-valprint.c (pascal_object_print_value_fields): Remove
6443 "inspect_it" code.
6444 * printcmd.c (print_command_1): Remove 'inspect' argument.
6445 (print_command, call_command): Update.
6446 (inspect_command): Remove.
6447 (_initialize_printcmd): Make "inspect" an alias for "print".
6448 * top.c (epoch_interface): Remove.
6449 * top.h (epoch_interface): Remove.
6450 * valprint.c (user_print_options): Update.
6451 (print_converted_chars_to_obstack): Remove "inspect_it" code.
6452 * valprint.h (struct value_print_options) <inspect_it>: Remove
6453 field.
6454
64552013-01-04 Tom Tromey <tromey@redhat.com>
6456
6457 * valprint.h (read_string): Add 'extern'.
6458
b967eb24
JB
64592013-01-07 Joel Brobecker <brobecker@adacore.com>
6460
6461 * darwin-nat.c: Fix typo in TASK_DYLD_INFO_COUNT macro test
6462 used to decide whether to define darwin_read_dyld_info or not.
6463
78a8b30e
PM
64642013-01-03 Pierre Muller <muller@sourceware.org>
6465
6466 * main.c (relocate_gdb_directory): Avoid calling stat function
6467 if DIR is empty.
6468
50da2f25
YQ
64692013-01-03 Yao Qi <yao@codesourcery.com>
6470
6471 * psymtab.c (fixup_psymbol_section): Update declaration.
6472 (fixup_psymbol_section): Remove code returning value.
6473
e7e8980f
YQ
64742013-01-03 Yao Qi <yao@codesourcery.com>
6475
6476 * symtab.h: Remove some out of date comments.
6477 (enum exception_event_kind): Move it ...
6478 * breakpoint.c: ... here.
6479
569283d4
MF
64802013-01-02 Iain Sandoe <developer@sandoe-acoustics.co.uk>
6481
9f9d9a96 6482 PR gdb/14405
569283d4
MF
6483 * darwin-nat.c (darwin_read_dyld_info): Only build if
6484 TASK_DYLD_INFO_COUNT is defined.
6485 (darwin_xfer_partial): Call darwin_read_dyld_info only if
6486 TASK_DYLD_INFO_COUNT is defined.
6487
2e36fbea
TT
64882013-01-02 Tom Tromey <tromey@redhat.com>
6489
6490 * symfile.h (struct ecoff_debug_hack): Remove.
6491 * objfiles.c: Don't include mdebugread.h.
6492
4f05add4
TT
64932013-01-02 Tom Tromey <tromey@redhat.com>
6494
6495 * config/i386/darwin.mh (NATDEPFILES): Remove machoread.o.
6496 * configure.ac: Check for Mach-O support in BFD. Update
6497 CONFIG_OBS.
6498 * configure: Rebuild.
6499
def63ff0
TT
65002013-01-02 Tom Tromey <tromey@redhat.com>
6501
6502 * acinclude.m4 (GDB_AC_CHECK_BFD): New macro.
6503 * configure.ac: Use GDB_AC_CHECK_BFD.
6504 * configure: Rebuild.
6505
60c5dd93
MK
65062013-01-01 Maxim Kuvyrkov <maxim.kuvyrkov@gmail.com>
6507
6508 * MAINTAINERS: Update my email.
6509
6e58437e
JB
65102013-01-01 Joel Brobecker <brobecker@adacore.com>
6511
6512 * cli/cli-script.h (make_cleanup_free_command_lines): Make extern.
6513
627fe805
JB
65142013-01-01 Joel Brobecker <brobecker@adacore.com>
6515
6516 * rs6000-nat.c (bss_data_overlap): New function.
6517 (vmap_symtab): Use it to adjust the .bss section's offset.
6518
28e7fd62
JB
65192013-01-01 Joel Brobecker <brobecker@adacore.com>
6520
6521 Update year range in copyright notice of all files.
6522
e93a8774 65232013-01-01, 13 Joel Brobecker <brobecker@adacore.com>
b9786c74
JB
6524
6525 * top.c (print_gdb_version): Update copyright year.
6526
72b20e9c 6527For older changes see ChangeLog-2012.
c906108c
SS
6528\f
6529Local Variables:
6530mode: change-log
6531left-margin: 8
6532fill-column: 74
6533version-control: never
57da7796 6534coding: utf-8
c906108c 6535End:
This page took 1.835361 seconds and 4 git commands to generate.