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