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