Put ChangeLog entries in the right ChangeLog file.
[deliverable/binutils-gdb.git] / gdb / ChangeLog
CommitLineData
710e1a31
SW
12010-08-31 Sami Wagiaalla <swagiaal@redhat.com>
2
3 * symfile.c (reread_symbols): Use psymbol_bcache_free, and
4 psymbol_bcache_init.
5 * psymtab.h (psymbol_bcache_init): New function prototype.
6 (psymbol_bcache_free): New function prototype.
7 (psymbol_bcache_get_bcache): New function prototype.
8 * psymtab.c (psymbol_bcache_init): New function.
9 (psymbol_bcache_free): New function.
10 (psymbol_bcache_full): New function.
11 (psymbol_bcache_get_bcache): New function.
12 (add_psymbol_to_bcache): use psymbol_bcache_full.
13 * objfiles.h (psymbol_cache): Change type of psymbol_cache to
14 psymbol_bcache.
15 * symmisc.c (print_symbol_bcache_statistics): Updated.
16 (print_objfile_statistics): Updated.
17 * objfiles.c (allocate_objfile): Use psymbol_bcache_init to initialize
18 psymbol_cache.
19 (free_objfile): Use psymbol_bcache_free.
20
64382290
TT
212010-08-31 Tom Tromey <tromey@redhat.com>
22
23 PR c++/11961:
24 * dwarf2read.c (new_symbol_full) <DW_TAG_template_type_param>:
25 Don't set TYPE_NAME on the type.
26
8bbed405
MS
272010-08-31 Michael Snyder <msnyder@msnyder-server.eng.vmware.com>
28
29 * infrun.c (set_exec_direction_func): Error out if target does not
30 support reverse execution.
31
06253dd3
JK
322010-08-31 Jan Kratochvil <jan.kratochvil@redhat.com>
33
34 Make linux_get_siginfo_type `type *' unique.
35 * linux-tdep.c (linux_gdbarch_data_handle, struct linux_gdbarch_data)
36 (init_linux_gdbarch_data, get_linux_gdbarch_data): New.
37 (linux_get_siginfo_type): New variable linux_gdbarch_data. Initialize
38 it. Use linux_gdbarch_data->siginfo_type as a persistent storage.
39 (_initialize_linux_tdep): New.
40
b8edc417
JK
412010-08-31 Jan Kratochvil <jan.kratochvil@redhat.com>
42
43 Code cleanup.
44 * defs.h (find_memory_region_ftype): New typedef.
45 (exec_set_find_memory_regions): Use it.
46 * exec.c (exec_set_find_memory_regions): Use find_memory_region_ftype.
47 * fbsd-nat.c (fbsd_find_memory_regions): Likewise.
48 * gcore.c (objfile_find_memory_regions): Likewise.
49 * gnu-nat.c (gnu_find_memory_regions): Likewise.
50 * linux-nat.c (linux_nat_find_memory_regions): Likewise.
51 * procfs.c (iterate_over_mappings_cb_ftype): Remove.
52 (iterate_over_mappings): Rename iterate_over_mappings_cb_ftype to
53 find_memory_region_ftype.
54 (insert_dbx_link_bpt_in_region): Likewise.
55 (iterate_over_mappings): Likewise. Drop the comment part about the
56 function prototype.
57 (find_memory_regions_callback): Use find_memory_region_ftype.
58 (proc_find_memory_regions): Likewise.
59 (info_mappings_callback): Rename iterate_over_mappings_cb_ftype to
60 find_memory_region_ftype.
61 * target.c (dummy_find_memory_regions): Use find_memory_region_ftype.
62 * target.h (struct target_ops) <to_find_memory_regions>: Likewise.
63
cbd70537
SW
642010-08-31 Sami Wagiaalla <swagiaal@redhat.com>
65
66 * psymtab.c (add_psymbol_to_bcache): Remove 'static' from
67 'static partial_symbol psymbol'.
68 (psymbol_hash): New function.
69 (psymbol_compare): New function.
70 * bcache.c (hash_continue): New.
71 (hash): Use hash_continue.
72 * bcache.c: Add hash_function and compare_function
73 pointers to bcache struct.
74 (bcache_full): Use bcache->hash_function, and
75 bcache->compare_function.
76 (bcache_compare): New function.
77 (bcache_xmalloc): Take hash_function and
78 compare_function arguments and initialize the
79 bcach's pointers.
80 Updated comment.
81 * objfiles.c (allocate_objfile): Updated.
82 * symfile.c (reread_symbols): Updated.
83 * python/py-type.c (typy_richcompare): Updated.
84
03f17ccf
TT
852010-08-30 Andre Poenitz <andre.poenitz@nokia.com>
86 Tom Tromey <tromey@redhat.com>
87
88 PR python/11792:
89 * python/py-value.c (valpy_get_dynamic_type): New function.
90 (value_object_getset): Add "dynamic_type".
91 (valpy_get_type): Fail on error.
92
25b41d01
YQ
932010-08-30 Yao Qi <yao@codesourcery.com>
94
95 * arm-linux-tdep.c (arm_linux_sigreturn_return_addr): New.
96 (arm_linux_syscall_next_pc): New.
97 (arm_linux_copy_svc): Use arm_linux_sigreturn_return_addr instead.
98 (arm_linux_init_abi): Initialize syscall_next_pc.
99 * arm-tdep.c (thumb_get_next_pc_raw): Get next pc of SWI in Thumb mode.
100 (arm_get_next_pc_raw): Get next pc of SWI in ARM mode.
101 * arm-tdep.h (struct gdbarch_tdep): Add a function pointer syscall_next_pc.
102 Declare arm_frame_is_thumb.
103
5760d0ab
JK
1042010-08-30 Jan Kratochvil <jan.kratochvil@redhat.com>
105
106 Code cleanup.
107 * breakpoint.c (bpstat_alloc): Remove unused prototype.
108 (bpstat_alloc): Change parameters cbs to bs_link_pointer. Adjust the
109 code.
110 (bpstat_stop_status): Change root_bs into bs_head and bs_link. Adjust
111 calls of bpstat_alloc. Remove explicit bs chain termination.
112
46a96992
JK
1132010-08-28 Jan Kratochvil <jan.kratochvil@redhat.com>
114
115 Code cleanup.
116 * linux-nat.c (pull_pid_from_list): Rename status to statusp.
117 (my_waitpid): Likewise.
118
36374493
DE
1192010-08-27 Doug Evans <dje@google.com>
120
121 * dwarf2read.c (dw2_require_line_header): Read from .debug_types
122 as appropriate.
123
8b93c54c
TT
1242010-08-27 Tom Tromey <tromey@redhat.com>
125
126 * dwarf2read.c (dwarf2_attach_fields_to_type): Don't set
127 TYPE_FIELD_IGNORE_BITS.
128
16be1145
DE
1292010-08-27 Doug Evans <dje@google.com>
130
131 * dwarf2read.c (dwarf2_per_objfile_free): Reorganize buffers to match
132 the order they're defined in. munmap .debug_types buffer.
133
e254ef6a
DE
1342010-08-26 Doug Evans <dje@google.com>
135
136 * dwarf2read.c (dw2_require_full_path): Rename parameter cu to per_cu.
137 (dw2_forget_cached_source_info): Rename local cu to per_cu.
138 (dw2_lookup_symtab, dw2_do_expand_symtabs_matching): Ditto.
139 (dw2_print_stats, dw2_expand_all_symtabs): Ditto.
140 (dw2_expand_symtabs_with_filename, dw2_find_symbol_file): Ditto.
141 (dw2_find_symbol_file, dw2_expand_symtabs_matching): Ditto.
142 (dw2_map_symbol_filenames, dwarf2_initialize_objfile): Ditto.
143 (dwarf2_free_objfile, write_one_signatured_type): Ditto.
144 (write_psymtabs_to_index): Ditto.
145
ae53ffa4
PA
1462010-08-26 Pedro Alves <pedro@codesourcery.com>
147
148 * NEWS: Mention libthread_db debugging with core files.
149
c6da4cef
DE
1502010-08-26 Doug Evans <dje@google.com>
151
152 * dwarf2read.c (dwarf2_build_include_psymtabs): Remove unnecessary
153 forward decl. Pass pst->dirname to dwarf_decode_lines.
154 (psymtab_include_file_name): New function.
155 (dwarf_decode_lines): Call it. Update comments.
156
cd02d79d
PA
1572010-08-25 Pedro Alves <pedro@codesourcery.com>
158
159 * dwarf2read.c (inherit_abstract_dies): Handle origin die's
160 compilation unit being different from target die's.
161
673bfd45
DE
1622010-08-24 Doug Evans <dje@google.com>
163
164 PR symtab/11942
165 * dwarf2read.c (dwarf2_per_objfile): New members debug_info_type_hash,
166 debug_types_type_hash.
167 (dwarf2_cu, dwarf2_per_cu_data): Delete member type_hash.
168 All uses updated.
169 (lookup_die_type): Renamed from tag_type_to_tag. First look in
170 appropriate type_hash table. All callers updated.
171 (allocate_signatured_type_table): Renamed from
172 allocate_signatured_type_hash_table. All callers updated.
173 (create_signatured_type_table_from_index): Renamed from
174 create_signatured_type_hash_from_index. All callers updated.
175 (read_die_type): Add comment. Move actual reading to ...
176 (read_die_type_1): ... here. New function.
177 (follow_die_ref_or_sig): Tweak comment.
178 (set_die_type): Rewrite to use appropriate choice of
179 debug_info_type_hash or debug_types_type_hash.
180 (get_die_type_at_offset): New function.
181 (get_die_type): Call it.
182
e8fd65ef
JK
1832010-08-24 Jan Kratochvil <jan.kratochvil@redhat.com>
184
185 * python/py-type.c (typy_richcompare): Initialize worklist.
186
9779414d
DJ
1872010-08-24 Daniel Jacobowitz <dan@codesourcery.com>
188 Kazu Hirata <kazu@codesourcery.com>
189 Jonathan Larmour <jifl@eCosCentric.com>
190
191 * arm-tdep.c: Include features/arm-with-m.c.
192 (arm_psr_thumb_bit): New. Update all uses of CPSR_T to
193 call this function.
194 (arm_pc_is_thumb): Add a gdbarch argument. Update all callers.
195 Check is_m after force-mode.
196 (arm_gdbarch_init): Check the binary before the target description.
197 Add check for M profile attribute. If we have an M-profile device,
198 but no target register description, use arm-with-m. Recognize the
199 new org.gnu.gdb.arm.m-profile feature and its xpsr register.
200 (_initialize_arm_tdep): Call initialize_tdesc_arm_with_m.
201 * arm-tdep.h (XPSR_T): Define.
202 (struct gdbarch_tdep): Add is_m member.
203 * features/arm-m-profile.xml, features/arm-with-m.c,
204 features/arm-with-m.xml: New files.
205
9dc481d3
DE
2062010-08-23 Doug Evans <dje@google.com>
207
208 * dwarf2read.c (read_structure_type): Add comment.
209 (read_enumeration_type): Add comment.
210 (process_enumeration_scope): Move definition of some locals
211 closer to their use.
212 (read_namespace_type): Add comment.
e71ec853 213 (set_die_type): Fix typo in comment.
9dc481d3 214
f9ffd4bb
TT
2152010-08-23 Tom Tromey <tromey@redhat.com>
216
217 PR python/11145:
218 * python/py-value.c: Include expression.h.
219 (valpy_do_cast): New function.
220 (valpy_cast): Use it.
221 (valpy_dynamic_cast): New function.
222 (valpy_reinterpret_cast): Likewise.
223 (value_object_methods): Add dynamic_cast, reinterpret_cast.
224
96f73ba5
TT
2252010-08-23 Tom Tromey <tromey@redhat.com>
226
227 PR python/11391:
228 * python/py-value.c (valpy_nonzero): Don't throw error for other
229 Value types.
230
d839c8a4
TT
2312010-08-23 Tom Tromey <tromey@redhat.com>
232
233 PR python/10676:
234 * python/py-type.c: Include bcache.h, vec.h.
235 (struct type_equality_entry): New.
236 (compare_strings): New function.
237 (check_types_equal): Likewise.
238 (check_types_worklist): Likewise.
239 (typy_richcompare): Likewise.
240 (type_object_type): Set tp_richcompare field.
241
05d0e1e7
TT
2422010-08-23 Tom Tromey <tromey@redhat.com>
243
244 PR python/10953:
245 * python/py-type.c (typy_fields): Call check_typedef.
246 (typy_template_argument): Add TRY_CATCH.
247
702c2711
TT
2482010-08-23 Tom Tromey <tromey@redhat.com>
249
250 PR python/11915:
251 * python/py-type.c (typy_array): New function.
252 (type_object_methods): Add "array".
253
4a532131
PA
2542010-08-20 Pedro Alves <pedro@codesourcery.com>
255
256 * python/python.c: Include "serial.h".
257 (gdbpy_event_fds): Change type to `struct serial *' a array from
258 int array.
259 (gdbpy_run_events): Change parameters. Use serial_readchar in
260 place of read.
261 (gdbpy_post_event): Use serial_write in place of write.
262 (gdbpy_initialize_events): Use serial_pipe instead of pipe, and
263 serial_async in place of add_file_handler.
264
58f07bae
PA
2652010-08-20 Pedro Alves <pedro@codesourcery.com>
266
267 * serial.h (gdb_pipe, serial_pipe): Declare.
268 * serial.c (serial_interface_lookup): Take a const char pointer.
269 (serial_fdopen): Rename to ...
270 (serial_fdopen_ops): ... this. Add an OPS parameter and use it.
271 Call the OPS' fdopen function if there is one.
272 (serial_fdopen): Rewrite as wrapper to serial_fdopen_ops.
273 (serial_pipe): New.
274 (struct serial_ops) <fdopen>: New field.
275
276 * ser-mingw.c (free_pipe_state):
277 (free_pipe_state): Close output on non-pex pipes.
278 (pipe_windows_fdopen): New.
279 (gdb_pipe): New.
280 (_initialize_ser_windows): Register pipe_windows_fdopen.
281 * ser-go32.c (gdb_pipe): New.
282 * ser-pipe.c (pipe_close): Close file descriptor even if there's
283 no state pointer.
284 (pipe_ops): Delete.
285 (gdb_pipe): New.
286
3da10d80
KS
2872010-08-20 Keith Seitz <keiths@redhat.com>
288
289 PR symtab/11465:
889bf7c5 290 * dwarf2read.c (struct delayed_method_info): New struct.
3da10d80
KS
291 (struct dwarf2_cu): Add vector method_list.
292 (scan_partial_symbols): Count methods for union, class, structure,
293 and interface types.
294 (add_to_method_list): New function.
295 (free_delayed_list): New function.
296 (compute_delayed_physnames): New function.
297 (process_full_comp_unit): Make a cleanup for the CU's delayed
298 physname list, compute the delayed physnames, and free the
299 the list.
300 (dwarf2_add_member_fn): For C++ and Java, delay the computation
301 of the physname until after the CU is read.
302
303 * dwarf2read.c (read_structure_type): Check if the current
304 DIE's type was already completed after dwarf2_full_name
305 was called.
889bf7c5 306
ca11e899
SS
3072010-08-19 Stan Shebs <stan@codesourcery.com>
308
309 * NEWS: Mention some additional changes.
310
4d2dc20a
TT
3112010-08-19 Tom Tromey <tromey@redhat.com>
312
313 * Makefile.in (install-python): Add DESTDIR.
314
d30f5e1f
DE
3152010-08-19 Doug Evans <dje@google.com>
316
317 PR exp/11926
318 * parser-defs.h (parse_float, parse_c_float): Declare.
319 * parse.c (parse_float, parse_c_float): New function.
320 * c-exp.y (parse_number): Call parse_c_float.
321 * objc-exp.y (parse_number): Ditto.
322 * p-exp.y (parse_number): Ditto. Use ANSI/ISO-style definition.
323 * jv-exp.y (parse_number): Call parse_float, fix suffix handling.
324
2837d59e
JB
3252010-08-19 Joel Brobecker <brobecker@adacore.com>
326
327 * psymtab.c (map_symbol_filenames_psymtab): Call FUN with
328 the arguments in the correct order.
329 * symtab.c (maybe_add_partial_symtab_filename): Declare
330 the arguments in the correct order.
331
35633fef
JK
3322010-08-19 Jan Kratochvil <jan.kratochvil@redhat.com>
333
334 * varobj.c (varobj_create): Replace variable old_fi with old_id,
335 initialize it by null_frame_id, wrap its usage by get_frame_id,
336 frame_id_p and frame_find_by_id.
337
94f7449c
TT
3382010-08-18 Tom Tromey <tromey@redhat.com>
339
340 PR python/11900:
341 * configure: Rebuild.
342 * configure.ac: Add install-python to CONFIG_INSTALL.
343 * Makefile.in (install-python): New.
344
f3574227
DE
3452010-08-18 Doug Evans <dje@google.com>
346
347 * gdb_assert.h (gdb_assert_not_reached): New macro.
348 (gdb_assert_fail): Fix typo in comment.
349 * avr-tdep.c (avr_return_value): Use gdb_assert_not_reached instead of
350 gdb_assert (0).
351 * darwin-nat.c (darwin_check_new_threads): Ditto.
352 * dwarf2read.c (dwarf2_get_section_info): Ditto.
353 (munmap_section_buffer): Ditto.
354 * m32c-tdep.c (make_types): Ditto.
355 (m32c_decode_srcdest4, m32c_decode_sd23, m32c_frame_base): Ditto.
356 * macroexp.c (get_character_constant): Ditto.
357 (get_string_literal): Ditto.
358 * mep-tdep.c (mep_pseudo_cr_size): Ditto.
359 (mep_pseudo_cr_index, mep_register_type): Ditto.
360 (mep_pseudo_register_read, mep_pseudo_register_write): Ditto.
361 (mep_get_insn, mep_analyze_prologue): Ditto.
362 * objfiles.c (qsort_cmp): Ditto.
363 * prologue-value.c (pv_is_identical): Ditto.
364 * record.c (record_get_loc): Ditto.
365 * value.c (value_static_field): Ditto.
366 * xtensa-tdep.c (call0_track_op): Ditto.
367
c92817ce
TT
3682010-08-18 Tom Tromey <tromey@redhat.com>
369
370 PR symtab/11919:
371 * gdbtypes.c (lookup_struct_elt_type): Clean up error emission.
372 * parse.c (parse_field_expression): Use RETURN_MASK_ERROR. Move
373 name-copying lower. Document exception behavior.
374 * completer.c (expression_completer): Catch exceptions from
375 parse_field_expression.
376
856d6f99
PA
3772010-08-18 Pedro Alves <pedro@codesourcery.com>
378
379 PR corefile/8210
380
381 * linux-thread-db.c (add_thread_db_info): Skip glibc/BZ5983
382 workaround on core files.
383 (try_thread_db_load_1): Don't try enabling thread event reporting
384 on core files.
385 (thread_db_load): Allow thread_db on core files.
386 (attach_thread): Don't check thread signals on core files, nor try
387 really attaching to the thread, nor enabling thread event event
388 reporting.
389 (thread_db_detach): Don't try disabing thread event reporting or
390 removing thread event breakpoints when debugging a core file.
391 (find_new_threads_callback): Don't try enabling thread event
392 reporting on core files.
393 (thread_db_find_new_threads_2): Don't look for a stopped lwp when
394 debugging a core file.
395 (thread_db_find_new_threads): Don't update thread
396 cores (processors) when debugging a core (dump).
397
261b8d08
PA
3982010-08-18 Pedro Alves <pedro@codesourcery.com>
399
400 PR corefile/8210
401
402 * corelow.c (add_to_thread_list): Don't use
403 gdbarch_core_reg_section_encodes_pid. Use bfd_core_file_pid.
404 (get_core_register_section): Don't use
405 gdbarch_core_reg_section_encodes_pid.
406
407 * gdbarch.sh (core_reg_section_encodes_pid): Delete.
408 * gdbarch.h, gdbarch.c: Regenerate.
409 * amd64-sol2-tdep.c (amd64_sol2_init_abi): Don't set
410 gdbarch_core_reg_section_encodes_pid.
411 * i386-sol2-tdep.c (i386_sol2_init_abi): Ditto.
412 * sparc-sol2-tdep.c (sparc32_sol2_init_abi): Ditto.
413 * sparc64-sol2-tdep.c (sparc64_sol2_init_abi): Ditto.
414
f9b42018
YQ
4152010-08-18 Yao Qi <yao@codesourcery.com>
416
417 * MAINTAINERS : Add myself under Write After Approval.
418
def98928
TT
4192010-08-17 Tom Tromey <tromey@redhat.com>
420
421 * NEWS: Mention template parameter support.
422
0807b50c
PA
4232010-08-17 Pedro Alves <pedro@codesourcery.com>
424
425 PR breakpoints/11371
426
427 * breakpoint.c (decref_bp_location): Assert the reference count is
428 sane.
429
f431efe5
PA
4302010-08-17 Pedro Alves <pedro@codesourcery.com>
431
432 PR breakpoints/11371
433
434 * breakpoint.c (breakpoint_init_inferior): Decrement the
435 location's reference count instead of deleting right away.
436 (bpstat_free): Decrement the location's reference count. Make
437 static.
438 (bpstat_copy): Increment the location's reference count.
439 (bpstat_find_breakpoint): Adjust.
440 (bpstat_num): Adjust.
441 (print_it_typical): Adjust. Use the breakpoint pointer in the
442 bpstat instead of the location's owner.
443 (bpstat_alloc): Remove const qualifier from the 'bl' parameter.
444 Adjust to record the location's owner in the bpstat.
445 (watchpoint_check): Use the breakpoint pointer in the bpstat
446 instead of the location's owner.
447 (bpstat_check_breakpoint_conditions): Don't handle
448 bp_watchpoint_scope here. Use the breakpoint pointer in the
449 bpstat instead of the location's owner.
450 (bpstat_stop_status): Defer inferior function calls to after
451 building the bpstat list. Handle bp_watchpoint_scope here. Use
452 the breakpoint pointer in the bpstat instead of the location's
453 owner.
454 (bpstat_what): Use the breakpoint pointer in the bpstat instead of
455 the location's owner.
456 (free_bp_location): Don't walk bpstats clearing locations.
457 (incref_bp_location): New.
458 (decref_bp_location): New.
459 (breakpoint_auto_delete): Use the breakpoint pointer in the bpstat
460 instead of the location's owner.
461 (update_global_location_list): Clear the location's owner, and
462 decrement the location's reference count instead of deleting it
463 right away.
464 (breakpoint_retire_moribund): Decrement the location's reference
465 count instead of deleting it right away.
466 (bpstat_remove_bp_location): Delete.
467 (bpstat_remove_breakpoint): New.
468 (bpstat_remove_bp_location_callback): Delete.
469 (bpstat_remove_breakpoint_callback): New.
470 (delete_breakpoint): Iterate over all threads' stop_bpstat's
471 clearing references to the breakpoint that is being deleted.
472
473 * breakpoint.h (struct bp_location) <refc>: New field.
474 <owner>: Update comments.
475 (bpstat_free): Delete declaration.
476 (struct bpstats): Change the type of the breakpoint_at field to
477 struct breakpoint point, from struct bp_location pointer. Add new
478 field bp_location_at.
479
14c0d4e1
TT
4802010-08-16 Tom Tromey <tromey@redhat.com>
481
482 * NEWS: Fix typo.
483
b56df873
TT
4842010-08-16 Tom Tromey <tromey@redhat.com>
485
486 * NEWS: Mention watch -location.
487
d63d0675
JK
4882010-08-16 Jan Kratochvil <jan.kratochvil@redhat.com>
489
490 * breakpoint.c (update_watchpoint): Add source empty line. Prefer
491 EXP_STRING_REPARSE to EXP_STRING.
492 (watch_command_1): Set also EXP_STRING_REPARSE.
493 (delete_breakpoint): Free also EXP_STRING_REPARSE.
494 * breakpoint.h (struct breakpoint): New field exp_string_reparse.
495 Update comment for exp_string.
496
06a64a0b
TT
4972010-08-16 Tom Tromey <tromey@redhat.com>
498
499 * value.c (release_value): Clear 'next' pointer.
500 * breakpoint.c (watch_command_1): Add 'just_location' argument.
501 (watch_command_wrapper): Update.
502 (watch_maybe_just_location): New function.
503 (watch_command): Update.
504 (rwatch_command_wrapper): Update.
505 (rwatch_command): Update.
506 (awatch_command_wrapper): Update.
507 (awatch_command): Update.
508 (check_for_argument): New function.
509 (_initialize_breakpoint): Update help text.
510
f96b8fa0
UW
5112010-08-14 Ulrich Weigand <uweigand@de.ibm.com>
512
513 * arm-tdep.c (arm_push_dummy_call): Handle pointers to
514 typedef'ed function types correctly.
515
4eb54052
TT
5162010-08-13 Tom Tromey <tromey@redhat.com>
517
518 * python/python-internal.h (gdbpy_get_hook_function): Don't
519 declare.
520
44be957e
JK
5212010-08-13 Jan Kratochvil <jan.kratochvil@redhat.com>
522
523 * cli-logging.c (logging_overwrite, logging_redirect): Make them
524 static.
525
76d8b686
KW
5262010-08-13 Ken Werner <ken.werner@de.ibm.com>
527
528 * python/python.c (gdbpy_solib_name): Remove the const qualifier of
529 the format strings to be compatible with Python 2.4.
530
8dedea02
VP
5312010-08-13 Vladimir Prus <vladimir@codesourcery.com>
532
533 Easier and more stubborn MI memory read commands.
534
535 * mi/mi-cmds.c (mi_cmds): Register data-read-memory-bytes
536 and data-write-memory-bytes.
537 * mi/mi-cmds.h (mi_cmd_data_read_memory_bytes)
538 (mi_cmd_data_write_memory_bytes): New.
539 * mi/mi-main.c (mi_cmd_data_read_memory): Use regular target_read.
540 (mi_cmd_data_read_memory_bytes, mi_cmd_data_write_memory_bytes):
541 New.
542 (mi_cmd_list_features): Add "data-read-memory-bytes" feature.
543 * target.c (target_read_until_error): Remove.
544 (read_whatever_is_readable, free_memory_read_result_vector)
545 (read_memory_robust): New.
546 * target.h (target_read_until_error): Remove.
547 (struct memory_read_result, free_memory_read_result_vector)
548 (read_memory_robust): New.
549
1d9ec526
HZ
5502010-08-13 Hui Zhu <teawater@gmail.com>
551
552 * dwarf2read.c (load_partial_comp_unit): Initialize free_cu_cleanup.
553 (read_comp_unit): Initialize back_to.
554
98bfdba5
PA
5552010-08-12 Daniel Jacobowitz <dan@codesourcery.com>
556 Pedro Alves <pedro@codesourcery.com>
557
558 * dwarf2read.c: Include "c-lang.h" and "valprint.h".
559 (struct dwarf2_per_objfile) <reading_partial_symbols>: New field.
560 (struct partial_die_info) <has_template_arguments>: New field.
561 <num_attrs>: Change type to unsigned char.
562 <building_fullname>: New field.
563 (dwarf2_build_psymtabs_hard): Set reading_partial_symbols. Only
564 allocate a CU if we don't have one already. Add a cleanup for the
565 CU.
566 (partial_die_full_name): Handle template arguments not in
567 DW_AT_name.
568 (dwarf2_psymtab_to_symtab): Clear reading_partial_symbols.
569 (load_full_comp_unit): Only allocate a CU if we don't have one
570 already.
571 (do_ui_file_peek_last): New.
572 (dwarf2_compute_name): Handle template parameters not in
573 DW_AT_name.
574 (read_comp_unit): Read and free abbrevs if not read yet.
575 (load_partial_dies): Handle template arguments not in DW_AT_name.
576 (find_partial_die): If we have a CU, but no a partial dies yet,
577 also read in the CU.
578 (dwarf2_const_value_attr): New, abstracted out from
579 dwarf2_const_value.
580 (dwarf2_const_value, dwarf2_const_value_data): Adjust to use
581 dwarf2_const_value_attr.
582 (determine_prefix): Detect and break loops created by RCVT's debug
583 info.
584 (maybe_queue_comp_unit): Bail out early if reading partial
585 symbols.
586 (follow_die_offset): Load full CU if we have no dies.
587 * dwarf2loc.c (dwarf2_evaluate_loc_desc): Make public.
588 * dwarf2loc.h (dwarf2_evaluate_loc_desc): Declare.
589
ca5c20b6 5902010-08-11 Tom Tromey <tromey@redhat.com>
889bf7c5 591 Phil Muldoon <pmuldoon@redhat.com>
ca5c20b6
PM
592
593 * python/python.c (gdbpy_run_events): New function.
594 (gdbpy_post_event): Likewise.
595 (gdbpy_initialize_events): Likewise.
596 (_initialize_python): Call gdbpy_initialize_events.
597
7346b668
KW
5982010-08-11 Ken Werner <ken.werner@de.ibm.com>
599
600 * gdb/valarith.c (vector_binop): New function.
601 (scalar_binop): Likewise.
602 (value_binop): Call scalar_binop or vector_binop depending on the types.
603 * gdb/eval.c (ptrmath_type_p): Return 0 in case of TYPE_VECTOR.
604 (evaluate_subexp_with_coercion): Add vector check to not convert vectors
605 to pointers.
606 * gdb/value.c (coerce_array): Add vector check to not coerce vectors.
607
62183e15
TT
6082010-08-11 Brad Roberts <braddr@puremagic.com>
609
610 * d-lang.c (extract_identifiers): Handle multiple digits.
611
39d7b0e2
JK
6122010-08-11 Jan Kratochvil <jan.kratochvil@redhat.com>
613
614 Code cleanup.
615 * dummy-frame.c (dummy_frame_unwinder): Remove its static qualifier.
616 Rename to dummy_frame_unwind.
617 (dummy_frame_unwind): Remove.
618 * dummy-frame.h (dummy_frame_unwind): Reference directly the struct.
619 * frame-unwind.c (frame_unwind_init): Use address of
620 dummy_frame_unwind and inline_frame_unwind.
621 * frame.c (create_sentinel_frame): Use address of
622 sentinel_frame_unwind.
623 * inline-frame.c (inline_frame_unwinder): Rename to
624 inline_frame_unwind.
625 (inline_frame_unwind): Remove.
626 * inline-frame.h (inline_frame_unwind): Reference directly the struct.
627 * sentinel-frame.c (sentinel_frame_unwinder): Rename to
628 sentinel_frame_unwind.
629 (sentinel_frame_unwind): Remove.
630 * sentinel-frame.h (sentinel_frame_unwind): Reference directly the
631 struct.
632
9f9a8002
JK
6332010-08-11 Jan Kratochvil <jan.kratochvil@redhat.com>
634
635 Code cleanup.
636 * frame-unwind.c (frame_unwind_find_by_frame): Remove the return type
637 and returned value. New comment from frame-unwind.h.
638 * frame-unwind.h (frame_unwind_find_by_frame): Remove the return type.
639 Extend the comment.
640 * frame.c (get_frame_id, frame_unwind_register_value)
641 (create_new_frame, get_prev_frame_1, frame_unwinder_is)
642 (get_frame_type, frame_unwind_arch): Do not use the return value of
643 frame_unwind_find_by_frame.
644
cb2e07a6 6452010-08-11 Phil Muldoon <pmuldoon@redhat.com>
889bf7c5 646 Thiago Jung Bauermann <bauerman@br.ibm.com>
cb2e07a6
PM
647 Tom Tromey <tromey@redhat.com>
648
649 * python/python.c (gdbpy_solib_address): New function.
650 (gdbpy_decode_line): Likewise.
651
c29c521f
TT
6522010-08-10 Tom Tromey <tromey@redhat.com>
653
654 Revert gdb-add-index addition:
655 * Makefile.in (install-only): Don't install gdb-add-index.
656 * gdb-add-index.sh: Remove.
657
0c012db1
KB
6582010-08-09 Kevin Buettner <kevinb@redhat.com>
659
660 * remote-sim.c (gdbsim_xfer_inferior_memory): Replace
661 `target_has_execution' check with `to_has_memory' check.
662 (gdbsim_has_all_memory, gdbsim_has_memory): New functions.
663 (init_gdbsym_ops): Initialize relevant fields of `gdbsim_ops'
664 with `gdbsim_has_all_memory' and `gdbsim_has_memory'.
665
db04efe6
KB
6662010-08-09 Kevin Buettner <kevinb@redhat.com>
667
668 * remote-sim.c (program_loaded, gdbsim_desc, remote_sim_ptid)
669 (resume_siggnal, resume_step): Move these static globals...
670 (struct sim_inferior_data): ...into this new struct.
671 (sim_inferior_data_key, next_pid, sim_argv, gdbsim_is_open):
672 New static globals.
673 (gdb_callback, callbacks_initialized): Move these globals to
674 a point earlier in the file.
675 (check_for_duplicate_sim_descriptor, get_sim_inferior_data)
676 (get_sim_inferior_data_by_ptid, sim_inferior_data_cleanup)
677 (gdbsim_close_inferior, gdbsim_resume_inferior)
678 (gdbsim_stop_inferior): New functions.
679 (SIM_INSTANCE_NOT_NEEDED, SIM_INSTANCE_NEEDED, INITIAL_PID):
680 New constants.
681 (gdbsim_fetch_register, gdbsim_store_register, gdbsim_load)
682 (gdbsim_create_inferior, gdbsim_open, gdbsim_close, gdbsim_resume)
683 (gdbsim_stop, gdbsim_cntrl_c, gdbsim_wait)
684 (gdbsim_xfer_inferior_memory, gdbsim_files_info)
685 (gdbsim_mourn_inferior, simulator_command, gdbsim_thread_alive,
686 (gdbsim_pid_to_str): Invoke `get_sim_inferior_data' to set
687 new local variable `sim_data' in each of these functions. Use
688 `sim_data' to reference former globals `program_loaded',
689 `gdbsim_desc', `remote_sim_ptid', `resume_siggnal', and
690 `resume_step'.
691 (gdbsim_open): Remove local variable `argv'. Put results of call
692 to `gdb_buildargv' in `sim_argv' rather than in `argv'. Don't
693 make a cleanup for it. Free it though when a sim instance cannot
694 be obtained.
695 (gdbsim_close): Free sim_argv and null it out as appropriate.
696 Close sim instances in all inferiors.
697 (gdbsim_cntrl_c): Stop all inferiors.
698 (gdbsim_wait):
699 (_initialize_remote_sim): Initialize `sim_inferior_data_key'.
700
e37fd15a
SW
7012010-08-09 Sami Wagiaalla <swagiaal@redhat.com>
702
703 * dwarf2read.c (new_symbol): Add symbol to variable list at end of
704 function after symbol construction is complete.
705 Do the same for template symbol addition to template_symbols list.
706
45c58896
SW
7072010-08-09 Sami Wagiaalla <swagiaal@redhat.com>
708
709 * symtab.c (symbol_get_demangled_name): Remove assertion and
710 return NULL when language_specific.cplus_specific is not initialized.
711 * stabsread.c (define_symbol): Set the name before calling
712 cp_scan_for_anonymous_namespaces.
713
33e5013e
SW
7142010-08-09 Sami Wagiaalla <swagiaal@redhat.com>
715
716 * symtab.h: Renamed SYMBOL_INIT_LANGUAGE_SPECIFIC to
717 SYMBOL_SET_LANGUAGE.
718 (symbol_init_language_specific): Renamed to symbol_set_language.
719 * symtab.c (symbol_init_language_specific): Removed redundant check
720 for language_cplus.
721 Renamed to symbol_set_language.
722 * stabsread.c (define_symbol): Updated.
723 (read_enum_type): Updated
724 * psymtab.c (add_psymbol_to_bcache): Updated.
725 * minsyms.c (install_minimal_symbols): Updated.
726 * coffread.c (process_coff_symbol): SYMBOL_SET_LANGUAGE instead of
727 SYMBOL_LANGUAGE to set the language.
728 * minsyms.c (prim_record_minimal_symbol_full): Ditto.
729 * mdebugread.c (new_symbol): Ditto.
730 * cp-namespace.c (check_one_possible_namespace_symbol): Ditto.
731 * dwarf2read.c (new_symbol_full): Ditto.
732 * jv-lang.c (add_class_symbol): Ditto.
733
5da1313b
JK
7342010-08-07 Jan Kratochvil <jan.kratochvil@redhat.com>
735
736 * defs.h (make_cleanup_restore_uinteger, make_cleanup_restore_ui_file)
737 (make_cleanup_restore_page_info)
738 (set_batch_flag_and_make_cleanup_restore_page_info): New declarations.
739 * gdbcmd.h (execute_command_to_string): New declaration.
740 * python/python.c (struct restore_ui_file_closure, restore_ui_file)
741 (make_cleanup_restore_ui_file): Move to utils.c
742 (execute_gdb_command) <to_string>: Move ...
743 * top.c (execute_command_to_string): ... here. Call
744 set_batch_flag_and_make_cleanup_restore_page_info.
745 * utils.c (make_cleanup_restore_integer): New source file blank line.
746 (make_cleanup_restore_uinteger): New.
747 (struct restore_ui_file_closure, do_restore_ui_file)
748 (make_cleanup_restore_ui_file): Move here from python/python.c.
749 (init_page_info) <batch_flag>
750 (do_restore_page_info_cleanup, make_cleanup_restore_page_info)
751 (set_batch_flag_and_make_cleanup_restore_page_info): New.
752
c820c52a
PA
7532010-08-06 Maciej W. Rozycki <macro@codesourcery.com>
754
755 * thread.c (add_thread_silent): Use null_ptid instead of
756 minus_one_ptid while getting rid of stale inferior_ptid.
757
8da614df
CV
7582010-08-06 Corinna Vinschen <vinschen@redhat.com>
759
760 * dwarf2-frame.c (struct dwarf2_cie): Add ptr_size member.
761 Throughout, call read_encoded_value with ptr_size rather than addr_size.
762 (decode_frame_entry_1): Remove redundant setting of
763 addr_size. Call gdbarch_dwarf2_addr_size rather than gdbarch_ptr_bit
764 to determine addr_size in Dwarf versions < 4. Set ptr_size dependent
765 on examined frame section. Add comment to explain why.
766 * gdbarch.sh (dwarf2_addr_size): Define as variable. Add lengthy
767 comment to explain usage.
768 * gdbarch.c: Regenerate.
769 * gdbarch.h: Regenerate.
770
771 * xstormy16-tdep.c (xstormy16_gdbarch_init): Set dwarf2_addr_size to 4.
772
e4195b40
JK
7732010-08-06 Jan Kratochvil <jan.kratochvil@redhat.com>
774
775 Code cleanup.
776 * varobj.c (varobj_create): Move variables fi, old_fi and block to
777 a more inner block.
778
a3217aa0
PA
7792010-08-05 Pedro Alves <pedro@codesourcery.com>
780
781 * configure.tgt (alpha*-*-linux*, am33_2.0*-*-linux*, frv-*-*)
782 (hppa*-*-linux*, ia64-*-linux*, m32r*-*-linux*, m68*-*-linux*)
783 (microblaze*-linux-*, mips*-*-linux*, sh*-*-linux*)
784 (sparc-*-linux*, sparc64-*-linux*, xtensa*-*-linux*): Add
785 linux-tdep.o to gdb_target_obs.
786
e2b4a699 7872010-08-05 Marc Khouzam <marc.khouzam@ericsson.com>
889bf7c5
PA
788
789 * mi/mi-main.c (mi_cmd_remove_inferior): Properly access first
e2b4a699 790 argument.
889bf7c5 791
50e8a0d5
HZ
7922010-08-05 Hui Zhu <teawater@gmail.com>
793
794 * mips-linux-tdep.c(regset.h): New include.
795 (mips_supply_gregset_wrapper, mips_fill_gregset_wrapper,
796 mips_supply_fpregset_wrapper, mips_fill_fpregset_wrapper,
797 mips64_supply_gregset_wrapper, mips64_fill_gregset_wrapper,
798 mips64_supply_fpregset_wrapper, mips64_fill_fpregset_wrapper,
799 mips_linux_regset_from_core_section): New functions.
800 (fetch_core_registers, regset_core_fns): Deleted.
801 (mips_linux_init_abi): Add mips_linux_regset_from_core_section.
802 Deleted regset_core_fns.
803 * mips-tdep.c(mips_gdbarch_init): Initialize tdep->gregset,
804 tdep->gregset64, tdep->fpregset and tdep->fpregset64.
805 * mips-tdep.h(gdbarch_tdep): Add gregset, gregset64, fpregset
806 and fpregset64.
807
70728992
PA
8082010-08-04 Pedro Alves <pedro@codesourcery.com>
809
810 * s390-tdep.c: Include linux-tdep.h.
811 (s390_gdbarch_init): Call linux_init_abi.
812
a5ee0f0c
PA
8132010-08-04 Pedro Alves <pedro@codesourcery.com>
814
815 * corelow.c (core_pid_to_str): Default to using normal_pid_to_str
816 instead of printing "Thread" here.
817 * linux-tdep.c: Include inferior.h.
818 (linux_core_pid_to_str): New.
819 (linux_init_abi): New.
820 * linux-tdep.h (linux_init_abi): Declare.
821 * alpha-linux-tdep.c: Include linux-tdep.h.
822 (alpha_linux_init_abi): Call linux_init_abi.
823 * amd64-linux-tdep.c (amd64_linux_init_abi): Call linux_init_abi.
824 * arm-linux-tdep.c (arm_linux_init_abi): Call linux_init_abi.
825 * frv-linux-tdep.c: Include linux-tdep.h
826 (frv_linux_init_abi): Call linux_init_abi.
827 * hppa-linux-tdep.c: Include linux-tdep.h
828 (hppa_linux_init_abi): Call linux_init_abi.
829 * i386-linux-tdep.c (i386_linux_init_abi): Call linux_init_abi.
830 * ia64-linux-tdep.c: Include linux-tdep.h.
831 (ia64_linux_init_abi): Call linux_init_abi.
832 * m32r-linux-tdep.c: Include linux-tdep.h.
833 (m32r_linux_init_abi): Call linux_init_abi.
834 * m68klinux-tdep.c: Include linux-tdep.h.
835 (m68k_linux_init_abi): Call linux_init_abi.
836 * microblaze-linux-tdep.c: Include linux-tdep.h.
837 (microblaze_linux_init_abi): Call linux_init_abi.
838 * mips-linux-tdep.c: Include linux-tdep.h.
839 (mips_linux_init_abi): Call linux_init_abi.
840 * mn10300-linux-tdep.c: Include linux-tdep.h.
841 (am33_linux_init_osabi): Call linux_init_abi. Rename the
842 'gdbinfo' parameter to 'info'.
843 * ppc-linux-tdep.c: Include linux-tdep.h.
844 (ppc_linux_init_abi): Call linux_init_abi.
845 * sh-linux-tdep.c: Include linux-tdep.h.
846 (sh_linux_init_abi): Call linux_init_abi.
847 * sparc-linux-tdep.c: Include linux-tdep.h.
848 (sparc32_linux_init_abi): Call linux_init_abi.
849 * sparc64-linux-tdep.c: Include linux-tdep.h.
850 (sparc64_linux_init_abi): Call linux_init_abi.
851 * xtensa-linux-tdep.c: Include linux-tdep.h.
852 (xtensa_linux_init_abi): Call linux_init_abi.
853 * i386-cygwin-tdep.c (i386_windows_core_pid_to_str): New.
854 (i386_cygwin_init_abi): Install it as gdbarch_core_pid_to_str
855 callback.
856
bc043ef3
DE
8572010-08-03 Doug Evans <dje@google.com>
858
859 * breakpoint.c (bpdisp_text): Constify bpdisps.
860 * solib-svr4.c (solib_break_names): Constify.
861 (bkpt_names, main_name_list): Constify.
862 (match_main): Constify soname arg.
63cdd227
DE
863 (bfd_lookup_symbol): Remove unnecessary forward decl.
864 Constify symname arg.
bc043ef3
DE
865 (enable_break): Constify bkpt_namep.
866 * symtab.c (search_symbols): Constify types, types2, types3, types4.
867 (symtab_symbol_info): Constify classnames.
868
585d1eb8
PM
8692010-08-03 Phil Muldoon <pmuldoon@redhat.com>
870
871 * NEWS: Document Python value inferior function calls.
872
2de00c64
DE
8732010-08-02 Doug Evans <dje@google.com>
874
875 * dwarf2read.c (dwarf_attr_name): Add DW_AT_GNU_odr_signature.
876
02d868e8
PP
8772010-07-31 Paul Pluzhnikov <ppluzhnikov@google.com>
878
879 * linux-thread-db.c (libthread_db_debug): New variable.
880 (thread_db_find_new_threads_silently): Control verbosity with it.
881 (try_thread_db_load_1, try_thread_db_load): Likewise.
882 (find_new_threads_once): Likewise.
883 (_initialize_thread_db): Set/show it.
884
a19cae16
JK
8852010-07-31 Jan Kratochvil <jan.kratochvil@redhat.com>
886
887 * common/signals.c (signals): Move the content to signals.def.
888 Include it. Remove the INDENT comments.
889
c2bbed2a
TT
8902010-07-30 Tom Tromey <tromey@redhat.com>
891
892 * Makefile.in (install-only): Install gdb-add-index.
893 * gdb-add-index.sh: New file.
894
f32b2f09
CR
8952010-07-31 Renquan Cheng <crq@gcc.gnu.org>
896
897 * MAINTAINERS: Add myself for write after approval privileges.
898
1276c759
JK
8992010-07-30 Jan Kratochvil <jan.kratochvil@redhat.com>
900
901 * symfile.c (addr_section_name): New function.
902 (addrs_section_compar): Use it.
903 (addr_info_make_relative): Use it. Move variable sect_name into a more
904 inner block. Make ".dynbss" and ".sdynbss" checks more strict.
905
420697bb
TT
9062010-07-30 Tom Tromey <tromey@redhat.com>
907
908 * configure: Rebuild.
909 * configure.ac: Add missing case for Python 2.7.
910
d0d99561
DD
9112010-07-29 DJ Delorie <dj@redhat.com>
912
913 * rx-tdep.c (rx_analyze_prologue): Don't require branches to have
914 conditions.
915
0b29bdde
PA
9162010-07-29 Pedro Alves <pedro@codesourcery.com>
917
918 * PROBLEMS: Remove mention of all problems.
919
110ed339
PA
9202010-07-28 Pedro Alves <pedro@codesourcery.com>
921
922 PR build/11848
923 * configure.ac: Check for wresize.
924 * configure, config.in: Regenerate.
925 * tui/tui-win.c (make_visible_with_new_height): Wrap wresize call
926 with HAVE_WRESIZE.
927
326fd672
TT
9282010-07-28 Tom Tromey <tromey@redhat.com>
929
930 PR python/11060:
931 * python/py-type.c (typy_legacy_template_argument): New function,
932 extracted from typy_template_argument.
933 (typy_template_argument): Use TYPE_TEMPLATE_ARGUMENT. Return a
934 value when needed.
935
4ac8c4da
TT
9362010-07-28 Oleg Nesterov <oleg@redhat.com>
937
938 * remote.c (readchar): Call pop_target in case of SERIAL_ERROR.
939
053315c2
TT
9402010-07-27 Tom Tromey <tromey@redhat.com>
941
942 * dwarf2read.c (dwarf2_const_value_data): Never sign extend.
943
3ce3b1ba
PA
9442010-07-28 Daniel Jacobowitz <dan@codesourcery.com>
945
946 * dwarf2read.c (read_subroutine_type): Improve THIS detection,
947 handling DW_AT_object_pointer, and workaround GCC PR 43053.
948
2bb4f988
TT
9492010-07-28 Tom Tromey <tromey@redhat.com>
950
951 * Makefile.in (HFILES_NO_SRCDIR): Remove link-warning.h.
952
74232302
JB
9532010-07-28 Joel Brobecker <brobecker@adacore.com>
954
955 * remote.c (remote_download_tracepoint): Add missing gettext markup.
956 * tracepoint.c (parse_static_tracepoint_marker_definition): Likewise.
957
385d04dc
JB
9582010-07-28 Joel Brobecker <brobecker@adacore.com>
959
960 * breakpoint.c (breakpoint_re_set_one): Move call to set_language
961 down, just before the block that parse the breakpoint addr_string.
962
34eaf542
TT
9632010-07-28 Tom Tromey <tromey@redhat.com>
964
965 PR c++/9946:
966 * symfile.c (reread_symbols): Clear template_symbols.
967 * symtab.h (struct symbol) <is_cplus_template_function>: New
968 field.
969 (SYMBOL_IS_CPLUS_TEMPLATE_FUNCTION): New macro.
970 (struct template_symbol): New.
971 * symtab.c (lookup_symbol_aux_local): Use
972 cp_lookup_symbol_imports_or_template.
973 * objfiles.h (struct objfile) <template_symbols>: New field.
974 * objfiles.c (relocate_one_symbol): New function.
975 (objfile_relocate1): Use it. Relocate isolated symbols.
976 * gdbtypes.h (struct cplus_struct_type) <n_template_arguments,
977 template_arguments>: New fields.
978 (TYPE_N_TEMPLATE_ARGUMENTS): New macro.
979 (TYPE_TEMPLATE_ARGUMENTS): Likewise.
980 (TYPE_TEMPLATE_ARGUMENT): Likewise.
981 (lookup_typename): Update.
982 * gdbtypes.c (lookup_typename): Constify "block" argument.
983 * dwarf2read.c: Include vec.h.
984 (symbolp): New typedef.
985 (read_func_scope): Read template arguments. Allocate a
986 template_symbol when needed.
987 (read_structure_type): Read template arguments.
988 (new_symbol_full): New function, from new_symbol. Handle
989 DW_TAG_template_type_param and DW_TAG_template_value_param.
990 (new_symbol): Rewrite as wrapper.
991 * cp-support.h (cp_lookup_symbol_imports_or_template): Declare.
992 * cp-namespace.c: Include language.h.
993 (search_symbol_list): New function.
994 (cp_lookup_symbol_imports_or_template): Likewise.
995
d27b3be4
PA
9962010-07-28 Balazs Kezes <rlblaster@gmail.com>
997
998 * tui/tui-win.c (make_visible_with_new_height): Resize and move
999 the command window to the new size and position.
1000
0036e657
PA
10012010-07-28 Balazs Kezes <rlblaster@gmail.com>
1002
a782f43e 1003 * tui/tui-win.c (tui_resize_all): Update the locator's origin's
0036e657
PA
1004 coordinates.
1005
36900355
PA
10062010-07-28 Balazs Kezes <rlblaster@gmail.com>
1007
a782f43e 1008 * tui/tui-io.c (tui_handle_resize_during_io): Call tui_resize_all
36900355 1009 after a detecting a resize.
a782f43e 1010 * tui/tui-win.c (tui_resize_all): Remove tui_set_win_resized_to
36900355
PA
1011 call.
1012
db5e03ae
PA
10132010-07-28 Pedro Alves <pedro@codesourcery.com>
1014
1015 * configure.ac: Check for resize_term.
1016 * configure, config.in: Regenerate.
1017
b71fff68
JB
10182010-07-27 Joel Brobecker <brobecker@adacore.com>
1019
1020 * MAINTAINERS (Write After Approval): Reorder a couple of entries.
1021
9b1c24c8
PA
10222010-07-27 Daniel Jacobowitz <dan@codesourcery.com>
1023
1024 * dwarf2read.c (read_string): Rename to ...
1025 (read_direct_string): ... this.
1026 (skip_one_die, read_attribute_value, dwarf_decode_line_header)
1027 (dwarf_decode_lines, dwarf_decode_macros): Adjust.
1028
00390b84
JK
10292010-07-27 Jan Kratochvil <jan.kratochvil@redhat.com>
1030
1031 * linux-nat.c (linux_nat_lp_status_is_event): New function.
1032 (count_events_callback, select_event_lwp_callback)
1033 (cancel_breakpoints_callback, linux_nat_wait_1): Use it.
1034
26ab7092
JK
10352010-07-27 Jan Kratochvil <jan.kratochvil@redhat.com>
1036
1037 * ia64-linux-nat.c (ia64_linux_status_is_event): New function.
1038 (_initialize_ia64_linux_nat): Install it.
1039 * linux-nat.c (sigtrap_is_event, linux_nat_status_is_event)
1040 (linux_nat_set_status_is_event): New.
1041 (stop_wait_callback, count_events_callback, select_event_lwp_callback)
1042 cancel_breakpoints_callback, linux_nat_filter_event)
1043 (linux_nat_wait_1): Use linux_nat_status_is_event.
1044 * linux-nat.h (linux_nat_set_status_is_event): New prototype.
1045
283e6a52
TT
10462010-07-27 Tom Tromey <tromey@redhat.com>
1047
1048 * NEWS: Mention labels, .gdb_index.
1049
53a71c06
CR
10502010-07-28 CHENG Renquan <rqcheng@smu.edu.sg>
1051
1052 * cli/cli-cmds.c (disassemble_command): Add support of disassemble
3422f666 1053 "start,+length" form of arguments.
53a71c06
CR
1054 * NEWS: Add "Changed commands" (disassemble) section for "Changes
1055 since GDB 7.1"; and merge two separated paragraphs of disassemble
1056 description in "Changes in GDB 7.0".
1057
c63a1f86
JK
10582010-07-27 Jan Kratochvil <jan.kratochvil@redhat.com>
1059
1060 * top.c (input_from_terminal_p): Return 0 on BATCH_FLAG.
1061 * utils.c (defaulted_query): Do not explicitly check for BATCH_FLAG.
1062 (fputs_maybe_filtered): Do not do filtering also on
1063 ! INPUT_FROM_TERMINAL_P.
1064
abebb8b0
JB
10652010-07-27 Joel Brobecker <brobecker@adacore.com>
1066
1067 * dwarf2read.c (dw2_find_pc_sect_symtab): Remove trailing newline
1068 in warning message.
1069
5374244e
PM
10702010-07-27 Phil Muldoon <pmuldoon@redhat.com>
1071
1072 * python/py-value.c (valpy_call): New Function.
1073
ac0b195c
KW
10742010-07-27 Ken Werner <ken.werner@de.ibm.com>
1075
889bf7c5 1076 * dwarf2read.c (dwarf2_read_index): Initialize the types_list and
ac0b195c
KW
1077 types_list_elements variables.
1078
09d8bd00
TT
10792010-07-26 Tom Tromey <tromey@redhat.com>
1080
1081 * dwarf2loc.c (locexpr_describe_location_piece): Also recognize
1082 TLS with DW_OP_const4u or DW_OP_const8u.
1083
9fe70b4f
TJB
10842010-07-26 Thiago Jung Bauermann <bauerman@br.ibm.com>
1085
1086 * ppc-linux-nat.c (store_vsx_register): Use PTRACE_GETVSXREGS to get
1087 VSX registers contents.
1088
caac4577
JG
10892010-07-26 Jerome Guitton <guitton@adacore.com>
1090
1091 * dwarf2read.c (add_partial_symbol): Do not add a global variable if
1092 its adress is null. Add comment to explain why.
1093 (new_symbol): Ditto.
1094
857d11d0
JK
10952010-07-25 Jan Kratochvil <jan.kratochvil@redhat.com>
1096
1097 * linux-nat.c (linux_nat_do_thread_registers): Convert STOP_SIGNAL to
1098 the host signal first.
1099
1fd400ff
TT
11002010-07-23 Tom Tromey <tromey@redhat.com>
1101
1102 * dwarf2read.c (struct dwarf2_per_objfile) <n_type_comp_units,
1103 type_comp_units>: New fields.
1104 (dw2_get_cu): New function.
1105 (create_cus_from_index): Remove unused argument.
1106 (create_signatured_type_hash_from_index): New function.
1107 (create_addrmap_from_index): Update.
1108 (dwarf2_read_index): Handle version 2.
1109 (dw2_find_last_source_symtab, dw2_forget_cached_source_info)
1110 (dw2_lookup_symtab, dw2_do_expand_symtabs_matching)
1111 (dw2_print_stats, dw2_expand_all_symtabs)
1112 (dw2_expand_symtabs_with_filename, dw2_find_symbol_file)
1113 (dw2_expand_symtabs_matching, dw2_map_symbol_filenames): Update.
1114 (dwarf2_initialize_objfile): Call create_debug_types_hash_table.
1115 (allocate_signatured_type_hash_table): New function.
1116 (add_signatured_type_cu_to_list): Likewise.
1117 (create_debug_types_hash_table): Use them. Set type_comp_units.
1118 (read_signatured_type): Ensure section data is available.
1119 (add_address_entry): Don't record empty ranges.
1120 (struct signatured_type_index_data): New.
1121 (write_one_signatured_type): New function.
1122 (write_psymtabs_to_index): Write type CUs.
1123 (save_gdb_index_command): Update comment.
1124 (process_type_comp_unit): Move inititalization of
1125 from_debug_types...
1126 (create_debug_types_hash_table): ... here.
1127
3a674486
JK
11282010-07-23 Jan Kratochvil <jan.kratochvil@redhat.com>
1129
1130 * gdb_gcore.sh (tmpfile): Remove the variable, its initialization,
1131 cleanup and generating of gdb script to it.
1132 (gdb): Use redirection from /dev/null. Use --nx. Turn off pagination
1133 and terminal size. Convert $tmpfile to a series of -ex-es.
1134
54ec275a
KS
11352010-07-23 Keith Seitz <keiths@redhat.com>
1136
1137 * symtab.c (basic_lookup_transparent_type): Call pre-expand
1138 hook for STATIC_BLOCK types, too.
1139
8fd447e6
KS
11402010-07-23 Keith Seitz <keiths@redhat.com>
1141
1142 * dwarf2read.c: Remove unused typedef dwarf2_cu_per_cu_data_ptr
1143 and vector definition.
1144
25b72dde
JK
11452010-07-23 Jan Kratochvil <jan.kratochvil@redhat.com>
1146
1147 * linux-nat.c (cancel_breakpoint): Remove unused forward declaration.
1148
96d19272
JK
11492010-07-22 Jan Kratochvil <jan.kratochvil@redhat.com>
1150
1151 * dwarf2read.c: Include completer.h.
1152 (save_gdb_index_command): Use matching usage command name.
1153 (_initialize_dwarf2_read): New variable c, initialize it by add_cmd.
1154 Set filename_completer for it.
1155
ca1f3406
TT
11562010-07-22 Tom Tromey <tromey@redhat.com>
1157
1158 * dwarf2read.c (create_debug_types_hash_table): Set objfile on
1159 type signature's per-CU data.
1160
ba25b921
PA
11612010-07-22 Pedro Alves <pedro@codesourcery.com>
1162
1163 * NEWS: Mention target reported shared libraries support by
1164 default.
1165
23bd0f7c
PA
11662010-07-21 Pedro Alves <pedro@codesourcery.com>
1167
1168 PR symtab/11827
1169
1170 Revert:
1171 2010-05-21 Pierre Muller <muller@ics.u-strasbg.fr>
1172 * dwarf2read.c (process_die): Also allow DW_TAG_const_type
1173 and DW_TAG_volatile_type.
1174 (new_symbol): Likewise.
1175
883df6dd
SW
11762010-07-21 Sami Wagiaalla <swagiaal@redhat.com>
1177
1178 * eval.c (evaluate_subexp_standard): Disabled evaluation of C++
1179 function symbols before overload resolution.
1180
269b11a2
PA
11812010-07-21 Pedro Alves <pedro@codesourcery.com>
1182
1183 * breakpoint.c (bptype_string): New, abstracted out from
1184 print_one_breakpoint_location.
1185 (print_one_breakpoint_location): Adjust.
1186 (breakpoint_1): Adjust the type column width dynamically.
1187
569b05a5
JK
11882010-07-20 Jan Kratochvil <jan.kratochvil@redhat.com>
1189
1190 * symfile.c (find_separate_debug_file_by_debuglink): Remove
1191 a gdb_assert call, new comment.
1192
ad34eb2f
JK
11932010-07-20 Jan Kratochvil <jan.kratochvil@redhat.com>
1194
1195 * linux-nat.c (linux_handle_extended_wait): Handle case when
1196 event == PTRACE_EVENT_CLONE && stopping && WSTOPSIG (status) != SIGSTOP.
1197
33355866
JK
11982010-07-20 Jan Kratochvil <jan.kratochvil@redhat.com>
1199
1200 Code cleanup.
1201 * linux-nat.c (linux_nat_wait_1): Reset STATUS after calling
1202 linux_nat_wait_1. Use always LP->STATUS afterwards.
1203
26590820
HZ
12042010-07-20 Hui Zhu <teawater@gmail.com>
1205
1206 * inf-ptrace.c (inf_ptrace_create_inferior): Initialize back_to.
1207 (inf_ptrace_attach): Ditto.
1208
c0edd9ed
JK
12092010-07-19 Jan Kratochvil <jan.kratochvil@redhat.com>
1210
1211 Make core files the process_stratum.
1212 * corefile.c (core_target): New variable.
1213 (core_file_command): Remove variable t, use core_target.
1214 * corelow.c (core_ops): Make it static.
1215 (init_core_ops): Change to process_stratum. Initialize CORE_TARGET.
1216 * defs.h (make_cleanup_unpush_target): New prototype.
1217 * gdbarch.h: Regenerate.
1218 * gdbarch.sh (core_pid_to_str): Remove core_stratum from its comment.
1219 * gdbcore.h (core_target): New declaration.
1220 * inf-ptrace.c (inf_ptrace_create_inferior, inf_ptrace_attach): New
1221 variables ops_already_pushed and back_to. Use push_target,
1222 make_cleanup_unpush_target and discard_cleanups calls.
1223 * record.c (record_open): Replace core_stratum by a core_bfd check.
1224 * target.c (target_is_pushed): New function.
1225 (find_core_target): Remove.
1226 * target.h (enum strata) <core_stratum>: Remove.
1227 (target_is_pushed): New declaration.
1228 (find_core_target): Remove declaration.
1229 * tracepoint.c (init_tfile_ops) <to_stratum>: Remove comment.
1230 * utils.c (do_unpush_target, make_cleanup_unpush_target): New functions.
1231
f02253f1
HZ
12322010-07-19 Hui Zhu <teawater@gmail.com>
1233
1234 * breakpoint.c (single_step_breakpoints_inserted): New
1235 function.
1236 * breakpoint.h (single_step_breakpoints_inserted): Extern.
1237 * infrun.c (maybe_software_singlestep): Add check code.
1238 * record.c (record_resume): Add code for software single step.
1239 (record_wait): Ditto.
1240
78768c4a
JK
12412010-07-18 Jan Kratochvil <jan.kratochvil@redhat.com>
1242
1243 * linux-nat.c (linux_handle_extended_wait): Move variable new_lp into
1244 a more inner block. Remove its unused declaration initializer.
1245
431e49aa
TJB
12462010-07-16 Thiago Jung Bauermann <bauerman@br.ibm.com>
1247
1248 * NEWS: Mention support for the new ptrace interface and hardware
1249 accelerated watchpoint conditions on powerpc-linux.
1250
bd91e7ae
OS
12512010-07-16 Ozkan Sezer <sezeroz@gmail.com>
1252
1253 * target.c (debug_to_insert_breakpoint): Instead of casting to unsigned
1254 long and %ld, use core_addr_to_string() and %s to print CORE_ADDR vars
1255 and host_address_to_string() and %s for pointers.
1256 (debug_to_remove_breakpoint): Likewise.
1257 (debug_to_region_ok_for_hw_watchpoint): Likewise.
1258 (debug_to_can_accel_watchpoint_condition): Likewise.
1259 (debug_to_stopped_data_address): Likewise.
1260 (debug_to_watchpoint_addr_within_range): Likewise.
1261 (debug_to_insert_hw_breakpoint): Likewise.
1262 (debug_to_remove_hw_breakpoint): Likewise.
1263 (debug_to_insert_watchpoint): Likewise.
1264 (debug_to_remove_watchpoint): Likewise.
1265
29df156d
SW
12662010-07-16 Sami Wagiaalla <swagiaal@redhat.com>
1267
1268 * symtab.h (symbol_set_demangled_name): Now takes an optional objfile*
1269 argument.
1270 (cplus_specific): New struct.
1271 * symtab.c (symbol_set_demangled_name): Updated.
1272 Use cplus_specific for cplus symbols.
1273 (symbol_get_demangled_name): Retrive the name from the cplus_specific
1274 struct for cplus symbols.
1275 (symbol_init_language_specific): Set cplus_specific for cplus symbols.
1276 (symbol_set_names): Pass objfile to symbol_set_demangled_name.
1277 * symtab.c (symbol_init_cplus_specific): New function.
1278
b250c185
SW
12792010-07-16 Sami Wagiaalla <swagiaal@redhat.com>
1280
1281 * symtab.h (symbol_set_demangled_name): New function.
1282 (symbol_get_demangled_name): New function.
1283 * symtab.c (symbol_set_demangled_name): New function.
1284 (symbol_get_demangled_name): New function.
1285 (symbol_init_language_specific): Use demangled_name setter and getter.
1286 (symbol_set_names): Ditto.
1287 (symbol_natural_name): Ditto.
1288 (symbol_demangled_name): Ditto.
1289 * dwarf2read.c (new_symbol): Ditto.
1290
afa16725
SW
12912010-07-16 Sami Wagiaalla <swagiaal@redhat.com>
1292
1293 * symtab.h: Renamed cplus_specific to mangled_lang.
1294 * symtab.c (symbol_init_language_specific): Updated.
1295 (symbol_set_names): Updated.
1296 (symbol_natural_name): Updated.
1297 (symbol_demangled_name): Updated.
1298 * ada-lang.c (ada_decode_symbol): Updated.
1299 * dwarf2read.c (new_symbol): Updated.
1300
3cbaedff
KW
13012010-07-14 Ken Werner <ken.werner@de.ibm.com>
1302
1303 * valops.c (value_assign): Do not call to value_coerce_to_target.
1304 (value_must_coerce_to_target): Return 0 in case of TYPE_VECTOR.
1305
c932f1be
KW
13062010-07-14 Ken Werner <ken.werner@de.ibm.com>
1307
1308 * MAINTAINERS: Add myself for write after approval privileges.
1309
91158a56
TT
13102010-07-13 Emmanuel Thomé <Emmanuel.Thome@gmail.com>
1311
1312 * c-valprint.c (c_val_print): Add embedded_offset to address in
1313 call to val_print_array_elements.
1314
b3b272e1
TT
13152010-07-13 Tom Tromey <tromey@redhat.com>
1316
1317 * dwarf2read.c (dwarf2_read_index): Correctly set 'total_size'.
1318
bb3fa9d0
TT
13192010-07-13 Tom Tromey <tromey@redhat.com>
1320
1321 * dwarf2read.c (dwarf2_per_cu_text_offset): Fix reference to
1322 objfile.
1323
dd786858
TT
13242010-07-13 Tom Tromey <tromey@redhat.com>
1325
1326 * symfile.c (set_initial_language): Update.
1327 (deduce_language_from_filename): Argument type now const.
1328 * symtab.h (find_main_filename): Update.
1329 (deduce_language_from_filename): Update.
1330 * symtab.c (find_main_filename): Make result const.
1331 * dwarf2read.c (dw2_find_symbol_file): Change return type.
1332 * psymtab.c (find_symbol_file_from_partial): Change return type.
1333 * symfile.h (struct quick_symbol_functions) <find_symbol_file>:
1334 Make result const.
1335
9291a0cd
TT
13362010-07-13 Tom Tromey <tromey@redhat.com>
1337
1338 * breakpoint.c (save_cmdlist): No longer static.
1339 * gdbcmd.h (save_cmdlist): Declare.
1340 * symfile.c (symbol_file_add_with_addrs_or_offsets): Set
1341 OBJF_READNOW on objfile if readnow_symbol_files.
1342 * elfread.c (elf_symfile_read): Use dwarf2_initialize_objfile.
1343 (elf_sym_fns_gdb_index): New global.
1344 * dwarf2read.c: Include exceptions.h.
1345 (offset_type): New.
1346 (struct mapped_index): New.
1347 (dwarf2_per_cu_data_ptr): New typedef.
1348 (struct dwarf2_per_objfile) <using_index, index_table, gdb_index>:
1349 New fields.
1350 (GDB_INDEX_SECTION): New define.
1351 (struct dwarf2_per_cu_quick_data): New.
1352 (struct dwarf2_per_cu_data) <objfile>: New field.
1353 <psymtab>: Removed.
1354 <v>: New field.
1355 (byte_swap): New function.
1356 (MAYBE_SWAP): New macro.
1357 (INDEX_SUFFIX): New macro.
1358 (dw2_do_instantiate_symtab): New function.
1359 (dw2_instantiate_symtab): Likewise.
1360 (create_cus_from_index): Likewise.
1361 (create_addrmap_from_index): Likewise.
1362 (mapped_index_string_hash): Likewise.
1363 (find_slot_in_mapped_hash): Likewise.
1364 (dwarf2_read_index): Likewise.
1365 (dw2_setup): Likewise.
1366 (dw2_require_line_header): Likewise.
1367 (dw2_require_full_path): Likewise.
1368 (dw2_find_last_source_symtab): Likewise.
1369 (dw2_forget_cached_source_info): Likewise.
1370 (dw2_lookup_symtab): Likewise.
1371 (dw2_lookup_symbol): Likewise.
1372 (dw2_do_expand_symtabs_matching): Likewise.
1373 (dw2_pre_expand_symtabs_matching): Likewise.
1374 (dw2_print_stats): Likewise.
1375 (dw2_dump): Likewise.
1376 (dw2_relocate): Likewise.
1377 (dw2_expand_symtabs_for_function): Likewise.
1378 (dw2_expand_all_symtabs): Likewise.
1379 (dw2_expand_symtabs_with_filename): Likewise.
1380 (dw2_find_symbol_file): Likewise.
1381 (dw2_map_ada_symtabs): Likewise.
1382 (dw2_expand_symtabs_matching): Likewise.
1383 (dw2_find_pc_sect_symtab): Likewise.
1384 (dw2_map_symbol_names): Likewise.
1385 (dw2_map_symbol_filenames): Likewise.
1386 (dw2_has_symbols): Likewise.
1387 (dwarf2_gdb_index_functions): New global.
1388 (dwarf2_initialize_objfile): New function.
1389 (process_psymtab_comp_unit): Update.
1390 (add_partial_subprogram): Likewise.
1391 (dwarf2_psymtab_to_symtab): Likewise.
1392 (psymtab_to_symtab_1): Use dw2_do_instantiate_symtab.
1393 (process_full_comp_unit): Update.
1394 (find_file_and_directory): New function.
1395 (read_file_scope): Use find_file_and_directory.
1396 (dwarf2_per_cu_objfile): Update.
1397 (dwarf2_per_cu_addr_size): Update.
1398 (dwarf2_per_cu_offset_size): Update.
1399 (dwarf2_free_objfile): Free the index, if needed.
1400 (dwarf2_per_objfile_free): Unmap the index, if needed.
1401 (struct strtab_entry): New.
1402 (hash_strtab_entry): New function.
1403 (eq_strtab_entry): Likewise.
1404 (create_strtab): Likewise.
1405 (add_string): Likewise.
1406 (struct symtab_index_entry): New.
1407 (struct mapped_symtab): New.
1408 (hash_symtab_entry): New function.
1409 (eq_symtab_entry): Likewise.
1410 (delete_symtab_entry): Likewise.
1411 (create_index_table): Likewise.
1412 (create_mapped_symtab): Likewise.
1413 (cleanup_mapped_symtab): Likewise.
1414 (find_slot): Likewise.
1415 (hash_expand): Likewise.
1416 (add_index_entry): Likewise.
1417 (add_indices_to_cpool): Likewise.
1418 (write_hash_table): Likewise.
1419 (add_address_entry): Likewise.
1420 (write_psymbols): Likewise.
1421 (write_obstack): Likewise.
1422 (unlink_if_set): Likewise.
1423 (write_psymtabs_to_index): Likewise.
1424 (save_gdb_index_command): Likewise.
1425 (_initialize_dwarf2_read): Install "save gdb-index"
1426 command.
1427 (create_all_comp_units): Initialize 'objfile' field of CU.
1428 (dwarf2_locate_sections): Check for .gdb_index.
1429 * psymtab.h (dwarf2_gdb_index_functions): Declare.
1430 * symfile.h (dwarf2_initialize_objfile): Declare.
1431
58b6ab13
TT
14322010-07-13 Tom Tromey <tromey@redhat.com>
1433
1434 * symtab.c (lookup_symbol_aux_symtabs): Call pre-expand hook.
1435 (basic_lookup_transparent_type): Likewise.
1436 * symfile.h (struct quick_symbol_functions)
1437 <pre_expand_symtabs_matching>: New field.
1438 * psymtab.c (pre_expand_symtabs_matching_psymtabs): New function.
1439 (psym_functions): Update.
1440
0f5238ed
TT
14412010-07-13 Tom Tromey <tromey@redhat.com>
1442
1443 PR breakpoints/8357:
1444 * symtab.h (domain_enum_tag) <LABEL_DOMAIN>: Update comment.
1445 * linespec.c (decode_line_1): Update comment. Call decode_label.
1446 (decode_label): New function.
1447 (symbol_found): Handle LOC_LABEL.
1448 * dwarf2read.c (new_symbol) <DW_TAG_label>: Set symbol's type and
1449 domain. Call add_symbol_to_list.
1450
9aa1f1e3
TT
14512010-07-13 Tom Tromey <tromey@redhat.com>
1452
1453 * dwarf2loc.h (dwarf2_per_cu_text_offset): Declare.
1454 * dwarf2loc.c (find_location_expression): Use
1455 dwarf2_per_cu_text_offset.
1456 (dwarf2_evaluate_loc_desc): Likewise.
1457 (dwarf2_loc_desc_needs_frame): Likewise.
1458 (compile_dwarf_to_ax): Likewise.
1459 (loclist_describe_location): Likewise.
1460 * dwarf2read.c (dwarf2_per_cu_text_offset): New function.
1461 (dwarf2_per_cu_objfile): Update comment.
1462
953ac07e
JK
14632010-07-12 Jan Kratochvil <jan.kratochvil@redhat.com>
1464
1465 * dwarf2read.c (read_subrange_type): Call read_subrange_type.
1466 * p-lang.c (pascal_printstr): Likewise.
1467
f04e4012
TT
14682010-07-09 Tom Tromey <tromey@redhat.com>
1469
1470 * python/py-prettyprint.c (gdbpy_get_display_hint): Don't use
1471 'hint' if it is NULL.
1472
f4dfd9c0
HZ
14732010-07-09 Hui Zhu <teawater@gmail.com>
1474
1475 * source.c (print_source_lines_base): Add check for noprint.
1476
7e6e39e5
JB
14772010-07-08 Joel Brobecker <brobecker@adacore.com>
1478
1479 * python/python-config.py: Resync with Python 2.7 version of this
1480 script.
1481
76b8507d
JB
14822010-07-08 Joel Brobecker <brobecker@adacore.com>
1483
1484 * NEWS: Fix typo in section name (s/GDB 7.1/GDB 7.2).
1485
797054e6
JB
14862010-07-07 Joel Brobecker <brobecker@adacore.com>
1487
1488 * NEWS: Create a new section for the next release branch.
1489 Rename the section of the current branch, now that it has
1490 been cut.
1491
c80befee 14922010-07-07 Joel Brobecker <brobecker@adacore.com>
1493
1494 GDB 7.2 branch created (branch timestamp: 2010-07-07 17:00 UTC)
1495 * version.in: Bump version to 7.2.50.20100707-cvs.
1496
ac56253d
TT
14972010-07-07 Tom Tromey <tromey@redhat.com>
1498
1499 * dwarf2read.c (dwarf2_const_value) <DW_form_addr>: Create a
1500 LOC_COMPUTED symbol.
1501 * dwarf2loc.c (dwarf2_evaluate_loc_desc): Set new field.
1502 (dwarf2_loc_desc_needs_frame): Likewise.
1503 (compile_dwarf_to_ax) <DW_OP_addr>: Use offset.
1504 * dwarf2expr.h (struct dwarf_expr_context) <offset>: New field.
1505 * dwarf2expr.c (execute_stack_op) <DW_OP_addr>: Use offset.
1506 * dwarf2-frame.c (execute_stack_op): Set 'offset' field. Add
1507 'offset' argument.
1508 (struct dwarf2_frame_cache) <text_offset>: New field.
1509 (dwarf2_frame_cache): Set new field.
1510 (dwarf2_frame_prev_register): Update.
1511 (dwarf2_frame_sniffer): Update.
1512 (dwarf2_frame_base_sniffer): Update.
1513 (dwarf2_frame_find_fde): Add 'out_offset' argument.
1514
0cf6dd15
TJB
15152010-07-07 Sergio Durigan Junior <sergiodj@linux.vnet.ibm.com>
1516 Thiago Jung Bauermann <bauerman@br.ibm.com>
1517
1518 Support for hw accelerated condition watchpoints in booke powerpc.
1519
1520 * breakpoint.c (fetch_watchpoint_value): Rename to fetch_subexp_value
1521 and move to eval.c. Change callers.
1522 (insert_bp_location): Pass watchpoint condition in
1523 target_insert_watchpoint.
1524 (remove_breakpoint_1) Pass watchpoint condition in
1525 target_remove_watchpoint.
1526 (watchpoint_locations_match): Call
1527 target_can_accel_watchpoint_condition.
1528 * eval.c: Include wrapper.h.
1529 (fetch_subexp_value): Moved from breakpoint.c.
1530 * ppc-linux-nat.c (ppc_linux_region_ok_for_hw_watchpoint):
1531 Formatting fix.
1532 (can_use_watchpoint_cond_accel): New function.
1533 (calculate_dvc): Likewise.
1534 (num_memory_accesses): Likewise.
1535 (check_condition): Likewise.
1536 (ppc_linux_can_accel_watchpoint_condition): Likewise
1537 (ppc_linux_insert_watchpoint): Call can_use_watchpoint_cond_accel,
1538 check_condition and calculate_dvc.
1539 (ppc_linux_remove_watchpoint): Likewise.
1540 (_initialize_ppc_linux_nat): Set to_can_accel_watchpoint_condition to
1541 ppc_linux_can_accel_watchpoint_condition
1542 * target.c (debug_to_insert_watchpoint): Add argument for watchpoint
1543 condition.
1544 (debug_to_remove_watchpoint): Likewise.
1545 (debug_to_can_accel_watchpoint_condition): New function.
1546 (update_current_target): Set to_can_accel_watchpoint_condition.
1547 (setup_target_debug): Set to_can_accel_watchpoint_condition.
1548 * target.h: Add opaque declaration for struct expression.
1549 (struct target_ops) <to_insert_watchpoint>,
1550 <to_remove_watchpoint>: Add new arguments to pass the watchpoint
1551 <to_can_accel_watchpoint_condition>: New member.
1552 condition. Update all callers and implementations.
1553 (target_can_accel_watchpoint_condition): New macro.
1554 * value.c (free_value_chain): New function.
1555 * value.h (fetch_subexp_value): New prototype.
1556 (free_value_chain): Likewise.
1557
2f2241f1
UW
15582010-07-07 Ulrich Weigand <uweigand@de.ibm.com>
1559
1560 * linux-nat.c (linux_nat_do_thread_registers): Use section size
1561 from gdbarch_core_regset_sections also for .reg if present.
1562
1563 * amd64-linux-tdep.c (amd64_linux_regset_sections): Fix incorrect
1564 section size for .reg.
1565 * ppc-linux-tdep.c (ppc_linux_vsx_regset_sections): Likewise.
1566 (ppc_linux_vmx_regset_sections): Likewise.
1567 (ppc_linux_fp_regset_sections): Likewise.
1568 (ppc64_linux_vsx_regset_sections): New variable.
1569 (ppc64_linux_vmx_regset_sections): Likewise.
1570 (ppc64_linux_fp_regset_sections): Likewise.
1571 (ppc_linux_init_abi): Install core_regset_section lists appropriate
1572 for current word size.
1573
1fd7cdc2
JB
15742010-07-06 Joel Brobecker <brobecker@adacore.com>
1575
1576 * server.c (myresume): Make static.
1577
11763c18
TT
15782010-07-06 Tom Tromey <tromey@redhat.com>
1579
1580 * configure, config.in: Rebuild.
1581 * configure.ac (HAVE_LIBPYTHON2_7): New define.
1582 * python/python-internal.h: Handle HAVE_LIBPYTHON2_7.
1583
a6cc4789
AS
15842010-07-06 Andreas Schwab <schwab@linux-m68k.org>
1585
1586 * breakpoint.c (_initialize_breakpoint): Add "cl" as alias for
1587 "clear".
1588
f9e9243a
UW
15892010-07-06 Ken Werner <ken.werner@de.ibm.com>
1590
1591 * gdbtypes.h (floatformats_ieee_half): Add declaration.
1592 * gdbtypes.c (floatformats_ieee_half): New variable.
1593 * doublest.c (floatformat_from_length): Set format to
1594 gdbarch_half_format if length matches.
1595 * gdbarch.sh (half_bit): New architecture method.
1596 (half_format): Likewise.
1597 * gdbarch.h: Regenerate.
1598 * gdbarch.c: Likewise.
1599
4e5799b6
JK
16002010-07-05 Jan Kratochvil <jan.kratochvil@redhat.com>
1601 Joel Brobecker <brobecker@adacore.com>
1602
1603 Fix re-run of PIE executable, PR shlibs/11776.
1604 * solib-svr4.c (svr4_relocate_main_executable) <symfile_objfile>: Remove
1605 the part of pre-set SYMFILE_OBJFILE->SECTION_OFFSETS.
1606
86e4bafc
JK
16072010-07-05 Jan Kratochvil <jan.kratochvil@redhat.com>
1608 Joel Brobecker <brobecker@adacore.com>
1609
1610 * auxv.c (memory_xfer_auxv): Update attach comment.
1611 * solib-svr4.c (svr4_special_symbol_handling): Remove the call to
1612 svr4_relocate_main_executable.
1613 (svr4_solib_create_inferior_hook): Make the call to
1614 svr4_relocate_main_executable unconditional.
1615
3cd07d20
JK
16162010-07-05 Jan Kratochvil <jan.kratochvil@redhat.com>
1617 Joel Brobecker <brobecker@adacore.com>
1618
1619 * auxv.c (ld_so_xfer_auxv): Do not error on failed read of data_address.
1620
0a1e94c7
JK
16212010-07-05 Jan Kratochvil <jan.kratochvil@redhat.com>
1622 Joel Brobecker <brobecker@adacore.com>
1623
1624 Fix attaching to PIEs prelinked on the disk after the process was
1625 started.
1626 * solib-svr4.c (svr4_exec_displacement): New variable arch_size.
1627 Verify it against bfd_get_arch_size. Try to match arbitrary
1628 displacement for the phdrs comparison.
1629
5387647f
TT
16302010-07-02 Tom Tromey <tromey@redhat.com>
1631
1632 PR exp/11780:
1633 * libunwind-frame.c (libunwind_frame_prev_register): Don't set
1634 value as optimized-out.
1635
38b6c3b3
TJB
16362010-07-02 Ulrich Weigand <uweigand@de.ibm.com>
1637 Thiago Jung Bauermann <bauerman@br.ibm.com>
1638
1639 * breakpoint.c (can_use_hardware_watchpoint): Answer "what does this
1640 represent?" question in comment. Change comment to a proper sentence.
1641
a17ac5b0
TT
16422010-07-02 Ken Werner <ken.werner@de.ibm.com>
1643
1644 * c-valprint.c (c_val_print): Fix printing of character vectors.
1645
bddaafad
JK
16462010-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
1647
1648 * spu-tdep.c (spu_catch_start): Adjust the caller of changed
1649 create_breakpoint prototype.
1650
d41c0fc8
PA
16512010-07-01 Pedro Alves <pedro@codesourcery.com>
1652
1653 * breakpoint.c (BREAK_ARGS_HELP, _initialize_breakpoint): Clarify
1654 usefulness suggestion of multiple breakpoints at same location.
1655
dc10affe
PA
16562010-07-01 Pedro Alves <pedro@codesourcery.com>
1657
1658 * breakpoint.c (BREAK_ARGS_HELP): Add missing `the'.
1659
cabe9ab6
PA
16602010-07-01 Pedro Alves <pedro@codesourcery.com>
1661
1662 * dwarf2loc.c (locexpr_tracepoint_var_ref)
1663 (loclist_tracepoint_var_ref): Handle optimized out values.
1664
cce7e648
PA
16652010-07-01 Pedro Alves <pedro@codesourcery.com>
1666
1667 * breakpoint.c (update_watchpoint, _initialize_breakpoint): Remove
1668 unnecessary space in string.
1669 * filesystem.c (_initialize_filesystem): Ditto.
1670 * frame.c (_initialize_frame): Ditto.
1671 * infcmd.c (step_once): Ditto.
1672 * infrun.c (_initialize_infrun): Ditto.
1673 * linux-nat.c (linux_child_follow_fork): Ditto.
1674 * maint.c (maintenance_deprecate): Ditto.
1675 * memattr.c (_initialize_mem): Ditto.
1676 * mips-tdep.c (_initialize_mips_tdep): Ditto.
1677 * monitor.c (monitor_open): Ditto.
1678 * procfs.c (procfs_xfer_memory): Ditto.
1679 * reverse.c (bookmarks_info): Ditto.
1680 * sh64-tdep.c (sh64_show_media_regs, sh64_show_compact_regs): Ditto.
1681 * stack.c (_initialize_stack): Ditto.
1682 * tracepoint.c (_initialize_tracepoint): Ditto.
1683 * xtensa-tdep.c (xtensa_supply_gregset,
1684 xtensa_regset_from_core_section): Ditto.
1685
b65c7efe
TT
16862010-07-01 Tom Tromey <tromey@redhat.com>
1687
1688 * value.h (struct lval_funcs) <check_any_valid>: Rename from
1689 check_all_valid.
1690 * value.c (value_entirely_optimized_out): Invert result. Update
1691 for new function name.
1692
0fb4aa4b
PA
16932010-07-01 Pedro Alves <pedro@codesourcery.com>
1694
1695 Static tracepoints support.
1696
1697 * NEWS: Mention new support for static tracepoints.
1698 (New packets): Mention qTfSTM, qTsSTM, qTSTMat and
1699 qXfer:statictrace:read.
1700 (New features in the GDB remote stub, GDBserver): Mention static
1701 tracepoints support using an UST based backend.
1702 (New commands): Mention "info static-tracepoint-markers" and
1703 "strace".
1704 * breakpoint.c (is_marker_spec): New.
1705 (is_tracepoint): Handle static tracepoints.
1706 (validate_commands_for_breakpoint): Static tracepoints can't do
1707 while-stepping.
1708 (static_tracepoints_here): New.
1709 (bpstat_what): Handle static tracepoints.
1710 (print_one_breakpoint_location, allocate_bp_location, mention):
1711 Ditto.
1712 (create_breakpoint_sal): Ditto.
1713 (decode_static_tracepoint_spec): New.
1714 (create_breakpoint): Replace `hardwareflag', and `traceflag' with
1715 `type_wanted'. Adjust. Handle static tracepoint marker
1716 locations.
1717 (break_command_1): Adjust.
1718 (update_static_tracepoint): New.
1719 (update_breakpoint_locations): Handle static tracepoints.
1720 (breakpoint_re_set_one): Handle static tracepoint marker
1721 locations.
1722 (disable_command, enable_command): Handle static tracepoints.
1723 (trace_command, ftrace_command): Adjust.
1724 (strace_command): New.
1725 (create_tracepoint_from_upload): Adjust.
1726 (save_breakpoints): Handle static tracepoints.
1727 (_initialize_breakpoint): Install the "strace" command.
1728 * breakpoint.h (enum bptype): New bp_static_tracepoint type.
1729 (struct breakpoint): New fields static_trace_marker_id and
1730 static_trace_marker_id_idx.
1731 (breakpoints_here_p): Declare.
1732 (create_breakpoint): Adjust.
1733 (static_tracepoints_here): Declare.
1734 * remote.c (struct remote_state) <static_tracepoints>: New field.
1735 (PACKET_qXfer_statictrace_read, PACKET_StaticTracepoints): New.
1736 (remote_static_tracepoint_marker_at): New.
1737 (remote_static_tracepoint_markers_by_strid): New.
1738 (remote_static_tracepoint_feature): New.
1739 (remote_disconnected_tracing_feature): Handle "StaticTracepoints".
1740 (remote_xfer_partial): Handle TARGET_OBJECT_STATIC_TRACE_DATA.
1741 (remote_supports_static_tracepoints): New.
1742 (remote_download_tracepoint): Download static tracepoints.
1743 (init_remote_ops): Install remote_static_tracepoint_marker_at and
1744 remote_static_tracepoint_markers_by_strid.
1745 (_initialize_remote): Install set|show remote static-tracepoints,
1746 and set|show remote read-sdata-object commands.
1747 * target.c (update_current_target): Inherit and default
1748 to_static_tracepoint_marker_at, and
1749 to_static_tracepoint_markers_by_strid.
1750 * target.h (static_tracepoint_marker): Forward declare.
1751 (enum target_object): New object TARGET_OBJECT_STATIC_TRACE_DATA.
889bf7c5 1752 (static_tracepoint_marker_p): New typedef.
0fb4aa4b
PA
1753 (DEF_VEC_P(static_tracepoint_marker_p)): New VEC type.
1754 (struct target_ops): New fields to_static_tracepoint_marker_at and
1755 to_static_tracepoint_markers_by_strid.
1756 (target_static_tracepoint_marker_at)
1757 (target_static_tracepoint_markers_by_strid): New.
1758 * tracepoint.c: Include source.h.
1759 (validate_actionline): Handle $_sdata.
1760 (struct collection_list): New field strace_data.
1761 (add_static_trace_data): New.
1762 (clear_collection_list): Clear strace_data.
1763 (stringify_collection_list): Account for a possible static trace
1764 data collection.
1765 (encode_actions_1): Encode an $_sdata collection.
1766 (parse_tracepoint_definition): Handle static tracepoints.
1767 (parse_static_tracepoint_marker_definition): New.
1768 (release_static_tracepoint_marker): New.
1769 (print_one_static_tracepoint_marker): New.
1770 (info_static_tracepoint_markers_command): New.
1771 (sdata_make_value): New.
1772 (_initialize_tracepoint): Create the $_sdata convenience variable.
1773 Add the "info static-tracepoint-markers" command.
1774 Mention $_sdata in the "collect" command's help output.
1775 * tracepoint.h (struct static_tracepoint_marker): New.
1776 (parse_static_tracepoint_marker_definition)
1777 (release_static_tracepoint_marker): Declare.
1778 * mi/mi-cmd-break.c (mi_cmd_break_insert): Adjust.
1779 * python/py-breakpoint.c (bppy_new): Adjust.
1780
aac63f0f
JB
17812010-06-30 Joel Brobecker <brobecker@adacore.com>
1782
1783 * python/python-internal.h (_XOPEN_SOURCE): Undefine before
1784 including Python.h.
1785
e68994a7
DE
17862010-06-29 Doug Evans <dje@google.com>
1787
3863f96c
DE
1788 PR gdb/11702
1789 * dwarf2read.c (dwarf2_add_field): Only create a symbol if
1790 DW_AT_external is present.
1791
254e6b9e
DE
1792 PR gdb/11702
1793 * NEWS: Add entry.
1794 * dwarf2read.c (dwarf2_add_field): If DW_AT_const_value is present,
1795 create a symbol for the field and record the value.
1796 (new_symbol): Handle DW_TAG_member.
1797 * gdbtypes.c (field_is_static): Remove FIXME.
1798 * symtab.c (search_symbols): When searching for VARIABLES_DOMAIN,
1799 only ignore LOC_CONST symbols that are enums.
1800
6e70227d
DE
1801 * dwarf2read.c: Remove trailing whitespace.
1802
e68994a7
DE
1803 Delete FIELD_LOC_KIND_DWARF_BLOCK, unused.
1804 * gdbtypes.h (enum field_loc_kind): Delete FIELD_LOC_KIND_DWARF_BLOCK.
1805 (struct main_type, field loc): Delete dwarf_block.
1806 (FIELD_DWARF_BLOCK): Delete.
1807 (SET_FIELD_DWARF_BLOCK): Delete.
1808 (TYPE_FIELD_DWARF_BLOCK): Delete.
1809 * gdb-gdb.py (StructMainTypePrettyPrinter.struct_field_location_img):
1810 Update.
1811
a480d2f6
HZ
18122010-06-29 Hui Zhu <teawater@gmail.com>
1813
1814 * record.c (set_record_pic_cmdlist,
1815 show_record_pic_cmdlist): New variables.
1816 (set_record_pic_command,
1817 show_record_pic_command): New functions.
1818 (record_pic_function, record_pic_line, record_pic_enum,
1819 set_record_pic_type, record_pic_hide_nofunction,
1820 record_pic_hide_nosource, record_pic_hide_same): New variables.
1821 (record_pic_fputs): New function.
1822 (function_list, node_list, edge_list): New struct.
1823 (function_list, node_list, edge_list): New variables.
1824 (record_pic_cleanups, record_pic_node,
1825 record_pic_edge, cmd_record_pic): New functions.
1826 (_initialize_record): Add new commands for record pic.
1827
a0d7a4ff
JK
18282010-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
1829
1830 * dwarf2read.c (read_structure_type) <fi.typedef_field_list>: Call
1831 ALLOCATE_CPLUS_STRUCT_TYPE.
1832
595939de 18332010-06-28 Phil Muldoon <pmuldoon@redhat.com>
889bf7c5
PA
1834 Tom Tromey <tromey@redhat.com>
1835 Thiago Jung Bauermann <bauerman@br.ibm.com>
595939de
PM
1836
1837 * value.c (pack_unsigned_long): New function.
1838 (value_from_ulongest): New function.
1839 * value.h (value_from_ulongest): Declare.
1840 * python/python.c (_initialize_python): Call
1841 gdbpy_initialize_thread and gdbpy_initialize_inferior.
1842 * python/python-internal.h: Define thread_object.
1843 (gdbpy_inferiors, gdbpy_selected_thread)
1844 (frame_info_to_frame_object, create_thread_object)
1845 (find_thread_object, find_inferior_object)
1846 (gdbpy_initialize_thread, gdbpy_initialize_inferiors)
1847 (gdbpy_is_value_object, get_addr_from_python): Declare.
1848 * python/py-value.c (builtin_type_upylong): Define.
1849 (convert_value_from_python): Add logic for ulongest.
1850 (gdbpy_is_value_object): New function.
1851 * python/py-utils.c (get_addr_from_python): New function.
1852 * python/py-frame.c (frame_info_to_frame_object): Return a PyObject.
1853 (gdbpy_selected_frame): Use PyObject over frame_info.
1854 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-inferior and
1855 py-infthread.
1856 (SUBDIR_PYTHON_SRCS): Likewise.
1857 (py-inferior.o): New Rule.
1858 (py-infthread.o): New Rule.
1859 * python/py-inferior.c: New File.
1860 * python/py-infthread.c: New File.
1861
98751a41
JK
18622010-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
1863
1864 * c-typeprint.c (c_type_print_base): For no fields check include also
1865 TYPE_TYPEDEF_FIELD_COUNT. Print new typedefs section.
1866 * dwarf2read.c (struct typedef_field_list)
1867 (struct field_info) <typedef_field_list, typedef_field_list_count>: New.
1868 (dwarf2_add_typedef): New.
1869 (read_structure_type): Call dwarf2_add_typedef for DW_TAG_typedef.
1870 Copy also FI.TYPEDEF_FIELD_LIST.
1871 * gdbtypes.h (struct typedef_field)
1872 (struct cplus_struct_type) <typedef_field, typedef_field_count>
1873 (TYPE_TYPEDEF_FIELD_ARRAY, TYPE_TYPEDEF_FIELD, TYPE_TYPEDEF_FIELD_NAME)
1874 (TYPE_TYPEDEF_FIELD_TYPE, TYPE_TYPEDEF_FIELD_COUNT): New.
1875
41f62f39
JK
18762010-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
1877
1878 * cp-namespace.c (cp_lookup_nested_type): New variable
1879 concatenated_name. Turn the current return condition into a reverse
1880 one. Call also lookup_static_symbol_aux on the constructed qualified
1881 name.
1882 * symtab.c (lookup_symbol_aux): Move variable objfile and searching in
1883 other files into a called ...
1884 (lookup_static_symbol_aux): ... new function here.
1885 * symtab.h (lookup_static_symbol_aux): New prototype.
1886 * valops.c (value_maybe_namespace_elt): Call also
1887 lookup_static_symbol_aux if we failed otherwise.
1888
af53d231
JK
18892010-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
1890
1891 Fix PR c++/11703 and PR gdb/1448.
1892 * c-exp.y (yylex) <last_was_coloncolon && first_was_coloncolon>: Add
1893 FIRST_ITER check.
1894
9655fd1a
JK
18952010-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
1896
1897 Fix modification of cplus_struct_default.
1898 * dwarf2read.c (dwarf2_add_member_fn) <no DW_AT_vtable_elem_location>:
1899 Call ALLOCATE_CPLUS_STRUCT_TYPE.
1900 * gdbtypes.c (cplus_struct_default): New empty initializer, comment it.
1901
9279c692
JB
19022010-06-28 Joel Brobecker <brobecker@adacore.com>
1903
1904 * NEWS: Add entry announcing the python directory.
1905
d3f41bb1
TT
19062010-06-28 Tom Tromey <tromey@redhat.com>
1907
1908 * dwarf2read.c (read_structure_type): Allocate null cleanup later.
1909
23e7acfb
DE
19102010-06-28 Doug Evans <dje@google.com>
1911
1912 * breakpoint.c (breakpoint_sals_to_pc): Delete arg address, unused.
1913 All callers updated.
1914
6036c742
JK
19152010-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
1916
1917 * cp-valprint.c (cp_print_value_fields) <recurse == 0>: Call
1918 obstack_begin after each obstack_free.
1919
9f18a3b3
DE
19202010-06-27 Doug Evans <dje@google.com>
1921
1596cb5d
DE
1922 * value.c (value_static_field): Use `switch' instead of `if'.
1923 Assert-fail if passed invalid TYPE_FIELD_LOC_KIND.
1924
9f18a3b3
DE
1925 * valops.c (search_struct_field): Fix typo in error message.
1926
43dabe42
UW
19272010-06-26 Ulrich Weigand <uweigand@de.ibm.com>
1928
1929 * dwarf2expr.c (execute_stack_op): Place preprocessor
1930 directives at the start of the source line.
1931
0f3bb72e
PH
19322010-06-25 Paul Hilfinger <hilfinger@adacore.com>
1933
6036c742
JK
1934 * defs.h (make_command_stats_cleanup): Declare.
1935 (set_display_time): Declare.
1936 (set_display_space): Declare.
1937 * event-top.c (command_handler): Use make_command_stats_cleanup.
1938 * main.c (display_time, display_space): Move definitions to utils.c.
1939 (captured_main): Use make_command_stats_cleanup to get start-up
1940 statistics.
1941 Use set_display_time and set_display_space for processing OPT_STATISTICS
1942 case.
1943 * maint.c (maintenance_time_display): Use set_display_time.
1944 (maintenance_space_display): Use set_display_space.
1945 * top.c (execute_command): Remove obsolete 'maint time' code.
1946 (command_loop): Use make_command_stats_cleanup.
1947 * utils.c (struct cmd_stats): Structure for storing initial time
1948 and space usage.
1949 (display_time, display_space): Move definitions here from utils.c.
1950 (set_display_time): New function.
1951 (set_display_space): New function.
1952 (make_command_stats_cleanup): New function.
1953 (report_command_stats): New auxiliary function for
1954 make_command_stats_cleanup.
0f3bb72e 1955
070c8028
UW
19562010-06-25 Ulrich Weigand <uweigand@de.ibm.com>
1957
1958 * solib-spu.c (append_ocl_sos): Fix xsnprintf statement for
1959 hosts where CORE_ADDR is long long.
1960
bc9f0842
TT
19612010-06-25 Tom Tromey <tromey@redhat.com>
1962
1963 PR python/10808:
1964 * python/python.c (execute_gdb_command): Add keywords. Accept
1965 "to_string" argument.
1966 (struct restore_ui_file_closure): New.
1967 (restore_ui_file): New function.
1968 (make_cleanup_restore_ui_file): Likewise.
1969 (GdbMethods) <execute>: Update.
1970
c0cc4c83
UW
19712010-06-25 Ulrich Weigand <uweigand@de.ibm.com>
1972
1973 * s390-tdep.c (s390_push_dummy_call): Error on stack overflow
1974 during inferior call stack frame setup.
1975
f1d8ee66
UW
19762010-06-25 Ken Werner <ken.werner@de.ibm.com>
1977
1978 * solib-spu.c: Include "exception.h".
1979 (ocl_program_data_key): New variable.
1980 (append_ocl_sos): New function.
1981 (ocl_enable_break): Likewise.
1982 (spu_current_sos): Call append_ocl_sos.
1983 (spu_solib_loaded): Call ocl_enable_break.
1984 (_initialize_spu_solib): Register ocl_program_data_key.
1985
19c0c0f8
UW
19862010-06-25 Ulrich Weigand <uweigand@de.ibm.com>
1987
1988 * cp-support.c (reset_directive_searched): New function.
1989 (make_symbol_overload_list_using): Prevent recursive calls.
1990
0f6a939d
PM
19912010-06-25 Phil Muldoon <pmuldoon@redhat.com>
1992
1993 * printcmd.c (print_variable_and_value): Print error message on
1994 caught exception.
1995
f2c7657e
UW
19962010-06-25 Ulrich Weigand <uweigand@de.ibm.com>
1997
1998 * dwarf2expr.h (struct dwarf_value_location): Use ULONGEST as type
1999 of stack values.
2000 (struct dwarf_expr_piece): Rename "expr" member to "mem". Add new
2001 "value" member.
2002 (dwarf_expr_push): Change input type to ULONGEST.
2003 (dwarf_expr_fetch): Change return type to ULONGEST.
2004 (dwarf_expr_fetch_address): Add prototype.
2005 (dwarf2_read_address): Remove prototype.
2006 * dwarf2expr.c (dwarf_expr_push): Use ULONGEST as type of stack values.
2007 Truncate stack values to ctx->addr_size bytes.
2008 (dwarf_expr_fetch): Change return value to ULONGEST.
2009 (dwarf_expr_fetch_address): New function.
2010 (add_piece): Use dwarf_expr_fetch_address instead of dwarf_expr_fetch
2011 when appropriate. Update for struct dwarf_expr_piece changes.
2012 (dwarf2_read_address): Remove.
2013 (unsigned_address_type): Remove.
2014 (signed_address_type): Remove.
2015 (execute_stack_op): Use dwarf_expr_fetch_address instead of
2016 dwarf_expr_fetch when appropriate. Use ULONGEST as type of stack
2017 values. Perform operations on ULONGEST instead of on GDB values,
2018 sign-extending from ctx->addr_size bytes as needed. Read DW_OP_addr
2019 values and DW_OP_deref results as unsigned integers.
2020 * dwarf2loc.c (read_pieced_value): Update for struct dwarf_expr_piece
2021 changes.
2022 (write_pieced_value): Likewise.
2023 (dwarf2_evaluate_loc_desc): Use dwarf_expr_fetch_address instead of
2024 dwarf_expr_fetch when appropriate.
2025 (compile_dwarf_to_ax): Read DW_OP_addr values as unsigned integers.
2026 * dwarf2-frame.c (execute_stack_op): Use dwarf_expr_fetch_address
2027 instead of dwarf_expr_fetch when appropriate.
2028
b1d61bc9
PM
20292010-06-25 Pierre Muller <muller@ics.u-strasbg.fr>
2030
2031 * c-typeprint.c (c_print_typedef): Append new type name for typedefs.
2032
b14285f6
JB
20332010-06-24 Joel Brobecker <brobecker@adacore.com>
2034
2035 * python/python.c (_initialize_python): Add new "constant"
2036 PYTHONDIR in gdb module. Insert this path at the head of
2037 sys.path. Set gdb.__path__ to gdb.PYTHONDIR + '/gdb' and
2038 exec its __init__.py script if it exists in that directory.
2039
fd60dc69
KB
20402010-06-24 Kevin Buettner <kevinb@redhat.com>
2041
2042 * rx-tdep.c (RX_ACC_REGNUM): Define.
2043 (RX_NUM_REGS): Redefine to 26.
2044 (rx_register_name): Add register "acc". Change order of several
2045 registers. Change name of "vct" register to "fintv" to match RX
2046 documentation.
2047 (rx_register_type): Add case for RX_ACC_REGNUM.
2048
18430289
TT
20492010-06-24 Tom Tromey <tromey@redhat.com>
2050
2051 * psymtab.c (lookup_partial_symbol): Mark definition as static.
2052
40618926
JK
20532010-06-24 Jan Kratochvil <jan.kratochvil@redhat.com>
2054 Tom Tromey <tromey@redhat.com>
2055
2056 Fix GDB startup on readonly filesystem.
2057 * charset.c (find_charset_names): Use PEX_USE_PIPES for pex_init.
2058
628fe4e4
JK
20592010-06-24 Jan Kratochvil <jan.kratochvil@redhat.com>
2060 Pedro Alves <pedro@codesourcery.com>
2061
2062 Fix PR 9436.
2063 * breakpoint.c (handle_jit_event): New function.
2064 (bpstat_what): Remove enum class, kc, ss, sn, sgl, slr, clr, sr, shl,
2065 jit, err, table and bs_class. New variables shlib_event, jit_event,
2066 this_action and bptype. Change bs_class assignments to this_action
2067 assignments. new unhandled bptype internal error. Move here
2068 shlib_event and jit_event handling from handle_inferior_event.
2069 * breakpoint.h (enum bpstat_what_main_action): Extend the comment.
2070 Reorder items. Remove BPSTAT_WHAT_CHECK_SHLIBS and
2071 BPSTAT_WHAT_CHECK_JIT.
2072 * inferior.h (debug_infrun, stop_on_solib_events): New declarations.
2073 * infrun.c (debug_infrun, stop_on_solib_events): Remove static.
2074 (handle_inferior_event): Reinitialize frame and gdbarch after
2075 bpstat_what call. Move BPSTAT_WHAT_CHECK_SHLIBS and
2076 BPSTAT_WHAT_CHECK_JIT handling to bpstat_what. Reinitialize even
2077 gdbarch when frame gets reinitialized.
2078
f1421989
HZ
20792010-06-24 Hui Zhu <teawater@gmail.com>
2080
2081 * printcmd.c (ui_printf): New function.
2082 (printf_command): Call ui_printf.
2083 (_initialize_printcmd): New command "eval".
2084
d03285ec
UW
20852010-06-23 Ulrich Weigand <uweigand@de.ibm.com>
2086
2087 * infrun.c (handle_inferior_event): Handle presence of single-step
2088 breakpoints for TARGET_WAITKIND_FORKED and TARGET_WAITKIND_VFORKED.
2089 Cancel single-step breakpoints for TARGET_WAITKIND_EXITED,
2090 TARGET_WAITKIND_SIGNALED, and TARGET_WAITKIND_EXECD.
2091 * breakpoint.c (detach_single_step_breakpoints): New function.
2092 (detach_breakpoints): Call it.
2093 (cancel_single_step_breakpoints): New function.
2094 * breakpoint.h (cancel_single_step_breakpoints): Add prototype.
2095
2096 * spu-tdep.c (spu_memory_remove_breakpoint): New function.
2097 (spu_gdbarch_init): Install it.
2098
38f6b338
JK
20992010-06-23 Jan Kratochvil <jan.kratochvil@redhat.com>
2100
2101 * configure.ac: Always set RDYNAMIC at least as `-rdynamic'.
2102 * configure: Regenerate.
2103
bb08c432
HZ
21042010-06-22 Hui Zhu <teawater@gmail.com>
2105
2106 * i386-tdep.c (i386_record_lea_modrm): Change warning to query.
2107 (i386_process_record): Ditto.
2108 * record.c (record_memory_query): New variable.
2109 (_initialize_record): New command "set record memory-query".
2110 * record.h (record_memory_query): New extern.
2111
b55078be
DE
21122010-06-21 Doug Evans <dje@google.com>
2113
2114 * i386-tdep.h (i386_displaced_step_copy_insn): Declare.
2115 * i386-tdep.c (i386_displaced_step_copy_insn): New function.
2116 (i386_syscall_p): Change type of lengthp to int.
2117 (i386_displaced_step_fixup): Handle kernels that run one past a
2118 syscall insn.
2119 * i386-linux-tdep.c (i386_linux_init_abi): Use
2120 i386_displaced_step_copy_insn instead of
2121 simple_displaced_step_copy_insn.
2122
75079b2b
TT
21232010-06-21 Tom Tromey <tromey@redhat.com>
2124
2125 * dwarf2read.c (read_base_type): Handle DW_ATE_UTF.
2126 (dwarf_type_encoding_name): Likewise.
2127
b00fdb78
TT
21282010-06-21 Tom Tromey <tromey@redhat.com>
2129
2130 * p-valprint.c (pascal_val_print): Use TYPE_ERROR_NAME.
2131 * p-typeprint.c (pascal_type_print_base): Use TYPE_ERROR_NAME.
2132 * m2-valprint.c (m2_val_print): Use TYPE_ERROR_NAME.
2133 * gdbtypes.h (TYPE_ERROR_NAME): New macro.
2134 * f-valprint.c (f_val_print): Use TYPE_ERROR_NAME.
2135 * f-typeprint.c (f_type_print_base): Use TYPE_ERROR_NAME.
2136 * dwarf2read.c (tag_type_to_type): Create a new error type on
2137 failure.
2138 * c-valprint.c (c_val_print): Use TYPE_ERROR_NAME.
2139 * c-typeprint.c (c_type_print_base): Use TYPE_ERROR_NAME.
2140
84951ab5
MS
21412010-06-21 Michael Snyder <msnyder@vmware.com>
2142
889bf7c5 2143 * breakpoint.c (_initialize_breakpoint): Use add_prefix_cmd,
84951ab5
MS
2144 not add_abbrev_prefix_cmd, for "enable breakpoints".
2145
d4a087c7
UW
21462010-06-21 Ulrich Weigand <uweigand@de.ibm.com>
2147
2148 * dwarf2loc.c (find_location_expression): Add relocation offset
2149 to base-address-selection entry base addresses. Read addresses
2150 (and offsets) as signed/unsigned integers, depending on the
2151 BFD's sign_extend_vma flag. Do not call dwarf2_read_address.
2152 (loclist_describe_location): Likewise.
2153 (disassemble_dwarf_expression): Read DW_OP_addr operand as
2154 unsigned integer. Do not call dwarf2_read_address.
2155 (locexpr_describe_location): Likewise for DW_OP_GNU_push_tls_address.
2156
13def385
UW
21572010-06-19 Ulrich Weigand <uweigand@de.ibm.com>
2158
2159 * spu-tdep.c (spu_frame_unwind_cache): Use LSLR register
2160 value instead of hard-coded SPU_LS_SIZE.
2161 (spu_software_single_step): Likewise.
2162 * spu-tdep.h (SPU_LS_SIZE): Remove.
2163
d2ed6730
UW
21642010-06-19 Ulrich Weigand <uweigand@de.ibm.com>
2165
2166 * spu-multiarch.c (spu_xfer_partial): Wrap around local store
2167 limit on local store memory accesses.
2168 * spu-linux-nat.c (spu_xfer_partial): Likewise.
2169 * spu-tdep.c (spu_lslr): Remove.
2170 (spu_pointer_to_address): Do not truncate addresses.
2171 (spu_integer_to_address): Likewise.
2172 (spu_overlay_new_objfile): Use SPU_OVERLAY_LMA.
2173 * spu-tdep.h: Add comments.
2174 (SPUADDR_SPU): Respect SPU_OVERLAY_LMA bit.
2175 (SPU_OVERLAY_LMA): Define.
2176
6aed2dbc
SS
21772010-06-18 Stan Shebs <stan@codesourcery.com>
2178
a61408f8
SS
2179 * osdata.c (get_osdata): Warn separately if target does not report
2180 type list.
2181 (info_osdata_command): Allow empty type, report error if target
2182 does not return available types of OS data.
2183 * linux-nat.c (linux_nat_xfer_osdata): Report list of OS data
2184 types if no annex supplied.
2185
6aed2dbc
SS
2186 * thread.c (thread_id_make_value): Make a value representing the
2187 current thread.
2188 (_initialize_thread): Create $_thread.
2189
ec61707d
JB
21902010-06-17 Joel Brobecker <brobecker@adacore.com>
2191
2192 * dwarf2read.c (psymtabs_addrmap_cleanup): Add empty line after
2193 last local variable declaration. No real code change.
2194
60606b2c
TT
21952010-06-17 Tom Tromey <tromey@redhat.com>
2196
2197 * dwarf2read.c (psymtabs_addrmap_cleanup): New function.
2198 (dwarf2_build_psymtabs_hard): Use it. Create addrmap on a
2199 temporary obstack.
2200
65d79d4b
SDJ
22012010-06-16 Sergio Durigan Junior <sergiodj@redhat.com>
2202 Jan Kratochvil <jan.kratochvil@redhat.com>
2203
2204 * breakpoint.c: Include parser-defs.h.
2205 (watchpoint_exp_is_const): New function.
2206 (watch_command_1): Call watchpoint_exp_is_const to check
2207 if the expression is constant.
2208
0407b3f1
AS
22092010-06-15 Andreas Schwab <schwab@linux-m68k.org>
2210
2211 * configure.ac: Check for RDYNAMIC also for cross builds.
2212 * configure: Regenerate.
2213
98d64339
PA
22142010-06-15 Pedro Alves <pedro@codesourcery.com>
2215
2216 * Makefile.in (ALL_TARGET_OBS): Remove solib-target.o.
2217 (SFILES): Remove solib-null.c, add solib-target.c.
2218 (COMMON_OBS): Remove solib-null.o, add solib-target.o.
2219 (ALLDEPFILES): Remove solib-target.c.
2220 * solib-target.c (_initialize_solib_target): Set
2221 current_target_so_ops to solib_target_so_ops if not already set.
2222 * solib-null.c: Delete.
2223
6a271cae
PA
22242010-06-14 Pedro Alves <pedro@codesourcery.com>
2225
2226 * NEWS: Mention GDBserver's JIT compilation of tracepoint
2227 bytecode.
2228
1e9beacb
UW
22292010-06-14 Ulrich Weigand <uweigand@de.ibm.com>
2230
2231 * cp-valprint.c (cp_print_static_field): Members of
2232 dont_print_stat_array_obstack are of type "struct type *".
2233 (_initialize_cp_valprint): Likewise.
2234
21a176fb
UW
22352010-06-14 Ulrich Weigand <uweigand@de.ibm.com>
2236
2237 * frame.c (frame_register_unwind): Do not access contents
2238 of "optimized out" unwound register value.
2239
25b524e8
JK
22402010-06-14 Jan Kratochvil <jan.kratochvil@redhat.com>
2241
2242 * ada-lang.h (ada_print_type): Make varstring const.
2243 * ada-typeprint.c (print_func_type): Make name const.
2244 (ada_print_type): Make varstring const.
2245 * c-lang.h (c_print_type): Make varstring const.
2246 * c-typeprint.c (c_print_type): Likewise.
2247 * f-lang.h (f_print_type): Likewise.
2248 * f-typeprint.c (f_print_type): Likewise.
2249 * jv-lang.h (java_print_type): Likewise.
2250 * jv-typeprint.c (java_print_type): Likewise.
2251 * language.c (unk_lang_print_type): Likewise.
2252 * language.h (struct language_defn) <la_print_type>: Likewise.
2253 * m2-lang.h (m2_print_type): Likewise.
2254 * m2-typeprint.c (m2_print_type): Likewise.
2255 * p-lang.h (pascal_print_type): Likewise.
2256 * p-typeprint.c (pascal_print_type): Likewise.
2257
d914c394
SS
22582010-06-11 Stan Shebs <stan@codesourcery.com>
2259
2260 Add per-operation permission flags.
2261
2262 * target.h (struct target_ops): New method to_set_permissions.
2263 (target_set_permissions): New macro.
2264 (target_insert_breakpoint): Change macro to function.
2265 (target_remove_breakpoint): Ditto.
2266 (target_stop): Ditto.
2267 (may_write_registers): Declare.
2268 (may_write_memory): Declare.
2269 (may_insert_breakpoints): Declare.
2270 (may_insert_tracepoints): Declare.
2271 (may_insert_fast_tracepoints): Declare.
2272 (may_stop): Declare.
2273 * target.c (may_write_registers, may_write_registers_1): New globals.
2274 (may_write_memory, may_write_memory_1): New globals.
2275 (may_insert_breakpoints, may_insert_breakpoints_1): New globals.
2276 (may_insert_tracepoints, may_insert_tracepoints_1): New globals.
2277 (may_insert_fast_tracepoints, may_insert_fast_tracepoints_1): New
2278 globals.
2279 (may_stop, may_stop_1): New global.
2280 (target_xfer_partial): Test for write permission.
2281 (target_store_registers): Ditto.
2282 (target_insert_breakpoint): New function.
2283 (target_remove_breakpoint): New function.
2284 (target_stop): New function.
2285 (_initialize_targets): Add new set/show variables.
2286 (set_write_memory_permission): New function.
2287 (update_target_permissions): New function.
2288 (set_target_permissions): New function.
2289 (update_current_target): Default to_set_permissions.
2290 (_initialize_targets): Use new globals and setter function.
2291 * tracepoint.c (start_tracing): Test for permission.
2292 * inferior.h (update_observer_mode): Declare.
2293 * infrun.c (non_stop_1): Define earlier.
2294 (observer_mode, observer_mode_1): New globals.
2295 (set_observer_mode, show_observer_mode): New functions.
2296 (update_observer_mode): New function.
2297 (_initialize_infrun): Define "set observer" command.
2298 * remote.c (PACKET_QAllow): New optional packet.
2299 (remote_protocol_features): Add QAllow.
2300 (remote_set_permissions): New function.
2301 (remote_start_remote): Call it.
2302 (init_remote_ops): Add it to target vector.
2303 (_initialize_remote): Add config command for QAllow.
2304
aec5aa8b
TT
23052010-06-11 Tom Tromey <tromey@redhat.com>
2306
2307 * dwarf2read.c (dwarf2_add_member_fn): Handle correct form of
2308 DW_AT_vtable_elem_location even when GCC extension is seen.
2309
0e03807e
TT
23102010-06-11 Tom Tromey <tromey@redhat.com>
2311
2312 PR gdb/9977, PR exp/11636:
2313 * value.h (value_offset): Update.
2314 (struct lval_funcs) <check_validity>: New field.
2315 <copy_closure>: Make argument const.
2316 (value_computed_closure): Update.
2317 (value_contents_for_printing): Declare.
2318 (value_bits_valid): Likewise.
2319 (val_print): Likewise.
2320 (set_value_component_location): Update.
2321 (value_entirely_optimized_out): Declare.
2322 * value.c (value_offset): Argument now const.
2323 (require_not_optimized_out): New function.
2324 (value_contents_for_printing): New function.
2325 (value_contents_all): Call require_not_optimized_out.
2326 (value_contents): Likewise.
2327 (value_bits_valid): New function.
2328 (value_computed_closure): Argument now const.
2329 (set_value_component_location): Make 'whole' argument const.
2330 (value_entirely_optimized_out): New function.
2331 (value_bitsize): Argument now 'const'.
2332 (value_bitpos): Likewise.
2333 (value_type): Likewise.
2334 * valprint.h (val_print_array_elements): Update.
2335 * valprint.c (val_print): Add 'val' argument. Use
2336 valprint_check_validity.
2337 (valprint_check_validity): New function.
2338 (value_check_printable): Use value_entirely_optimized_out.
2339 (common_val_print): Update.
2340 (value_print): Likewise.
2341 (val_print_array_elements): Add 'val' argument.
2342 * valops.c (value_fetch_lazy): Use value_contents_for_printing,
2343 value_bits_valid. Reinit frame cache for lval_computed.
2344 * sh64-tdep.c (sh64_do_register): Update.
2345 * scm-valprint.c (scm_val_print): Add 'val' argument.
2346 * scm-lang.h (scm_val_print): Update.
2347 * python/python.h (apply_val_pretty_printer): Update.
2348 * python/py-prettyprint.c (apply_val_pretty_printer): Add 'val'
2349 argument. Call set_value_component_location.
2350 * printcmd.c (print_scalar_formatted): Update.
2351 * p-valprint.c (pascal_val_print): Add 'val' argument.
2352 (pascal_object_print_value_fields): Likewise.
2353 (pascal_object_print_value): Likewise.
2354 (pascal_object_print_static_field): Update.
2355 * p-lang.h (pascal_val_print): Update.
2356 (pascal_object_print_value_fields): Update.
2357 * mt-tdep.c (mt_registers_info): Update.
2358 * mi/mi-main.c (get_register): Update.
2359 (mi_cmd_data_evaluate_expression): Use common_val_print.
2360 * m2-valprint.c (m2_print_array_contents): Add 'val' argument.
2361 (m2_print_unbounded_array): Likewise.
2362 (m2_val_print): Likewise.
2363 * m2-lang.h (m2_val_print): Update.
2364 * language.h (struct language_defn) <la_val_print>: Add 'val'
2365 argument.
2366 (LA_VAL_PRINT): Likewise.
2367 * language.c (unk_lang_val_print): Add 'val' argument.
2368 * jv-valprint.c (java_print_value_fields): Add 'val' argument.
2369 (java_val_print): Likewise.
2370 * jv-lang.h (java_val_print): Add 'val' argument.
2371 * infcmd.c (default_print_registers_info): Update.
2372 * f-valprint.c (f77_print_array_1): Add 'val' argument.
2373 (f77_print_array): Likewise.
2374 (f_val_print): Likewise.
2375 * f-lang.h (f_val_print): Add 'val' argument.
2376 * dwarf2loc.c (read_pieced_value): Use value_bitsize and
2377 value_bitpos.
2378 <DWARF_VALUE_OPTIMIZED_OUT>: Don't print warning. Call
2379 set_value_optimized_out.
2380 (write_pieced_value): Use value_bitsize and value_bitpos.
2381 <default>: Don't exit loop.
2382 (check_pieced_value_validity): New function.
2383 (pieced_value_funcs): Reference check_pieced_value_validity,
2384 check_pieced_value_invalid.
2385 (copy_pieced_value_closure): Update.
2386 (check_pieced_value_bits): New function.
2387 (check_pieced_value_invalid): New function.
2388 * d-valprint.c (dynamic_array_type): Add 'val' argument.
2389 (d_val_print): Likewise.
2390 * d-lang.h (d_val_print): Update.
2391 * cp-valprint.c (cp_print_value_fields): Add 'val' argument.
2392 (cp_print_value_fields_rtti): Likewise.
2393 (cp_print_value): Likewise.
2394 (cp_print_static_field): Update.
2395 * c-valprint.c (c_val_print): Add 'val' argument.
2396 (c_value_print): Update.
2397 * c-lang.h (c_val_print): Update.
2398 (cp_print_value_fields): Likewise.
2399 (cp_print_value_fields_rtti): Likewise.
2400 * ada-valprint.c (struct ada_val_print_args): Remove.
2401 (val_print_packed_array_elements): Add 'val' argument.
2402 (ada_val_print): Likewise. Rewrite.
2403 (ada_val_print_stub): Remove.
2404 (ada_val_print_array): Add 'val' argument.
2405 (ada_val_print_1): Likewise.
2406 (print_variant_part): Likewise.
2407 (ada_value_print): Update.
2408 (print_record): Add 'val' argument.
2409 (print_field_values): Likewise.
2410 * ada-lang.h (ada_val_print): Update.
2411
3cf03773
TT
24122010-06-11 Tom Tromey <tromey@redhat.com>
2413
2414 * vec.h (VEC_cleanup): New macro.
2415 (DEF_VEC_ALLOC_FUNC_I): Update.
2416 (DEF_VEC_ALLOC_FUNC_P): Likewise.
2417 (DEF_VEC_ALLOC_FUNC_O): Likewise.
2418 * dwarf2loc.c (struct axs_var_loc): Remove.
2419 (unimplemented): New function.
2420 (translate_register): Likewise.
2421 (access_memory): Likewise.
2422 (compile_dwarf_to_ax): Likewise.
2423 (dwarf2_tracepoint_var_loc): Remove.
2424 (dwarf2_tracepoint_var_access): Likewise.
2425 (dwarf2_tracepoint_var_ref): Likewise.
2426 (locexpr_tracepoint_var_ref): Use compile_dwarf_to_ax.
2427 (loclist_tracepoint_var_ref): Likewise.
2428 * dwarf2expr.h (dwarf_expr_require_composition): Declare.
2429 * dwarf2expr.c (dwarf_expr_require_composition): Rename from
2430 require_composition. No longer static.
2431 (execute_stack_op): Update.
2432 * ax-gdb.h (trace_kludge): Declare.
2433
2bdf28a0
JK
24342010-06-11 Jan Kratochvil <jan.kratochvil@redhat.com>
2435
2436 * breakpoint.c (breakpoint_restore_shadows): New OWNER comment.
2437 (should_be_inserted): Return zero also on NULL OWNER.
2438 (breakpoint_program_space_exit): New OWNER comment.
2439 (insert_breakpoint_locations): Extend comment for OWNER.
2440 (remove_breakpoint_1, remove_breakpoint): Assert on OWNER.
2441 (breakpoint_init_inferior, breakpoint_here_p, breakpoint_thread_match):
2442 New OWNER comment.
2443 (print_it_typical): Return PRINT_UNKNOWN on NULL OWNER.
2444 (watchpoint_check): New assert on BREAKPOINT_AT and OWNER.
2445 (bpstat_check_location): New assert on OWNER.
2446 (bpstat_check_watchpoint, bpstat_check_breakpoint_conditions): Move BL
2447 and B initializations to the code block. New assert on them.
2448 (print_one_breakpoint_location): New OWNER comment.
2449 (watchpoint_locations_match): Assert on OWNER.
2450 (breakpoint_locations_match): Move HW_POINT1 and HW_POINT2
2451 initializations to the code block. New assert on OWNER.
2452 (set_breakpoint_location_function): New assert on OWNER.
2453 (disable_breakpoints_in_shlibs, disable_breakpoints_in_unloaded_shlib)
2454 (bp_location_compare, update_global_location_list)
2455 (update_global_location_list): New OWNER comment.
2456
5b9a19af
UW
24572010-06-09 Ulrich Weigand <uweigand@de.ibm.com>
2458
2459 * Makefile.in (HFILES_NO_SRCDIR): Remove config/i386/nm-linux.h
2460
669211f5
UW
24612010-06-09 Ulrich Weigand <uweigand@de.ibm.com>
2462
2463 * config/nm-linux.h (struct target_ops): Remove forward declaration.
2464 (lin_thread_get_thread_signals): Remove prototype.
2465 (GET_THREAD_SIGNALS): Remove.
2466 * linux-nat.h (lin_thread_get_thread_signals): Add prototype.
2467 * linux-thread-db.c (check_thread_signals): Directly call
2468 lin_thread_get_thread_signals; do not check GET_THREAD_SIGNALS.
2469
b7a8b4ef
UW
24702010-06-09 Ulrich Weigand <uweigand@de.ibm.com>
2471
2472 * gregset.h (GDB_FPXREGSET_T): Remove.
2473 (gdb_fpxregset_t): Likewise.
2474 (supply_fpxregset): Remove prototype.
2475 (fill_fpxregset): Likewise.
2476 * i386-linux-nat.c (supply_fpxregset): Remove.
2477 (fill_fpxregset): Likewise.
2478 (fetch_fpxregs): Inline supply_fpxregset call.
2479 (store_fpxregs): Inline fill_fpxregset call.
2480
2481 * config/i386/linux.mh: Set NAT_FILE to config/nm-linux.h.
2482 * config/i386/nm-linux.h: Remove file.
2483
82892036
MS
24842010-06-09 Michael Snyder <msnyder@vmware.com>
2485
2486 * target.c (update_current_target): Fix spelling error in comment.
2487 (target_mourn_inferior): Fix spelling error in error message.
2488
5ddb52fa
PH
24892010-06-08 Paul Hilfinger <hilfingr@adacore.com>
2490
2491 * dictionary.h (dict_iter_name_first, dict_iter_name_next): Refer to
2492 SYMBOL_SEARCH_NAME, not SYMBOL_BEST_NAME, in comments.
2493
0f2caa1b
MS
24942010-06-08 Michael Snyder <msnyder@vmware.com>
2495
2496 * remote.c (remote_close): Set inferior_ptid to null_ptid.
2497
3bebe2f2
JK
24982010-06-08 Jan Kratochvil <jan.kratochvil@redhat.com>
2499
2500 * configure.ac <"${have_libpython}" != no>: New workaround of
2501 python#4434.
2502 * configure: Regenerate.
2503
eaaffdf4
HZ
25042010-06-08 Hui Zhu <teawater@gmail.com>
2505
2506 * record.c (record_wait): Move signal out of replay code.
2507
5c631832
JK
25082010-06-07 Jan Kratochvil <jan.kratochvil@redhat.com>
2509
2510 Fix PR 10640.
2511 * dwarf2-frame.c (no_dwarf_call): New function.
2512 (execute_stack_op): Set CTX->DWARF_CALL.
2513 * dwarf2expr.c (execute_stack_op) <DW_OP_call2, DW_OP_call4>: New.
2514 * dwarf2expr.h (struct dwarf_expr_context) <dwarf_call>: New.
2515 (struct dwarf_expr_context) <get_subr>: Remove the #if0-ed field.
2516 * dwarf2loc.c (per_cu_dwarf_call, dwarf_expr_dwarf_call): New functions.
2517 (dwarf2_evaluate_loc_desc): Initialize CTX->DWARF_CALL.
2518 (needs_frame_dwarf_call): New function.
2519 (dwarf2_loc_desc_needs_frame): Initialize CTX->DWARF_CALL.
2520 * dwarf2read.c (follow_die_offset): Based on former follow_die_ref.
2521 Update the comment. Move variables die, offset and error call to ...
2522 (follow_die_ref): ... a new function.
2523 (dwarf2_fetch_die_location_block): New function.
2524 * dwarf2loc.h (dwarf2_fetch_die_location_block): New prototype.
2525
17ea53c3
JK
25262010-06-07 Jan Kratochvil <jan.kratochvil@redhat.com>
2527
2528 * dwarf2loc.c (struct dwarf_expr_baton) Replace objfile by per_cu.
2529 (dwarf_expr_tls_address): Use per_cu instead of objfile.
2530 (dwarf2_evaluate_loc_desc): Drop initialization of BATON.OBJFILE.
2531 Initialize new BATON.PER_CU. Adjust CTX->GDBARCH initialization for
2532 this change.
2533 (struct needs_frame_baton): New field per_cu.
2534 (dwarf2_loc_desc_needs_frame): Initialize new BATON.PER_CU.
2535 * dwarf2read.c (struct dwarf2_per_cu_data) <cu>: Extend the comment.
2536
245040d7
SW
25372010-06-07 Sami Wagiaalla <swagiaal@redhat.com>
2538
2539 * cp-support.c (make_symbol_overload_list_namespace): Only search
2540 static and global blocks.
2541 (make_symbol_overload_list_block): New function.
2542 (make_symbol_overload_list): Separate namespace search from block
2543 search.
2544 (make_symbol_overload_list_qualified): Use
2545 make_symbol_overload_list_block.
2546
4c3376c8
SW
25472010-06-07 Sami Wagiaalla <swagiaal@redhat.com>
2548
2549 * value.h: Created oload_search_type enum.
2550 (find_overload_match): Use oload_search_type enum.
2551 * valops.c (find_overload_match): Support combined member and
2552 non-member search.
2553 * eval.c (evaluate_subexp_standard): Calls to
2554 find_overload_match now use oload_search_type enum.
2555 (oload_method_static): Verify index is a proper value.
2556 * valarith.c (value_user_defined_cpp_op): Search for and handle
2557 both member and non-member operators.
2558 (value_user_defined_cpp_op): New function.
2559 (value_user_defined_op): New function.
2560 (value_x_unop): Use value_user_defined_op.
2561 (value_x_binop): Ditto.
2562 * cp-support.c (make_symbol_overload_list_using): Added block
2563 iteration.
2564 Add check for namespace aliases and imported declarations.
2565
ee55da67
JK
25662010-06-07 Jan Kratochvil <jan.kratochvil@redhat.com>
2567
2568 * breakpoint.h (owner): Extend the comment.
2569
1a2ab13a
JK
25702010-06-07 Jan Kratochvil <jan.kratochvil@redhat.com>
2571
2572 Clear stale specific bp_location from former whole breakpoint.
2573 * breakpoint.c (delete_breakpoint): Move the stale referencing clear
2574 code ...
2575 (free_bp_location): ... here. Rename there the called function to
2576 bpstat_remove_bp_location_callback.
2577 (bpstat_remove_breakpoint_callback): Rename to ...
2578 (bpstat_remove_bp_location_callback): ... here, change DATA resolution
2579 to struct bp_location. Change the called function to
2580 bpstat_remove_bp_location. Create new declaration for the function.
2581 (bpstat_remove_breakpoint): Rename to ...
2582 (bpstat_remove_bp_location): ..., change the parameter to loc, adjust
2583 code for the new parameter type.
2584
16d6b4b7
NS
25852010-06-07 Nathan Sidwell <nathan@codesourcery.com>
2586
2587 * README: Make version-agnostic.
2588
7e314c57
JK
25892010-06-05 Jan Kratochvil <jan.kratochvil@redhat.com>
2590
2591 Fix duplicate types for single DIE.
2592 * dwarf2read.c (read_structure_type): Move set_descriptive_type after
2593 set_die_type.
2594 (read_array_type): Remove type initialization. Recheck get_die_type
2595 after initial die_type. Move set_die_type before set_descriptive_type.
2596 (read_set_type): New variable domain_type. Recheck get_die_type after
2597 initial die_type. Move attr initialization later.
2598 (read_tag_pointer_type, read_tag_reference_type): New variable
2599 target_type. Recheck get_die_type after initial die_type.
2600 (read_tag_ptr_to_member_type): Recheck get_die_type after initial
2601 die_type and die_containing_type.
2602 (read_tag_const_type, read_tag_volatile_type, read_subroutine_type):
2603 Recheck get_die_type after initial die_type.
2604 (read_subrange_type): Recheck get_die_type after initial die_type.
2605 Move set_die_type before set_descriptive_type.
2606 (set_die_type): Extend the function comment. Call complaint if DIE has
2607 some type already set.
2608
2f296114
VP
26092010-06-05 Vladimir Prus <vladimir@codesourcery.com>
2610
2611 * mi/mi-main.c (mi_cmd_list_thread_groups): Adjust
2612 for current naming of thread groups (iN, not N).
2613
554794dc
SDJ
26142010-06-04 Sergio Durigan Junior <sergiodj@redhat.com>
2615
2616 * ada-lang.c (ada_operator_length): Constify `struct expression'.
2617 * parse.c (operator_length): Likewise.
2618 (operator_length_standard): Likewise.
2619 * parser-defs.h (operator_length): Likewise.
2620 (operator_length_standard): Likewise.
2621 (struct exp_descriptor <operator_length>): Likewise.
2622
967cf477
DE
26232010-06-04 Doug Evans <dje@google.com>
2624
bddaacb9 2625 Add support for enabling/disabling individual pretty-printers.
967cf477
DE
2626 * python/py-prettyprint.c (search_pp_list): Skip disabled printers.
2627 * python/python-internal.h (gdbpy_enabled_cst): Declare.
2628 * python/python.c (gdbpy_enabled_cst): Define.
2629 (_initialize_python): Initialize gdbpy_enabled_cst.
2630 * NEWS: Add entry.
2631
2dec564e
JK
26322010-06-04 Jan Kratochvil <jan.kratochvil@redhat.com>
2633
2634 * breakpoint.c (update_global_location_list): Fix comment typo.
2635
44b5680a
HZ
26362010-06-04 Hui Zhu <teawater@gmail.com>
2637
2638 * dwarf2loc.c (disassemble_dwarf_expression): Change ul to l.
2639
e7a30f46
DE
26402010-06-03 Doug Evans <dje@google.com>
2641
2642 * configure.ac: Don't fail if python is unusable when
2643 configured with --with-python=auto.
2644 * configure: Regenerate.
2645
84b4420f
SW
26462010-06-03 Sami Wagiaalla <swagiaal@redhat.com>
2647
889bf7c5 2648 * dwarf2read.c (new_symbol): Remove redundant naming of symbol.
84b4420f 2649
df178451
PM
26502010-06-03 Pierre Muller <muller@ics.u-strasbg.fr>
2651
2652 * valprint.h (get_array_bounds): Change low and high parameter types
2653 to LONGEST *.
0407b3f1 2654 * valprint.c (get_array_bounds): Use get_discrete_bounds call to
df178451
PM
2655 compute bounds.
2656 (val_print_array_elements): Adapt to change above.
2657 * ada-valprint.c (print_optional_low_bound): Adapt to change above.
2658 * p-valprint.c (pascal_val_print): Likewise.
2659
fd5700c7
JK
26602010-06-02 Jan Kratochvil <jan.kratochvil@redhat.com>
2661
2662 * symfile.c (init_filename_language_table): New extensions .for, .FOR,
2663 .ftn, .FTN, .fpp, .FPP, .f90, .F90, .f95, .F95, .f03, .F03, .f08 and
2664 .F08.
2665
f55ee35c
JK
26662010-06-02 Jan Kratochvil <jan.kratochvil@redhat.com>
2667
2668 Support DW_TAG_module as separate namespaces.
2669 * dwarf2read.c (typename_concat): New parameter physname.
2670 (read_module_type): New function and declaration.
2671 (scan_partial_symbols): Scan also DW_TAG_module children.
2672 (partial_die_parent_scope): Accept scope even from DW_TAG_module. Pass
2673 to typename_concat backward compatible physname value 0.
2674 (partial_die_full_name, read_namespace_type): Pass to typename_concat
2675 backward compatible physname value 0.
2676 (add_partial_module, read_module): Remove FIXME comment.
2677 (process_die) <DW_TAG_module>: Set PROCESSING_HAS_NAMESPACE_INFO.
2678 (die_needs_namespace) <DW_TAG_variable>: Allow returning true even for
2679 DIEs under DW_TAG_module.
2680 (dwarf2_compute_name): Move the ada block for DW_AT_linkage_name and
2681 DW_AT_MIPS_linkage_name first, extend it for language_fortran
2682 && physname and return there instead of just setting NAME. Extend
2683 the main block for language_fortran. Pass physname parameter to the
2684 typename_concat call.
2685 (read_import_statement, read_func_scope, get_scope_pc_bounds)
2686 (load_partial_dies, determine_prefix): Support also DW_TAG_module.
2687 (new_symbol): Fill in cplus_specific.demangled_name if it is still
2688 missing from SYMBOL_SET_NAMES in the language_fortran case.
2689 (new_symbol) <DW_TAG_variable>: Force LOC_UNRESOLVED for gfortran module
2690 variables.
2691 (read_type_die) <DW_TAG_module>: New.
2692 (MAX_SEP_LEN): Increase to 7.
2693 (typename_concat): New parameter physname. New variable lead. Support
2694 also language_fortran.
2695 * f-exp.y (yylex): Consider : also as a symbol name character class.
2696 * f-lang.c: Include cp-support.h.
2697 (f_word_break_characters, f_make_symbol_completion_list): New functions.
2698 (f_language_defn): Use cp_lookup_symbol_nonlocal,
2699 f_word_break_characters and f_make_symbol_completion_list.
2700 * f-typeprint.c (f_type_print_base) <TYPE_CODE_MODULE>: New.
2701 * gdbtypes.h (enum type_code) <TYPE_CODE_MODULE>: New.
2702 * symtab.c (symbol_init_language_specific): Support language_fortran.
2703 (symbol_find_demangled_name): New comment on language_fortran.
2704 (symbol_natural_name, symbol_demangled_name): Use demangled_name even
2705 for language_fortran.
2706 (lookup_symbol_aux_local): Check imports also for language_fortran.
2707 (default_make_symbol_completion_list): Rename to ...
2708 (default_make_symbol_completion_list_break_on): ... this name. New
2709 parameter break_on, use it.
2710 (default_make_symbol_completion_list): New stub.
2711 * symtab.h (default_make_symbol_completion_list_break_on): New
2712 prototype.
2713
cb91c06a
JB
27142010-06-02 Joel Brobecker <brobecker@adacore.com>
2715
2716 * remote.c (remote_get_noisy_reply): Remove trailing "\n" in call
2717 to error.
2718
5c315b68
JK
27192010-06-02 Jan Kratochvil <jan.kratochvil@redhat.com>
2720
2721 * dwarf2read.c (typename_concat): Add const to the variable sep.
2722
9eae7c52
TT
27232010-06-02 Tom Tromey <tromey@redhat.com>
2724
2725 * dwarf2loc.h (dwarf2_per_cu_data): Declare.
2726 * dwarf2read.c (dwarf_stack_op_name): No longer static. Return
2727 type is const. Add 'def' argument. Add missing operators, remove
2728 unhandled ones.
2729 (decode_locdesc): Update.
2730 (dwarf2_always_disassemble): New global.
2731 (show_dwarf2_always_disassemble): New function.
2732 (_initialize_dwarf2_read): Add always-disassemble.
2733 (dwarf2_per_cu_offset_size): New function.
2734 * dwarf2loc.c (dwarf2_always_disassemble): Declare.
2735 (piece_end_p): New function.
2736 (locexpr_describe_location_piece): Replace 'size' argument with
2737 'end'. Use piece_end_p. Rewrite recognition of TLS. Recognize
2738 some constants. Remove errors.
2739 (disassemble_dwarf_expression): New function.
2740 (locexpr_describe_location_1): Use disassemble_dwarf_expression.
2741 Add 'offset_size' argument.
2742 (loclist_describe_location): Change output formatting.
2743 * dwarf2expr.h (dwarf_stack_op_name): Declare.
2744
7d3fe98e
SW
27452010-06-02 Sami Wagiaalla <swagiaal@redhat.com>
2746
2747 * cp-support.c (make_symbol_overload_list_adl_namespace): Handle
2748 anonymous type case.
2749
e77813c8
PM
27502010-06-02 Pierre Muller <muller@ics.u-strasbg.fr>
2751
2752 * dwarf2read.c (read_subrange_type): Handle missing base type
2753 according to Dwarf-2 specifications.
2754
7cf3118a
SDJ
27552010-06-01 Sergio Durigan Junior <sergiodj@redhat.com>
2756
2757 * expprint.c (print_subexp_standard): Remove exp_opcodes BINOP_INCL,
2758 BINOP_EXCL.
2759 (op_name_standard): Remove exp_opcodes BINOP_INCL, BINOP_EXCL,
2760 UNOP_LOWER, UNOP_UPPER, UNOP_LENGTH.
2761 (dump_subexp_body_standard): Remove exp_opcodes BINOP_INCL,
2762 BINOP_EXCL, UNOP_LOWER, UNOP_UPPER, UNOP_LENGTH, UNOP_CARD,
2763 UNOP_CHMAX, UNOP_CHMIN.
2764 * expression.h (enum exp_opcode) <BINOP_INCL, BINOP_EXCL,
2765 UNOP_LOWER, UNOP_UPPER, UNOP_LENGTH, UNOP_CARD, UNOP_CHMAX,
2766 UNOP_CHMIN>: Remove opcodes.
2767
ae4d0c03
PM
27682010-06-01 Pierre Muller <muller@ics.u-strasbg.fr>
2769
2770 * dwarf2read.c (read_func_scope): Do not complain for
2771 external function if bounds are not found.
2772
fa593d66
PA
27732010-06-01 Pedro Alves <pedro@codesourcery.com>
2774
2775 * NEWS: Mention gdbserver fast tracepoints support.
2776
cd44747c
PM
27772010-05-31 Pierre Muller <muller@ics.u-strasbg.fr>
2778
2779 * windows-nat.c (GetConsoleFontSize, GetCurrentConsoleFont):
2780 New macros.
2781 (windows_set_console_info): New function.
2782 (windows_create_inferior): Call windows_set_console_info
2783 if NEW_CONSOLE is true.
2784 (bad_GetCurrentConsoleFont, bad_GetConsoleFontSize): New functions.
2785 (_initialize_loadable): Initialize GetConsoleFontSize and
2786 GetCurrentConsoleFont.
2787
f6528abd
JK
27882010-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
2789
2790 * Makefile.in (RDYNAMIC): New.
2791 (SFILES): Add proc-service.list.
2792 * config/alpha/alpha-linux.mh (NAT_CDEPS): New.
2793 (LOADLIBES): Replace -rdynamic by $(RDYNAMIC).
2794 * config/arm/linux.mh: Likewise.
2795 * config/i386/linux.mh: Likewise.
2796 * config/i386/linux64.mh: Likewise.
2797 * config/ia64/linux.mh: Likewise.
2798 * config/m32r/linux.mh: Likewise.
2799 * config/m68k/linux.mh: Likewise.
2800 * config/mips/linux.mh: Likewise.
2801 * config/pa/linux.mh: Likewise.
2802 * config/powerpc/linux.mh: Likewise.
2803 * config/powerpc/ppc64-linux.mh: Likewise.
2804 * config/s390/s390.mh: Likewise.
2805 * config/sparc/linux.mh: Likewise.
2806 * config/sparc/linux64.mh: Likewise.
2807 * config/xtensa/linux.mh: Likewise.
2808 * configure.ac: New RDYNAMIC on native host and GCC.
2809 (solaris*): Replace -Wl,-export-dynamic by $RDYNAMIC.
2810 * configure: Regenerate.
2811 * proc-service.list: New.
2812
ca2a87a0
JK
28132010-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
2814
2815 * linux-nat.c (linux_nat_core_of_thread_1): Fix crash on invalid
2816 CONTENT.
2817
1e225492
JK
28182010-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
2819
2820 * linux-nat.c (linux_nat_wait_1): Do not call
2821 linux_nat_core_of_thread_1 on TARGET_WAITKIND_EXITED or
2822 TARGET_WAITKIND_SIGNALLED.
2823
e802dbe0
JB
28242010-05-27 Joel Brobecker <brobecker@adacore.com>
2825
2826 * ada-lang.c (ada_inferior_data): New struct.
2827 (ada_inferior_data): New static global.
2828 (ada_inferior_data_cleanup, get_ada_inferior_data, ada_inferior_exit)
2829 (ada_get_tsd_type): New functions.
2830 (ada_tag_name_2): Use ada_get_tsd_type instead of ada_find_any_type
2831 to look the tsd type up.
2832 (_initialize_ada_language): Attach ada_inferior_exit to inferior_exit
2833 event. Set ada_inferior_data.
2834
176a6961
PA
28352010-05-27 Pedro Alves <pedro@codesourcery.com>
2836
2837 * remote.c (unpack_varlen_hex): Remove forward declaration.
2838 (remote_console_output): Make static, and add forward declaration.
2839 * remote.h: Drop FIXME comment.
2840 (unpack_varlen_hex): Declare.
2841 (remote_console_output, remote_cisco_objfile_relocate)
2842 (deprecated_target_resume_hook, deprecated_target_wait_loop_hook):
2843 Delete declarations.
2844 * tracepoint.c: Include "remote.h".
2845 (unpack_varlen_hex): Delete declaration.
2846
88bfdde4
TT
28472010-05-27 Tom Tromey <tromey@redhat.com>
2848
2849 * dwarf2loc.c (struct piece_closure) <refc>: New field.
2850 (allocate_piece_closure): Initialize refc.
2851 (copy_pieced_value_closure): Use refc.
2852 (free_pieced_value_closure): Likewise.
2853
8c6363cf
TT
28542010-05-27 Tom Tromey <tromey@redhat.com>
2855
2856 * arm-tdep.c (push_stack_item): 'contents' now const.
2857 (arm_push_dummy_call): Make 'val' const. Use value_contents, not
2858 value_contents_writeable. Introduce new temporary.
2859
7ecb917e
TT
28602010-05-27 Tom Tromey <tromey@redhat.com>
2861
2862 * findcmd.c (parse_find_args): Use value_contents, not
2863 value_contents_raw.
2864
f42a0a33
TT
28652010-05-27 Tom Tromey <tromey@redhat.com>
2866
2867 * alpha-tdep.c (alpha_push_dummy_call): Make alpha_arg.contents
2868 const. Use value_contents, not value_contents_writeable.
2869
12b795ad
JB
28702010-05-27 Joel Brobecker <brobecker@adacore.com>
2871
2872 * ada-lang.c (ensure_lval): Replace call to value_contents_raw
2873 by call to value_contents.
2874
5a2e11c7
OS
28752010-05-27 Ozkan Sezer <sezeroz@gmail.com>
2876
2877 * MAINTAINERS: Add myself for write after approval privileges.
2878
ec685c5e
DE
28792010-05-26 Doug Evans <dje@google.com>
2880
0c4a4063
DE
2881 Allow python to find its files if moved from original location.
2882 * acinclude.m4 (GDB_AC_DEFINE_RELOCATABLE): New function.
2883 (GDB_AC_WITH_DIR): Call it.
2884 * configure.ac: Define WITH_PYTHON_PATH if we can find the
2885 python installation directory.
2886 * config.in: Regenerate.
2887 * configure: Regenerate.
2888 * defs.h (python_libdir): Declare.
2889 * main.c (python_libdir): Define.
2890 (captured_main): Initialize python_libdir.
2891 * python/python.c (_initialize_python): #ifdef WITH_PYTHON_PATH,
2892 call Py_SetProgramName to make sure python can find its libraries
2893 and modules.
2894
ec685c5e
DE
2895 * configure.ac: Try to use python's distutils to fetch compilation
2896 parameters.
2897 * configure: Regenerate.
2898 * python/python-config.py: New file.
2899
363a6e9f
OS
29002010-05-26 Ozkan Sezer <sezeroz@gmail.com>
2901
2902 * ser-tcp.c (net_open): Check error return from socket() call by its
2903 equality to -1 not by it being negative.
2904 (net_close): Likewise.
2905
dde08ee1
PA
29062010-05-26 Pedro Alves <pedro@codesourcery.com>
2907
2908 * NEWS: Mention the `qRelocInsn' feature.
2909 * gdbarch.sh (relocate_instruction): New.
2910 * amd64-tdep.c (rip_relative_offset): New.
2911 (append_insns): New.
2912 (amd64_relocate_instruction): New.
2913 (amd64_init_abi): Install it.
2914 * i386-tdep.c (append_insns): New.
2915 (i386_relocate_instruction): New.
2916 (i386_gdbarch_init): Install it.
2917 * remote.c (remote_get_noisy_reply): Handle qRelocInsn requests.
2918 * gdbarch.h, gdbarch.c: Regenerate.
2919
947bb88f
TT
29202010-05-26 Tom Tromey <tromey@redhat.com>
2921
2922 * dwarf2loc.h (struct dwarf2_locexpr_baton) <data>: Now const.
2923 (struct dwarf2_loclist_baton) <data>: Likewise.
2924 * dwarf2loc.c (find_location_expression): Constify return type.
2925 (dwarf2_evaluate_loc_desc): Make 'data' argument const.
2926 (dwarf2_loc_desc_needs_frame): Likewise.
2927 (loclist_read_variable): Constify.
2928 (loclist_describe_location): Likewise.
2929 (loclist_tracepoint_var_ref): Likewise.
2930
0d45f56e
TT
29312010-05-25 Tom Tromey <tromey@redhat.com>
2932
2933 * dwarf2loc.c (dwarf_expr_frame_base): Constify.
2934 (dwarf_expr_frame_base_1): Likewise.
2935 (read_pieced_value): Update.
2936 (needs_frame_frame_base): Constify.
2937 (dwarf2_tracepoint_var_loc): Likewise.
2938 (dwarf2_tracepoint_var_access): Likewise.
2939 (locexpr_describe_location_piece): Likewise.
2940 (locexpr_describe_location_1): Likewise.
2941 * dwarf2expr.h (struct dwarf_expr_context) <get_frame_base>:
2942 Constify.
2943 (data): Now const.
2944 (struct dwarf_expr_piece) <v.literal.data>: Likewise.
2945 (dwarf_expr_eval, read_uleb128, read_sleb128)
2946 (dwarf2_read_address): Update.
2947 * dwarf2expr.c (dwarf_expr_eval): Constify.
2948 (read_uleb128): Likewise.
2949 (read_sleb128): Likewise.
2950 (dwarf2_read_address): Likewise.
2951 (require_composition): Likewise.
2952 (execute_stack_op): Likewise.
2953 * dwarf2-frame.h (struct dwarf2_frame_state_reg) <loc.exp>: Now a
2954 "const gdb_byte *".
2955 * dwarf2-frame.c (struct dwarf2_frame_state_reg_info) <cfa_exp>:
2956 Now const.
2957 (no_get_frame_base): Constify.
2958 (execute_stack_op): Likewise.
2959 (execute_cfa_program): Likewise.
2960 (read_encoded_value): Likewise.
2961
07ca107c
DE
29622010-05-25 Doug Evans <dje@google.com>
2963
e34838f0
DE
2964 * ser-pipe.c (pipe_open): Ignore SIGINTs in child.
2965
01f69b38
DE
2966 * event-loop.h (GDB_READABLE, GDB_WRITABLE, GDB_EXCEPTION): Move to ...
2967 * event-loop.c: ... here.
2968 * tui/tui-io.c (tui_readline_output): Rename parameter `code' to
2969 `error' for clarity.
2970 (tui_getc): Pass correct value for `error' parameter to
2971 tui_readline_output.
2972
07ca107c
DE
2973 Add python gdb.GdbError and gdb.string_to_argv.
2974 * NEWS: Document them.
2975 * python/py-cmd.c (cmdpy_function): Don't print a traceback if
2976 the exception is gdb.GdbError. Print a second traceback if there's
2977 an error computing the error message.
2978 (gdbpy_string_to_argv): New function.
2979 * python/py-utils.c (gdbpy_obj_to_string): New function.
2980 (gdbpy_exception_to_string): New function.
2981 * python/python-internal.h (gdbpy_string_to_argv): Declare.
2982 (gdbpy_obj_to_string, gdbpy_exception_to_string): Declare.
2983 (gdbpy_gdberror_exc): Declare.
2984 * python/python.c (gdbpy_gdberror_exc): New global.
2985 (_initialize_python): Initialize gdbpy_gdberror_exc and create
2986 gdb.GdbError.
2987 (GdbMethods): Add string_to_argv.
2988
5572ce1f
PM
29892010-05-21 Pierre Muller <muller@ics.u-strasbg.fr>
2990
2991 * windows-nat.c (display_selector): Call GetLastError to give better
2992 failure explanation.
2993
acd5838a
PA
29942010-05-24 Pedro Alves <pedro@codesourcery.com>
2995
2996 * config.in: Regenerate.
2997
b26a4dcb
JK
29982010-05-23 Jan Kratochvil <jan.kratochvil@redhat.com>
2999
3000 Code cleanup.
3001 * target.c (push_target): Return only void. Remove the return value
3002 comment.
3003 * target.h (push_target): Return only void.
3004
f434ba03
PA
30052010-05-23 Pedro Alves <pedro@codesourcery.com>
3006
3007 Update gnulib from latest git.
3008 (250b80067c1e1d8faa0c42fb572f721975b929c5)
3009
3010 * gnulib/memcmp.c: Removed.
3011 * gnulib/memchr.valgrind: New.
3012 * gnulib/stddef.in.h: New.
3013 * gnulib/Makefile.am: Updated.
3014 * gnulib/memchr.c: Updated.
3015 * gnulib/memmem.c: Updated.
3016 * gnulib/stdint.in.h: Updated.
3017 * gnulib/str-two-way.h: Updated.
3018 * gnulib/string.in.h: Updated.
3019 * gnulib/wchar.in.h: Updated.
3020
3021 * gnulib/extra/link-warning.h: Removed.
3022 * gnulib/extra/c++defs.h: New.
3023 * gnulib/extra/warn-on-use.h: New.
3024 * gnulib/extra/arg-nonnull.h: Updated.
3025
3026 * gnulib/m4/extensions.m4: Updated.
3027 * gnulib/m4/gnulib-cache.m4: Updated.
3028 * gnulib/m4/gnulib-common.m4: Updated.
3029 * gnulib/m4/gnulib-comp.m4: Updated.
3030 * gnulib/m4/gnulib-tool.m4: Updated.
3031 * gnulib/m4/include_next.m4: Updated.
3032 * gnulib/m4/longlong.m4: Updated.
3033 * gnulib/m4/memchr.m4: Updated.
3034 * gnulib/m4/memmem.m4: Updated.
3035 * gnulib/m4/stdint.m4: Updated.
3036 * gnulib/m4/string_h.m4: Updated.
3037 * gnulib/m4/memcmp.m4: Removed.
3038 * gnulib/m4/onceonly_2_57.m4: Removed.
3039 * gnulib/m4/00gnulib.m4: New.
3040 * gnulib/m4/mmap-anon.m4: New.
3041 * gnulib/m4/multiarch.m4: New.
3042 * gnulib/m4/onceonly.m4: New.
3043 * gnulib/m4/stddef_h.m4: New.
3044 * gnulib/m4/warn-on-use.m4: New.
3045 * gnulib/m4/wchar.m4: Removed.
3046 * gnulib/m4/wchar_h.m4: New.
3047 * gnulib/m4/wchar_t.m4: New.
3048 * gnulib/m4/wint_t.m4: New.
3049
3050 * aclocal.m4: Regenerate.
3051 * config.in: Likewise.
3052 * configure: Likewise.
3053 * gnulib/Makefile.in: Likewise.
3054
d3b1e874
TT
30552010-05-21 Tom Tromey <tromey@redhat.com>
3056
3057 * dwarf2loc.c (extract_bits_primitive): New function.
3058 (extract_bits): Likewise.
3059 (insert_bits): Likewise.
3060 (copy_bitwise): Likewise.
3061 (read_pieced_value): Do all operations in bits.
3062 (write_pieced_value): Likewise.
3063 * dwarf2expr.h (struct dwarf_expr_piece) <offset>: New field.
3064 * dwarf2expr.c (add_piece): New arguments bit_piece, offset.
3065 Always use xrealloc to resize piece array.
3066 (execute_stack_op) <DW_OP_reg0>: Handle DW_OP_bit_piece.
3067 <DW_OP_piece>: Update.
3068 <DW_OP_bit_piece>: New case.
3069
cb826367
TT
30702010-05-21 Tom Tromey <tromey@redhat.com>
3071
3072 * dwarf2loc.c (read_pieced_value): Exit loop when result is full.
3073 <DWARF_VALUE_OPTIMIZED_OUT>: New case.
3074 * dwarf2expr.h (enum dwarf_value_location)
3075 <DWARF_VALUE_OPTIMIZED_OUT>: New constant.
3076 * dwarf2expr.c (dwarf_expr_stack_empty_p): New function.
3077 (add_piece): Handle empty piece.
3078 (execute_stack_op) <DW_OP_piece>: Handle
3079 DWARF_VALUE_OPTIMIZED_OUT.
3080
74de6778
TT
30812010-05-21 Tom Tromey <tromey@redhat.com>
3082
3083 * eval.c (evaluate_subexp_standard) <BINOP_SUBSCRIPT>: Call
3084 evaluate_subexp, not evaluate_subexp_with_coercion.
3085
f346a30d
PM
30862010-05-21 Pierre Muller <muller@ics.u-strasbg.fr>
3087
3088 * dwarf2read.c (new_symbol): Handle DW_AT_variable_parameter
3089 attribute.
3090
afd74c5f
TT
30912010-05-21 Tom Tromey <tromey@redhat.com>
3092
3093 * dwarf2loc.c (read_pieced_value): Work properly when 'v' has an
3094 offset.
3095 (write_pieced_value): Likewise.
3096
90e7c2c5
PM
30972010-05-21 Pierre Muller <muller@ics.u-strasbg.fr>
3098
3099 * dwarf2read.c (process_die): Also allow DW_TAG_const_type
3100 and DW_TAG_volatile_type.
3101 (new_symbol): Likewise.
3102
8148cf8d
PM
31032010-05-20 Pierre Muller <muller@ics.u-strasbg.fr>
3104
3105 * p-valprint.c (pascal_val_print): Call get_array_bounds
3106 to obtain the number of elements in an array.
3107
3a1d4620
DE
31082010-05-19 Doug Evans <dje@google.com>
3109
0bf0f8c4
DE
3110 * python.c (gdbpy_print_stack): Ensure output ends with a newline.
3111
3a1d4620
DE
3112 * python.c (source_python_script): Add comment.
3113 (source_python_script_for_objfile): Remove unnecessary call to
3114 gdbpy_print_stack.
3115
dc21167c
JK
31162010-05-18 Jan Kratochvil <jan.kratochvil@redhat.com>
3117 Sergio Durigan Junior <sergiodj@redhat.com>
3118
3119 Code cleanup.
3120 * parse.c (exp_iterate): Use operator_length wrapper function.
3121
5b4ee69b
MS
31222010-05-18 Michael Snyder <msnyder@vmware.com>
3123
3124 * ada-lang.c: White space.
3125 * ada-typeprint.c: White space.
3126 * ada-valprint.c: White space.
3127 * addrmap.c: White space.
3128 * auxv.c: White space.
3129 * ax-gdb.c: White space.
3130
e17c9e56
HZ
31312010-05-18 Hui Zhu <teawater@gmail.com>
3132
3133 * linux-fork.c (inferior_call_waitpid_cleanup): Add check
3134 for oldfp.
3135 (inferior_call_waitpid): Move make_cleanup out of check.
3136 Check the return of waitpid.
3137 (delete_checkpoint_command): Add pptid to save fi->parent_ptid.
3138
a109c7c1
MS
31392010-05-17 Michael Snyder <msnyder@vmware.com>
3140
1c5313c5
MS
3141 * tui/tui.c: White space.
3142 * tui/tui-data.c: White space.
3143 * tui/tui-disasm.c: White space.
3144 * tui/tui-file.c: White space.
3145 * tui/tui-interp.c: White space.
3146 * tui/tui-main.c: White space.
3147 * tui/tui-out.c: White space.
3148 * tui/tui-regs.c: White space.
3149 * tui/tui-source.c: White space.
3150 * tui/tui-stack.c: White space.
3151 * tui/tui-win.c: White space.
3152 * tui/tui-winsource.c: White space.
3153
f4a14ae6
MS
3154 * procfs.c: White space.
3155
d59b6f6c
MS
3156 * python/py-auto-load.c: White space.
3157 * python/py-block.c: White space.
3158 * python/py-breakpoint.c: White space.
3159 * python/py-cmd.c: White space.
3160 * python/py-function.c: White space.
3161 * python/py-lazy-string.c: White space.
3162 * python/py-objfile.c: White space.
3163 * python/py-param.c: White space.
3164 * python/py-prettyprint.c: White space.
3165 * python/py-progspace.c: White space.
3166 * python/py-symtab.c: White space.
3167 * python/python.c: White space.
3168 * python/py-type.c: White space.
3169 * python/py-utils.c: White space.
3170 * python/py-value.c: White space.
3171
102040f0
MS
3172 * mi/mi-cmd-break.c: White space.
3173 * mi/mi-cmd-env.c: White space.
3174 * mi/mi-cmds.c: White space.
3175 * mi/mi-cmd-stack.c: White space.
3176 * mi/mi-cmd-var.c: White space.
3177 * mi/mi-console.c: White space.
3178 * mi/mi-getopt.c: White space.
3179 * mi/mi-interp.c: White space.
3180 * mi/mi-main.c: White space.
3181 * mi/mi-out.c: White space.
3182 * mi/mi-parse.c: White space.
3183
cdb27c12
MS
3184 * cli/cli-cmds.c: White space.
3185 * cli/cli-decode.c: White space.
3186 * cli/cli-dump.c: White space.
3187 * cli/cli-interp.c: White space.
3188 * cli/cli-logging.c: White space.
3189 * cli/cli-script.c: White space.
3190 * cli/cli-setshow.c: White space.
3191
a109c7c1
MS
3192 * valarith.c: White space.
3193 * valops.c: White space.
3194 * valprint.c: White space.
3195 * value.c: White space.
3196 * varobj.c: White space.
3197 * xcoffread.c: White space.
3198 * xml-support.c: White space.
3199 * xml-tdesc.c: White space.
3200
3872d37d
AS
32012010-05-17 Andreas Schwab <schwab@redhat.com>
3202
3203 PR gdb/11092
3204 * c-lang.c (c_printstr): Compute real length of NUL terminated
3205 string at first.
3206
0cce5bd9
JB
32072010-05-17 Joel Brobecker <brobecker@adacore.com>
3208
3209 * parse.c (parse_exp_in_context): When block is not NULL, use
3210 its associated language to parse the expression instead of
3211 the current_language.
3212
5f19d646
JB
32132010-05-17 Joel Brobecker <brobecker@adacore.com>
3214
3215 * jv-lang.c (java_lookup_class): Remove commented out code.
3216 (type_from_class): Likewise.
3217 (java_op_print_tab): Remove commented-out elements.
3218
28c85d6c
JB
32192010-05-17 Joel Brobecker <brobecker@adacore.com>
3220
3221 * ada-lang.c (to_fixed_range_type): The the raw index type as
3222 argument instead of the raw type name. Remove orig_type parameter.
3223 Update calls throughout.
3224 (ada_fixup_array_indexes_type): New function.
3225 (ada_array_bound_from_type): Add call to ada_fixup_array_indexes_type.
3226 * ada-lang.h (ada_fixup_array_indexes_type): Add declaration.
3227 * ada-typeprint.c (print_range_type): Renames print_range_type_named.
3228 Remove name parameter.
3229 (print_array_type): Add call to ada_fixup_array_indexes_type.
3230 Update calls to print_range_type.
3231 (ada_print_type): Update calls to print_range_type.
3232
d09039dd
PM
32332010-05-17 Pierre Muller <muller@ics.u-strasbg.fr>
3234
3235 * dwarf2read.c (read_set_type): Set type length if
3236 DW_AT_byte_size attribute is present.
3237
7a081a30
PM
32382010-05-17 Pierre Muller <muller@ics.u-strasbg.fr>
3239
3240 * p-valprint.c (pascal_val_print): Handle set type if range limits
3241 are undefined but size is known.
3242
77382aee
PA
32432010-05-17 Pedro Alves <pedro@codesourcery.com>
3244
3245 * procfs.c: Reformat.
3246
433759f7
MS
32472010-05-16 Michael Snyder <msnyder@vmware.com>
3248
5d502164
MS
3249 * target.c: White space.
3250 * target-descriptions.c: White space.
3251 * target-memory.c: White space.
3252 * thread.c: White space.
3253 * top.c: White space.
3254 * tracepoint.c: White space.
3255 * trad-frame.c: White space.
3256 * tramp-frame.c: White space.
3257 * ui-file.c: White space.
3258 * ui-out.c: White space.
3259 * user-regs.c: White space.
3260 * utils.c: White space.
3261
433759f7
MS
3262 * scm-exp.c: White space.
3263 * scm-lang.c: White space.
3264 * scm-valprint.c: White space.
3265 * sentinel-frame.c: White space.
3266 * ser-base.c: White space.
3267 * ser-go32.c: White space.
3268 * serial.c: White space.
3269 * ser-mingw.c: White space.
3270 * ser-pipe.c: White space.
3271 * ser-tcp.c: White space.
3272 * ser-unix.c: White space.
3273 * solib.c: White space.
3274 * solib-darwin.c: White space.
3275 * solib-frv.c: White space.
3276 * solib-irix.c: White space.
3277 * solib-osf.c: White space.
3278 * solib-pa64.c: White space.
3279 * solib-som.c: White space.
3280 * solib-spu.c: White space.
3281 * solib-svr4.c: White space.
3282 * solib-target.c: White space.
3283 * source.c: White space.
3284 * stabsread.c: White space.
3285 * stack.c: White space.
3286 * std-regs.c: White space.
3287 * symfile.c: White space.
3288 * symmisc.c: White space.
3289 * symtab.c: White space.
3290
dd304d53
MS
32912010-05-16 Michael Snyder <msnyder@vmware.com>
3292
3293 * source.c (_initialize_source): Add "rev" as an abbreviation
3294 for the "reverse-search" command.
3295
a744cf53
MS
32962010-05-16 Michael Snyder <msnyder@vmware.com>
3297
123f5f96
MS
3298 * record.c: White space.
3299 * regcache.c: White space.
3300 * reggroups.c: White space.
3301 * remote-fileio.c: White space.
3302 * remote-m32r-sdi.c: White space.
3303 * remote-mips.c: White space.
3304 * remote-sim.c: White space.
a744cf53
MS
3305 * remote.c: White space.
3306 (process_g_packet): Remove orphan braces.
3307
b8d56208
MS
33082010-05-15 Michael Snyder <msnyder@vmware.com>
3309
ad3bbd48
MS
3310 * parse.c: White space.
3311 * p-lang.c: White space.
3312 * posix-hdep.c: White space.
3313 * printcmd.c: White space.
3314 * progspace.c: White space.
3315 * prologue-value.c: White space.
3316 * psymtab.c: White space.
3317 * p-typeprint.c: White space.
3318 * p-valprint.c: White space.
3319
5cc80db3
MS
3320 * objc-lang.c: White space.
3321 * objfiles.c: White space.
3322 * observer.c: White space.
3323 * osabi.c: White space.
3324 * osdata.c: White space.
3325
b8d56208
MS
3326 * m2-lang.c: White space.
3327 * m2-valprint.c: White space.
3328 * macrocmd.c: White space.
3329 * macroexp.c: White space.
3330 * macroscope.c: White space.
3331 * macrotab.c: White space.
3332 * main.c: White space.
3333 * maint.c: White space.
3334 * mdebugread.c: White space.
3335 * memattr.c: White space.
3336 * minsyms.c: White space.
3337 * monitor.c: White space.
3338
9a619af0
MS
33392010-05-14 Michael Snyder <msnyder@vmware.com>
3340
e0881a8e
MS
3341 * jv-lang.c: White space.
3342 * jv-typeprint.c: White space.
3343 * jv-valprint.c: White space.
3344 * language.c: White space.
3345 * libunwind-frame.c: White space.
3346 * linespec.c: White space.
3347 * linux-nat.c: White space.
3348 * linux-record.c: White space.
3349 * linux-thread-db.c: White space.
3350
abbb1732
MS
3351 * infcall.c: White space.
3352 * inf-child.c: White space.
3353 * infcmd.c: White space.
3354 * inferior.c: White space.
3355 * inf-loop.c: White space.
3356 * inflow.c: White space.
3357 * inline-frame.c: White space.
3358 * interps.c: White space.
3359
d8734c88
MS
3360 * gcore.c: White space.
3361 * gdb.c: White space.
3362 * gdbtypes.c: White space.
3363 * gnu-nat.c: White space.
3364 * gnu-v2-abi.c: White space.
3365 * gnu-v3-abi.c: White space.
3366
bb9bcb69
MS
3367 * findcmd.c: White space.
3368 * findvar.c: White space.
3369 * fork-child.c: White space.
3370 * frame-base.c: White space.
3371 * frame.c: White space.
3372 * frame-unwind.c: White space.
3373 * f-valprint.c: White space.
3374
d7f9d729
MS
3375 * elfread.c: White space.
3376 * environ.c: White space.
3377 * eval.c: White space.
3378 * event-loop.c: White space.
3379 * event-top.c: White space.
3380 * exceptions.c: White space.
3381 * exec.c: White space.
3382 * expprint.c: White space.
3383
9a619af0
MS
3384 * dbxread.c: White space.
3385 * dcache.c: White space.
3386 * disasm.c: White space.
3387 * doublest.c: White space.
3388 * dsrec.c: White space.
3389 * dummy-frame.c: White space.
3390 * dwarf2expr.c: White space.
3391 * dwarf2-frame.c: White space.
3392 * dwarf2loc.c: White space.
3393 * dwarf2read.c: White space.
3394
88d4aea7
PM
33952010-05-14 Phil Muldoon <pmuldoon@redhat.com>
3396
889bf7c5 3397 PR python/11482
88d4aea7
PM
3398
3399 * python/py-value.c (valpy_hash): New function.
3400 (value_object_type): Register valpy_hash.
3401
7a298875 34022010-05-14 Hui Zhu <teawater@gmail.com>
0407b3f1 3403 Michael Snyder <msnyder@vmware.com>
7a298875
HZ
3404
3405 * linux-fork.c (gdbthread.h): New include.
3406 (fork_info): Add parent_ptid.
3407 (inferior_call_waitpid_cleanup, inferior_call_waitpid): New
3408 functions.
3409 (delete_checkpoint_command): Call inferior_call_waitpid.
3410 (checkpoint_command): Set parent_ptid.
3411
c14feecc
MS
34122010-05-13 Michael Snyder <msnyder@vmware.com>
3413
6595d32b
MS
3414 * dictionary.c: Re-indent to GNU coding standard.
3415
c5504eaf
MS
3416 * charset.c: White space.
3417 * c-lang.c: White space.
3418 * cli-out.c: White space.
3419 * coffread.c: White space.
3420 * complaints.c: White space.
3421 * completer.c: White space.
3422 * corefile.c: White space.
3423 * corelow.c: White space.
3424 * cp-abi.c: White space.
3425 * cp-namespace.c: White space.
3426 * cp-support.c: White space.
3427 * cp-valprint.c: White space.
3428 * c-typeprint.c: White space.
3429 * c-valprint.c: White space.
cc59ec59
MS
3430 * blockframe.c: White space.
3431 * breakpoint.c: White space.
3432 * buildsym.c: White space.
3433 * blockframe.c: White space.
b6de9da4 3434 * bcache.c: White space.
05c547f6
MS
3435 * gdbarch.sh: White space, add blank lines.
3436 * arch-utils.c: Ditto.
3437 * gdbarch.c: Regenerate.
1c4d3f96 3438 * frame.c: White space, add blank lines.
f89b749f
MS
3439 * stack.c: White space, add blank lines.
3440 (initialize_stack): Remove long-dead code.
c14feecc 3441
a2d33775
JK
34422010-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
3443
3444 Code cleanup.
3445 * dwarf2loc.c (dwarf2_evaluate_loc_desc): Change the parameter to type.
3446 (locexpr_read_variable, loclist_read_variable): Update the callers.
3447
33ac96f0
JK
34482010-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
3449
3450 Code cleanup.
3451 * dwarf2read.c (die_type, die_descriptive_type): Remove variable type.
3452 Remove check of NULL returned by tag_type_to_type.
3453 (die_containing_type): Remove variable type. Remove type_die variable
3454 initialization. Remove check of NULL returned by tag_type_to_type.
3455
f5a010c0
PM
34562010-05-11 Pierre Muller <muller@ics.u-strasbg.fr>
3457
3458 PR exp/11530.
3459 * gdbtypes.c (lookup_struct_elt_type): Also lookup
3460 names of unnamed structures or unions.
3461
bf701c2c
PM
34622010-05-11 Pierre Muller <muller@ics.u-strasbg.fr>
3463
3464 * procfs.c (proc_watchpoint_address): New function.
0407b3f1 3465 (procfs_stopped_by_watchpoint): Remove useless check after
bf701c2c
PM
3466 find_procinfo_or_die call.
3467 (procfs_stopped_data_address): New function.
3468 (procfs_use_watchpoints): Register new watchpoint related function.
3469
d02691ef
TT
34702010-05-11 Tom Tromey <tromey@redhat.com>
3471
3472 * eval.c (evaluate_subexp_standard): Revert inadvertent change.
3473
e0627e85
MS
34742010-05-10 Michael Snyder <msnyder@vmware.com>
3475
3476 * utils.c: White space cleanup.
3477
cc73bb8c
TT
34782010-05-10 Tom Tromey <tromey@redhat.com>
3479
3480 * eval.c (ptrmath_type_p): Add 'lang' argument.
3481 (evaluate_subexp_standard): Update.
3482 (evaluate_subexp_with_coercion): Update.
3483 * language.h (CAST_IS_CONVERSION): Add 'LANG' argument.
3484
c02866a0
MS
34852010-05-10 Michael Snyder <msnyder@vmware.com>
3486
3487 * utils.c (do_fclose_cleanup) Restore local variable.
3488
06280d23
DE
34892010-05-09 Doug Evans <dje@google.com>
3490
3491 * record.c (init_record_core_ops): Rename record_core to record-core.
3492
fa07e785
JB
34932010-05-08 Joel Brobecker <brobecker@adacore.com>
3494
3495 Implement task switching on pa-hpux.
3496 * inf-ttrace.c (inf_ttrace_get_ada_task_ptid): New function.
3497 (inf_ttrace_target): Set t->to_get_ada_task_ptid.
3498
4c680d1d
PM
34992010-05-08 Pierre Muller <muller@ics.u-strasbg.fr>
3500
3501 * valops.c (find_overload_match): Add missing i18n markup.
3502
28e176a6
PM
35032010-05-08 Pierre Muller <muller@ics.u-strasbg.fr>
3504
3505 * p-exp.y (exp : SIZEOF '(' exp ')'): New rule.
3506
48cb83fd
JK
35072010-05-08 Jan Kratochvil <jan.kratochvil@redhat.com>
3508
3509 * dwarf2read.c (typename_concat): Use (char *) NULL terminated stdarg
3510 list for the obconcat call.
3511 * mdebugread.c (parse_symbol): Likewise.
3512 * stabsread.c (define_symbol, read_member_functions, read_cpp_abbrev):
3513 Likewise.
3514 * symfile.c (obconcat): Replace the s1, s2 and s3 parameters by `...'.
3515 New variable ap. Remove variables len and val.
3516 * symfile.h (obconcat): Likewise for the prototype.
3517
f92adf3c
MS
35182010-05-07 Michael Snyder <msnyder@vmware.com>
3519
3520 * python/python.c (execute_gdb_command): Remove unused variables.
3521 * python/py-block.c (gdbpy_block_for_pc): Remove unused variable.
0407b3f1 3522 * python/py-breakpoint.c (gdbpy_breakpoint_created):
f92adf3c
MS
3523 Remove unused variable.
3524 * python/py-cmd.c (cmdpy_function): Remove unused variable.
3525 (cmdpy_completer): Remove unused variable.
3526 * python/py-frame.c (frapy_find_sal): Remove unused variable.
3527 * python/py-function.c (fnpy_call): Remove unused variable.
3528 * python/py-objfile.c (objfile_to_objfile_object):
3529 Remove unused variable.
3530 * python/py-param.c (parmpy_init): Remove unused variable.
0407b3f1 3531 * python/py-prettyprint.c (apply_varobj_pretty_printer):
f92adf3c
MS
3532 Remove unused variable.
3533 (gdbpy_default_visualizer): Remove unused variable.
3534 * python/py-progspace.c (pspace_to_pspace_object):
3535 Remove unused variable.
0407b3f1 3536 * python/py-symtab.c (symtab_and_line_to_sal_object):
f92adf3c 3537 Remove unused variable.
0407b3f1 3538 * python/py-type.c (typy_template_argument):
f92adf3c
MS
3539 Remove unused variable.
3540 * python/py-value.c (valpy_string): Remove unused variable.
3541 (convert_value_from_python): Remove unused variables.
3542
d160942f
MS
35432010-05-07 Michael Snyder <msnyder@vmware.com>
3544
3545 * valops.c (value_cast_pointers): Restore unused variable 'type1',
3546 and use it to compute variable 't1'.
3547
587542ab
JB
35482010-05-07 Joel Brobecker <brobecker@adacore.com>
3549
3550 * ada-lang.c (assign_aggregate): Remove unused variable.
3551
7322dca9
SW
35522010-05-07 Sami Wagiaalla <swagiaal@redhat.com>
3553
3554 PR C++/7943:
3555 * valops.c (find_overload_match): Handle fsym == NULL case.
3556 Add int no_adl argument.
3557 (find_oload_champ_namespace_loop): Call make_symbol_overload_list_adl
3558 when appropriate.
3559 Add int no_adl argument.
3560 (find_oload_champ_namespace): Add int no_adl argument.
3561 * parse.c (operator_length_standard): Return length for OP_ADL_FUNC
3562 expression.
3563 * expprint.c (op_name_standard): Added string for OP_ADL_FUNC case.
3564 * eval.c (evaluate_subexp_standard): Added OP_ADL_FUNC case.
3565 Evaluate arguments and use them to perform ADL lookup.
3566 Pass no_adl argument to find_overload_match.
3567 Disable adl lookup when evaluating a fully qualified OP_FUNCALL.
3568 * cp-support.h: Added prototype for
3569 make_symbol_overload_list_namespace.
3570 * cp-support.c (make_symbol_overload_list_namespace): New function.
3571 (make_symbol_overload_list_adl_namespace): New function.
3572 (make_symbol_overload_list_adl): New function.
3573 (make_symbol_overload_list_using): Moved code to add function to
3574 overload set to make_symbol_overload_list_namespace.
3575 * c-exp.y: create UNKNOWN_CPP_NAME token.
3576 Add parse rule for ADL functions.
3577 (classify_name): Recognize an UNKNOWN_CPP_NAME.
3578
3f1f6884
JK
35792010-05-07 Jan Kratochvil <jan.kratochvil@redhat.com>
3580
3581 * fbsd-nat.c (fbsd_make_corefile_notes): Add cast to NULL used as
3582 sentinel.
3583
3caf13b4
JB
35842010-05-07 Joel Brobecker <brobecker@adacore.com>
3585
3586 Implement task switching on solaris targets.
3587 * sol-thread.c (thread_db_find_thread_from_tid)
3588 (sol_get_ada_task_ptid): New functions.
3589 (init_sol_thread_ops): Set sol_thread_ops.to_get_ada_task_ptid.
3590
94b0dee1
PA
35912010-05-07 Pedro Alves <pedro@codesourcery.com>
3592
3593 * remote.c (remote_query_supported_append): Use reconcat.
3594 (remote_query_supported): Install a cleanup. Use reconcat.
3595
1408c251
PA
35962010-05-07 Pedro Alves <pedro@codesourcery.com>
3597
3598 * gdbarch.sh (qsupported): Delete.
3599 * gdbarch.h, gdbarch.c: Regenerate.
3600 * remote.c (remote_query_supported): Remove use of
3601 gdbarch_qsupported.
3602
f8e50cfe
SDJ
36032010-05-06 Sergio Durigan Junior <sergiodj@redhat.com>
3604
3605 * xml-syscall.c (syscall_start_syscalls_info): Remove unused
3606 function.
3607
8ea13695
MS
36082010-05-06 Michael Snyder <msnyder@vmware.com>
3609
c6913b7d
MS
3610 * xml-support.c (xinclude_start_include): Delete unused variable.
3611 (xml_process_xincludes): Delete unused variable.
3612 * xml-syscall.c (syscall_parse_xml): Delete unused variable.
3613 * target-descriptions.c (tdesc_gdb_type): Delete unused variable.
3614 (tdesc_find_arch_register): Delete unused variable.
3615 (tdesc_use_registers): Delete unused variable.
3616 * xml-tdesc.c (tdesc_start_target): Delete unused variable.
3617 * inferior.c (print_inferior): Delete unused variable.
3618 * record.c (record_open_1): Delete unused variable.
3619 (record_restore): Delete unused variable.
3620 (cmd_record_save): Delete unused variable.
3621 * gcore.c (derive_heap_segment): Delete unused variable.
3622 (objfile_find_memory_regions): Use unused variable.
3623 * jit.c (jit_inferior_init): Delete unused variable.
3624 * progspace.c (clone_program_space): Delete unused variable.
3625 (pspace_empty_p): Delete unused variable.
0407b3f1
AS
3626
3627 * frame-unwind.c (frame_unwind_find_by_frame):
1c5465ac
MS
3628 Delete unused variable.
3629 * gnu-v2-abi.c (gnuv2_value_rtti_type): Delete unused variable.
3630 * cp-support.c (mangled_name_to_comp): Delete unused variable.
3631 (method_name_from_physname): Delete unused variable.
3632 (cp_func_name): Delete unused variable.
3633 (cp_validate_operator): Delete unused variable.
0407b3f1 3634 * cp-namespace.c (cp_scan_for_anonymous_namespaces):
1c5465ac 3635 Delete unused variable.
0407b3f1 3636 * trad-frame.c (trad_frame_get_prev_register):
1c5465ac
MS
3637 Delete unused variable.
3638 * tramp-frame.c (tramp_frame_cache): Delete unused variable.
3639
1be757cf
MS
3640 * serial.c (serial_for_fd): Delete unused variable.
3641 * mdebugread.c (psymtab_to_symtab_1): Delete unused variable.
3642 * top.c (execute_command): Delete unused variable.
3643 (init_main): Delete unused variable.
3644 * utils.c (do_fclose_cleanup): Delete unused variable.
3645 (do_all_inferior_continuations): Delete unused variable.
3646 (initialize_utils): Delete unused variable.
3647 (internal_problem_mode): Delete unused global.
3648 * frame.c (get_prev_frame): Delete unused global.
3649 (get_frame_locals_address): Delete unused global.
3650 (get_frame_args_address): Delete unused global.
3651
9216103f
MS
3652 * p-typeprint.c (pascal_type_print_base): Delete unused variable.
3653 (pascal_type_print_varspec_prefix): Delete unused variable.
3654 * f-typeprint.c (f_type_print_base): Delete unused variable.
3655 (f_type_print_varspec_suffix): Delete unused variable.
3656 * m2-typeprint.c (m2_print_type): Delete unused variable.
3657 (m2_long_set): Delete unused variable.
3658 * ada-valprint.c (ada_val_print_1): Delete unused variable.
3659 * d-valprint.c (dynamic_array_type): Delete unused variable.
0407b3f1 3660 * f-valprint.c (f77_get_dynamic_length_of_aggregate):
9216103f
MS
3661 Delete unused variable.
3662 (f77_create_arrayprint_offset_tbl): Delete unused variable.
3663 * m2-valprint.c (m2_val_print): Delete unused variable.
3664
34fa1d9d
MS
3665 * ui-out.c (ui_out_field_int): Delete unused variable.
3666 (ui_out_field_fmt_int): Delete unused variable.
3667 * varobj.c (varobj_list_children): Delete unused variable.
3668 (varobj_set_value): Delete unused variable.
3669 (install_new_value_visualizer): Delete unused variable.
3670 (varobj_set_visualizer): Delete unused variable.
3671 (varobj_update): Delete unused variable.
3672 (varobj_editable_p): Delete unused variable.
3673 (c_value_of_root): Delete unused variable.
3674 (cplus_describe_child): Delete unused variable.
3675
b5385fc0
MS
3676 * ada-lang.c (add_defn_to_vec): Delete unused variable.
3677 (decode_constrained_packed_array_type): Delete unused variable.
3678 (add_defn_to_vec): Delete unused variable.
3679 (symbol_completion_match): Delete unused variable.
3680 (value_tag_from_contents_and_address): Delete unused variable.
3681 (ada_evaluate_subexp): Delete unused variable.
3682 * c-lang.c (classify_type): Delete unused variable.
3683 * f-lang.c (f_printstr): Delete unused variable.
3684 * objc-lang.c (objc_printstr): Delete unused variable.
3685 * ada-tasks.c (get_known_tasks_addr): Delete unused variable.
3686 * jv-lang.c (type_from_class): ifdef unused variable.
3687 (java_class_name_from_physname): Delete unused variable.
3688 * m2-lang.c (m2_printstr): Delete unused variable.
3689
4fc06681
MS
3690 * objfiles.c (objfile_relocate): Delete unused variable.
3691 * maint.c (_initialize_maint_cmds): Delete unused variable.
3692 * demangle.c (_initialize_demangler): Delete unused variable.
3693 * corefile.c (reopen_exec_file): Delete unused variable.
3694 * dwarf2expr.c (dwarf2_read_address): Delete unused variable.
3695 * dwarf2-frame.c (decode_frame_entry): Delete unused variable.
3696
6b4398f7
MS
3697 * osabi.c (_initialize_gdb_osabi): Delete unused variable.
3698 * memattr.c (mem_delete): Delete unused variable.
3699 (invalidate_target_mem_regions): Delete unused variable.
3700 * mem-break.c (default_memory_insert_breakpoint):
3701 Delete unused variable.
3702 * target.c (target_get_osdata): Delete unused variable.
3703 * parse.c (length_of_subexp): Delete unused variable.
3704 (prefixify_subexp): Delete unused variable.
3705 (exp_iterate): Delete unused variable.
3706 * reverse.c (delete_bookmark_command): Delete unused variable.
3707
308d96ed
MS
3708 * macrocmd.c (_initialize_macrocmd): Delete unused variable.
3709 * macroexp.c (gather_arguments): Delete unused variable.
3710 (substitute_args): Delete unused variable.
3711 * completer.c (gdb_completer_loc_break_characters): Unused, delete.
3712 * gdbarch.sh (gdbarch_printable_names): Delete unused variable.
3713 (_initialize_gdbarch): Delete unused variable.
3714 * gdbarch.c, gdbarch.h: Regenerate.
0407b3f1 3715 * arch-utils.c (initialize_current_architecture):
308d96ed
MS
3716 Delete unused variable.
3717 (_initialize_gdbarch_utils): Delete unused variable.
3718 * gdbtypes.c (make_cv_type): Delete unused variable.
3719 (make_type_with_address_space): Delete unused variable.
3720
167e4384
MS
3721 * linespec.c (decode_compound): Delete unused variable.
3722 * dictionary.c (iterator_next_hashed): Delete unused variable.
3723 * infcall.c (call_function_by_hand): Delete unused variable.
3724 * infcmd.c (step_1): Delete unused variable.
3725 (registers_info): Delete unused variable.
3726 (attach_command): Delete unused variable.
3727 * infrun.c (follow_exec): Delete unused variable.
3728 (handle_step_into_function_backwards): Delete unused variable.
3729 (_initialize_infrun): Delete unused variable.
3730 * stack.c (parse_frame_specification_1): Delete unused variable.
3731 (frame_info): Delete unused variable.
3732 (backtrace_command_1): Delete unused variable.
3733 (catch_info): Delete unused variable.
3734
8f78b329
MS
3735 * eval.c (evaluate_subexp_standard): Delete unused variable.
3736 * valops.c (value_cast_pointers): Delete unused variable.
3737 (value_dynamic_cast): Delete unused variable.
3738 (value_array): Delete unused variable.
3739 (find_overload_match): Delete unused variable.
3740 * valarith.c (value_subscript): Delete unused variable.
3741 (value_binop): Delete unused variable.
3742 * valprint.c (_initialize_valprint): Delete unused variable.
3743 * printcmd.c (print_command_1): Delete unused variable.
3744 (address_info): Delete unused variable.
3745 (printf_command): Delete unused variable.
3746
8ea13695
MS
3747 * auxv.c (target_auxv_search): Delete unused variable.
3748 * blockframe.c (get_frame_block): Delete unused variable.
3749 * regcache.c (regcache_cpy): Delete unused variable.
3750 (regcache_cpy_no_passthrough): Delete unused variable.
3751 * charset.c (wchar_iterate): Delete unused variable.
3752 (find_charset_names): Delete unused variable.
3753 (_initialize_charset): Delete unused variable.
0407b3f1 3754 * disasm.c (do_mixed_source_and_assembly):
8ea13695 3755 Delete unused variable.
0407b3f1 3756 * source.c (set_default_source_symtab_and_line):
8ea13695
MS
3757 Delete unused variable.
3758 (set_substitute_path_command): Delete unused variable.
3759 * value.c (preserve_values): Delete unused variable.
3760 (value_from_double): Delete unused variable.
3761
afe38095
MS
37622010-05-05 Michael Snyder <msnyder@vmware.com>
3763
952a6d41
MS
3764 * psymtab.c (lookup_partial_symbol): Delete unused variable.
3765 (find_last_source_symtab_from_partial): Delete unused variable.
3766 * symfile.c (place_section): Delete unused variable.
3767 (default_symfile_offsets): Delete unused variable.
3768 (get_debug_link_info): Delete unused variable.
3769 (find_separate_debug_file_by_debuglink): Delete unused variable.
3770 (add_symbol_file_command): Delete unused variable.
3771 (symfile_find_segment_sections): Delete unused variable.
3772 * symmisc.c (free_symtab): Delete unused variable.
3773 (dump_symtab_1): Delete unused variable.
3774 * symtab.c (lookup_symbil_aux_quick): Delete unused variable.
3775 (find_pc_sect_symtab): Delete unused variable.
3776 (skip_prologue_using_lineinfo): Delete unused variable.
3777 (sources_info): Delete unused variable.
3778 (completion_list_add_name): Delete unused variable.
3779 (expand_line_sal): Delete unused variable.
3780
0407b3f1 3781 * breakpoint.c (validate_commands_for_breakpoint):
afe38095
MS
3782 Delete unused variables.
3783 (insert_catchpoint): Delete unused variable.
3784 (update_watchpoint): Delete unused variable.
3785 (insert_bp_location): Delete unused variable.
3786 (insert_breakpoint_locations): Delete unused variable.
3787 (remove_breakpoint_1): Delete unused variable.
3788 (software_breakpoint_inserted_here_p): Delete unused variable.
3789 (watchpoints_triggered): Delete unused variable.
3790 (bpstat_check_watchpoint): Delete unused variable.
3791 (bpstat_stop_status): Delete unused variable.
3792 (print_one_breakpoint_location): Delete unused variable.
3793 (allocate_bp_location): Delete unused variable.
3794 (create_breakpoint): Delete unused variable.
3795 (watch_command_1): Delete unused variable.
3796 (catch_exception_command_1): Delete unused variable.
3797 (catch_ada_exception_command): Delete unused variable.
3798 (delete_breakpoint): Delete unused variable.
3799 (breakpoint_re_set_one): Delete unused variable.
3800 (do_enable_breakpoint): Delete unused variable.
3801
eda5a4d7
PA
38022010-05-06 Pedro Alves <pedro@codesourcery.com>
3803
3804 * amd64-tdep.c: Include disasm.h.
3805 (amd64_insn_length_fprintf, amd64_insn_length_init_dis)
3806 (amd64_insn_length): Moved to disasm.c and renamed.
3807 (fixup_riprel): Adjust.
3808 * disasm.c (do_ui_file_delete): New.
3809 (gdb_insn_length): New.
3810 (gdb_buffered_insn_length_fprintf)
3811 (gdb_buffered_insn_length_init_dis)
3812 (gdb_buffered_insn_length): New, moved from amd64-tdep.c, and
3813 renamed.
3814 * disasm.h (gdb_insn_length): Declare.
3815 (gdb_buffered_insn_length): Declare.
3816
02357a4a
PA
38172010-05-06 Pedro Alves <pedro@codesourcery.com>
3818
3819 * remote.c (clear_threads_parsing_context): New.
3820 (remote_threads_info): Delete unused null_cleanup. Install a
3821 cleanup to clear the threads_parsing_context in case parsing
3822 throws.
3823
8c5630cb
MS
38242010-05-05 Michael Snyder <msnyder@vmware.com>
3825
3826 * c-exp.y (parse_string_or_char): Delete unused variable.
3827 (c_lex): Delete unused variable.
3828 * cp-name-parser.y (cpname_lex): Delete unused variable.
3829 * ada-exp.y (find_primitive_type): Delete unused variable.
3830 (write_var_or_type): Delete unused variable.
3831 * jv-exp.y (java_parse): Delete unused variable.
3832 (push_expression_name): Delete unused variable.
3833 * p-exp.y (pascal_lex): Delete unused variable.
3834
46c162d4
PA
38352010-05-05 Pedro Alves <pedro@codesourcery.com>
3836
3837 * remote.c (remote_threads_info): Really revert previous previous
3838 change.
3839
0043e6a5
MS
38402010-05-05 Michael Snyder <msnyder@vmware.com>
3841
fa238c03
MS
3842 * elfread.c (elf_symtab_read): Delete unused variable.
3843 (find_separate_debug_file_by_buildid): Delete unused variables.
3844 (elf_symfile_read): Delete unused variable.
3845
3846 * coffread.c (coff_symfile_read): Delete unused variables.
3847
3848 * coff-pe-read.c (add_pe_exported_sym): Delete unused variable.
3849 (read_pe_exported_syms): Delete unused variable.
3850
3851 * stabsread.c (define_symbol): Delete unused variable.
3852
3853 * dwarf2read.c (read_type_comp_unit_head): Delete unused variable.
3854 (process_psymtab_comp_unit): Delete unused variable.
3855 (dwarf2_build_psymtabs_hard): Delete unused variable.
3856 (load_partial_comp_unit): Delete unused variable.
3857 (create_all_comp_units): Delete unused variable.
3858 (scan_partial_symbols): Delete unused variable.
3859 (add_partial_symbol): Delete unused variable.
3860 (add_partial_namespace): Delete unused variable.
3861 (add_partial_enumeration): Delete unused variable.
3862 (load_full_comp_unit): Delete unused variable.
3863 (process_full_comp_unit): Delete unused variable.
3864 (read_file_scope): Delete unused variable.
3865 (read_type_unit_scope): Delete unused variable.
3866 (process_structure_scope): Delete unused variable.
3867 (process_enumeration_scope): Delete unused variable.
3868 (read_tag_ptr_to_member_type): Delete unused variable.
3869 (read_typedef): Delete unused variable.
3870 (read_partial_die): Delete unused variable.
3871 (decode_locdesc): Delete unused variable.
3872 (zeroed_partial_die): Delete unused global variable.
3873
0407b3f1 3874 * tui/tui-interp.c (_initialize_tui_interp):
0043e6a5 3875 Delete unused variable.
0407b3f1 3876 * tui/tui-regs.c tui_display_registers_from):
0043e6a5
MS
3877 Delete unused variable.
3878 (tui_check_register_values): Delete unused variable.
3879 (tui_register_format): Delete unused variable.
3880 * tui/tui-win.c (_initialize_tui_win): Delete unused variable.
0407b3f1 3881 * tui/tui-windata.c (tui_display_data_from_line):
0043e6a5
MS
3882 Delete unused variables.
3883 (tui_vertical_data_scroll): Delete unused variables.
3884
75721c66
MS
38852010-05-05 Michael Snyder <msnyder@vmware.com>
3886
c31a71f4
MS
3887 * remote.c (remote_threads_info): Revert questionable part of
3888 the previous change.
3889
38902010-05-05 Michael Snyder <msnyder@vmware.com>
3891
3892 * mi/mi-out.c (mi_table_begin): Delete unused variable.
3893 * mi/mi-cmd-var.c (print_varobj): Delete unused variable.
3894 (mi_cmd_var_list_children): Delete unused variable.
3895 (varobj_update_one): Delete unused variable.
3896 * mi/mi-cmd-break.c (mi_cmd_break_insert): Delete unused variables.
0407b3f1 3897 * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals):
c31a71f4
MS
3898 Delete unused variable.
3899 (mi_cmd_stack_list_variables): Delete unused variable.
3900 (list_args_or_locals): Delete unused variable.
0407b3f1 3901 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file):
c31a71f4
MS
3902 Delete unused variables.
3903 (mi_cmd_file_list_exec_source_files): Delete unused variable.
0407b3f1 3904 * mi/mi-cmd-target.c (mi_cmd_target_file_delete):
c31a71f4
MS
3905 Delete unused variable.
3906 * mi/mi-interp.c (mi_interpreter_exec): Delete unused variable.
3907 (mi_cmd_interpreter_exec): Delete unused variable.
3908 (mi_on_normal_stop): Delete unused variable.
3909 * mi/mi-main.c (run_one_inferior): Delete unused variable.
3910 (print_one_inferior): Delete unused variables.
3911 (mi_execute_command): Delete unused variable.
3912 (mi_cmd_execute): Delete unused variable.
3913 (timestamp): Delete unused variable.
3914
3915 * cli/cli-dump.c (dump_memory_to_file): Delete unused variable.
d36fc00b 3916 (restore_binary_file): Delete unused variable.
c31a71f4
MS
3917 * cli/cli-decode.c (deprecated_cmd_warning): Delete unused variables.
3918 * cli/cli-script.c (define_command): Delete unused variables.
d36fc00b
MS
3919 (recurse_read_control_structure): Delete unused variable.
3920 (script_from_file): Delete unused variable.
c31a71f4 3921 * cli/cli-cmds.c (complete_command): Delete unused variable.
d36fc00b
MS
3922 (disassemble_command): Delete unused variable.
3923
3924 * ax-gdb.c (gen_struct_elt_for_reference): Delete unused variables.
0407b3f1 3925 * tracepoint.c (delete_trace_variable_command):
d36fc00b
MS
3926 Delete unused variables.
3927 (encode_actions_1): Delete unused variables.
3928 (start_tracing): Delete unused variable.
3929 (trace_status_mi): Delete unused variable.
3930 (tfind_1): Delete unused variable.
3931 (trace_find_pc_command): Delete unused variable.
3932 (trace_find_line_command): Delete unused variables.
3933 (trace_find_range_command): Delete unused variables.
3934 (trace_find_outside_command): Delete unused variables.
3935 (parse_tracepoint_definition): Delete unused variables.
3936 (tfile_fetch_registers): Delete unused variable.
3937
9128a503
MS
3938 * dcache.c (dcache_init): Delete unused variable.
3939 (dcache_info): Delete unused variable.
3940
aa369b55 3941 * remote.c (remote_threads_info): Delete unused variable.
9128a503 3942 (process_stop_reply) :Delete unused variable.
aa369b55
MS
3943 (remote_get_trace_status): Delete unused variables.
3944
9e9547e4
MS
3945 * linux-thread-db.c (add_thread_db_info): Delete unused variable.
3946 (thread_from_lwp): Delete unused variable.
3947 (enable_thread_event_reporting): Delete unused variable.
3948 (check_for_thread_db): Delete unused variables.
3949 (thread_db_find_new_threads_2): Delete unused variable.
0407b3f1 3950
9e9547e4
MS
3951 * linux-fork.c (info_checkpoints_command): Delete unused variables.
3952 (checkpoint_command): Delete unused variable.
3953 (linux_fork_context): Delete unused variables.
3954
fa238c03 3955 * linux-nat.c (linux_parent_pid): Delete unused global variable.
75083f7e
MS
3956 (linux_tracefork_child): Delete unused variable.
3957 (linux_child_follow_fork): Delete unused variable.
3958 (linux_nat_detach): Delete unused variable.
3959 (linux_handle_extended_wait): Delete unused variable.
3960 (linux_nat_has_pending_sigint): Delete unused variable.
3961 (linux_nat_find_memory_regions): Delete unused variable.
3962 (linux_nat_make_corefile_notes): Delete unused variables.
3963 (linux_nat_info_proc_cmd): Delete unused variable.
3964 (linux_proc_pending_signals): Delete unused variable.
3965 (linux_nat_stop_lwp): Delete unused variables.
3966 (_initialize_linux_nat): Delete unused variable.
3967
fa238c03 3968 * ser-pipe.c (pipe_ops): Delete unused global variable.
2d148b94 3969
0407b3f1 3970 * linux-record.c (record_linux_system_call):
e0f069a3
MS
3971 Delete unused variables.
3972
789d24f0
MS
3973 * corelow.c (core_xfer_partial): Delete unused variables.
3974
1cd337a5 3975 * solib-svr4.c (find_program_interpreter): Delete unused variable.
0407b3f1 3976 (svr4_solib_create_inferior_hook): Add ifdef around
1cd337a5
MS
3977 conditionally-used variable declarations.
3978
b00e3f56
MS
3979 * solib.c (solib_find): Delete unused variable.
3980 (free_so_symbols): Delete unused variable.
3981 (info_sharedlibrary_command): Delete unused variable.
3982 (reload_shared_libraries_1): Delete unused variable.
3983 (_initialize_solib): Delete unused variable.
3984
90f62196
MS
3985 * i386-tdep.c (i386_supply_xstateregset) Delete unused variable.
3986 (i386_collect_xstateregset): Delete unused variable.
3987 * i387-tdep.c (i387_print_float_info): Delete unused variable.
3988
75721c66
MS
3989 * features/i386/i386-mmx.c (initialize_tdesc_i386_mmx):
3990 Delete unused variable 'type'.
3991
af33db37
JB
39922010-05-05 Joel Brobecker <brobecker@adacore.com>
3993
90f62196 3994 * gdbtypes.h (MAX_OF_TYPE, MIN_OF_TYPE): Delete macros. *
63db82b2
JB
3995 ada-lang.c: Remove comment mentioning these macros.
3996 * m2-exp.y: Delete commented out code.
af33db37 3997
0497f5b0
JB
39982010-05-05 Joel Brobecker <brobecker@adacore.com>
3999
4000 * sparc-tdep.c (sparc_structure_or_union_p): Return non-zero
4001 for array types.
4002 * sparc64-tdep.c (sparc64_structure_or_union_p): Likewise.
4003
6e39997a
PM
40042010-05-04 Pierre Muller <muller@ics.u-strasbg.fr>
4005
4006 ARI fix: Remove ATTRIBUTE_UNUSED throughout.
0407b3f1 4007 * arm-linux-tdep.c (arm_linux_cleanup_svc): Remove
6e39997a
PM
4008 ATTRIBUTE_UNUSED.
4009 (cleanup_kernel_helper_return): Likewise.
4010 * arm-tdep.c (copy_unmodified): Likewise.
4011 (copy_preload): Likewise.
4012 (copy_copro_load_store): Likewise.
4013 (cleanup_branch): Likewise.
4014 (copy_b_bl_blx): Likewise.
4015 (copy_bx_blx_reg): Likewise.
4016 (copy_alu_imm): Likewise.
4017 (copy_alu_reg): Likewise.
4018 (copy_alu_shifted_reg): Likewise.
4019 (cleanup_load): Likewise.
4020 (cleanup_store): Likewise.
4021 (cleanup_block_load_pc): Likewise.
4022 (cleanup_svc): Likewise.
4023 (copy_undef): Likewise.
4024 (copy_unpred): Likewise.
4025 * remote.c (register_remote_support_xml): Likewise.
4026
1412f70b
HZ
40272010-05-05 Hui Zhu <teawater@gmail.com>
4028
4029 * gdbarch.h (gdbarch_has_dos_based_file_system): Update comment.
4030
c4f7c687
MK
40312010-05-04 Mark Kettenis <kettenis@gnu.org>
4032
4033 * remote.c (register_remote_support_xml)
4034 (remote_query_supported_append, remote_query_supported): Add cast
4035 to NULL used as sentinel.
4036 * tracepoint.c (tvariables_info_1): Likewise.
4037 * utils.c (add_internal_problem_command): Likewise.
4038
63b4f126
MGD
40392010-05-04 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
4040
4041 * dwarf2loc.c (read_pieced_value, write_pieced_value,
4042 dwarf2_evaluate_loc_desc): Handle not being able to access DWARF
4043 registers gracefully.
4044
2f1bdd26
MGD
40452010-05-04 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
4046
0407b3f1 4047 * exec.c (print_section_info): Display entry point without arch
2f1bdd26
MGD
4048 specific parts.
4049
e1c34c5d
PM
40502010-05-04 Pierre Muller <muller@ics.u-strasbg.fr>
4051
4052 PR exp/11349.
4053 * printcmd.c (x_command): Only dereference once implicitly for
4054 TYPE_CODE_REF.
4055
ae462839
DE
40562010-05-03 Doug Evans <dje@google.com>
4057
4058 * event-loop.c (gdb_timer): Delete unused global.
4059 (create_timer): Update.
4060
1ac77ea1
JK
40612010-05-03 Jan Kratochvil <jan.kratochvil@redhat.com>
4062
4063 * cp-namespace.c (cp_lookup_symbol_imports): Support ALIAS for the
4064 CURRENT->DECLARATION case.
4065 * cp-support.h (struct using_direct): Provide extended comment.
4066
7c54a108
MK
40672010-05-03 Mark Kettenis <kettenis@gnu.org>
4068
4069 * hppaobsd-tdep.c (HPPAOBSD_SIZEOF_GREGS): Renamed from
4070 HPPABSD_SIZEOF_GREGS.
4071 (HPPAOBSD_SIZEOF_FPREGS): New define.
4072 (hppaobsd_supply_gregset): Renamed from hppabsd_supply_gregset.
4073 (hppaobsd_supply_fpregset): New function.
4074 (hppaobsd_gregset): Renamed from hppabsd_gregset.
4075 (hppaobsd_fpregset): New variable.
4076 (hppaobsd_regset_from_core_section): Handle floating-point registers.
4077 (_initialize_hppabsd_tdep): Remove spurious blank line.
4078
278582cb
PM
40792010-05-03 Pierre Muller <muller@ics.u-strasbg.fr>
4080
4081 PR pascal/11349.
4082 * p-valprint.c (pascal_value_print): Always dereference a value with
4083 type code TYPE_CODE_REF.
0407b3f1 4084
f0223081
PA
40852010-05-03 Pedro Alves <pedro@codesourcery.com>
4086
4087 * remote.c (remote_notice_signals): New.
4088 (remote_start_remote): In non-stop mode, update the remote end on
4089 which signals it can silently pass.
4090 (init_remote_ops): Install remote_notice_signals.
4091
c25c4a8b
JK
40922010-05-02 Jan Kratochvil <jan.kratochvil@redhat.com>
4093
4094 * cli/cli-cmds.h (error_no_arg): Remove. Move the comment ...
4095 * command.h (error_no_arg): ... here. Remove NORETURN, change
4096 ATTR_NORETURN to ATTRIBUTE_NORETURN.
4097 * defs.h (NORETURN, ATTR_NORETURN): Remove.
4098 (perror_with_name, verror, error, error_stream, vfatal, fatal)
4099 (internal_verror, internal_error, nomem): Remove NORETURN, change
4100 ATTR_NORETURN to ATTRIBUTE_NORETURN.
4101 * exceptions.c (throw_exception, deprecated_throw_reason, throw_verror)
4102 (throw_vfatal, throw_error): Remove NORETURN.
4103 (throw_it): Remove NORETURN, change ATTR_NORETURN to ATTRIBUTE_NORETURN.
4104 * exceptions.h (throw_exception, throw_verror, throw_vfatal)
4105 (throw_error, deprecated_throw_reason): Remove NORETURN, change
4106 ATTR_NORETURN to ATTRIBUTE_NORETURN.
4107 * linespec.c (cplusplus_error): Remove NORETURN, change ATTR_NORETURN
4108 to ATTRIBUTE_NORETURN for prototype, for the definition only remove
4109 NORETURN.
4110 * remote-mips.c (mips_error): Change NORETURN to ATTRIBUTE_NORETURN.
4111 * remote-sim.c (gdb_os_error): Change ATTR_NORETURN to
4112 ATTRIBUTE_NORETURN.
4113 * target.c (tcomplain): Likewise.
4114 * target.h (noprocess): Remove NORETURN, change ATTR_NORETURN to
4115 ATTRIBUTE_NORETURN.
4116 * utils.c (verror, error, vfatal, fatal, error_stream, internal_verror)
4117 (internal_error, perror_with_name, nomem): Remove NORETURN.
4118 * xml-support.h (gdb_xml_error): Change ATTR_NORETURN to
4119 ATTRIBUTE_NORETURN.
4120
a0b31db1
JK
41212010-05-02 Jan Kratochvil <jan.kratochvil@redhat.com>
4122
4123 * ada-lang.c (lim_warning): Change ATTR_FORMAT to ATTRIBUTE_PRINTF.
4124 * amd64-tdep.c (amd64_insn_length_fprintf): Likewise.
4125 * cli-out.c (cli_field_fmt): New ATTRIBUTE_PRINTF.
4126 (cli_message, out_field_fmt): Change ATTR_FORMAT to ATTRIBUTE_PRINTF.
4127 * complaints.c (find_complaint): New ATTRIBUTE_PRINTF.
4128 (vcomplaint): Change ATTR_FORMAT to ATTRIBUTE_PRINTF.
4129 * complaints.h (complaint, internal_complaint): Likewise.
4130 * defs.h: Change ATTR_FORMAT to ATTRIBUTE_PRINTF in the top comment.
4131 (ATTR_FORMAT): Remove.
4132 (query, nquery, yquery, vprintf_filtered, vfprintf_filtered)
4133 (fprintf_filtered, fprintfi_filtered, printf_filtered, printfi_filtered)
4134 (vprintf_unfiltered, vfprintf_unfiltered, fprintf_unfiltered)
4135 (printf_unfiltered, xasprintf, xvasprintf, xstrprintf, xstrvprintf)
4136 (xsnprintf, verror, error, vfatal, fatal, internal_verror)
4137 (internal_error, internal_vwarning, internal_warning, warning)
4138 (vwarning): Change ATTR_FORMAT to ATTRIBUTE_PRINTF.
4139 * disasm.c (fprintf_disasm): Likewise.
4140 * exceptions.c (throw_it): Likewise.
4141 * exceptions.h (exception_fprintf, throw_verror, throw_vfatal)
4142 (throw_error): Likewise.
4143 * language.h (type_error, range_error): Likewise.
4144 * linespec.c (cplusplus_error): Likewise.
4145 * mi/mi-interp.c (mi_interp_query_hook): Likewise.
4146 * mi/mi-out.c (mi_field_fmt, mi_message): Likewise.
4147 * monitor.c (monitor_debug): Likewise.
4148 * parser-defs.h (parser_fprintf): Likewise.
4149 * serial.h (serial_printf): Likewise.
4150 * tui/tui-hooks.c (tui_query_hook): Likewise.
4151 * ui-out.c (default_field_fmt, default_message, uo_field_fmt)
4152 (uo_message): Likewise.
4153 * ui-out.h (ui_out_field_fmt, ui_out_message): Likewise.
4154 * utils.c (vfprintf_maybe_filtered, internal_vproblem, defaulted_query):
4155 Likewise.
4156 * xml-support.h (gdb_xml_debug, gdb_xml_error): Likewise.
4157
02a45ac0
PA
41582010-05-02 Pedro Alves <pedro@codesourcery.com>
4159
4160 * cli-out.c (cli_table_begin, cli_table_body, cli_table_end)
4161 (cli_table_header, cli_begin, cli_end, cli_field_int)
4162 (cli_field_skip, cli_field_string, cli_field_fmt, cli_spaces)
4163 (cli_text, cli_message, cli_wrap_hint, cli_flush, cli_redirect):
4164 Delete forward declarations.
4165 (cli_ui_out_impl): Move below the callbacks.
4166 (_initialize_cli_out): Delete.
4167
1915ef4f
PA
41682010-05-02 Pedro Alves <pedro@codesourcery.com>
4169
4170 * README: Use consistent `GDB' and `GDBserver' spellings.
4171
0dfb946f
JK
41722010-05-02 Jan Kratochvil <jan.kratochvil@redhat.com>
4173
4174 * cli/cli-dump.h (parse_and_eval_with_error): Remove the declaration.
4175
4d533103
PA
41762010-05-01 Pedro Alves <pedro@codesourcery.com>
4177
4178 * infrun.c (prepare_for_detach): In non-stop, context switch to
4179 the thread that got the event before handling the event.
4180
705b5767
TT
41812010-04-30 Tom Tromey <tromey@redhat.com>
4182
4183 * symtab.c (symbol_set_names): Fix typo.
4184
3c0ee1a4
PM
41852010-04-30 Pierre Muller <muller@ics.u-strasbg.fr>
4186
4187 * python/py-param.c (parm_constants): Avoid ARI warning
4188 by adding ARI comment.
4189 (parmpy_init): Likewise.
4190
ea1fae46
PM
41912010-04-30 Pierre Muller <muller@ics.u-strasbg.fr>
4192
4193 * windows-tdep.c (windows_get_tlb_type): Remember last GDBARCH
4194 and created type for re-use.
4195
c24d0242
PM
41962010-04-30 Pierre Muller <muller@ics.u-strasbg.fr>
4197
4198 * NEWS: Mention gdbserver support for x86_64 Windows 64-bit.
4199
a26d8d11
DE
42002010-04-29 Doug Evans <dje@google.com>
4201
4202 * ser-base.h (reschedule): Delete prototype.
4203 * ser-base.c (reschedule): Make static.
4204
f8624c62
MGD
42052010-04-29 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
4206
4207 * arm-linux-tdep.c (ARM_LINUX_JB_PC): Remove.
4208 (ARM_LINUX_JB_PC_FPA): Add, offset of PC in longjmp buffer for FPA.
0407b3f1 4209 (ARM_LINUX_JB_PC_EABI): Add, offset of PC in longjmp buffer for
f8624c62 4210 EABI.
0407b3f1 4211 (arm_linux_init_abi): Set up JB_PC field dependent on FP model in
f8624c62
MGD
4212 use.
4213
e66408ed
PA
42142010-04-29 Pedro Alves <pedro@codesourcery.com>
4215
4216 PR gdb/11557
4217
4218 * regcache.c (registers_changed): Rename to ...
4219 (registers_changed_ptid): ... this, and only delete register cache
4220 entries matching the ptid filter argument.
4221 (registers_changed): Reimplement on top of registers_changed_ptid.
4222 * regcache.h (registers_changed_ptid): Declare.
4223 * target.c (target_resume): Flush register caches.
4224
d7b32ed3 42252010-04-29 Phil Muldoon <pmuldoon@redhat.com>
0407b3f1
AS
4226 Tom Tromey <tromey@redhat.com>
4227 Thiago Jung Bauermann <bauerman@br.ibm.com>
4228
4229 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-parameter.
4230 (SUBDIR_PYTHON_SRCS): Likewise.
4231 (py-parameter.o): New rule.
4232 * python/py-parameter.c: New file.
4233 * python/python-internal.h (gdbpy_initialize_parameter)
4234 (gdbpy_parameter, gdbpy_parameter_value)
4235 (gdbpy_parse_command_name): Declare.
4236 * python/py-cmd.c (parse_command_name): Rename to
4237 gdbpy_parse_command_name.
4238 (gdbpy_parse_command_name): Accept a starting list parameter and
4239 use over cmdlist.
4240 (cmdpy_init): Use gdbpy_parse_command_name.
4241 * python/python.c (parameter_to_python): Rename to
4242 gdbpy_parameter_to_python. Accept enum var_types and value.
4243 (gdbpy_parameter): Use gdbpy_parameter_value.
4244 (_initialize_python): Call gdbpy_initialize_parameters.
d7b32ed3 4245
ce72ce41
MGD
42462010-04-29 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
4247
4248 * MAINTAINERS: Add myself for write after approval privileges.
4249
6aecb9c2
JB
42502010-04-29 Mihail Zenkov <mihail.zenkov@gmail.com>
4251
4252 D language support.
4253 * Makefile.in (SFILES): Add d-lang.c d-valprint.c.
4254 (COMMON_OBS): Add d-lang.o d-valprint.o.
4255 (HFILES_NO_SRCDIR): Add d-lang.h.
4256 * NEWS: Mention D language support.
4257 * c-lang.c (c_emit_char, exp_descriptor_c): Make public.
4258 * c-lang.h (c_emit_char, exp_descriptor_c): Add declaration.
4259 * d-lang.c: New file.
4260 * d-lang.h: New file.
4261 * d-valprint.c: New file.
4262 * defs.h (enum language): Add language_d.
4263 * dwarf2read.c (set_cu_language): Add DW_LANG_D.
4264 * language.c (binop_result_type, integral_type, character_type)
4265 (string_type, boolean_type, structured_type): Add language_d.
4266 * symfile.c (init_filename_language_table): Add language_d.
4267 * symtab.c: Include d-lang.h.
4268 (symbol_init_language_specific, symbol_find_demangled_name)
4269 (symbol_natural_name, lookup_symbol_in_language)
4270 (symbol_demangled_name, symbol_matches_domain): Add language_d.
4271
6f992fbf
JB
42722010-04-27 Joel Brobecker <brobecker@adacore.com>
4273
4274 * solib-svr4.c (solib_svr4_r_map): Expand function description.
4275
dde59185
JB
42762010-04-27 Joel Brobecker <brobecker@adacore.com>
4277
4278 * symfile.c (init_filename_language_table): Register .dg files
4279 with language_ada.
4280
d09ce91e
JB
42812010-04-27 Joel Brobecker <brobecker@adacore.com>
4282
4283 * gdbtypes.h (struct main_type): Expand comment about target_type
4284 field.
4285
67f1675e
JB
42862010-04-27 Pedro Alves <pedro@codesourcery.com>
4287 Tristan Gingold <gingold@adacore.com>
02aeec7b
JB
4288
4289 * symfile.c (reread_symbols): Also search for file in libraries.
4290 Update comment.
4291
dfd0fe27
JB
42922010-04-27 Joel Brobecker <brobecker@adacore.com>
4293
4294 * configure.tgt: Treat x86-lynxos targets as x86 bareboard targets
4295 in terms of configuration.
4296
0133421a
JK
42972010-04-27 Jan Kratochvil <jan.kratochvil@redhat.com>
4298
4299 * objfiles.c: Include solist.h.
4300 (free_all_objfiles): New variable so. Check stale solist objfiles.
4301 * symfile.c (symbol_file_clear): Swap the order of free_all_objfiles
4302 and no_shared_libraries.
4303
e78f4312
JB
43042010-04-27 Joel Brobecker <brobecker@adacore.com>
4305
4306 ARI warning fix.
4307 * python/py-auto-load.c (source_section_scripts): Remove trailing
4308 new-line in i18n string.
4309
9214d371
DE
43102010-04-26 Doug Evans <dje@google.com>
4311
4312 * serial.c (serial_write): Handle serial_debug_p akin to serial_read.
4313
3f172e24
TT
43142010-04-26 Tom Tromey <tromey@redhat.com>
4315
4316 * cli/cli-decode.c (complete_on_cmdlist): Make two passes over the
4317 command list.
4318
e790e06e
PM
43192010-04-26 Pierre Muller <muller@ics.u-strasbg.fr>
4320
4321 Removal of config/i386/nm-i386sol2.h native configuration file.
4322 * config/i386/nm-i386sol2.h: Remove file.
4323 * config/i386/i386sol2.mh: Remove NAT_FILE definition.
4324 * config/i386/sol2-64.mh: Idem.
88562582
PM
4325 * config/djgpp/fnchange.lst: Remove reference to that file.
4326 * Makefile.in (HFILES_NO_SRCDIR): Idem.
e790e06e 4327
b7da9e9f
PM
43282010-04-26 Pierre Muller <muller@ics.u-strasbg.fr>
4329
4330 PR breakpoints/11531.
4331 * config/i386/nm-i386sol2.h (CANNOT_STEP_HW_WATCHPOINTS): Remove
4332 macro definition and related comment.
4333 * infrun.c (CANNOT_STEP_HW_WATCHPOINTS): Remove macro.
4334 (resume): Remove code and comment related to this macro.
4335
72f6eb52
JK
43362010-04-26 Jan Kratochvil <jan.kratochvil@redhat.com>
4337
4338 * cp-namespace.c (cp_lookup_symbol_in_namespace): Fix alloca size.
4339 Fix whitespace.
4340
ab38a727
PA
43412010-04-24 Pedro Alves <pedro@codesourcery.com>
4342
4343 * defs.h: Adjust comment.
4344 * filesystem.h, filesystem.c: New files.
4345 * Makefile.in (SFILES): Add filesystem.c.
4346 (COMMON_OBS): Add filesystem.o.
4347 * solib.c (solib_find): Handle DOS-based filesystems. Handle
4348 different target and host path flavours.
4349 * arm-symbian-tdep.c (arm_symbian_init_abi): Set
4350 has_dos_based_file_system on the gdbarch.
4351 * arm-wince-tdep.c (arm_wince_init_abi): Ditto.
4352 * i386-cygwin-tdep.c (i386_cygwin_init_abi): Ditto.
4353 * i386-tdep.c (i386_go32_init_abi): Ditto.
4354 * gdbarch.sh (has_dos_based_file_system): New.
4355 * gdbarch.h, gdbarch.c: Regenerate.
4356 * NEWS: Mention improved support for remote targets with DOS-based
4357 filesystems. Mention new `set/show target-file-system-kind'
4358 commands.
4359
35c9c7ba
SS
43602010-04-23 Stan Shebs <stan@codesourcery.com>
4361
4362 * ax.h (struct agent_expr): Merge in agent_reqs fields, add some
4363 comments.
4364 (struct agent_reqs): Remove.
4365 (ax_reg_mask): Declare.
4366 * ax-general.c (new_agent_expr): Add gdbarch argument, set new fields.
4367 (free_agent_expr): Free reg_mask.
4368 (ax_print): Add scope and register mask info.
4369 (ax_reqs): Remove agent_reqs argument, use agent expression
4370 fields, and move part of register mask computation to...
4371 (ax_reg_mask): New function.
4372 * ax-gdb.c (gen_trace_static_fields): Call it.
4373 (gen_traced_pop): Ditto.
4374 (is_nontrivial_conversion): Add dummy gdbarch to new_agent_expr.
4375 (gen_trace_for_var): Pass gdbarch to new_agent_expr.
4376 (gen_trace_for_expr): Ditto, and clear optimized_out flag.
4377 (gen_eval_for_expr): Ditto, and require an rvalue.
4378 (agent_command): Call ax_reqs.
4379 (agent_eval_command): Ditto.
4380 * tracepoint.c (report_agent_reqs_errors): Use agent expression fields.
4381 (validate_action_line): Ditto.
4382 (collect_symbol): Ditto.
4383 (encode_actions_1): Ditto.
4384
492928e4
JK
43852010-04-23 Daniel Jacobowitz <dan@codesourcery.com>
4386 Paul Pluzhnikov <ppluzhnikov@google.com>
4387 Jan Kratochvil <jan.kratochvil@redhat.com>
4388
4389 Fix deadlock on looped list of loaded shared objects.
4390 * solib-svr4.c (LM_PREV): New function.
4391 (IGNORE_FIRST_LINK_MAP_ENTRY): Use it.
4392 (svr4_current_sos): Check for correct l_prev. New variables prev_lm
4393 and next_lm. Clear prev_lm for solib_svr4_r_ldsomap.
4394 * config/djgpp/fnchange.lst: Add translation for solib-corrupted.exp.
4395
66d09542
DE
43962010-04-23 Doug Evans <dje@google.com>
4397
88a1906b
DE
4398 * configure.ac (CONFIG_SRCS): Add py-auto-load.o even if not using
4399 python.
4400 * configure: Regenerate.
4401 * main.c: #include "python/python.h".
4402 (captured_main): Defer loading auto-loaded scripts until after
4403 local_gdbinit has been sourced.
4404 * python/py-auto-load.c (gdbpy_global_auto_load): New global.
4405 (load_auto_scripts_for_objfile): New function.
4406 (auto_load_new_objfile): Call it.
4407 * python/python.h (gdbpy_global_auto_load): Declare.
4408 (load_auto_scripts_for_objfile): Declare.
4409
66d09542
DE
4410 Add support for auto-loading scripts from .debug_gdb_scripts section.
4411 * NEWS: Add entry for .debug_gdb_scripts.
4412 * Makefile.in SUBDIR_PYTHON_OBS): Add py-auto-load.o.
4413 (SUBDIR_PYTHON_SRCS): Add py-auto-load.c.
4414 (py-auto-load.o): New rule.
4415 * cli/cli-cmds.c (find_and_open_script): Make externally visible.
4416 * cli/cli-cmds.h (find_and_open_script): Update prototype.
4417 * python/py-auto-load.c: New file.
4418 * python/python-internal.h: #include <stdio.h>.
4419 (set_python_list, show_python_list): Declare.
4420 (gdbpy_initialize_auto_load): Declare.
4421 (source_python_script_for_objfile): Declare.
4422 * python/python.c: Remove #include of observer.h.
4423 (gdbpy_auto_load): Moved to py-auto-load.c.
4424 (GDBPY_AUTO_FILENAME): Ditto.
4425 (gdbpy_new_objfile): Delete.
4426 (source_python_script_for_objfile): New function.
4427 (set_python_list, show_python_list): Make externally visible.
4428 (_initialize_python): Move "auto-load" command to py-auto-load.c
4429 and observer_attach_new_objfile to py-auto-load.c.
4430
3a48e6ff 44312010-04-23 Jerome Guitton <guitton@adacore.com>
0407b3f1 4432
3a48e6ff
JG
4433 * alpha-tdep.c (INSN_OPCODE, MEM_RA, MEM_RB, MEM_DISP, BR_RA)
4434 (OPR_FUNCTION, OPR_HAS_IMMEDIATE, OPR_RA, OPR_RC, OPR_LIT): New macros.
4435 (lda_opcode, stq_opcode, bne_opcode, subq_opcode, subq_function):
4436 New constants.
4437 (alpha_heuristic_analyze_probing_loop): New function.
4438 (alpha_heuristic_frame_unwind_cache): In the prologue analysis, detect
4439 and handle cases when a stack probe loop is generated.
4440 * alpha-mdebug-tdep.c (alpha_mdebug_frameless): New function.
4441 (alpha_mdebug_max_frame_size_exceeded): New function.
4442 (alpha_mdebug_after_prologue): Use alpha_mdebug_frameless.
4443 (alpha_mdebug_frame_sniffer, alpha_mdebug_frame_base_sniffer):
4444 Return 0 when the maximum debuggable frame size has been exceeded.
4445
e4166a49
JB
44462010-04-23 Joel Brobecker <brobecker@adacore.com>
4447
4448 Fix ARI warning.
4449 * ppc-linux-nat.c (booke_cmp_hw_point): Do not mark inline.
4450
8bd10a10
CM
44512010-04-20 Chris Moller <cmoller@redhat.com>
4452
4453 PR 10179
4454
4455 * symtab.c (rbreak_command): Added code to include a filename
4456 specification in the rbreak argument.
4457 * NEWS: Added a brief description of filename-qualified rbreak.
4458
c0201579
JK
44592010-04-22 Jan Kratochvil <jan.kratochvil@redhat.com>
4460
4461 Fix crashes on dangling display expressions.
4462 * ada-lang.c (ada_operator_check): New function.
4463 (ada_exp_descriptor): Fill-in the field operator_check.
4464 * c-lang.c (exp_descriptor_c): Fill-in the field operator_check.
4465 * jv-lang.c (exp_descriptor_java): Likewise.
4466 * m2-lang.c (exp_descriptor_modula2): Likewise.
4467 * scm-lang.c (exp_descriptor_scm): Likewise.
4468 * parse.c (exp_descriptor_standard): Likewise.
4469 (operator_check_standard): New function.
4470 (exp_iterate, exp_uses_objfile_iter, exp_uses_objfile): New functions.
4471 * parser-defs.h (struct exp_descriptor): New field operator_check.
4472 (operator_check_standard, exp_uses_objfile): New declarations.
4473 * printcmd.c: Remove the inclusion of solib.h.
4474 (display_uses_solib_p): Remove the function.
4475 (clear_dangling_display_expressions): Call lookup_objfile_from_block
4476 and exp_uses_objfile instead of display_uses_solib_p.
4477 * solist.h (struct so_list) <objfile>: New comment.
4478 * symtab.c (lookup_objfile_from_block): Remove the static qualifier.
4479 * symtab.h (lookup_objfile_from_block): New declaration.
4480 (struct general_symbol_info) <obj_section>: Extend the comment.
4481
6ffbb7ab
TJB
44822010-04-22 Sergio Durigan Junior <sergiodj@linux.vnet.ibm.com>
4483 Thiago Jung Bauermann <bauerman@br.ibm.com>
4484
4485 * ppc-linux-nat.c (PTRACE_GET_DEBUGREG): Update comment.
4486 (PPC_PTRACE_GETWDBGINFO, PPC_PTRACE_SETHWDEBUG, PPC_PTRACE_DELHWDEBUG,
4487 ppc_debug_info, PPC_DEBUG_FEATURE_INSN_BP_RANGE,
4488 PPC_DEBUG_FEATURE_INSN_BP_MASK, PPC_DEBUG_FEATURE_DATA_BP_RANGE,
4489 PPC_DEBUG_FEATURE_DATA_BP_MASK, ppc_hw_breakpoint,
4490 PPC_BREAKPOINT_TRIGGER_EXECUTE, PPC_BREAKPOINT_TRIGGER READ,
4491 PPC_BREAKPOINT_TRIGGER_WRITE, PPC_BREAKPOINT_TRIGGER_RW,
4492 PPC_BREAKPOINT_MODE_EXACT PPC_BREAKPOINT_MODE_RANGE_INCLUSIVE,
4493 PPC_BREAKPOINT_MODE_RANGE_EXCLUSIVE, PPC_BREAKPOINT_MODE_MASK,
4494 PPC_BREAKPOINT_CONDITION_NONE, PPC_BREAKPOINT_CONDITION_AND,
4495 PPC_BREAKPOINT_CONDITION_EXACT, PPC_BREAKPOINT_CONDITION_OR,
4496 PPC_BREAKPOINT_CONDITION_AND_OR, PPC_BREAKPOINT_CONDITION_BE_ALL,
4497 PPC_BREAKPOINT_CONDITION_BE_SHIFT, PPC_BREAKPOINT_CONDITION_BE):
4498 Define, in case <ptrace.h> doesn't provide it.
4499 (booke_debug_info): New variable.
4500 (max_slots_number): Ditto.
4501 (hw_break_tuple): New struct.
4502 (thread_points): Ditto.
4503 (ppc_threads): New variable.
4504 (PPC_DEBUG_CURRENT_VERSION): New define.
4505 (have_ptrace_new_debug_booke): New function.
4506 (ppc_linux_check_watch_resources): Renamed to ...
4507 (ppc_linux_can_use_hw_breakpoint): ... this. Handle BookE processors.
4508 (ppc_linux_region_ok_for_hw_watchpoint): Handle BookE processors.
4509 (booke_cmp_hw_point): New function.
4510 (booke_find_thread_points_by_tid): Ditto.
4511 (booke_insert_point): Ditto.
4512 (booke_remove_point): Ditto.
4513 (ppc_linux_insert_hw_breakpoint): Ditto.
4514 (ppc_linux_remove_hw_breakpoint): Ditto.
4515 (get_trigger_type): Ditto.
4516 (ppc_linux_insert_watchpoint): Handle BookE processors.
4517 (ppc_linux_remove_watchpoint): Ditto.
4518 (ppc_linux_new_thread): Ditto.
4519 (ppc_linux_thread_exit): New function..
4520 (ppc_linux_stopped_data_address): Handle BookE processors.
4521 (ppc_linux_watchpoint_addr_within_range): Ditto.
4522 (_initialize_ppc_linux_nat): Initialize to_insert_hw_breakpoint and
4523 to_remove_hw_breakpoint fields of the target operations struct.
4524 Add observe for the thread_exit event.
4525
be0d2954
L
45262010-04-22 H.J. Lu <hongjiu.lu@intel.com>
4527
4528 * i386-linux-nat.c (regmap): Removed.
4529 (fetch_register): Replace regmap with
4530 i386_linux_gregset_reg_offset.
4531 (store_register): Likewise.
4532 (supply_gregset): Likewise.
4533 (fill_gregset): Likewise.
4534
4535 * i386-linux-tdep.c (i386_linux_gregset_reg_offset): Make it
4536 global.
4537
4538 * i386-linux-tdep.h (i386_linux_gregset_reg_offset): New.
4539
f56dcb88
CM
45402010-04-22 Chris Moller <cmoller@redhat.com>
4541
4542 * cp-valprint.c (cp_print_value_fields): Replaced obstack_base()
758afad7
L
4543 method of popping recursion-detection stack with a method based on
4544 obstack_object_size(). (Similar to the PR9167 patch below, but for
f56dcb88
CM
4545 the static array obstack rather than the static member obstack.)
4546
6cd6a2ae
L
45472010-04-22 H.J. Lu <hongjiu.lu@intel.com>
4548
4549 * amd64-linux-nat.c (amd64_linux_gregset64_reg_offset): Removed.
4550 (_initialize_amd64_linux_nat): Replace
4551 amd64_linux_gregset64_reg_offset with
4552 amd64_linux_gregset_reg_offset.
4553
4554 * amd64-linux-tdep.c (amd64_linux_gregset_reg_offset): Make it
4555 global.
4556
4557 * amd64-tdep.h (amd64_linux_gregset_reg_offset): New.
4558
621791b8
PM
45592010-04-22 Pierre Muller <muller@ics.u-strasbg.fr>
4560
4561 PR stabs/11479.
4562 * stabsread.c (set_length_in_type_chain): New function.
4563 (read_struct_type): Call set_length_in_type_chain function.
4564 (read_enum_type): Idem.
4565
105c2d85
SS
45662010-04-21 Stan Shebs <stan@codesourcery.com>
4567 Nathan Sidwell <nathan@codesourcery.com>
4568
4569 * tracepoint.c (trace_save): Open in binary mode.
4570
9a22f0d0
PM
45712010-04-22 Pierre Muller <muller@ics.u-strasbg.fr>
4572
4573 * gdbtypes.h (builtin_type): Add builtin_char16 and builtin_char32
4574 fields.
0407b3f1 4575 * gdbtypes.c (gdbtypes_post_init): Set builtin_char16 and
9a22f0d0
PM
4576 builtin_char32 fields.
4577 * printcmd.c (decode_format): Set char size to '\0'
4578 for strings unless explicit size is given.
4579 (print_formatted): Correct calculation of NEXT_ADDRESS
4580 for 16 or 32 bit strings.
4581 (do_examine): Do not force byte size for strings.
4582 Use builtin_char16 and builtin_char32 types to display
0407b3f1 4583 16 or 32 bit-wide strings.
9a22f0d0
PM
4584 (x_command): Set LAST_SIZE to 'b' for string type.
4585
f335d1b3
L
45862010-04-21 H.J. Lu <hongjiu.lu@intel.com>
4587
4588 PR corefiles/11523
4589 * amd64-linux-tdep.c (amd64_linux_core_read_description): Check
4590 XCR0 first.
4591
4592 * i386-linux-tdep.c (i386_linux_core_read_xcr0): Return 0 if
4593 there is no .reg-xstate section.
4594 (i386_linux_core_read_description): Check XCR0 first.
4595
a9789a6b
MF
45962010-04-21 Mike Frysinger <vapier@gentoo.org>
4597
4598 * gdb/sparc-tdep.c (sparc32_store_return_value): Add gdb_assert ()
4599 for len <= 8.
4600
0b66f317
CM
46012010-04-21 Chris Moller <cmoller@redhat.com>
4602
4603 PR 9167
4604 * cp-valprint.c (cp_print_value_fields): Replaced obstack_base()
32d7376d
L
4605 method of popping recursion-detection stack with a method based on
4606 obstack_object_size().
0b66f317 4607
6e354e5e
PM
46082010-04-21 Pierre Muller <muller@ics.u-strasbg.fr>
4609
4610 PR pascal/11492.
4611 * p-valprint.c (pascal_val_print): Fix default printing of integer
4612 arrays.
4613
57174f31
PM
46142010-04-21 Pierre Muller <muller@ics.u-strasbg.fr>
4615
4616 Fix compilation warning on gcc-4.1.2.
4617 * rs6000-aix-tdep.c (rs6000_convert_from_func_ptr_addr): Initialize
4618 local variable`pc' to zero.
4619
6fbc7cd8
JB
46202010-04-20 Joel Brobecker <brobecker@adacore.com>
4621
4622 Implement thread support with core files on alpha-tru64.
4623 * dec-thread.c (dec_thread_find_new_threads): New function,
4624 extracted from resync_thread_list.
4625 (resync_thread_list): Add OPS parameter. Replace extracted-out
4626 code by call to dec_thread_find_new_threads.
4627 (dec_thread_wait): Update call to resync_thread_list.
4628 (init_dec_thread_ops): Set dec_thread_ops.to_find_new_threads.
4629
438c98a1
JB
46302010-04-20 Joel Brobecker <brobecker@adacore.com>
4631
4632 * ada-lang.c (value_pointer): New function.
4633 (make_array_descriptor): Call value_pointer to convert addresses to
4634 pointers.
4635
2971b56b
JB
46362010-04-20 Joel Brobecker <brobecker@adacore.com>
4637
4638 * rs6000-aix-tdep.c: #include exceptions.h.
4639 (rs6000_convert_from_func_ptr_addr): If an exception is thrown
4640 while reading the memory at ADDR, then ADDR cannot be a function
4641 descriptor.
4642
be942545
JB
46432010-04-20 Joel Brobecker <brobecker@adacore.com>
4644
4645 * ada-typeprint.c (ada_print_typedef): New function.
4646 * ada-lang.h (ada_print_typedef): Add declaration.
4647 * ada-lang.c (ada_language_defn): set la_print_typdef field
4648 to ada_print_typedef.
4649
1ca8fce0
JB
46502010-04-20 Joel Brobecker <brobecker@adacore.com>
4651
4652 * procfs.c (procfs_address_to_host_pointer): Only define when used.
4653
e9ef4f39
JB
46542010-04-20 Joel Brobecker <brobecker@adacore.com>
4655
4656 * procfs.c (iterate_over_mappings_cb_ftype): New typedef.
4657 (iterate_over_mappings): Adjust function profile. Add declaration.
4658 (insert_dbx_link_bpt_in_region, info_mappings_callback):
4659 Adjust accordingly.
4660
e294797a
JB
46612010-04-20 Joel Brobecker <brobecker@adacore.com>
4662
4663 * procfs.c (solib_mappings_callback): Move function up to avoid
4664 a compiler warning.
4665
a223f1e7
JB
46662010-04-20 Joel Brobecker <brobecker@adacore.com>
4667
4668 * procfs.c (find_signalled_thread, find_stop_signal): Move
4669 these functions down to define them only when used.
4670
0c3acc09
JB
46712010-04-20 Joel Brobecker <brobecker@adacore.com>
4672
4673 * valprint.c (common_val_print): Fix the value before extracting
4674 its contents.
4675 * ada-lang.c (ada_to_fixed_value): Make this function extern.
4676 * ada-lang.h (ada_to_fixed_value): New function declaration.
4677 * ada-valprint.c (ada_value_print): Use ada_to_fixed_value
4678 to avoid code duplication and fix a bug in the handling of
4679 fixed types contents.
4680
31ef98ae
TT
46812010-04-20 Tom Tromey <tromey@redhat.com>
4682
4683 * dwarf2read.c (dwarf2_compute_name): Handle DW_AT_linkage_name.
4684 (read_partial_die): Likewise.
4685 (dwarf_attr_name): Likewise.
4686
ec31cde5 46872010-04-20 Chris Moller <cmoller@redhat.com>
0407b3f1 4688
ec31cde5
CM
4689 PR 10867
4690
4691 * cp-valprint.c (global): Adding new static array recursion
4692 detection obstack.
4693 (cp_print_value_fields, cp_print_static_field): Added new static
4694 array recursion detection code.
4695
e0e0e543
MK
46962010-04-20 Mark Kettenis <kettenis@gnu.org>
4697
4698 * i386-linux-tdep.c (i386_linux_regset_sections): Size of the
4699 general-purpose register set should be 68 instead of 144.
4700 (i386_linux_sse_regset_sections): Likewise.
4701 (i386_linux_avx_regset_sections): Likewise.
4702
08922a10
SS
47032010-04-20 Stan Shebs <stan@codesourcery.com>
4704 Nathan Sidwell <nathan@codesourcery.com>
4705
4706 * dwarf2loc.c (struct axs_var_loc): New struct.
4707 (dwarf2_tracepoint_var_loc): New function.
4708 (dwarf2_tracepoint_var_access): New function.
4709 (dwarf2_tracepoint_var_ref): Use dwarf2_tracepoint_var_loc, deal
4710 with DW_OP_piece.
4711 (locexpr_describe_location_piece): New function.
4712 (locexpr_describe_location_1): New function.
4713 (locexpr_describe_location): Call it, update signature.
4714 (loclist_describe_location): Rewrite to loop over locations,
4715 update signature.
4716 * symtab.h (struct symbol_computed_ops): Add address to
4717 describe_location arguments, return void.
4718 * printcmd.c (address_info): Get context PC, pass to computed
4719 location description.
4720 * tracepoint.c (scope_info): Ditto.
4721 * ax-gdb.c (trace_kludge): Export.
4722
2dc7f7b3
TT
47232010-04-20 Tom Tromey <tromey@redhat.com>
4724
4725 * dwarf2-frame.c (decode_frame_entry_1): Handle CIE version 4.
4726 (struct dwarf2_cie) <segment_size>: New field.
4727 * dwarf2read.c (partial_read_comp_unit_head): Accept DWARF 4.
4728 (skip_one_die): Handle DW_FORM_flag_present, DW_FORM_sec_offset,
4729 DW_FORM_exprloc.
4730 (read_attribute_value): Handle DW_FORM_flag_present,
4731 DW_FORM_sec_offset, DW_FORM_exprloc.
4732 (dump_die_shallow): Likewise.
4733 (attr_form_is_section_offset): Handle DW_FORM_sec_offset.
4734 (dwarf2_const_value): Handle DW_FORM_exprloc.
4735 (attr_form_is_block): Likewise.
4736 (struct line_header) <maximum_ops_per_instruction>: New field.
4737 (dwarf_decode_line_header): Set new field.
4738 (dwarf_decode_lines): Handle new field.
4739
ce4b0682
SDJ
47402010-04-20 Jan Kratochvil <jan.kratochvil@redhat.com>
4741
4742 * f-exp.y: Add new production to recognize the `logical*8' type.
4743 (LOGICAL_S8_KEYWORD): New token.
4744 * f-lang.c (enum f_primitive_types)
4745 <f_primitive_type_logical_s8>: New field.
4746 (f_language_arch_info): Handling `logical*8' type.
4747 (build_fortran_types): Building `logical*8' type.
4748 * f-lang.h (struct builtin_f_type) <builtin_logical_s8>: New field.
4749
ff9f22f1
DE
47502010-04-19 Doug Evans <dje@google.com>
4751
4752 * ser-base.c (generic_readchar): Watch for EOF in read of error_fd.
4753 * ser-pipe.c (pipe_open): Fix file descriptor leaks.
4754 (pipe_close): Ditto.
4755
437125bd
PM
47562010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
4757
4758 * configure.tgt (x86_64-*-mingw*): Set BUILD_GDBSERVER to yes.
4759
e8e6c82e
PM
47602010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
4761
4762 * windows-tdep.c (windows_get_tlb_type): Change current_seh.handle
4763 type to void function.
4764
4136fdd2
SS
47652010-04-19 Stan Shebs <stan@codesourcery.com>
4766 Vladimir Prus <vladimir@codesourcery.com>
4767
4768 * tracepoint.c (tfind_1): Add missing newline, report exit from
4769 tfind mode as such.
4770 * target.c (update_current_target): Make default
4771 to_trace_find return -1.
4772
0c4b2e63
MF
47732010-04-19 Mike Frysinger <vapier@gentoo.org>
4774
4775 * objc-lang.c (find_methods): Move symname check up.
4776
78076abc
PA
47772010-04-19 Pedro Alves <pedro@codesourcery.com>
4778
4779 * ada-lang.c (print_recreate_exception)
4780 <ex_catch_exception_unhandled>: It's "catch exception unhandled",
4781 not "catch unhandled".
4782
6149aea9
PA
47832010-04-19 Pedro Alves <pedro@codesourcery.com>
4784
4785 PR breakpoints/8554.
4786
4787 Implement `save-breakpoints'.
4788
4789 * breakpoint.c (save_cmdlist): New.
4790 (breakpoint_set_cmdlist, breakpoint_show_cmdlist): Moved up close
4791 to save_cmdlist.
4792 (print_recreate_catch_fork): New.
4793 (catch_fork_breakpoint_ops): Install it.
4794 (print_recreate_catch_vfork): New.
4795 (catch_vfork_breakpoint_ops): Install it.
4796 (print_recreate_catch_syscall): New.
4797 (catch_syscall_breakpoint_ops): Install it.
4798 (print_recreate_catch_exec): New.
4799 (catch_exec_breakpoint_ops): Install it.
4800 (print_recreate_exception_catchpoint): New.
4801 (gnu_v3_exception_catchpoint_ops): Install it.
4802 (save_breakpoints): New, based on tracepoint_save_command, but
4803 handle all breakpoint types.
4804 (save_breakpoints_command): New.
4805 (tracepoint_save_command): Rename to...
4806 (save_tracepoints_command): ... this, and reimplement using
4807 save_breakpoints.
4808 (save_command): New.
4809 (_initialize_breakpoints): Install the "save" command prefix.
4810 Install the "save breakpoints" command. Make "save-tracepoints" a
4811 deprecated alias for "save tracepoints".
4812 * breakpoint.h (struct breakpoint_ops): New field `print_recreate'.
4813 * ada-lang.c (print_recreate_exception): New.
4814 (print_recreate_catch_exception): New.
4815 (catch_exception_breakpoint_ops): Install it.
4816 (print_recreate_catch_exception_unhandled): New.
4817 (catch_exception_unhandled_breakpoint_ops): Install it.
4818 (print_recreate_catch_assert): New.
4819 (catch_assert_breakpoint_ops): Install it.
4820
4821 * NEWS: Mention the new `save breakpoints' command. Mention the
4822 new `save tracepoints' alias and that `save-tracepoints' is now
4823 deprecated.
4824
0a8fce9a
PA
48252010-04-18 Pedro Alves <pedro@codesourcery.com>
4826
4827 PR tui/9217
4828
4829 * tui/tui-out.c: Include cli-out.h.
4830 (tui_table_begin, tui_table_body, tui_table_end, tui_table_header)
4831 (tui_begin, tui_end, tui_field_int, tui_field_skip)
4832 (tui_field_string, tui_field_fmt, tui_spaces, tui_text)
4833 (tui_message, tui_wrap_hint, tui_flush): Delete forward
4834 declarations.
4835 (struct ui_out_data): Rename to...
4836 (struct tui_ui_out_data): ... this. Remove `stream' and
4837 `suppress_output' fields, and inherit cli_ui_out_data.
4838 (tui_out_data): New typedef.
4839 (tui_ui_out_impl): Don't initialize fields staticaly.
4840 (tui_table_begin, tui_table_body, tui_table_end, tui_table_header)
4841 (tui_begin, tui_end): Delete.
4842 (tui_field_int): Adjust to delegate most work to the base type.
4843 (tui_field_skip): Delete.
4844 (tui_field_string, tui_field_fmt): Adjust comment. Adjust to
4845 delegate most work to the base type.
4846 (tui_spaces): Delete.
4847 (tui_text): Adjust to delegate most work to the base type.
4848 (tui_message): Delete.
4849 (tui_wrap_hint): Delete.
4850 (tui_flush): Delete.
4851 (out_field_fmt): Delete.
4852 (field_separator): Delete.
4853 (tui_out_new): Adjust to initialize the base type.
4854 (_initialize_tui_out): Initialize tui_ui_out_impl.
4855 * cli-out.c (struct ui_out_data): Moved out to cli-out.h, renamed
4856 cli_ui_out_data.
4857 (cli_out_data): Adjust.
4858 (cli_ui_out_impl): Make extern.
4859 (cli_table_header, cli_field_int, cli_field_skip): Use
4860 uo_field_string instead of cli_field_string.
4861 (cli_redirect): Adjust to use cli_out_data.
4862 (cli_out_data_ctor): New.
4863 (cli_out_new): Use it.
4864 * cli-out.h (struct ui_file): Remove forward declaration.
4865 (struct cli_ui_out_data): New, moved from cli-out.c, and renamed.
4866 (cli_ui_out_impl): Declare.
4867 (cli_out_data_ctor): Declare.
4868 * ui-out.c (struct ui_out) <data>: Change type to void pointer.
4869 (uo_field_string): No longer static.
4870 (ui_out_data): Change return type to void pointer.
4871 (ui_out_new): Change `data' parameter type to void pointer.
4872 * ui-out.h (struct ui_out_data): Don't forward declare.
4873 (ui_out_data): Change return type to void pointer.
4874 (ui_out_new): Change `data' parameter type to void pointer.
4875 (uo_field_string): Declare.
4876
172240dd
PA
48772010-04-17 Pedro Alves <pedro@codesourcery.com>
4878
4879 * ui-file.c (tee_file_isatty): Return whether `tee->one' is a tty,
4880 instead of always false.
4881
ed41462c
L
48822010-04-17 H.J. Lu <hongjiu.lu@intel.com>
4883
4884 PR corefiles/11511
4885 * amd64-linux-tdep.c (amd64_linux_gregset_reg_offset): Support
4886 orig_rax.
4887
cc60f2e3
PA
48882010-04-17 Pedro Alves <pedro@codesourcery.com>
4889
4890 * breakpoint.c (watchpoints_triggered): Use
4891 is_hardware_watchpoint.
4892 (watchpoints_triggered): Ditto.
4893 (bpstat_check_location): Use is_watchpoint and
4894 is_hardware_watchpoint.
4895 (bpstat_check_watchpoint): Use is_watchpoint and
4896 is_hardware_watchpoint.
4897 (bpstat_stop_status): Fix comment.
4898 (user_settable_breakpoint): Use is_watchpoint.
4899 (hw_watchpoint_used_count): Use is_hardware_watchpoint.
4900 (disable_watchpoints_before_interactive_call_start): Use
4901 is_watchpoint.
4902 (enable_watchpoints_after_interactive_call_stop): Use
4903 is_watchpoint.
4904 (clear_command): Use is_watchpoint.
4905 (do_enable_breakpoint): Use is_watchpoint.
4906
cb7db0f2
MF
49072010-04-16 Mike Frysinger <vapier@gentoo.org>
4908
4909 * solib-frv.c (enable_break1_done): Delete.
4910 (enable_break2): Do not check enable_break1_done. Move the
4911 enable_break2_done setting and call to
4912 remove_solib_event_breakpoints() to the end. Return without
4913 warning when the contents of _dl_debug_addr are 0.
4914 (enable_break): Do not set enable_break1_done.
4915 (frv_clear_solib): Likewise.
4916
d77b48cf
KB
49172010-04-16 Kevin Buettner <kevinb@redhat.com>
4918
4919 * m32c-tdep.c (m32c_m16c_address_to_pointer): Print warning
4920 instead of an error if no PLT entry is found. Return a
4921 potentially useful result.
4922 (m32c_m16c_pointer_to_address): Add code to search for function
4923 address when no .plt entry is found.
4924
f90824dc
SS
49252010-04-16 Stan Shebs <stan@codesourcery.com>
4926
4927 * tracepoint.c (trace_variable_command): Run a cleanup.
4928
9b79b476
PM
49292010-04-16 Pierre Muller <muller@ics.u-strasbg.fr>
4930
4931 * p-lang.c (pascal_one_char): Do not restrict C to 0..255 range.
4932
711e434b
PM
49332010-04-16 Pierre Muller <muller@ics.u-strasbg.fr>
4934
4935 Support for Windows OS Thread Information Block.
4936 * NEWS: Document new feature.
4937 * remote.c (PACKET_qGetTIBAddr): New enum element.
4938 (remote_get_tib_address): New function.
4939 (init_remote_ops): Set to_get_tib_address field
4940 to remote_get_tib_address.
4941 (_initialize_remote): Add add_packet_config_cmd
4942 for PACKET_qGetTIBAddr.
4943 * target.c (update_current_target): Set default value for
4944 new to_get_tib_address field.
4945 * target.h (target_ops): New field to_get_tib_address.
4946 (target_get_tib_address): New macro.
4947 * windows-nat.c (thread_info): Add thread_local_base field.
4948 (windows_add_thread): Add tlb argument of type 'void *'.
4949 (fake_create_process): Adapt windows_add_thread call.
4950 (get_windows_debug_event): Idem.
4951 (windows_get_tib_address): New function.
4952 (init_windows_ops): Set to_get_tib_address field
4953 to remote_get_tib_address.
4954 (_initialize_windows_nat): Replace info_w32_cmdlist
4955 initialization by a call to init_w32_command_list.
4956 (info_w32_command, info_w32_cmdlist): Removed from here...
4957 to windows-tdep.c file.
4958 * windows-tdep.h (info_w32_cmdlist): Declare.
0407b3f1 4959 (init_w32_command_list): New external function
711e434b
PM
4960 declaration.
4961 * windows-tdep.c: Add several headers.
4962 (info_w32_cmdlist): to here, made global.
4963 (thread_information_32): New struct.
4964 (thread_information_64): New struct.
4965 (TIB_NAME): New char array.
4966 (MAX_TIB32, MAX_TIB64, FULL_TIB_SIZE): New constants.
4967 (maint_display_all_tib): New static variable.
4968 (windows_get_tlb_type): New function.
4969 (tlb_value_read, tlb_value_write): New functions.
4970 (tlb_value_funcs): New static struct.
4971 (tlb_make_value): New function.
4972 (display_one_tib): New function.
4973 (display_tib): New function.
4974 (show_maint_show_all_tib):New function.
4975 (info_w32_command): Moved from windows-nat.c.
4976 (init_w32_command_list): New function.
4977 (_initialize_windows_tdep): New function.
4978 New "maint set/show show-all-tib" command
4979 New "$_tlb" internal variable.
4980
cae3f17b
JB
49812010-04-16 Joel Brobecker <brobecker@adacore.com>
4982
4983 * tui/tui-regs.c (tui_display_register): Add comment about
4984 a couple of casts.
4985 * tui/tui-stack.c (tui_show_locator_content): Ditto.
4986
2ce6d6bf
SS
49872010-04-15 Stan Shebs <stan@codesourcery.com>
4988
4989 * frame.c: Include tracepoint.h.
4990 (get_current_frame): Allow a trace frame to be an alternate source
4991 of stack frame data.
4992 * tracepoint.c (tfind_1): Don't try to get current stack frame if
4993 it won't succeed.
4994
7e559477
PA
49952010-04-15 Pedro Alves <pedro@codesourcery.com>
4996
4997 * ppc-linux-tdep.c (bsd_uthread_solib_loaded): Always pass 0 for
4998 flags.
4999 * solib-spu.c (spu_solib_loaded): Always pass 0 for flags.
5000
3f7b2faa
DE
50012010-04-15 Doug Evans <dje@google.com>
5002
fa33c3cd
DE
5003 * NEWS: Add entry for python program space support.
5004 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-progspace.o.
5005 (SUBDIR_PYTHON_SRCS): Add py-progspace.c.
5006 (py-progspace.o): New rule.
5007 * python/py-prettyprint.c (find_pretty_printer_from_objfiles): New
5008 function.
5009 (find_pretty_printer_from_progspace): New function.
5010 (find_pretty_printer_from_gdb): New function.
5011 (find_pretty_printer): Rewrite.
5012 * python/py-progspace.c: New file.
5013 * python/python-internal.h (program_space): Add forward decl.
5014 (pspace_to_pspace_object, pspy_get_printers): Declare.
5015 (gdbpy_initialize_pspace): Declare.
5016 * python/python.c: #include "progspace.h".
5017 (gdbpy_get_current_progspace, gdbpy_progspaces): New functions.
5018 (_initialize_python): Call gdbpy_initialize_pspace.
5019 (GdbMethods): Add current_progspace, progspaces.
5020
3f7b2faa
DE
5021 Add -s option to source command.
5022 * NEWS: Document new option.
5023 * cli/cli-cmds.c (find_and_open_script): Add function comment.
5024 Delete from_tty and cleanupp args. Split filep arg into file and
5025 full_pathp. New arg search_path.
5026 (source_script_from_stream): New function.
5027 (source_script_with_search): New function.
5028 (source_script): Rewrite.
5029 (source_command): Parse "-s" option.
5030 (init_cli_cmds): Add "-s" docs to source command help, and reformat.
5031 * python/python.c (source_python_script): Make file arg a const char *.
5032 Don't call fclose, leave for caller.
5033 * python/python.h (source_python_script): Update.
5034
a86988f2
PA
50352010-04-14 Daniel Jacobowitz <dan@codesourcery.com>
5036 Pedro Alves <pedro@codesourcery.com>
5037
5038 Avoid rereading shared libraries that haven't changed.
5039
5040 * solib.c (free_so_symbols): New function, from ...
5041 (free_so): ... here. Call it.
5042 (solib_read_symbols): Don't warn here if symbols have already been
5043 loaded.
5044 (solib_add): Warn here instead, if a pattern was specified.
5045 (reload_shared_libraries_1): New.
5046 (reload_shared_libraries): Rewrite to not fetch the library list.
5047
e6d9b9c2
DE
50482010-04-14 Doug Evans <dje@google.com>
5049
589390d6 5050 * source.c (openp): Strip DOS drive letter if present before
e6d9b9c2
DE
5051 concatenating string to search path.
5052
516ba659
PA
50532010-04-14 Pedro Alves <pedro@codesourcery.com>
5054
5055 * objfiles.h (gdb_bfd_close_or_warn): Declare.
5056 * objfiles.c (gdb_bfd_close_or_warn): New.
5057 * corelow.c: Include objfiles.h
5058 (core_close): Use gdb_bfd_close_or_warn.
5059 * elfread.c (build_id_verify): Ditto.
5060 * exec.c (exec_close, exec_close_1): Ditto.
5061
048d532d
PA
50622010-04-14 Daniel Jacobowitz <dan@codesourcery.com>
5063 Pedro Alves <pedro@codesourcery.com>
5064
5065 Group errors for many missing shared libraries.
5066
5067 * solist.h (struct so_list): Remove from_tty.
5068 * solib.c (solib_bfd_open): Return NULL if we failed to open a BFD.
5069 (solib_map_sections): Take so_list argument. Return 0 if we
5070 failed to open a BFD. Add target sections here.
5071 (symbol_add_stub): Delete.
5072 (solib_read_symbols): Inline symbol_add_stub. Use current flags,
5073 not from_tty copied from the so_list. Don't warn a second time
5074 for a missing library.
5075 (update_solib_list): Don't save from_tty. Use TRY_CATCH. Do not
5076 add to the section table here. Print out a single warning for all
5077 missing libraries.
5078 * bsd-uthread.c (bsd_uthread_solib_loaded): Always pass 0 for
5079 flags.
5080
044c0f87
PM
50812010-04-14 Phil Muldoon <pmuldoon@redhat.com>
5082
5083 * python/py-block.c (gdbpy_block_for_pc): Use i8n to encompass
5084 error/warning messages. Capitalize and use complete sentences.
5085 (blpy_block_syms_iternext): Likewise.
5086 * python/py-cmd.c (parse_command_name, cmdpy_init): Likewise.
5087 * python/py-frame.c (FRAPY_REQUIRE_VALID, frapy_block)
5088 (frame_info_to_frame_object, frapy_read_var)
5089 (gdbpy_frame_stop_reason_string): Likewise.
5090 * python/py-lazy-string.c (stpy_convert_to_value)
5091 (gdbpy_create_lazy_string_object): Likewise.
5092 * python/py-objfile.c (objfpy_set_printers): Likewise.
5093 * python/py-prettyprint.c (gdbpy_default_visualizer): Likewise.
5094 * python/python.c (parameter_to_python): Likewise.
5095 * python/py-type.c (typy_range, typy_target): Likewise.
5096 * python/py-value.c (valpy_cast, valpy_length, valpy_getitem)
5097 (valpy_richcompare, valpy_int, valpy_long, valpy_float): Likewise.
5098
5099
79f283fe
PM
51002010-04-14 Phil Muldoon <pmuldoon@redhat.com>
5101
5102 PR python/11381
5103
5104 * python/py-prettyprint.c (pretty_print_one_value): Test for
5105 Py_None.
5106 (print_string_repr): Test for Py_None. Set flags accordingly.
5107 Return value depending on return type.
5108 (print_children): Take a value indicating whether data was printed
5109 before this function was called. Alter output accordingly.
5110 (apply_val_pretty_printer): Capture return value from
5111 print_string_repr and pass to print_children.
5112
4ac5d44e
MK
51132010-04-13 Mark Kettenis <kettenis@gnu.org>
5114
e1caee70 5115 PR corefiles/11481
4ac5d44e
MK
5116 * i386-linux-tdep.c (i386_linux_regset_sections): Remove extended
5117 register note sections.
5118 (i386_linux_sse_regset_sections, i386_linux_avx_regset_sections):
5119 New variables.
5120 (i386_linux_init_abi): Install list of supported register note
5121 sections that matches the target description.
5122
ad91cd99
PA
51232010-04-13 Pedro Alves <pedro@codesourcery.com>
5124
5125 * remote.c (remote_get_noisy_reply): Don't error out on empty
5126 replies.
5127 (remote_start_remote): Update and merge tracepoints and trace
5128 state variables as long as the target supports tracepoints.
5129 (remote_trace_init): Fix prototype.
5130 (remote_download_trace_state_variable): Validate reply.
5131 (remote_trace_set_readonly_regions): Fix prototype.
5132 (remote_trace_start): Fix prototype. Check for empty reply.
5133 (remote_get_trace_status): Small cleanup.
5134 (remote_trace_stop): Fix prototype. Check for empty reply.
5135 (remote_trace_find): Check for empty reply.
5136 (remote_save_trace_data): Validate reply.
5137 (remote_set_disconnected_tracing): Check for empty reply, and
5138 validate reply.
5139 (remote_set_circular_trace_buffer): Ditto.
5140
ae3bccd4
PM
51412010-04-13 Pierre Muller <muller@ics.u-strasbg.fr>
5142
5143 Suppress unused value warning during compilation.
5144 * tui/tui-regs.c (tui_display_register): Cast wstandout and wstandend
5145 calls to void.
5146 * tui/tui-stack.c (tui_show_locator_content): Likewise.
5147
523136f2
SS
51482010-04-12 Stan Shebs <stan@codesourcery.com>
5149
5150 * tracepoint.c (tfile_xfer_partial): Check read result.
5151
0d18d720
MF
51522010-04-12 Mike Frysinger <vapier@gentoo.org>
5153
5154 * remote-m32r-sdi.c (m32r_files_info): Add const to local "file" var.
5155 * remote-sim.c (gdbsim_files_info): Likewise.
5156
3b273a55
RE
51572010-04-12 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
5158
5159 * arm-tdep.h (gdb_regnum): Add ARM_FPSCR_REGNUM
5160 * arm-linux-nat.c (arm_linux_vfp_register_count): New
5161 variable.
5162 (fetch_vfp_registers): New function to fetch VFP registers.
5163 (store_vfp_registers): New function to store VFP registers.
5164 (arm_linux_fetch_inferior_registers): Add support for VFP
5165 registers.
5166 (arm_linux_store_inferior_registers): Likewise.
5167 (arm_linux_read_description): Likewise.
5168 (_initialize_arm_linux_nat): Delay initialising iWMMX tdesc
5169 until we need it.
5170
778c7095
L
51712010-04-11 H.J. Lu <hongjiu.lu@intel.com>
5172
5173 * amd64-tdep.c (amd64_supply_xstateregset): Remove the unused
5174 tdep.
5175 (amd64_collect_xstateregset): Likewise.
5176
2114d44c
SS
51772010-04-09 Stan Shebs <stan@codesourcery.com>
5178
87290684
SS
5179 * tracepoint.c (trace_status_mi): Report frames created.
5180
2114d44c
SS
5181 * tracepoint.c (trace_dump_command): Include default-collect
5182 expressions.
5183
86da934b
UW
51842010-04-09 Ulrich Weigand <uweigand@de.ibm.com>
5185
5186 * symtab.c (find_function_start_sal): Never return SAL pointing
5187 before function start address, even if line info is missing.
5188
2d6e647a 51892010-04-09 Pedro Alves <pedro@codesourcery.com>
d337e9f0
PA
5190
5191 * NEWS: Mention tracepoints support.
5192
a97153c7
PA
51932010-04-09 Pedro Alves <pedro@codesourcery.com>
5194
5195 * tracepoint.c (trace_status_mi): Report disconnected tracing and
5196 circular trace buffer statuses.
5197
7a66d603
JK
51982010-04-09 Jan Kratochvil <jan.kratochvil@redhat.com>
5199
5200 * config/djgpp/fnchange.lst: Fix typo in translations for
5201 symbol-without-target_section.exp and symbol-without-target_section.c.
5202
2566ad2d
PA
52032010-04-09 Pedro Alves <pedro@codesourcery.com>
5204
5205 * breakpoint.c (condition_command): Pass condition expression to
5206 set_breakpoint_condition stripped from breakpoint number.
5207
adc36818
PM
52082010-04-09 Phil Muldoon <pmuldoon@redhat.com>
5209 Thiago Jung Bauermann <bauerman@br.ibm.com>
2566ad2d 5210 Tom Tromey <tromey@redhat.com>
adc36818
PM
5211
5212 * breakpoint.c (condition_command): Simplify. Move condition
5213 setting code to ...
5214 (set_breakpoint_condition): ... here. New function.
5215 * breakpoint.h (set_breakpoint_condition): Declare.
5216 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-breakpoint.
5217 (SUBDIR_PYTHON_SRCS): Likewise.
5218 (py-breakpoint.o): New rule.
5219 * python/py-breakpoint.c: New file.
5220 * python/python-internal.h (gdbpy_breakpoints)
5221 (gdbpy_initialize_breakpoints): Declare.
5222 (GDB_PY_SET_HANDLE_EXCEPTION) Define.
5223
219f2f23
PA
52242010-04-09 Pedro Alves <pedro@codesourcery.com>
5225
5226 * regformats/regdat.sh: Include server.h. Don't include
5227 regcache.h.
5228
33da3f1c
SS
52292010-04-08 Stan Shebs <stan@codesourcery.com>
5230 Pedro Alves <pedro@codesourcery.com>
5231
5232 * tracepoint.h (struct trace_status): New fields disconnected_tracing
5233 and circular_buffer.
5234 (disconnect_tracing): Rename from disconnect_or_stop_tracing.
5235 * tracepoint.c (trace_status_command): Display target's status for
5236 disconnected tracing and circular buffer.
5237 (disconnect_tracing): Rename from disconnect_or_stop_tracing, add
5238 query for non-disconnected-tracing case, remove the stop_tracing
5239 call.
5240 (tfile_open): Clear disconnected and circular buffer status.
5241 (trace_save): Save disconnected and circular buffer status.
5242 (parse_trace_status): Parse disconnected and circular buffer status,
5243 also recognize disconnected as a stop reason.
5244 * remote.c (remote_set_disconnected_tracing): Only set
5245 QTDisconnected if the remote end supports disconnected tracing.
5246 Warn otherwise, if trying to enable disconnected tracing.
5247 * infcmd.c (detach_command): Update disconnect_tracing call.
5248 * cli/cli-cmds.c (quit_command): Ditto.
5249
4e4d8374
L
52502010-04-08 H.J. Lu <hongjiu.lu@intel.com>
5251
5252 * i387-tdep.c (i387_collect_xsave): Replace abort with
5253 internal_error.
5254
ad443146
SS
52552010-04-08 Stan Shebs <stan@codesourcery.com>
5256
5257 * breakpoint.c (default_collect_info): New function.
5258 (breakpoints_info): Call it.
5259 (maintenance_info_breakpoints): Ditto.
5260 (tracepoints_info): Ditto.
5261
40936b0d
L
52622010-04-08 H.J. Lu <hongjiu.lu@intel.com>
5263
5264 * i387-tdep.c (i387_collect_xsave): Re-indent.
5265
3a13a53b
L
52662010-04-08 H.J. Lu <hongjiu.lu@intel.com>
5267
5268 * i386-linux-nat.c (have_ptrace_getfpxregs): Initialize to -1
5269 if HAVE_PTRACE_GETFPXREGS is defined.
5270 (i386_linux_read_description): Set have_ptrace_getfpxregs and
5271 have_ptrace_getregset to 0 if ptrace PTRACE_GETFPXREGS failed.
5272
5273 * i386-linux-tdep.c: Include "features/i386/i386-mmx-linux.c"
5274 (i386_linux_core_read_description): Return tdesc_i386_mmx_linux
5275 if .reg-xfp section doesn't exist.
5276 (_initialize_i386_linux_tdep): Call initialize_tdesc_i386_mmx_linux.
5277
5278 * i386-linux-tdep.h (tdesc_i386_mmx_linux): New.
5279
5280 * i386-tdep.c: Include "features/i386/i386-mmx.c".
5281 (i386_go32_init_abi): Set tdesc to tdesc_i386_mmx.
5282 (i386_validate_tdesc_p): Make org.gnu.gdb.i386.sse optional. Set
5283 xcr0 to I386_XSTATE_X87_MASK if SSE isn't available.
5284 (i386_gdbarch_init): Update comments.
5285 (_initialize_i386_tdep): Call initialize_tdesc_i386_mmx.
5286
5287 * common/i386-xstate.h (I386_XSTATE_X87_MASK): New.
5288
5289 * config/djgpp/fnchange.lst: Add i386 MMX XML files.
5290
5291 * features/Makefile (i386/i386-mmx-expedite): New.
5292 (i386/i386-mmx-linux-expedite): Likewise.
5293 ($(outdir)/i386/i386-mmx.dat): Likewise.
5294 ($(outdir)/i386/i386-mmx-linux.dat): Likewise.
5295
5296 * features/i386/i386-mmx-linux.c: New.
5297 * features/i386/i386-mmx-linux.xml: Likewise.
5298 * features/i386/i386-mmx.c: Likewise.
5299 * features/i386/i386-mmx.xml: Likewise.
5300 * regformats/i386/i386-mmx-linux.dat: Likewise.
5301 * regformats/i386/i386-mmx.dat: Likewise.
5302
5303 * features/Makefile (WHICH): Add i386/i386-mmx and
5304 i386/i386-mmx-linux.
5305
08001717
DE
53062010-04-08 Doug Evans <dje@google.com>
5307
5308 * source.c (openp): Skip $cdir in PATH.
5309
fff5cc64
PM
53102010-04-08 Phil Muldoon <pmuldoon@redhat.com>
5311
5312 PR python/11417
fff5cc64 5313 * python/py-lazy-string.c (stpy_convert_to_value): Check for
3a13a53b
L
5314 a NULL address.
5315 (gdbpy_create_lazy_string_object): Allow strings with a NULL
5316 address and a zero length.
fff5cc64 5317
f8c4f480
HZ
53182010-04-08 Hui Zhu <teawater@gmail.com>
5319
5320 * i386-tdep.c (i386_process_record): Add support for insn
5321 rdtsc.
5322
eb5cda86
DE
53232010-04-07 Doug Evans <dje@google.com>
5324
5325 * python/python.c (source_python_script): Use ensure_python_env
5326 to prepare environment for script.
5327
a055a187
L
53282010-04-07 H.J. Lu <hongjiu.lu@intel.com>
5329
5330 * amd64-linux-nat.c: Include "regset.h", "elf/common.h",
5331 <sys/uio.h> and "i386-xstate.h".
5332 (PTRACE_GETREGSET): New.
5333 (PTRACE_SETREGSET): Likewise.
5334 (have_ptrace_getregset): Likewise.
5335 (amd64_linux_gregset64_reg_offset): Include 16 upper YMM
5336 registers.
5337 (amd64_linux_gregset32_reg_offset): Include 8 upper YMM
5338 registers.
5339 (amd64_linux_fetch_inferior_registers): Support PTRACE_GETFPREGS.
5340 (amd64_linux_store_inferior_registers): Likewise.
5341 (amd64_linux_read_description): Check and enable AVX target
5342 descriptions.
5343
5344 * amd64-linux-tdep.c: Include "regset.h", "i386-linux-tdep.h"
5345 and "features/i386/amd64-avx-linux.c".
5346 (amd64_linux_regset_sections): New.
5347 (amd64_linux_core_read_description): Check and enable AVX
5348 target description.
5349 (amd64_linux_init_abi): Set xsave_xcr0_offset. Call
5350 set_gdbarch_core_regset_sections.
5351 (_initialize_amd64_linux_tdep): Call
5352 initialize_tdesc_amd64_avx_linux.
5353
5354 * amd64-linux-tdep.h (AMD64_LINUX_ORIG_RAX_REGNUM): Replace
5355 AMD64_MXCSR_REGNUM with AMD64_YMM15H_REGNUM.
5356 (tdesc_amd64_avx_linux): New.
5357 (amd64_linux_update_xstateregset): Likewise.
5358
5359 * amd64-tdep.c: Include "features/i386/amd64-avx.c".
5360 (amd64_ymm_names): New.
5361 (amd64_ymmh_names): Likewise.
5362 (amd64_register_name): Likewise.
5363 (amd64_supply_xstateregset): Likewise.
5364 (amd64_collect_xstateregset): Likewise.
5365 (amd64_supply_xsave): Likewise.
5366 (amd64_collect_xsave): Likewise.
5367 (AMD64_NUM_REGS): Removed.
5368 (amd64_dwarf_reg_to_regnum): Return %ymmN register number for
5369 %xmmN if AVX is available.
5370 (amd64_pseudo_register_name): Support pseudo YMM registers.
5371 (amd64_regset_from_core_section): Support .reg-xstate section.
5372 (amd64_init_abi): Set ymmh_register_names, num_ymm_regs
5373 and ymm0h_regnum. Call set_gdbarch_register_name.
5374 (amd64_init_abi): Call initialize_tdesc_amd64_avx.
5375
5376 * amd64-tdep.h (amd64_regnum): Add AMD64_YMM0H_REGNUM and
5377 AMD64_YMM15H_REGNUM.
5378 (AMD64_NUM_REGS): New.
5379 (amd64_supply_xsave): Likewise.
5380 (amd64_collect_xsave): Likewise.
5381 (amd64_register_name): Removed.
5382 (amd64_register_type): Likewise.
5383
31aeac78
L
53842010-04-07 H.J. Lu <hongjiu.lu@intel.com>
5385
5386 * i387-tdep.c: Include "i386-xstate.h".
5387 (XSAVE_XSTATE_BV_ADDR): New.
5388 (xsave_avxh_offset): Likewise.
5389 (XSAVE_AVXH_ADDR): Likewise.
5390 (i387_supply_xsave): Likewise.
5391 (i387_collect_xsave): Likewise.
5392
5393 * i387-tdep.h (I387_NUM_YMM_REGS): New.
5394 (I387_YMM0H_REGNUM): Likewise.
5395 (I387_YMMENDH_REGNUM): Likewise.
5396 (i387_supply_xsave): Likewise.
5397 (i387_collect_xsave): Likewise.
5398
c131fcee
L
53992010-04-07 H.J. Lu <hongjiu.lu@intel.com>
5400
5401 * i386-linux-nat.c: Include "regset.h", "elf/common.h",
5402 <sys/uio.h> and "i386-xstate.h".
5403 (PTRACE_GETREGSET): New.
5404 (PTRACE_SETREGSET): Likewise.
5405 (fetch_xstateregs): Likewise.
5406 (store_xstateregs): Likewise.
5407 (GETXSTATEREGS_SUPPLIES): Likewise.
5408 (regmap): Include 8 upper YMM registers.
5409 (i386_linux_fetch_inferior_registers): Support XSAVE extended
5410 state.
5411 (i386_linux_store_inferior_registers): Likewise.
5412 (i386_linux_read_description): Check and enable AVX target
5413 descriptions.
5414
5415 * i386-linux-tdep.c: Include "regset.h", "i387-tdep.h",
5416 "i386-xstate.h" and "features/i386/i386-avx-linux.c".
5417 (i386_linux_regset_sections): Add ".reg-xstate".
5418 (i386_linux_gregset_reg_offset): Include 8 upper YMM registers.
5419 (i386_linux_core_read_xcr0): New.
5420 (i386_linux_core_read_description): Check and enable AVX target
5421 description.
5422 (i386_linux_init_abi): Set xsave_xcr0_offset.
5423 (_initialize_i386_linux_tdep): Call
5424 initialize_tdesc_i386_avx_linux.
5425
5426 * i386-linux-tdep.h (I386_LINUX_ORIG_EAX_REGNUM): Replace
5427 I386_SSE_NUM_REGS with I386_AVX_NUM_REGS.
5428 (i386_linux_core_read_xcr0): New.
5429 (tdesc_i386_avx_linux): Likewise.
5430 (I386_LINUX_XSAVE_XCR0_OFFSET): Likewise.
5431
5432 * i386-tdep.c: Include "i386-xstate.h" and
5433 "features/i386/i386-avx.c".
5434 (i386_ymm_names): New.
5435 (i386_ymmh_names): Likewise.
5436 (i386_ymmh_regnum_p): Likewise.
5437 (i386_ymm_regnum_p): Likewise.
5438 (i386_xmm_regnum_p): Likewise.
5439 (i386_register_name): Likewise.
5440 (i386_ymm_type): Likewise.
5441 (i386_supply_xstateregset): Likewise.
5442 (i386_collect_xstateregset): Likewise.
5443 (i386_sse_regnum_p): Removed.
5444 (i386_pseudo_register_name): Support pseudo YMM registers.
5445 (i386_pseudo_register_type): Likewise.
5446 (i386_pseudo_register_read): Likewise.
5447 (i386_pseudo_register_write): Likewise.
5448 (i386_dbx_reg_to_regnum): Return %ymmN register number for
5449 %xmmN if AVX is available.
5450 (i386_regset_from_core_section): Support .reg-xstate section.
5451 (i386_register_reggroup_p): Supper upper YMM and YMM registers.
5452 (i386_process_record): Replace i386_sse_regnum_p with
5453 i386_xmm_regnum_p.
5454 (i386_validate_tdesc_p): Support org.gnu.gdb.i386.avx feature.
5455 Set ymmh_register_names, num_ymm_regs, ymm0h_regnum and xcr0.
8d95cc3b 5456 (i386_gdbarch_init): Set xstateregset. Set xsave_xcr0_offset.
c131fcee
L
5457 Call set_gdbarch_register_name. Replace I386_SSE_NUM_REGS with
5458 I386_AVX_NUM_REGS. Set ymmh_register_names, ymm0h_regnum and
5459 num_ymm_regs. Add num_ymm_regs to set_gdbarch_num_pseudo_regs.
5460 Set ymm0_regnum.
5461 (_initialize_i386_tdep): Call initialize_tdesc_i386_avx.
5462
5463 * i386-tdep.h (gdbarch_tdep): Add xstateregset, ymm0_regnum,
5464 xcr0, xsave_xcr0_offset, ymm0h_regnum, ymmh_register_names and
5465 i386_ymm_type.
5466 (i386_regnum): Add I386_YMM0H_REGNUM, and I386_YMM7H_REGNUM.
5467 (I386_AVX_NUM_REGS): New.
5468 (i386_xmm_regnum_p): Likewise.
5469 (i386_ymm_regnum_p): Likewise.
5470 (i386_ymmh_regnum_p): Likewise.
5471
5472 * common/i386-xstate.h: New.
5473
98adf0f3
L
54742010-04-07 H.J. Lu <hongjiu.lu@intel.com>
5475
5476 * config/djgpp/fnchange.lst: Add x86 AVX XML files.
5477
5478 * features/Makefile (WHICH): Add i386/i386-avx,
5479 i386/i386-avx-linux, i386/x86-64-avx and i386/x86-64-avx-linux.
5480 (i386/i386-avx-expedite): New.
5481 (i386/i386-avx-linux-expedite): Likewise.
5482 (i386/x86-64-avx-expedite):Likewise.
5483 (i386/x86-64-avx-linux-expedite): Likewise.
5484 ($(outdir)/i386/i386-avx.dat): New dependency.
5485 ($(outdir)/i386/i386-avx-linux.dat): Likewise.
5486 ($(outdir)/i386/x86-avx-64.dat): Likewise.
5487 ($(outdir)/i386/x86-64-avx-linux.dat): Likewise.
5488
5489 * features/i386/32bit-avx.xml: New.
5490 * features/i386/64bit-avx.xml: Likewise.
5491 * features/i386/i386-avx-linux.c: Likewise.
5492 * features/i386/i386-avx-linux.xml: Likewise.
5493 * features/i386/i386-avx.c: Likewise.
5494 * features/i386/i386-avx.xml: Likewise.
5495 * features/i386/x86-64-avx-linux.c: Likewise.
5496 * features/i386/x86-64-avx-linux.xml: Likewise.
5497 * features/i386/x86-64-avx.c: Likewise.
5498 * features/i386/x86-64-avx.xml: Likewise.
5499 * regformats/i386/i386-avx-linux.dat: Likewise.
5500 * regformats/i386/i386-avx.dat: Likewise.
5501 * regformats/i386/x86-64-avx-linux.dat: Likewise.
5502 * regformats/i386/x86-64-avx.dat: Likewise.
5503
05159abe
DE
55042010-04-07 Doug Evans <dje@google.com>
5505
5506 * top.c (source_file_name): Make const char *.
5507 * top.h (source_file_name): Update.
5508 * cli/cli-script.c (source_cleanup_lines_args): Make old_file
5509 const char *.
5510 (script_from_file): Change `file' arg to const char *.
5511 * cli/cli-script.h (script_from_file): Update.
5512
96e39866
DE
55132010-04-06 Doug Evans <dje@google.com>
5514
5515 * cli/cli-cmds.c (source_command): Run cleanups.
5516
3149d8c1
SS
55172010-04-06 Stan Shebs <stan@codesourcery.com>
5518
5519 * defs.h (char_ptr): Move typedef here from...
5520 * ada-lang.c (char_ptr): Remove.
5521 * charset.c (char_ptr): Remove.
5522 * tracepoint.h (struct uploaded_string): Remove.
5523 (struct uploaded_tp): Use vectors for string arrays.
5524 * tracepoint.c (trace_save): Use vectors of actions.
5525 (parse_tracepoint_definition): Ditto.
5526 (get_uploaded_tp): Clear vectors.
5527 * breakpoint.c (create_tracepoint_from_upload): Use vectors.
5528 (next_cmd): Change to an int.
5529 (read_next_cmd): Use vector of command strings.
5530
4cc23ede
DE
55312010-04-06 Doug Evans <dje@google.com>
5532
5533 * top.h (source_script, cd_command): Delete.
5534 * main.c: #include "cli/cli-cmds.h"
5535
bd333fb7
KB
55362010-04-06 Kevin Buettner <kevinb@redhat.com>
5537
5538 * m32c-tdep.c (make_types): When calling `arch_type', pass size of
5539 type in bytes, not bits.
5540
ec8a089a
PM
55412010-04-06 Pierre Muller <muller@ics.u-strasbg.fr>
5542
5543 * stabsread.c (define_symbol): Add support for char
5544 and string constants.
5545
2244ba2e
PM
55462010-04-06 Pierre Muller <muller@ics.u-strasbg.fr>
5547
5548 Remove remaining "%ll" uses.
5549 * go32-nat.c (go32_pte_for_address): Replace "0x%llx" using
5550 hex_string call.
5551 * rs6000-nat.c (rs6000_ptrace64): Idem.
5552 * solib-pa64.c (pa64_current_sos): Idem.
5553 * solib-spu.c (spu_current_sos): Idem.
5554 * linux-nat.c (linux_nat_find_memory_regions): Replace "%lld" using
5555 plongest call.
5556 * nto-procfs.c (procfs_meminfo): Replace "0x%016llx" using
5557 phex (VAR, 8) call.
5558 * sh64-tdep.c (sh64_show_media_regs): Idem.
5559
fce3c1f0
SS
55602010-04-05 Stan Shebs <stan@codesourcery.com>
5561
5562 * tracepoint.c: Include gdbcore.h.
5563 (tfile_xfer_partial): Return partial results, also try reading
5564 from executable.
5565 (tfile_has_all_memory): New function.
5566 (init_tfile_ops): Use it.
5567
626ea16d
SDJ
55682010-04-05 Sergio Durigan Junior <sergiodj@redhat.com>
5569
5570 PR gdb/10736:
5571 * xml-syscall.c (my_gdb_datadir): New variable to keep track of
5572 the changes in data-directory.
5573 (init_sysinfo): Reload the syscall XML file if the data-directory
5574 has changed.
5575
1f7ccab2
JK
55762010-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
5577
5578 Code cleanup.
5579 * breakpoint.c (bpstat_stop_status): Use bpstat_causes_stop.
5580
d77f58be
SS
55812010-04-04 Stan Shebs <stan@codesourcery.com>
5582 Nathan Sidwell <nathan@codesourcery.com>
5583
5584 * breakpoint.c (breakpoint_1): Add filter argument, return number of
5585 breakpoints printed.
5586 (is_hardware_watchpoint): Make argument const.
5587 (is_watchpoint): Ditto.
5588 (is_tracepoint): Merge of tracepoint_type and breakpoint_is_tracepoint,
5589 use it everywhere.
5590 (breakpoints_info): Pass NULL to breakpoint_1.
5591 (maintenance_info_breakpoints): Ditto.
5592 (watchpoints_info): New function.
5593 (tracepoints_info): Use breakpoint_1 filter.
5594 (set_ignore_count): Warn that tracepoint ignore count will be ignored.
5595 (_initialize_breakpoint): Make "info watchpoints" its own command.
5596 * breakpoint.h (is_tracepoint): Rename from breakpoint_is_tracepoint.
5597 * mi/mi-cmd-break.c (mi_cmd_break_commands): Use is_tracepoint.
5598
af54718e
SS
55992010-04-04 Stan Shebs <stan@codesourcery.com>
5600
5601 * tracepoint.c (tfile_fetch_registers): Add fallback case.
5602
74d1f91e
JK
56032010-04-04 Jan Kratochvil <jan.kratochvil@redhat.com>
5604
5605 * infcmd.c (run_command_1): Call proceed with regcache_read_pc address.
5606 * config/djgpp/fnchange.lst: Add translation for break-entry.exp.
5607
91d91ceb
JK
56082010-04-04 Jan Kratochvil <jan.kratochvil@redhat.com>
5609
5610 * breakpoint.c (bpstat_find_step_resume_breakpoint): Remove.
5611 * breakpoint.h (bpstat_find_step_resume_breakpoint): Remove.
5612
60531b24
JK
56132010-04-02 Jan Kratochvil <jan.kratochvil@redhat.com>
5614
5615 * dwarf2read.c (read_namespace_type): Use common "return set_die_type"
5616 code form.
5617
a3c4230a
HZ
56182010-04-02 Hui Zhu <teawater@gmail.com>
5619
5620 * i386-tdep.c (OT_DQUAD): New enum.
5621 (i386_process_record): Add code for MMX, 3DNow!, SSE, SSE2,
5622 SSE3, SSSE3 and SSE4.
5623
b15758fe
HZ
56242010-04-02 Hui Zhu <teawater@gmail.com>
5625
5626 * i386-tdep.c (i386_record_lea_modrm_addr): Remove useless
5627 "*addr = 0".
5628
afd02f27
PA
56292010-04-02 Pedro Alves <pedro@codesourcery.com>
5630
5631 * tracepoint.c (trace_dump_actions): New, factored out from
5632 trace_dump_command, and adjusted to recurse into while-stepping's
5633 action list.
5634 (trace_dump_command): Use it.
5635
5cea2a26
PA
56362010-04-02 Pedro Alves <pedro@codesourcery.com>
5637
5638 * breakpoint.h (struct counted_command_line): Moved definition to
5639 breakpoint.c, and forward declare.
5640 (breakpoint_commands): Declare.
5641 * breakpoint.c (struct counted_command_line): Moved here.
5642 (breakpoint_commands): New.
5643 * tracepoint.c (encode_actions): Use breakpoint_commands.
5644 * remote.c (remote_download_tracepoint): Ditto.
5645
7c47795c
L
56462010-04-01 H.J. Lu <hongjiu.lu@intel.com>
5647
5648 * remote.c (remote_parse_stop_reply): Use hex_string instead
5649 of phex_nz for error.
5650
fff87407
SS
56512010-04-01 Stan Shebs <stan@codesourcery.com>
5652 Nathan Sidwell <nathan@codesourcery.com>
5653
5654 * tracepoint.h (enum actionline_type): Remove.
5655 (validate_actionline): Change return to void.
5656 * tracepoint.c (report_agent_reqs_errors): New function.
5657 (validate_actionline): Call it, change return to void, report errors
5658 more consistently.
5659 (collect_symbol): Call report_agent_reqs_errors.
5660 (encode_actions_1): Ditto.
5661 (encode_actions): Don't expect a result from validate_actionline.
5662
615bcdef
SS
56632010-04-01 Stan Shebs <stan@codesourcery.com>
5664
5665 * tracepoint.c (trace_start_command): Confirm if trace is running.
5666 (trace_stop_command): Error if trace not running.
5667
fe01d668
L
56682010-04-01 H.J. Lu <hongjiu.lu@intel.com>
5669
5670 * amd64-tdep.c (amd64_byte_names): Add "ah", "bh", "ch", "dh".
5671 (AMD64_NUM_LOWER_BYTE_REGS): New.
5672 (amd64_pseudo_register_read): Handle "ah", "bh", "ch", "dh".
5673 (amd64_pseudo_register_write): Likewise.
5674 (amd64_init_abi): Set num_byte_regs to 20.
5675
86b17b60
PA
56762010-04-01 Pedro Alves <pedro@codesourcery.com>
5677
5678 * breakpoint.c (multi_start, multi_end, last_was_multi): Delete.
5679 (prev_breakpoint_count): New.
5680 (set_breakpoint_count): Adjust.
5681 (rbreak_start_breakpoint_count): New.
5682 (start_rbreak_breakpoints): Adjust.
5683 (end_rbreak_breakpoints): Adjust.
5684 (struct commands_info) <arg>: New field.
5685 (do_map_commands_command): Tweak output to include breakpoint spec
5686 range.
5687 (commands_command_1): Adjust. Avoid setting an xfree cleanup if
5688 ARG was empty on entry. Set INFO's arg.
5689 (create_breakpoint): Adjust.
5690
5691 * NEWS: Clarify `commands' changes.
5692
2c58c0a9
PA
56932010-04-01 Pedro Alves <pedro@codesourcery.com>
5694
5695 * tracepoint.c: Include stack.h.
5696 (struct add_local_symbols_data): New.
5697 (do_collect_symbol): New.
5698 (add_local_symbols): Rewrite using iterate_over_block_arg_vars and
5699 iterate_over_block_local_vars.
5700 * stack.c (print_block_frame_locals): Rewrite as ...
5701 (iterate_over_block_locals): ... this. Take a callback function
5702 pointer and generic data pointer, and call that instead of
5703 print_variable_and_value.
5704 (struct print_variable_and_value_data): New.
5705 (do_print_variable_and_value): New.
5706 (iterate_over_block_local_vars): New, abstracted out from
5707 print_frame_local_vars.
5708 (print_frame_local_vars): Rewrite using
5709 iterate_over_block_local_vars.
5710 (iterate_over_block_arg_vars): New, abstracted out from
5711 print_frame_arg_vars.
5712 (print_frame_arg_vars): Rewrite using iterate_over_block_arg_vars.
5713 * stack.h (iterate_over_block_arg_local_vars_cb): New typedef.
5714 (iterate_over_block_arg_vars, iterate_over_block_local_vars): Declare.
5715
d476da0e
RE
57162010-03-31 Richard Earnshaw <rearnsha@arm.com>
5717
5718 * arm-tdep.c (thumb_get_next_pc_raw): Correctly detect TBH
8d95cc3b 5719 instructions. Use the PC+4 if the base of the TBB or TBH is the
d476da0e
RE
5720 PC register.
5721
8072405b
JK
57222010-03-31 Jan Kratochvil <jan.kratochvil@redhat.com>
5723
5724 Fix crash on reading wrong function declaration DWARF.
5725 * dwarf2read.c (read_subroutine_type): New variable void_type.
5726 Pre-fill all TYPE_FIELD_TYPEs. Move nparams and iparams initialization
5727 more close to their use.
5728
8bf6485c
SS
57292010-03-31 Stan Shebs <stan@codesourcery.com>
5730
5731 * breakpoint.c (tracepoint_save_command): Include variables,
8d95cc3b 5732 conditionals, tracepoint types, and default-collect.
8bf6485c
SS
5733 * tracepoint.c (save_trace_state_variables): New function.
5734 * tracepoint.h (save_trace_state_variables): Declare it.
5735
2ae2a0b7
PM
57362010-03-31 Pierre Muller <muller@ics.u-strasbg.fr>
5737
1a161f72 5738 * remote.c (end_thread): ARI fix: Use xstrdup instead of strdup.
2ae2a0b7 5739
86ffb506
KS
57402010-03-30 Keith Seitz <keiths@redhat.com>
5741
5742 * c-typeprint.c (c_type_print_args): Don't print "void"
5743 for java, regardless of whether it is TYPE_PROTOTYPED.
5744 Use the passed-in language instead of current_language.
5745 (c_type_print_varspec_suffix): Use current_language instead
5746 of assuming language_c.
5747 * jv-typeprint.c (java_type_print_base): (bz 9320) Strip off
5748 any return type specifier from the physname.
5749
956c2c8b
PA
57502010-03-30 Pedro Alves <pedro@codesourcery.com>
5751
5752 * tui/tui-interp.c (tui_is_toplevel): New.
5753 (tui_init): Set it.
5754 (tui_allowed_p): New.
5755 * tui/tui.c (tui_enable): Check if the TUI is allowed before
5756 enabling it.
5757 * tui/tui.h (tui_allowed_p): Declare.
5758
98e5a990
TT
57592010-03-30 Ozkan Sezer <sezeroz@gmail.com>
5760
5761 * serial.h: Include winsock2.h before windows.h.
5762
c8d5aac9
L
57632010-03-30 H.J. Lu <hongjiu.lu@intel.com>
5764
5765 * NEWS: Mention xmlRegisters= in qSupported packet.
5766
5767 * i386-tdep.c: Include "remote.h".
5768 (_initialize_i386_tdep): Call register_remote_support_xml.
5769
5770 * remote.c (remote_support_xml): New.
5771 (register_remote_support_xml): Likewise.
5772 (remote_query_supported_append): Likewise.
5773 (remote_query_supported): Support remote_support_xml.
5774
5775 * remote.h (register_remote_support_xml): New.
5776
76a2b958
SS
57772010-03-29 Stan Shebs <stan@codesourcery.com>
5778
42e08e69
SS
5779 * tracepoint.c (trace_find_line_command): Remove dead code.
5780
409873ef
SS
5781 * tracepoint.h (struct uploaded_string): New struct.
5782 (struct uploaded_tp): New fields for source strings.
5783 * breakpoint.c (this_utp, next_cmd): New globals.
5784 (read_uploaded_action): New function.
5785 (create_tracepoint_from_upload): Fill in more parts
5786 of a tracepoint.
5787 * tracepoint.c (encode_source_string): New function.
5788 (trace_save): Write out source strings, fix error checks.
5789 (parse_tracepoint_definition): Add source string parsing.
5790 * remote.c (PACKET_TracepointSource): New packet type.
5791 (remote_download_command_source): New function.
5792 (remote_download_tracepoint): Download source pieces also.
5793 (_initialize_remote): Add packet config command.
5794
a0405854
SS
5795 * tracepoint.c (collect_symbol): Send LOC_UNRESOLVED symbols to
5796 expression handler.
5797
76a2b958
SS
5798 * tracepoint.c (start_tracing): Check tracepoints before sending
5799 commands to target, don't start if all tracepoints disabled.
5800
d350db38
PA
58012010-03-28 Pedro Alves <pedro@codesourcery.com>
5802
12f2d601 5803 * cli/cli-script.c (process_next_line): Handle 'stepping'.
d350db38 5804
8b9b7ef8
SS
58052010-03-26 Stan Shebs <stan@codesourcery.com>
5806
5807 * tracepoint.c (disconnect_or_stop_tracing): Get out of tfind mode.
5808
9766ced4
SS
58092010-03-26 Tom Tromey <tromey@redhat.com>
5810
5811 * breakpoint.c (commands_command_1): Duplicate 'arg'.
5812
059acae7
UW
58132010-03-26 Ulrich Weigand <uweigand@de.ibm.com>
5814
5815 * breakpoint.c (expand_line_sal_maybe): Always call skip_prologue_sal.
5816 (skip_prologue_sal): Remove local definition.
5817 (resolve_sal_pc): Remove now unnecessary code.
5818 * linespec.c (minsym_found): Call skip_prologue_sal.
5819 * symtab.c (find_function_start_pc): Remove.
5820 (find_function_start_sal): Extract prologue skipping into ...
5821 (skip_prologue_sal): ... this new function. Handle code both
5822 with and without debug info. Respect SAL's explicit_pc and
5823 explicit_line flags. Inline old find_function_start_pc.
5824 * symtab.h (find_function_start_pc): Remove.
5825 (skip_prologue_sal): Add prototype.
5826
4a811a97
UW
58272010-03-26 Ulrich Weigand <uweigand@de.ibm.com>
5828
5829 * dwarf2read.c (read_func_scope): Also scan specification DIEs
5830 for DW_TAG_imported_module children.
5831
907af001
UW
58322010-03-26 Ulrich Weigand <uweigand@de.ibm.com>
5833
5834 * dwarf2read.c (dwarf2_name): Work around GCC bugzilla debug/41828 by
5835 ignoring spurious DW_AT_name attributes for unnamed structs or unions.
5836 * completer.c (add_struct_fields): Fix inverted logic.
5837
dde2d684
UW
58382010-03-26 Ulrich Weigand <uweigand@de.ibm.com>
5839
5840 * breakpoint.c (bpstat_clear_actions): Reset bs->commands_left.
5841
a609a0c8
PA
58422010-03-26 Pedro Alves <pedro@codesourcery.com>
5843
5844 * tracepoint.c (current_trace_status): Don't make sure error_desc
5845 is non-NULL here.
5846 (parse_trace_status): Release a previous error_desc string, and
5847 set it to NULL by default. If stop reason is tracepoint_error,
5848 make sure error_desc is not left NULL.
5849
610197fd
PA
58502010-03-26 Pedro Alves <pedro@codesourcery.com>
5851
5852 * tracepoint.c (trace_save): Remove X from tracepoint error
5853 description.
5854
99b5e152
PA
58552010-03-26 Pedro Alves <pedro@codesourcery.com>
5856
5857 * tracepoint.c (parse_trace_status): Don't allow plain strings in
5858 the terror description. Don't expect an X prefix.
5859
6c28cbf2
SS
58602010-03-25 Stan Shebs <stan@codesourcery.com>
5861
5862 * tracepoint.h (trace_stop_reason): Add tracepoint_error.
5863 (struct trace_status): New field error_desc.
5864 * tracepoint.c (stop_reason_names): Add terror.
5865 (current_trace_status): Ensure non-NULL error description.
5866 (trace_status_command): Add error report.
5867 (trace_status_mi): Ditto.
5868 (trace_save): Add special case for error description.
5869 (parse_trace_status): Add case for errors.
5870
418835cc
KS
58712010-03-25 Keith Seitz <keiths@redhat.com>
5872
5873 * dwarf2read.c (read_subroutine_type): If the compilation unit
5874 language is Java, mark any formal parameter named "this" as
5875 artificial (GCC/43521).
5876 (dwarf2_name): Add special handling for Java constructors.
5877
aa7d318d
TT
58782010-03-25 Tom Tromey <tromey@redhat.com>
5879
5880 PR gdb/11327, PR gdb/11328, PR breakpoints/11368:
5881 * infrun.c (handle_inferior_event): Change initialization of
5882 stop_stack_dummy.
5883 (handle_inferior_event): Change assignment to stop_stack_dummy.
5884 (normal_stop): Update use of stop_stack_dummy.
5885 (struct inferior_status) <stop_stack_dummy>: Change type.
5886 * inferior.h (stop_stack_dummy): Update.
5887 * infcmd.c (stop_stack_dummy): Change type.
5888 * infcall.c (cleanup_delete_std_terminate_breakpoint): New
5889 function.
5890 (call_function_by_hand): Call set_std_terminate_breakpoint.
5891 Rewrite std::terminate handling.
5892 * breakpoint.h (enum bptype) <bp_std_terminate,
5893 bp_std_terminate_master>: New.
5894 (enum stop_stack_kind): New.
5895 (struct bpstat_what) <call_dummy>: Change type.
5896 (set_std_terminate_breakpoint, delete_std_terminate_breakpoint):
5897 Declare.
5898 * breakpoint.c (create_std_terminate_master_breakpoint): New
5899 function.
5900 (update_breakpoints_after_exec): Handle bp_std_terminate_master.
5901 Call create_std_terminate_master_breakpoint.
5902 (print_it_typical): Handle new breakpoint kinds.
5903 (bpstat_stop_status): Handle bp_std_terminate_master.
5904 (bpstat_what): Correctly set call_dummy field. Handle
5905 bp_std_terminate_master and bp_std_terminate.
5906 (print_one_breakpoint_location): Update.
5907 (allocate_bp_location): Update.
5908 (set_std_terminate_breakpoint): New function.
5909 (delete_std_terminate_breakpoint): Likewise.
5910 (create_thread_event_breakpoint): Update.
5911 (delete_command): Update.
5912 (breakpoint_re_set_one): Update.
5913 (breakpoint_re_set): Call create_std_terminate_master_breakpoint.
5914
82ccf5a5
JK
59152010-03-25 Jan Kratochvil <jan.kratochvil@redhat.com>
5916
5917 * symfile.c (build_section_addr_info_from_bfd): New.
5918 (build_section_addr_info_from_objfile): Base it on
5919 build_section_addr_info_from_bfd.
5920 (addrs_section_compar, addrs_section_sort): New.
5921 (addr_info_make_relative): New variables my_cleanup, abfd_addrs,
5922 addrs_sorted, abfd_addrs_sorted and addrs_to_abfd_addrs. Build
5923 addrs_to_abfd_addrs. Use it for recalculating ADDRS.
5924
737c4c52
MS
59252010-03-24 Michael Snyder <msnyder@localhost.localdomain>
5926
8d95cc3b 5927 * elfread.c (find_separate_debug_file_by_buildid):
737c4c52
MS
5928 Remove unused local variable.
5929
95a42b64
TT
59302010-03-24 Tom Tromey <tromey@redhat.com>
5931
5932 PR breakpoints/9352:
5933 * NEWS: Mention changes to `commands' and `rbreak'.
5934 * symtab.c (do_end_rbreak_breakpoints): New function.
5935 (rbreak_command): Call start_rbreak_breakpoints; arrange to call
5936 end_rbreak_breakpoints.
5937 * breakpoint.c (breakpoint_count, tracepoint_count): Now static.
5938 (set_breakpoint_count): Likewise. Clear last_was_multi.
5939 (multi_start, multi_end, last_was_multi): New globals.
5940 (start_rbreak_breakpoints, end_rbreak_breakpoints): New
5941 functions.
5942 (struct commands_info): New
5943 (do_map_commands_command): New function.
5944 (commands_command_1): New function.
5945 (commands_command): Use it.
5946 (commands_from_control_command): Likewise.
5947 (do_delete_breakpoint): New function.
5948 (delete_command): Use it.
5949 (map_breakpoint_numbers): Add 'data' argument. Pass to callback.
5950 (do_map_disable_breakpoint): New function.
5951 (disable_command): Use it.
5952 (do_map_enable_breakpoint): New function.
5953 (enable_command): Use it.
5954 (enable_once_breakpoint): Add argument.
5955 (enable_once_command): Update.
5956 (enable_delete_breakpoint): Add argument.
5957 (enable_delete_command): Update.
5958 (break_command_really): Set last_was_multi when needed.
5959 (check_tracepoint_command): Fix formatting.
5960 (validate_commands_for_breakpoint): New function.
5961 (breakpoint_set_commands): Use it.
5962 (tracepoint_save_command): Update.
5963 * breakpoint.h (start_rbreak_breakpoints, end_rbreak_breakpoints):
5964 Declare.
5965
9add0f1b
TT
59662010-03-24 Tom Tromey <tromey@redhat.com>
5967
5968 * breakpoint.h (struct counted_command_line): New struct.
5969 (struct breakpoint) <commands>: Change type.
5970 (struct bpstats) <commands>: Change type.
5971 <commands_left>: New field.
5972 * breakpoint.c (alloc_counted_command_line): New function.
5973 (incref_counted_command_line): Likewise.
5974 (decref_counted_command_line): Likewise.
5975 (do_cleanup_counted_command_line): Likewise.
5976 (make_cleanup_decref_counted_command_line): Likewise.
5977 (breakpoint_set_commands): Use decref_counted_command_line and
5978 alloc_counted_command_line.
5979 (commands_command): Don't error if breakpoint commands are
5980 executing.
5981 (commands_from_control_command): Likewise.
5982 (bpstat_free): Update.
5983 (bpstat_copy): Likewise.
5984 (bpstat_clear_actions): Likewise.
5985 (bpstat_do_actions_1): Likewise.
5986 (bpstat_stop_status): Likewise.
5987 (print_one_breakpoint_location): Likewise.
5988 (delete_breakpoint): Likewise.
5989 (bpstat_alloc): Initialize new field.
5990 (tracepoint_save_command): Update.
5991 * tracepoint.c (encode_actions): Update.
5992 (trace_dump_command): Update.
5993
a6c727b2
DJ
59942010-03-24 Daniel Jacobowitz <dan@codesourcery.com>
5995
5996 * dwarf2-frame.c (dwarf2_frame_find_quirks): Use producer_is_realview.
5997 * dwarf2read.c (load_full_comp_unit): Read DW_AT_producer.
5998 (read_structure_type): For RealView, set TYPE_STUB on structures with
5999 no byte size and no children.
6000 (read_subroutine_type): Mark functions as prototyped by default.
6001 * symtab.c (producer_is_realview): New function.
6002 * symtab.h (expand_line_sal): Fix declaration formatting.
6003 (producer_is_realview): Declare.
6004
0d39a070
DJ
60052010-03-24 Daniel Jacobowitz <dan@codesourcery.com>
6006
6007 * arm-tdep.c (skip_prologue_function): New function.
6008 (submask, bit, bits, sbits, BranchDest): Move higher in the file.
6009 (thumb_analyze_prologue): Document return value. Recognize more
6010 Thumb instructions, skippable calls, and some Thumb-2 instructions.
6011 Add debug output.
6012 (arm_skip_prologue): Remove call dummy check. Check the prologue
6013 for non-GNU compilers.
6014 (arm_instruction_changes_pc): New function.
6015 (arm_analyze_prologue): New function, broken out from
6016 arm_scan_prologue. Recognize more ARM instructions and skippable
6017 calls. Update comments. Handle NULL cache. Return the address
6018 of the first unrecognized instruction. Do not skip past other
6019 instructions which change control flow. Add debug output.
6020 (arm_scan_prologue): Use arm_analyze_prologue.
6021 (ARM_PC_32): Delete.
6022 (shifted_reg_val): Simplify ARM_PC_32 check.
6023
4baf5cf4
VP
60242010-03-24 Vladimir Prus <vladimir@codesourcery.com>
6025
6026 * tracepoint.c (tvariables_info_1): Actually compute
6027 the number of rows in the result.
6028
4a5e7a5b
PA
60292010-03-24 Pedro Alves <pedro@codesourcery.com>
6030
6031 * remote.c (crc32): Constify `buf' parameter.
6032 (remote_verify_memory): New, abstracted out from...
6033 (compare_sections_command): ... this. Remove hardcoded target
6034 checks.
6035 (init_remote_ops): Install remote_verify_memory.
6036 * target.c (target_verify_memory): New.
6037 * target.h (struct target_ops) <to_verify_memory>: New field.
6038 (target_verify_memory): Declare.
6039
011aacb0
VP
60402010-03-24 Vladimir Prus <vladimir@codesourcery.com>
6041
6042 Implement -trace-save.
6043
6044 * mi-cmds.h (mi_cmds_trace_save): Declare.
6045 * mi-cmds.c (mi_cmds): Register -trace-save.
6046 * mi/mi-main.c (mi_cmd_trace_save): New.
6047 * remote.c (remote_save_trace_data): Take const parameter.
6048 * target.h (struct target_ops::to_save_trace_data): Take
6049 const parameter.
6050 * target.c (update_current_target): Adjust to the above.
6051 * tracepoint.c (trave_save): New, extracted from
6052 (trace_save_command): ...this.
6053 (tfile_trace_find): Remove message that is unnecessary now
6054 that 'tfind' reports found frame.
6055 * tracepoint.h (trace_save): Declare.
6056
f197e0f1
VP
60572010-03-24 Vladimir Prus <vladimir@codesourcery.com>
6058
6059 Implement -trace-find.
6060
6061 * mi/mi-cmds.c (mi_cmds): Register -trace-find.
6062 * mi/mi-cmds.h (mi_cmd_trace_find): Declare.
6063 * mi/mi-main.c (mi_cmd_trace_find): New.
6064 * target.h (struct target_ops): Document to_trace_find.
6065 * tracepoint.h (tfind_1): Declare.
6066 * tracepoint.c (finish_tfind_command): Rename to...
6067 (tfind_1): ...this.
6068 * remote.c (remote_trace_find): Return -1 if target say
6069 there's no frame. Improve error diagnostics.
6070
40e1c229
VP
60712010-03-24 Vladimir Prus <vladimir@codesourcery.com>
6072
6073 -trace-define-variable and -trace-list-variables.
6074
6075 * tracepoint.c (create_trace_state_variable): Make
6076 private copy of name, as opposed to assuming the
6077 pointer lives forever.
6078 (tvariables_info_1): New.
6079 (tvariables_info): Use the above.
6080 * tracepoint.h (create_trace_state_variable, tvariables_info_1):
6081 Declare.
6082 * mi/mi-cmds.c (mi_cmds): Register -trace-define-variable
6083 and -trace-list-variables.
6084 * mi/mi-cmds.h (mi_cmd_trace_define_variable)
6085 (mi_cmd_trace_list_variables): New.
6086 * mi/mi-main.c (mi_cmd_trace_define_variable)
6087 (mi_cmd_trace_list_variables): New.
6088
9b4c786c
VP
60892010-03-24 Vladimir Prus <vladimir@codesourcery.com>
6090
6091 Implement -break-passcount.
6092
6093 * mi/mi-cmd-break.c (mi_cmd_break_passcount): New.
6094 * mi/mi-cmds.c (mi_cmds): Register -break-passcount.
6095 * mi/mi-cmds.h (mi_cmd_break_passcount): Declare.
6096
f224b49d
VP
60972010-03-24 Vladimir Prus <vladimir@codesourcery.com>
6098
6099 -trace-start/-trace-end/-trace-status.
6100
6101 * mi/mi-cmds.c (mi_cmds): Register -trace-start, -trace-status
6102 and -trace-stop.
6103 * mi/mi-cmds.h (mi_cmd_trace_start, mi_cmd_trace_status)
6104 (mi_cmd_trace_stop): Declare.
6105 * mi/mi-main.c (mi_cmd_trace_start, mi_cmd_trace_status)
6106 (mi_cmd_trace_stop): New.
6107 * tracepoint.c (start_tracing): New, extracted from...
6108 (trace_start_command): ...this.
6109 (trace_status_mi): New.
6110 * tracepoint.h (struct trace_status): Document
6111 stopping_tracepoint.
6112 (start_tracing, stop_tracing, trace_status_mi): Declare.
6113
6534d786
VP
61142010-03-24 Vladimir Prus <vladimir@codesourcery.com>
6115
6116 Implement creating tracepoints with -break-insert.
6117
6118 * mi/mi-cmd-break.c (mi_cmd_break_insert): Handle -a
6119 to mean that tracepoint should be created.
6120
51661e93
VP
61212010-03-24 Vladimir Prus <vladimir@codesourcery.com>
6122
6123 * breakpoint.c (check_no_tracepoint_commands): Use
6124 current spelling of 'teval'.
6125
a7bdde9e
VP
61262010-03-24 Vladimir Prus <vladimir@codesourcery.com>
6127
6128 Unify actions and commands
6129
6130 * defs.h (read_command_lines, read_command_lines_1): New
6131 parameters validator and closure.
6132 * tracepoint.h (struct action_line): Remove.
6133 * breakpoint.h (struct breakpoint): Remove the 'actions'
6134 field.
6135 * defs.h (enum command_control_type): New value
6136 while_stepping_control.
6137 (struct command_line): Add comments.
6138 * breakpoint.c (breakoint_is_tracepoint): New.
6139 (breakpoint_set_commands): For tracepoints,
6140 verify the commands are permissible.
6141 (check_tracepoint_commands): New.
6142 (commands_command): Require that each new line is validated using
6143 check_tracepoint_command, if we set commands for a tracepoint.
6144 (create_tracepoint_from_upload): Likewise.
6145 (print_one_breakpoint_location): Remove the code to print
6146 actions specifically.
6147 (tracepoint_save_command): Relay to print_command_lines.
6148 * cli/cli-script.c (process_next_line): New parameters validator
6149 and closure. Handle 'while-stepping'. Call validator if not null.
6150 (read_command_lines, read_command_lines1): Likewise.
6151 (recurse_read_control_structure): New parameters validator and
6152 closure. Handle while_stepping_control.
6153 (print_command_lines): Handle while-stepping.
6154 (get_command_line, define_command, document_command): Adjust.
6155 * remote.c (remote_download_tracepoint): Adjust.
6156 * tracepoint.c (make_cleanup_free_actions, read_actions)
6157 (free_actions, do_free_actions_cleanup): Remove.
6158 (trace_actions_command): Use read_command_lines.
6159 (validate_actionline): Use error in one place.
6160 (encode_actions_1): New, extracted from...
6161 (encode_actions): ...this. Also use cleanups for exception
6162 safety.
6163 (trace_dump_command): Adjust.
6164 * mi/mi-cmd-break (mi_cmd_break_commands): Validate commands if
6165 it's tracepoint.
6166
64e3cf3d
MF
61672010-03-23 Mike Frysinger <vapier@gentoo.org>
6168
6169 * Makefile.in (OPCODES_CFLAGS): Add -I$(OPCODES_SRC)/..
6170
52e9fde8
SS
61712010-03-22 Stan Shebs <stan@codesourcery.com>
6172
6173 * value.c (value_static_field): Be lazy about the field's value.
6174
508ccb1f
TT
61752010-03-22 Reid Kleckner <reid@kleckner.net>
6176
6177 PR gdb/11094
6178 * breakpoint.c (disable_breakpoints_in_unloaded_shlib): Add
6179 bp_jit_event.
6180 (disable_breakpoints_in_shlibs): Likewise.
6181
acebe513
UW
61822010-03-22 Ulrich Weigand <uweigand@de.ibm.com>
6183
6184 * dwarf2read.c (partial_die_parent_scope): Work around buggy
6185 GCC 4.1 debug info generation (GCC PR c++/28460).
6186 (determine_prefix): Likewise.
6187
957b8b5a
DJ
61882010-03-20 Daniel Jacobowitz <dan@codesourcery.com>
6189
6190 * tui/tui-disasm.c (tui_get_begin_asm_address): Default to
6191 get_current_arch.
6192 * tui/tui-layout.c (extract_display_start_addr): Likewise.
6193
3b11a015
SS
61942010-03-19 Stan Shebs <stan@codesourcery.com>
6195
6196 * ax-gdb.c (gen_fetch): Handle bool.
6197 (gen_usual_unary): Ditto.
6198 (gen_cast): Ditto.
6199 (gen_equal): New function.
6200 (gen_less): New function.
6201 (gen_expr_binop_rest): Call them, also return integer type from
6202 logical operations.
6203 (gen_expr): Ditto.
6204
20781792
TT
62052010-03-19 Tom Tromey <tromey@redhat.com>
6206
6207 * jv-lang.c (jv_dynamics_objfile_data_key)
6208 (jv_type_objfile_data_key): New globals.
6209 (class_symtab): Move earlier.
6210 (jv_per_objfile_free): New function.
6211 (get_dynamics_objfile): Call set_objfile_data. Add 'gdbarch'
6212 parameter.
6213 Remove ancient #if 1.
6214 (add_class_symbol): Remove redundant declaration.
6215 (java_lookup_class): Use alloc_type, not alloc_type_arch.
6216 (java_link_class_type): Mark as static. Update.
6217 (jv_clear_object_type): New function.
6218 (set_java_object_type): Likewise.
6219 (get_java_object_type): Use set_java_object_type.
6220 (is_object_type): Likewise.
6221 (_initialize_java_language): Register new objfile keys.
6222 (get_java_class_symtab): Add 'gdbarch' parameter.
6223 (add_class_symtab_symbol): Update.
6224 (type_from_class): Update.
6225
cf3e25ca
SS
62262010-03-19 Stan Shebs <stan@codesourcery.com>
6227
8d95cc3b 6228 * ax-general.c (ax_const_l): Fix a sizing bug.
cf3e25ca 6229
f1ae44c9 62302010-03-18 Joel Brobecker <brobecker@adacore.com>
6231
6232 GDB 7.1 released.
6233
4daf5ac0
SS
62342010-03-18 Stan Shebs <stan@codesourcery.com>
6235 Pedro Alves <pedro@codesourcery.com>
6236
6237 * target.h (struct target_ops): New method
6238 to_set_circular_trace_buffer.
6239 (target_set_circular_trace_buffer): New macro.
6240 * target.c (update_current_target): Add
6241 to_set_circular_trace_buffer, fix to_set_disconnected_tracing
6242 default behavior.
6243 * remote.c (remote_set_circular_trace_buffer): New function.
6244 (init_remote_ops): Add it to vector.
6245 * tracepoint.h (struct trace_status): New field traceframes_created,
6246 change buffer_size and buffer_free to int.
6247 * tracepoint.c (circular_trace_buffer): New global.
6248 (start_tracing): Send values of disconnected tracing and circular
6249 trace buffer settings.
6250 (set_circular_trace_buffer): New function.
6251 (parse_trace_state): Handle total space and frames created.
6252 (trace_status_command): Display total space and total frames
6253 created.
6254 (trace_save): Write out new status values.
6255 (parse_trace_status): Set traceframe_count, traceframes_created,
6256 buffer_free and buffer_size to -1 by default.
6257 (_initialize_tracepoint): New setshow for circular-trace-buffer.
6258 * NEWS: Mention the circular trace buffer option.
6259
40c549d6
TT
62602010-03-18 Tom Tromey <tromey@redhat.com>
6261
6262 * infcmd.c (finish_command_continuation): Wrap print_return_value
6263 in TRY_CATCH.
6264
e8d05480
JB
62652010-03-18 Joel Brobecker <brobecker@adacore.com>
6266
6267 * dwarf2read.c (add_partial_subprogram): Make sure the subprogram
6268 DIE has a name before creating the associated partial symbol.
6269 (read_func_scope): Emit a complaint if the subprogram does not
6270 have a name or when we can't extract the subprogram PC bounds.
6271
441b986a
UW
62722010-03-18 Ulrich Weigand <uweigand@de.ibm.com>
6273
6274 * mi/mi-main.c (mi_cmd_list_thread_groups): Use get_current_arch
6275 instead of selected frame architecture.
6276
4247603b
PA
62772010-03-18 Pedro Alves <pedro@codesourcery.com>
6278
6279 * infcmd.c (until_command): Use ERROR_NO_INFERIOR. Ensure there's
6280 a valid selected thread, and that it is not running.
6281 (advance_command): Ditto.
6282 (finish_command): Ditto.
6283
400c6af0
SS
62842010-03-17 Stan Shebs <stan@codesourcery.com>
6285
3a96536b
SS
6286 * ax-gdb.c (require_rvalue): Disallow non-scalars.
6287
573cda03
SS
6288 * infcall.c: Include tracepoint.h.
6289 (call_function_by_hand): Disallow calls in tfind mode.
6290 * infcmd.c: Include tracepoint.h.
6291 (ensure_not_tfind_mode): New function.
6292 (continue_1): Call it.
6293 (step_1) Ditto.
6294 (jump_command): Ditto.
6295 (signal_command): Ditto.
6296 (advance_command): Ditto.
6297 (until_command): Ditto.
6298 (finish_command): Ditto.
6299 * tracepoint.h (disconnect_or_stop_tracing): Declare.
6300
400c6af0
SS
6301 * ax-gdb.h (struct axs_value): New field optimized_out.
6302 (gen_trace_for_var): Add gdbarch argument.
6303 * ax-gdb.c (gen_trace_static_fields): New function.
6304 (gen_traced_pop): Call it, add gdbarch argument.
6305 (gen_trace_for_expr): Update call to it.
6306 (gen_trace_for_var): Ditto, and report optimized-out variables.
6307 (gen_struct_ref_recursive): Check for optimized-out value.
6308 (gen_struct_elt_for_reference): Ditto.
6309 (gen_static_field): Pass gdbarch instead of expression, assume
6310 optimization if field not found.
6311 (gen_var_ref): Set the optimized_out flag.
6312 (gen_expr): Error on optimized-out variable.
6313 * tracepoint.c (collect_symbol): Handle struct-valued vars as
6314 expressions, skip optimized-out variables with computed locations.
6315 * dwarf2loc.c (dwarf2_tracepoint_var_ref): Flag instead of
6316 erroring out if location expression missing.
6317 (loclist_tracepoint_var_ref): Don't error out here.
6318
a3b2a86b
TT
63192010-03-17 Tom Tromey <tromey@redhat.com>
6320
6321 * dwarf2read.c (dwarf2_get_section_info): Handle case where no
6322 DWARF data is available.
6323
38963c97
DJ
63242010-03-17 Daniel Jacobowitz <dan@codesourcery.com>
6325
6326 * symfile.c (generic_load): Reset breakpoints after loading.
6327
ddabfc73
TT
63282010-03-17 Tom Tromey <tromey@redhat.com>
6329
6330 * linux-nat.c (linux_nat_detach): Check debug_linux_nat.
6331
d8c09fb5
JK
63322010-03-17 Jan Kratochvil <jan.kratochvil@redhat.com>
6333
6334 * spu-tdep.c (spu_catch_start): Replace set_breakpoint call with the
6335 create_breakpoint call, adjust the parameters.
6336
bbb0eef6
JK
63372010-03-16 Jan Kratochvil <jan.kratochvil@redhat.com>
6338 Chandru <chandru@in.ibm.com>
6339
6340 * dwarf2read.c (read_subrange_type): Set TYPE_HIGH_BOUND_UNDEFINED.
6341 * valarith.c (value_subscripted_rvalue): Suppress error if
6342 TYPE_ARRAY_UPPER_BOUND_IS_UNDEFINED.
6343
46956e39
HZ
63442010-03-16 Holger Hans Peter Freyther <zecke@selfish.org>
6345
6346 * linux-record.c (record_linux_msghdr): Remove unintended semicolons.
6347
b8d088ac
JB
63482010-03-16 Joel Brobecker <brobecker@adacore.com>
6349
6350 * ada-tasks.c (task_command_1): Check that the task ptid is valid
6351 before doing the associated thread switch.
6352
322be962
DJ
63532010-03-16 Daniel Jacobowitz <dan@codesourcery.com>
6354
6355 * MAINTAINERS: Update my email address.
6356
8cdf0e15
VP
63572010-03-16 Vladimir Prus <vladimir@codesourcery.com>
6358
6359 Simplify MI breakpoint setting.
6360
6361 * breakpoint.c (break_command_really): Make nonstatic and
6362 rename to...
6363 (create_breakpoint): ...this. Rename prior function by this name
6364 to...
6365 (create_breakpoint_sal): ...this.
6366 (create_breakpoints): Rename to...
6367 (create_breakpoints_sal): ...this.
6368 (set_breakpoint): Remove.
6369 * breakpoint.h: Adjust to above changes.
6370 * mi/mi-cmd-break.c (mi_cmd_break_insert): Simplify.
6371
b6e7192f
SS
63722010-03-15 Stan Shebs <stan@codesourcery.com>
6373
6374 * ax-gdb.c: Include cp-support.h.
6375 (find_field): Remove.
6376 (gen_primitive_field): New function.
6377 (gen_struct_ref_recursive): New function.
6378 (gen_struct_ref): Rewrite to call gen_struct_ref_recursive instead
6379 of find_field.
6380 (gen_static_field): New function.
6381 (gen_struct_elt_for_reference): New.
6382 (gen_namespace_elt): New.
6383 (gen_maybe_namespace_elt): New.
6384 (gen_aggregate_elt_ref): New.
6385 (gen_expr): Add OP_SCOPE, display opcode name in error message.
6386
1054b214
TT
63872010-03-15 Tom Tromey <tromey@redhat.com>
6388
6389 * dwarf2read.c (die_needs_namespace): Also return 0 for
6390 DW_TAG_subprogram.
6391
13387711
SW
63922010-03-15 Sami Wagiaalla <swagiaal@redhat.com>
6393
6394 PR c++/7936:
6395 * cp-support.h: Added char *declaration element to using_direct
6396 data struct.
6397 (cp_add_using): Added char *declaration argument.
6398 (cp_add_using_directive): Ditto.
6399 (cp_lookup_symbol_imports): made extern.
6400 * cp-namespace.c: Updated with the above changes.
6401 * dwarf2read.c (read_import_statement): Ditto.
6402 (read_namespace): Ditto.
6403 (read_import_statement): Support import declarations.
6404 * cp-namespace.c (cp_lookup_symbol_imports): Check for imported
6405 declarations.
6406 Added support for 'declaration_only' search.
6407 (cp_lookup_symbol_namespace): Attempt to search for the name as
6408 is before consideration of imports.
6409 * symtab.c (lookup_symbol_aux_local): Added a 'declaration_only'
6410 search at every block level search.
6411 Now takes language argument.
6412 (lookup_symbol_aux): Updated.
6413
6e31430b
TT
64142010-03-15 Tom Tromey <tromey@redhat.com>
6415
6416 * c-exp.y (name_not_typename): Add 'operator' clause.
6417
4dea3bb7 64182010-03-15 Ralf Corsepius <ralf.corsepius@rtems.org> (tiny change)
bf307134
JB
6419
6420 * configure.ac: Exit if ${gdb_target_obs}" is not set.
6421 * configure: Regenerate.
6422
4d9743af
JK
64232010-03-15 Jan Kratochvil <jan.kratochvil@redhat.com>
6424
6425 * symfile.c (addr_info_make_relative): Ignore also missing ".dynbss"
6426 and ".sdynbss". Update the comment.
6427
f75150fe
JZ
64282010-03-15 Jie Zhang <jie@codesourcery.com>
6429
6430 * MAINTAINERS: Update my email address.
6431
3c13bc11
DJ
64322010-03-14 Daniel Jacobowitz <dan@codesourcery.com>
6433
6434 * gdbtypes.h (TYPE_IS_OPAQUE): Correct HAVE_CPLUS_STRUCT check.
6435
43484f03
DJ
64362010-03-14 Daniel Jacobowitz <dan@codesourcery.com>
6437
6438 * charset.c [USE_WIN32API]: Include <windows.h>.
6439 (_initialize_charset): Correct type of w32_host_default_charset.
6440
5f25d77d
PA
64412010-03-14 Pedro Alves <pedro@codesourcery.com>
6442
6443 * infrun.c (ptid_match): Don't assert that PTID is not a pid ptid.
6444
1c809c68
TT
64452010-03-12 Tom Tromey <tromey@redhat.com>
6446
6447 PR c++/9708:
6448 * dwarf2read.c (die_needs_namespace) <DW_TAG_variable>: A variable
6449 in a lexical block does not need a namespace.
6450 (new_symbol) <DW_TAG_variable>: Put extern variables on
6451 list_in_scope in all cases.
6452
948103cf
SS
64532010-03-12 Stan Shebs <stan@codesourcery.com>
6454
6455 * ax-gdb.c (gen_expr): Add shift expressions.
6456 (gen_expr_binop_rest): Ditto.
6457
00ae8fef
SW
64582010-03-12 Sami Wagiaalla <swagiaal@redhat.com>
6459
6460 * buildsym.c (finish_block): Reset using_directives pointer
6461 after block initialization.
6462
9cad29ac
L
64632010-03-12 H.J. Lu <hongjiu.lu@intel.com>
6464
6465 * amd64-tdep.c (amd64_word_names): Replace "sp" with "".
6466 * i386-tdep.c (i386_word_names): Likewise.
6467
2f4d8875
PA
64682010-03-12 Pedro Alves <pedro@codesourcery.com>
6469
6470 * target.c (memory_xfer_partial): Don't use the stack cache if
6471 inspecting trace frames.
6472 * tracepoint.c (finish_tfind_command): Invalidate the target
6473 dcache.
6474
ccf26247
JK
64752010-03-11 Jan Kratochvil <jan.kratochvil@redhat.com>
6476
6477 * solib-svr4.c (LM_ADDR_CHECK) <info_verbose>: Use printf_unfiltered
6478 for the PIC displacement, print also the displacement value.
6479 (svr4_exec_displacement): Print DISPLACEMENT if INFO_VERBOSE.
6480
477c84a7
KB
64812010-03-10 Kevin Buettner <kevinb@redhat.com>
6482
6483 * remote-mips.c (close_ports, mips_initialize_cleanups)
6484 (mips_exit_cleanups, mips_send_command, mips_open, pmon_open)
6485 (ddb_open, lsi_open, mips_remove_breakpoint, mips_remove_watchpoint)
6486 (mips_stopped_by_watchpoint, send_srec, pmon_checkset)
6487 (pmon_make_fastrec, pmon_check_ack, mips_expect_download)
6488 (pmon_check_entry_address, pmon_check_total, pmon_end_download)
6489 (pmon_download, pmon_load_fast, _initialize_remote_mips): Add
6490 comments describing each of these functions.
6491 (mips_enter_debug, mips_exit_debug, common_open)
6492 (mips_signal_from_protocol, pmon_makeb64, pmon_zeroset): Add
6493 blank line after the comment describing the function.
6494
01c30d6e
JK
64952010-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
6496
6497 * solib-svr4.c (svr4_exec_displacement): Return now success, new
6498 parameter displacementp. Update comment.
6499 (svr4_relocate_main_executable): Return if non-zero SECTION_OFFSETS
6500 element exists. Return if svr4_exec_displacement was not successful.
6501 Update comment.
6502
09919ac2
JK
65032010-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
6504 Daniel Jacobowitz <dan@codesourcery.com>
6505
6506 * solib-svr4.c (read_program_header): Support type == -1 to read
6507 all program headers.
6508 (read_program_headers_from_bfd): New function.
6509 (svr4_static_exec_displacement): Remove and move the comment ...
6510 (svr4_exec_displacement): ... here. Remove variable found. New
6511 variable displacement. Check also DYNAMIC. Verify DISPLACEMENT
6512 alignment for ELF targets. Compare target vs. exec_bfd PHDRs for ELF
6513 targets using read_program_headers_from_bfd. Remove the call of
6514 svr4_static_exec_displacement.
6515
d146bf1e
TT
65162010-03-10 Tom Tromey <tromey@redhat.com>
6517
6518 * dwarf2read.c (struct pubnames_header): Remove.
6519 (_PUBNAMES_HEADER): Remove.
6520 (_ACTUAL_PUBNAMES_HEADER_SIZE): Remove.
6521 (struct aranges_header): Remove.
6522 (_ARANGES_HEADER, _ACTUAL_ARANGES_HEADER_SIZE): Remove.
6523 (struct dwarf2_per_objfile) <pubnames, aranges>: Remove.
6524 (PUBNAMES_SECTION): Remove.
6525 (ARANGES_SECTION): Remove.
6526 (dwarf2_locate_sections): Don't handle pubnames or aranges.
6527 (dwarf2_build_psymtabs): Remove dead code.
6528 (dwarf2_build_psymtabs_easy): Remove.
6529
be391dca
TT
65302010-03-10 Tom Tromey <tromey@redhat.com>
6531
6532 * elfread.c (elf_symfile_read): Don't call
6533 dwarf2_build_frame_info.
6534 * dwarf2read.c (struct dwarf2_section_info) <readin>: New field.
6535 (struct dwarf2_per_objfile) <objfile>: New field.
6536 (dwarf2_has_info): Now idempotent. Set objfile field.
6537 (dwarf2_read_section): Check and set readin field. Call
6538 posix_madvise.
6539 (dwarf2_build_psymtabs): Don't read all sections.
6540 (read_type_comp_unit_head): Read types section.
6541 (create_debug_types_hash_table): Likewise.
6542 (init_cu_die_reader): Add asserts.
6543 (process_type_comp_unit): Add assert.
6544 (dwarf2_build_psymtabs_hard): Read info section.
6545 (load_partial_comp_unit): Add assert.
6546 (create_all_comp_units): Read info section.
6547 (load_full_comp_unit): Likewise.
6548 (dwarf2_ranges_read): Read ranges section.
6549 (dwarf2_record_block_ranges): Add assert.
6550 (dwarf2_read_abbrevs): Read abbrev section.
6551 (read_indirect_string): Read str section.
6552 (dwarf_decode_line_header): Read line section.
6553 (read_signatured_type_at_offset): Read types section.
6554 (dwarf_decode_macros): Read macinfo section.
6555 (dwarf2_symbol_mark_computed): Read loc section.
6556 * dwarf2-frame.c (dwarf2_frame_find_fde): Call
6557 dwarf2_build_frame_info.
6558 (dwarf2_build_frame_info): Unconditionally set
6559 dwarf2_frame_objfile_data on the objfile.
6560 * configure.ac: Check for posix_madvise.
6561 * config.in, configure: Rebuild.
6562
ccefe4c4
TT
65632010-03-10 Tom Tromey <tromey@redhat.com>
6564
e38df1d0
TT
6565 * xcoffread.c (xcoff_start_psymtab): Update.
6566 (xcoff_end_psymtab): Update.
6567 * psymtab.c (allocate_psymtab): Remove dead code.
6568 * psympriv.h (struct partial_symtab) <read_symtab_private>: Now
6569 void*.
6570 * mdebugread.c (parse_partial_symbols): Update.
6571 (new_psymtab): Likewise.
6572 * dwarf2read.c (process_psymtab_comp_unit): Update.
6573 (psymtab_to_symtab_1): Update.
6574 * dbxread.c (start_psymtab): Update.
6575 (end_psymtab): Likewise.
6576
be391dca 65772010-03-10 Tom Tromey <tromey@redhat.com>
e38df1d0 6578
ccefe4c4
TT
6579 * xcoffread.c: Include psymtab.h.
6580 (xcoff_sym_fns): Update.
6581 * symtab.h (struct partial_symbol): Remove.
6582 (PSYMBOL_DOMAIN, PSYMBOL_CLASS): Remove.
6583 (struct partial_symtab): Remove.
6584 (PSYMTAB_TO_SYMTAB): Remove.
6585 (lookup_partial_symbol, lookup_partial_symtab, find_pc_psymtab)
6586 (find_pc_sect_psymtab): Remove.
6587 (find_pc_sect_symtab_via_partial): Declare.
6588 (find_pc_psymtab, find_pc_sect_psymbol, psymtab_to_symtab)
6589 (find_main_psymtab): Remove.
6590 (find_main_filename): Declare.
6591 (fixup_psymbol_section): Remove.
6592 (fixup_section): Declare.
6593 * symtab.c: Include psymtab.h.
6594 (lookup_symtab): Use lookup_symtab method.
6595 (lookup_partial_symtab): Remove.
6596 (find_pc_sect_psymtab_closer): Remove.
6597 (find_pc_sect_psymtab): Remove.
6598 (find_pc_sect_symtab_via_partial): New function.
6599 (find_pc_psymtab, find_pc_sect_psymbol, find_pc_psymbol): Remove.
6600 (fixup_section): No longer static.
6601 (fixup_psymbol_section): Remove.
6602 (lookup_symbol_aux): Use lookup_symbol_aux_quick.
6603 (lookup_global_symbol_from_objfile): Likewise.
6604 (lookup_symbol_aux_psymtabs): Remove.
6605 (lookup_symbol_aux_quick): New function.
6606 (lookup_symbol_global): Use lookup_symbol_aux_quick.
6607 (lookup_partial_symbol): Remove.
6608 (basic_lookup_transparent_type_quick): New function.
6609 (basic_lookup_transparent_type): Use it.
6610 (find_main_psymtab): Remove.
6611 (find_main_filename): New function.
6612 (find_pc_sect_symtab): Use find_pc_sect_symtab method.
6613 (find_line_symtab): Use expand_symtabs_with_filename method.
6614 (output_partial_symbol_filename): New function.
6615 (sources_info): Use map_partial_symbol_filenames.
6616 (struct search_symbols_data): New type.
6617 (search_symbols_file_matches): New function.
6618 (search_symbols_name_matches): Likewise.
6619 (search_symbols): Use expand_symtabs_matching method.
6620 (struct add_name_data): Rename from add_macro_name_data.
6621 (add_macro_name): Update.
6622 (add_partial_symbol_name): New function.
6623 (default_make_symbol_completion_list): Use
6624 map_partial_symbol_names.
6625 (struct add_partial_symbol_name): New type.
6626 (maybe_add_partial_symtab_filename): New function.
6627 (make_source_files_completion_list): Use
6628 map_partial_symbol_filenames.
6629 (expand_line_sal): Use expand_symtabs_with_filename method.
6630 * symmisc.c: Include psymtab.h.
6631 (print_objfile_statistics): Use print_stats method.
6632 (dump_objfile): Use dump method.
6633 (dump_psymtab, maintenance_print_psymbols)
6634 (maintenance_info_psymtabs, maintenance_check_symtabs)
6635 (extend_psymbol_list): Remove.
6636 * symfile.h (struct quick_symbol_functions): New struct.
6637 (struct sym_fns) <qf>: New field.
6638 (sort_pst_symbols): Remove.
6639 (increment_reading_symtab): Declare.
6640 * symfile.c: Include psymtab.h.
6641 (compare_psymbols, sort_pst_symbols): Remove.
6642 (psymtab_to_symtab): Remove.
6643 (increment_reading_symtab): New function.
6644 (symbol_file_add_with_addrs_or_offsets): Use expand_all_symtabs
6645 method.
6646 (set_initial_language): Use find_main_filename.
6647 (allocate_psymtab, discard_psymtab, cashier_psymtab): Remove.
6648 (free_named_symtabs): Remove unused code.
6649 (start_psymtab_common, add_psymbol_to_bcache)
6650 (append_psymbol_to_list, add_psymbol_to_list, init_psymbol_list):
6651 Remove.
6652 * stack.c: Include psymtab.h, symfile.h.
6653 (backtrace_command_1): Use find_pc_sect_symtab_via_partial.
6654 * source.h (psymtab_to_fullname): Don't declare.
6655 * source.c: Include psymtab.h.
6656 (select_source_symtab): Use find_last_source_symtab method.
6657 (forget_cached_source_info): Use forget_cached_source_info
6658 method.
6659 (find_and_open_source): No longer static.
6660 (psymtab_to_fullname): Remove.
6661 * somread.c: Include psymtab.h.
6662 (som_sym_fns): Update.
6663 * psympriv.h: New file.
6664 * psymtab.h: New file.
6665 * psymtab.c: New file.
6666 * objfiles.h: (ALL_OBJFILE_PSYMTABS): Remove.
6667 (ALL_PSYMTABS, ALL_PSPACE_PSYMTABS): Likewise.
6668 * objfiles.c: Include psymtab.h.
6669 (objfile_relocate1): Use relocate method.
6670 (objfile_has_partial_symbols): Use has_symbols method.
6671 * mipsread.c: Include psymtab.h.
6672 (ecoff_sym_fns): Update.
6673 * mi/mi-cmd-file.c: Include psymtab.h.
6674 (print_partial_file_name): New function.
6675 (mi_cmd_file_list_exec_source_files): Use
6676 map_partial_symbol_filenames.
6677 * mdebugread.c: Include psympriv.h.
6678 * machoread.c: Include psympriv.h.
6679 (macho_sym_fns): Update.
6680 * m2-exp.y (yylex): Use lookup_symtab.
6681 * elfread.c: Include psympriv.h.
6682 (elf_sym_fns): Update.
6683 * dwarf2read.c: Include psympriv.h.
6684 * dbxread.c: Include psympriv.h.
6685 (aout_sym_fns): Update.
6686 * cp-support.c: Include psymtab.h.
6687 (read_in_psymtabs): Remove.
6688 (make_symbol_overload_list_qualified): Use
6689 expand_symtabs_for_function method.
6690 * coffread.c: Include psympriv.h.
6691 (coff_sym_fns): Update.
6692 * blockframe.c: Include psymtab.h.
6693 (find_pc_partial_function): Use find_pc_sect_symtab method.
6694 * ada-lang.h (ada_update_initial_language): Update.
6695 * ada-lang.c: Include psymtab.h.
6696 (ada_update_initial_language): Remove 'main_pst' argument.
6697 (ada_lookup_partial_symbol): Remove.
6698 (struct ada_psym_data): New type.
6699 (ada_add_psyms): New function.
6700 (ada_add_non_local_symbols): Use map_ada_symtabs method.
6701 (struct add_partial_datum): New type.
6702 (ada_add_partial_symbol_completions): New function.
6703 (ada_make_symbol_completion_list): Use map_partial_symbol_names.
6704 (ada_exception_support_info_sniffer): Update.
6705 * Makefile.in (SFILES): Add psymtab.c.
6706 (COMMON_OBS): Add psymtab.o.
6707 (HFILES_NO_SRCDIR): Add psymtab.h, psympriv.h.
6708
7d8500b7
PM
67092010-03-10 Pierre Muller <muller@ics.u-strasbg.fr>
6710
6711 * remote-fileio.c (cygwin_conv_path): Define macro for old cygwin API.
6712
c0cc3a76
SW
67132010-03-10 Sami Wagiaalla <swagiaal@redhat.com>
6714
6715 PR C++/11236:
6716 * cp-namespace.c (cp_add_using): Deleted.
6717 (cp_add_using_directive): Use obstack allocations.
6718 Merged the function cp_add_using into this one.
6719 Added 'struct obstack *' argument.
6720 (cp_scan_for_anonymous_namespaces): Updated.
6721 * cp-support.h: Updated.
6722 * dwarf2read.c (read_import_statement): Updated.
6723 (read_namespace): Updated.
6724
452fa064
CF
67252010-03-10 Pierre Muller <muller@ics.u-strasbg.fr>
6726
6727 * windows-nat.c (cygwin_conv_path): Remove old macro.
6728
60e1c644
PA
67292010-03-10 Pedro Alves <pedro@codesourcery.com>
6730
6731 * breakpoint.c (condition_command): Handle watchpoint conditions.
6732 (is_hardware_watchpoint): Add comment.
6733 (is_watchpoint): New.
6734 (update_watchpoint): Don't reparse the watchpoint's condition
6735 unless necessary.
6736 (WP_IGNORE): New.
6737 (watchpoint_check): Use it.
6738 (bpstat_check_watchpoint): Handle it.
6739 (bpstat_check_breakpoint_conditions): Evaluate watchpoint local
6740 conditions in a frame where it makes sense.
6741 (watch_command_1): Store the innermost block of the condition
6742 expression.
6743 (delete_breakpoint): Delete the watchpoint condition expression.
6744 * breakpoint.h (struct bp_location) <cond>: Update comment.
6745 (struct breakpoint): New field `cond_exp_valid_block'.
6746
af6b7be1
JB
67472010-03-09 Joel Brobecker <brobecker@adacore.com>
6748
6749 Adjust handling of Ada DIEs after dwarf2_physname patch.
6750 * dwarf2read.c (dwarf2_compute_name): Add handling of Ada DIEs.
6751
60c5c021
CF
67522010-03-09 Christopher Faylor <me+cygwin@cgf.cx>
6753 Pierre Muller <muller@ics.u-strasbg.fr>
6754
6755 * windows-nat.c (cygwin_conv_path): Redefine to properly convert
6756 from/to posix/win32.
6757 (windows_make_so): Use non-Cygwin 1.7 specific function.
6758 (windows_create_inferior): Make sure that cygallargs points to
6759 original args in non Cygwin 1.7. case.
6760
60a1502a
MS
67612010-03-09 Michael Snyder <msnyder@vmware.com>
6762
6763 * i386-tdep.c (i386_record_lea_modrm_addr): Use extract_signed_int
6764 after target_read_memory to get host byte order.
6765 (i386_process_record): Ditto.
6766
94af9270
KS
67672010-03-09 Keith Seitz <keiths@redhat.com>
6768
6769 Based on work from Daniel Jacobowitz <dan@codesourcery.com>
6770 * c-typeprint.c (cp_type_print_method_args): For non-static methods,
6771 print out const or volatile qualifiers, too.
6772 (c_type_print_args): Add parameters show_artificial and language.
6773 Skip artificial parameters when requested.
6774 Use the appropriate language printer.
6775 (c_type_print_varspec): Tell c_type_print_args to skip artificial
6776 parameters and pass language_c.
6777 * dwarf2read.c (die_list): New file global.
6778 (struct partial_die_info): Update comments for name field.
6779 (pdi_needs_namespace): Renamed to ...
6780 (die_needs_namespace): ... this. Rewrite.
6781 (dwarf2_linkage_name): Remove.
6782 (add_partial_symbol): Do not predicate the call to
6783 partial_die_full_name based on pdi_needs_namespace.
6784 Remove call to cp_check_possible_namespace_symbols and associated
6785 outdated comments.
6786 (guess_structure_name): Do not inspect child subprogram DIEs.
6787 (dwarf2_fullname): Update comments.
6788 Use die_needs_namespace to assist in computing the name.
6789 (read_func_scope): Use dwarf2_name to get the DIE's name.
6790 Use dwarf2_physname to get the "linkage name" of the DIE.
6791 (dwarf2_add_member_field): Use dwarf2_physname instead of
6792 dwarf2_linkage_name.
6793 (read_structure_type): For structs and classes, set TYPE_NAME, too.
6794 (determine_class): Remove.
6795 (read_partial_die): Ignore DW_AT_MIPS_linkage_name for all languages
6796 except Ada.
6797 (new_symbol): Unconditionally call dwarf2_name.
6798 Compute the "linkage name" using dwarf2_physname.
6799 Use dwarf2_name instead of dwarf2_full_name for enumerator DIEs.
6800 When determining to scan for anonymous C++ namespaces, ignore
6801 the linkage name.
6802 (dwarf2_physname): New function.
6803 (dwarf2_full_name): Move content to new function and call
6804 that.
6805 (dwarf2_compute_name): "New" function.
6806 (_initialize_dwarf2_read): Initialize die_list.
6807 * gnu-v3-eabi.c (gnu_v3_find_method_in): Remove unused variable
6808 physname.
6809 (gnu_v3_print_method_ptr): Use the physname for virtual methods
6810 without a demangled name.
6811 Print out type information for non-virtual methods.
c8d5aac9 6812 * linespec.c (decode_line_1): Force ANY string using "::" (or
94af9270 6813 "." for java) to use decode_compound, and clean up any stray quoting.
c8d5aac9
L
6814 If we found a file symtab, re-evaluate whether the remainder is_quoted.
6815 (decode_compound): Stop consuming at an open parenthesis.
6816 Keep template parameters.
6817 Keep any overload information.
6818 Keep keywords like "const".
6819 Remove paren_pointer.
6820 Move is_quoted check from set_flags to here.
6821 Remove #if 0 code from 2000. Ten years is long enough.
6822 (find_method): Before comparing symbol names, canonicalize the string
6823 from the user.
6824 If a specific overload is requested, find it. Otherwise throw an error.
94af9270
KS
6825 (find_method_overload_end): New function.
6826 (set_flags): Remove.
c8d5aac9
L
6827 (decode_compound): Assume that parentheses are matched.
6828 It's a lot easier.
94af9270
KS
6829 * symtab.c (symbol_find_demangled_name): Add DMGL_VERBOSE flag
6830 to cplus_demangle.
6831 * linespec.c (decode_line_1): Keep important keywords like
6832 "const" and "volatile".
6833 * symtab.h (SYMBOL_CPLUS_DEMANGLED_NAME): Remove.
6834 * typeprint.h (c_type_print_args): Add declaration.
6835 * ui-file.c (do_ui_file_obsavestring): New function.
6836 (ui_file_obsavestring): New function.
6837 * ui-file.h (ui_file_obsavestring): Add declaration.
6838 * valops.c (find_overload_match): Resolve the object to
6839 a non-pointer type.
6840 If the object is a data member, search the object for the member
6841 and return with staticp set.
6842 Use SYMBOL_NATURAL_NAME instead of SYMBOL_CPLUS_DEMANGLED_NAME.
6843 Do not attempt to extract a function name from non-function types.
6844 If the extracted function name and the original name are the same,
6845 we don't have a C++ method.
6846
8d95cc3b
PA
6847 From Jan Kratochvil <jan.kratochvil@redhat.com>:
6848 * dwarf2read.c (new_symbol <DW_TAG_enumerator>): Call dwarf2_full_name.
94af9270
KS
6849
6850 * ada-lang.c (ada_lookup_symbol): Remove linkage_name parameters
6851 and arguments from symbol lookups.
6852 * ax-gdb.c (gen_expr): Likewise.
6853 * cp-namespace.c (cp_lookup_symbol_nonlocal, lookup_namespace_scope,
6854 cp_lookup_symbol_namespace, lookup_symbol_file, lookup_nested_type,
6855 lookup_possible_namespace_symbol): Likewise.
6856 * cp-support.c (read_in_psymtabs): Likewise.
6857 * cp-support.h (cp_lookup_symbol_nonlocal): Likewise.
6858 * language.h (la_lookup_symbol_nonlocal): Likewise.
6859 * scm-valprint.c (scm_inferior_print): Likewise.
6860 * solib-darwin.c (darwin_relocate_section_addresses): Likewise.
6861 * solib-svr.c (elf_lookup_lib): Likewise.
6862 * solib.c (show_auto_solib_add): Likewise.
6863 * solist.h (lookup_lib_global, solib_global_lookup): Likewise.
6864 * symmisc.c (maintenance_check_symtabs): Likewise.
6865 * symtab.c (lookup_symbol_in_language, lookup_symbol_aux,
6866 lookup_symbol_aux_local, lookup_symbol_aux_block,
6867 lookup_symbol_from_objfile, lookup_symbol_aux_symtabs,
6868 lookup_symbol_aux_psymtabs,basic_lookup_symbol_nonlocal,
6869 lookup_symbol_static, lookup_symbol_global, symbol_matches_domain,
6870 basic_lookup_transparent_type, find_main_psymtab,
6871 lookup_block_symbol): Likewise.
6872 * symtab.h (basic_lookp_symbol_nonlocal, lookup_symbol_static,
6873 lookup_symbol_global, lookup_symbol_aux_block,
6874 lookup_symbol_partial_symbol, lookup_block_symbol,
6875 lookup_global_symbol, value_maybe_namespace_elt): Likewise.
6876
9cb74f47
PM
68772010-03-09 Pierre Muller <muller@ics.u-strasbg.fr>
6878
6879 * python/python-internal.h: Include symtab.h.
6880
af6b7be1
JB
68812010-03-09 Joel Brobecker <brobecker@adacore.com>
6882 Pierre Muller <muller@ics.u-strasbg.fr>
e13eedd5
PM
6883
6884 * p-lang.c (is_pascal_string_type): Remove unneeded parentheses.
6885 * p-valprint.c (pascal_val_print): Remove undeed block and fix
6886 indentation.
6887
bad56014
TT
68882010-03-08 Tom Tromey <tromey@redhat.com>
6889
6890 * breakpoint.c (breakpoint_1): Add "QUIT".
6891
08105857
PA
68922010-03-08 Daniel Jacobowitz <dan@codesourcery.com>
6893 Pedro Alves <pedro@codesourcery.com>
6894
6895 * solib.c (solib_find): Replace extension if
6896 solib_symbols_extension is set in the target gdbarch.
6897 * arm-symbian-tdep.c (arm_symbian_init_abi): Set
6898 solib_symbols_extension to "sym".
6899 * gdbarch.sh (solib_symbols_extension): New variable.
6900 (pstring): New function.
6901 * gdbarch.h, gdbarch.c: Regenerate.
6902
7c953934
TT
69032010-03-08 Tom Tromey <tromey@redhat.com>
6904
6905 PR cli/9591:
6906 * NEWS: Update.
6907 * utils.c: Include main.h.
6908 (fputs_maybe_filtered): Don't paginate if `batch_flag'.
6909 (defaulted_query): Use default answer if `batch_flag'.
6910 * main.h (batch_flag): Declare.
6911 * main.c (batch_flag): New global.
6912 (captured_main): Remove 'batch'. Update.
6913
bbd2783e
KB
69142010-03-08 Kevin Buettner <kevinb@redhat.com>
6915
6916 From Richard Sandiford, Martin M. Hunt, Corinna Vinschen,
6917 and Kevin Buettner:
6918
6919 * remote-mips.c (rockhopper_ops): New target_ops struct.
6920 (MON_ROCKHOPPER): New mips_monitor_type.
6921 (read_hex_value): New function.
6922 (mips_request): Send 8-byte values with a 'T' packet. Read the
8d95cc3b 6923 packet argument as a string and use read_hex_value to parse it.
bbd2783e
KB
6924 (mips_exit_debug): Wait for response when using MON_ROCKHOPPER.
6925 (rockhopper_open): New function.
6926 (mips_wait): Read the PC, FP and SP fields as strings. Use
6927 read_hex_value to parse them and mips_set_register to commit them.
6928 (mips_set_register): New function.
6929 (mips_fetch_registers): Do not cast register value to "unsigned"
6930 when reading a MON_ROCKHOPPER 't' packet. Use mips_set_register.
6931 (mips_store_registers): Use a 'T' packet to set registers when
6932 using MON_ROCKHOPPER.
6933 (pmon_end_download): Don't run initEther if using MON_ROCKHOPPER
6934 and expect the total to be printed before the entry address.
6935 (_initialize_remote_mips): Initialize and add rockhopper_ops.
6936
566f3d17
KB
69372010-03-08 Kevin Buettner <kevinb@redhat.com>
6938
6939 * remote-mips.c (mips_fetch_word): Add new parameter, `valp'.
6940 Change return value to int. Store value fetched in location
6941 addressed by `val'. Use function's return value as success
6942 or failure indicator. Adjust all callers.
6943
9c8ee2ab 69442010-03-08 Pierre Muller <muller@ics.u-strasbg.fr>
f72d4b77
PM
6945
6946 * p-lang.c (is_pascal_string_type): Check that TYPE arg is non NULL.
6947
7155de5a
HZ
69482010-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
6949 Hui Zhu <teawater@gmail.com>
6950
6951 * record.c (record_open_1): Check tmp_to_stopped_by_watchpoint and
6952 tmp_to_stopped_data_address.
6953 (record_open): Reset tmp_to_stopped_by_watchpoint and
6954 tmp_to_stopped_data_address.
6955 * target.c (init_dummy_target): Add to_stopped_by_watchpoint and
6956 to_stopped_data_address.
6957
580879fc
HZ
69582010-03-08 Hui Zhu <teawater@gmail.com>
6959
6960 * i386-tdep.c (i386_process_record): Initialize regnum.
6961
b0fcb67f
JK
69622010-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
6963
6964 * symfile.c (addr_info_make_relative): New variable sect_name, use it.
6965 Do not warn on ".gnu.liblist" and ".gnu.conflict".
6966
08597104
JB
69672010-03-08 Joel Brobecker <brobecker@adacore.com>
6968
6969 Memory error when reading wrong core file.
6970 * solib-svr4.c (solib_svr4_r_map): catch and print all exception
6971 errors while reading the inferior memory, and return zero if
6972 an exception was raised.
6973
425b824a
MS
69742010-03-07 Michael Snyder <msnyder@vmware.com>
6975
ec6dbf37
MS
6976 * record.c (record_restore): Rename tmpu8 to rectype.
6977
648d0c8b
MS
6978 * i386-tdep.c (i386_record_lea_modrm_addr): Rename local variables
6979 tmpu8, tmpi16, tmpi32, tmpulongest to addr8, addr16, addr32, addr64.
6980
6981 (i386_record_push): Rename local tmpulongest to addr.
6982
6983 (i386_process_record): Rename local tmpulongest to addr.
6984
6985 Rename local variables tmpu16, tmpu32, tmpu64 to addr16, addr32,
6986 addr64.
955db0c0
MS
6987
6988 Rename local variable tmpu8 to opcode8 and regnum.
425b824a 6989
10760264
JB
69902010-03-07 Joel Brobecker <brobecker@adacore.com>
6991
6992 * remote.c (remote_get_ada_task_ptid): New function.
c8d5aac9 6993 (init_remote_ops): Set remote_ops.to_get_ada_task_ptid.
10760264 6994
b3c613f2
CF
69952010-03-06 Christopher Faylor <me+cygwin@cgf.cx>
6996
6997 * windows-nat.c: Reorganize #ifdef __CYGWIN__ considerations into one
6998 block. Define helper macros to reduce ifdefs in code.
6999 (get_module_name): Use cygwin_buf_t for buffer and __PMAX for buffer
7000 size. Call unadorned GetModuleFileNameEx rather than
7001 GetModuleFileNameEx*.
7002 (windows_make_so): Use __PMAX to denote maximum buffer size and
7003 cygwin_buf_t for buffer type. Use GetSystemDirectory{W,A} as
7004 appropriate.
7005 (get_image_name): Use __PMAX to denote maximum buffer size.
7006 (handle_load_dll): Likewise.
7007 (windows_pid_to_exec_file): Likewise.
7008 (windows_create_inferior): Add many accommodations for older Cygwin and
7009 non-Cygwin.
7010 (bad_GetModuleFileNameExW): Control inclusion of this function based on
7011 __USEWIDE conditional.
7012 (bad_GetModuleFileNameExA): Likewise.
7013 (_initialize_loadable): Just use real function names without the dyn_
7014 part since they are defined earlier.
7015
f870a310
TT
70162010-03-05 Corinna Vinschen <vinschen@redhat.com>
7017 Tom Tromey <tromey@redhat.com>
7018
7019 * utils.c (host_char_to_target): Add 'gdbarch' argument.
7020 (parse_escape): Likewise.
7021 * python/py-utils.c (unicode_to_target_string): Update.
7022 (unicode_to_target_python_string): Update.
7023 (target_string_to_unicode): Update.
7024 * printcmd.c (printf_command): Update.
7025 * p-exp.y (yylex): Update.
7026 * objc-exp.y (yylex): Update.
7027 * mi/mi-parse.c: Include charset.h.
7028 (mi_parse_escape): New function.
7029 (mi_parse_argv): Use it.
7030 * jv-exp.y (yylex): Update.
7031 * i386-cygwin-tdep.c (i386_cygwin_auto_wide_charset): New
7032 function.
7033 (i386_cygwin_init_abi): Call set_gdbarch_auto_wide_charset.
7034 * gdbarch.sh (auto_charset, auto_wide_charset): New.
7035 * gdbarch.c: Rebuild.
7036 * gdbarch.h: Rebuild.
7037 * defs.h (parse_escape): Update.
7038 * cli/cli-setshow.c: Include arch-utils.h.
7039 (do_setshow_command): Update.
7040 * cli/cli-cmds.c (echo_command): Update.
7041 * charset.h (target_charset, target_wide_charset): Update.
7042 * charset.c: Include arch-utils.h.
7043 (target_charset_name): Default to "auto".
7044 (target_wide_charset_name): Likewise.
7045 (show_target_charset_name): Handle "auto".
7046 (show_target_wide_charset_name): Likewise.
7047 (be_le_arch): New global.
7048 (set_be_le_names): Add 'gdbarch' argument.
7049 (validate): Likewise. Don't call set_be_le_names.
7050 (set_charset_sfunc, set_host_charset_sfunc)
7051 (set_target_charset_sfunc, set_target_wide_charset_sfunc):
7052 Update.
7053 (target_charset): Add 'gdbarch' argument.
7054 (target_wide_charset): Likewise. Remove 'byte_order' argument.
7055 (auto_target_charset_name): New global.
7056 (default_auto_charset, default_auto_wide_charset): New functions.
7057 (_initialize_charset): Set auto_target_charset_name. Allow "auto"
7058 for target charsets. Copy result of nl_langinfo. Use GetACP if
7059 USE_WIN32API.
7060 * c-lang.c (charset_for_string_type): Add 'gdbarch' argument,
7061 remove 'byte_order' argument. Update.
7062 (classify_type): Likewise.
7063 (c_emit_char): Update.
7064 (c_printchar): Update.
7065 (c_printstr): Update.
7066 (c_get_string): Update.
7067 (evaluate_subexp_c): Update.
7068 * arch-utils.h (default_auto_charset, default_auto_wide_charset):
7069 Declare.
7070 * python/python.c (gdbpy_target_charset): New function.
7071 (gdbpy_target_wide_charset): Likewise.
7072 (GdbMethods): Update.
7073 * NEWS: Update.
7074
4e7386b0
UW
70752010-03-05 Ulrich Weigand <uweigand@de.ibm.com>
7076
7077 * symfile.c (build_section_addr_info_from_objfile): Do not mask
7078 off high address bits.
7079
aab48ede
UW
70802010-03-05 Ulrich Weigand <uweigand@de.ibm.com>
7081
7082 * python/py-lazy-string.c (gdbpy_extract_lazy_string): Extract
7083 address as UnsignedLongLong, not LongLong.
7084
8eeafb51 70852010-03-05 Kevin Buettner <kevinb@redhat.com>
c8d5aac9 7086 Pedro Alves <pedro@codesourcery.com>
8eeafb51
KB
7087
7088 * remote-mips.c (gdbthread.h): Include.
7089 (remote_mips_ptid): Declare.
7090 (mips_error): Only mourn the inferior when inferior_ptid is non-null.
7091 (common_open): Set inferior_ptid, add it as an inferior, and
7092 as a thread too. Delete FIXME comment regarding start_remote().
7093 (mips_close): Invoke generic_mourn_inferior().
7094 (mips_kill): Make sure that target_mourn_inferior is invoked.
7095 (mips_mourn_inferior): Don't invoke generic_mourn_inferior, as
7096 it's now invoked from mips_close().
7097 (mips_load): Don't null out inferior_ptid. Don't call
7098 clear_symtab_users().
7099 (mips_thread_alive, mips_pid_to_str): New functions.
7100 (_initialize_remote_mips): Initialize remote_mips_ptid. Initialize
7101 to_thread_alive and to_pid_to_str operations.
7102
ae411497
TT
71032010-03-04 Tom Tromey <tromey@redhat.com>
7104
7105 * dwarf2read.c (skip_one_die) <DW_FORM_ref_addr>: Use offset size
7106 in DWARF 3 and later.
7107 (read_attribute_value) <DW_FORM_ref_addr>: Likewise.
7108
0e0b460e
KS
71092010-03-04 Keith Seitz <keiths@redhat.com>
7110
7111 * linespec.c (decode_line_1): Update comments for is_quote_enclosed.
7112 If the filename portion of the linespec was quoted, recheck the
7113 remainder for additional quoting.
7114 (locate_first_half): Skip over completer chars, too.
7115
1b93ff13
TT
71162010-03-04 Tom Tromey <tromey@redhat.com>
7117
7118 * printcmd.c (printf_command): Pass dummy argument to
7119 printf_filtered.
7120
fc36e839
DE
71212010-03-04 Doug Evans <dje@google.com>
7122
111f853c
DE
7123 * arm-tdep.c (arm_make_stub_cache): Delete unused locals reg,
7124 unwound_fp.
7125
fc36e839
DE
7126 * arm-tdep.c (arm_stub_unwind_sniffer): Add comment.
7127
c7437ca6
PA
71282010-03-04 Pedro Alves <pedro@codesourcery.com>
7129
7130 * breakpoint.c (update_watchpoint): Create a sentinel location if
7131 the software watchpoint isn't watching any memory.
7132 (breakpoint_address_bits): Skip dummy software watchpoint locations.
7133
58dadb1b
PA
71342010-03-04 Pedro Alves <pedro@codesourcery.com>
7135
7136 * utils.c (fputs_maybe_filtered): Check if there's already a top
7137 level interpreter before dereferencing it. If there isn't one,
7138 don't paginate either.
7139
50e98be4
DJ
71402010-03-04 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
7141
7142 * arm-tdep.c (arm_pc_is_thumb): Add heuristic that tries to get
7143 the state right when single stepping.
7144 (arm_get_next_pc_raw, thumb_get_next_pc_raw): New functions.
7145 Get the next PC along with the instruction state.
7146 (thumb_get_next_pc): Remove.
7147 (arm_get_next_pc): Modified to use arm_get_next_pc_raw.
7148
2e3ceee9
HZ
71492010-03-04 Hui Zhu <teawater@gmail.com>
7150
7151 * i386-tdep.c (i386_process_record): Change "addr" to "tmpu64".
7152
390a8aca
PA
71532010-03-03 Pedro Alves <pedro@codesourcery.com>
7154
7155 * utils.c (fputs_maybe_filtered): Always disable pagination if the
7156 top level interpreter is MI.
7157
9355b391
SS
71582010-03-03 Stan Shebs <stan@codesourcery.com>
7159
7160 * remote.c (remote_download_tracepoint): Iterate over locations.
7161 * tracepoint.c (validate_actionline): Ditto.
7162 (encode_actions): Add location argument.
7163 (trace_dump_command): Check all locations to see if stepping
7164 frame.
390a8aca 7165
8685c86f
L
71662010-03-03 H.J. Lu <hongjiu.lu@intel.com>
7167 Eli Zaretskii <eliz@gnu.org>
7168
7169 * NEWS: Add X86 general purpose registers section.
7170
e8f781e2
TT
71712010-03-03 Tom Tromey <tromey@redhat.com>
7172
7173 PR mi/11098:
7174 * varobj.c (install_new_value): Handle case where new print_value
7175 is NULL.
7176
a0e0ef55
TT
71772010-03-03 Dainis Jonitis <jonitis@gmail.com>
7178
7179 PR gdb/11345:
7180 * printcmd.c (printf_command): Print end of format string using
7181 printf_filtered.
7182
a58d7472
TT
71832010-03-02 Tom Tromey <tromey@redhat.com>
7184
7185 * mi/mi-cmd-break.c (mi_read_next_line): Add missing 'void'.
7186 * defs.h (read_command_lines_1): Add missing 'void'.
7187 * cli/cli-script.c (recurse_read_control_structure): Add missing
7188 'void'.
7189 (read_next_line): Likewise.
7190 (read_command_lines_1): Likewise.
7191
ce50d78b
UW
71922010-03-02 Ulrich Weigand <uweigand@de.ibm.com>
7193
7194 * spu-tdep.c (spu_analyze_prologue): Track instruction to
7195 store backchain as part of prologue.
7196
7e9af34a
DJ
71972010-03-02 Daniel Jacobowitz <dan@codesourcery.com>
7198
7199 * progspace.c (update_address_spaces): Update inferior address spaces
7200 also.
7201
01637564
DE
72022010-03-02 Doug Evans <dje@google.com>
7203
7204 * dwarf2read.c (add_partial_subprogram): Add missing baseaddr to
7205 lowpc,highpc args to addrmap_set_empty.
7206
1ba53b71
L
72072010-03-02 H.J. Lu <hongjiu.lu@intel.com>
7208
7209 * amd64-tdep.c (amd64_byte_names): New.
7210 (amd64_word_names): Likewise.
7211 (amd64_dword_names): Likewise.
7212 (amd64_pseudo_register_name): Likewise.
7213 (amd64_pseudo_register_read): Likewise.
7214 (amd64_pseudo_register_write): Likewise.
7215 (amd64_init_abi): Set num_byte_regs, num_word_regs, num_dword_regs
7216 and num_mmx_regs. Call set_gdbarch_pseudo_register_read,
7217 set_gdbarch_pseudo_register_write and
7218 set_tdesc_pseudo_register_name. Don't call
7219 set_gdbarch_num_pseudo_regs. Don't set mm0_regnum.
7220
7221 * i386-tdep.c (i386_num_mmx_regs): Removed.
7222 (i386_num_pseudo_regs): Likewise.
7223 (i386_byte_names): New.
7224 (i386_word_names): Likewise.
7225 (i386_byte_regnum_p): Likewise.
7226 (i386_word_regnum_p): Likewise.
7227 (i386_mmx_regnum_p): Updated.
7228 (i386_pseudo_register_name): Make it global. Handle byte and
7229 word pseudo-registers.
7230 (i386_pseudo_register_read): Likewise.
7231 (i386_pseudo_register_write): Likewise.
7232 (i386_pseudo_register_type): Handle byte, word and dword
7233 pseudo-registers
7234 (i386_register_reggroup_p): Don't include pseudo
7235 registers, except for MXX, in any register groups. Don't
7236 include pseudo byte, word, dword registers in general_reggroup.
7237 (i386_gdbarch_init): Set num_byte_regs, num_word_regs,
7238 num_dword_regs, al_regnum, ax_regnum and eax_regnum. Put MMX
7239 pseudo-registers after word pseudo-registers. Call
7240 set_gdbarch_num_pseudo_regs after calling gdbarch_init_osabi.
7241
7242 * i386-tdep.h (gdbarch_tdep): Add num_mmx_regs, num_byte_regs,
7243 al_regnum, num_word_regs, ax_regnum, num_dword_regs and
7244 eax_regnum.
7245 (i386_byte_regnum_p): New.
7246 (i386_word_regnum_p): Likewise.
7247 (i386_dword_regnum_p): Likewise.
7248 (i386_pseudo_register_name): Likewise.
7249 (i386_pseudo_register_read): Likewise.
7250 (i386_pseudo_register_write): Likewise.
7251
a6f5ef51
L
72522010-03-01 H.J. Lu <hongjiu.lu@intel.com>
7253
7254 * target-descriptions.c (tdesc_type): Remove
7255 TDESC_TYPE_I386_EFLAGS and TDESC_TYPE_I386_MXCSR.
7256 (tdesc_predefined_types): Likewise.
7257 (tdesc_gdb_type): Likewise. Pass NULL to append_flags_type_flag
7258 if flag name is empty.
7259 (maint_print_c_tdesc_cmd): Handle TDESC_TYPE_FLAGS.
7260
7261 * features/i386/32bit-core.xml: Define i386_eflags.
7262 * features/i386/64bit-core.xml: Likewise.
7263
7264 * features/i386/32bit-sse.xml: Define i386_mxcsr.
7265 * features/i386/64bit-sse.xml: Likewise.
7266
7267 * features/i386/amd64-linux.c: Regenerated.
7268 * features/i386/amd64.c: Likewise.
7269 * features/i386/i386-linux.c: Likewise.
7270 * features/i386/i386.c: Likewise.
7271
f5dff777
DJ
72722010-03-01 Daniel Jacobowitz <dan@codesourcery.com>
7273
7274 * gdbtypes.c (append_composite_type_field_raw): New.
7275 (append_composite_type_field_aligned): Use the new function.
7276 * gdbtypes.h (append_composite_type_field_raw): Declare.
7277 * target-descriptions.c (struct tdesc_type_field): Add start and end.
7278 (struct tdesc_type_flag): New type.
7279 (struct tdesc_type): Add TDESC_TYPE_STRUCT and TDESC_TYPE_FLAGS to
7280 kind. Add size to u.u. Add u.f for flags.
7281 (tdesc_gdb_type): Handle TDESC_TYPE_STRUCT and TDESC_TYPE_FLAGS.
7282 (tdesc_free_type): Likewise.
7283 (tdesc_create_struct, tdesc_set_struct_size, tdesc_create_flags): New.
7284 (tdesc_add_field): Handle TDESC_TYPE_STRUCT.
7285 (tdesc_add_bitfield, tdesc_add_flag): New.
7286 * target-descriptions.h (tdesc_create_struct, tdesc_set_struct_size)
7287 (tdesc_create_flags, tdesc_add_bitfield, tdesc_add_flag): Declare.
7288 * xml-tdesc.c (struct tdesc_parsing_data): Rename current_union to
7289 current_type. Add current_type_size and current_type_is_flags.
7290 (tdesc_start_union): Clear the new fields.
7291 (tdesc_start_struct, tdesc_start_flags): New.
7292 (tdesc_start_field): Handle struct fields, including bitfields.
7293 (field_attributes): Make type optional. Add start and end.
7294 (union_children): Rename to struct_union_children.
7295 (union_attributes): Rename to struct_union_attributes. Add optional
7296 size.
7297 (flags_attributes): New.
7298 (feature_children): Add struct and flags.
7299 * features/gdb-target.dtd: Add flags and struct to features.
7300 Make field type optional. Add field start and end.
7301
90884b2b
L
73022010-03-01 H.J. Lu <hongjiu.lu@intel.com>
7303
7304 * amd64-linux-nat.c (AMD64_LINUX_USER64_CS): New.
7305 (amd64_linux_read_description): Likewise.
7306 (_initialize_amd64_linux_nat): Set to_read_description to
7307 amd64_linux_read_description.
7308
7309 * amd64-linux-tdep.c: Include "features/i386/amd64-linux.c".
7310 (amd64_linux_register_name): Removed.
7311 (amd64_linux_register_type): Likewise.
7312 (amd64_linux_core_read_description): New.
7313 (amd64_linux_init_abi): Set target description to
7314 tdesc_amd64_linux if needed. Support orig_rax in target
7315 description. Don't call set_gdbarch_register_name nor
7316 set_gdbarch_register_type. Call
7317 set_gdbarch_core_read_description.
7318 (_initialize_amd64_linux_tdep): Call
7319 initialize_tdesc_amd64_linux.
7320
7321 * amd64-linux-tdep.h (tdesc_amd64_linux): New.
7322
7323 * amd64-tdep.c: Include "features/i386/amd64.c".
7324 (amd64_register_names): Removed.
7325 (amd64_register_name): Likewise.
7326 (amd64_register_type): Likewise.
7327 (amd64_init_abi): Set num_core_regs and register_names. Set
8d95cc3b 7328 target description to tdesc_amd64 if needed. Don't call
90884b2b
L
7329 set_gdbarch_register_name nor set_gdbarch_register_type.
7330 (_initialize_amd64_tdep): New.
7331
7332 * i386-linux-nat.c (i386_linux_read_description): New.
7333 (_initialize_i386_linux_nat): Set to_read_description to
7334 i386_linux_read_description.
7335
7336 * i386-linux-tdep.c: Include "features/i386/i386-linux.c".
7337 (i386_linux_register_name): Removed.
7338 (i386_linux_core_read_description): New.
7339 (i386_linux_read_description): Likewise.
7340 (i386_linux_init_abi): Don't call set_gdbarch_register_name.
7341 Set target description to tdesc_i386_linux if needed. Support
7342 orig_eax. Set register_reggroup_p. Call
7343 set_gdbarch_core_read_description.
7344 (_initialize_i386_linux_tdep): Call initialize_tdesc_i386_linux.
7345
7346 * i386-linux-tdep.h (tdesc_i386_linux): New.
7347
7348 * i386-nto-tdep.c (i386nto_regset_id): Replace I386_NUM_FREGS
7349 with I387_NUM_REGS.
7350
7351 * i386-tdep.c: Include "features/i386/i386.c".
7352 (i386_register_names): Make it const.
7353 (i386_mmx_names): Likewise.
7354 (i386_num_register_names): Removed.
7355 (i386_register_name): Likewise.
7356 (i386_eflags_type): Likewise.
7357 (i386_mxcsr_type): Likewise.
7358 (i386_sse_type): Likewise.
7359 (i386_register_type): Likewise.
7360 (i387_ext_type): Call tdesc_find_type instead of arch_float_type.
7361 (i386_pseudo_register_name): New.
7362 (i386_pseudo_register_type): Likewise.
7363 (i386_mmx_type): Make it static.
7364 (i386_gdbarch_init): Check arch. Replace I386_NUM_FREGS with
7365 I387_NUM_REGS. Set num_core_regs and register_names. Don't
7366 call set_gdbarch_register_name nor set_gdbarch_register_type.
7367 Set register_reggroup_p. Set target description to tdesc_i386
7368 if needed. Call set_tdesc_pseudo_register_type,
7369 set_tdesc_pseudo_register_name and tdesc_use_registers.
7370 (_initialize_i386_tdep): Call initialize_tdesc_i386.
7371 initialize_tdesc_x86_64.
7372
7373 * i386-tdep.h (gdbarch_tdep): Remove i386_eflags_type,
7374 i386_mxcsr_type and i386_sse_type. Add num_core_regs,
7375 register_names, tdesc and register_reggroup_p.
7376 (I386_NUM_FREGS): Removed.
7377 (i386_eflags_type): Likewise.
7378 (i386_mxcsr_type): Likewise.
7379 (i386_mmx_type): Likewise.
7380 (i386_sse_type): Likewise.
7381 (i386_register_name): Likewise.
7382 (i386_regnum): Add I386_MXCSR_REGNUM.
7383 (I386_SSE_NUM_REGS): Defined with I386_MXCSR_REGNUM.
7384
7385 * i387-tdep.h (I387_NUM_REGS): New.
7386
7387 * regformats/i386/i386-linux.dat: Generated.
7388 * regformats/i386/i386.dat: Likewise.
7389 * regformats/i386/amd64-linux.dat: Likewise.
7390 * regformats/i386/amd64.dat: Likewise.
7391
7392 * regformats/reg-i386-linux.dat: Removed.
7393 * regformats/reg-i386.dat: Likewise.
7394 * regformats/reg-x86-64-linux.dat: Likewise.
7395 * regformats/reg-x86-64.dat: Likewise.
7396
d0d0ab16
CV
73972010-03-01 Corinna Vinschen <vinschen@redhat.com>
7398
7399 * remote-fileio.c (remote_fileio_func_rename): Use Cygwin 1.7
7400 cygwin_conv_path API rather than the deprecated
7401 cygwin_conv_to_full_posix_path.
7402 * windows-nat.c:
7403 (GetModuleFileNameExA): Undefine for Cygwin.
7404 (GetModuleFileNameExW): Define for Cygwin.
7405 (get_module_name): Change size of pathbuf to PATH_MAX for Cygwin.
7406 Call GetModuleFileNameExW and convert path to POSIX using
7407 cygwin_conv_path.
7408 (windows_make_so): Always define p. Drop unused variable m.
7409 Don't use Win32 functions to check file existance, rather use
7410 access on Cygwin. Fetch system directory using GetSystemDirectoryW.
7411 Use canonicalize_file_name to get full path.
7412 (get_image_name): Use wcstombs, rather than WideCharToMultiByte
7413 to convert Unicode pathname to multibyte on Cygwin. Otherwise,
7414 use correct target buffer size in call to WideCharToMultiByte.
7415 (handle_load_dll): Change size of dll_buf to PATH_MAX for Cygwin.
7416 (windows_pid_to_exec_file): Change size of path to PATH_MAX for Cygwin.
7417 (windows_create_inferior): Convert all paths and arguments to wchar_t
7418 and use CreateProcessW on Cygwin.
7419 (_initialize_windows_nat): Disable DOS-style path warning on Cygwin.
7420 (bad_GetModuleFileNameExA): Undefine for Cygwin.
7421 (bad_GetModuleFileNameExW): Define for Cygwin.
7422 (_initialize_loadable): Load GetModuleFileNameExW into
7423 dyn_GetModuleFileNameExW on Cygwin. Don't load ANSI function on Cygwin.
7424
dc00d89f
PM
74252010-02-28 Phil Muldoon <pmuldoon@redhat.com>
7426
7427 PR python/11036
7428 * python/py-frame.c (frapy_read_var): Add block argument and logic
7429 to cope with user provided blocks.
7430
0e095b7e
JK
74312010-02-28 Jan Kratochvil <jan.kratochvil@redhat.com>
7432
7433 * infcall.c (call_function_by_hand): Remove gdb_assert on sp and old_sp.
7434 New comment.
7435
2f9e05b4
CV
74362010-02-28 Corinna Vinschen <vinschen@redhat.com>
7437
7438 * Makefile.in (SUBDIR_MI_OBS): Move mi-common.o from here...
7439 (COMMON_OBS): ... to here since it's used unconditionally.
7440 (SUBDIR_MI_SRCS): Move mi/mi-common.c from here...
7441 (SFILES): To here.
7442
eb195664
DD
74432010-02-26 David Daney <ddaney@caviumnetworks.com>
7444
7445 * mips-linux-tdep.c: Update struct sigframe comments.
7446 (SIGFRAME_CODE_OFFSET): Delete macro.
7447 (mips_linux_o32_sigframe_init): Calculate sigcontext_base using
7448 this_frame's sp.
7449 (mips_linux_n32n64_sigframe_init): Same.
7450
97b0f3e2
KB
74512010-02-26 Kevin Buettner <kevinb@redhat.com>
7452
7453 * remote-mips.c (mips_load): Don't use pseudo-register when
7454 invalidating regcache.
7455
4069ebbe
DJ
74562010-02-26 Daniel Jacobowitz <dan@codesourcery.com>
7457
7458 * arm-tdep.c (thumb_get_next_pc): Correct conditional branch opcode.
7459
05071a4d
PA
74602010-02-26 Pedro Alves <pedro@codesourcery.com>
7461
7462 * NEWS: Add "New targets" section, and mention ARM Symbian
7463 support.
7464
6063c216
UW
74652010-02-26 Ulrich Weigand <uweigand@de.ibm.com>
7466
7467 * dwarf2loc.c (struct piece_closure): Remove ARCH member,
7468 add ADDR_SIZE member.
7469 (allocate_piece_closure): Update.
7470 (copy_pieced_value_closure): Likewise.
7471 (dwarf2_evaluate_loc_desc): Likewise.
7472 (read_pieced_value): Use DWARF address size instead of
7473 GDB's gdbarch_addr_bit as size of values on the DWARF stack.
7474
5107b149 74752010-02-26 Phil Muldoon <pmuldoon@redhat.com>
c8d5aac9 7476 Tom Tromey <tromey@redhat.com>
5107b149
PM
7477
7478 * python/py-type.c (typy_lookup_typename): Add in block argument.
7479 If provided restrict lookup to specified blocks.
7480 (gdbpy_lookup_type): Likewise.
7481 (typy_lookup_type): Likewise.
7482
78664fa3 74832010-02-25 Daniel Jacobowitz <dan@codesourcery.com>
8d95cc3b 7484
78664fa3
PA
7485 Symbian config
7486
7487 gdb/
7488 * arm-symbian-tdep.c: New.
7489 * configure.tgt (arm*-*-symbianelf*): New target.
7490 (*-*-symbianelf*): New OS.
7491 * osabi.c (gdb_osabi_names): Add Symbian.
7492 * defs.h (gdb_osabi): Add GDB_OSABI_SYMBIAN.
7493 * Makefile.in (ALL_TARGET_OBJS): Add arm-symbian-tdep.o.
7494 (ALLDEPFILES): Add arm-symbian-tdep.c.
7495
eb73e134
DJ
74962010-02-25 Daniel Jacobowitz <dan@codesourcery.com>
7497
7498 * symfile.c (find_lowest_section): Include SEC_ALLOC sections.
7499
46ef47e5
PA
75002010-02-24 Pedro Alves <pedro@codesourcery.com>
7501
7502 * mi/mi-main.c (mi_cmd_execute): Fix typo.
7503
f3e9a817 75042010-02-24 Phil Muldoon <pmuldoon@redhat.com>
8d95cc3b 7505 Tom Tromey <tromey@redhat.com>
f3e9a817
PM
7506 Thiago Jung Bauermann <bauerman@br.ibm.com>
7507
7508 * python/python.c (_initialize_python): Call
7509 gdbpy_initialize_symtabs, gdbpy_initialize_symbols and
7510 gdbpy_initialize_blocks.
7511 * python/python-internal.h: Declare struct symbol, block and
7512 symtab_and_line. Declare block_object_type and
7513 symbol_object_type
7514 (gdbpy_lookup_symbol gdbpy_block_for_pc)
7515 (symtab_and_line_to_sal_object, symtab_to_symtab_object)
7516 (symbol_to_symbol_object, block_to_block_object)
7517 (gdbpy_initialize_symtabs,gdbpy_initialize_symbols)
7518 (gdbpy_initialize_blocks ): Declare.
7519 * python/py-frame.c (frapy_block, frapy_function, frapy_find_sal)
7520 (frapy_select): Add methods.
7521 (frapy_read_var): Add symbol branch.
7522 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-symbol, py-symtab,
7523 py-block.
7524 (SUBDIR_PYTHON_SRCS): Likewise.
7525 (py-symbol.o): New rule.
7526 (py-symtab.o): Likewise.
7527 (py-block.o): Likewise.
7528 * python/py-symbol.c: New file.
7529 * python/py-symtab.c: Likewise.
7530 * python/py-block.c: Likewise.
7531
24291992
PA
75322010-02-24 Pedro Alves <pedro@codesourcery.com>
7533
7534 PR gdb/11321
7535
7536 * inferior.h (prepare_for_detach): Declare.
7537 (struct inferior) <detaching>: New field.
7538 * infrun.c (prepare_for_detach): New.
7539 (handle_inferior_event) <random signal>: Don't stop if detaching.
7540 * target.c (target_detach): Call prepare_for_detach.
7541
fc1cf338
PA
75422010-02-24 Pedro Alves <pedro@codesourcery.com>
7543
7544 Per-process displaced stepping queue.
7545
7546 * infrun.c (displaced_step_ptid, displaced_step_request_queue)
7547 (displaced_step_gdbarch, displaced_step_closure,
7548 (displaced_step_original, displaced_step_copy): Move globals to
7549 this...
7550 (struct displaced_step_inferior_state): ... new structure.
7551 (displaced_step_inferior_states): New global.
7552 (get_displaced_stepping_state, add_displaced_stepping_state)
7553 (remove_displaced_stepping_state, infrun_inferior_exit): New
7554 functions.
7555 (displaced_step_clear): Add displaced_step_inferior_state
7556 parameter, and adjust to handle it.
7557 (displaced_step_clear_cleanup): Parameter is now a
7558 displaced_step_inferior_state. Adjust.
7559 (displaced_step_prepare): Adjust.
7560 (displaced_step_fixup, displaced_step_fixup)
7561 (infrun_thread_ptid_changed, resume): Adjust.
7562 (init_wait_for_inferior): Don't call displaced_step_clear.
7563 (infrun_thread_stop_requested): Rewrite.
7564 (_initialize_infrun): Install infrun_inferior_exit as
7565 inferior_exit observer.
7566
0723dbf5
PA
75672010-02-24 Pedro Alves <pedro@codesourcery.com>
7568
7569 * inferior.h (ptid_match): Declare.
7570 * infrun.c (ptid_match): New.
7571 * remote.c (queued_stop_reply): Rewrite and use ptid_match.
7572 (handle_notification): Add debug output.
7573 * linux-nat.c (ptid_match): Delete.
7574
09de9781
DM
75752010-02-24 David S. Miller <davem@davemloft.net>
7576
7577 * gdb_ptrace.h (PT_SYSCALL): If PTRACE_SYSCALL is available, use it.
7578 * syscalls/sparc-linux.xml: New.
7579 * syscalls/sparc64-linux.xml: New.
7580 * Makefile.in (XML_SYSCALL_FILES): Add new syscall XML files.
7581 * sparc-linux-tdep.c (XML_SYSCALL_FILENAME_SPARC32): Define.
7582 (sparc32_linux_get_syscall_number): New function.
7583 (sparc32_linux_init_abi): Set syscall XML file name and hook up
7584 syscall number fetcher.
7585 * sparc64-linux-tdep.c (XML_SYSCALL_FILENAME_SPARC64): Define.
7586 (sparc64_linux_get_syscall_number): New function.
7587 (sparc64_linux_init_abi): Set syscall XML file name and hook up
7588 syscall number fetcher.
7589
a79b8f6e
VP
75902010-02-24 Vladimir Prus <vladimir@codesourcery.com>
7591
7592 Multiexec MI
7593
7594 * breakpoint.c (clear_syscall_counts): Take struct inferior*.
7595 * inferior.c (add_inferior_silent): Notify inferior_added
7596 observer.
7597 (delete_inferior_1): Notify inferior_removed observer.
7598 (exit_inferior_1): Pass inferior, not pid, to observer.
7599 (inferior_appeared): Likewise.
7600 (add_inferior_with_spaces): New.
7601 (add_inferior_command): Use the above.
7602 * inferior.h (delete_inferior_1, add_inferior_with_spaces):
7603 Declare.
7604
7605 * inflow.c (inflow_inferior_exit): Likewise.
7606 * jit.c (jit_inferior_exit_hook): Likewise.
7607
7608 * mi/mi-cmds.c (mi_cmds): Register add-inferior and
7609 remove-inferior.
7610 * mi/mi-cmds.h (mi_cmd_add_inferior, mi_cmd_remove_inferior): New.
7611 * mi/mi-interp.c (mi_inferior_added, mi_inferior_removed): New.
7612 (report_initial_inferior): New.
7613 (mi_inferior_removed): Register the above. Make sure
7614 inferior_added observer is called on the first inferior.
7615 (mi_new_thread, mi_thread_exit): Thread group is now identified by
7616 inferior number, not pid.
7617 (mi_solib_loaded, mi_solib_unloaded): Report which inferiors are
7618 affected.
7619 * mi/mi-main.c (current_context): New.
7620 (proceed_thread_callback): Use typed closure.
7621 Proceed everything if pid is 0. Most implementation split into
7622 (proceed_thread): ... this.
7623 (run_one_inferior): New.
7624 (mi_cmd_exec_continue, mi_cmd_exec_interrupt, mi_cmd_exec_run):
7625 Adjust for multiexec behaviour.
7626 (mi_cmd_add_inferior, mi_cmd_remove_inferior): New.
7627 (mi_cmd_execute): Handle the 'thread-group' option here.
7628 Do some extra checks.
7629 * mi-parse.c (mi_parse): Handle the --all and --thread-group
7630 options.
7631 * mi-parse.h (struct mi_parse): New fields all and thread_group.
7632
115d30f9
VP
76332010-02-24 Vladimir Prus <vladimir@codesourcery.com>
7634
7635 Make -exec-run a proper MI commands.
7636
7637 * mi/mi-cmds.h (mi_cmd_exec_run): Declare.
7638 * mi/mi-cmds.c (mi_cmds): Adjust.
7639 * mi/mi-main.c (mi_cmd_exec_run): New.
7640
06cd862c
PA
76412010-02-24 Pedro Alves <pedro@codesourcery.com>
7642 Stan Shebs <stan@codesourcery.com>
7643
7644 * tracepoint.h (set_traceframe_number)
7645 (cleanup_restore_current_traceframe): Declare.
7646 * tracepoint.c (set_traceframe_number): New.
7647 (struct current_traceframe_cleanup): New.
7648 (do_restore_current_traceframe_cleanup)
7649 (restore_current_traceframe_cleanup_dtor)
7650 (make_cleanup_restore_current_traceframe): New.
7651 * infrun.c: Include tracepoint.h.
7652 (fetch_inferior_event): Switch out and in of tfind mode.
7653
ab92d69b
PA
76542010-02-24 Pedro Alves <pedro@codesourcery.com>
7655
7656 * breakpoint.c (breakpoint_init_inferior): Also delete
7657 bp_shlib_event breakpoints.
7658 * solib-frv.c (enable_break): Remove call to
7659 remove_solib_event_breakpoints.
7660 * solib-svr4.c (enable_break): Ditto.
7661 * solib-darwin.c (darwin_solib_create_inferior_hook): Ditto.
7662 * solib-pa64.c (pa64_solib_create_inferior_hook): Ditto.
7663 * solib-som.c (som_solib_create_inferior_hook): Ditto.
7664 * solib-spu.c (spu_enable_break): Ditto.
7665
e707a91d
PA
76662010-02-23 Harald Koenig <H.Koenig@science-computing.de>
7667
7668 * c-exp.y (token_and_value): s/union YYSTYPE/YYSTYPE.
7669
cfce2ea2
PA
76702010-02-23 Harald Koenig <H.Koenig@science-computing.de>
7671
7672 * varobj.c (varobj_update): Avoid non-constants in initializers.
7673
05566b3b
TT
76742010-02-23 Tom Tromey <tromey@redhat.com>
7675
7676 * dwarf2loc.c (read_pieced_value) <DWARF_VALUE_STACK>: Correctly
7677 handle big-endian values.
7678 (dwarf2_evaluate_loc_desc) <DWARF_VALUE_STACK>: Likewise.
7679
85d721b8
PA
76802010-02-22 Pedro Alves <pedro@codesourcery.com>
7681
7682 PR9605
7683
7684 gdb/
7685 * breakpoint.c (insert_bp_location): If inserting the read
7686 watchpoint failed, fallback to an access watchpoint.
7687 (bpstat_check_watchpoint): Stop for read watchpoint triggers even
7688 if the value changed, if not watching the same memory for writes.
7689 (watchpoint_locations_match): Add comment.
7690 (update_global_location_list): Copy the location's watchpoint type.
7691 * i386-nat.c (i386_length_and_rw_bits): It's an internal error to
7692 handle read watchpoints here.
7693 (i386_insert_watchpoint): Read watchpoints aren't supported.
7694 * remote.c (remote_insert_watchpoint): Return 1 for unsupported
7695 packets.
7696 * target.h (target_insert_watchpoint): Update description.
7697
48ea67a7
TT
76982010-02-19 Tom Tromey <tromey@redhat.com>
7699
7700 * p-typeprint.c (pascal_type_print_varspec_prefix): Update.
7701 * m2-typeprint.c (m2_print_type): Update.
7702 * gdbtypes.c (recursive_dump_type): Update.
7703 (copy_type_recursive): Update.
7704 * c-typeprint.c (c_type_print_varspec_prefix): Update.
7705 (c_type_print_base): Update.
7706 * gdbtypes.h (TYPE_CODE_TEMPLATE, TYPE_CODE_TEMPLATE_ARG):
7707 Remove.
7708 (struct cplus_struct_type) <ntemplate_args>: Remove.
7709 <struct template_arg>: Remove.
7710 <is_dynamic>: Move earlier.
7711 (TYPE_TEMPLATE_ARGS): Remove.
7712 (TYPE_NTEMPLATE_ARGS): Remove.
7713 (TYPE_TEMPLATE_ARG): Remove.
7714
48e32051
TT
77152010-02-19 Tom Tromey <tromey@redhat.com>
7716
7717 PR c++/8693, PR c++/9496:
7718 * cp-namespace.c (cp_lookup_nested_type): Handle TYPE_CODE_UNION.
7719 * c-exp.y (lex_one_token): Rename from yylex. Don't call
7720 write_dollar_variable. Don't try to classify NAME tokens.
7721 (token_and_value): New type.
7722 (token_fifo, popping, name_obstack): New globals.
7723 (classify_name): New function.
7724 (classify_inner_name): Likewise.
7725 (yylex): Likewise.
7726 (VARIABLE): Now has type sval.
7727 (exp : VARIABLE): Call write_dollar_variable.
7728 (qualified_name): Use TYPENAME, not typebase. Add production for
7729 multiple "::" instances.
7730 (variable): Use name_not_typename.
7731 (qualified_type): Remove.
7732 (typebase): Update.
7733
672d9c23
JK
77342010-02-19 Jan Kratochvil <jan.kratochvil@redhat.com>
7735
7736 * symfile.c (addr_info_make_relative): Extend comment. Move SECT to
7737 a more inner block. Initialize ADDR by LOWER_OFFSET only if it was
7738 found by bfd_get_section_by_name.
7739 * symfile.h (struct section_addr_info) <sectindex>: New comment.
7740
bfbf3774
JB
77412010-02-19 Joel Brobecker <brobecker@adacore.com>
7742
7743 * NEWS: Add new "[...] since 7.1" section. Rename the "[...] since
7744 7.0 section" into "Changes in 7.1".
7745
6756b09b 77462010-02-19 Joel Brobecker <brobecker@adacore.com>
7747
7748 GDB 7.1 branch created (branch timestamp: 2010-02-18 20:00 UTC)
7749 * version.in: Bump version to 7.1.50.20100219-cvs.
7750
202b96c1
PA
77512010-02-18 Harald Koenig <H.Koenig@science-computing.de>
7752
7753 * mi/mi-main.c (mi_cmd_exec_jump): Drop unneeded `return'.
7754 * symfile.c (symfile_map_offsets_to_segments): Fix assertion.
7755
de2e5182
TT
77562010-02-17 Tom Tromey <tromey@redhat.com>
7757
7758 * NEWS: Add Python API Improvements section.
7759
7280022e
DJ
77602010-02-18 Daniel Jacobowitz <dan@codesourcery.com>
7761
7762 * NEWS: Correct typo.
7763
6f451e5e
TT
77642010-02-17 Tom Tromey <tromey@redhat.com>
7765
7766 * objfiles.c (gdb_bfd_ref): Handle abfd==NULL.
7767
012836ea
JK
77682010-02-17 Jan Kratochvil <jan.kratochvil@redhat.com>
7769
7770 * symfile.c (build_section_addr_info_from_objfile): Include sections
7771 only if they are SEC_ALLOC or SEC_LOAD.
7772
d182d057
L
77732010-02-17 H.J. Lu <hongjiu.lu@intel.com>
7774
7775 PR shlibs/11293
7776 * solib-svr4.c (enable_break): Check size of CORE_ADDR instead
7777 of ULONGEST for address size.
7778
4eef138c
TT
77792010-02-17 Tom Tromey <tromey@redhat.com>
7780
7781 * NEWS: Add C++ improvements section.
7782
548a926a
UW
77832010-02-17 Ulrich Weigand <uweigand@de.ibm.com>
7784
7785 * python/python-internal.h [!WITH_THREAD] (PyGILState_Release,
7786 PyThreadState_Swap): Avoid "statement with no effect" warning.
7787
ad3a0e5b
JK
77882010-02-17 Jan Kratochvil <jan.kratochvil@redhat.com>
7789
7790 * solib-svr4.c (enable_break <target_auxv_search>): New variable
7791 addr_bit. Adjust LOAD_ADDR sign for cross-arch inferiors.
7792
243e2c5d 77932010-02-17 Tristan Gingold <gingold@adacore.com>
b2319725 7794 Petr Hluzin <petr.hluzin@gmail.com>
243e2c5d
TG
7795
7796 * avr-tdep.c (avr_scan_prologue): Convert an if statement to a
7797 gdb_assert. Fix info->size for SIG prologue.
7798
275f2e57
DJ
77992010-02-16 Daniel Jacobowitz <dan@codesourcery.com>
7800
7801 * infcmd.c (show_inferior_tty_command): Check for NULL.
7802 Correct output message.
7803
791dfb64
DJ
78042010-02-16 Daniel Jacobowitz <dan@codesourcery.com>
7805
7806 * linespec.c (decode_line_1): Handle FILE:FUNCTION even if
7807 FUNCTION contains parentheses. Improve removal of a trailing
7808 single quote.
7809
14d1346b
DJ
78102010-02-16 Daniel Jacobowitz <dan@codesourcery.com>
7811
7812 * gcore.c (do_bfd_delete_cleanup): New function.
7813 (gcore_command): Use it. Discard the cleanup after success.
7814 (gcore_copy_callback): Delete dead code.
7815
e76ab67f
DJ
78162010-02-16 Daniel Jacobowitz <dan@codesourcery.com>
7817
7818 * symfile.c (addr_info_make_relative): Always use
7819 find_lowest_section.
7820
71dee663
SW
78212010-02-16 Sami Wagiaalla <swagiaal@redhat.com>
7822
7823 * NEWS: Added entry for namespace fixes.
7824
a9854bd5
TT
78252010-02-15 Tom Tromey <tromey@redhat.com>
7826
7827 * dwarf2read.c (guess_structure_name): Allocate name on the
7828 objfile obstack.
7829
fd9e29b5
TT
78302010-02-15 Tom Tromey <tromey@redhat.com>
7831
7832 * c-typeprint.c (c_type_print_base): Reverse order of test.
7833
4e1fc9c9
JK
78342010-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
7835
7836 * solib-svr4.c (LM_ADDR_CHECK): New variable minpagesize. Optionally
7837 initialize it from ELF BFD. Extend the prelink condition by it.
7838
74164c56
JK
78392010-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
7840
7841 * defs.h (parse_pid_to_attach): New.
7842 * utils.c (parse_pid_to_attach): New.
7843 * darwin-nat.c (darwin_attach): Replace ARGS parsing by parse_pid.
7844 * gnu-nat.c (gnu_attach): Likewise.
7845 * nto-procfs.c (procfs_attach): Likewise.
7846 * procfs.c (procfs_attach): Likewise.
7847 * windows-nat.c (windows_attach): Likewise.
7848 * inf-ptrace.c (inf_ptrace_attach): Likewise. Remove variable dummy.
7849 * inf-ttrace.c (inf_ttrace_attach): Likewise.
7850 * remote.c (extended_remote_attach_1): Likewise. New comment on getpid
7851 check.
7852
bf6adea8
MM
78532010-02-14 Masaki Muranaka <monaka@monami-software.com>
7854
7855 * MAINTAINERS: Add myself for write after approval privileges.
7856
28f34a8f
JK
78572010-02-13 Jan Kratochvil <jan.kratochvil@redhat.com>
7858
7859 * solib-svr4.c: (LM_ADDR_CHECK): Move variable align to a more inner
7860 block.
7861
701ed6dc
JK
78622010-02-13 Jan Kratochvil <jan.kratochvil@redhat.com>
7863
7864 * solib-svr4.c: (LM_ADDR_CHECK): Print successful prelink adjustment
7865 only if INFO_VERBOSE.
7866
e5829bee
MS
78672010-02-12 Tomas Holmberg <th@virtutech.com>
7868
7869 * mi/mi-main.c: Added the --reverse flag to the following MI
7870 commands: exec-continue, exec-finish, exec-next, exec-step,
7871 exec-next-instruction, exec-step-instruction. This is to
7872 support reverse execution over the MI interface to gdb.
7873
081dfbf7
PA
78742010-02-12 Pedro Alves <pedro@codesourcery.com>
7875
7876 * tracepoint.c (_initialize_tracepoint): Specify that the address
7877 range of `tfind outsize' is exclusive, and that the address range
7878 of `tfind range' is inclusive, in the commands' help strings.
7879
ecc13e53
JB
78802010-02-12 Joel Brobecker <brobecker@adacore.com>
7881
7882 Spurious "dll not found" error messages on x64-windows.
7883 * windows-nat.c: Add include of complaints.h.
7884 (handle_unload_dll): Change dll-not-found error into a complaint.
7885
15c3d785
PA
78862010-02-12 Pedro Alves <pedro@codesourcery.com>
7887
7888 * breakpoint.c (allocate_bp_location): Use bp_loc_other for
7889 bp_tracepoint and bp_fast_tracepoint, not
7890 bp_loc_software_breakpoint.
7891 (update_global_location_list): Tracepoints are never duplicates of
7892 anything.
7893
fd9b8c24
PA
78942010-02-12 Pedro Alves <pedro@codesourcery.com>
7895
7896 * breakpoint.c (break_command_really): Change return type to int.
7897 Return false if no breakpoint was created, true otherwise.
7898 (trace_command): Don't set the tracepoint count if no tracepoint
7899 was created.
7900 (ftrace_command): Ditto.
7901 (create_tracepoint_from_upload): Bail out if the tracepoint wasn't
7902 created in the breakpoints table.
7903
5c0d192f
JK
79042010-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
7905 Ulrich Weigand <uweigand@de.ibm.com>
7906
7907 * solib-svr4.c (LM_ADDR_CHECK): New comment on PPC-aware condition.
7908
5d5b640e
PA
79092010-02-11 Pedro Alves <pedro@codesourcery.com>
7910
7911 * ax-gdb.c (gen_exp_binop_rest) [BINOP_SUBSCRIPT]: Error out if
7912 the offset value isn't of integral type.
7913
e5a0a904
JK
79142010-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
7915
7916 * breakpoint.c (delete_breakpoint) <bpt->related_breakpoint != NULL>:
7917 New.
7918
be636754
PA
79192010-02-11 Pedro Alves <pedro@codesourcery.com>
7920
7921 * ax-gdb.c (gen_exp_binop_rest) [BINOP_SUBSCRIPT]: Error out on
7922 non-subscriptable types.
7923 * valarith.c (binop_types_user_defined_p): New, abstracted out
7924 from ...
7925 (binop_user_defined_p): ... this.
7926 * value.h (binop_types_user_defined_p): Declare.
7927
10ef8d6a
PA
79282010-02-11 Pedro Alves <pedro@codesourcery.com>
7929
7930 * tracepoint.c (tfile_open): Remove spurious discard_cleanups.
7931 Merge uploaded TSVs before merging uploaded tracepoints.
7932
b1028c8e
PA
79332010-02-11 Pedro Alves <pedro@codesourcery.com>
7934
7935 * ax-gdb.c (gen_deref): Don't allow dereferencing void pointers.
7936
7a93fb82 79372010-02-11 Vladimir Prus <vladimir@codesourcery.com>
84d90c10 7938
7a93fb82
VP
7939 * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Add extra
7940 whitespace character after a dot in comment.
7941 (mi_cmd_stack_list_arguments, mi_cmd_stack_list_variables):
7942 Likewise.
7943 (list_args_or_locals): For the 'all' (that is
7944 -stack-list-variables) case, always output list of tuples.
7945 Output 'arg' field if variable is argument.
84d90c10 7946
92981e24
TT
79472010-02-10 Tom Tromey <tromey@redhat.com>
7948
7949 * parser-defs.h (parser_debug): Declare.
7950 * parse.c (_initialize_parse): Install "debug parser" set/show
7951 command.
7952 (parser_debug): New global.
7953 (show_parserdebug): New function.
7954 * c-exp.y (c_parse): Set yydebug.
7955
9fd3625f
L
79562010-02-10 H.J. Lu <hongjiu.lu@intel.com>
7957
7958 * target-descriptions.c (tdesc_type): Add TDESC_TYPE_I387_EXT,
7959 TDESC_TYPE_I386_EFLAGS and TDESC_TYPE_I386_MXCSR.
7960 (tdesc_predefined_types): Add i387_ext, i386_eflags and
7961 i386_mxcsr.
7962 (tdesc_find_type): New.
7963 (tdesc_gdb_type): Use tdesc_find_type. Handle TDESC_TYPE_I387_EXT,
7964 TDESC_TYPE_I386_EFLAGS and TDESC_TYPE_I386_MXCSR.
7965
7966 * target-descriptions.h (tdesc_find_type): New.
7967
2fe842e5
MS
79682010-02-10 Michael Snyder <msnyder@vmware.com>
7969
7970 * gdb-gdb.py: Comment fix.
7971
f18b4cab
TG
79722010-02-09 Tristan Gingold <gingold@adacore.com>
7973
7974 * machoread.c (macho_symfile_relocate): New function.
7975 (macho_sym_fns): Use macho_symfile_relocate instead of
7976 default_symfile_relocate.
7977 (macho_oso_data): New type.
7978 (current_oso): New variable.
7979 (macho_add_oso_symfile): Do not compute section_addr_info, but
7980 instead set vma of sections.
7981 Do not set SYMFILE_VERBOSE to call symbol_file_add_from_bfd.
7982 Set and clear current_oso.
7983
31dbc1c5
JB
79842010-02-09 Joel Brobecker <brobecker@adacore.com>
7985
7986 Wrong type description for tagged type parameter.
7987 * ada-lang.c (ada_evaluate_subexp) [OP_VAR_VALUE]: When noside is
7988 EVAL_AVOID_SIDE_EFFECTS, also handle the case when type is a
7989 reference to a tagged type.
7990
399f313b
TG
79912010-02-09 Tristan Gingold <gingold@adacore.com>
7992
7993 * objfiles.c (objfile_separate_debug_iterate): Do not iterate on
7994 brothers of the parent.
7995
714f19d5
TT
79962010-02-08 Tom Tromey <tromey@redhat.com>
7997
7998 PR c++/8017:
7999 * value.h: Update.
8000 * valops.c (search_struct_field): Make 'name' const.
8001 (search_struct_method): Likewise.
8002 (find_method_list): Make 'method' const.
8003 (value_struct_elt): Make 'name' and 'err' const.
8004 (value_find_oload_method_list): Make 'method' const.
8005 (find_overload_match): Make 'name' const.
8006 * eval.c (evaluate_subexp_standard): New locals function,
8007 function_name.
8008 <OP_FUNCALL>: Handle OP_SCOPE specially.
8009
de0a0249
UW
80102010-02-08 Ulrich Weigand <uweigand@de.ibm.com>
8011
8012 * infrun.c (handle_inferior_event): Do not look up regcache
8013 for exited processes.
8014
8d95cc3b 80152010-02-08 Chris Moller <moller@mollerware.com>
83b10087
CM
8016
8017 PR gdb/10728
8018 * valarith.c (value_ptrdiff): Added a test for a zero type length,
8d95cc3b 8019 warn if found, and assume length = 1.
83b10087 8020
99903ae3
CM
80212010-02-08 Chris Moller <cmoller@redhat.com>
8022
8023 PR gdb/9067
8024 * cp-valprint.c (cp_print_value_fields) Fix use of obstacks.
6036c742 8025 (cp_print_static_field) Fix use of obstacks.
8d95cc3b 8026
e3e9f5a2
PA
80272010-02-08 Pedro Alves <pedro@codesourcery.com>
8028
8029 * linux-nat.c (linux_nat_resume): In non-stop, also only tag
8030 resumed LWPs as resumed.
8031 (linux_nat_wait_1): If there's no resumed LWP in the set of LWPs
8032 we're waiting for, bail out with TARGET_WAITKIND_IGNORE, instead
8033 of throwing an internal error. If an LWP of a process we're not
8034 waiting for reports a signal, don't force collecting a SIGSTOP,
8035 and if it was breakpoint hit in non-stop mode, cancel it. Don't
8036 go through all LWPs cancelling breakpoints in non-stop mode.
8037 (resume_stopped_resumed_lwps): New.
8038 (linux_nat_wait): Use it.
8039
46763423
L
80402010-02-07 H.J. Lu <hongjiu.lu@intel.com>
8041
8042 * features/Makefile (WHICH): Add i386/i386, i386/i386-linux,
8043 i386/amd64 and i386/amd64-linux.
8044 (i386/i386-expedite): New.
8045 (i386/i386-linux-expedite): Likewise.
8046 (i386/amd64-expedite):Likewise.
8047 (i386/amd64-linux-expedite): Likewise.
8048 ($(outdir)/i386/i386-linux.dat): Likewise.
8049 ($(outdir)/i386/amd64.dat): Likewise.
8050 ($(outdir)/i386/amd64-linux.dat): Likewise.
8051
8052 * features/i386/32bit-core.xml: New.
8053 * features/i386/32bit-linux.xml: Likewise.
8054 * features/i386/32bit-sse.xml: Likewise.
8055 * features/i386/64bit-core.xml: Likewise.
8056 * features/i386/64bit-linux.xml: Likewise.
8057 * features/i386/64bit-sse.xml: Likewise.
8058 * features/i386/i386-linux.xml: Likewise.
8059 * features/i386/i386.xml: Likewise.
8060 * features/i386/amd64-linux.xml: Likewise.
8061 * features/i386/amd64.xml: Likewise.
8062 * features/i386/i386-linux.c: Likewise.
8063 * features/i386/i386.c: Likewise.
8064 * features/i386/amd64-linux.c: Likewise.
8065 * features/i386/amd64.c: Likewise.
8066
82856980
SW
80672010-02-05 Sami Wagiaalla <swagiaal@redhat.com>
8068
8069 PR c++/7935:
8070 * cp-support.h: Added char* alias element to using_direct data
8071 struct.
8072 (cp_add_using): Added char* alias argument.
8073 (cp_add_using_directive): Ditto.
8074 * cp-namespace.c: Updated with the above changes.
8075 (cp_lookup_symbol_imports): Check for aliases.
8076 * dwarf2read.c (read_import_statement): Figure out local alias
8077 for the import and pass it on to cp_add_using.
8078 (read_namespace): Pass alias argument to cp_add_using.
8079
d18b8b7a
HZ
80802010-02-05 Hui Zhu <teawater@gmail.com>
8081
8082 * defs.h (gdb_bfd_errmsg): New extern.
8083 * exec.c (exec_file_attach): Change bfd_errmsg to
8084 gdb_bfd_errmsg.
8085 * utils.c (AMBIGUOUS_MESS1): New macro.
8086 (AMBIGUOUS_MESS2): New macro.
8087 (gdb_bfd_errmsg): New function.
8088
48379de6
DE
80892010-02-04 Doug Evans <dje@google.com>
8090
8091 * solib-svr4.c (enable_break): Add comment.
8092
4ee73e90
AG
80932010-02-04 Anthony Green <green@moxielogic.com>
8094
8095 * moxie-tdep.c (moxie_analyze_prologue): Fail protocol analysis
8096 gracefully.
8097
1a334831
TT
80982010-02-04 Tom Tromey <tromey@redhat.com>
8099
8100 * valops.c (search_struct_field): Account for
8101 value_embedded_offset. Fix check for virtual base past the end of
8102 the object. Use value_copy when making a slice of the value.
8103
1180b2c8
L
81042010-02-04 H.J. Lu <hongjiu.lu@intel.com>
8105
8106 PR tui/9622
8107 * tui/tui-interp.c (tui_init): Call tui_initialize_readline
8108 only if gdb_stdout is a tty.
8109
c3f08eb7
L
81102010-02-04 H.J. Lu <hongjiu.lu@intel.com>
8111
8112 * target-descriptions.c: Include "osabi.h".
8113 (maint_print_c_tdesc_cmd): Generate set_tdesc_osabi for valid
8114 OSABI.
8115
2d33f7b8
TG
81162010-02-04 Tristan Gingold <gingold@adacore.com>
8117
8118 * machoread.c (macho_add_oso): Renamed to macho_register_oso.
8119 (macho_symtab_read): Adjust calls to macho_add_oso.
8120 (macho_oso_symfile): Renamed to macho_symfile_read_all_oso.
8121 (macho_symfile_read): Adjust call to macho_oso_symfile.
8122 (macho_new_init): Move this function after declarations.
8123 (macho_symfile_init): Ditto.
8124 * darwin-nat-info.c (darwin_lib_gdb_ports): Remove.
8125 * darwin-nat.c (darwin_lookup_task): Remove unused prototype.
8126
11334b82
VP
81272010-02-04 Vladimir Prus <vladimir@codesourcery.com>
8128
8129 Include MI command in remotelog.
8130
8131 * mi/mi-main.c (mi_execute_command): Call target_log_command.
8132
ff97be06
L
81332010-02-03 H.J. Lu <hongjiu.lu@intel.com>
8134
8135 * remote.c (remote_state): Remove gdbarch.
8136 (init_remote_state): Don't set gdbarch.
8137 (remote_query_supported): Pass target_gdbarch instead of
8138 rs->gdbarch to gdbarch_qsupported.
8139
75cebea9
L
81402010-02-03 H.J. Lu <hongjiu.lu@intel.com>
8141
8142 * gdbarch.sh: Add qsupported.
8143
8144 * gdbarch.c: Regenerated.
8145 * gdbarch.h: Likewise.
8146
8147 * remote.c (remote_state): Add gdbarch.
8148 (init_remote_state): Set gdbarch.
8149 (remote_query_supported): Support gdbarch_qsupported.
8150
c1dec97b
DJ
81512010-02-03 Daniel Jacobowitz <dan@codesourcery.com>
8152
8153 * amd64fbsd-nat.c (amd64fbsd_supply_pcb): Also check for
8154 __FreeBSD_kernel_version.
8155
ac8035ab
TG
81562010-02-03 Tristan Gingold <gingold@adacore.com>
8157
8158 * symfile.h (struct sym_fns): Add sym_relocate field.
8159 (default_symfile_relocate): New prototype.
8160 (symfile_relocate_debug_section): First argument is now an objfile.
8161 * symfile.c (default_symfile_relocate): Rename from
8162 symfile_relocate_debug_section, first argument is now an objfile.
8163 (symfile_relocate_debug_section): New function.
8164 * coffread.c (coff_sym_fns): Set sym_relocate field.
8165 * somread.c (som_sym_fns): Ditto.
8166 * mipsread.c (ecoff_sym_fns): Ditto.
8167 * machoread.c (macho_sym_fns): Ditto.
8168 * elfread.c (elf_sym_fns): Ditto.
8169 * dwarf2read.c (dwarf2_read_section): Ditto.
8170 * xcoffread.c (xcoff_sym_fns): Ditto.
8171 * dbxread.c (aout_sym_fns): Ditto.
8172 (dbx_psymtab_to_symtab): Adjust call to symfile_relocate_debug_section.
8173 (elfstab_build_psymtabs): Ditto.
8174
be52b756
L
81752010-02-03 H.J. Lu <hongjiu.lu@intel.com>
8176
8177 * defs.h (MAX_REGISTER_SIZE): Increase to 32.
8178
9c3c02fd
TT
81792010-02-02 Tom Tromey <tromey@redhat.com>
8180
8181 * valops.c (value_cast_structs): Try downcasting using the RTTI
8182 type.
8183
f23f4c59
TT
81842010-02-02 Tom Tromey <tromey@redhat.com>
8185
8186 * gnu-v2-abi.c: Don't include gnu-v2-abi.h.
8187 (gnuv2_baseclass_offset): Now static.
8188 * Makefile.in (HFILES_NO_SRCDIR): Remove gnu-v2-abi.h.
8189 * gnu-v2-abi.h: Remove.
8190
0cc2414c
TT
81912010-02-02 Tom Tromey <tromey@redhat.com>
8192
8193 * m2-typeprint.c (m2_record_fields): Don't use
8194 TYPE_DECLARED_TYPE.
8195 * gdbtypes.h (TYPE_DECLARED_CLASS): New macro.
8196 (struct main_type) <flag_declared_class>: New field.
8197 (struct cplus_struct_type) <declared_type>: Remove.
8198 <ntemplate_args>: Move earlier.
8199 (DECLARED_TYPE_CLASS, DECLARED_TYPE_UNION, DECLARED_TYPE_STRUCT)
8200 (DECLARED_TYPE_TEMPLATE): Remove.
8201 (TYPE_DECLARED_TYPE): Remove.
8202 * gdbtypes.c (lookup_union): Don't use TYPE_DECLARED_TYPE.
8203 * dwarf2read.c (read_structure_type): Set TYPE_DECLARED_CLASS.
8204 * c-typeprint.c (c_type_print_base): Use TYPE_DECLARED_CLASS, not
8205 TYPE_DECLARED_TYPE.
8206
edf3d5f3
TT
82072010-02-02 Tom Tromey <tromey@redhat.com>
8208
8209 PR c++/11226, PR c++/9629, PR c++/9688, PR c++/8890:
8210 * valops.c (search_struct_field): Compute nbases after calling
8211 CHECK_TYPEDEF.
8212 (check_field): Call CHECK_TYPEDEF.
8213 * cp-valprint.c (cp_print_value): Pass correct address to
8214 baseclass_offset. Fix check for virtual base past the end of the
8215 object. Don't offset address passed to cp_print_value_fields or
8216 apply_val_pretty_printer.
8217 (cp_print_value_fields): Fix call to val_print.
8218 (cp_print_value_fields_rtti): New function.
8219 * c-valprint.c (c_val_print): Use cp_print_value_fields_rtti.
8220 * p-valprint.c (pascal_object_print_value_fields): Fix call to
8221 val_print.
8222 * python/py-prettyprint.c (apply_val_pretty_printer): Add embedded
8223 offset to address.
8224 * language.h (struct language_defn) <la_val_print>: Document.
8225 * c-lang.h (cp_print_value_fields_rtti): Declare.
8226
e4b7f41c
JK
82272010-02-01 Jan Kratochvil <jan.kratochvil@redhat.com>
8228
8229 PR libc/11214:
8230 * linux-low.c (linux_tracefork_child) [!(__UCLIBC__ && HAS_NOMMU)]: New.
8231 (linux_test_for_tracefork): Move `stack' into [__UCLIBC__ && HAS_NOMMU].
8232 (linux_test_for_tracefork) [!(__UCLIBC__ && HAS_NOMMU)]: New.
8233
7618e12b
DJ
82342010-02-01 Michael Matz <matz@suse.de>
8235 Daniel Jacobowitz <dan@codesourcery.com>
8236
e4b7f41c 8237 * i386-tdep.c (i386_frame_cache): Assume valid anonymous
7618e12b
DJ
8238 functions use a frame pointer.
8239
b381ea14
JK
82402010-02-01 Jan Kratochvil <jan.kratochvil@redhat.com>
8241
8242 * solib-svr4.c (scan_dyntag): New variable dyn_addr. Replace gdb_assert
8243 by a conditional setting DYN_ADDR. Use DYN_ADDR.
8244 * config/djgpp/fnchange.lst: Add translations for
8245 symbol-without-target_section.exp and symbol-without-target_section.c.
8246
0e05dfcb
DJ
82472010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
8248
8249 * gdbarch.sh: Set LANG and LC_ALL to C, not c.
8250 (remote_breakpoint_for_pc): Correct invalid_p check.
8251 * gdbarch.c: Regenerated.
8252
f9d67f43
DJ
82532010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
8254
8255 * arm-tdep.c (arm_find_mapping_symbol): New function, from
8256 arm_pc_is_thumb.
8257 (arm_pc_is_thumb): Use arm_find_mapping_symbol.
8258 (extend_buffer_earlier): New function.
8259 (MAX_IT_BLOCK_PREFIX, IT_SCAN_THRESHOLD): New constants.
8260 (arm_adjust_breakpoint_address): New function.
8261 (arm_gdbarch_init): Register arm_adjust_breakpoint_address.
8262
177321bd
DJ
82632010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
8264
8265 * arm-linux-tdep.c (arm_linux_thumb2_be_breakpoint)
8266 (arm_linux_thumb2_le_breakpoint): New constants.
8267 (arm_linux_init_abi): Set thumb2_breakpoint and
8268 thumb2_breakpoint_size.
8269 * arm-tdep.c (thumb_insn_size, thumb_advance_itstate): New functions.
8270 (thumb_get_next_pc): Add a comment. Rename IT to ITSTATE.
8271 Implement support for single stepping through IT blocks if
8272 a 32-bit Thumb breakpoint instruction is available.
8273 (arm_breakpoint_from_pc): If a 32-bit Thumb breakpoint instruction
8274 is available, use it when needed.
8275 (arm_remote_breakpoint_from_pc): New function.
8276 (arm_gdbarch_init): Register arm_remote_breakpoint_from_pc.
8277 * arm-tdep.h (struct gdbarch_tdep): Correct thumb_breakpoint
8278 comment. Add thumb2_breakpoint and thumb2_breakpoint_size.
8279
a1dcb23a
DJ
82802010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
8281
8282 * arch-utils.c (default_remote_breakpoint_from_pc): New function.
8283 * arch-utils.h (default_remote_breakpoint_from_pc): Declare.
8284 * gdbarch.c, gdbarch.h: Regenerated.
8285 * gdbarch.sh (remote_breakpoint_from_pc): New architecture method.
8286 * remote.c (remote_insert_breakpoint, remote_insert_hw_breakpoint): Use
8287 gdbarch_remote_breakpoint_from_pc.
8288
2b009048
DJ
82892010-01-29 Daniel Jacobowitz <dan@codesourcery.com>
8290
8291 * infrun.c (prepare_to_proceed): Handle other signals which might
8292 match a breakpoint.
8293 (handle_inferior_event): Move the check for unusual breakpoint
8294 signals earlier.
8295
e4e2711a
JB
82962010-01-29 Paul Hilfinger <hilfinger@adacore.com>
8297
8298 amd64 - function returning record with field straddling 2 registers.
8299 * amd64-tdep.c (amd_classify_aggregate): Handle the case of
8300 a record of length <= 16 in which a field straddles the two
8301 eightbytes.
8302
cba6fab5
JB
83032010-01-29 Joel Brobecker <brobecker@adacore.com>
8304
8305 Implement return values on amd64-windows.
8306 * amd64-windows-tdep.c: #include gdbcore.h and regcache.h.
8307 (amd64_windows_return_value): New function.
8308 (amd64_windows_init_abi): Call set_gdbarch_return_value with
8309 amd64_windows_return_value.
8310
3af6ddfe
JB
83112010-01-29 Joel Brobecker <brobecker@adacore.com>
8312
8313 amd64-windows: 32 bytes allocated on stack by caller for integer
cba6fab5 8314 parameter registers.
3af6ddfe
JB
8315 * i386-tdep.h (struct gdbarch_tdep): Add new field
8316 integer_param_regs_saved_in_caller_frame.
8317 * amd64-windows-tdep.c (amd64_windows_init_abi): Set
8318 tdep->integer_param_regs_saved_in_caller_frame to 1.
8319 * amd64-tdep.c (amd64_push_dummy_call): Allocate some memory on
8320 stack if tdep->integer_param_regs_saved_in_caller_frame is set.
8321
80d19a06
JB
83222010-01-29 Joel Brobecker <brobecker@adacore.com>
8323
8324 amd64-windows: memory args passed by pointer during function calls.
8325 * i386-tdep.h (gdbarch_tdep): Add field memory_args_by_pointer.
8326 * amd64-tdep.c (amd64_push_arguments): Add handling of architectures
8327 where tdep->memory_args_by_pointer is non-zero.
8328 * amd64-windows-tdep.c (amd64_windows_init_abi): Set
8329 tdep->memory_args_by_pointer to 1.
8330
ba581dc1
JB
83312010-01-29 Joel Brobecker <brobecker@adacore.com>
8332
4966b6c2 8333 amd64-windows: Integer parameters in function calls.
ba581dc1
JB
8334 * i386-tdep.h (enum amd64_reg_class): New, moved here from
8335 amd64-tdep.c.
8336 (struct gdbarch_tdep): Add fields call_dummy_num_integer_regs,
8337 call_dummy_integer_regs, and classify.
8338 * amd64-tdep.h (amd64_classify): Add declaration.
8339 * amd64-tdep.c (amd64_dummy_call_integer_regs): New static constant.
8340 (amd64_reg_class): Delete, moved to i386-tdep.h.
8341 (amd64_classify): Make non-static. Move declaration to amd64-tdep.h.
8342 Replace call to amd64_classify by call to tdep->classify.
8343 (amd64_push_arguments): Get the list of registers to use for
8344 passing integer parameters from the gdbarch tdep structure,
8345 rather than using a hardcoded one. Replace calls to amd64_classify
8346 by calls to tdep->classify.
8347 (amd64_push_dummy_call): Get the register number used for
8348 the "hidden" argument from tdep->call_dummy_integer_regs.
8349 (amd64_init_abi): Initialize tdep->call_dummy_num_integer_regs
8350 and tdep->call_dummy_integer_regs. Set tdep->classify.
8351 * amd64-windows-tdep.c: Add include of gdbtypes.h.
8352 (amd64_windows_dummy_call_integer_regs): New static global.
8353 (amd64_windows_classify): New function.
8354 (amd64_windows_init_abi): Initialize tdep->call_dummy_num_integer_regs
8355 tdep->call_dummy_integer_regs and tdep->classify.
8356
d37346f0
DJ
83572010-01-28 Daniel Jacobowitz <dan@codesourcery.com>
8358
8359 * regcache.c (regcache_xmalloc): Add aspace argument. Use it
8360 for the new regcache. All callers updated.
8361 (regcache_cpy, regcache_cpy_no_passthrough): Do not set aspace here.
8362 (get_thread_arch_regcache): Do not set aspace here.
8363 * regcache.h (regcache_xmalloc): Update declaration.
8364
8365 * frame.c, infcall.c, ppc-linux-tdep.c: Calls to
8366 regcache_xmalloc updated.
8367
7434dadd
JB
83682010-01-28 Joel Brobecker <brobecker@adacore.com>
8369
8370 Another -Wunused-function error in procfs.c (sparc-solaris)
8371 * procfs.c (insert_dbx_link_breakpoint): Delete declaration. Move up.
8372 Only define if SYS_syssgi is defined.
8373 (remove_dbx_link_breakpoint): Delete declaration. Move up.
8374 (dbx_link_addr, insert_dbx_link_bpt_in_file)
8375 (insert_dbx_link_bpt_in_region): Move up. Only define if SYS_syssgi
8376 is itself defined.
8377
16d905e2
CF
83782010-01-27 Christopher Faylor <me+cygwin@cgf.cx>
8379
8380 * windows-nat.c (windows_initialization_done): New variable.
8381 (get_windows_debug_event): Issue error when process dies before
8382 completely initializing.
8383 (do_initial_windows_stuff): Set flag to indicate when we are done with
8384 the initial steps of attaching to the child.
8385
cd55e50f
JK
83862010-01-27 Jan Kratochvil <jan.kratochvil@redhat.com>
8387
8388 * symtab.h (struct symbol <symtab>): New comment on NULL values.
8389
99cc78aa
DE
83902010-01-27 Doug Evans <dje@google.com>
8391
4c7dcb84
DE
8392 * solib-svr4.c (solib_break_names): Add __dl_rtld_db_dlactivity.
8393
99cc78aa
DE
8394 * breakpoint.c (bpstat_stop_status): Delete useless code.
8395
52334bf5
JK
83962010-01-27 Jan Kratochvil <jan.kratochvil@redhat.com>
8397
8398 * printcmd.c (display_uses_solib_p): Remove variable section. Access
8399 objfile via SYMBOL_SYMTAB.
8400
708ead4e
TT
84012010-01-26 Tom Tromey <tromey@redhat.com>
8402
8403 PR exp/7643:
8404 * eval.c (evaluate_subexp_for_address) <UNOP_IND>: Call
8405 coerce_array on result.
8406
b14e635e
SW
84072010-01-26 Sami Wagiaalla <swagiaal@redhat.com>
8408
8409 * cp-namespace.c (cp_lookup_symbol_namespace): Added
8410 search_parent argument.
8411 (cp_add_using): Initialize 'searched' field.
8412 (reset_directive_searched): New function.
8413 * cp-support.h: Add 'searched' field to using_direct struct.
8414 (cp_lookup_symbol_imports): Ditto.
8415 * cp-namespace.c (cp_lookup_symbol_imports): Ditto.
8416 Perform recursive search.
8417 Implement non parent search.
8418 * valops.c (value_maybe_namespace_elt): Updated.
8419
8540c487
SW
84202010-01-26 Sami Wagiaalla <swagiaal@redhat.com>
8421
8422 PR gdb/10929:
8423 * dwarf2read.c (read_lexical_block_scope): Create blocks for
8424 scopes which contain using directives even if they contain no
8425 declarations.
8426 * symtab.c (lookup_symbol_aux): Pass lowest level block to
8427 la_lookup_symbol_nonlocal.
8428 * cp-namespace.c (cp_lookup_symbol_nonlocal): call
8429 cp_lookup_symbol_namespace.
8430 (cp_lookup_symbol_namespace): Perform an import lookup at every
8431 block level.
8432 (cp_lookup_symbol_imports): New function.
8433 (cp_lookup_symbol_in_namespace): New function.
8434
421d5d99
TT
84352010-01-25 Tom Tromey <tromey@redhat.com>
8436
8437 PR gdb/11049:
8438 * c-valprint.c (c_val_print): Fix test of extract_unsigned_integer
8439 result.
8440
6bcc772d
RO
84412010-01-25 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
8442
8443 * configure.ac: Only use host_os part when disabling TUI on osf.
8444 Use test to check variables, prefix strings with x.
8445 * configure: Regenerate.
8446
8447 * solib-osf.c (osf_current_sos): Initialize tail.
8448
1c1238a5
TG
84492010-01-25 gingold <gingold@adacore.com>
8450
c8d5aac9
L
8451 * windows-nat.c (windows_continue): Use %x to print thread id.
8452 (get_windows_debug_event): Ditto.
1c1238a5 8453
0b92b5bb
TT
84542010-01-22 Tom Tromey <tromey@redhat.com>
8455
8456 PR symtab/11199:
8457 * dwarf2read.c (quirk_gcc_member_function_pointer): Change return
8458 type and arguments. Use smash_to_methodptr_type.
8459 (read_structure_type): Call quirk_gcc_member_function_pointer
8460 later.
8461 * gdbtypes.h (smash_to_methodptr_type): Declare.
8462 * gdbtypes.c (smash_to_methodptr_type): New function.
8463 (lookup_methodptr_type): Use it.
8464
0d5392b8
TT
84652010-01-21 Tom Tromey <tromey@redhat.com>
8466
8467 PR symtab/11198:
8468 * symtab.h (lookup_minimal_symbol_and_objfile): Declare.
8469 * minsyms.c (lookup_minimal_symbol_and_objfile): New function.
8470 * glibc-tdep.c (find_minsym_and_objfile): Remove.
8471 (glibc_skip_solib_resolver): Use
8472 lookup_minimal_symbol_and_objfile.
8473
e6d088ec
KT
84742010-01-21 Kai Tietz <kai.tietz@onevision.com>
8475
8476 * inflow.c (check_syscall): Guard by #if clause for GO32 and
8477 WIN32 targets.
8478
b966cb8a
TT
84792010-01-20 Tom Tromey <tromey@redhat.com>
8480
8481 PR backtrace/10770:
8482 * valarith.c (value_binop): Handle BINOP_GTR, BINOP_LEQ, and
8483 BINOP_GEQ. Handle BINOP_NOTEQUAL in the signed case.
8484 * dwarf2expr.c (new_dwarf_expr_context): Allocate
8485 dwarf_stack_values, not CORE_ADDRs.
8486 (execute_stack_op): Change DW_OP_div and comparison operators to
8487 use signed operands.
8488
3f81c18a
VP
84892010-01-20 Vladimir Prus <vladimir@codesourcery.com>
8490
8491 Per-inferior args and tty and environment.
8492
8493 * infcmd.c (inferior_args): Rename to ...
8494 (inferior_args_scratch): ... this.
8495 (inferior_io_terminal): Rename to ...
8496 (inferior_io_terminal_scratch): ... this.
8497 (inferior_argc, inferior_argv): Remove.
8498 (set_inferior_io_terminal, get_inferior_io_terminal): Store
8499 inside current_inferior().
8500 (set_inferior_tty_command, show_inferior_tty_command): New.
8501 (get_inferior_args, set_inferior_args): Store inside
8502 current_inferior().
8503 (notice_args_set): Likewise and rename to...
8504 (set_args_command): ... this.
8505 (set_inferior_args_vector): Likewise.
8506 (notice_args_read): Rename to...
8507 (show_args_command): ...new.
8508 (tty_command): Remove.
8509 (run_command_1): Don't free old args, as they are freed by
8510 set_inferior_arg now.
8511 (run_no_args_command): Likewise.
8512 (inferior_environ): Remove.
8513 (run_command_1): Use environment of the current inferior.
8514 (environment_info, set_environment_command)
8515 (unset_environment_command, path_info, path_command): Likewise.
8516 (_initialize_infcmd): Adjust for function and variable renames.
8517 Do not init inferior_environ.
8518 * inferior.h (set_inferior_arg): Adjust prototype.
8519 (struct inferior): New fields args, argc, argv, terminal, environment.
8520 (inferior_environ): Remove declaration.
8521 * inferior.c (free_inferior): Free new fields.
8522 (add_inferior_silent): Initialize 'environment' field.
8523 * main.c (captured_main): Set arguments only after the initial
8524 inferior has been created. Set set_inferior_io_terminal,
8525 not tty_command.
8526 * mi/mi-main.c (mi_cmd_env_path): Use environment of the current
8527 inferior.
8528 (_initialize_mi_cmd_env): Adjust for disappearance of global
8529 inferior_environ.
8530 * solib.c (solib_find): Use environment of the current inferior.
8531
d8b65138
JK
85322010-01-20 Jan Kratochvil <jan.kratochvil@redhat.com>
8533
8534 * varobj.c (varobj_add_child, install_dynamic_child): Wrap into #if
8535 HAVE_PYTHON.
8536 (instantiate_pretty_printer): Move HAVE_PYTHON outside of the function.
8537
692465f1
JB
85382010-01-20 Joel Brobecker <brobecker@adacore.com>
8539
8540 Get rid of ada-lang.c:function_name_from_pc.
8541 * ada-lang.c: Add "stack.h" #include.
8542 (function_name_from_pc): Delete.
8543 (is_known_support_routine): Replace call to function_name_from_pc
8544 by call to find_frame_funname.
8545 (ada_unhandled_exception_name_addr_from_raise): Likewise.
8546
95519e0e
TT
85472010-01-19 Tom Tromey <tromey@redhat.com>
8548
8549 PR c++/11026:
8550 * dwarf2read.c (read_partial_die): Allocate partial DIE's name on
8551 objfile obstack.
8552
95c11dc7
TT
85532010-01-19 Tom Tromey <tromey@redhat.com>
8554
8555 * top.c (stop_sig, float_handler, do_nothing): Remove.
8556
a0f49112
JK
85572010-01-19 Jan Kratochvil <jan.kratochvil@redhat.com>
8558
8559 * breakpoint.c (watchpoint_check): Check the call
8560 gdbarch_in_function_epilogue_p before calling frame_find_by_id.
8561 Extend the comment.
8d95cc3b 8562 * config/djgpp/fnchange.lst: Add translations for
a0f49112
JK
8563 watchpoint-cond-gone.exp, watchpoint-cond-gone.c and
8564 watchpoint-cond-gone-stripped.c.
8565
ceeb3d5a
TT
85662010-01-19 Tom Tromey <tromey@redhat.com>
8567
8568 PR c++/8000:
8569 * dwarf2read.c (partial_die_parent_scope): Put enumeration type
8570 into parent scope, and enumerator into grandparent scope.
8571
2b71fc8e
JB
85722010-01-19 Joel Brobecker <brobecker@adacore.com>
8573
8574 * NEWS: Add entry for "set/show ada trust-PAD-over-XVS" commands.
8575
03564ed9
JB
85762010-01-19 Joel Brobecker <brobecker@adacore.com>
8577
8578 * configure.host: Make x86_64-*-solaris2.1[0-9]* an alias of
8579 i[34567]86-*-solaris2.1[0-9]*.
8580 * configure.tgt: Likewise.
8581
fb2e7cb4
JB
85822010-01-19 Joel Brobecker <brobecker@adacore.com>
8583
8584 * NEWS: Document the source command enhancement allowing it
8585 to load Python scripts. Document the "set/show script-extension"
8586 commands.
8587
1cb5e2a4
JB
85882010-01-19 Joel Brobecker <brobecker@adacore.com>
8589
8590 Add -Wunused-function to compile flags.
8591 * configure.ac: Add -Wunused-function to build_warnings.
8592 * configure: Regenerate.
8593
0ec6cd0c
JB
85942010-01-19 Joel Brobecker <brobecker@adacore.com>
8595
8596 "delete" ada-lex.c:input function, not used.
8597 * ada-lex.l: #define YY_NO_INPUT.
8598
b74845da
JB
85992010-01-19 Joel Brobecker <brobecker@adacore.com>
8600
8601 Delete free_named_symtabs and associated cleanup.
8602 * symfile.h (free_named_symtabs): Delete declaration.
8603 * symfile.c: Remove some commented out code (clear_symtab_users_once).
8604 (cashier_psymtab): Comment function out.
8605 Delete declaration.
8606 (free_named_symtabs): Delete.
8607 * coffread.c (coff_end_symtab): Remove call to free_named_symtabs.
8608 * dbxread.c (end_psymtab): Likewise.
8609 * dwarf2read.c (process_psymtab_comp_unit): Ditto.
8610 * exec.c (exec_close_1): Ditto.
8611 * xcoffread.c (xcoff_end_psymtab): Likewise.
8612
65c06092
JB
86132010-01-19 Joel Brobecker <brobecker@adacore.com>
8614
8615 * stack.c (print_block_frame_labels): Comment function out.
8616
d5cd6034
JB
86172010-01-19 Joel Brobecker <brobecker@adacore.com>
8618
8619 Delete unused or undefined functions.
8620 * breakpoint.c (ep_parse_optional_filename): Delete.
8621 * dcache.c (dcache_write_line): Remove declaration.
8622 * infrun.c (build_infrun): Remove declaration.
8623 * tracepoint.c (tracepoint_save_command): Remove declaration.
8624 * linux-nat.c (init_lwp_list): Delete. No longer used.
8625 * event-loop.c (check_async_signal_handlers): Delete declaration.
8626 * infrun.c (init_execution_control_state): Delete.
8627 (proceed): Update comment to avoid mentioning
8628 init_execution_control_state.
8629 * target.c (kill_or_be_killed, nosupport_runtime): Delete.
8630 * ada-lang.c (ada_to_static_fixed_value): Delete.
8631 * scm-lang.c (evaluate_subexp_scm): Delete declaration.
8632 * cp-namespace.c (cp_copy_usings): Delete.
8633 * xml-syscall.c (xml_number_of_syscalls): Delete.
8634 * progspace.c (find_program_space_by_num): Delete.
8635 * inflow.c (handle_sigio): Delete declaration.
8636 * hppa-tdep.c (hppa_alignof): Delete.
8637 * mipsnbsd-tdep.c (mipsnbsd_sigtramp_offset)
8638 (mipsnbsd_core_osabi_sniffer): Delete.
8639
4e8f195d
TT
86402010-01-18 Tom Tromey <tromey@redhat.com>
8641
8642 PR c++/9680:
8643 * c-exp.y (REINTERPRET_CAST, DYNAMIC_CAST, STATIC_CAST)
8644 (CONST_CAST): New tokens.
8645 (exp): Add new productions.
8646 (ident_tokens): Add const_cast, dynamic_cast, static_cast, and
8647 reinterpret_cast.
8648 (is_cast_operator): New function.
8649 (yylex): Handle cast operators specially.
8650 * eval.c (evaluate_subexp_standard) <UNOP_DYNAMIC_CAST,
8651 UNOP_REINTERPRET_CAST>: New cases.
8652 * expprint.c (print_subexp_standard): Likewise.
8653 (op_name_standard): Likewise.
8654 (dump_subexp_body_standard): Likewise.
8655 * parse.c (operator_length_standard): Likewise.
8656 * expression.h (enum exp_opcode): New constants UNOP_DYNAMIC_CAST,
8657 UNOP_REINTERPRET_CAST.
8658 * gdbtypes.c (class_types_same_p): New function.
8659 (is_ancestor): Use it.
8660 (is_public_ancestor): New function.
8661 (is_unique_ancestor_worker): Likewise.
8662 (is_unique_ancestor): Likewise.
8663 * gdbtypes.h (class_types_same_p, is_public_ancestor)
8664 (is_unique_ancestor): Declare.
8665 * valops.c (value_reinterpret_cast): New function.
8666 (dynamic_cast_check_1): Likewise.
8667 (dynamic_cast_check_2): Likewise.
8668 (value_dynamic_cast): Likewise.
8669 * value.h (value_reinterpret_cast, value_dynamic_cast): Declare.
8670
d9c57d9f
JB
86712010-01-18 Joel Brobecker <brobecker@adacore.com>
8672
8673 Fix build failure when building without Python support.
8674 * python/python.c: Always include exceptions.h, even when HAVE_PYTHON
8675 is not defined.
8676
f80d3ff2
JB
86772010-01-18 Joel Brobecker <brobecker@adacore.com>
8678
8679 Use XVS field type instead of doing a parallel lookup.
8680 * ada-lang.c (ada_get_base_type): Follow the XVS field type
8681 if it is a reference type instead of doing a type lookup using
8682 the XVS field name.
8683
5bf03f13
JB
86842010-01-18 Joel Brobecker <brobecker@adacore.com>
8685
8686 Trust PAD types instead of using PAD___XVS.
8687 * ada-lang.c (trust_pad_over_xvs): New static variable.
8688 (ada_is_aligner_type): If !trust_pad_over_xvs and there is a
8689 parallel XVS type, follow the XVS type instead of the PAD type.
8690 (unwrap_value): Make sure that there is no parallel XVE type
8691 before returning the value as is.
8692 (set_ada_list, show_ada_list): New static variables.
8693 (set_ada_command, show_ada_command): New functions.
8694 (_initialize_ada_language): Add new "set/show ada" prefix commands.
8695 Add new "set/show ada trust-PAD-over-XVS" setting.
8696
973817a3
JB
86972010-01-18 Tom Tromey <tromey@redhat.com>
8698 Thiago Jung Bauermann <bauerman@br.ibm.com>
8699
8700 Allow "source" to load python scripts.
8701 * exceptions.h (enum errors): Add UNSUPPORTED_ERROR.
8702 * python/python.c (source_python_script): New function.
8703 * python/python.h (source_python_script): Add declaration.
8704 * cli/cli-cmds.c: #include exceptions.h and python/python.h.
8705 (script_ext_off, script_ext_soft, script_ext_strict)
8706 (script_ext_enums, script_ext_mode): New static constants.
8707 (show_script_ext_mode, find_and_open_script): New functions.
8708 (source_script): Enhance to handle Python scripts.
8709 (init_cli_cmds): Add set/show script-extension commands.
8710
98e03262
SS
87112010-01-16 Stan Shebs <stan@codesourcery.com>
8712
8713 * tracepoint.h (struct trace_status): Use unsigned long long
8714 instead of size_t.
8715 * tracepoint.c (trace_status_command): Fix printf directive.
8716 (trace_save_command): Check fwrite returns, fix printf directive.
8717 (trace_filename): New global.
8718 (tfile_open): Set it, check read returns.
8719 (tfile_close): Free trace_filename.
8720 (tfile_get_traceframe_address): Check read returns.
8721 (tfile_trace_find): Ditto.
8722 (tfile_fetch_registers): Ditto.
8723 (tfile_xfer_partial): Ditto.
8724 (tfile_get_trace_state_variable_value): Ditto.
8725
00bf0b85
SS
87262010-01-15 Stan Shebs <stan@codesourcery.com>
8727
8728 Add trace file support.
8729 * tracepoint.h (enum trace_stop_reason): New enum.
8730 (struct trace_status): New struct.
8731 (parse_trace_status): Declare.
8732 (struct uploaded_tp): Move here from remote.c,
8733 add fields for actions.
8734 (struct uploaded_tsv): New struct.
8735 * tracepoint.c (tfile_ops): New target vector.
8736 (trace_fd): New global.
8737 (tfile_open): New function.
8738 (tfile_close): New function.
8739 (tfile_files_info): New function.
8740 (tfile_get_trace_status): New function.
8741 (tfile_get_traceframe_address): New function.
8742 (tfile_trace_find): New function.
8743 (tfile_fetch_registers): New function.
8744 (tfile_xfer_partial): New function.
8745 (tfile_get_trace_state_variable_value): New function.
8746 (init_tfile_ops): New function.
8747 (_initialize_tracepoint): Call it, add tfile target.
8748 (trace_status): New global.
8749 (current_trace_status): New function.
8750 (trace_running_p): Remove, change all users to get from
8751 current_trace_status()->running.
8752 (get_trace_status): Remove.
8753 (trace_status_command): Call target_get_trace_status directly,
8754 report more detail including tracing stop reasons.
8755 (trace_find_command): Always allow tfind on a file.
8756 (trace_find_pc_command): Ditto.
8757 (trace_find_tracepoint_command): Ditto.
8758 (trace_find_line_command): Ditto.
8759 (trace_find_range_command): Ditto.
8760 (trace_find_outside_command): Ditto.
8761 (trace_frames_offset, cur_offset): Declare as off_t.
8762 (trace_regblock_size): Rename from reg_size, update users.
8763 (parse_trace_status): New function.
8764 (tfile_interp_line): New function.
8765 (disconnect_or_stop_tracing): Ensure current trace
8766 status before asking what to do.
8767 (stop_reason_names): New global.
8768 (trace_save_command): New command.
8769 (get_uploaded_tp): Move here from remote.c.
8770 (find_matching_tracepoint): Ditto.
8771 (merge_uploaded_tracepoints): New function.
8772 (parse_trace_status): Use stop_reason_names.
8773 (_initialize_tracepoint): Define tsave command.
8774 * target.h (target_ops): New fields to_save_trace_data,
8775 to_upload_tracepoints, to_upload_trace_state_variables,
8776 to_get_raw_trace_data, change to_get_trace_status
8777 to take a pointer to a status struct.
8778 (target_save_trace_data): New macro.
8779 (target_upload_tracepoints): New macro.
8780 (target_upload_trace_state_variables): New macro.
8781 (target_get_raw_trace_data): New macro.
8782 * target.c (update_current_target): Add new methods, change
8783 signature of to_get_trace_status.
8784 * remote.c (hex2bin): Make globally visible.
8785 (bin2hex): Ditto.
8786 (remote_download_trace_state_variable): Download name also.
8787 (remote_get_trace_status): Update parameter, use
8788 parse_trace_status.
8789 (remote_save_trace_data): New function.
8790 (remote_upload_tracepoints): New function.
8791 (remote_upload_trace_state_variables): New function.
8792 (remote_get_raw_trace_data): New function.
8793 (remote_start_remote): Use them.
8794 (_initialize_remote_ops): Add operations.
8795 * ax-gdb.c: Include breakpoint.h.
8796 * breakpoint.c (create_tracepoint_from_upload): Use
8797 break_command_really, return tracepoint, warn about unimplemented
8798 parts.
8799 * NEWS: Mention trace file addition.
8800
d904de5b
JK
88012010-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
8802
8803 Fix compilation warning on gcc-3.4.
8804 * exec.c (print_section_info): Move the `displacement' variable
8805 initialization to its declaration.
8806
64aa9731
JK
88072010-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
8808
8809 * gdb-gdb.py (StructMainTypePrettyPrinter): Fix TYPE_CODE_RANGE
8810 comparison.
8811
ca1f5def 88122010-01-15 Eric Botcazou <botcazou@adacore.com>
9f0dec2d
JB
8813
8814 "info tasks" broken by typedefs in ATCB type definitions.
8815 * ada-lang.c (ada_template_to_fixed_record_type_1): Add call to
8816 ada_check_typedef before retrieving the length of the type for
8817 regular fields.
8818
12ab9e09
JB
88192010-01-15 Joel Brobecker <brobecker@adacore.com>
8820
8821 Do not use name-based lookup for unconstrained packed arrays.
8822 * ada-lang.c (find_parallel_type_by_descriptive_type):
8823 Limit the fallback to name-based lookups to the case where
8824 the type is a constrained packed array.
8825
c389c3dc
JB
88262010-01-15 Joel Brobecker <brobecker@adacore.com>
8827
8828 Enhance gdb-gdb.py to handle main_type.type_specific.
8829 * gdb-gdb.py: Print the type-specific part of struct main_type.
8830
7991dee7
JK
88312010-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
8832
8833 * configure.ac (AC_CHECK_FUNCS): Check for setrlimit and getrlimit.
8834 * configure: Regenerate.
8835 * config.in: Regenerate.
8836 * utils.c: Include sys/resource.h.
8837 (dump_core, can_dump_core): New.
8838 (internal_vproblem): Update the comment. Check can_dump_core while
8839 setting dump_core_p. Replace two abort calls by dump_core calls.
8840
93c26624
JK
88412010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
8842 Eli Zaretskii <eliz@gnu.org>
8843
8844 * NEWS: Document the PIE support.
8845
55235ad7
JK
88462010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
8847
8848 * linux-tdep.c: Remove includes gdbcore.h, observer.h and elf-bfd.h.
8849 (check_is_pie_binary, _initialize_linux_tdep): Remove.
8850
41752192
JK
88512010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
8852
8853 * solib-svr4.c (svr4_exec_displacement): New comment for entry_point.
8854 Replace exec_entry_point call by bfd_get_start_address.
8855
9f2982ff
JK
88562010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
8857
8858 Support Valgrind attachments broken by the PIE support.
8859 * auxv.c: Include gdbcore.h.
8860 (procfs_xfer_auxv): Make static. Reduce its comment. Drop its
8861 parameters ops, object and annex. Remove their assertions.
8862 (ld_so_xfer_auxv, memory_xfer_auxv): New function.
8863 * auxv.h (procfs_xfer_auxv): Remove comment. Rename to ...
8864 (memory_xfer_auxv): ... here.
8865 * linux-nat.c (linux_xfer_partial): Rename procfs_xfer_auxv to
8866 memory_xfer_auxv.
8867 * procfs.c (procfs_xfer_partial): Likewise.
8868 * solib-svr4.c (svr4_relocate_main_executable): New prototype.
8869 (svr4_special_symbol_handling): Call svr4_relocate_main_executable.
8870 (svr4_solib_create_inferior_hook): Conditionalize the
8871 svr4_relocate_main_executable call.
8872
61f0d762
JK
88732010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
8874
8875 * solib-svr4.c (scan_dyntag): Remove variable dyn_addr. New variable
8876 target_section. Find SECT in current_target_sections, gdb_assert it.
8877 (elf_lookup_lib_symbol): Pass the binary file if given symfile_objfile.
8878 New variable abfd.
8879 * symtab.c (lookup_objfile_from_block): Return the binary file instead
8880 of separate debug info file.
8881
51bee8e9
JK
88822010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
8883
8884 Support PIEs with no symfile_objfile.
8885 * exec.c (print_section_info <abfd == exec_bfd>): Relocate Entry point.
8886 * solib-svr4.c (svr4_relocate_main_executable <exec_bfd>): New block.
8887
b8040f19
JK
88882010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
8889
8890 * solib-svr4.c (svr4_relocate_main_executable): Move the static exec
8891 code part to ...
8892 (svr4_static_exec_displacement): ... a new function.
8893 (svr4_exec_displacement): New function.
8894 (svr4_relocate_main_executable): Call svr4_exec_displacement. Allocate
8895 new_offsets using alloca now. Remove variable old_chain and changed.
8896 Call objfile_relocate unconditionally now.
8897
eb90ce83
DE
88982010-01-14 Doug Evans <dje@google.com>
8899
8900 * gdbtypes.c (arch_flags_type): Fix comment.
8901 * gdbtypes.h (arch_composite_type): Fix comment.
8902
bdfed3bc
TG
89032009-01-14 Tristan Gingold <gingold@adacore.com>
8904
8905 * machoread.c (macho_add_oso_symfile): Add symfile_flags parameter.
8906 Call xstrdup for abfd->filename. Pass symfile_flags and objfile flags
8907 to symbol_file_add_from_bfd. Add OSO as separate objfile.
8908 (macho_oso_symfile): Add symfile_flags parameter. Pass it to
8909 macho_add_oso_symfile.
8910 (macho_symfile_read): Pass symfile_flags to macho_oso_symfile.
8911
1596ad23
JB
89122010-01-14 Joel Brobecker <brobecker@adacore.com>
8913
8914 Tru64: Dead threads are never deleted.
8915 * dec-thread.c (dec_thread_ptid_is_alive): New function.
8916 (dec_thread_count_gdb_threads): Fix counter increment.
8917 (dec_thread_add_gdb_thread): Fix *listp increment.
8918 (resync_thread_list): Fix bug in deletion of dead threads that
8919 caused all threads to be deleted, instead of just the dead ones.
8920
be759fcf
PM
89212010-01-13 Phil Muldoon <pmuldoon@redhat.com>
8922
8923 PR python/10705
8924
8925 * python/python-internal.h: Add lazy_string_object_type
8926 definition.
8927 (create_lazy_string_object, gdbpy_initialize_lazy_string)
8928 (gdbpy_is_lazystring, gdbpy_extract_lazy_string): Define.
8929 * python/py-value.c (valpy_lazy_string): New function.
8930 (convert_value_from_python): Add lazy string conversion.
8931 * python/py-prettyprint.c (pretty_print_one_value): Check if
8932 return is also a lazy string.
8933 (print_string_repr): Add lazy string printing branch.
8934 (print_children): Likewise.
8935 * python/py-lazy-string.c: New file. Implement lazy strings.
8936 * python/python.c (_initialize_python): Call
8937 gdbpy_initialize_lazy_string.
8938 * varobj.c (value_get_print_value): Add lazy string printing
8939 branch. Account for encoding.
8940 * c-lang.c (c_printstr): Account for new encoding argument. If
8941 encoding is NULL, find encoding suited for type, otherwise use
8942 user encoding.
8943 * language.h (language_defn): Add encoding argument.
8944 (LA_PRINT_STRING): Likewise.
8945 * language.c (unk_lang_printstr): Update to reflect new encoding
8946 argument to language_defn.
8947 * ada-lang.h (ada_printstr): Likewise.
8948 * c-lang.h (c_printstr): Likewise.
8949 * p-lang.h (pascal_printstr);
8950 * f-lang.c (f_printstr): Likewise.
8951 * m2-lang.c (m2_printstr): Likewise.
8952 * objc-lang.c (objc_printstr): Likewise.
8953 * p-lang.c (pascal_printstr): Likewise.
8954 * scm-lang.c (scm_printstr): Likewise.
8955 * c-valprint.c (c_val_print): Update LA_PRINT_STRING call for
8956 encoding argument.
8957 * ada-valprint.c (ada_printstr): Likewise.
8958 * f-valprint.c (f_val_print): Likewise
8959 * m2-valprint.c (m2_val_print): Likewise.
8960 * p-valprint.c (pascal_val_print): Likewise.
8961 * expprint.c (print_subexp_standard): Likewise.
8962 * valprint.c (val_print_string): Likewise.
8963 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-lazy-string.
8964 (SUBDIR_PYTHON_SRCS): Likewise.
8965 (py-lazy-string.o): New rule.
8966
1fe72117 89672010-01-13 Doug Evans <dje@google.com>
8eee9c5a
DE
8968
8969 * mi/mi-main.c (list_available_thread_groups): Avoid "may be used
8970 uninitialized" warning from gcc on local `tree'.
8971
dc146f7c
VP
89722010-01-13 Vladimir Prus <vladimir@codesourcery.com>
8973
8974 Implement core awareness.
8975
8976 * bcache.c (compare_ints): Remove
8977 (print_percentage): Use compare_positive_ints.
8978 * defs.h (compare_positive_ints): Declare.
8979 * linux-nat.h (struct lin_lwp): New field core.
8980 (linux_nat_core_of_thread_1): Declare.
8981 * linux-nat.c (add_lwp): Init the 'core' field.
8982 (linux_nat_wait_1): Record the core.
8983 (linux_nat_core_of_thread_1, linux_nat_core_of_thread): New.
8984 (linux_nat_add_target): Register the above.
8985 * linux-thread-db.c (update_thread_core): New.
8986 (thread_db_find_new_threads): Update core information for
8987 every thread.
8988 * remote.c (struct private_thread_info): New.
8989 (free_private_thread_info, demand_private_info): New.
8990 (PACKET_qXfer_threads, use_osdata_threads): New.
8991 (struct thread_item, threads_parsing_context
8992 (start_thread, end_thread, thread_attributes)
8993 (thread_children, threads_children, threads_elements): New.
8994 (remote_threads_info): Try qXfer:threads before anything
8995 else.
8996 (remote_protocol_packets): Register qXfer:threads.
8997 (remote_open_1): Init use_osdata_threads.
8998 (struct stop_reply): New field 'core'.
8999 (remote_parse_stop_reply): Parse core number.
9000 (process_stop_reply): Record core number.
9001 (remote_xfer_partial): Handle qXfer:threads.
9002 (remote_core_of_thread): New.
9003 (init_remote_ops): Register remote_core_of_thread.
9004 (_initialize_remote): Register qXfer:read.
9005 * target.c (target_core_of_thread): New
9006 * target.h (enum target_object): New value TARGET_OBJECT_THREADS.
9007 (struct target_ops): New field to_core_of_threads.
9008 (target_core_of_thread): Declare.
9009 * gdbthread.h (struct thread_info): New field private_dtor.
9010 * thread.c (print_thread_info): Report the core.
9011 * ui-out.c (MAX_UI_OUT_LEVELS): Increase.
9012 * utils.c (compare_positive_ints): New.
9013 * features/threads.dtd: New.
9014 * mi/mi-interp.c (mi_on_normal_stop): Report the core.
9015 * mi/mi-main.c (struct collect_cores_data, collect_cores)
9016 (do_nothing, free_vector_of_osdata_items)
9017 (splay_tree_int_comparator, free_splay_tree): New.
9018 (print_one_inferior_data): Implemented printing of selected
9019 inferiors. Collect and print cores.
9020 (output_cores): New.
9021 (mi_cmd_list_thread_groups): Support --recurse. Permit specifying
9022 thread groups together with --available.
9023
d30c5336
JK
90242010-01-12 Jan Kratochvil <jan.kratochvil@redhat.com>
9025
9026 * configure: Regenerate (for _STRUCTURED_PROC).
9027
02893727
JB
90282010-01-12 Joel Brobecker <brobecker@adacore.com>
9029
9030 Delete dead function.
9031 * ada-lang.c (extract_string): Delete. No longer used.
9032
46ed2d6f
JB
90332010-01-12 Joel Brobecker <brobecker@adacore.com>
9034
9035 Fix -Wunused warning in dec-thread.c.
9036 * dec-thread.c (dec_thread_count_gdb_threads)
9037 (dec_thread_add_gdb_thread): Prevent -Wunused warning.
9038
606b8d1a
JB
90392010-01-12 Joel Brobecker <brobecker@adacore.com>
9040
9041 * ada-valprint.c (ada_print_floating): Remove trailing space.
9042
b4ba55a1
JB
90432010-01-12 Joel Brobecker <brobecker@adacore.com>
9044
9045 Add support for DW_AT_GNAT_descriptive_type.
9046 * gdbtypes.h (enum type_specific_kind): New enum.
9047 (struct main_type) [type_specific_field]: New component.
9048 [type_specific]: Add new component "gnat_stuff".
9049 (struct gnat_aux_type): New type.
9050 (INIT_CPLUS_SPECIFIC): Also set TYPE_SPECIFIC_FIELD (type).
9051 (HAVE_CPLUS_STRUCT): Also check TYPE_SPECIFIC_FIELD (type).
9052 (gnat_aux_default, allocate_gnat_aux_type): Add declaration.
9053 (INIT_GNAT_SPECIFIC, ALLOCATE_GNAT_AUX_TYPE, HAVE_GNAT_AUX_INFO)
9054 (TYPE_SPECIFIC_FIELD): New macros.
9055 (TYPE_CPLUS_SPECIFIC): Return cplus_struct_default if the given
9056 type does not hold any cplus-specific data.
9057 (TYPE_RAW_CPLUS_SPECIFIC): New macro.
9058 (TYPE_GNAT_SPECIFIC, TYPE_DESCRIPTIVE_TYPE): New macros.
9059 (TYPE_IS_OPAQUE): Use HAVE_CPLUS_STRUCT to check if type has
9060 cplus-specific data.
9061 * gdbtypes.c (allocate_cplus_struct_type): Minor stylistic rewrite.
9062 Set new component TYPE_SPECIFIC_FIELD (type).
9063 (gnat_aux_default): New constant.
9064 (allocate_gnat_aux_type): New function.
9065 (init_type): Add initialization the type-specific stuff for
9066 TYPE_CODE_FLT and TYPE_CODE_FUNC types.
9067 (print_gnat_stuff): New function.
9068 (recursive_dump_type): Use HAVE_CPLUS_STRUCT to check for cplus-
9069 specific data. Adjust code that prints the contents of the
9070 type-specific union using the TYPE_SPECIFIC_FIELD value.
9071 * dwarf2read.c (dwarf2_attach_fields_to_type): Do not allocate
9072 the type cplus stuff for Ada types.
9073 (dwarf2_add_member_fn, dwarf2_attach_fn_fields_to_type):
9074 Error out if these routines are called with an Ada type.
9075 (read_structure_type, read_array_type, read_subrange_type):
9076 Add call to set_descriptive_type.
9077 (set_die_type): Initialize the gnat-specific data if necessary.
9078 (need_gnat_info, die_descriptive_type, set_descriptive_type):
9079 New functions.
9080 * ada-lang.c (decode_constrained_packed_array_type): Use
9081 decode_constrained_packed_array_type instead of doing a standard
9082 lookup to locate a parallel type.
9083 (find_parallel_type_by_descriptive_type): New function.
9084 (ada_find_parallel_type_with_name): New function.
9085 (ada_find_parallel_type): Reimplement using
9086 ada_find_parallel_type_with_name.
9087 * ada-valprint.c (print_field_values): Use HAVE_CPLUS_STRUCT
9088 to check if type has a cplus stuff.
9089 * linespec.c (total_number_of_methods): Likewise.
9090 * mdebugread.c (new_type): Likewise.
9091
b0f02ee9
JK
90922010-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
9093
9094 * NEWS: Document the 0b binary number prefix parsing.
9095
b260e109
JK
90962010-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
9097
9098 * objfiles.c (objfile_relocate1): Change the return type to int.
9099 Describe the new return value. Return non-zero if data changed.
9100 (objfile_relocate): New variable changed. Set it. Call
9101 breakpoint_re_set depending on CHANGED.
9102
b5cfddf5
JK
91032010-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
9104
9105 Implement binary numbers parsing.
9106 * c-exp.y (parse_number): New case 'b' and 'B'.
9107
e0ae4240
JK
91082010-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
9109 Tristan Gingold <gingold@adacore.com>
9110
9111 * solib.c (info_sharedlibrary_command): Replace
9112 objfile_has_partial_symbols and objfile_has_full_symbols calls by
9113 objfile_has_symbols.
9114
6e0e5977
JB
91152010-01-10 Joel Brobecker <brobecker@adacore.com>
9116
9117 * NEWS: Document the improvements made to the mips-irix port.
9118
7348c5e1
JB
91192010-01-09 Joel Brobecker <brobecker@adacore.com>
9120
9121 Fix the documentation of valprint.c:value_print.
9122 * valprint.c (value_print): Update the function description to
9123 mention that the syntax of the output follows the current_language,
9124 not necessarily C.
9125
567995e1
JK
91262010-01-09 Jan Kratochvil <jan.kratochvil@redhat.com>
9127
9128 Fix displacement of separate debug info files.
9129 * objfiles.c (objfile_relocate): Rename to ...
9130 (objfile_relocate1): ... here and make it static. Extend the comment.
9131 (objfile_relocate): New function.
9132 * solib-spu.c (spu_relocate_main_executable): Explicitly check if
9133 SYMFILE_OBJFILE is NULL. Remove variables objfile and old_chain.
9134 Remove following of SEPARATE_DEBUG_OBJFILE. new_offsets is now
9135 allocated using alloca.
9136 * symfile.c (copy_section_addr_info): Remove.
9137 (build_section_addr_info_from_objfile): Make it global. New variables
9138 addr_bit and mask, use them.
9139 * symfile.h (build_section_addr_info_from_objfile): New prototype.
9140 (copy_section_addr_info): Remove.
9141
6d8eadbd
JB
91422010-01-09 Joel Brobecker <brobecker@adacore.com>
9143
9144 Signal unwinder for mips-irix N32.
9145 * mips-irix-tdep.c: #include mips-tdep.h, trad-frame.h, and
9146 tramp-frame.h.
9147 (SIGTRAMP_FRAME_SIZE, SIGCONTEXT_PC_OFF, SIGCONTEXT_REGS_OFF)
9148 (SIGCONTEXT_FPREGS_OFF, SIGCONTEXT_FPCSR_OFF, SIGCONTEXT_HI_OFF)
8d95cc3b
PA
9149 (SIGCONTEXT_LO_OFF): New macros.
9150 (mips_irix_n32_tramp_frame_init): New function.
6d8eadbd
JB
9151 (mips_irix_n32_tramp_frame): New static constant.
9152 (mips_irix_init_abi): Prepend the mips_irix_n32_tramp_frame unwinder.
9153
27087a3d
JB
91542010-01-09 Joel Brobecker <brobecker@adacore.com>
9155
9156 Breakpoint in shared library does not work on mips-irix.
9157 * procfs.c: #include "observer.h".
9158 (procfs_inferior_created): New function, moving here the code
9159 which unsets the syssgi syscall-exit notifications.
9160 (procfs_create_inferior): Remove the code which unsets the syssgi
9161 syscall-exit notifications. It is too early to do this here.
9162 (_initialize_procfs): Attach the procfs_inferior_created observer.
9163
f08877ba
JB
91642010-01-09 Joel Brobecker <brobecker@adacore.com>
9165
9166 Wrong return convention for arrays (mips-irix).
9167 * mips-tdep.c (mips_n32n64_return_value): Arrays whose size is
9168 128 bits or smaller are returned the same way as structs
9169 and unions of the the same size.
9170
e4b97d48
JB
91712010-01-09 Joel Brobecker <brobecker@adacore.com>
9172
9173 Cannot set the PC on mips-irix.
9174 * irix5-nat.c (fill_gregset): Check regno against the raw PC
9175 register number, no the cooked one.
9176
11377e68
JB
91772010-01-09 Joel Brobecker <brobecker@adacore.com>
9178
9179 Error while loading core file on mips-irix.
9180 * solib-irix.c (irix_solib_create_inferior_hook): Do nothing
9181 if debugging from a core file.
9182
b2391021
JB
91832010-01-09 Joel Brobecker <brobecker@adacore.com>
9184
9185 GDB hangs when attaching to process on mips-irix.
9186 * solib-irix.c (irix_solib_create_inferior_hook): Do nothing if
9187 attaching to a process.
9188
f2ec0ecf
JB
91892010-01-09 Joel Brobecker <brobecker@adacore.com>
9190
9191 Use the correct breakpoint instruction on mips-irix.
9192 * mips-tdep.c (mips_breakpoint_from_pc): Add new static variable
9193 containing the correct breakpoint instruction to use on mips-irix.
9194 Use it when the osabi is GDB_OSABI_IRIX.
9195
3c95f01c
JB
91962010-01-09 Joel Brobecker <brobecker@adacore.com>
9197
9198 -Wunused warning in procfs.c (mips-irix only).
9199 * procfs.c (gdb_praddset, gdb_prdelset): New macros. Use them
9200 throughout instead of using praddset and prdelset respectively.
9201
4b7703ad
JB
92022010-01-09 Joel Brobecker <brobecker@adacore.com>
9203
9204 GDB crash while stepping into function.
9205 * infrun.c (handle_inferior_event): Refetch the current frame
9206 after handling what.main_action, in case that pointer became
9207 dangling.
9208
12c89474
JB
92092010-01-09 Joel Brobecker <brobecker@adacore.com>
9210
9211 Fix build failure of solaris-hosted cross debuggers.
9212 * ada-valprint.c, parse.c: Include defs.h before including ctype.h.
9213
1a3fd262 92142010-01-09 Daniel Gutson <dgutson@codesourcery.com>
4c490650
JB
9215
9216 Fix build failure on sparc-solaris.
9217 * procfs.c: (procfs_do_thread_registers) Use elfcore_write_lwpstatus.
9218
75242ef4
JK
92192010-01-08 Jan Kratochvil <jan.kratochvil@redhat.com>
9220
9221 Move some symfile code into subroutines.
9222 * symfile.h (relative_addr_info_to_section_offsets)
9223 (addr_info_make_relative): New prototypes.
9224 * symfile.c (default_symfile_offsets): Move a part to ...
9225 (relative_addr_info_to_section_offsets): ... this new function.
9226 (default_symfile_offsets): Call it.
9227 (syms_from_objfile <!mainline && addrs && addrs->other[0].name>): Move
9228 this part to ...
9229 (addr_info_make_relative): ... this new function.
9230
268a4a75
JK
92312010-01-08 Jan Kratochvil <jan.kratochvil@redhat.com>
9232
9233 Add from_tty to solib_create_inferior_hook.
9234 * infcmd.c (post_create_inferior): Move solib_add after
9235 solib_create_inferior_hook. Pass from_tty to
9236 solib_create_inferior_hook. Call solib_add and SOLIB_ADD with
9237 0 from_tty and comment why.
9238 * infrun.c (follow_exec): Pass from_tty solib_create_inferior_hook as 0.
9239 * linux-nat.c (linux_child_follow_fork): Likewise.
9240 * nto-procfs.c (procfs_post_attach, procfs_create_inferior): Likewise.
9241 * solib-darwin.c (darwin_solib_create_inferior_hook): New parameter
9242 from_tty.
9243 * solib-frv.c (frv_solib_create_inferior_hook): Likewise.
9244 * solib-irix.c (irix_solib_create_inferior_hook): Likewise.
9245 * solib-null.c (null_solib_create_inferior_hook): Likewise.
9246 * solib-osf.c (osf_solib_create_inferior_hook): Likewise.
9247 * solib-pa64.c (pa64_solib_create_inferior_hook): Likewise.
9248 * solib-som.c (som_solib_create_inferior_hook): Likewise.
9249 * solib-spu.c (spu_solib_create_inferior_hook): New parameter from_tty.
9250 Pass it to svr4_so_ops.solib_create_inferior_hook.
9251 * solib-sunos.c (sunos_solib_create_inferior_hook): New parameter
9252 from_tty.
9253 * solib-svr4.c (enable_break): New parameter from_tty. Pass it to
9254 solib_add.
9255 (svr4_solib_create_inferior_hook): New parameter from_tty. Pass it to
9256 enable_break.
9257 * solib-target.c (solib_target_solib_create_inferior_hook): New
9258 parameter from_tty.
9259 * solib.c (solib_create_inferior_hook): New parameter from_tty. Pass
9260 it to ops->solib_create_inferior_hook.
9261 (reload_shared_libraries): Pass from_tty to solib_create_inferior_hook.
9262 Move solib_add after solib_create_inferior_hook, call it now with
9263 from_tty as 0. New comment there.
9264 * solib.h (solib_create_inferior_hook): New parameter from_tty.
9265 * solist.h (struct target_so_ops <solib_create_inferior_hook>):
9266 Likewise.
9267
cf00dfa7
VP
92682010-01-08 Vladimir Prus <vladimir@codesourcery.com>
9269
9270 Fix multiexec race.
9271 * infrun.c (handle_inferior_event): Use get_thread_regcache
9272 with events ptid, not get_current_regcache.
9273
f91e5ac3
JB
92742009-01-08 Joel Brobecker <brobecker@adacore.com>
9275
9276 GDB crash with empty executable name (MinGW).
9277 * source.c (openp): Add assert that parameter string is not NULL.
9278 if parameter string is an empty string, then return with a failure
9279 immediately.
9280
92b9ce5b
JB
92812009-01-08 Joel Brobecker <brobecker@adacore.com>
9282
9283 Get rid of support for VAX Floats.
9284 * ada-lang.h (ada_is_vax_floating_type, ada_vax_float_type_suffix)
9285 (ada_vax_float_print_function): Delete.
9286 * ada-lang.c (ada_is_vax_floating_type, ada_vax_float_type_suffix)
9287 (ada_vax_float_print_function): Delete.
9288 * ada-typeprint.c (print_vax_floating_point_type): Delete.
9289 (ada_print_type): Remove support for VAX floats.
9290 * ada-valprint.c (ada_val_print_1): Remove support for VAX floats.
9291
268a4a75 92922010-01-08 Jan Kratochvil <jan.kratochvil@redhat.com>
d24d8548
JK
9293
9294 * stabsread.c (read_args): Handle zero arguments.
9295
f0f20949
JB
92962009-01-08 Joel Brobecker <brobecker@adacore.com>
9297
9298 Cannot find in-tree libiconv.a after reconfigure.
9299 * acinclude.m4 (AM_ICONV): If we find an in-tree libiconv.a
9300 that we can use, then cache the path to this archive.
9301 * configure: Regenerate.
9302
6b6218c5
SS
93032010-01-07 Stan Shebs <stan@codesourcery.com>
9304
35b1e5cc
SS
9305 Make tracepoint operations go through target vector.
9306 * target.h (enum trace_find_type): New enum.
9307 (struct target_ops): New fields to_trace_init,
9308 to_download_tracepoint, to_download_trace_state_variable,
9309 to_trace_set_readonly_regions, to_trace_start, to_get_trace_status,
9310 to_trace_stop, to_trace_find, to_get_trace_state_variable_value,
9311 to_set_disconnected_tracing.
9312 (target_trace_init): New macro.
9313 (target_download_tracepoint): New macro.
9314 (target_download_trace_state_variable): New macro.
9315 (target_trace_start): New macro.
9316 (target_trace_set_readonly_regions): New macro.
9317 (target_get_trace_status): New macro.
9318 (target_trace_stop): New macro.
9319 (target_trace_find): New macro.
9320 (target_get_trace_state_variable_value): New macro.
9321 (target_set_disconnected_tracing): New macro.
9322 * target.c (update_current_target): Inherit and set defaults for
9323 tracepoint operations.
9324 * tracepoint.c (default_collect): Make globally visible.
9325 (target_is_remote): Remove, along with all calls.
9326 (tvariables_info): Call target_get_trace_state_variable_value.
9327 (remote_set_transparent_ranges): Remove.
9328 (trace_start_command): Call target_trace_init,
9329 target_download_tracepoint, etc.
9330 (download_tracepoint): Remove.
9331 (trace_stop_command): Simplify.
9332 (stop_tracing): Call target_trace_stop.
9333 (get_trace_status): Call target_get_trace_status.
9334 (trace_status_command): Add case for targets that cannot trace.
9335 (finish_tfind_command): Change to take numerical arguments, call
9336 target_trace_find.
9337 (trace_find_command): Update call to finish_tfind_command.
9338 (trace_find_pc_command): Ditto.
9339 (trace_find_tracepoint_command): Ditto.
9340 (trace_find_line_command): Ditto.
9341 (trace_find_range_command): Ditto.
9342 (trace_find_outside_command): Ditto.
9343 (set_disconnected_tracing_value): Call
9344 target_set_disconnected_tracing.
9345 * remote.c: Add protocol encoding bits from tracepoint.c.
9346 (trace_error): Move from tracepoint.c.
9347 (remote_get_noisy_reply): Ditto.
9348 (free_actions_list_cleanup_wrapper): Ditto.
9349 (free_actions_list): Ditto.
9350 (remote_trace_init): New function.
9351 (remote_download_tracepoint): New function.
9352 (remote_download_trace_state_variable): New function.
9353 (remote_trace_set_readonly_regions): New function.
9354 (remote_trace_start): New function.
9355 (remote_get_trace_status): New function.
9356 (remote_trace_stop): New function.
9357 (remote_trace_find): New function.
9358 (remote_download_trace_state_variable): New function.
9359 (remote_set_disconnected_tracing): New function.
9360 (init_remote_ops): Add tracepoint operations.
9361
6b6218c5
SS
9362 * tracepoint.c (trace_dump_command): Don't decr_pc_after_break.
9363
089b4803
TG
93642010-01-07 Tristan Gingold <gingold@adacore.com>
9365
9366 * symfile.c (build_section_addr_info_from_objfile): New function.
9367 (symbol_file_add_separate): Don't use offsets from objfile but
9368 built an addr info.
9369
d5551862
SS
93702010-01-06 Stan Shebs <stan@codesourcery.com>
9371
9372 Support disconnected tracing.
9373 * infcmd.c (detach_command): Ask whether to stop tracing.
9374 * cli/cli-cmds.c (quit_command): Ditto.
9375 * breakpoint.h (struct breakpoint): New field number_on_target.
9376 * breakpoint.c (create_tracepoint_from_upload): New function.
9377 (get_tracepoint_by_number_on_target): New function.
9378 * remote.c (struct remote): New field disconnected_tracing.
9379 (remote_disconnected_tracing_feature): New function.
9380 (remote_protocol_features): Add DisconnectedTracing.
9381 (struct uploaded_tp): New struct.
9382 (uploaded_tps): New global.
9383 (get_uploaded_tp): New function.
9384 (find_matching_tracepoint): New function.
9385 (remote_get_tracing_state): New function.
9386 (remote_start_remote): Call it.
9387 * tracepoint.c (disconnected_tracing): New global.
9388 (trace_start_command): Initialize number_on_target.
9389 (stop_tracing): New function, split out from...
9390 (trace_stop_command): Call stop_tracing.
9391 (get_trace_status): New function, split out from...
9392 (trace_status_command): Call get_trace_status, add info on
9393 disconnection behavior.
9394 (disconnect_or_stop_tracing): New function.
9395 (finish_tfind_command): Translate from number on target.
9396 (trace_find_tracepoint_command): Translate to number on target.
9397 (send_disconnected_tracing_value): New function.
9398 (set_disconnected_tracing): New function.
9399 (_initialize_tracepoint): Add disconnected-tracing variable.
9400 * NEWS: Mention disconnected tracing.
9401
15d123c9
TG
94022010-01-06 Tristan Gingold <gingold@adacore.com>
9403
9404 * symtab.c (lookup_global_symbol_from_objfile): Rename objfile
9405 parameter to main_objfile. Iterate on all separate debug objfiles.
9406 * symfile.h (symbol_file_add_separate)
9407 (find_separate_debug_file_by_debuglink): Remove parameter names.
9408 * symfile.c (symbol_file_add_separate): Use add_separate_objfile.
9409 (reread_symbols): Use free_objfile_separate_debug.
9410 * objfiles.h (struct objfile): Add separate_debug_objfile_link.
9411 Adjust comment.
9412 (objfile_separate_debug_iterate, add_separate_debug_objfile)
9413 (free_objfile_separate_debug): New prototypes.
9414 * objfiles.c (objfile_separate_debug_iterate): New function.
9415 (add_separate_debug_objfile, free_objfile_separate_debug): New
9416 functions.
9417 (free_objfile): Use free_objfile_separate_debug. Adjust for
9418 multiple separate debug objfile.
9419 (objfile_has_symbols): Adjust comment. Iterate on all separate
9420 debug objfiles.
9421 * minsyms.c (lookup_minimal_symbol): Adjust for multiple separate
9422 debug objfile.
9423 (lookup_minimal_symbol_text): Ditto.
9424 (lookup_minimal_symbol_by_pc_name): Ditto.
9425 (lookup_minimal_symbol_solib_trampoline): Ditto.
9426 (lookup_minimal_symbol_by_pc_section_1): Iterate on all separate
9427 debug objfiles.
9428
7a697b8d
SS
94292010-01-05 Stan Shebs <stan@codesourcery.com>
9430
9431 Add fast tracepoints.
9432 * arch-utils.h (default_fast_tracepoint_valid_at): Declare.
9433 * arch-utils.c (default_fast_tracepoint_valid_at): New function.
9434 * breakpoint.h (enum bptype): Add bp_fast_tracepoint.
9435 * breakpoint.c (tracepoint_type): New function.
9436 (ALL_TRACEPOINTS): Use it.
9437 (should_be_inserted): Ditto.
9438 (bpstat_check_location): Ditto.
9439 (print_one_breakpoint_location): Ditto.
9440 (user_settable_breakpoint): Ditto.
9441 (set_breakpoint_location_function): Ditto.
9442 (disable_breakpoints_in_shlibs): Ditto.
9443 (delete_trace_command): Ditto.
9444 (print_it_typical): Add bp_fast_tracepoint case.
9445 (bpstat_what): Ditto.
9446 (print_one_breakpoint_location): Ditto.
9447 (allocate_bp_location): Ditto.
9448 (mention): Ditto.
9449 (breakpoint_re_set_one): Ditto.
9450 (disable_command): Ditto.
9451 (enable_command): Ditto.
9452 (check_fast_tracepoint_sals): New function.
9453 (break_command_really): Call it.
9454 (ftrace_command): New function.
9455 (_initialize_breakpoint): Add ftrace command.
9456 * gdbarch.sh (fast_tracepoint_valid_at): New.
9457 * gdbarch.h, gdbarch.c: Regenerate.
9458 * i386-tdep.c (i386_fast_tracepoint_valid_at): New function.
9459 (i386_gdbarch_init): Use it.
9460 * remote.c (struct remote_state): New field fast_tracepoints.
9461 (PACKET_FastTracepoints): New packet config type.
9462 (remote_fast_tracepoint_feature): New function.
9463 (remote_protocol_features): Add FastTracepoints.
9464 (remote_supports_fast_tracepoints): New function.
9465 (_initialize_remote): Add FastTracepoints.
9466 * tracepoint.c (download_tracepoint): Add fast tracepoint option.
9467 * NEWS: Mention fast tracepoints.
9468
737a160e
JB
94692010-01-06 Joel Brobecker <brobecker@adacore.com>
9470
9471 * gdb-gdb.py: New file.
9472
ce6cca6d
MS
94732010-01-05 Michael Snyder <msnyder@vmware.com>
9474
9475 * infrun.c (handle_inferior_event): Fix typo in comment.
9476
0d15807d
JK
94772010-01-05 Jan Kratochvil <jan.kratochvil@redhat.com>
9478
9479 * symfile.c (syms_from_objfile): Remove the !MAINLINE conditional.
9480
7803799a
UW
94812010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
9482
c8d5aac9 9483 * features/Makefile (WHICH): Add s390-linux32, s390-linux64,
7803799a
UW
9484 and s390x-linux64.
9485 (s390-linux32-expedite): Define.
9486 (s390-linux64-expedite): Define.
9487 (s390x-linux64-expedite): Define.
9488 * features/s390-acr.xml: New file.
9489 * features/s390-fpr.xml: New file.
9490 * features/s390-core32.xml: New file.
9491 * features/s390-core64.xml: New file.
9492 * features/s390x-core64.xml: New file.
9493 * features/s390-linux32.xml: New file.
9494 * features/s390-linux64.xml: New file.
9495 * features/s390x-linux64.xml: New file.
9496 * features/s390-linux32.c: New generated file.
9497 * features/s390-linux64.c: New generated file.
9498 * features/s390x-linux64.c: New generated file.
9499
9500 * regformats/s390-linux32.dat: New generated file.
9501 * regformats/s390-linux64.dat: New generated file.
9502 * regformats/s390x-linux64.dat: New generated file.
9503 * regformats/reg-s390.dat: Remove.
9504 * regformats/reg-s390x.dat: Remove.
9505
9506 * s390-nat.c: Include "auxv.h" and <elf.h>.
9507 (HWCAP_S390_HIGH_GPRS): Define if undefined.
9508 (s390_target_wordsize): New function.
9509 (s390_auxv_parse): Likewise.
9510 (s390_get_hwcap): Likewise.
9511 (s390_read_description): Likewise.
9512 (_initialize_s390_nat): Install s390_auxv_parse and
9513 s390_read_description.
9514
9515 * s390-tdep.c: Include "features/s390-linux32.c",
9516 "features/s390-linux64.c", and "features/s390x-linux64.c".
9517 (struct gdbarch_tdep): Add gpr_full_regnum, pc_regnum, and cc_regnum.
9518 (s390_register_call_saved): New function.
9519 (s390_register_name): Remove.
9520 (s390_register_type): Remove.
9521 (s390_dwarf_regmap): Add lower half GPR pseudo DWARF CFI regnums.
9522 (s390_dwarf_reg_to_regnum): Remap GPR regnums to full GPRs.
9523 (s390_adjust_frame_regnum): Remap GPR regnums to lower halves for CFI.
9524 (s390_pseudo_register_name): New function.
9525 (s390_pseudo_register_type): New function.
9526 (s390_pseudo_register_read): Handle both 32-bit and 64-bit cases.
9527 Handle full GPR pesudos and varying pseudo register numbers.
9528 (s390_pseudo_register_write): Likewise
9529 (s390x_pseudo_register_read): Remove.
9530 (s390x_pseudo_register_write): Likewise.
9531 (s390_register_group): Remove.
9532 (s390_pseudo_register_group): New function.
9533 (s390_regmap_gregset): Add GPR upper halves.
9534 (s390x_regmap_gregset): Likewise.
9535 (s390_regmap_fpregset): Likewise.
9536 (s390_regmap_upper): New global variable.
9537 (s390_upper_regset): New global variable.
9538 (s390_upper_regset_sections): New global variable.
9539 (s390_regset_from_core_section): Handle GPR upper halves.
9540 (s390_core_read_description): New function.
9541 (s390_prologue_frame_unwind_cache): Set up ABI call-saved/clobbered
9542 register information. Handle varying pseudo register numbers.
9543 (s390_backchain_frame_unwind_cache): Likewise.
9544 (s390_frame_prev_register): Unwind full GPRs to show lower halves.
9545 (s390_stub_frame_unwind_cache): Handle varying pseudo register numbers.
9546 (s390_sigtramp_frame_unwind_cache): Unwind PSWM and PSWA as well as
9547 PC and CC pseudos. Unwind upper halves and full GPRs as appropriate.
9548 Handle varying pseudo register numbers.
9549 (s390_unwind_pc): Handle varying pseudo register numbers.
9550 (s390_dwarf2_prev_register): New function.
9551 (s390_dwarf2_frame_init_reg): Set up ABI call-saved/clobbered
9552 register information. Handle varying pseudo register numbers.
9553 Install s390_dwarf2_prev_register to unwind full GPRs.
9554 (s390_gdbarch_init): Handle target descriptions. Assign varying
9555 pseudo register numbers. Install s390_adjust_frame_regnum.
9556 (_initialize_s390_tdep): Initialize target descriptions.
9557
9558 * s390-tdep.h (S390_R0_UPPER_REGNUM .. S390_R15_UPPER_REGNUM): Define.
9559 (S390_NUM_REGS): Redefine to include upper half registers.
9560 (S390_PC_REGNUM, S390_CC_REGNUM): Remove.
9561 (S390_NUM_PSEUDO_REGS, S390_NUM_TOTAL_REGS): Likewise.
9562 (tdesc_s390_linux32): Add declaration.
9563 (tdesc_s390_linux64): Likewise.
9564 (tdesc_s390x_linux64): Likewise.
9565
1b1818e4
UW
95662010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
9567
9568 * regset.h (struct core_regset_section): Add HUMAN_NAME.
9569 * i386-linux-tdep.c (i386_linux_regset_sections): Fill in HUMAN_NAME.
9570 * ppc-linux-tdep.c (ppc_linux_vsx_regset_sections): Likewise.
9571 (ppc_linux_vmx_regset_sections): Likewise.
9572 (ppc_linux_fp_regset_sections): Likewise.
9573
9574 * corelow.c (get_core_register_section): Constify arguments.
9575 (get_core_registers): Use gdbarch_core_regset_sections instead
9576 of hard-coded platform-specific register section names.
9577
dcbf108f
UW
95782010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
9579
9580 * dwarf2loc.c (read_pieced_value): If a piece occupies part of
b3f41522 9581 a register, assume the least-significant part is used.
dcbf108f
UW
9582 (write_pieced_value): Likewise.
9583
704e9165
UW
95842010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
9585
9586 * printcmd.c: Include "arch-utils.h".
9587 (do_one_display): Re-parse expression if current architecture changed.
9588
c54eabfa
JK
95892010-01-03 Jan Kratochvil <jan.kratochvil@redhat.com>
9590 Joel Brobecker <brobecker@adacore.com>
9591
9592 * gdbtypes.c (check_typedef): New comment on type length.
9593 * value.c (allocate_value_lazy): Remove the unused atype variable. New
9594 comment on type length.
9595 (value_primitive_field): Keep the original TYPE value, new comment.
9596
50cb2941
JK
95972010-01-01 Jan Kratochvil <jan.kratochvil@redhat.com>
9598
9599 * cli/cli-script.c (process_next_line): Rename p1 as p_end and p2 as
9600 p_start. Change != comparisons to > and < comparisons.
9601
be66db07
JK
96022010-01-01 Jan Kratochvil <jan.kratochvil@redhat.com>
9603
9604 * cli/cli-script.c (process_next_line): Check P2 overrun.
9605
abd775ce
JB
96062009-01-01 Joel Brobecker <brobecker@adacore.com>
9607
9608 Update the copyright hearder to add year 2010 for most GDB files.
9609
6479260d
JB
96102009-01-01 Joel Brobecker <brobecker@adacore.com>
9611
9612 Fix build failure in inf-ptrace.c.
9613 * inf-ptrace.c (inf_ptrace_follow_fork): Fix typo.
9614
4a70f654
JB
96152010-01-01 Joel Brobecker <brobecker@adacore.com>
9616
9617 * top.c (print_gdb_version): Update copyright year.
9618
595939de 96192010-01-01, 10 Joel Brobecker <brobecker@adacore.com>
b9ee2233
JB
9620
9621 Fix break *FUN'address thread NUM.
9622 * ada-lex.l (task): Expand rule to also match the thread keyword.
9623
70575d34
JB
96242010-01-01 Joel Brobecker <brobecker@adacore.com>
9625
9626 Fix break *FUN'address task NUM.
9627 * ada-lex.l (task): New rule.
9628 * ada-lang.c (valid_task_id): Make sure the Ada task list has
9629 been built before using it.
9630
e1e4d4a4 9631For older changes see ChangeLog-2009.
c906108c
SS
9632\f
9633Local Variables:
9634mode: change-log
9635left-margin: 8
9636fill-column: 74
9637version-control: never
57da7796 9638coding: utf-8
c906108c 9639End:
This page took 1.564388 seconds and 4 git commands to generate.