* dwarf2read.c (dw2_lookup_symtab): Remove duplicate call to
[deliverable/binutils-gdb.git] / gdb / ChangeLog
CommitLineData
aae1c79a
DE
12010-12-07 Doug Evans <dje@google.com>
2
74dd2ca6
DE
3 * dwarf2read.c (dw2_lookup_symtab): Remove duplicate call to
4 gdb_realpath.
5
aae1c79a
DE
6 PR python/12227
7 * NEWS: Mention -data-directory.
8 * main.c (captured_main): Recognize -data-directory.
9
8e0e408a
MK
102010-12-06 Marc Khouzam <marc.khouzam@ericsson.com>
11
12 * mi/mi-parse.c (mi_parse): Missing else.
13
97fc68fe
MM
142010-12-04 Masaki Muranaka <monaka@monami-software.com>
15
16 * configure.tgt: Accept microblaze*-*-linux* for linux target
17 and microblaze*-*-* for as target.
18
d03a3acf
KS
192010-12-02 Keith Seitz <keiths@redhat.com>
20
21 * linespec.c (find_method): Move name canonicalization outside
22 the loop.
23 Be paranoid and use a cleanup.
24
148c11bf
DE
252010-12-01 Doug Evans <dje@google.com>
26
27 * dwarf2read.c (save_gdb_index_command): Add comment.
28
4aac0db7
UW
292010-12-01 Ulrich Weigand <uweigand@de.ibm.com>
30
31 * valops.c (value_assign): Returned value is never lazy. If a
32 C++ class type is returned, fix incorrect enclosing type / embedded
33 offset. If internal variable is returned, allocate new internalvar
34 value using value_of_internalvar.
35
36 * NEWS: Document changes in behavior of "print x = 0" and similar
37 expressions.
38
4e04c971
DE
392010-11-29 Doug Evans <dje@google.com>
40
41 * python/lib/gdb/printing.py (register_pretty_printer): Change
42 printer-name:subprinter-name to printer-name;subprinter-name.
43 * python/lib/gdb/command/pretty_printers.py (parse_printer_regexps):
44 Ditto.
45 (InfoPrettyPrinter, EnablePrettyPrinter, DisablePrettyPrinter): Ditto.
46
8cf6f0b1
TT
472010-11-29 Tom Tromey <tromey@redhat.com>
48
49 * opencl-lang.c (lval_func_check_synthetic_pointer): New
50 function.
51 * value.h (struct lval_funcs) <indirect, check_synthetic_pointer>:
52 New fields.
53 (value_bits_synthetic_pointer): Declare.
54 * value.c (value_bits_synthetic_pointer): New function.
55 * valprint.c (valprint_check_validity): Handle synthetic
56 pointers.
57 * valops.c (value_ind): Use new 'indirect' lval_funcs method.
58 * valarith.c (value_ptradd): Use set_value_component_location.
59 * p-valprint.c (pascal_object_print_value_fields): Handle
60 synthetic pointers.
61 * jv-valprint.c (java_print_value_fields): Handle synthetic
62 pointers.
63 * dwarf2read.c (dwarf_stack_op_name): Add
64 DW_OP_GNU_implicit_pointer.
65 (dwarf2_fetch_die_location_block): Add get_frame_pc, baton
66 arguments. Handle location lists.
67 (fill_in_loclist_baton): New function.
68 (dwarf2_symbol_mark_computed): Use it.
69 * dwarf2loc.h (dwarf2_find_location_expression): Declare.
70 (dwarf2_fetch_die_location_block): Add get_frame_pc, baton
71 arguments.
72 * dwarf2loc.c (dwarf2_find_location_expression): Rename from
73 find_location_expression. No longer static. Update all callers.
74 (dwarf_expr_frame_pc): New function.
75 (per_cu_dwarf_call): Add get_frame_pc, baton arguments. Update
76 all callers.
77 (struct piece_closure) <per_cu>: New field.
78 (allocate_piece_closure): Add per_cu argument.
79 (read_pieced_value): Handle DWARF_VALUE_IMPLICIT_POINTER.
80 (check_pieced_value_bits): Remove validity argument, add check_for
81 argument. Handle DWARF_VALUE_IMPLICIT_POINTER.
82 (check_pieced_value_validity, check_pieced_value_invalid):
83 Update.
84 (check_pieced_synthetic_pointer): New function.
85 (get_frame_address_in_block_wrapper): New function.
86 (indirect_pieced_value): New function.
87 (pieced_value_funcs): Update.
88 (invalid_synthetic_pointer): New function.
89 (dwarf2_evaluate_loc_desc_full): Rename from
90 dwarf2_evaluate_loc_desc. Add byte_offset argument.
91 (dwarf2_evaluate_loc_desc): Rewrite.
92 (dwarf2_loc_desc_needs_frame): Set new field on context.
93 (get_ax_pc): New function.
94 (disassemble_dwarf_expression): Handle
95 DW_OP_GNU_implicit_pointer.
96 * dwarf2expr.h (enum dwarf_value_location)
97 <DWARF_VALUE_IMPLICIT_POINTER>: New constant.
98 (struct dwarf_expr_context) <get_frame_pc>: New field.
99 (struct dwarf_expr_piece) <v.ptr>: New field.
100 * dwarf2expr.c (add_piece): Handle DWARF_VALUE_IMPLICIT_POINTER.
101 (execute_stack_op): Handle DW_OP_GNU_implicit_pointer.
102 * dwarf2-frame.c (no_get_frame_pc): New function.
103 (execute_stack_op): Set new field on context.
104 * cp-valprint.c (cp_print_value_fields): Handle synthetic
105 pointers.
106
94b6973e
PM
1072010-11-29 Phil Muldoon <pmuldoon@redhat.com>
108
109 PR python/12199
110
111 * python/py-breakpoint.c (bppy_delete_breakpoint): New function.
112
8358c15c
JK
1132010-11-28 Jan Kratochvil <jan.kratochvil@redhat.com>
114
115 Fix step_resume_breakpoint unsaved during an infcall.
116 * gdbthread.h (struct thread_control_state): Move here field
117 step_resume_breakpoint ...
118 (struct thread_info): ... from here.
119 * infrun.c (save_infcall_control_state): Reset
120 control.step_resume_breakpoint to NULL.
121 (restore_infcall_control_state, discard_infcall_control_state): Delete
122 control.step_resume_breakpoint.
123 * arm-linux-tdep.c, infrun.c, thread.c: Update all the references to
124 the moved field.
125
16c381f0
JK
1262010-11-28 Jan Kratochvil <jan.kratochvil@redhat.com>
127
128 Rename and move inferior_thread_state and inferior_status.
129 * gdbthread.h (struct thread_control_state): New struct, move fields
130 step_range_start, step_range_end, step_frame_id, step_stack_frame_id,
131 trap_expected, proceed_to_finish, in_infcall, step_over_calls,
132 stop_step and stop_bpstat here from struct thread_info.
133 (struct thread_suspend_state): New struct, move field stop_signal here
134 from struct thread_info.
135 (struct thread_info): Move the fields above from this struct.
136 * inferior.h: Move the inferior_thread_state and inferior_status
137 declarations comment to their definitions at infrun.c.
138 (struct inferior_control_state): New struct, move field stop_soon from
139 struct inferior here.
140 (struct inferior_suspend_state): New empty struct.
141 (struct inferior): New fields control and suspend. Move out field
142 stop_soon.
143 * infrun.c (struct inferior_thread_state): Rename to ...
144 (infcall_suspend_state): ... here. Replace field stop_signal by
145 fields thread_suspend and inferior_suspend.
146 (save_inferior_thread_state): Rename to ...
147 (save_infcall_suspend_state): ... here. New variable inf. Update the
148 code for new fields.
149 (restore_inferior_thread_state): Rename to ...
150 (restore_infcall_suspend_state): ... here. New variable inf. Update
151 the code for new fields.
152 (do_restore_inferior_thread_state_cleanup): Rename to ...
153 (do_restore_infcall_suspend_state_cleanup): ... here.
154 (make_cleanup_restore_inferior_thread_state): Rename to ...
155 (make_cleanup_restore_infcall_suspend_state): ... here.
156 (discard_inferior_thread_state): Rename to ...
157 (discard_infcall_suspend_state): ... here.
158 (get_inferior_thread_state_regcache): Rename to ...
159 (get_infcall_suspend_state_regcache): ... here.
160 (struct inferior_status): Rename to ...
161 (struct infcall_control_state): ... here. Replace fields
162 step_range_start, step_range_end, step_frame_id, step_stack_frame_id,
163 trap_expected, proceed_to_finish, in_infcall, step_over_calls,
164 stop_step, stop_bpstat and stop_soon by fields thread_control and
165 inferior_control.
166 (save_inferior_status): Rename to ...
167 (save_infcall_control_state): ... here. Update the code for new
168 fields.
169 (restore_inferior_status): Rename to ...
170 (restore_infcall_control_state): ... here. Update the code for new
171 fields.
172 (do_restore_inferior_status_cleanup): Rename to ...
173 (do_restore_infcall_control_state_cleanup): ... here.
174 (make_cleanup_restore_inferior_status): Rename to ...
175 (make_cleanup_restore_infcall_control_state): ... here.
176 (discard_inferior_status): Rename to ...
177 (discard_infcall_control_state): ... here.
178 * alpha-tdep.c, breakpoint.c, dummy-frame.c, dummy-frame.h,
179 exceptions.c, fbsd-nat.c, gdbthread.h, infcall.c, infcmd.c,
180 inferior.c, inferior.h, infrun.c, linux-nat.c, mi/mi-interp.c,
181 mips-tdep.c, procfs.c, solib-irix.c, solib-osf.c, solib-spu.c,
182 solib-sunos.c, solib-svr4.c, thread.c, windows-nat.c: Update all the
183 references to the moved fields and renamed functions.
184
35515841
JK
1852010-11-26 Jan Kratochvil <jan.kratochvil@redhat.com>
186
187 * infcall.c (struct inferior_thread_state) <siginfo_gdbarch>: Fix up
188 the comment.
189 (save_inferior_thread_state): Reset tp->stop_signal.
190
fef8420a
JK
1912010-11-26 Jan Kratochvil <jan.kratochvil@redhat.com>
192
7ea14533
JK
193 * infcall.c (call_function_by_hand): Remove variable
194 caller_state_cleanup.
fef8420a 195
f5a8e22b
MK
1962010-11-25 Marc Khouzam <marc.khouzam@ericsson.com>
197
198 PR breakpoints/12217
199
200 * breakpoint.c (is_marker_spec): Check for NULL.
201
50389644
PA
2022010-11-25 Pedro Alves <pedro@codesourcery.com>
203
204 * breakpoint.h: No longer include python.h or python-internal.h.
205 (struct breakpoint_object): Forward declare.
206 * defs.h (PyObject) [!HAVE_PYTHON]: Don't define.
207 * varobj.c (PyObject) [!HAVE_PYTHON]: Define.
208 * python/py-breakpoint.c (build_bp_list): Cast py_bp_object to
209 PyObject pointer.
210 (gdbpy_breakpoint_created): Remove casts around py_bp_object
211 accesses.
212
50a99728
JB
2132010-11-24 Joel Brobecker <brobecker@adacore.com>
214
215 * rs6000-tdep.c (bfd_uses_spe_extensions): Use bfd_elf_get_obj_attr_int
216 only if HAVE_ELF is defined.
217
d82142e2
JK
2182010-11-24 Jan Kratochvil <jan.kratochvil@redhat.com>
219
a418ecb5
JK
220 Code cleanup.
221 * infrun.c (struct inferior_status) <stepping_over_breakpoint>
222 (save_inferior_status) <stepping_over_breakpoint>
223 (restore_inferior_status) <stepping_over_breakpoint>: Rename to
224 trap_expected.
225 (struct inferior_status) <step_resume_break_address>: Remove.
226
2272010-11-24 Jan Kratochvil <jan.kratochvil@redhat.com>
228
229 Code cleanup.
d82142e2
JK
230 * infrun.c (struct inferior_status, save_inferior_status)
231 (restore_inferior_status): Group and reorder the fields, comment their
232 groups.
233
2edb89d3
JK
2342010-11-24 Jan Kratochvil <jan.kratochvil@redhat.com>
235
236 Code cleanup.
237 * dictionary.c
238 (struct dict_vector) <iter_match_first, iter_match_next>
239 (iter_match_first_hashed, iter_match_next_hashed)
240 (iter_match_first_linear, iter_match_next_linear)
241 (dict_iter_match_first, dict_iter_match_next, iter_match_first_hashed)
242 (iter_match_next_hashed, iter_match_first_linear)
243 (iter_match_next_linear): Use symbol_compare_ftype.
244 * dictionary.h: Include symfile.h.
245 (dict_iter_match_first, dict_iter_match_next): Use
246 symbol_compare_ftype.
247 * dwarf2read.c (dw2_map_matching_symbols): Likewise.
248 * psymtab.c (match_partial_symbol, match_partial_symbol, map_block)
249 (map_matching_symbols_psymtab): Likewise.
250 * symfile.h (symbol_compare_ftype): New typedef.
251 (struct quick_symbol_functions) <map_matching_symbols): Use
252 symbol_compare_ftype.
253
5ae98d25
TT
2542010-11-23 Tom Tromey <tromey@redhat.com>
255
39037522
TT
256 * configure: Rebuild.
257 * configure.ac (READLINE_TEXI_INCFLAG): New subst.
258
2592010-11-19 Tom Tromey <tromey@redhat.com>
260
5ae98d25
TT
261 * Makefile.in (SUBDIRS): Add doc.
262 * configure: Rebuild.
263 * configure.ac: Don't configure in doc. Create doc/Makefile.
264
ea976c60
PM
2652010-11-23 Phil Muldoon <pmuldoon@redhat.com>
266
267 PR python/12212
268
269 * python/py-inferior.c (find_thread_object): Check if PIDGET
270 returns 0.
271
272010-11-22 Joel Brobecker <brobecker@adacore.com>
d94e4f4f
JB
273
274 * ada-lang.c (ada_template_to_fixed_record_type_1): Delete bit_incr.
275
96dbd2c1
JB
2762010-11-22 Joel Brobecker <brobecker@adacore.com>
277
278 * ada-lang.c (ada_to_fixed_type): Expand function documentation.
279 Return the original type if the main type portions match rather
280 than when the type themselves match.
281
27f2a97b
JB
2822010-11-22 Joel Brobecker <brobecker@adacore.com>
283
284 * ada-lang.c (ada_template_to_fixed_record_type_1):
285 For dynamic fields, check the field size against the maximum
286 object size.
287
1324a0d9
JB
2882010-11-22 Joel Brobecker <brobecker@adacore.com>
289
290 * mips-irix-tdep.c (mips_irix_n32_stack_tramp_frame_init): New
291 function.
292 (mips_irix_n32_stack_tramp_frame): New static global.
293 (mips_irix_init_abi): Add mips_irix_n32_stack_tramp_frame to
294 list of unwinder.
295
09e7f15b
JB
2962010-11-22 Jerome Guitton <guitton@adacore.com>
297
298 * ada-tasks.c (get_tcb_types_info): Use C lookups to get
299 ATCB symbols.
300
3a867c22
JB
3012010-11-22 Joel Brobecker <brobecker@adacore.com>
302
303 * ada-lang.c (ada_check_typedef): Call ada_check_typedef only
304 if type1 is a typedef.
305
df30368d
JB
3062010-11-22 Joel Brobecker <brobecker@adacore.com>
307
308 * ada-lang.h (ADA_KNOWN_AUXILIARY_FUNCTION_NAME_PATTERNS): Add
309 "_finalizer" to the list.
310
4889bbbc
JB
3112010-11-22 Joel Brobecker <brobecker@adacore.com>
312
313 * symfile.c: Remove all "#if 0"/"#endif" blocks.
314
0d14a781
JB
3152010-11-22 Joel Brobecker <brobecker@adacore.com>
316
317 * symfile.c: Add missing second space after period in various comments.
318
feb864b7
JB
3192010-11-22 Joel Brobecker <brobecker@adacore.com>
320
321 * ada-typeprint.c (print_array_type): Fix formatting in comment.
322 (print_selected_record_field_types): Fix formatting in function
323 documentation.
324
04f9d4d0
JB
3252010-11-22 Joel Brobecker <brobecker@adacore.com>
326
327 * ravenscar-thread.c (_initialize_ravenscar): Fix copy/paste typo
328 in name of "show ravenscar" prefix command name.
329
b64edec4
JB
3302010-11-22 Joel Brobecker <brobecker@adacore.com>
331
332 * ravenscar-thread.c (show_ravenscar_task_switching_command):
333 Add missing '\n' in output.
334
7f39f34a
JB
3352010-11-22 Joel Brobecker <brobecker@adacore.com>
336
337 * ravenscar-thread.c (running_thread_name): Change value.
338 (read_thread_id): Remove advance declaration.
339 (get_running_thread_msymbol): New function.
340 (has_ravenscar_runtime): Use get_running_thread_msymbol to
341 compute msym_running_thread.
342 (get_running_thread_id): Renames read_thread_id. Slight modifications
343 to not take any argument anymore, using get_running_thread_msymbol
344 to determine which symbol to use instead.
345 (ravenscar_running_thread): Use get_running_thread_id instead of
346 read_thread_id.
347
f3890d59
JB
3482010-11-22 Joel Brobecker <brobecker@adacore.com>
349
350 * ravenscar-sparc-thread.c (supply_register_at_address):
351 Fix passing of buf in call to regcache_raw_supply.
352
594e8718
JK
3532010-11-22 Jan Kratochvil <jan.kratochvil@redhat.com>
354
355 * dwarf2read.c (dwarf2_read_index): Ignore higher .gdb_index versions.
356
7ba86c9e
TT
3572010-11-22 Tom Tromey <tromey@redhat.com>
358
359 * Makefile.in (.PRECIOUS): Reference ada-lex.c.
360
1bfda48e
KS
3612010-11-19 Keith Seitz <keiths@redhat.com>
362
363 * data-directory/Makefile.in (SYSCALLS_INSTALL_DIR):
364 Remove extraneous '/' after $(DESTDIR).
365 (PYTHON_INSTALL_DIR): Likewise.
366
3f1eff0a
JK
3672010-11-19 Jan Kratochvil <jan.kratochvil@redhat.com>
368
369 Fix stale memory references.
370 * elfread.c (elf_symfile_read): Replace xmalloc by bfd_alloc, drop
371 xfree, new comment.
372
954d8cae
TT
3732010-11-19 Jan Kratochvil <jan.kratochvil@redhat.com>
374 Tom Tromey <tromey@redhat.com>
375
376 * Makefile.in (.y.c): Directly create $@ from YLWRAP.
377 (.PHONY): Remove for .y outputs.
378
d53d4ac5
TT
3792010-11-19 Will Drewry <wad@google.com>
380 Tavis Ormandy <taviso@google.com>
381 Jan Kratochvil <jan.kratochvil@redhat.com>
382
383 * dwarf2read.c (decode_locdesc): Enforce location description stack
384 boundaries.
385
77bc0675
PM
3862010-11-18 Pierre Muller <muller@ics.u-strasbg.fr>
387
388 * arm-tdep.c (arm_in_function_epilogue_p): Fix code when "MOV SP"
389 instruction is found.
390
ba19bb4d
TT
3912010-11-17 Tom Tromey <tromey@redhat.com>
392
393 * value.c (value_entirely_optimized_out): Check the
394 'check_any_valid' field.
395
19f220c3
JK
3962010-11-16 Jan Kratochvil <jan.kratochvil@redhat.com>
397
398 * ada-lang.c (modify_general_field): Remove.
399 (make_array_descriptor): Replace all modify_general_field calls by
400 modify_field.
401 * value.c (modify_field): Update comment. New variable bytesize.
402 Normalize BITPOS. Initialize BYTESIZE, use it.
403
87df528e
JK
4042010-11-16 Jan Kratochvil <jan.kratochvil@redhat.com>
405
406 * dwarf2read.c (dw2_forget_cached_source_info): Clear the FULL_NAMES
407 elements after xfree.
408
97924a97
TT
4092010-11-16 Tom Tromey <tromey@redhat.com>
410
411 * gdb-add-index.sh: Really remove.
412
9816fde3
JK
4132010-11-16 Jan Kratochvil <jan.kratochvil@redhat.com>
414
415 Code cleanup.
416 * dwarf2read.c (alloc_one_comp_unit): Rename prototype to ...
417 (init_one_comp_unit): ... this one.
418 (prepare_one_comp_unit): New prototype.
419 (dw2_require_line_header, process_psymtab_comp_unit): Use
420 init_one_comp_unit.
421 (process_psymtab_comp_unit): Use prepare_one_comp_unit.
422 (load_partial_comp_unit): Remove variable attr. Use
423 init_one_comp_unit with xmalloc. Use prepare_one_comp_unit.
424 (load_full_comp_unit): Use init_one_comp_unit with xmalloc. Use
425 prepare_one_comp_unit.
426 (read_signatured_type): Remove variable attr. Use init_one_comp_unit.
427 Use prepare_one_comp_unit.
428 (alloc_one_comp_unit): Rename to ...
429 (init_one_comp_unit): ... here and remove there calloc, new parameter
430 cu.
431 (prepare_one_comp_unit): New function.
432
73c964d6
PM
4332010-11-14 Pierre Muller <muller@ics.u-strasbg.fr>
434
435 * arm-tdep.c (arm_in_function_epilogue_p): Fix code to avoid
436 possible used of uninitialized variable.
437
74af9197
NF
4382010-11-12 Nathan Froyd <froydnj@codesourcery.com>
439
440 * rs6000-tdep.c (bfd_uses_spe_extensions): New function.
441 (rs6000_gdbarch_init): Call it.
442
e52d5016
NF
4432010-11-12 Nathan Froyd <froydnj@codesourcery.com>
444
445 * rs6000-tdep.c (gdb_print_insn_powerpc): Disassemble e500
446 instructions if debugging an E500 binary.
447
621c8364
TT
4482010-11-12 Tom Tromey <tromey@redhat.com>
449
450 * varobj.c (value_get_print_value): Rearrange. Pass stream to
451 apply_varobj_pretty_printer.
452 * c-lang.c: Include exceptions.h.
453 (c_get_string): Throw MEMORY_ERROR when appropriate.
454 * python/py-prettyprint.c (enum string_repr_result): New.
455 (print_stack_unless_memory_error): New function.
456 (print_string_repr): Change return type. Use
457 print_stack_unless_memory_error.
458 (print_children): Use print_stack_unless_memory_error.
459 (apply_val_pretty_printer): Update. Don't print children if
460 string representation threw an exception.
461 (apply_varobj_pretty_printer): Add 'stream' argument. Use
462 print_stack_unless_memory_error.
463 * python/python.c (gdbpy_gdb_error, gdbpy_gdb_memory_error): New
464 globals.
465 (_initialize_python): Initialize them.
466 * python/python-internal.h (GDB_PY_HANDLE_EXCEPTION): Use
467 gdbpy_convert_exception.
468 (GDB_PY_SET_HANDLE_EXCEPTION): Likewise.
469 (gdbpy_gdb_error, gdbpy_gdb_memory_error): Declare.
470 (gdbpy_convert_exception): Declare.
471 (apply_varobj_pretty_printer): Update.
472 * python/py-utils.c (gdbpy_convert_exception): New function.
473
f1b9e6e7
MK
4742010-11-12 Marc Khouzam <marc.khouzam@ericsson.com>
475
476 * mi/mi-main.c (mi_cmd_target_detach): Accept new
477 thread-group id format.
478
74884f7b
JK
4792010-11-12 Jan Kratochvil <jan.kratochvil@redhat.com>
480
481 * spu-tdep.c (spu_catch_start): Fix compilation error typo.
482
84f4c1fe
PM
4832010-11-11 Phil Muldoon <pmuldoon@redhat.com>
484
485 * python/py-breakpoint.c (BPPY_REQUIRE_VALID): Check if bp is
486 NULL.
487 (BPPY_SET_REQUIRE_VALID): Ditto.
488 (bpnum_is_valid): Delete function.
489 (bppy_get_visibility): New function.
490 (bppy_new): Parse for, and validate internal keyword. Pass
491 internal keyword to breakpoint or watchpoint functions.
492 (build_bp_list): New function.
493 (gdbpy_breakpoints): Rewrite. Use build_bp_list and
494 iterate_over_breakpoints.
495 (gdbpy_breakpoint_created): Rewrite. Do not store breakpoints in a
496 look-aside vector.
497 (gdbpy_breakpoint_deleted): Rewrite, defer breakpoint management
498 to internal breakpoint chain.
499
500 * breakpoint.c (set_breakpoint_number): New function.
501 (breakpoint_1): Check if breakpoint number is more than zero.
502 (set_raw_breakpoint_without_location): Set py_bp_object to NULL.
503 (create_breakpoint_sal): Take a new parameter called internal.
504 Call set_breakpoint_number with internal parameter. Do not
505 mention internal breakpoints. All callers updated.
506 (create_breakpoint): Ditto.
507 (create_breakpoints_sal): Ditto.
508 (watch_command_1): Ditto.
509 (watch_command_wrapper): Take a new parameter called internal.
510 All callers updated.
511 (rwatch_command_wrapper): Ditto.
512 (awatch_command_wrapper): Ditto.
513 (save_breakpoints): Update breakpoint save condition check.
514 (iterate_over_breakpoints): New function.
515 * breakpoint.h: Add conditional python includes. Add py_bp_object
516 and comment to struct breakpoint. Update all callers.
517 * defs.h: Add PyObject definition for GDB builds without Python.
518
4dfea560
DE
5192010-11-10 Doug Evans <dje@google.com>
520
f61a2da7
DE
521 * python/lib/gdb/command/pretty_printers.py
522 (do_enable_pretty_printer_1): Handle printer.subprinters is None.
523
4dfea560
DE
524 * value.c (set_value_enclosing_type): Renamed from
525 value_change_enclosing_type. All callers updated.
526 * value.h (set_value_enclosing_type): Update.
527 * valops.c (value_full_object): Always return a copy if we need to
528 make changes to the input value.
529
a1442452
PA
5302010-11-09 Pedro Alves <pedro@codesourcery.com>
531
532 * breakpoint.c (watch_command_1): Get a pointer of the lazy
533 version of the expression's value, even if reading the value from
534 memory fails. When creating a -location watchpoint, get the
535 value's address from the lazy value pointer.
536
803b5f95
JK
5372010-11-07 Jan Kratochvil <jan.kratochvil@redhat.com>
538
539 * infrun.c (restore_inferior_thread_state): Use
540 discard_inferior_thread_state to free the data.
541 (discard_inferior_thread_state): xfree also siginfo_data.
542
99e7ae30
DE
5432010-11-05 Doug Evans <dje@google.com>
544
545 Make gdb.parameter("directories") work.
546 New command "set directories".
547 * NEWS: Document them.
548 * source.c (set_directories_command): New function.
549 (show_directories_1): Renamed from show_directories.
550 All callers updated.
551 (show_directories_command): New function.
552 (_initialize_source): Install "directories" as a set/show
553 variable instead of just a show command.
554
f4b8a18d
KW
5552010-11-05 Ken Werner <ken.werner@de.ibm.com>
556
557 * NEWS: Mention OpenCL C language support.
558 * Makefile.in (SFILES): Add opencl-lang.c.
559 (COMMON_OBS): Add opencl-lang.o.
560 * opencl-lang.c: New File
561 * defs.h (enum language): Add language_opencl.
562 * dwarf2read.c (read_file_scope): Handle DW_AT_producer for the
563 IBM XL C OpenCL compiler.
564 * c-lang.h: Include "parser-defs.h".
565 (evaluate_subexp_c): Declare.
566 * c-lang.c (evaluate_subexp_c): Remove the static qualifier.
567 (c_op_print_tab): Add declaration.
568 * eval.c (binop_promote): Handle language_opencl.
569 * c-exp.y: Lookup the primitive types instead of referring to the
570 builtins.
571
075ff26d
JK
5722010-11-05 Jan Kratochvil <jan.kratochvil@redhat.com>
573
574 Fix configure --enable-plugins --without-python.
575 * configure.ac (for ELF support in BFD) <"$plugins" = "yes">: New.
576 * configure: Regenerate.
577
14ad3217
JK
5782010-11-05 Jan Kratochvil <jan.kratochvil@redhat.com>
579
580 * solib.c (solib_read_symbols): Call exception_fprintf even without
581 FROM_TTY. Print also so->so_name.
582
a9d5ef47
SW
5832010-11-04 Sami Wagiaalla <swagiaal@redhat.com>
584
585 * gdbtypes.h (struct rank): Created subrank.
586 * gdbtypes.c: Initialized subrank for all
587 'BADNESS' constants.
588 (distance_to_ancestor): New function.
589 (is_ancestor): Use distance_to_ancestor.
590 (is_public_ancestor): Ditto.
591 (sum_ranks): Handle subrank.
592 (compare_ranks): Ditto.
593 (rank_one_type): Subrank base conversions.
594
6403aeea
SW
5952010-11-04 Sami Wagiaalla <swagiaal@redhat.com>
596
597 * gdbtypes.h: Create struct rank.
598 Convert all 'BADNESS' macros to const struct rank declarations.
599 (sum_ranks): New function.
600 (compare_ranks): New function.
601 * valops.c (find_oload_champ): Updated.
602 (classify_oload_match): Use compare_ranks.
603 Improved comments.
604 (compare_parameters): Use compare_ranks.
605 * gdbtypes.c: Initialize 'BADNESS' constants.
606 (sum_ranks): New function.
607 (compare_ranks): New function.
608 (compare_badness): Use compare_ranks.
609 (rank_function): Use global constants instead of literals.
610 (rank_one_type): Ditto.
611 Return struct rank.
612 Use sum_ranks.
613
23fa7f66
DE
6142010-11-04 Doug Evans <dje@google.com>
615
616 * python/py-prettyprint.c (find_pretty_printer_from_gdb): Fix comment.
617 (find_pretty_printer): Fix comments.
618
608bcef2
HZ
6192010-11-04 Hui Zhu <teawater@gmail.com>
620
621 * tracepoint.c (remote_trace_set_readonly_regions): Change lma to vma.
622
9addb3b9
JB
6232010-11-03 Joel Brobecker <brobecker@adacore.com>
624
625 * ada-valprint.c (ada_val_print_array): Move variables `eltlen'
626 and `len' declaration and computation inside block where they
627 are being used.
628
75be741b
JB
6292010-11-03 Joel Brobecker <brobecker@adacore.com>
630
631 * valprint.c (val_print_array_elements): Put back handling of
632 empty arrays.
633
dbc98a8b
KW
6342010-11-03 Ken Werner <ken.werner@de.ibm.com>
635
636 * dwarf2read.c (read_array_type): Read the DW_AT_byte_size from the
637 DIE and set the length of the type.
638 * gdbtypes.h (get_array_bounds): Move here from valprint.h.
639 * gdbtypes.c (get_array_bounds): Move here from valprint.c and
640 return 0 if the corresponding bounds of the type are undefined.
641 * valprint.h (get_array_bounds): Move declaration to gdbtypes.h.
642 * valprint.c (get_array_bounds): Move implementation to gdbtypes.c.
643 (val_print_array_elements): Use get_array_bounds to compute the number
644 of array elements instead of dividing the length of the array by the
645 length of the element types.
646 * valarith.c (vector_binop): Likewise.
647 * valops.c (value_cast): Likewise.
648 * c-valprint.c (c_val_print): Likewise.
649 * c-typeprint.c (c_type_print_varspec_suffix): Likewise.
650
120bd360
KW
6512010-11-03 Ken Werner <ken.werner@de.ibm.com>
652
653 * valarith.c (value_pos, value_neg, value_complement): Handle
654 vector types.
655 * valops.c (value_one): Likewise.
656
c37f7098
KW
6572010-11-03 Ken Werner <ken.werner@de.ibm.com>
658
659 * value.h (value_non_lval): Declare.
660 * value.c (value_non_lval): New function.
661 * eval.c (evaluate_subexp_standard) <UNOP_POSTINCREMENT,
662 UNOP_POSTDECREMENT>: Call value_non_lval to ensure to return a
663 non-lvalue.
664
7b51bc51
DE
6652010-11-02 Doug Evans <dje@google.com>
666
667 New python module gdb.printing, and new commands info pretty-printer,
668 enable pretty-printer, disable pretty-printer.
669 * NEWS: Mention them.
670 * data-directory/Makefile.in (PYTHON_FILES): Add gdb/printing.py,
671 gdb/command/__init__.py, gdb/command/pretty_printers.py.
672 * python/lib/gdb/__init__.py: Install pretty-printer commands.
673 * python/lib/gdb/printing.py: New file.
674 * python/lib/gdb/command/__init__.py: New file.
675 * python/lib/gdb/command/pretty_printers.py: New file.
676
50c97f38
TT
6772010-11-02 Tom Tromey <tromey@redhat.com>
678
679 * NEWS: Mention Guile removal.
680 * defs.h (enum language) <language_scm>: Remove.
681 * Makefile.in (SFILES): Remove scm-exp.c, scm-lang.c,
682 scm-valprint.c.
683 (HFILES_NO_SRCDIR): Remove scm-lang.h, scm-tags.h.
684 (COMMON_OBS): Remove scm-exp.o, scm-lang.o, scm-valprint.o.
685 * scm-exp.c, scm-lang.c, scm-valprint.c, scm-lang.h, scm-tags.h:
686 Remove.
687
9dea9163
DE
6882010-11-02 Doug Evans <dje@google.com>
689
690 * top.c: #include "python/python.h".
691 (gdb_init): Add a comment regarding initialize_all_files.
692 Call finish_python_initialization at the end.
693 * python/python.h (finish_python_initialization): Declare.
694 * python/python.c (finish_python_initialization): New function.
695 (_initialize_python): Move python-implemented initialization there
696 and call it.
697 (GdbMethods): Use #ifdef HAVE_PYTHON for consistency.
698
a289b8f6
JK
6992010-11-02 Jan Kratochvil <jan.kratochvil@redhat.com>
700
701 Revert:
702 2010-10-17 Jan Kratochvil <jan.kratochvil@redhat.com>
703 Pedro Alves <pedro@codesourcery.com>
704 * gdbthread.h (currently_stepping): New declaration.
705 * infrun.c (currently_stepping): Remove the forward declaration.
706 (currently_stepping): Make it global.
707 * linux-nat.c (resume_callback) <lp->stopped && lp->status == 0>: New
708 variables tp and step, initialized them. Pass STEP to to_resume.
709 Print also possibly "PTRACE_SINGLESTEP" if STEP. Initialize LP->STEP.
710 * remote.c (currently_stepping_callback): New.
711 (remote_vcont_resume)
712 <ptid_equal (ptid, minus_one_ptid) || ptid_is_pid (ptid)>:
713 New variable tp. Call currently_stepping_callback and step such
714 thread.
715
2209c807
HZ
7162010-11-01 Hui Zhu <teawater@gmail.com>
717
718 * tracepoint.c (tfile_xfer_partial): Change lma to vma.
719
0a2a54b8
HZ
7202010-10-28 Hui Zhu <teawater@gmail.com>
721
722 * tracepoint.c (trace_save): Change utp->actions to
723 utp->step_actions.
724
284a3db3
JB
7252010-10-26 Joel Brobecker <brobecker@adacore.com>
726
727 * (_FILE_OFFSET_BITS): Fix typo in comment.
728
aed1781d
JB
7292010-10-26 Joel Brobecker <brobecker@adacore.com>
730
731 * python/python-internal.h (_FILE_OFFSET_BITS): Undefine.
732 (PyEval_InitThreads): Remove duplicate. Define as nothing.
733 (PyEval_ReleaseLock): Define as nothing.
734
1e3fad37
JB
7352010-10-26 Joel Brobecker <brobecker@adacore.com>
736
737 * dwarf2read.c (psymtab_include_file_name): Replace call to strcmp
738 by call to FILENAME_CMP.
739
558b1900
JB
7402010-10-26 Joel Brobecker <brobecker@adacore.com>
741
742 * dictionary.c (dict_hash): Move assignment out of if condition.
743
f474844c
JZ
7442010-10-22 Jie Zhang <jie@codesourcery.com>
745
746 * Makefile.in (install): Remove dependency of install-only and
747 recursively invoke make for install-only.
748 * data-directory/Makefile.in: Add FLAGS_TO_PASS variable.
749 (install): Pass FLAGS_TO_PASS when recursively make install-only.
750
8991e9fa
HZ
7512010-10-20 Hui Zhu <teawater@gmail.com>
752
753 * tracepoint.c (tfile_get_traceframe_address): Call
754 extract_signed_integer.
755 (tfile_trace_find): Call extract_signed_integer and
756 extract_unsigned_integer. Change data_size to unsigned int.
757 (tfile_fetch_registers): Call extract_unsigned_integer.
758 (tfile_xfer_partial): Ditto.
759 (tfile_get_trace_state_variable_value): Call
760 extract_signed_integer and extract_unsigned_integer.
761
21bce120
VP
7622010-10-20 Vladimir Prus <vladimir@codesourcery.com>
763
764 * remote.c (remote_get_threadlist): If we got empty
765 response, bail out immediately, and don't emit any
766 warnings.
767
ad8b5167
UW
7682010-10-19 Ulrich Weigand <uweigand@de.ibm.com>
769
770 * arm-tdep.c (thumb_get_next_pc_raw): Handle Thumb-16 encoding
771 for "mov pc, REG" as well.
772 (thumb_instruction_changes_pc): Likewise.
773
79afc5ef
SW
7742010-10-19 Sami Wagiaalla <swagiaal@redhat.com>
775
776 PR C++/11500:
777 * valarith.c (value_x_unop): Handle STRUCTOP_PTR.
778 * eval.c (evaluate_subexp_standard): Check for overload of
779 'operator->'.
780 * valarith.c (value_x_binop): Throw NOT_FOUND_ERROR.
781 (value_x_unop): Ditto.
782 * valops.c: Include "exceptions.h".
783 (find_overload_match): Throw NOT_FOUND_ERROR.
784 (value_struct_elt): Ditto.
785
cca56ac7
TT
7862010-10-19 Tom Tromey <tromey@redhat.com>
787
788 * python/py-cmd.c (cmdpy_function): Unreference exception state.
789
026ffab7
SW
7902010-10-19 Sami Wagiaalla <swagiaal@redhat.com>
791
792 * gdbtypes.h: Introduce BOOL_PTR_CONVERSION_BADNESS.
793 * gdbtypes.c (rank_one_type): Use BOOL_PTR_CONVERSION_BADNESS
794 for conversion.
795 Make all other conversions illegal.
796
8c540a24
DE
7972010-10-18 Doug Evans <dje@google.com>
798
799 * c-typeprint.c (c_type_print_base, case TYPE_CODE_TYPEDEF): Verify
800 assumptions of when this case happens. Print "<unnamed typedef>".
801
3a772aa4
TT
8022010-10-18 Tom Tromey <tromey@redhat.com>
803
804 * valprint.c (val_print_string): Pass 'encoding' to
805 LA_PRINT_STRING.
806
01f8c46d
JK
8072010-10-17 Jan Kratochvil <jan.kratochvil@redhat.com>
808
809 Fix the `stopped language detection' testcase for gcc-4.5.
810 * dwarf2read.c (read_partial_die): Set also LANGUAGE_OF_MAIN.
811 * symfile.c (set_initial_language): Move variable filename to a more
812 inner block. Prefer LANGUAGE_OF_MAIN.
813 * symtab.c (language_of_main): New variable.
814 (set_main_name): Always reset LANGUAGE_OF_MAIN.
815 * symtab.h (language_of_main): New declaration.
816
8aeb23f3
JK
8172010-10-17 Jan Kratochvil <jan.kratochvil@redhat.com>
818 Pedro Alves <pedro@codesourcery.com>
819
820 * gdbthread.h (currently_stepping): New declaration.
821 * infrun.c (currently_stepping): Remove the forward declaration.
822 (currently_stepping): Make it global.
823 * linux-nat.c (resume_callback) <lp->stopped && lp->status == 0>: New
824 variables tp and step, initialized them. Pass STEP to to_resume.
825 Print also possibly "PTRACE_SINGLESTEP" if STEP. Initialize LP->STEP.
826 * remote.c (currently_stepping_callback): New.
827 (remote_vcont_resume)
828 <ptid_equal (ptid, minus_one_ptid) || ptid_is_pid (ptid)>:
829 New variable tp. Call currently_stepping_callback and step such
830 thread.
831
c1e56572
JK
8322010-10-17 Jan Kratochvil <jan.kratochvil@redhat.com>
833
834 * infrun.c (follow_exec): Replace symbol_file_add_main by
835 symbol_file_add with SYMFILE_DEFER_BP_RESET, set_initial_language and
836 breakpoint_re_set.
837 * m32r-rom.c (m32r_load, m32r_upload_command): Use parameter 0 for
838 clear_symtab_users.
839 * objfiles.c (free_all_objfiles): Likewise.
840 * remote-m32r-sdi.c (m32r_load): Likewise.
841 * solib-som.c (som_solib_create_inferior_hook): Likewise.
842 * symfile.c (new_symfile_objfile): New comment for add_flags. Call
843 clear_symtab_users with ADD_FLAGS.
844 (reread_symbols): Use parameter 0 for clear_symtab_users.
845 (clear_symtab_users): New parameter add_flags. Do not call
846 breakpoint_re_set if SYMFILE_DEFER_BP_RESET.
847 (clear_symtab_users_cleanup): Use parameter 0 for clear_symtab_users.
848 * symtab.h (clear_symtab_users): New parameter add_flags.
849
3a182a69
JK
8502010-10-17 Jan Kratochvil <jan.kratochvil@redhat.com>
851
852 Fix GCC false warning.
853 * varobj.c (value_get_print_value) <str_addr>: Initialize it.
854
3a9d7214
PM
8552010-10-16 Pierre Muller <muller@ics.u-strasbg.fr>
856
857 * p-typeprint.c (pascal_type_print_method_args): Fix problem in
858 display of type of method arguments.
859
09ca9e2e
TT
8602010-10-15 Tom Tromey <tromey@redhat.com>
861
862 PR python/11948:
863 * varobj.c (value_get_print_value): Use val_print_string to print
864 lazy strings.
865 * python/py-prettyprint.c (print_string_repr): Use
866 val_print_string to print lazy strings. Fix cleanup logic.
867 (print_children): Likewise.
868 * python/python-internal.h (gdbpy_extract_lazy_string): Update.
869 * python/py-lazy-string.c (gdbpy_extract_lazy_string): Rewrite.
870 Change return type to 'void', add 'addr' argument.
871 * value.h (val_print_string): Update.
872 * valprint.c (val_print_string): Add 'encoding' argument.
873 * printcmd.c (print_formatted): Update.
874 * p-valprint.c (pascal_val_print): Update.
875 * m2-valprint.c (print_unpacked_pointer): Update.
876 (m2_print_array_contents): Likewise.
877 * jv-valprint.c (java_value_print): Update.
878 * f-valprint.c (f_val_print): Update.
879 * c-valprint.c (c_val_print): Update.
880 * auxv.c (fprint_target_auxv): Update.
881
92163a10
JK
8822010-10-15 Doug Evans <dje@google.com>
883 Jan Kratochvil <jan.kratochvil@redhat.com>
884
885 PR exp/12117
886 * gdbtypes.c (check_typedef): Clean up function comment.
887 Keep track of instance flags as we strip typedefs and create a new
888 type to preserve them if necessary.
889 * gdbtypes.h (type) <instance_flags>: Extend the comment.
890
dae71413
PM
8912010-10-15 Pierre Muller <muller@ics.u-strasbg.fr>
892
893 * p-lang.c (is_pascal_string_type): Use TYPE_FIELD_NAME accessor.
894
7062b0a0
SW
8952010-10-14 Sami Wagiaalla <swagiaal@redhat.com>
896
897 * gdbtypes.h: Create BASE_PTR_CONVERSION_BADNESS.
898 * gdbtypes.c (rank_one_type): Move type comparison code out of here
899 to...
900 (types_equal): ...here. And changed it as follows:
901 Outside of typedefs type must be of the same TYPE_CODE.
902 When compairing two pointers or references they are equal if their
903 targets are equal.
904 Correct pointer conversions.
905
5c3da5ea
PM
9062010-10-14 Pierre Muller <muller@ics.u-strasbg.fr>
907
908 * p-lang.c (is_pascal_string_type): Avoid crashes on structures
909 having fields without names.
910
577ce03a
TT
9112010-10-13 Tom Tromey <tromey@redhat.com>
912
913 * language.h (LA_PRINT_ARRAY_INDEX): Fix argument name.
914
a737a51b
DE
9152010-10-13 Doug Evans <dje@google.com>
916
0e3509db
DE
917 New python module gdb.types.
918 * NEWS: Document it.
919 * data-directory/Makefile.in (PYTHON_FILES): Add gdb/types.py.
920 * python/lib/gdb/types.py: New file.
921
a737a51b
DE
922 * c-typeprint.c: Whitespace cleanup.
923 (cp_type_print_method_args): Remove unnecessary forward decl.
924 (cp_type_print_derivation_info): Ditto.
925 (c_type_print_varspec_prefix): Mark as static at definition.
926 (c_type_print_modifier): Fix arg descriptions.
927
8dc78533
JK
9282010-10-13 Jan Kratochvil <jan.kratochvil@redhat.com>
929
930 * python/py-breakpoint.c (bppy_set_condition): New comment.
931 * python/py-cmd.c (cmdpy_function): Call also gdbpy_print_stack for
932 failed PyUnicode_Decode.
933 (cmdpy_completer): Skip element for failed
934 python_string_to_host_string.
935 (cmdpy_init): Return -1 on failed python_string_to_host_string.
936 * python/py-frame.c (frapy_read_var): Extend the function comment.
937 * python/py-function.c (fnpy_init): Return -1 on failed
938 python_string_to_host_string.
939 * python/py-inferior.c (infpy_read_memory, infpy_write_memory): Extend
940 the function comment.
941 (infpy_search_memory): Extend the function comment. Remove the
942 PyErr_SetString call on already set error state.
943 * python/py-param.c (set_parameter_value): Extend the function
944 comment. Return -1 on failed python_string_to_host_string, twice.
945 (set_attr): Extend the function comment.
946 (compute_enum_values): Extend the function comment. New variable
947 back_to. Protect self->enumeration by BACK_TO cleanups. Return 0 on
948 failed python_string_to_host_string.
949 (get_doc_string): Call gdbpy_print_stack on failed
950 python_string_to_host_string.
951 (parmpy_init): Extend the function comment.
952 * python/py-prettyprint.c (pretty_print_one_value): Likewise.
953 (gdbpy_get_display_hint, print_children): Call gdbpy_print_stack on
954 failed python_string_to_host_string.
955 * python/py-value.c (valpy_new, valpy_getitem, valpy_call)
956 (valpy_binop, valpy_richcompare): Extend the function comment.
957 * python/python.c
958 (struct python_env) <error_type, error_value, error_traceback>: New
959 fields.
960 (restore_python_env): Handle PyErr_Occurred. Call PyErr_Restore.
961 (ensure_python_env): Call PyErr_Fetch.
962 * varobj.c (update_dynamic_varobj_children): Call gdbpy_print_stack on
963 failed convert_value_from_python.
964 (value_get_print_value): Call gdbpy_print_stack on failed
965 python_string_to_target_python_string.
966
1bdb0c54
TT
9672010-10-12 Tom Tromey <tromey@redhat.com>
968
969 * python/py-prettyprint.c (search_pp_list): Fix error checking.
970
0526b37a
SW
9712010-10-12 Sami Wagiaalla <swagiaal@redhat.com>
972
973 * gdbtypes.c (do_is_ancestor): New function.
974 (is_ancestor): Use do_is_ancestor.
975 (is_public_ancestor): Use do_is_ancestor.
976
c1b5be38
PM
9772010-10-12 Pierre Muller <muller@ics.u-strasbg.fr>
978
979 * ser-go32.c (struct dos_ops): Add missing fdopen field.
980
68770265
MGD
9812010-10-12 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
982
983 * arm-tdep.c (arm_mode_strings): Add NULL entry at end of array.
984
64b00020
DE
9852010-10-11 Doug Evans <dje@google.com>
986
987 * c-typeprint.c (c_type_print_modifier): Add note that this prints
988 the address space id too.
989
43b8e241
JK
9902010-10-11 Jan Kratochvil <jan.kratochvil@redhat.com>
991
992 Fix attaching to re-prelinked executables on ppc64.
993 * solib-svr4.c (svr4_exec_displacement): New variable plt2_asect,
994 initialize it, try to adjust FILESZ field by it.
995
417b5110
DJ
9962010-10-08 Daniel Jacobowitz <dan@codesourcery.com>
997
998 * tracepoint.c (merge_uploaded_trace_state_variables): Only print
999 messages if info_verbose.
1000
3bdf2bbd
KW
10012010-10-08 Ken Werner <ken.werner@de.ibm.com>
1002
1003 * valops.c (value_cast): Handle vector types.
1004 * valarith.c (value_binop): Widen scalar to vector if appropriate.
1005
ec3d575a
UW
10062010-10-08 Ulrich Weigand <uweigand@de.ibm.com>
1007
1008 * arm-tdep.c (thumb_expand_immediate): New function.
1009 (thumb_instruction_changes_pc): Likewise.
1010 (thumb2_instruction_changes_pc): Likewise.
1011 (thumb_analyze_prologue): Handle 32-bit Thumb instructions during
1012 prologue parsing. Improved support for optimized code.
1013 (thumb_scan_prologue): Do not reply on line-number information,
1014 use same heuristics as arm_scan_prologue insead.
1015 (skip_prologue_function): Accept functions
1016 "__tls_get_addr" and "__aeabi_read_tp".
1017
4024ca99
UW
10182010-10-08 Ulrich Weigand <uweigand@de.ibm.com>
1019 Daniel Jacobowitz <dan@codesourcery.com>
1020
1021 * arm-tdep.c (thumb_in_function_epilogue_p)
1022 (arm_in_function_epilogue_p): New.
1023 (arm_gdbarch_init): Install arm_in_function_epilogue_p as
1024 gdbarch_in_function_epilogue_p callback.
1025
855c153f
DE
10262010-10-07 Doug Evans <dje@google.com>
1027
00e14314
DE
1028 * cc-with-index.sh (output_file): Default to a.out.
1029
3876f04e
DE
1030 * dwarf2read.c (mapped_index): Rename member index_table to
1031 symbol_table and index_table_slots to symbol_table_slots.
1032 All uses updated.
1033 (create_symbol_hash_table): Renamed from create_index_table.
1034 All callers updated.
1035 (add_indices_to_cpool): Rename arg index_table to symbol_hash_table.
1036 (write_hash_table): Rename local index_table to symbol_hash_table.
1037
855c153f
DE
1038 * addrmap.h (addrmap_foreach_fn): New typedef.
1039 (addrmap_foreach): Declare.
1040 * addrmap.c (struct addrmap_funcs): New member foreach.
1041 (addrmap_foreach): New function.
1042 (addrmap_fixed_foreach): New function.
1043 (addrmap_fixed_funcs): Update.
1044 (struct mutable_foreach_data): New struct.
1045 (addrmap_mutable_foreach_worker): New function.
1046 (addrmap_mutable_foreach): New function.
1047 (addrmap_mutable_funcs): Update.
1048
1d2a4540
PH
10492010-10-07 Paul Hilfinger <hilfinger@adacore.com>
1050
1051 * dictionary.c (dict_hash): Revert to msymbol_hash_iw in
1052 more cases.
1053
40658b94
PH
10542010-10-07 Paul Hilfinger <hilfinger@adacore.com>
1055
1056 * ada-lang.c (full_match): Declare.
1057 (ada_match_name): Rename to match_name (we should avoid prefixing static
1058 symbols with "ada_").
1059 (match_name): New name for ada_match_name.
1060 (struct ada_psym_data): Remove and replace with...
1061 (struct match_data): User data for map_matching_symbols.
1062 (ada_add_psyms): Remove.
1063 (aux_add_nonlocal_symbols): New function, used as callback for
1064 map_matching_symbols.
1065 (compare_names): Ordering function adopted from strcmp_iw for Ada-encoded
1066 symbols.
1067 (ada_add_non_local_symbols): Rename to add_nonlocal_symbols.
1068 (add_nonlocal_symbols): Renamed from ada_add_non_local_symbols.
1069 Rework to use map_matching_symbols instead of map_ada_symtabs.
1070 (ada_lookup_symbol_list): Use add_nonlocal_symbols.
1071 * psymtab.c: Include dependency on dictionary.h.
1072 (match_partial_symbol): New function.
1073 (ada_lookup_partial_symbol): Remove.
1074 (map_block): New function, auxiliary to map_matching_symbols_psymtab.
1075 (map_matching_symbols_psymtab): New function.
1076 (psym_functions): Replace map_ada_symtabs with map_matching_symbols_psymtab.
1077 * symfile.h: Replace map_ada_symtabs definition with map_matching_symbols.
1078
c4d840bd
PH
10792010-10-06 Paul Hilfinger <hilfinger@adacore.com>
1080
1081 * ada-lang.c (ada_match_name): Use new API for wild_match.
40658b94
PH
1082 (wild_match): Change API to be consistent with that of strcmp_iw;
1083 return 0 for a match, and switch operand order.
1084 (full_match): New function.
1085 (ada_add_block_symbols): Use dict_iter_match_{first,next} for
1086 matching to allow use of hashing.
1087 * dictionary.c (struct dict_vector): Generalize iter_name_first,
1088 iter_name_next ot iter_match_first, iter_match_next.
1089 (iter_name_first_hashed): Replace with iter_match_first_hashed.
1090 (iter_name_next_hashed): Replace with iter_match_next_hashed.
1091 (iter_name_first_linear): Replace with iter_match_first_linear.
1092 (iter_name_next_linear): Replace with iter_match_next_linear.
1093 (dict_iter_name_first): Re-implement to use dict_iter_match_first.
1094 (dict_iter_name_next): Re-implement to use dict_iter_match_next.
1095 (dict_iter_match_first): New function.
1096 (dict_iter_match_next): New function.
1097 (dict_hash): New function.
1098 * dictionary.h (dict_iter_match_first, dict_iter_match_next): Declare.
1099 * psymtab.c (ada_lookup_partial_symbol): Use new wild_match API.
c4d840bd 1100
543ecec7
DE
11012010-10-06 Doug Evans <dje@google.com>
1102
1103 * data-directory/Makefile.in: Remove @host_makefile_frag@, @frags@.
1104
2f608a3a
KW
11052010-10-06 Ken Werner <ken.werner@de.ibm.com>
1106
1107 * dwarf2read.c (read_tag_const_type): Handle const arrays.
1108
aa2e2d8d
DE
11092010-10-06 Doug Evans <dje@google.com>
1110
9c9606fb
DE
1111 * Makefile.in (REQUIRED_SUBDIRS): New var.
1112 (subdir_do): Verify required subdir Makefiles exist.
1113
aa2e2d8d
DE
1114 Create subdir data-directory.
1115 * Makefile.in (XML_SYSCALL_DIR, XML_SYSCALL_FILES): Moved to
1116 data-directory/Makefile.in.
1117 (SUBDIRS): Add data-directory.
1118 (all): Remove xml-syscall-copy dependency.
1119 (xml-syscall-copy): Moved to data-directory/Makefile.in as
1120 stamp-syscalls.
1121 (xml-syscall-install): Moved to data-directory/Makefile.in as
1122 install-syscalls.
1123 (install-only): Remove xml-syscall-install dependency.
1124 (all-data-directory): New rule.
1125 (data-directory/Makefile): New rule.
1126 * configure.ac (AC_OUTPUT): Add data-directory/Makefile.
1127 * configure: Regenerate.
1128 * data-directory/Makefile.in: New file.
1129 * python/lib/gdb/__init__.py: New file.
1130
aa27d0b3
JB
11312010-10-06 Joel Brobecker <brobecker@adacore.com>
1132
1133 Fix ARI warnings in advance_wild_match.
1134 * ada-lang.c (advance_wild_match): Delete local variable t2.
1135 Adjust code accordingly. Minor reformatting.
1136
2844d6b5
KW
11372010-10-06 Ken Werner <ken.werner@de.ibm.com>
1138
1139 * gdbtypes.h (struct main_type): Remove flag_nottext.
1140 (enum type_flag_value): Remove TYPE_FLAG_NOTTEXT.
1141 (enum type_instance_flag_value): Add TYPE_INSTANCE_FLAG_NOTTEXT.
1142 (TYPE_NOTTEXT): Use TYPE_INSTANCE_FLAG_NOTTEXT instead of flag_nottext.
1143 * gdbtypes.c (make_vector_type): Use TYPE_INSTANCE_FLAG_NOTTEXT instead
1144 of TYPE_FLAG_NOTTEXT.
1145 (init_type): Remove the initialization of the flag_nottext field.
1146 (gdbtypes_post_init): Use TYPE_INSTANCE_FLAG_NOTTEXT instead of
1147 TYPE_FLAG_NOTTEXT.
1148 * c-valprint.c (c_val_print): Remove TYPE_VECTOR check.
1149
2fdf6df6
DE
11502010-10-04 Doug Evans <dje@google.com>
1151
ea65fe05
DE
1152 * cc-with-index.sh: New file.
1153
2fdf6df6
DE
1154 * dwarf2read.c (dw2_do_instantiate_symtab): Insert blank line after
1155 function comment.
1156 (dw2_instantiate_symtab, dw2_get_cu, extract_cu_value): Ditto.
1157 (create_cus_from_index, create_addrmap_from_index): Ditto.
1158 (mapped_index_string_hash, find_slot_in_mapped_hash): Ditto.
1159 (dw2_setup, dw2_require_line_header, dw2_require_full_path): Ditto.
1160 (dw2_do_expand_symtabs_matching): Ditto.
b89be57b
DE
1161 (eq_strtab_entry, create_strtab, add_string): Ditto.
1162 (hash_strtab_entry): Ditto.
1163 (hash_symtab_entry, eq_symtab_entry, delete_symtab_entry): Ditto.
1164 (create_index_table, create_mapped_symtab, find_slot): Ditto.
1165 (hash_expand, add_index_entry, add_indices_to_cpool): Ditto.
1166 (write_hash_table, add_address_entry, write_psymbols): Ditto.
1167 (write_obstack, unlink_if_set, write_one_signatured_type): Ditto.
1168 (write_psymtabs_to_index): Ditto.
2fdf6df6 1169
40bc484c
JB
11702010-10-04 Joel Brobecker <brobecker@adacore.com>
1171
1172 * ada-lang.c: #include "value.h".
1173 (ensure_lval): Delete advance declaration. Remove gdbarch and sp
1174 arguments. Implement using value_allocate_space_in_inferior
1175 instead of allocating memory from the stack.
1176 (make_array_descriptor): Remove gdbarch and sp parameters. Update
1177 calls to ensure_lval.
1178 (ada_convert_actual): Remove gdbarch and sp parameters. Update
1179 calls to make_array_descriptor and ensure_lval.
1180 * ada-lang.h (ada_convert_actual): Update declaration.
1181 * infcall.c (value_arg_coerce): Update call to ada_convert_actual.
1182
f17618ea
DE
11832010-10-04 Doug Evans <dje@google.com>
1184
1185 * python/python.c (_initialize_python): Define new function
1186 GdbSetPythonDirectory in python. Use it to update sys.path and
1187 gdb.__path__.
1188
83e3a93c
PH
11892010-10-03 Paul Hilfinger <hilfinger@adacore.com>
1190
1191 * gdb/ada-typeprint.c (print_selected_record_field_types): New function,
1192 incorporating and generalizing print_record_field_types.
1193 (print_record_field_types): Change return value and update comment.
1194 Re-implement using print_selected_record_field_types.
1195 (print_choices): Print "=>" here.
1196 Handle case of unencoded variant branch.
1197 (print_variant_clauses): Reformat comment.
1198 Special-case unencoded variant branch.
1199
12002010-10-03 Paul Hilfinger <hilfinger@adacore.com>
73589123
PH
1201
1202 * ada-lang.c (wild_match): Reimplement.
1203 Change API to eliminate unused length argument, reverse arguments and
1204 make 0 the 'true' return value.
1205 (advance_wild_match): New auxiliary function for wild_match to improve
1206 readability.
1207 (ada_match_name, ada_add_block_symbols): Use new API for wild_match.
1208 * psymtab.c (ada_lookup_partial_symbol, map_ada_symtabs): Use new
1209 API for wild_match.
1210 * symfile.h (map_ada_symtabs): Modify declaration to use new API for
1211 wild_match.
1212 * dwarf2read.c (dw2_map_ada_symtabs): Ditto.
1213
11570e71
DE
12142010-10-01 Doug Evans <dje@google.com>
1215
1216 * dwarf2read.c (_initialize_dwarf2_read): Add usage info to help text
1217 for `save gdb-index' command.
1218
72b9f47f
TT
12192010-10-01 Tom Tromey <tromey@redhat.com>
1220
1221 * symfile.h (allocate_symtab): Update.
1222 * symfile.c (allocate_symtab): Make 'filename' const.
1223 * psymtab.c (add_psymbol_to_bcache): Make 'name' const.
1224 (add_psymbol_to_list): Likewise.
1225 * psympriv.h (struct partial_symtab) <filename, dirname>: Now
1226 const.
1227 (add_psymbol_to_list): Update.
1228 * mdebugread.c (new_symtab): Make 'name' const.
1229 (psymtab_to_symtab_1): Make 'filename' const.
1230 * elfread.c (elfstab_offset_sections): Update.
1231 * dwarf2read.c (dwarf_decode_lines): Make 'comp_dir' const.
1232 (dwarf2_start_subfile): Make 'dirname' and 'comp_dir' const.
1233 (psymtab_include_file_name): Update.
1234 * dbxread.c (find_stab_function_addr): Make 'filename' const.
1235 * buildsym.h (start_subfile): Update.
1236 * buildsym.c (start_subfile): Make arguments const.
1237
55e39473
MS
12382010-09-30 Ali Lakhia <lakhia@alumni.utexas.net>
1239
1240 * fork-child.c (breakup_args): Fix crash if shell forking is
1241 disabled at compile time.
1242
05e522ef
JB
12432010-10-01 Joel Brobecker <brobecker@adacore.com>
1244
1245 * ada-lang.c (desc_bounds): Add handling of the case where
1246 the P_BOUNDS field is a pointer to a stub.
1247 (desc_data_target_type): Same for P_ARRAY field.
1248 (ada_check_typedef): Strip the typedef layers from the type
1249 found by ada_find_any_type.
1250
49a45ecf
JB
12512010-10-01 Joel Brobecker <brobecker@adacore.com>
1252
1253 * sparc-tdep.c (sparc32_frame_align): New function.
1254 (sparc32_gdbarch_init): Set the frame_align gdbarch method.
1255 * sparc64-tdep.c (sparc64_frame_align): New function.
1256 (sparc64_gdbarch_init): Set the frame_align gdbarch method.
1257
a5916a62
L
12582010-09-30 H.J. Lu <hongjiu.lu@intel.com>
1259
1260 * defs.h (MAX_REGISTER_SIZE): Set to 64.
1261
00b5771c
TT
12622010-09-30 Tom Tromey <tromey@redhat.com>
1263
1264 * symfile.h (struct sym_fns) <next>: Remove.
1265 (add_symtab_fns): Update.
1266 * symfile.c (sym_fns_ptr): New typedef.
1267 (symtab_fns): Now a VEC.
1268 (add_symtab_fns): Update. Change argument type.
1269 (find_sym_fns): Update. Change return type.
1270 (get_symfile_segment_data): Update.
1271 * objfiles.h (struct objfile) <sf>: Now const.
1272 * somread.c (som_sym_fns): Now const. Update.
1273 * xcoffread.c (xcoff_sym_fns): Now const. Update.
1274 * mipsread.c (ecoff_sym_fns): Now const. Update.
1275 * machoread.c (macho_sym_fns): Now const. Update.
1276 * elfread.c (elf_sym_fns): Now const. Update.
1277 (elf_sym_fns_gdb_index): Likewise.
1278 * dbxread.c (aout_sym_fns): Now const. Update.
1279 * coffread.c (coff_sym_fns): Now const. Update.
1280
38f12cfc
TT
12812010-09-30 Tom Tromey <tromey@redhat.com>
1282
1283 * value.c (value_primitive_field): Take 'offset' into account for
1284 packed field.
1285
9ae8282d
TT
12862010-09-30 Tom Tromey <tromey@redhat.com>
1287
1288 * completer.c (count_struct_fields): Handle anonymous structs and
1289 unions.
1290 (add_struct_fields): Likewise.
1291
e9e07ba6
JK
12922010-09-30 Jan Kratochvil <jan.kratochvil@redhat.com>
1293
1294 Fix printing parameters of inlined functions.
1295 * ada-lang.c (is_known_support_routine)
1296 (ada_unhandled_exception_name_addr_from_raise): Provide NULL parameter
1297 for find_frame_funname.
1298 * python/py-frame.c (frapy_name): Likewise.
1299 * stack.c (find_frame_funname): New parameter funcp. Update the
1300 function comment. Fill it in.
1301 (print_frame): New variable func. Initialize it by
1302 find_frame_funname. Print arguments only if FUNC is not NULL. Use
1303 FUNC as the parameter of print_args_stub.
1304 * stack.h (find_frame_funname): New parameter funcp. Remove the
1305 function declaration comment.
1306
cd2effb2
JK
13072010-09-30 Jan Kratochvil <jan.kratochvil@redhat.com>
1308
1309 PR corefiles/12071.
1310 * inferior.c (have_live_inferiors): New variables old_chain, inf and
1311 tp. Iterate INFERIOR_LIST and call target_has_execution.
1312
bceffbf3
JK
13132010-09-29 Jan Kratochvil <jan.kratochvil@redhat.com>
1314
1315 Fix GDB crash on inferior calls with self-referencing classes.
1316 * gnu-v3-abi.c (gnuv3_pass_by_reference): Do not call itself on static
1317 member fields.
1318
abc72ce4
DE
13192010-09-29 Doug Evans <dje@google.com>
1320
1321 Workaround for gcc/45682.
1322 * dwarf2read.c (partial_die_info): New fields fixup_called,
1323 linkage_name.
1324 (guess_partial_die_structure_name): Renamed from guess_structure_name.
1325 Move definition next to use. Use linkage_name to determine if class
1326 is in a namespace. All callers updated.
1327 (fixup_partial_die): Return early if already called.
1328 Set fixup_called when done.
1329 (guess_full_die_structure_name): New function.
1330 (determine_prefix): Call it for class/struct/union dies if c++ and
1331 .debug_types section is present and parent is DW_TAG_compile_unit.
1332
0ac7be25
JB
13332010-09-28 Joel Brobecker <brobecker@adacore.com>
1334
1335 * configure.tgt (sparc-*-*): Set gdb_sim to ../sim/erc32/libsim.a.
1336 (sparc-*-rtems*): Delete. Now redundant with sparc-*-*.
1337
6e1bb179
JB
13382010-09-28 Joel Brobecker <brobecker@adacore.com>
1339
1340 * NEWS: Announce Ravenscar Profile support.
1341
036b1ba8
JB
13422010-09-28 Joel Brobecker <brobecker@adacore.com>
1343 Jerome Guitton <guitton@adacore.com>
1344
1345 * ravenscar-thread.c, ravenscar-thread.h, ravenscar-sparc-thread.c:
1346 New files.
1347 * configure.tgt (sparc-*-*): Add ravenscar-thread.o and
1348 ravenscar-sparc-thread.o to gdb_target_obs.
1349
474011fb
JB
13502010-09-28 Joel Brobecker <brobecker@adacore.com>
1351
1352 * ada-tasks.c (iterate_over_live_ada_tasks): New function.
1353 * ada-lang.h (iterate_over_live_ada_tasks): Declare.
1354
99e24b90
PM
13552010-09-27 Pierre Muller <muller@ics.u-strasbg.fr>
1356
1357 * amd64-windows-tdep.c (amd64_skip_main_prologue): New function.
1358 (amd64_windows_init_abi): Register amd64_skip_main_prologue as gdbarch
1359 skip_main_prologue method.
1360
987d643c
TT
13612010-09-27 Tom Tromey <tromey@redhat.com>
1362
1363 * dwarf2read.c (dwarf2_read_index): Only allow version 3.
1364 (write_psymbols): Add 'psyms_seen' and 'is_static' arguments.
1365 Only emit a given psymbol once.
1366 (struct signatured_type_index_data) <psyms_seen>: New field.
1367 (write_one_signatured_type): Update.
1368 (cleanup_htab): New function.
1369 (write_psymtabs_to_index): Update. Create psyms_seen hash. Bump
1370 version to 3.
1371 (save_gdb_index_command): Update index documentation.
1372
d3aff959
TT
13732010-09-27 Tom Tromey <tromey@redhat.com>
1374
1375 * bcache.c (expand_hash_table): Use hash_function, not hash.
1376
716b65bf
TT
13772010-09-27 Tom Tromey <tromey@redhat.com>
1378
1379 * gdb_wchar.h: Change minimum libiconv to 0x108.
1380
1736ad11
JK
13812010-09-24 Jan Kratochvil <jan.kratochvil@redhat.com>
1382
1383 Fix lost siginfo_t for inferior calls.
1384 * infrun.c
1385 (struct inferior_thread_state) <siginfo_gdbarch, siginfo_data>: New.
1386 (save_inferior_thread_state): New variables regcache, gdbarch and
1387 siginfo_data. Initialize SIGINFO_DATA if gdbarch_get_siginfo_type_p.
1388 Move INF_STATE allocation later, pre-clear it. Initialize REGISTERS
1389 using REGCACHE.
1390 (restore_inferior_thread_state): New variables regcache and gdbarch.
1391 Restore SIGINFO_DATA for matching GDBARCH. Restore REGISTERS using
1392 REGCACHE. Free also SIGINFO_DATA.
1393
4b5246aa
TT
13942010-09-24 Tom Tromey <tromey@redhat.com>
1395
1396 * dwarf2read.c (dw2_expand_symtabs_matching): Add missing
1397 MAYBE_SWAPs.
1398 (dw2_map_symbol_names): Likewise.
1399
2a7d6a25
SW
14002010-09-24 Sami Wagiaalla <swagiaal@redhat.com>
1401
1402 * valops.c (find_oload_champ_namespace_loop): replace incorrect
1403 discard_cleanups do_cleanups.
1404
b53a1623
PA
14052010-09-24 Pedro Alves <pedro@codesourcery.com>
1406
e6ee044d
PA
1407 PR gdb/11842
1408
b53a1623
PA
1409 * amd64-linux-nat.c (compat_siginfo_from_siginfo)
1410 (siginfo_from_compat_siginfo): Also copy si_pid and si_uid when
1411 si_code is < 0. Check for si_code == SI_TIMER before checking for
1412 si_code < 0.
1413
96a8853a
PA
14142010-09-24 Pedro Alves <pedro@codesourcery.com>
1415
1416 * objfiles.h (ALL_OBJSECTIONS): Handle breaks in the inner loop.
1417
39383a48
JB
14182010-09-22 Joel Brobecker <brobecker@adacore.com>
1419
1420 * ada-tasks.c (read_atcb): Do not compute the task ptid when
1421 debugging a core file.
1422
d31d2fc3
JK
14232010-09-22 Jan Kratochvil <jan.kratochvil@redhat.com>
1424
1425 Code cleanup.
1426 * objfiles.c (allocate_objfile) <objfile->name != NULL>: Remove.
1427 (free_objfile) <objfile->name != NULL>: Remove the conditional around
1428 xfree.
1429 * objfiles.h (struct objfile) <name>: New comment it is never NULL.
1430 * python/py-auto-load.c (auto_load_new_objfile) <!objfile->name>:
1431 Remove.
1432 * python/py-objfile.c (objfpy_get_filename) <obj->objfile->name>
1433 Remove the conditional.
1434 * python/py-progspace.c (pspy_get_filename) <objfile->name>: Likewise.
1435
7f6130ff
JK
14362010-09-22 Jan Kratochvil <jan.kratochvil@redhat.com>
1437
1438 * main.c: Include objfiles.h.
1439 (captured_main): New variable objfile. Call
1440 load_auto_scripts_for_objfile for ALL_OBJFILES.
1441
c2b0a229
JK
14422010-09-22 Jan Kratochvil <jan.kratochvil@redhat.com>
1443
1444 * dwarf2read.c (die_needs_namespace) <DW_TAG_variable>: Add also
1445 DW_TAG_constant.
1446
72929c62
JB
14472010-09-22 Joel Brobecker <brobecker@adacore.com>
1448
1449 * dwarf2read.c (scan_partial_symbols): Add handling of
1450 DW_TAG_constant DIEs.
1451 (add_partial_symbol, load_partial_dies, new_symbol): Likewise.
1452
496c0e1b
JB
14532010-09-22 Joel Brobecker <brobecker@adacore.com>
1454
1455 * configure.ac: Add support for --enable-gdbserver.
1456 * configure: Regenerate.
1457
ec322823
SW
14582010-09-22 Sami Wagiaalla <swagiaal@redhat.com>
1459
1460 PR C++/12028
1461 * valops.c (find_oload_champ_namespace_loop): removed incorrect
1462 'old_cleanups' reassignment.
1463
1558ab4c
JK
14642010-09-16 Jan Kratochvil <jan.kratochvil@redhat.com>
1465
1466 * charset.c (wchar_iterate) <EILSEQ>: Return any possibly converted
1467 characters.
1468
875b4ff5
PM
14692010-09-16 Phil Muldoon <pmuldoon@redhat.com>
1470
1471 PR mi/11407
1472 * mi/mi-cmd-stack.c (list_args_or_locals): Catch exceptions from
1473 read_var_value and common_val_print and print a warning.
1474
65dedcb2
JK
14752010-09-15 Jan Kratochvil <jan.kratochvil@redhat.com>
1476
1477 * MAINTAINERS (GLOBAL MAINTAINERS) <Jan Kratochvil>: Move the entry to
1478 keep the list in alphabetical order. Use longer e-mail address.
1479
0e780a22
TT
14802010-09-15 Tom Tromey <tromey@redhat.com>
1481
1482 * MAINTAINERS (GLOBAL MAINTAINERS): Add Jan Kratochvil.
1483
62234ccc
TT
14842010-09-15 Tom Tromey <tromey@redhat.com>
1485
1486 * charset.c (iconv_open): New define.
1487 (iconv): Likewise.
1488 (iconv_close): Likewise.
1489 (phony_iconv_open): Add "phony_" prefix.
1490 (phony_iconv_close): Likewise.
1491 (phony_iconv): Likewise.
1492 * gdb_wchar.h: Check _LIBICONV_VERSION, __STDC_ISO_10646__.
1493 Change how INTERMEDIATE_ENCODING is defined.
1494
4950bc1c
DE
14952010-09-15 Doug Evans <dje@google.com>
1496
1497 * dwarf2read.c (struct die_info): Fix comment.
1498
349126ea
AM
14992010-09-15 Alan Modra <amodra@gmail.com>
1500
1501 PR 4606
1502 * gcore.c (gcore_create_callback): Clear SEC_HAS_CONTENTS rather
1503 than setting SEC_NEVER_LOAD on sections that need not be copied.
1504
923c6a3d
TT
15052010-09-14 Tom Tromey <tromey@redhat.com>
1506
1507 * psympriv.h (add_psymbol_to_list, init_psymbol_list)
1508 (start_psymtab_common, allocate_psymtab, discard_psymtab):
1509 Declare.
1510 * symfile.h (extend_psymbol_list): Remove.
1511 (add_psymbol_to_list, init_psymbol_list, start_psymtab_common)
1512 (allocate_psymtab, discard_psymtab): Move to psympriv.h.
1513 * psymtab.c (extend_psymbol_list): Move earlier. Now static.
1514
a9e6a4bb
JK
15152010-09-14 Jan Kratochvil <jan.kratochvil@redhat.com>
1516
1517 * dwarf2read.c (dw2_map_ada_symtabs): Remove the internal_error.
1518 Update the comment.
1519
7155d578
TT
15202010-09-14 Tom Tromey <tromey@redhat.com>
1521
1522 PR symtab/8399:
1523 * dwarf2loc.c (locexpr_describe_location_piece): Don't call error
1524 for unrecognized frame base expression.
1525
515ed532
TT
15262010-09-14 Tom Tromey <tromey@redhat.com>
1527
1528 PR exp/11803:
1529 * value.c (value_static_field): Use value_of_variable.
1530
b467f580
PM
15312010-09-14 Pierre Muller <muller@ics.u-strasbg.fr>
1532
1533 * m32r-rom.c: Replace winsock.h with winsock2.h header.
1534 * remote-m32r-sdi.c: Replace winsock.h by winsock2.h.
1535
450ca57c
SW
15362010-09-13 Sami Wagiaalla <swagiaal@redhat.com>
1537
1538 PR symtab/11992:
1539 * c-exp.y (classify_name): Check is_a_member_of_this before returning
1540 UNKNOWN_CPP_NAME.
1541
1aee7009
JB
15422010-09-13 Joel Brobecker <brobecker@adacore.com>
1543
1544 * NEWS: Add x86-lynxos to the list of platforms supported by
1545 gdbserver.
1546
5ec6ebf9
JB
15472010-09-13 Joel Brobecker <brobecker@adacore.com>
1548
1549 * NEWS: Announce GDBserver support for version 5.x of ppc-lynxos.
1550
1863c96c
TT
15512010-09-13 Tom Tromey <tromey@redhat.com>
1552
1553 * Makefile.in (HFILES_NO_SRCDIR): Add progspace.h.
1554
0c5acf93
L
15552010-09-13 H.J. Lu <hongjiu.lu@intel.com>
1556
1557 * i386-tdep.c (i386_ymm_type): Set type name to
1558 builtin_type_vec256i.
1559
1c6272a6
MS
15602010-09-12 Michael Snyder <msnyder@vmware.com>
1561
1562 * i386-tdep.c (i386_gdbarch_init): Fix typo in comments.
1563
e866c497
L
15642010-09-12 H.J. Lu <hongjiu.lu@intel.com>
1565
1566 * i386-tdep.c (i386_gdbarch_init): Fix typo in comments.
1567
9191d390
L
15682010-09-11 H.J. Lu <hongjiu.lu@intel.com>
1569
1570 * amd64-tdep.c (amd64_register_name): Removed.
1571 (amd64_init_abi): Don't call set_gdbarch_register_name.
1572
1573 * i386-tdep.c (i386_ymmh_regnum_p): Make it static.
1574
1575 * i386-tdep.h (i386_ymmh_regnum_p): Removed.
1576
8d4d924b
JK
15772010-09-11 Jan Kratochvil <jan.kratochvil@redhat.com>
1578 Paul Bolle <pebolle@tiscali.nl>
1579
1580 Redirect also uiout and stdtarg{,err} in execute_command_to_string.
1581 * cli-logging.c (struct saved_output_files) <targerr>: New.
1582 (set_logging_redirect, pop_output_files, handle_redirections):
1583 Redirect also gdb_stdtargerr.
1584 * defs.h (struct ui_out, make_cleanup_ui_out_redirect_pop): New
1585 declarations.
1586 * event-top.c (gdb_setup_readline, gdb_disable_readline): Redirect
1587 also gdb_stdtargerr.
1588 * top.c (execute_command_to_string): Move make_cleanup_ui_file_delete
1589 to the top. Redirect also gdb_stdlog, gdb_stdtarg and gdb_stdtargerr.
1590 Use ui_out_redirect, register make_cleanup_ui_out_redirect_pop.
1591 * tui/tui-io.c (tui_setup_io): Redirect also gdb_stdtargerr.
1592 * utils.c (do_ui_out_redirect_pop, make_cleanup_ui_out_redirect_pop):
1593 New functions.
1594
3329c4b5
PM
15952010-09-10 Pierre Muller <muller@ics.u-strasbg.fr>
1596
1597 * hppa-tdep.c (unwind_command): Use host_address_to_string function
1598 to display a host address.
1599 * monitor.c (monitor_read_memory): Likewise.
1600 * xtensa-tdep.c (xtensa_push_dummy_call): Likewise.
1601
5e8db398
PM
16022010-09-10 Pierre Muller <muller@ics.u-strasbg.fr>
1603
1604 * coffread.c (struct coff_symbol): Change c_value type from `long' to
1605 `CORE_ADDRESS' as it might contain target addresses.
1606
37049e31
PM
16072010-09-10 Pierre Muller <muller@ics.u-strasbg.fr>
1608
1609 * alpha-mdebug-tdep.c (find_proc_desc): Use SYMBOL_VALUE_BYTES macro
1610 before cast to pointer to avoid warning.
1611
351a3e56
KB
16122010-09-09 Kevin Buettner <kevinb@redhat.com>
1613
1614 * v850-tdep.c (v850_gdbarch_init): Change the v850's `char'
1615 type to be signed.
349126ea 1616
6afafb54
UW
16172010-09-09 Ulrich Weigand <uweigand@de.ibm.com>
1618
1619 * dwarf2read.c (fixup_partial_die): Do not set dummy name for
1620 anonymous class partial DIEs.
1621
60430eff
DJ
16222010-09-08 Daniel Jacobowitz <dan@codesourcery.com>
1623
1624 * dwarf2read.c (dwarf2_compute_name): Check that the first
1625 argument is a pointer.
1626
f1078f66
DJ
16272010-09-08 Daniel Jacobowitz <dan@codesourcery.com>
1628
1629 * dwarf2read.c (read_func_scope, read_structure_type)
1630 (read_common_block): Check for a NULL return from new_symbol.
1631
82430852
JK
16322010-09-08 Jan Kratochvil <jan.kratochvil@redhat.com>
1633
1634 * dwarf2read.c (dwarf2_read_index): Return on no SEC_HAS_CONTENTS.
1635
c767944b
DJ
16362010-09-08 Daniel Jacobowitz <dan@codesourcery.com>
1637
1638 * dwarf2read.c (read_structure_type): Move processing of
1639 fields and member functions from here...
1640 (process_structure_scope): ... to here.
1641
561d3825
DJ
16422010-09-08 Daniel Jacobowitz <dan@codesourcery.com>
1643
1644 * gnu-v3-abi.c (gnuv3_print_method_ptr): Do not use
1645 the domain type.
1646 (gnuv3_make_method_ptr): Likewise.
1647
9bd89d67
TT
16482010-09-08 Tom Tromey <tromey@redhat.com>
1649
1650 * breakpoint.c (create_breakpoint): Add missing _().
1651
1d040b0d
DE
16522010-09-08 Doug Evans <dje@google.com>
1653
1654 * dwarf2-frame.h (dwarf2_frame_build_info): Delete, unused.
1655
774b6a14
TT
16562010-09-08 Tom Tromey <tromey@redhat.com>
1657
1658 Revert:
1659 2010-09-01 Tom Tromey <tromey@redhat.com>
1660 * dwarf2read.c, gdbtypes.c, psymtab.c, symfile.h, symtab.c,
1661 symtab.h: Revert earlier change.
1662
fc956729
SW
16632010-09-09 Sami Wagiaalla <swagiaal@redhat.com>
1664
1665 * psymtab.c (add_psymbol_to_bcache): Initialize
1666 obj_section.
1667 memset psymbol.ginfo.value to 0.
1668
48f9886d
PA
16692010-09-06 Pedro Alves <pedro@codesourcery.com>
1670
1671 * infrun.c (resume): Extend comment on ignoring single-step
1672 requests on vfork parents waiting for a vfork-done.
1673
423ec54c
JK
16742010-09-06 Jan Kratochvil <jan.kratochvil@redhat.com>
1675 Pedro Alves <pedro@codesourcery.com>
1676
1677 * corelow.c (core_open): Use target_signal_from_host if CORE_GDBARCH
1678 is NULL.
1679 * fork-child.c (startup_inferior) <resume_signal>: Use enum
1680 target_signal type.
1681 * linux-nat.c (linux_nat_resume): Use target_signal_to_host before
1682 calling strsignal. Use enum target_signal type for saved_signo.
1683 (linux_handle_extended_wait) <signo>: Use enum target_signal type.
1684 (linux_nat_wait_1): Use enum target_signal type for signo. Use
1685 target_signal_to_host before calling strsignal.
1686 * remote-m32r-sdi.c (m32r_wait, m32r_detach): Replace 0 by
1687 TARGET_SIGNAL_0.
1688
a6eb9bc8
JK
16892010-09-06 Pedro Alves <pedro@codesourcery.com>
1690 Jan Kratochvil <jan.kratochvil@redhat.com>
1691
1692 * common/signals.c (ANY): Remove.
1693 (SET): No longer use ANY.
1694
74609e71
YQ
16952010-09-06 Yao Qi <yao@codesourcery.com>
1696
1697 * infrunc(resume): When inferior is waiting_for_vfork_done,
1698 clear step and don't use displaced stepping.
1699
8464be76
DJ
17002010-09-04 Daniel Jacobowitz <dan@codesourcery.com>
1701
1702 * breakpoint.c (can_use_hardware_watchpoint): Handle the first
1703 value specially.
1704
33d62d64
JK
17052010-09-04 Jan Kratochvil <jan.kratochvil@redhat.com>
1706
1707 Code cleanup - split print_stop_reason.
1708 * infrun.c (enum inferior_stop_reason): Remove.
1709 (print_stop_reason): Remove by splitting into ...
1710 (print_exited_reason, print_signal_exited_reason)
1711 (print_no_history_reason, print_signal_received_reason)
1712 (print_end_stepping_range_reason): ... these new functions. Update
1713 the preceding comment.
1714 (handle_inferior_event): Change the calls to print_exited_reason,
1715 print_signal_exited_reason, print_no_history_reason,
1716 print_signal_received_reason, print_end_stepping_range_reason.
1717 (handle_step_into_function, handle_step_into_function_backward):
1718 Change the calls to print_end_stepping_range_reason.
1719
14dba4b4
JK
17202010-09-03 Jan Kratochvil <jan.kratochvil@redhat.com>
1721
1722 * breakpoint.c (save_breakpoints): Use RETURN_MASK_ALL.
1723 * cli-out.c: Include vec.h.
1724 (cli_field_fmt, cli_spaces, cli_text, cli_message, cli_flush): New
1725 variable stream, initialize it, use it.
1726 (cli_redirect): New function comment. Replace the stream and
1727 original_stream fields by the new streams field. Remove the
1728 original_stream != NULL conditional, assert error on NULL instead.
1729 (out_field_fmt, field_separator): New variable stream, initialize it, use it.
1730 (cli_out_data_ctor): Assert non-NULL stream. Replace the stream and
1731 original_stream fields by the new streams field.
1732 (cli_out_set_stream): Replace the stream field by the new streams
1733 field.
1734 * cli-out.h: Include vec.h.
1735 (ui_filep): New typedef, call DEF_VEC_P for it.
1736 (struct cli_ui_out_data): Replace the stream and original_stream
1737 fields by the new streams field.
1738 * cli/cli-logging.c (set_logging_redirect): Call ui_out_redirect with
1739 NULL first. Extend the comment.
1740 (handle_redirections): Call ui_out_redirect with output.
1741 * python/py-breakpoint.c (bppy_get_commands): Move ui_out_redirect
1742 calls outside of the TRY_CATCH block.
1743
b04bc5d4 17442010-09-03 Joel Brobecker <brobecker@adacore.com>
1745
1746 GDB 7.2 released.
1747
080db4e0
JB
17482010-09-02 Joel Brobecker <brobecker@adacore.com>
1749
1750 Back out the following change:
1751 | 2010-06-29 Hui Zhu <teawater@gmail.com>
1752 | * record.c (set_record_pic_cmdlist,
1753 | show_record_pic_cmdlist): New variables.
1754 | (set_record_pic_command,
1755 | show_record_pic_command): New functions.
1756 | (record_pic_function, record_pic_line, record_pic_enum,
1757 | set_record_pic_type, record_pic_hide_nofunction,
1758 | record_pic_hide_nosource, record_pic_hide_same): New variables.
1759 | (record_pic_fputs): New function.
1760 | (function_list, node_list, edge_list): New struct.
1761 | (function_list, node_list, edge_list): New variables.
1762 | (record_pic_cleanups, record_pic_node,
1763 | record_pic_edge, cmd_record_pic): New functions.
1764 | (_initialize_record): Add new commands for record pic.
1765
0a4f61e3
DJ
17662010-09-02 Daniel Jacobowitz <dan@codesourcery.com>
1767
1768 * config.in, configure: Regenerated.
1769 * configure.ac: Check for waitpid.
1770 * ser-pipe.c (pipe_close): Wait for the program to exit.
1771
58b61394
JK
17722010-09-02 Jan Kratochvil <jan.kratochvil@redhat.com>
1773
ba720883 1774 * cli/cli-logging.c: Include gdb_assert.h.
58b61394
JK
1775 (set_logging_overwrite): New function.
1776 (logging_redirect): New comment.
1777 (logging_no_redirect_file, set_logging_redirect)
1778 (pop_output_files) <logging_no_redirect_file>: New.
1779 (handle_redirections) <!logging_redirect>: New variable
1780 no_redirect_file. Remove file autoclose for tee_file_new. No longer
1781 discard cleanup for the close of former OUTPUT. Set
1782 LOGGING_NO_REDIRECT_FILE.
1783 (handle_redirections) <logging_redirect>: gdb_assert
1784 LOGGING_NO_REDIRECT_FILE.
1785 (show_logging_command) <logging_redirect handling>: Adjust messages
1786 for SAVED_FILENAME not NULL.
1787 (_initialize_cli_logging): Install set_logging_overwrite and
1788 set_logging_redirect.
1789
706774f2
JK
17902010-09-02 Jan Kratochvil <jan.kratochvil@redhat.com>
1791
1792 * iq2000-tdep.c (iq2000_scan_prologue): Initialize SAL.END.
1793
9a35ccf7
JK
17942010-09-02 Jan Kratochvil <jan.kratochvil@redhat.com>
1795
1796 * Makefile.in (GDB_WARN_CFLAGS_NO_FORMAT): Convert it to the no- form.
1797 (monitor.o): Replace $(INTERNAL_WARN_CFLAGS) by $(INTERNAL_CFLAGS) and
1798 add $(GDB_WARN_CFLAGS_NO_FORMAT).
1799 (printcmd.o): Replace $(INTERNAL_CFLAGS_BASE) by $(INTERNAL_CFLAGS).
1800
ba9b2ec3
YQ
18012010-09-02 Yao Qi <yao@codesourcery.com>
1802
1803 * linux-nat.c (status_to_str): Use WTERMSIG to extract the signal
1804 number from a WIFSIGNALED status.
1805
faf68db7
TT
18062010-09-01 Tom Tromey <tromey@redhat.com>
1807
1808 * symtab.h (lookup_type_symbol): Declare.
1809 * symtab.c (lookup_symbol_in_language_full): Rename from
1810 lookup_symbol_in_language. Add 'for_type' argument.
1811 (lookup_symbol_in_language): New function.
1812 (lookup_type_symbol): Likewise.
1813 (lookup_symbol_aux): Add 'for_type' argument.
1814 (match_symbol_aux): New function.
1815 (lookup_symbol_aux_symtabs): Use expand_one_symtab_matching.
1816 (match_transparent_type): New function.
1817 (basic_lookup_transparent_type): Use expand_one_symtab_matching.
1818 * symfile.h (struct quick_symbol_functions)
1819 <pre_expand_symtabs_matching>: Remove.
1820 <expand_one_symtab_matching>: New field.
1821 * psymtab.c (expand_one_symtab_matching_psymtabs): New function.
1822 (pre_expand_symtabs_matching_psymtabs): Remove.
1823 (psym_functions): Update.
1824 * gdbtypes.c (lookup_typename): Use lookup_type_symbol.
1825 * dwarf2read.c (dw2_lookup_symbol): Update comment.
1826 (dw2_pre_expand_symtabs_matching): Remove.
1827 (dw2_expand_one_symtab_matching): New function.
1828 (dwarf2_gdb_index_functions): Update.
1829
248c9dbc
JB
18302010-09-01 Joel Brobecker <brobecker@adacore.com>
1831
1832 * NEWS: Add entry announcing GDBserver support on powerpc-lynxos.
1833
f75d858b
MK
18342010-09-01 Marc Khouzam <marc.khouzam@ericsson.com>
1835
1836 * mi/mi-main.c (mi_cmd_list_target_features): Add `reverse'
1837 as a feature reported by -list-target-features.
1838
0482b03b
JB
18392010-09-01 Joel Brobecker <brobecker@adacore.com>
1840
1841 * features/Makefile (WHICH): Add rs6000/powerpc-32.
1842 (powerpc-32.o, powerpc-32.c): New rules.
1843 (clean): Also remove powerpc-32.c.
1844 * regformats/rs6000/powerpc-32.dat: Generate.
1845
710e1a31
SW
18462010-08-31 Sami Wagiaalla <swagiaal@redhat.com>
1847
1848 * symfile.c (reread_symbols): Use psymbol_bcache_free, and
1849 psymbol_bcache_init.
1850 * psymtab.h (psymbol_bcache_init): New function prototype.
1851 (psymbol_bcache_free): New function prototype.
1852 (psymbol_bcache_get_bcache): New function prototype.
1853 * psymtab.c (psymbol_bcache_init): New function.
1854 (psymbol_bcache_free): New function.
1855 (psymbol_bcache_full): New function.
1856 (psymbol_bcache_get_bcache): New function.
1857 (add_psymbol_to_bcache): use psymbol_bcache_full.
1858 * objfiles.h (psymbol_cache): Change type of psymbol_cache to
1859 psymbol_bcache.
1860 * symmisc.c (print_symbol_bcache_statistics): Updated.
1861 (print_objfile_statistics): Updated.
1862 * objfiles.c (allocate_objfile): Use psymbol_bcache_init to initialize
1863 psymbol_cache.
1864 (free_objfile): Use psymbol_bcache_free.
1865
64382290
TT
18662010-08-31 Tom Tromey <tromey@redhat.com>
1867
1868 PR c++/11961:
1869 * dwarf2read.c (new_symbol_full) <DW_TAG_template_type_param>:
1870 Don't set TYPE_NAME on the type.
1871
8bbed405
MS
18722010-08-31 Michael Snyder <msnyder@msnyder-server.eng.vmware.com>
1873
1874 * infrun.c (set_exec_direction_func): Error out if target does not
1875 support reverse execution.
1876
06253dd3
JK
18772010-08-31 Jan Kratochvil <jan.kratochvil@redhat.com>
1878
1879 Make linux_get_siginfo_type `type *' unique.
1880 * linux-tdep.c (linux_gdbarch_data_handle, struct linux_gdbarch_data)
1881 (init_linux_gdbarch_data, get_linux_gdbarch_data): New.
1882 (linux_get_siginfo_type): New variable linux_gdbarch_data. Initialize
1883 it. Use linux_gdbarch_data->siginfo_type as a persistent storage.
1884 (_initialize_linux_tdep): New.
1885
b8edc417
JK
18862010-08-31 Jan Kratochvil <jan.kratochvil@redhat.com>
1887
1888 Code cleanup.
1889 * defs.h (find_memory_region_ftype): New typedef.
1890 (exec_set_find_memory_regions): Use it.
1891 * exec.c (exec_set_find_memory_regions): Use find_memory_region_ftype.
1892 * fbsd-nat.c (fbsd_find_memory_regions): Likewise.
1893 * gcore.c (objfile_find_memory_regions): Likewise.
1894 * gnu-nat.c (gnu_find_memory_regions): Likewise.
1895 * linux-nat.c (linux_nat_find_memory_regions): Likewise.
1896 * procfs.c (iterate_over_mappings_cb_ftype): Remove.
1897 (iterate_over_mappings): Rename iterate_over_mappings_cb_ftype to
1898 find_memory_region_ftype.
1899 (insert_dbx_link_bpt_in_region): Likewise.
1900 (iterate_over_mappings): Likewise. Drop the comment part about the
1901 function prototype.
1902 (find_memory_regions_callback): Use find_memory_region_ftype.
1903 (proc_find_memory_regions): Likewise.
1904 (info_mappings_callback): Rename iterate_over_mappings_cb_ftype to
1905 find_memory_region_ftype.
1906 * target.c (dummy_find_memory_regions): Use find_memory_region_ftype.
1907 * target.h (struct target_ops) <to_find_memory_regions>: Likewise.
1908
cbd70537
SW
19092010-08-31 Sami Wagiaalla <swagiaal@redhat.com>
1910
1911 * psymtab.c (add_psymbol_to_bcache): Remove 'static' from
1912 'static partial_symbol psymbol'.
1913 (psymbol_hash): New function.
1914 (psymbol_compare): New function.
1915 * bcache.c (hash_continue): New.
1916 (hash): Use hash_continue.
1917 * bcache.c: Add hash_function and compare_function
1918 pointers to bcache struct.
1919 (bcache_full): Use bcache->hash_function, and
1920 bcache->compare_function.
1921 (bcache_compare): New function.
1922 (bcache_xmalloc): Take hash_function and
1923 compare_function arguments and initialize the
1924 bcach's pointers.
1925 Updated comment.
1926 * objfiles.c (allocate_objfile): Updated.
1927 * symfile.c (reread_symbols): Updated.
1928 * python/py-type.c (typy_richcompare): Updated.
1929
03f17ccf
TT
19302010-08-30 Andre Poenitz <andre.poenitz@nokia.com>
1931 Tom Tromey <tromey@redhat.com>
1932
1933 PR python/11792:
1934 * python/py-value.c (valpy_get_dynamic_type): New function.
1935 (value_object_getset): Add "dynamic_type".
1936 (valpy_get_type): Fail on error.
1937
25b41d01
YQ
19382010-08-30 Yao Qi <yao@codesourcery.com>
1939
1940 * arm-linux-tdep.c (arm_linux_sigreturn_return_addr): New.
1941 (arm_linux_syscall_next_pc): New.
1942 (arm_linux_copy_svc): Use arm_linux_sigreturn_return_addr instead.
1943 (arm_linux_init_abi): Initialize syscall_next_pc.
1944 * arm-tdep.c (thumb_get_next_pc_raw): Get next pc of SWI in Thumb mode.
1945 (arm_get_next_pc_raw): Get next pc of SWI in ARM mode.
1946 * arm-tdep.h (struct gdbarch_tdep): Add a function pointer syscall_next_pc.
1947 Declare arm_frame_is_thumb.
1948
5760d0ab
JK
19492010-08-30 Jan Kratochvil <jan.kratochvil@redhat.com>
1950
1951 Code cleanup.
1952 * breakpoint.c (bpstat_alloc): Remove unused prototype.
1953 (bpstat_alloc): Change parameters cbs to bs_link_pointer. Adjust the
1954 code.
1955 (bpstat_stop_status): Change root_bs into bs_head and bs_link. Adjust
1956 calls of bpstat_alloc. Remove explicit bs chain termination.
1957
46a96992
JK
19582010-08-28 Jan Kratochvil <jan.kratochvil@redhat.com>
1959
1960 Code cleanup.
1961 * linux-nat.c (pull_pid_from_list): Rename status to statusp.
1962 (my_waitpid): Likewise.
1963
36374493
DE
19642010-08-27 Doug Evans <dje@google.com>
1965
1966 * dwarf2read.c (dw2_require_line_header): Read from .debug_types
1967 as appropriate.
1968
8b93c54c
TT
19692010-08-27 Tom Tromey <tromey@redhat.com>
1970
1971 * dwarf2read.c (dwarf2_attach_fields_to_type): Don't set
1972 TYPE_FIELD_IGNORE_BITS.
1973
16be1145
DE
19742010-08-27 Doug Evans <dje@google.com>
1975
1976 * dwarf2read.c (dwarf2_per_objfile_free): Reorganize buffers to match
1977 the order they're defined in. munmap .debug_types buffer.
1978
e254ef6a
DE
19792010-08-26 Doug Evans <dje@google.com>
1980
1981 * dwarf2read.c (dw2_require_full_path): Rename parameter cu to per_cu.
1982 (dw2_forget_cached_source_info): Rename local cu to per_cu.
1983 (dw2_lookup_symtab, dw2_do_expand_symtabs_matching): Ditto.
1984 (dw2_print_stats, dw2_expand_all_symtabs): Ditto.
1985 (dw2_expand_symtabs_with_filename, dw2_find_symbol_file): Ditto.
1986 (dw2_find_symbol_file, dw2_expand_symtabs_matching): Ditto.
1987 (dw2_map_symbol_filenames, dwarf2_initialize_objfile): Ditto.
1988 (dwarf2_free_objfile, write_one_signatured_type): Ditto.
1989 (write_psymtabs_to_index): Ditto.
1990
ae53ffa4
PA
19912010-08-26 Pedro Alves <pedro@codesourcery.com>
1992
1993 * NEWS: Mention libthread_db debugging with core files.
1994
c6da4cef
DE
19952010-08-26 Doug Evans <dje@google.com>
1996
1997 * dwarf2read.c (dwarf2_build_include_psymtabs): Remove unnecessary
1998 forward decl. Pass pst->dirname to dwarf_decode_lines.
1999 (psymtab_include_file_name): New function.
2000 (dwarf_decode_lines): Call it. Update comments.
2001
cd02d79d
PA
20022010-08-25 Pedro Alves <pedro@codesourcery.com>
2003
2004 * dwarf2read.c (inherit_abstract_dies): Handle origin die's
2005 compilation unit being different from target die's.
2006
673bfd45
DE
20072010-08-24 Doug Evans <dje@google.com>
2008
2009 PR symtab/11942
2010 * dwarf2read.c (dwarf2_per_objfile): New members debug_info_type_hash,
2011 debug_types_type_hash.
2012 (dwarf2_cu, dwarf2_per_cu_data): Delete member type_hash.
2013 All uses updated.
2014 (lookup_die_type): Renamed from tag_type_to_tag. First look in
2015 appropriate type_hash table. All callers updated.
2016 (allocate_signatured_type_table): Renamed from
2017 allocate_signatured_type_hash_table. All callers updated.
2018 (create_signatured_type_table_from_index): Renamed from
2019 create_signatured_type_hash_from_index. All callers updated.
2020 (read_die_type): Add comment. Move actual reading to ...
2021 (read_die_type_1): ... here. New function.
2022 (follow_die_ref_or_sig): Tweak comment.
2023 (set_die_type): Rewrite to use appropriate choice of
2024 debug_info_type_hash or debug_types_type_hash.
2025 (get_die_type_at_offset): New function.
2026 (get_die_type): Call it.
2027
e8fd65ef
JK
20282010-08-24 Jan Kratochvil <jan.kratochvil@redhat.com>
2029
2030 * python/py-type.c (typy_richcompare): Initialize worklist.
2031
9779414d
DJ
20322010-08-24 Daniel Jacobowitz <dan@codesourcery.com>
2033 Kazu Hirata <kazu@codesourcery.com>
2034 Jonathan Larmour <jifl@eCosCentric.com>
2035
2036 * arm-tdep.c: Include features/arm-with-m.c.
2037 (arm_psr_thumb_bit): New. Update all uses of CPSR_T to
2038 call this function.
2039 (arm_pc_is_thumb): Add a gdbarch argument. Update all callers.
2040 Check is_m after force-mode.
2041 (arm_gdbarch_init): Check the binary before the target description.
2042 Add check for M profile attribute. If we have an M-profile device,
2043 but no target register description, use arm-with-m. Recognize the
2044 new org.gnu.gdb.arm.m-profile feature and its xpsr register.
2045 (_initialize_arm_tdep): Call initialize_tdesc_arm_with_m.
2046 * arm-tdep.h (XPSR_T): Define.
2047 (struct gdbarch_tdep): Add is_m member.
2048 * features/arm-m-profile.xml, features/arm-with-m.c,
2049 features/arm-with-m.xml: New files.
2050
9dc481d3
DE
20512010-08-23 Doug Evans <dje@google.com>
2052
2053 * dwarf2read.c (read_structure_type): Add comment.
2054 (read_enumeration_type): Add comment.
2055 (process_enumeration_scope): Move definition of some locals
2056 closer to their use.
2057 (read_namespace_type): Add comment.
e71ec853 2058 (set_die_type): Fix typo in comment.
9dc481d3 2059
f9ffd4bb
TT
20602010-08-23 Tom Tromey <tromey@redhat.com>
2061
2062 PR python/11145:
2063 * python/py-value.c: Include expression.h.
2064 (valpy_do_cast): New function.
2065 (valpy_cast): Use it.
2066 (valpy_dynamic_cast): New function.
2067 (valpy_reinterpret_cast): Likewise.
2068 (value_object_methods): Add dynamic_cast, reinterpret_cast.
2069
96f73ba5
TT
20702010-08-23 Tom Tromey <tromey@redhat.com>
2071
2072 PR python/11391:
2073 * python/py-value.c (valpy_nonzero): Don't throw error for other
2074 Value types.
2075
d839c8a4
TT
20762010-08-23 Tom Tromey <tromey@redhat.com>
2077
2078 PR python/10676:
2079 * python/py-type.c: Include bcache.h, vec.h.
2080 (struct type_equality_entry): New.
2081 (compare_strings): New function.
2082 (check_types_equal): Likewise.
2083 (check_types_worklist): Likewise.
2084 (typy_richcompare): Likewise.
2085 (type_object_type): Set tp_richcompare field.
2086
05d0e1e7
TT
20872010-08-23 Tom Tromey <tromey@redhat.com>
2088
2089 PR python/10953:
2090 * python/py-type.c (typy_fields): Call check_typedef.
2091 (typy_template_argument): Add TRY_CATCH.
2092
702c2711
TT
20932010-08-23 Tom Tromey <tromey@redhat.com>
2094
2095 PR python/11915:
2096 * python/py-type.c (typy_array): New function.
2097 (type_object_methods): Add "array".
2098
4a532131
PA
20992010-08-20 Pedro Alves <pedro@codesourcery.com>
2100
2101 * python/python.c: Include "serial.h".
2102 (gdbpy_event_fds): Change type to `struct serial *' a array from
2103 int array.
2104 (gdbpy_run_events): Change parameters. Use serial_readchar in
2105 place of read.
2106 (gdbpy_post_event): Use serial_write in place of write.
2107 (gdbpy_initialize_events): Use serial_pipe instead of pipe, and
2108 serial_async in place of add_file_handler.
2109
58f07bae
PA
21102010-08-20 Pedro Alves <pedro@codesourcery.com>
2111
2112 * serial.h (gdb_pipe, serial_pipe): Declare.
2113 * serial.c (serial_interface_lookup): Take a const char pointer.
2114 (serial_fdopen): Rename to ...
2115 (serial_fdopen_ops): ... this. Add an OPS parameter and use it.
2116 Call the OPS' fdopen function if there is one.
2117 (serial_fdopen): Rewrite as wrapper to serial_fdopen_ops.
2118 (serial_pipe): New.
2119 (struct serial_ops) <fdopen>: New field.
2120
2121 * ser-mingw.c (free_pipe_state):
2122 (free_pipe_state): Close output on non-pex pipes.
2123 (pipe_windows_fdopen): New.
2124 (gdb_pipe): New.
2125 (_initialize_ser_windows): Register pipe_windows_fdopen.
2126 * ser-go32.c (gdb_pipe): New.
2127 * ser-pipe.c (pipe_close): Close file descriptor even if there's
2128 no state pointer.
2129 (pipe_ops): Delete.
2130 (gdb_pipe): New.
2131
3da10d80
KS
21322010-08-20 Keith Seitz <keiths@redhat.com>
2133
2134 PR symtab/11465:
889bf7c5 2135 * dwarf2read.c (struct delayed_method_info): New struct.
3da10d80
KS
2136 (struct dwarf2_cu): Add vector method_list.
2137 (scan_partial_symbols): Count methods for union, class, structure,
2138 and interface types.
2139 (add_to_method_list): New function.
2140 (free_delayed_list): New function.
2141 (compute_delayed_physnames): New function.
2142 (process_full_comp_unit): Make a cleanup for the CU's delayed
2143 physname list, compute the delayed physnames, and free the
2144 the list.
2145 (dwarf2_add_member_fn): For C++ and Java, delay the computation
2146 of the physname until after the CU is read.
2147
2148 * dwarf2read.c (read_structure_type): Check if the current
2149 DIE's type was already completed after dwarf2_full_name
2150 was called.
889bf7c5 2151
ca11e899
SS
21522010-08-19 Stan Shebs <stan@codesourcery.com>
2153
2154 * NEWS: Mention some additional changes.
2155
4d2dc20a
TT
21562010-08-19 Tom Tromey <tromey@redhat.com>
2157
2158 * Makefile.in (install-python): Add DESTDIR.
2159
d30f5e1f
DE
21602010-08-19 Doug Evans <dje@google.com>
2161
2162 PR exp/11926
2163 * parser-defs.h (parse_float, parse_c_float): Declare.
2164 * parse.c (parse_float, parse_c_float): New function.
2165 * c-exp.y (parse_number): Call parse_c_float.
2166 * objc-exp.y (parse_number): Ditto.
2167 * p-exp.y (parse_number): Ditto. Use ANSI/ISO-style definition.
2168 * jv-exp.y (parse_number): Call parse_float, fix suffix handling.
2169
2837d59e
JB
21702010-08-19 Joel Brobecker <brobecker@adacore.com>
2171
2172 * psymtab.c (map_symbol_filenames_psymtab): Call FUN with
2173 the arguments in the correct order.
2174 * symtab.c (maybe_add_partial_symtab_filename): Declare
2175 the arguments in the correct order.
2176
35633fef
JK
21772010-08-19 Jan Kratochvil <jan.kratochvil@redhat.com>
2178
2179 * varobj.c (varobj_create): Replace variable old_fi with old_id,
2180 initialize it by null_frame_id, wrap its usage by get_frame_id,
2181 frame_id_p and frame_find_by_id.
2182
94f7449c
TT
21832010-08-18 Tom Tromey <tromey@redhat.com>
2184
2185 PR python/11900:
2186 * configure: Rebuild.
2187 * configure.ac: Add install-python to CONFIG_INSTALL.
2188 * Makefile.in (install-python): New.
2189
f3574227
DE
21902010-08-18 Doug Evans <dje@google.com>
2191
2192 * gdb_assert.h (gdb_assert_not_reached): New macro.
2193 (gdb_assert_fail): Fix typo in comment.
2194 * avr-tdep.c (avr_return_value): Use gdb_assert_not_reached instead of
2195 gdb_assert (0).
2196 * darwin-nat.c (darwin_check_new_threads): Ditto.
2197 * dwarf2read.c (dwarf2_get_section_info): Ditto.
2198 (munmap_section_buffer): Ditto.
2199 * m32c-tdep.c (make_types): Ditto.
2200 (m32c_decode_srcdest4, m32c_decode_sd23, m32c_frame_base): Ditto.
2201 * macroexp.c (get_character_constant): Ditto.
2202 (get_string_literal): Ditto.
2203 * mep-tdep.c (mep_pseudo_cr_size): Ditto.
2204 (mep_pseudo_cr_index, mep_register_type): Ditto.
2205 (mep_pseudo_register_read, mep_pseudo_register_write): Ditto.
2206 (mep_get_insn, mep_analyze_prologue): Ditto.
2207 * objfiles.c (qsort_cmp): Ditto.
2208 * prologue-value.c (pv_is_identical): Ditto.
2209 * record.c (record_get_loc): Ditto.
2210 * value.c (value_static_field): Ditto.
2211 * xtensa-tdep.c (call0_track_op): Ditto.
2212
c92817ce
TT
22132010-08-18 Tom Tromey <tromey@redhat.com>
2214
2215 PR symtab/11919:
2216 * gdbtypes.c (lookup_struct_elt_type): Clean up error emission.
2217 * parse.c (parse_field_expression): Use RETURN_MASK_ERROR. Move
2218 name-copying lower. Document exception behavior.
2219 * completer.c (expression_completer): Catch exceptions from
2220 parse_field_expression.
2221
856d6f99
PA
22222010-08-18 Pedro Alves <pedro@codesourcery.com>
2223
2224 PR corefile/8210
2225
2226 * linux-thread-db.c (add_thread_db_info): Skip glibc/BZ5983
2227 workaround on core files.
2228 (try_thread_db_load_1): Don't try enabling thread event reporting
2229 on core files.
2230 (thread_db_load): Allow thread_db on core files.
2231 (attach_thread): Don't check thread signals on core files, nor try
2232 really attaching to the thread, nor enabling thread event event
2233 reporting.
2234 (thread_db_detach): Don't try disabing thread event reporting or
2235 removing thread event breakpoints when debugging a core file.
2236 (find_new_threads_callback): Don't try enabling thread event
2237 reporting on core files.
2238 (thread_db_find_new_threads_2): Don't look for a stopped lwp when
2239 debugging a core file.
2240 (thread_db_find_new_threads): Don't update thread
2241 cores (processors) when debugging a core (dump).
2242
261b8d08
PA
22432010-08-18 Pedro Alves <pedro@codesourcery.com>
2244
2245 PR corefile/8210
2246
2247 * corelow.c (add_to_thread_list): Don't use
2248 gdbarch_core_reg_section_encodes_pid. Use bfd_core_file_pid.
2249 (get_core_register_section): Don't use
2250 gdbarch_core_reg_section_encodes_pid.
2251
2252 * gdbarch.sh (core_reg_section_encodes_pid): Delete.
2253 * gdbarch.h, gdbarch.c: Regenerate.
2254 * amd64-sol2-tdep.c (amd64_sol2_init_abi): Don't set
2255 gdbarch_core_reg_section_encodes_pid.
2256 * i386-sol2-tdep.c (i386_sol2_init_abi): Ditto.
2257 * sparc-sol2-tdep.c (sparc32_sol2_init_abi): Ditto.
2258 * sparc64-sol2-tdep.c (sparc64_sol2_init_abi): Ditto.
2259
f9b42018
YQ
22602010-08-18 Yao Qi <yao@codesourcery.com>
2261
2262 * MAINTAINERS : Add myself under Write After Approval.
2263
def98928
TT
22642010-08-17 Tom Tromey <tromey@redhat.com>
2265
2266 * NEWS: Mention template parameter support.
2267
0807b50c
PA
22682010-08-17 Pedro Alves <pedro@codesourcery.com>
2269
2270 PR breakpoints/11371
2271
2272 * breakpoint.c (decref_bp_location): Assert the reference count is
2273 sane.
2274
f431efe5
PA
22752010-08-17 Pedro Alves <pedro@codesourcery.com>
2276
2277 PR breakpoints/11371
2278
2279 * breakpoint.c (breakpoint_init_inferior): Decrement the
2280 location's reference count instead of deleting right away.
2281 (bpstat_free): Decrement the location's reference count. Make
2282 static.
2283 (bpstat_copy): Increment the location's reference count.
2284 (bpstat_find_breakpoint): Adjust.
2285 (bpstat_num): Adjust.
2286 (print_it_typical): Adjust. Use the breakpoint pointer in the
2287 bpstat instead of the location's owner.
2288 (bpstat_alloc): Remove const qualifier from the 'bl' parameter.
2289 Adjust to record the location's owner in the bpstat.
2290 (watchpoint_check): Use the breakpoint pointer in the bpstat
2291 instead of the location's owner.
2292 (bpstat_check_breakpoint_conditions): Don't handle
2293 bp_watchpoint_scope here. Use the breakpoint pointer in the
2294 bpstat instead of the location's owner.
2295 (bpstat_stop_status): Defer inferior function calls to after
2296 building the bpstat list. Handle bp_watchpoint_scope here. Use
2297 the breakpoint pointer in the bpstat instead of the location's
2298 owner.
2299 (bpstat_what): Use the breakpoint pointer in the bpstat instead of
2300 the location's owner.
2301 (free_bp_location): Don't walk bpstats clearing locations.
2302 (incref_bp_location): New.
2303 (decref_bp_location): New.
2304 (breakpoint_auto_delete): Use the breakpoint pointer in the bpstat
2305 instead of the location's owner.
2306 (update_global_location_list): Clear the location's owner, and
2307 decrement the location's reference count instead of deleting it
2308 right away.
2309 (breakpoint_retire_moribund): Decrement the location's reference
2310 count instead of deleting it right away.
2311 (bpstat_remove_bp_location): Delete.
2312 (bpstat_remove_breakpoint): New.
2313 (bpstat_remove_bp_location_callback): Delete.
2314 (bpstat_remove_breakpoint_callback): New.
2315 (delete_breakpoint): Iterate over all threads' stop_bpstat's
2316 clearing references to the breakpoint that is being deleted.
2317
2318 * breakpoint.h (struct bp_location) <refc>: New field.
2319 <owner>: Update comments.
2320 (bpstat_free): Delete declaration.
2321 (struct bpstats): Change the type of the breakpoint_at field to
2322 struct breakpoint point, from struct bp_location pointer. Add new
2323 field bp_location_at.
2324
14c0d4e1
TT
23252010-08-16 Tom Tromey <tromey@redhat.com>
2326
2327 * NEWS: Fix typo.
2328
b56df873
TT
23292010-08-16 Tom Tromey <tromey@redhat.com>
2330
2331 * NEWS: Mention watch -location.
2332
d63d0675
JK
23332010-08-16 Jan Kratochvil <jan.kratochvil@redhat.com>
2334
2335 * breakpoint.c (update_watchpoint): Add source empty line. Prefer
2336 EXP_STRING_REPARSE to EXP_STRING.
2337 (watch_command_1): Set also EXP_STRING_REPARSE.
2338 (delete_breakpoint): Free also EXP_STRING_REPARSE.
2339 * breakpoint.h (struct breakpoint): New field exp_string_reparse.
2340 Update comment for exp_string.
2341
06a64a0b
TT
23422010-08-16 Tom Tromey <tromey@redhat.com>
2343
2344 * value.c (release_value): Clear 'next' pointer.
2345 * breakpoint.c (watch_command_1): Add 'just_location' argument.
2346 (watch_command_wrapper): Update.
2347 (watch_maybe_just_location): New function.
2348 (watch_command): Update.
2349 (rwatch_command_wrapper): Update.
2350 (rwatch_command): Update.
2351 (awatch_command_wrapper): Update.
2352 (awatch_command): Update.
2353 (check_for_argument): New function.
2354 (_initialize_breakpoint): Update help text.
2355
f96b8fa0
UW
23562010-08-14 Ulrich Weigand <uweigand@de.ibm.com>
2357
2358 * arm-tdep.c (arm_push_dummy_call): Handle pointers to
2359 typedef'ed function types correctly.
2360
4eb54052
TT
23612010-08-13 Tom Tromey <tromey@redhat.com>
2362
2363 * python/python-internal.h (gdbpy_get_hook_function): Don't
2364 declare.
2365
44be957e
JK
23662010-08-13 Jan Kratochvil <jan.kratochvil@redhat.com>
2367
ba720883 2368 * cli/cli-logging.c (logging_overwrite, logging_redirect): Make them
44be957e
JK
2369 static.
2370
76d8b686
KW
23712010-08-13 Ken Werner <ken.werner@de.ibm.com>
2372
2373 * python/python.c (gdbpy_solib_name): Remove the const qualifier of
2374 the format strings to be compatible with Python 2.4.
2375
8dedea02
VP
23762010-08-13 Vladimir Prus <vladimir@codesourcery.com>
2377
2378 Easier and more stubborn MI memory read commands.
2379
2380 * mi/mi-cmds.c (mi_cmds): Register data-read-memory-bytes
2381 and data-write-memory-bytes.
2382 * mi/mi-cmds.h (mi_cmd_data_read_memory_bytes)
2383 (mi_cmd_data_write_memory_bytes): New.
2384 * mi/mi-main.c (mi_cmd_data_read_memory): Use regular target_read.
2385 (mi_cmd_data_read_memory_bytes, mi_cmd_data_write_memory_bytes):
2386 New.
2387 (mi_cmd_list_features): Add "data-read-memory-bytes" feature.
2388 * target.c (target_read_until_error): Remove.
2389 (read_whatever_is_readable, free_memory_read_result_vector)
2390 (read_memory_robust): New.
2391 * target.h (target_read_until_error): Remove.
2392 (struct memory_read_result, free_memory_read_result_vector)
2393 (read_memory_robust): New.
2394
1d9ec526
HZ
23952010-08-13 Hui Zhu <teawater@gmail.com>
2396
2397 * dwarf2read.c (load_partial_comp_unit): Initialize free_cu_cleanup.
2398 (read_comp_unit): Initialize back_to.
2399
98bfdba5
PA
24002010-08-12 Daniel Jacobowitz <dan@codesourcery.com>
2401 Pedro Alves <pedro@codesourcery.com>
2402
2403 * dwarf2read.c: Include "c-lang.h" and "valprint.h".
2404 (struct dwarf2_per_objfile) <reading_partial_symbols>: New field.
2405 (struct partial_die_info) <has_template_arguments>: New field.
2406 <num_attrs>: Change type to unsigned char.
2407 <building_fullname>: New field.
2408 (dwarf2_build_psymtabs_hard): Set reading_partial_symbols. Only
2409 allocate a CU if we don't have one already. Add a cleanup for the
2410 CU.
2411 (partial_die_full_name): Handle template arguments not in
2412 DW_AT_name.
2413 (dwarf2_psymtab_to_symtab): Clear reading_partial_symbols.
2414 (load_full_comp_unit): Only allocate a CU if we don't have one
2415 already.
2416 (do_ui_file_peek_last): New.
2417 (dwarf2_compute_name): Handle template parameters not in
2418 DW_AT_name.
2419 (read_comp_unit): Read and free abbrevs if not read yet.
2420 (load_partial_dies): Handle template arguments not in DW_AT_name.
2421 (find_partial_die): If we have a CU, but no a partial dies yet,
2422 also read in the CU.
2423 (dwarf2_const_value_attr): New, abstracted out from
2424 dwarf2_const_value.
2425 (dwarf2_const_value, dwarf2_const_value_data): Adjust to use
2426 dwarf2_const_value_attr.
2427 (determine_prefix): Detect and break loops created by RCVT's debug
2428 info.
2429 (maybe_queue_comp_unit): Bail out early if reading partial
2430 symbols.
2431 (follow_die_offset): Load full CU if we have no dies.
2432 * dwarf2loc.c (dwarf2_evaluate_loc_desc): Make public.
2433 * dwarf2loc.h (dwarf2_evaluate_loc_desc): Declare.
2434
ca5c20b6 24352010-08-11 Tom Tromey <tromey@redhat.com>
889bf7c5 2436 Phil Muldoon <pmuldoon@redhat.com>
ca5c20b6
PM
2437
2438 * python/python.c (gdbpy_run_events): New function.
2439 (gdbpy_post_event): Likewise.
2440 (gdbpy_initialize_events): Likewise.
2441 (_initialize_python): Call gdbpy_initialize_events.
2442
7346b668
KW
24432010-08-11 Ken Werner <ken.werner@de.ibm.com>
2444
2445 * gdb/valarith.c (vector_binop): New function.
2446 (scalar_binop): Likewise.
2447 (value_binop): Call scalar_binop or vector_binop depending on the types.
2448 * gdb/eval.c (ptrmath_type_p): Return 0 in case of TYPE_VECTOR.
2449 (evaluate_subexp_with_coercion): Add vector check to not convert vectors
2450 to pointers.
2451 * gdb/value.c (coerce_array): Add vector check to not coerce vectors.
2452
62183e15
TT
24532010-08-11 Brad Roberts <braddr@puremagic.com>
2454
2455 * d-lang.c (extract_identifiers): Handle multiple digits.
2456
39d7b0e2
JK
24572010-08-11 Jan Kratochvil <jan.kratochvil@redhat.com>
2458
2459 Code cleanup.
2460 * dummy-frame.c (dummy_frame_unwinder): Remove its static qualifier.
2461 Rename to dummy_frame_unwind.
2462 (dummy_frame_unwind): Remove.
2463 * dummy-frame.h (dummy_frame_unwind): Reference directly the struct.
2464 * frame-unwind.c (frame_unwind_init): Use address of
2465 dummy_frame_unwind and inline_frame_unwind.
2466 * frame.c (create_sentinel_frame): Use address of
2467 sentinel_frame_unwind.
2468 * inline-frame.c (inline_frame_unwinder): Rename to
2469 inline_frame_unwind.
2470 (inline_frame_unwind): Remove.
2471 * inline-frame.h (inline_frame_unwind): Reference directly the struct.
2472 * sentinel-frame.c (sentinel_frame_unwinder): Rename to
2473 sentinel_frame_unwind.
2474 (sentinel_frame_unwind): Remove.
2475 * sentinel-frame.h (sentinel_frame_unwind): Reference directly the
2476 struct.
2477
9f9a8002
JK
24782010-08-11 Jan Kratochvil <jan.kratochvil@redhat.com>
2479
2480 Code cleanup.
2481 * frame-unwind.c (frame_unwind_find_by_frame): Remove the return type
2482 and returned value. New comment from frame-unwind.h.
2483 * frame-unwind.h (frame_unwind_find_by_frame): Remove the return type.
2484 Extend the comment.
2485 * frame.c (get_frame_id, frame_unwind_register_value)
2486 (create_new_frame, get_prev_frame_1, frame_unwinder_is)
2487 (get_frame_type, frame_unwind_arch): Do not use the return value of
2488 frame_unwind_find_by_frame.
2489
cb2e07a6 24902010-08-11 Phil Muldoon <pmuldoon@redhat.com>
889bf7c5 2491 Thiago Jung Bauermann <bauerman@br.ibm.com>
cb2e07a6
PM
2492 Tom Tromey <tromey@redhat.com>
2493
2494 * python/python.c (gdbpy_solib_address): New function.
2495 (gdbpy_decode_line): Likewise.
2496
c29c521f
TT
24972010-08-10 Tom Tromey <tromey@redhat.com>
2498
2499 Revert gdb-add-index addition:
2500 * Makefile.in (install-only): Don't install gdb-add-index.
2501 * gdb-add-index.sh: Remove.
2502
0c012db1
KB
25032010-08-09 Kevin Buettner <kevinb@redhat.com>
2504
2505 * remote-sim.c (gdbsim_xfer_inferior_memory): Replace
2506 `target_has_execution' check with `to_has_memory' check.
2507 (gdbsim_has_all_memory, gdbsim_has_memory): New functions.
2508 (init_gdbsym_ops): Initialize relevant fields of `gdbsim_ops'
2509 with `gdbsim_has_all_memory' and `gdbsim_has_memory'.
2510
db04efe6
KB
25112010-08-09 Kevin Buettner <kevinb@redhat.com>
2512
2513 * remote-sim.c (program_loaded, gdbsim_desc, remote_sim_ptid)
2514 (resume_siggnal, resume_step): Move these static globals...
2515 (struct sim_inferior_data): ...into this new struct.
2516 (sim_inferior_data_key, next_pid, sim_argv, gdbsim_is_open):
2517 New static globals.
2518 (gdb_callback, callbacks_initialized): Move these globals to
2519 a point earlier in the file.
2520 (check_for_duplicate_sim_descriptor, get_sim_inferior_data)
2521 (get_sim_inferior_data_by_ptid, sim_inferior_data_cleanup)
2522 (gdbsim_close_inferior, gdbsim_resume_inferior)
2523 (gdbsim_stop_inferior): New functions.
2524 (SIM_INSTANCE_NOT_NEEDED, SIM_INSTANCE_NEEDED, INITIAL_PID):
2525 New constants.
2526 (gdbsim_fetch_register, gdbsim_store_register, gdbsim_load)
2527 (gdbsim_create_inferior, gdbsim_open, gdbsim_close, gdbsim_resume)
2528 (gdbsim_stop, gdbsim_cntrl_c, gdbsim_wait)
2529 (gdbsim_xfer_inferior_memory, gdbsim_files_info)
2530 (gdbsim_mourn_inferior, simulator_command, gdbsim_thread_alive,
2531 (gdbsim_pid_to_str): Invoke `get_sim_inferior_data' to set
2532 new local variable `sim_data' in each of these functions. Use
2533 `sim_data' to reference former globals `program_loaded',
2534 `gdbsim_desc', `remote_sim_ptid', `resume_siggnal', and
2535 `resume_step'.
2536 (gdbsim_open): Remove local variable `argv'. Put results of call
2537 to `gdb_buildargv' in `sim_argv' rather than in `argv'. Don't
2538 make a cleanup for it. Free it though when a sim instance cannot
2539 be obtained.
2540 (gdbsim_close): Free sim_argv and null it out as appropriate.
2541 Close sim instances in all inferiors.
2542 (gdbsim_cntrl_c): Stop all inferiors.
2543 (gdbsim_wait):
2544 (_initialize_remote_sim): Initialize `sim_inferior_data_key'.
2545
e37fd15a
SW
25462010-08-09 Sami Wagiaalla <swagiaal@redhat.com>
2547
2548 * dwarf2read.c (new_symbol): Add symbol to variable list at end of
2549 function after symbol construction is complete.
2550 Do the same for template symbol addition to template_symbols list.
2551
45c58896
SW
25522010-08-09 Sami Wagiaalla <swagiaal@redhat.com>
2553
2554 * symtab.c (symbol_get_demangled_name): Remove assertion and
2555 return NULL when language_specific.cplus_specific is not initialized.
2556 * stabsread.c (define_symbol): Set the name before calling
2557 cp_scan_for_anonymous_namespaces.
2558
33e5013e
SW
25592010-08-09 Sami Wagiaalla <swagiaal@redhat.com>
2560
2561 * symtab.h: Renamed SYMBOL_INIT_LANGUAGE_SPECIFIC to
2562 SYMBOL_SET_LANGUAGE.
2563 (symbol_init_language_specific): Renamed to symbol_set_language.
2564 * symtab.c (symbol_init_language_specific): Removed redundant check
2565 for language_cplus.
2566 Renamed to symbol_set_language.
2567 * stabsread.c (define_symbol): Updated.
2568 (read_enum_type): Updated
2569 * psymtab.c (add_psymbol_to_bcache): Updated.
2570 * minsyms.c (install_minimal_symbols): Updated.
2571 * coffread.c (process_coff_symbol): SYMBOL_SET_LANGUAGE instead of
2572 SYMBOL_LANGUAGE to set the language.
2573 * minsyms.c (prim_record_minimal_symbol_full): Ditto.
2574 * mdebugread.c (new_symbol): Ditto.
2575 * cp-namespace.c (check_one_possible_namespace_symbol): Ditto.
2576 * dwarf2read.c (new_symbol_full): Ditto.
2577 * jv-lang.c (add_class_symbol): Ditto.
2578
5da1313b
JK
25792010-08-07 Jan Kratochvil <jan.kratochvil@redhat.com>
2580
2581 * defs.h (make_cleanup_restore_uinteger, make_cleanup_restore_ui_file)
2582 (make_cleanup_restore_page_info)
2583 (set_batch_flag_and_make_cleanup_restore_page_info): New declarations.
2584 * gdbcmd.h (execute_command_to_string): New declaration.
2585 * python/python.c (struct restore_ui_file_closure, restore_ui_file)
2586 (make_cleanup_restore_ui_file): Move to utils.c
2587 (execute_gdb_command) <to_string>: Move ...
2588 * top.c (execute_command_to_string): ... here. Call
2589 set_batch_flag_and_make_cleanup_restore_page_info.
2590 * utils.c (make_cleanup_restore_integer): New source file blank line.
2591 (make_cleanup_restore_uinteger): New.
2592 (struct restore_ui_file_closure, do_restore_ui_file)
2593 (make_cleanup_restore_ui_file): Move here from python/python.c.
2594 (init_page_info) <batch_flag>
2595 (do_restore_page_info_cleanup, make_cleanup_restore_page_info)
2596 (set_batch_flag_and_make_cleanup_restore_page_info): New.
2597
c820c52a
PA
25982010-08-06 Maciej W. Rozycki <macro@codesourcery.com>
2599
2600 * thread.c (add_thread_silent): Use null_ptid instead of
2601 minus_one_ptid while getting rid of stale inferior_ptid.
2602
8da614df
CV
26032010-08-06 Corinna Vinschen <vinschen@redhat.com>
2604
2605 * dwarf2-frame.c (struct dwarf2_cie): Add ptr_size member.
2606 Throughout, call read_encoded_value with ptr_size rather than addr_size.
2607 (decode_frame_entry_1): Remove redundant setting of
2608 addr_size. Call gdbarch_dwarf2_addr_size rather than gdbarch_ptr_bit
2609 to determine addr_size in Dwarf versions < 4. Set ptr_size dependent
2610 on examined frame section. Add comment to explain why.
2611 * gdbarch.sh (dwarf2_addr_size): Define as variable. Add lengthy
2612 comment to explain usage.
2613 * gdbarch.c: Regenerate.
2614 * gdbarch.h: Regenerate.
2615
2616 * xstormy16-tdep.c (xstormy16_gdbarch_init): Set dwarf2_addr_size to 4.
2617
e4195b40
JK
26182010-08-06 Jan Kratochvil <jan.kratochvil@redhat.com>
2619
2620 Code cleanup.
2621 * varobj.c (varobj_create): Move variables fi, old_fi and block to
2622 a more inner block.
2623
a3217aa0
PA
26242010-08-05 Pedro Alves <pedro@codesourcery.com>
2625
2626 * configure.tgt (alpha*-*-linux*, am33_2.0*-*-linux*, frv-*-*)
2627 (hppa*-*-linux*, ia64-*-linux*, m32r*-*-linux*, m68*-*-linux*)
2628 (microblaze*-linux-*, mips*-*-linux*, sh*-*-linux*)
2629 (sparc-*-linux*, sparc64-*-linux*, xtensa*-*-linux*): Add
2630 linux-tdep.o to gdb_target_obs.
2631
e2b4a699 26322010-08-05 Marc Khouzam <marc.khouzam@ericsson.com>
889bf7c5
PA
2633
2634 * mi/mi-main.c (mi_cmd_remove_inferior): Properly access first
e2b4a699 2635 argument.
889bf7c5 2636
50e8a0d5
HZ
26372010-08-05 Hui Zhu <teawater@gmail.com>
2638
2639 * mips-linux-tdep.c(regset.h): New include.
2640 (mips_supply_gregset_wrapper, mips_fill_gregset_wrapper,
2641 mips_supply_fpregset_wrapper, mips_fill_fpregset_wrapper,
2642 mips64_supply_gregset_wrapper, mips64_fill_gregset_wrapper,
2643 mips64_supply_fpregset_wrapper, mips64_fill_fpregset_wrapper,
2644 mips_linux_regset_from_core_section): New functions.
2645 (fetch_core_registers, regset_core_fns): Deleted.
2646 (mips_linux_init_abi): Add mips_linux_regset_from_core_section.
2647 Deleted regset_core_fns.
2648 * mips-tdep.c(mips_gdbarch_init): Initialize tdep->gregset,
2649 tdep->gregset64, tdep->fpregset and tdep->fpregset64.
2650 * mips-tdep.h(gdbarch_tdep): Add gregset, gregset64, fpregset
2651 and fpregset64.
2652
70728992
PA
26532010-08-04 Pedro Alves <pedro@codesourcery.com>
2654
2655 * s390-tdep.c: Include linux-tdep.h.
2656 (s390_gdbarch_init): Call linux_init_abi.
2657
a5ee0f0c
PA
26582010-08-04 Pedro Alves <pedro@codesourcery.com>
2659
2660 * corelow.c (core_pid_to_str): Default to using normal_pid_to_str
2661 instead of printing "Thread" here.
2662 * linux-tdep.c: Include inferior.h.
2663 (linux_core_pid_to_str): New.
2664 (linux_init_abi): New.
2665 * linux-tdep.h (linux_init_abi): Declare.
2666 * alpha-linux-tdep.c: Include linux-tdep.h.
2667 (alpha_linux_init_abi): Call linux_init_abi.
2668 * amd64-linux-tdep.c (amd64_linux_init_abi): Call linux_init_abi.
2669 * arm-linux-tdep.c (arm_linux_init_abi): Call linux_init_abi.
2670 * frv-linux-tdep.c: Include linux-tdep.h
2671 (frv_linux_init_abi): Call linux_init_abi.
2672 * hppa-linux-tdep.c: Include linux-tdep.h
2673 (hppa_linux_init_abi): Call linux_init_abi.
2674 * i386-linux-tdep.c (i386_linux_init_abi): Call linux_init_abi.
2675 * ia64-linux-tdep.c: Include linux-tdep.h.
2676 (ia64_linux_init_abi): Call linux_init_abi.
2677 * m32r-linux-tdep.c: Include linux-tdep.h.
2678 (m32r_linux_init_abi): Call linux_init_abi.
2679 * m68klinux-tdep.c: Include linux-tdep.h.
2680 (m68k_linux_init_abi): Call linux_init_abi.
2681 * microblaze-linux-tdep.c: Include linux-tdep.h.
2682 (microblaze_linux_init_abi): Call linux_init_abi.
2683 * mips-linux-tdep.c: Include linux-tdep.h.
2684 (mips_linux_init_abi): Call linux_init_abi.
2685 * mn10300-linux-tdep.c: Include linux-tdep.h.
2686 (am33_linux_init_osabi): Call linux_init_abi. Rename the
2687 'gdbinfo' parameter to 'info'.
2688 * ppc-linux-tdep.c: Include linux-tdep.h.
2689 (ppc_linux_init_abi): Call linux_init_abi.
2690 * sh-linux-tdep.c: Include linux-tdep.h.
2691 (sh_linux_init_abi): Call linux_init_abi.
2692 * sparc-linux-tdep.c: Include linux-tdep.h.
2693 (sparc32_linux_init_abi): Call linux_init_abi.
2694 * sparc64-linux-tdep.c: Include linux-tdep.h.
2695 (sparc64_linux_init_abi): Call linux_init_abi.
2696 * xtensa-linux-tdep.c: Include linux-tdep.h.
2697 (xtensa_linux_init_abi): Call linux_init_abi.
2698 * i386-cygwin-tdep.c (i386_windows_core_pid_to_str): New.
2699 (i386_cygwin_init_abi): Install it as gdbarch_core_pid_to_str
2700 callback.
2701
bc043ef3
DE
27022010-08-03 Doug Evans <dje@google.com>
2703
2704 * breakpoint.c (bpdisp_text): Constify bpdisps.
2705 * solib-svr4.c (solib_break_names): Constify.
2706 (bkpt_names, main_name_list): Constify.
2707 (match_main): Constify soname arg.
63cdd227
DE
2708 (bfd_lookup_symbol): Remove unnecessary forward decl.
2709 Constify symname arg.
bc043ef3
DE
2710 (enable_break): Constify bkpt_namep.
2711 * symtab.c (search_symbols): Constify types, types2, types3, types4.
2712 (symtab_symbol_info): Constify classnames.
2713
585d1eb8
PM
27142010-08-03 Phil Muldoon <pmuldoon@redhat.com>
2715
2716 * NEWS: Document Python value inferior function calls.
2717
2de00c64
DE
27182010-08-02 Doug Evans <dje@google.com>
2719
2720 * dwarf2read.c (dwarf_attr_name): Add DW_AT_GNU_odr_signature.
2721
02d868e8
PP
27222010-07-31 Paul Pluzhnikov <ppluzhnikov@google.com>
2723
2724 * linux-thread-db.c (libthread_db_debug): New variable.
2725 (thread_db_find_new_threads_silently): Control verbosity with it.
2726 (try_thread_db_load_1, try_thread_db_load): Likewise.
2727 (find_new_threads_once): Likewise.
2728 (_initialize_thread_db): Set/show it.
2729
a19cae16
JK
27302010-07-31 Jan Kratochvil <jan.kratochvil@redhat.com>
2731
2732 * common/signals.c (signals): Move the content to signals.def.
2733 Include it. Remove the INDENT comments.
2734
c2bbed2a
TT
27352010-07-30 Tom Tromey <tromey@redhat.com>
2736
2737 * Makefile.in (install-only): Install gdb-add-index.
2738 * gdb-add-index.sh: New file.
2739
f32b2f09
CR
27402010-07-31 Renquan Cheng <crq@gcc.gnu.org>
2741
2742 * MAINTAINERS: Add myself for write after approval privileges.
2743
1276c759
JK
27442010-07-30 Jan Kratochvil <jan.kratochvil@redhat.com>
2745
2746 * symfile.c (addr_section_name): New function.
2747 (addrs_section_compar): Use it.
2748 (addr_info_make_relative): Use it. Move variable sect_name into a more
2749 inner block. Make ".dynbss" and ".sdynbss" checks more strict.
2750
420697bb
TT
27512010-07-30 Tom Tromey <tromey@redhat.com>
2752
2753 * configure: Rebuild.
2754 * configure.ac: Add missing case for Python 2.7.
2755
d0d99561
DD
27562010-07-29 DJ Delorie <dj@redhat.com>
2757
2758 * rx-tdep.c (rx_analyze_prologue): Don't require branches to have
2759 conditions.
2760
0b29bdde
PA
27612010-07-29 Pedro Alves <pedro@codesourcery.com>
2762
2763 * PROBLEMS: Remove mention of all problems.
2764
110ed339
PA
27652010-07-28 Pedro Alves <pedro@codesourcery.com>
2766
2767 PR build/11848
2768 * configure.ac: Check for wresize.
2769 * configure, config.in: Regenerate.
2770 * tui/tui-win.c (make_visible_with_new_height): Wrap wresize call
2771 with HAVE_WRESIZE.
2772
326fd672
TT
27732010-07-28 Tom Tromey <tromey@redhat.com>
2774
2775 PR python/11060:
2776 * python/py-type.c (typy_legacy_template_argument): New function,
2777 extracted from typy_template_argument.
2778 (typy_template_argument): Use TYPE_TEMPLATE_ARGUMENT. Return a
2779 value when needed.
2780
4ac8c4da
TT
27812010-07-28 Oleg Nesterov <oleg@redhat.com>
2782
2783 * remote.c (readchar): Call pop_target in case of SERIAL_ERROR.
2784
053315c2
TT
27852010-07-27 Tom Tromey <tromey@redhat.com>
2786
2787 * dwarf2read.c (dwarf2_const_value_data): Never sign extend.
2788
3ce3b1ba
PA
27892010-07-28 Daniel Jacobowitz <dan@codesourcery.com>
2790
2791 * dwarf2read.c (read_subroutine_type): Improve THIS detection,
2792 handling DW_AT_object_pointer, and workaround GCC PR 43053.
2793
2bb4f988
TT
27942010-07-28 Tom Tromey <tromey@redhat.com>
2795
2796 * Makefile.in (HFILES_NO_SRCDIR): Remove link-warning.h.
2797
74232302
JB
27982010-07-28 Joel Brobecker <brobecker@adacore.com>
2799
2800 * remote.c (remote_download_tracepoint): Add missing gettext markup.
2801 * tracepoint.c (parse_static_tracepoint_marker_definition): Likewise.
2802
385d04dc
JB
28032010-07-28 Joel Brobecker <brobecker@adacore.com>
2804
2805 * breakpoint.c (breakpoint_re_set_one): Move call to set_language
2806 down, just before the block that parse the breakpoint addr_string.
2807
34eaf542
TT
28082010-07-28 Tom Tromey <tromey@redhat.com>
2809
2810 PR c++/9946:
2811 * symfile.c (reread_symbols): Clear template_symbols.
2812 * symtab.h (struct symbol) <is_cplus_template_function>: New
2813 field.
2814 (SYMBOL_IS_CPLUS_TEMPLATE_FUNCTION): New macro.
2815 (struct template_symbol): New.
2816 * symtab.c (lookup_symbol_aux_local): Use
2817 cp_lookup_symbol_imports_or_template.
2818 * objfiles.h (struct objfile) <template_symbols>: New field.
2819 * objfiles.c (relocate_one_symbol): New function.
2820 (objfile_relocate1): Use it. Relocate isolated symbols.
2821 * gdbtypes.h (struct cplus_struct_type) <n_template_arguments,
2822 template_arguments>: New fields.
2823 (TYPE_N_TEMPLATE_ARGUMENTS): New macro.
2824 (TYPE_TEMPLATE_ARGUMENTS): Likewise.
2825 (TYPE_TEMPLATE_ARGUMENT): Likewise.
2826 (lookup_typename): Update.
2827 * gdbtypes.c (lookup_typename): Constify "block" argument.
2828 * dwarf2read.c: Include vec.h.
2829 (symbolp): New typedef.
2830 (read_func_scope): Read template arguments. Allocate a
2831 template_symbol when needed.
2832 (read_structure_type): Read template arguments.
2833 (new_symbol_full): New function, from new_symbol. Handle
2834 DW_TAG_template_type_param and DW_TAG_template_value_param.
2835 (new_symbol): Rewrite as wrapper.
2836 * cp-support.h (cp_lookup_symbol_imports_or_template): Declare.
2837 * cp-namespace.c: Include language.h.
2838 (search_symbol_list): New function.
2839 (cp_lookup_symbol_imports_or_template): Likewise.
2840
d27b3be4
PA
28412010-07-28 Balazs Kezes <rlblaster@gmail.com>
2842
2843 * tui/tui-win.c (make_visible_with_new_height): Resize and move
2844 the command window to the new size and position.
2845
0036e657
PA
28462010-07-28 Balazs Kezes <rlblaster@gmail.com>
2847
a782f43e 2848 * tui/tui-win.c (tui_resize_all): Update the locator's origin's
0036e657
PA
2849 coordinates.
2850
36900355
PA
28512010-07-28 Balazs Kezes <rlblaster@gmail.com>
2852
a782f43e 2853 * tui/tui-io.c (tui_handle_resize_during_io): Call tui_resize_all
36900355 2854 after a detecting a resize.
a782f43e 2855 * tui/tui-win.c (tui_resize_all): Remove tui_set_win_resized_to
36900355
PA
2856 call.
2857
db5e03ae
PA
28582010-07-28 Pedro Alves <pedro@codesourcery.com>
2859
2860 * configure.ac: Check for resize_term.
2861 * configure, config.in: Regenerate.
2862
b71fff68
JB
28632010-07-27 Joel Brobecker <brobecker@adacore.com>
2864
2865 * MAINTAINERS (Write After Approval): Reorder a couple of entries.
2866
9b1c24c8
PA
28672010-07-27 Daniel Jacobowitz <dan@codesourcery.com>
2868
2869 * dwarf2read.c (read_string): Rename to ...
2870 (read_direct_string): ... this.
2871 (skip_one_die, read_attribute_value, dwarf_decode_line_header)
2872 (dwarf_decode_lines, dwarf_decode_macros): Adjust.
2873
00390b84
JK
28742010-07-27 Jan Kratochvil <jan.kratochvil@redhat.com>
2875
2876 * linux-nat.c (linux_nat_lp_status_is_event): New function.
2877 (count_events_callback, select_event_lwp_callback)
2878 (cancel_breakpoints_callback, linux_nat_wait_1): Use it.
2879
26ab7092
JK
28802010-07-27 Jan Kratochvil <jan.kratochvil@redhat.com>
2881
2882 * ia64-linux-nat.c (ia64_linux_status_is_event): New function.
2883 (_initialize_ia64_linux_nat): Install it.
2884 * linux-nat.c (sigtrap_is_event, linux_nat_status_is_event)
2885 (linux_nat_set_status_is_event): New.
2886 (stop_wait_callback, count_events_callback, select_event_lwp_callback)
2887 cancel_breakpoints_callback, linux_nat_filter_event)
2888 (linux_nat_wait_1): Use linux_nat_status_is_event.
2889 * linux-nat.h (linux_nat_set_status_is_event): New prototype.
2890
283e6a52
TT
28912010-07-27 Tom Tromey <tromey@redhat.com>
2892
2893 * NEWS: Mention labels, .gdb_index.
2894
53a71c06
CR
28952010-07-28 CHENG Renquan <rqcheng@smu.edu.sg>
2896
2897 * cli/cli-cmds.c (disassemble_command): Add support of disassemble
3422f666 2898 "start,+length" form of arguments.
53a71c06
CR
2899 * NEWS: Add "Changed commands" (disassemble) section for "Changes
2900 since GDB 7.1"; and merge two separated paragraphs of disassemble
2901 description in "Changes in GDB 7.0".
2902
c63a1f86
JK
29032010-07-27 Jan Kratochvil <jan.kratochvil@redhat.com>
2904
2905 * top.c (input_from_terminal_p): Return 0 on BATCH_FLAG.
2906 * utils.c (defaulted_query): Do not explicitly check for BATCH_FLAG.
2907 (fputs_maybe_filtered): Do not do filtering also on
2908 ! INPUT_FROM_TERMINAL_P.
2909
abebb8b0
JB
29102010-07-27 Joel Brobecker <brobecker@adacore.com>
2911
2912 * dwarf2read.c (dw2_find_pc_sect_symtab): Remove trailing newline
2913 in warning message.
2914
5374244e
PM
29152010-07-27 Phil Muldoon <pmuldoon@redhat.com>
2916
2917 * python/py-value.c (valpy_call): New Function.
2918
ac0b195c
KW
29192010-07-27 Ken Werner <ken.werner@de.ibm.com>
2920
889bf7c5 2921 * dwarf2read.c (dwarf2_read_index): Initialize the types_list and
ac0b195c
KW
2922 types_list_elements variables.
2923
09d8bd00
TT
29242010-07-26 Tom Tromey <tromey@redhat.com>
2925
2926 * dwarf2loc.c (locexpr_describe_location_piece): Also recognize
2927 TLS with DW_OP_const4u or DW_OP_const8u.
2928
9fe70b4f
TJB
29292010-07-26 Thiago Jung Bauermann <bauerman@br.ibm.com>
2930
2931 * ppc-linux-nat.c (store_vsx_register): Use PTRACE_GETVSXREGS to get
2932 VSX registers contents.
2933
caac4577
JG
29342010-07-26 Jerome Guitton <guitton@adacore.com>
2935
2936 * dwarf2read.c (add_partial_symbol): Do not add a global variable if
2937 its adress is null. Add comment to explain why.
2938 (new_symbol): Ditto.
2939
857d11d0
JK
29402010-07-25 Jan Kratochvil <jan.kratochvil@redhat.com>
2941
2942 * linux-nat.c (linux_nat_do_thread_registers): Convert STOP_SIGNAL to
2943 the host signal first.
2944
1fd400ff
TT
29452010-07-23 Tom Tromey <tromey@redhat.com>
2946
2947 * dwarf2read.c (struct dwarf2_per_objfile) <n_type_comp_units,
2948 type_comp_units>: New fields.
2949 (dw2_get_cu): New function.
2950 (create_cus_from_index): Remove unused argument.
2951 (create_signatured_type_hash_from_index): New function.
2952 (create_addrmap_from_index): Update.
2953 (dwarf2_read_index): Handle version 2.
2954 (dw2_find_last_source_symtab, dw2_forget_cached_source_info)
2955 (dw2_lookup_symtab, dw2_do_expand_symtabs_matching)
2956 (dw2_print_stats, dw2_expand_all_symtabs)
2957 (dw2_expand_symtabs_with_filename, dw2_find_symbol_file)
2958 (dw2_expand_symtabs_matching, dw2_map_symbol_filenames): Update.
2959 (dwarf2_initialize_objfile): Call create_debug_types_hash_table.
2960 (allocate_signatured_type_hash_table): New function.
2961 (add_signatured_type_cu_to_list): Likewise.
2962 (create_debug_types_hash_table): Use them. Set type_comp_units.
2963 (read_signatured_type): Ensure section data is available.
2964 (add_address_entry): Don't record empty ranges.
2965 (struct signatured_type_index_data): New.
2966 (write_one_signatured_type): New function.
2967 (write_psymtabs_to_index): Write type CUs.
2968 (save_gdb_index_command): Update comment.
2969 (process_type_comp_unit): Move inititalization of
2970 from_debug_types...
2971 (create_debug_types_hash_table): ... here.
2972
3a674486
JK
29732010-07-23 Jan Kratochvil <jan.kratochvil@redhat.com>
2974
2975 * gdb_gcore.sh (tmpfile): Remove the variable, its initialization,
2976 cleanup and generating of gdb script to it.
2977 (gdb): Use redirection from /dev/null. Use --nx. Turn off pagination
2978 and terminal size. Convert $tmpfile to a series of -ex-es.
2979
54ec275a
KS
29802010-07-23 Keith Seitz <keiths@redhat.com>
2981
2982 * symtab.c (basic_lookup_transparent_type): Call pre-expand
2983 hook for STATIC_BLOCK types, too.
2984
8fd447e6
KS
29852010-07-23 Keith Seitz <keiths@redhat.com>
2986
2987 * dwarf2read.c: Remove unused typedef dwarf2_cu_per_cu_data_ptr
2988 and vector definition.
2989
25b72dde
JK
29902010-07-23 Jan Kratochvil <jan.kratochvil@redhat.com>
2991
2992 * linux-nat.c (cancel_breakpoint): Remove unused forward declaration.
2993
96d19272
JK
29942010-07-22 Jan Kratochvil <jan.kratochvil@redhat.com>
2995
2996 * dwarf2read.c: Include completer.h.
2997 (save_gdb_index_command): Use matching usage command name.
2998 (_initialize_dwarf2_read): New variable c, initialize it by add_cmd.
2999 Set filename_completer for it.
3000
ca1f3406
TT
30012010-07-22 Tom Tromey <tromey@redhat.com>
3002
3003 * dwarf2read.c (create_debug_types_hash_table): Set objfile on
3004 type signature's per-CU data.
3005
ba25b921
PA
30062010-07-22 Pedro Alves <pedro@codesourcery.com>
3007
3008 * NEWS: Mention target reported shared libraries support by
3009 default.
3010
23bd0f7c
PA
30112010-07-21 Pedro Alves <pedro@codesourcery.com>
3012
3013 PR symtab/11827
3014
3015 Revert:
3016 2010-05-21 Pierre Muller <muller@ics.u-strasbg.fr>
3017 * dwarf2read.c (process_die): Also allow DW_TAG_const_type
3018 and DW_TAG_volatile_type.
3019 (new_symbol): Likewise.
3020
883df6dd
SW
30212010-07-21 Sami Wagiaalla <swagiaal@redhat.com>
3022
3023 * eval.c (evaluate_subexp_standard): Disabled evaluation of C++
3024 function symbols before overload resolution.
3025
269b11a2
PA
30262010-07-21 Pedro Alves <pedro@codesourcery.com>
3027
3028 * breakpoint.c (bptype_string): New, abstracted out from
3029 print_one_breakpoint_location.
3030 (print_one_breakpoint_location): Adjust.
3031 (breakpoint_1): Adjust the type column width dynamically.
3032
569b05a5
JK
30332010-07-20 Jan Kratochvil <jan.kratochvil@redhat.com>
3034
3035 * symfile.c (find_separate_debug_file_by_debuglink): Remove
3036 a gdb_assert call, new comment.
3037
ad34eb2f
JK
30382010-07-20 Jan Kratochvil <jan.kratochvil@redhat.com>
3039
3040 * linux-nat.c (linux_handle_extended_wait): Handle case when
3041 event == PTRACE_EVENT_CLONE && stopping && WSTOPSIG (status) != SIGSTOP.
3042
33355866
JK
30432010-07-20 Jan Kratochvil <jan.kratochvil@redhat.com>
3044
3045 Code cleanup.
3046 * linux-nat.c (linux_nat_wait_1): Reset STATUS after calling
3047 linux_nat_wait_1. Use always LP->STATUS afterwards.
3048
26590820
HZ
30492010-07-20 Hui Zhu <teawater@gmail.com>
3050
3051 * inf-ptrace.c (inf_ptrace_create_inferior): Initialize back_to.
3052 (inf_ptrace_attach): Ditto.
3053
c0edd9ed
JK
30542010-07-19 Jan Kratochvil <jan.kratochvil@redhat.com>
3055
3056 Make core files the process_stratum.
3057 * corefile.c (core_target): New variable.
3058 (core_file_command): Remove variable t, use core_target.
3059 * corelow.c (core_ops): Make it static.
3060 (init_core_ops): Change to process_stratum. Initialize CORE_TARGET.
3061 * defs.h (make_cleanup_unpush_target): New prototype.
3062 * gdbarch.h: Regenerate.
3063 * gdbarch.sh (core_pid_to_str): Remove core_stratum from its comment.
3064 * gdbcore.h (core_target): New declaration.
3065 * inf-ptrace.c (inf_ptrace_create_inferior, inf_ptrace_attach): New
3066 variables ops_already_pushed and back_to. Use push_target,
3067 make_cleanup_unpush_target and discard_cleanups calls.
3068 * record.c (record_open): Replace core_stratum by a core_bfd check.
3069 * target.c (target_is_pushed): New function.
3070 (find_core_target): Remove.
3071 * target.h (enum strata) <core_stratum>: Remove.
3072 (target_is_pushed): New declaration.
3073 (find_core_target): Remove declaration.
3074 * tracepoint.c (init_tfile_ops) <to_stratum>: Remove comment.
3075 * utils.c (do_unpush_target, make_cleanup_unpush_target): New functions.
3076
f02253f1
HZ
30772010-07-19 Hui Zhu <teawater@gmail.com>
3078
3079 * breakpoint.c (single_step_breakpoints_inserted): New
3080 function.
3081 * breakpoint.h (single_step_breakpoints_inserted): Extern.
3082 * infrun.c (maybe_software_singlestep): Add check code.
3083 * record.c (record_resume): Add code for software single step.
3084 (record_wait): Ditto.
3085
78768c4a
JK
30862010-07-18 Jan Kratochvil <jan.kratochvil@redhat.com>
3087
3088 * linux-nat.c (linux_handle_extended_wait): Move variable new_lp into
3089 a more inner block. Remove its unused declaration initializer.
3090
431e49aa
TJB
30912010-07-16 Thiago Jung Bauermann <bauerman@br.ibm.com>
3092
3093 * NEWS: Mention support for the new ptrace interface and hardware
3094 accelerated watchpoint conditions on powerpc-linux.
3095
bd91e7ae
OS
30962010-07-16 Ozkan Sezer <sezeroz@gmail.com>
3097
3098 * target.c (debug_to_insert_breakpoint): Instead of casting to unsigned
3099 long and %ld, use core_addr_to_string() and %s to print CORE_ADDR vars
3100 and host_address_to_string() and %s for pointers.
3101 (debug_to_remove_breakpoint): Likewise.
3102 (debug_to_region_ok_for_hw_watchpoint): Likewise.
3103 (debug_to_can_accel_watchpoint_condition): Likewise.
3104 (debug_to_stopped_data_address): Likewise.
3105 (debug_to_watchpoint_addr_within_range): Likewise.
3106 (debug_to_insert_hw_breakpoint): Likewise.
3107 (debug_to_remove_hw_breakpoint): Likewise.
3108 (debug_to_insert_watchpoint): Likewise.
3109 (debug_to_remove_watchpoint): Likewise.
3110
29df156d
SW
31112010-07-16 Sami Wagiaalla <swagiaal@redhat.com>
3112
3113 * symtab.h (symbol_set_demangled_name): Now takes an optional objfile*
3114 argument.
3115 (cplus_specific): New struct.
3116 * symtab.c (symbol_set_demangled_name): Updated.
3117 Use cplus_specific for cplus symbols.
3118 (symbol_get_demangled_name): Retrive the name from the cplus_specific
3119 struct for cplus symbols.
3120 (symbol_init_language_specific): Set cplus_specific for cplus symbols.
3121 (symbol_set_names): Pass objfile to symbol_set_demangled_name.
3122 * symtab.c (symbol_init_cplus_specific): New function.
3123
b250c185
SW
31242010-07-16 Sami Wagiaalla <swagiaal@redhat.com>
3125
3126 * symtab.h (symbol_set_demangled_name): New function.
3127 (symbol_get_demangled_name): New function.
3128 * symtab.c (symbol_set_demangled_name): New function.
3129 (symbol_get_demangled_name): New function.
3130 (symbol_init_language_specific): Use demangled_name setter and getter.
3131 (symbol_set_names): Ditto.
3132 (symbol_natural_name): Ditto.
3133 (symbol_demangled_name): Ditto.
3134 * dwarf2read.c (new_symbol): Ditto.
3135
afa16725
SW
31362010-07-16 Sami Wagiaalla <swagiaal@redhat.com>
3137
3138 * symtab.h: Renamed cplus_specific to mangled_lang.
3139 * symtab.c (symbol_init_language_specific): Updated.
3140 (symbol_set_names): Updated.
3141 (symbol_natural_name): Updated.
3142 (symbol_demangled_name): Updated.
3143 * ada-lang.c (ada_decode_symbol): Updated.
3144 * dwarf2read.c (new_symbol): Updated.
3145
3cbaedff
KW
31462010-07-14 Ken Werner <ken.werner@de.ibm.com>
3147
3148 * valops.c (value_assign): Do not call to value_coerce_to_target.
3149 (value_must_coerce_to_target): Return 0 in case of TYPE_VECTOR.
3150
c932f1be
KW
31512010-07-14 Ken Werner <ken.werner@de.ibm.com>
3152
3153 * MAINTAINERS: Add myself for write after approval privileges.
3154
91158a56
TT
31552010-07-13 Emmanuel Thomé <Emmanuel.Thome@gmail.com>
3156
3157 * c-valprint.c (c_val_print): Add embedded_offset to address in
3158 call to val_print_array_elements.
3159
b3b272e1
TT
31602010-07-13 Tom Tromey <tromey@redhat.com>
3161
3162 * dwarf2read.c (dwarf2_read_index): Correctly set 'total_size'.
3163
bb3fa9d0
TT
31642010-07-13 Tom Tromey <tromey@redhat.com>
3165
3166 * dwarf2read.c (dwarf2_per_cu_text_offset): Fix reference to
3167 objfile.
3168
dd786858
TT
31692010-07-13 Tom Tromey <tromey@redhat.com>
3170
3171 * symfile.c (set_initial_language): Update.
3172 (deduce_language_from_filename): Argument type now const.
3173 * symtab.h (find_main_filename): Update.
3174 (deduce_language_from_filename): Update.
3175 * symtab.c (find_main_filename): Make result const.
3176 * dwarf2read.c (dw2_find_symbol_file): Change return type.
3177 * psymtab.c (find_symbol_file_from_partial): Change return type.
3178 * symfile.h (struct quick_symbol_functions) <find_symbol_file>:
3179 Make result const.
3180
9291a0cd
TT
31812010-07-13 Tom Tromey <tromey@redhat.com>
3182
3183 * breakpoint.c (save_cmdlist): No longer static.
3184 * gdbcmd.h (save_cmdlist): Declare.
3185 * symfile.c (symbol_file_add_with_addrs_or_offsets): Set
3186 OBJF_READNOW on objfile if readnow_symbol_files.
3187 * elfread.c (elf_symfile_read): Use dwarf2_initialize_objfile.
3188 (elf_sym_fns_gdb_index): New global.
3189 * dwarf2read.c: Include exceptions.h.
3190 (offset_type): New.
3191 (struct mapped_index): New.
3192 (dwarf2_per_cu_data_ptr): New typedef.
3193 (struct dwarf2_per_objfile) <using_index, index_table, gdb_index>:
3194 New fields.
3195 (GDB_INDEX_SECTION): New define.
3196 (struct dwarf2_per_cu_quick_data): New.
3197 (struct dwarf2_per_cu_data) <objfile>: New field.
3198 <psymtab>: Removed.
3199 <v>: New field.
3200 (byte_swap): New function.
3201 (MAYBE_SWAP): New macro.
3202 (INDEX_SUFFIX): New macro.
3203 (dw2_do_instantiate_symtab): New function.
3204 (dw2_instantiate_symtab): Likewise.
3205 (create_cus_from_index): Likewise.
3206 (create_addrmap_from_index): Likewise.
3207 (mapped_index_string_hash): Likewise.
3208 (find_slot_in_mapped_hash): Likewise.
3209 (dwarf2_read_index): Likewise.
3210 (dw2_setup): Likewise.
3211 (dw2_require_line_header): Likewise.
3212 (dw2_require_full_path): Likewise.
3213 (dw2_find_last_source_symtab): Likewise.
3214 (dw2_forget_cached_source_info): Likewise.
3215 (dw2_lookup_symtab): Likewise.
3216 (dw2_lookup_symbol): Likewise.
3217 (dw2_do_expand_symtabs_matching): Likewise.
3218 (dw2_pre_expand_symtabs_matching): Likewise.
3219 (dw2_print_stats): Likewise.
3220 (dw2_dump): Likewise.
3221 (dw2_relocate): Likewise.
3222 (dw2_expand_symtabs_for_function): Likewise.
3223 (dw2_expand_all_symtabs): Likewise.
3224 (dw2_expand_symtabs_with_filename): Likewise.
3225 (dw2_find_symbol_file): Likewise.
3226 (dw2_map_ada_symtabs): Likewise.
3227 (dw2_expand_symtabs_matching): Likewise.
3228 (dw2_find_pc_sect_symtab): Likewise.
3229 (dw2_map_symbol_names): Likewise.
3230 (dw2_map_symbol_filenames): Likewise.
3231 (dw2_has_symbols): Likewise.
3232 (dwarf2_gdb_index_functions): New global.
3233 (dwarf2_initialize_objfile): New function.
3234 (process_psymtab_comp_unit): Update.
3235 (add_partial_subprogram): Likewise.
3236 (dwarf2_psymtab_to_symtab): Likewise.
3237 (psymtab_to_symtab_1): Use dw2_do_instantiate_symtab.
3238 (process_full_comp_unit): Update.
3239 (find_file_and_directory): New function.
3240 (read_file_scope): Use find_file_and_directory.
3241 (dwarf2_per_cu_objfile): Update.
3242 (dwarf2_per_cu_addr_size): Update.
3243 (dwarf2_per_cu_offset_size): Update.
3244 (dwarf2_free_objfile): Free the index, if needed.
3245 (dwarf2_per_objfile_free): Unmap the index, if needed.
3246 (struct strtab_entry): New.
3247 (hash_strtab_entry): New function.
3248 (eq_strtab_entry): Likewise.
3249 (create_strtab): Likewise.
3250 (add_string): Likewise.
3251 (struct symtab_index_entry): New.
3252 (struct mapped_symtab): New.
3253 (hash_symtab_entry): New function.
3254 (eq_symtab_entry): Likewise.
3255 (delete_symtab_entry): Likewise.
3256 (create_index_table): Likewise.
3257 (create_mapped_symtab): Likewise.
3258 (cleanup_mapped_symtab): Likewise.
3259 (find_slot): Likewise.
3260 (hash_expand): Likewise.
3261 (add_index_entry): Likewise.
3262 (add_indices_to_cpool): Likewise.
3263 (write_hash_table): Likewise.
3264 (add_address_entry): Likewise.
3265 (write_psymbols): Likewise.
3266 (write_obstack): Likewise.
3267 (unlink_if_set): Likewise.
3268 (write_psymtabs_to_index): Likewise.
3269 (save_gdb_index_command): Likewise.
3270 (_initialize_dwarf2_read): Install "save gdb-index"
3271 command.
3272 (create_all_comp_units): Initialize 'objfile' field of CU.
3273 (dwarf2_locate_sections): Check for .gdb_index.
3274 * psymtab.h (dwarf2_gdb_index_functions): Declare.
3275 * symfile.h (dwarf2_initialize_objfile): Declare.
3276
58b6ab13
TT
32772010-07-13 Tom Tromey <tromey@redhat.com>
3278
3279 * symtab.c (lookup_symbol_aux_symtabs): Call pre-expand hook.
3280 (basic_lookup_transparent_type): Likewise.
3281 * symfile.h (struct quick_symbol_functions)
3282 <pre_expand_symtabs_matching>: New field.
3283 * psymtab.c (pre_expand_symtabs_matching_psymtabs): New function.
3284 (psym_functions): Update.
3285
0f5238ed
TT
32862010-07-13 Tom Tromey <tromey@redhat.com>
3287
3288 PR breakpoints/8357:
3289 * symtab.h (domain_enum_tag) <LABEL_DOMAIN>: Update comment.
3290 * linespec.c (decode_line_1): Update comment. Call decode_label.
3291 (decode_label): New function.
3292 (symbol_found): Handle LOC_LABEL.
3293 * dwarf2read.c (new_symbol) <DW_TAG_label>: Set symbol's type and
3294 domain. Call add_symbol_to_list.
3295
9aa1f1e3
TT
32962010-07-13 Tom Tromey <tromey@redhat.com>
3297
3298 * dwarf2loc.h (dwarf2_per_cu_text_offset): Declare.
3299 * dwarf2loc.c (find_location_expression): Use
3300 dwarf2_per_cu_text_offset.
3301 (dwarf2_evaluate_loc_desc): Likewise.
3302 (dwarf2_loc_desc_needs_frame): Likewise.
3303 (compile_dwarf_to_ax): Likewise.
3304 (loclist_describe_location): Likewise.
3305 * dwarf2read.c (dwarf2_per_cu_text_offset): New function.
3306 (dwarf2_per_cu_objfile): Update comment.
3307
953ac07e
JK
33082010-07-12 Jan Kratochvil <jan.kratochvil@redhat.com>
3309
3310 * dwarf2read.c (read_subrange_type): Call read_subrange_type.
3311 * p-lang.c (pascal_printstr): Likewise.
3312
f04e4012
TT
33132010-07-09 Tom Tromey <tromey@redhat.com>
3314
3315 * python/py-prettyprint.c (gdbpy_get_display_hint): Don't use
3316 'hint' if it is NULL.
3317
f4dfd9c0
HZ
33182010-07-09 Hui Zhu <teawater@gmail.com>
3319
3320 * source.c (print_source_lines_base): Add check for noprint.
3321
7e6e39e5
JB
33222010-07-08 Joel Brobecker <brobecker@adacore.com>
3323
3324 * python/python-config.py: Resync with Python 2.7 version of this
3325 script.
3326
76b8507d
JB
33272010-07-08 Joel Brobecker <brobecker@adacore.com>
3328
3329 * NEWS: Fix typo in section name (s/GDB 7.1/GDB 7.2).
3330
797054e6
JB
33312010-07-07 Joel Brobecker <brobecker@adacore.com>
3332
3333 * NEWS: Create a new section for the next release branch.
3334 Rename the section of the current branch, now that it has
3335 been cut.
3336
c80befee 33372010-07-07 Joel Brobecker <brobecker@adacore.com>
3338
3339 GDB 7.2 branch created (branch timestamp: 2010-07-07 17:00 UTC)
3340 * version.in: Bump version to 7.2.50.20100707-cvs.
3341
ac56253d
TT
33422010-07-07 Tom Tromey <tromey@redhat.com>
3343
3344 * dwarf2read.c (dwarf2_const_value) <DW_form_addr>: Create a
3345 LOC_COMPUTED symbol.
3346 * dwarf2loc.c (dwarf2_evaluate_loc_desc): Set new field.
3347 (dwarf2_loc_desc_needs_frame): Likewise.
3348 (compile_dwarf_to_ax) <DW_OP_addr>: Use offset.
3349 * dwarf2expr.h (struct dwarf_expr_context) <offset>: New field.
3350 * dwarf2expr.c (execute_stack_op) <DW_OP_addr>: Use offset.
3351 * dwarf2-frame.c (execute_stack_op): Set 'offset' field. Add
3352 'offset' argument.
3353 (struct dwarf2_frame_cache) <text_offset>: New field.
3354 (dwarf2_frame_cache): Set new field.
3355 (dwarf2_frame_prev_register): Update.
3356 (dwarf2_frame_sniffer): Update.
3357 (dwarf2_frame_base_sniffer): Update.
3358 (dwarf2_frame_find_fde): Add 'out_offset' argument.
3359
0cf6dd15
TJB
33602010-07-07 Sergio Durigan Junior <sergiodj@linux.vnet.ibm.com>
3361 Thiago Jung Bauermann <bauerman@br.ibm.com>
3362
3363 Support for hw accelerated condition watchpoints in booke powerpc.
3364
3365 * breakpoint.c (fetch_watchpoint_value): Rename to fetch_subexp_value
3366 and move to eval.c. Change callers.
3367 (insert_bp_location): Pass watchpoint condition in
3368 target_insert_watchpoint.
3369 (remove_breakpoint_1) Pass watchpoint condition in
3370 target_remove_watchpoint.
3371 (watchpoint_locations_match): Call
3372 target_can_accel_watchpoint_condition.
3373 * eval.c: Include wrapper.h.
3374 (fetch_subexp_value): Moved from breakpoint.c.
3375 * ppc-linux-nat.c (ppc_linux_region_ok_for_hw_watchpoint):
3376 Formatting fix.
3377 (can_use_watchpoint_cond_accel): New function.
3378 (calculate_dvc): Likewise.
3379 (num_memory_accesses): Likewise.
3380 (check_condition): Likewise.
3381 (ppc_linux_can_accel_watchpoint_condition): Likewise
3382 (ppc_linux_insert_watchpoint): Call can_use_watchpoint_cond_accel,
3383 check_condition and calculate_dvc.
3384 (ppc_linux_remove_watchpoint): Likewise.
3385 (_initialize_ppc_linux_nat): Set to_can_accel_watchpoint_condition to
3386 ppc_linux_can_accel_watchpoint_condition
3387 * target.c (debug_to_insert_watchpoint): Add argument for watchpoint
3388 condition.
3389 (debug_to_remove_watchpoint): Likewise.
3390 (debug_to_can_accel_watchpoint_condition): New function.
3391 (update_current_target): Set to_can_accel_watchpoint_condition.
3392 (setup_target_debug): Set to_can_accel_watchpoint_condition.
3393 * target.h: Add opaque declaration for struct expression.
3394 (struct target_ops) <to_insert_watchpoint>,
3395 <to_remove_watchpoint>: Add new arguments to pass the watchpoint
3396 <to_can_accel_watchpoint_condition>: New member.
3397 condition. Update all callers and implementations.
3398 (target_can_accel_watchpoint_condition): New macro.
3399 * value.c (free_value_chain): New function.
3400 * value.h (fetch_subexp_value): New prototype.
3401 (free_value_chain): Likewise.
3402
2f2241f1
UW
34032010-07-07 Ulrich Weigand <uweigand@de.ibm.com>
3404
3405 * linux-nat.c (linux_nat_do_thread_registers): Use section size
3406 from gdbarch_core_regset_sections also for .reg if present.
3407
3408 * amd64-linux-tdep.c (amd64_linux_regset_sections): Fix incorrect
3409 section size for .reg.
3410 * ppc-linux-tdep.c (ppc_linux_vsx_regset_sections): Likewise.
3411 (ppc_linux_vmx_regset_sections): Likewise.
3412 (ppc_linux_fp_regset_sections): Likewise.
3413 (ppc64_linux_vsx_regset_sections): New variable.
3414 (ppc64_linux_vmx_regset_sections): Likewise.
3415 (ppc64_linux_fp_regset_sections): Likewise.
3416 (ppc_linux_init_abi): Install core_regset_section lists appropriate
3417 for current word size.
3418
1fd7cdc2
JB
34192010-07-06 Joel Brobecker <brobecker@adacore.com>
3420
3421 * server.c (myresume): Make static.
3422
11763c18
TT
34232010-07-06 Tom Tromey <tromey@redhat.com>
3424
3425 * configure, config.in: Rebuild.
3426 * configure.ac (HAVE_LIBPYTHON2_7): New define.
3427 * python/python-internal.h: Handle HAVE_LIBPYTHON2_7.
3428
a6cc4789
AS
34292010-07-06 Andreas Schwab <schwab@linux-m68k.org>
3430
3431 * breakpoint.c (_initialize_breakpoint): Add "cl" as alias for
3432 "clear".
3433
f9e9243a
UW
34342010-07-06 Ken Werner <ken.werner@de.ibm.com>
3435
3436 * gdbtypes.h (floatformats_ieee_half): Add declaration.
3437 * gdbtypes.c (floatformats_ieee_half): New variable.
3438 * doublest.c (floatformat_from_length): Set format to
3439 gdbarch_half_format if length matches.
3440 * gdbarch.sh (half_bit): New architecture method.
3441 (half_format): Likewise.
3442 * gdbarch.h: Regenerate.
3443 * gdbarch.c: Likewise.
3444
4e5799b6
JK
34452010-07-05 Jan Kratochvil <jan.kratochvil@redhat.com>
3446 Joel Brobecker <brobecker@adacore.com>
3447
3448 Fix re-run of PIE executable, PR shlibs/11776.
3449 * solib-svr4.c (svr4_relocate_main_executable) <symfile_objfile>: Remove
3450 the part of pre-set SYMFILE_OBJFILE->SECTION_OFFSETS.
3451
86e4bafc
JK
34522010-07-05 Jan Kratochvil <jan.kratochvil@redhat.com>
3453 Joel Brobecker <brobecker@adacore.com>
3454
3455 * auxv.c (memory_xfer_auxv): Update attach comment.
3456 * solib-svr4.c (svr4_special_symbol_handling): Remove the call to
3457 svr4_relocate_main_executable.
3458 (svr4_solib_create_inferior_hook): Make the call to
3459 svr4_relocate_main_executable unconditional.
3460
3cd07d20
JK
34612010-07-05 Jan Kratochvil <jan.kratochvil@redhat.com>
3462 Joel Brobecker <brobecker@adacore.com>
3463
3464 * auxv.c (ld_so_xfer_auxv): Do not error on failed read of data_address.
3465
0a1e94c7
JK
34662010-07-05 Jan Kratochvil <jan.kratochvil@redhat.com>
3467 Joel Brobecker <brobecker@adacore.com>
3468
3469 Fix attaching to PIEs prelinked on the disk after the process was
3470 started.
3471 * solib-svr4.c (svr4_exec_displacement): New variable arch_size.
3472 Verify it against bfd_get_arch_size. Try to match arbitrary
3473 displacement for the phdrs comparison.
3474
5387647f
TT
34752010-07-02 Tom Tromey <tromey@redhat.com>
3476
3477 PR exp/11780:
3478 * libunwind-frame.c (libunwind_frame_prev_register): Don't set
3479 value as optimized-out.
3480
38b6c3b3
TJB
34812010-07-02 Ulrich Weigand <uweigand@de.ibm.com>
3482 Thiago Jung Bauermann <bauerman@br.ibm.com>
3483
3484 * breakpoint.c (can_use_hardware_watchpoint): Answer "what does this
3485 represent?" question in comment. Change comment to a proper sentence.
3486
a17ac5b0
TT
34872010-07-02 Ken Werner <ken.werner@de.ibm.com>
3488
3489 * c-valprint.c (c_val_print): Fix printing of character vectors.
3490
bddaafad
JK
34912010-07-02 Jan Kratochvil <jan.kratochvil@redhat.com>
3492
3493 * spu-tdep.c (spu_catch_start): Adjust the caller of changed
3494 create_breakpoint prototype.
3495
d41c0fc8
PA
34962010-07-01 Pedro Alves <pedro@codesourcery.com>
3497
3498 * breakpoint.c (BREAK_ARGS_HELP, _initialize_breakpoint): Clarify
3499 usefulness suggestion of multiple breakpoints at same location.
3500
dc10affe
PA
35012010-07-01 Pedro Alves <pedro@codesourcery.com>
3502
3503 * breakpoint.c (BREAK_ARGS_HELP): Add missing `the'.
3504
cabe9ab6
PA
35052010-07-01 Pedro Alves <pedro@codesourcery.com>
3506
3507 * dwarf2loc.c (locexpr_tracepoint_var_ref)
3508 (loclist_tracepoint_var_ref): Handle optimized out values.
3509
cce7e648
PA
35102010-07-01 Pedro Alves <pedro@codesourcery.com>
3511
3512 * breakpoint.c (update_watchpoint, _initialize_breakpoint): Remove
3513 unnecessary space in string.
3514 * filesystem.c (_initialize_filesystem): Ditto.
3515 * frame.c (_initialize_frame): Ditto.
3516 * infcmd.c (step_once): Ditto.
3517 * infrun.c (_initialize_infrun): Ditto.
3518 * linux-nat.c (linux_child_follow_fork): Ditto.
3519 * maint.c (maintenance_deprecate): Ditto.
3520 * memattr.c (_initialize_mem): Ditto.
3521 * mips-tdep.c (_initialize_mips_tdep): Ditto.
3522 * monitor.c (monitor_open): Ditto.
3523 * procfs.c (procfs_xfer_memory): Ditto.
3524 * reverse.c (bookmarks_info): Ditto.
3525 * sh64-tdep.c (sh64_show_media_regs, sh64_show_compact_regs): Ditto.
3526 * stack.c (_initialize_stack): Ditto.
3527 * tracepoint.c (_initialize_tracepoint): Ditto.
3528 * xtensa-tdep.c (xtensa_supply_gregset,
3529 xtensa_regset_from_core_section): Ditto.
3530
b65c7efe
TT
35312010-07-01 Tom Tromey <tromey@redhat.com>
3532
3533 * value.h (struct lval_funcs) <check_any_valid>: Rename from
3534 check_all_valid.
3535 * value.c (value_entirely_optimized_out): Invert result. Update
3536 for new function name.
3537
0fb4aa4b
PA
35382010-07-01 Pedro Alves <pedro@codesourcery.com>
3539
3540 Static tracepoints support.
3541
3542 * NEWS: Mention new support for static tracepoints.
3543 (New packets): Mention qTfSTM, qTsSTM, qTSTMat and
3544 qXfer:statictrace:read.
3545 (New features in the GDB remote stub, GDBserver): Mention static
3546 tracepoints support using an UST based backend.
3547 (New commands): Mention "info static-tracepoint-markers" and
3548 "strace".
3549 * breakpoint.c (is_marker_spec): New.
3550 (is_tracepoint): Handle static tracepoints.
3551 (validate_commands_for_breakpoint): Static tracepoints can't do
3552 while-stepping.
3553 (static_tracepoints_here): New.
3554 (bpstat_what): Handle static tracepoints.
3555 (print_one_breakpoint_location, allocate_bp_location, mention):
3556 Ditto.
3557 (create_breakpoint_sal): Ditto.
3558 (decode_static_tracepoint_spec): New.
3559 (create_breakpoint): Replace `hardwareflag', and `traceflag' with
3560 `type_wanted'. Adjust. Handle static tracepoint marker
3561 locations.
3562 (break_command_1): Adjust.
3563 (update_static_tracepoint): New.
3564 (update_breakpoint_locations): Handle static tracepoints.
3565 (breakpoint_re_set_one): Handle static tracepoint marker
3566 locations.
3567 (disable_command, enable_command): Handle static tracepoints.
3568 (trace_command, ftrace_command): Adjust.
3569 (strace_command): New.
3570 (create_tracepoint_from_upload): Adjust.
3571 (save_breakpoints): Handle static tracepoints.
3572 (_initialize_breakpoint): Install the "strace" command.
3573 * breakpoint.h (enum bptype): New bp_static_tracepoint type.
3574 (struct breakpoint): New fields static_trace_marker_id and
3575 static_trace_marker_id_idx.
3576 (breakpoints_here_p): Declare.
3577 (create_breakpoint): Adjust.
3578 (static_tracepoints_here): Declare.
3579 * remote.c (struct remote_state) <static_tracepoints>: New field.
3580 (PACKET_qXfer_statictrace_read, PACKET_StaticTracepoints): New.
3581 (remote_static_tracepoint_marker_at): New.
3582 (remote_static_tracepoint_markers_by_strid): New.
3583 (remote_static_tracepoint_feature): New.
3584 (remote_disconnected_tracing_feature): Handle "StaticTracepoints".
3585 (remote_xfer_partial): Handle TARGET_OBJECT_STATIC_TRACE_DATA.
3586 (remote_supports_static_tracepoints): New.
3587 (remote_download_tracepoint): Download static tracepoints.
3588 (init_remote_ops): Install remote_static_tracepoint_marker_at and
3589 remote_static_tracepoint_markers_by_strid.
3590 (_initialize_remote): Install set|show remote static-tracepoints,
3591 and set|show remote read-sdata-object commands.
3592 * target.c (update_current_target): Inherit and default
3593 to_static_tracepoint_marker_at, and
3594 to_static_tracepoint_markers_by_strid.
3595 * target.h (static_tracepoint_marker): Forward declare.
3596 (enum target_object): New object TARGET_OBJECT_STATIC_TRACE_DATA.
889bf7c5 3597 (static_tracepoint_marker_p): New typedef.
0fb4aa4b
PA
3598 (DEF_VEC_P(static_tracepoint_marker_p)): New VEC type.
3599 (struct target_ops): New fields to_static_tracepoint_marker_at and
3600 to_static_tracepoint_markers_by_strid.
3601 (target_static_tracepoint_marker_at)
3602 (target_static_tracepoint_markers_by_strid): New.
3603 * tracepoint.c: Include source.h.
3604 (validate_actionline): Handle $_sdata.
3605 (struct collection_list): New field strace_data.
3606 (add_static_trace_data): New.
3607 (clear_collection_list): Clear strace_data.
3608 (stringify_collection_list): Account for a possible static trace
3609 data collection.
3610 (encode_actions_1): Encode an $_sdata collection.
3611 (parse_tracepoint_definition): Handle static tracepoints.
3612 (parse_static_tracepoint_marker_definition): New.
3613 (release_static_tracepoint_marker): New.
3614 (print_one_static_tracepoint_marker): New.
3615 (info_static_tracepoint_markers_command): New.
3616 (sdata_make_value): New.
3617 (_initialize_tracepoint): Create the $_sdata convenience variable.
3618 Add the "info static-tracepoint-markers" command.
3619 Mention $_sdata in the "collect" command's help output.
3620 * tracepoint.h (struct static_tracepoint_marker): New.
3621 (parse_static_tracepoint_marker_definition)
3622 (release_static_tracepoint_marker): Declare.
3623 * mi/mi-cmd-break.c (mi_cmd_break_insert): Adjust.
3624 * python/py-breakpoint.c (bppy_new): Adjust.
3625
aac63f0f
JB
36262010-06-30 Joel Brobecker <brobecker@adacore.com>
3627
3628 * python/python-internal.h (_XOPEN_SOURCE): Undefine before
3629 including Python.h.
3630
e68994a7
DE
36312010-06-29 Doug Evans <dje@google.com>
3632
3863f96c
DE
3633 PR gdb/11702
3634 * dwarf2read.c (dwarf2_add_field): Only create a symbol if
3635 DW_AT_external is present.
3636
254e6b9e
DE
3637 PR gdb/11702
3638 * NEWS: Add entry.
3639 * dwarf2read.c (dwarf2_add_field): If DW_AT_const_value is present,
3640 create a symbol for the field and record the value.
3641 (new_symbol): Handle DW_TAG_member.
3642 * gdbtypes.c (field_is_static): Remove FIXME.
3643 * symtab.c (search_symbols): When searching for VARIABLES_DOMAIN,
3644 only ignore LOC_CONST symbols that are enums.
3645
6e70227d
DE
3646 * dwarf2read.c: Remove trailing whitespace.
3647
e68994a7
DE
3648 Delete FIELD_LOC_KIND_DWARF_BLOCK, unused.
3649 * gdbtypes.h (enum field_loc_kind): Delete FIELD_LOC_KIND_DWARF_BLOCK.
3650 (struct main_type, field loc): Delete dwarf_block.
3651 (FIELD_DWARF_BLOCK): Delete.
3652 (SET_FIELD_DWARF_BLOCK): Delete.
3653 (TYPE_FIELD_DWARF_BLOCK): Delete.
3654 * gdb-gdb.py (StructMainTypePrettyPrinter.struct_field_location_img):
3655 Update.
3656
a480d2f6
HZ
36572010-06-29 Hui Zhu <teawater@gmail.com>
3658
3659 * record.c (set_record_pic_cmdlist,
3660 show_record_pic_cmdlist): New variables.
3661 (set_record_pic_command,
3662 show_record_pic_command): New functions.
3663 (record_pic_function, record_pic_line, record_pic_enum,
3664 set_record_pic_type, record_pic_hide_nofunction,
3665 record_pic_hide_nosource, record_pic_hide_same): New variables.
3666 (record_pic_fputs): New function.
3667 (function_list, node_list, edge_list): New struct.
3668 (function_list, node_list, edge_list): New variables.
3669 (record_pic_cleanups, record_pic_node,
3670 record_pic_edge, cmd_record_pic): New functions.
3671 (_initialize_record): Add new commands for record pic.
3672
a0d7a4ff
JK
36732010-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
3674
3675 * dwarf2read.c (read_structure_type) <fi.typedef_field_list>: Call
3676 ALLOCATE_CPLUS_STRUCT_TYPE.
3677
595939de 36782010-06-28 Phil Muldoon <pmuldoon@redhat.com>
889bf7c5
PA
3679 Tom Tromey <tromey@redhat.com>
3680 Thiago Jung Bauermann <bauerman@br.ibm.com>
595939de
PM
3681
3682 * value.c (pack_unsigned_long): New function.
3683 (value_from_ulongest): New function.
3684 * value.h (value_from_ulongest): Declare.
3685 * python/python.c (_initialize_python): Call
3686 gdbpy_initialize_thread and gdbpy_initialize_inferior.
3687 * python/python-internal.h: Define thread_object.
3688 (gdbpy_inferiors, gdbpy_selected_thread)
3689 (frame_info_to_frame_object, create_thread_object)
3690 (find_thread_object, find_inferior_object)
3691 (gdbpy_initialize_thread, gdbpy_initialize_inferiors)
3692 (gdbpy_is_value_object, get_addr_from_python): Declare.
3693 * python/py-value.c (builtin_type_upylong): Define.
3694 (convert_value_from_python): Add logic for ulongest.
3695 (gdbpy_is_value_object): New function.
3696 * python/py-utils.c (get_addr_from_python): New function.
3697 * python/py-frame.c (frame_info_to_frame_object): Return a PyObject.
3698 (gdbpy_selected_frame): Use PyObject over frame_info.
3699 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-inferior and
3700 py-infthread.
3701 (SUBDIR_PYTHON_SRCS): Likewise.
3702 (py-inferior.o): New Rule.
3703 (py-infthread.o): New Rule.
3704 * python/py-inferior.c: New File.
3705 * python/py-infthread.c: New File.
3706
98751a41
JK
37072010-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
3708
3709 * c-typeprint.c (c_type_print_base): For no fields check include also
3710 TYPE_TYPEDEF_FIELD_COUNT. Print new typedefs section.
3711 * dwarf2read.c (struct typedef_field_list)
3712 (struct field_info) <typedef_field_list, typedef_field_list_count>: New.
3713 (dwarf2_add_typedef): New.
3714 (read_structure_type): Call dwarf2_add_typedef for DW_TAG_typedef.
3715 Copy also FI.TYPEDEF_FIELD_LIST.
3716 * gdbtypes.h (struct typedef_field)
3717 (struct cplus_struct_type) <typedef_field, typedef_field_count>
3718 (TYPE_TYPEDEF_FIELD_ARRAY, TYPE_TYPEDEF_FIELD, TYPE_TYPEDEF_FIELD_NAME)
3719 (TYPE_TYPEDEF_FIELD_TYPE, TYPE_TYPEDEF_FIELD_COUNT): New.
3720
41f62f39
JK
37212010-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
3722
3723 * cp-namespace.c (cp_lookup_nested_type): New variable
3724 concatenated_name. Turn the current return condition into a reverse
3725 one. Call also lookup_static_symbol_aux on the constructed qualified
3726 name.
3727 * symtab.c (lookup_symbol_aux): Move variable objfile and searching in
3728 other files into a called ...
3729 (lookup_static_symbol_aux): ... new function here.
3730 * symtab.h (lookup_static_symbol_aux): New prototype.
3731 * valops.c (value_maybe_namespace_elt): Call also
3732 lookup_static_symbol_aux if we failed otherwise.
3733
af53d231
JK
37342010-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
3735
3736 Fix PR c++/11703 and PR gdb/1448.
3737 * c-exp.y (yylex) <last_was_coloncolon && first_was_coloncolon>: Add
3738 FIRST_ITER check.
3739
9655fd1a
JK
37402010-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
3741
3742 Fix modification of cplus_struct_default.
3743 * dwarf2read.c (dwarf2_add_member_fn) <no DW_AT_vtable_elem_location>:
3744 Call ALLOCATE_CPLUS_STRUCT_TYPE.
3745 * gdbtypes.c (cplus_struct_default): New empty initializer, comment it.
3746
9279c692
JB
37472010-06-28 Joel Brobecker <brobecker@adacore.com>
3748
3749 * NEWS: Add entry announcing the python directory.
3750
d3f41bb1
TT
37512010-06-28 Tom Tromey <tromey@redhat.com>
3752
3753 * dwarf2read.c (read_structure_type): Allocate null cleanup later.
3754
23e7acfb
DE
37552010-06-28 Doug Evans <dje@google.com>
3756
3757 * breakpoint.c (breakpoint_sals_to_pc): Delete arg address, unused.
3758 All callers updated.
3759
6036c742
JK
37602010-06-28 Jan Kratochvil <jan.kratochvil@redhat.com>
3761
3762 * cp-valprint.c (cp_print_value_fields) <recurse == 0>: Call
3763 obstack_begin after each obstack_free.
3764
9f18a3b3
DE
37652010-06-27 Doug Evans <dje@google.com>
3766
1596cb5d
DE
3767 * value.c (value_static_field): Use `switch' instead of `if'.
3768 Assert-fail if passed invalid TYPE_FIELD_LOC_KIND.
3769
9f18a3b3
DE
3770 * valops.c (search_struct_field): Fix typo in error message.
3771
43dabe42
UW
37722010-06-26 Ulrich Weigand <uweigand@de.ibm.com>
3773
3774 * dwarf2expr.c (execute_stack_op): Place preprocessor
3775 directives at the start of the source line.
3776
0f3bb72e
PH
37772010-06-25 Paul Hilfinger <hilfinger@adacore.com>
3778
6036c742
JK
3779 * defs.h (make_command_stats_cleanup): Declare.
3780 (set_display_time): Declare.
3781 (set_display_space): Declare.
3782 * event-top.c (command_handler): Use make_command_stats_cleanup.
3783 * main.c (display_time, display_space): Move definitions to utils.c.
3784 (captured_main): Use make_command_stats_cleanup to get start-up
3785 statistics.
3786 Use set_display_time and set_display_space for processing OPT_STATISTICS
3787 case.
3788 * maint.c (maintenance_time_display): Use set_display_time.
3789 (maintenance_space_display): Use set_display_space.
3790 * top.c (execute_command): Remove obsolete 'maint time' code.
3791 (command_loop): Use make_command_stats_cleanup.
3792 * utils.c (struct cmd_stats): Structure for storing initial time
3793 and space usage.
3794 (display_time, display_space): Move definitions here from utils.c.
3795 (set_display_time): New function.
3796 (set_display_space): New function.
3797 (make_command_stats_cleanup): New function.
3798 (report_command_stats): New auxiliary function for
3799 make_command_stats_cleanup.
0f3bb72e 3800
070c8028
UW
38012010-06-25 Ulrich Weigand <uweigand@de.ibm.com>
3802
3803 * solib-spu.c (append_ocl_sos): Fix xsnprintf statement for
3804 hosts where CORE_ADDR is long long.
3805
bc9f0842
TT
38062010-06-25 Tom Tromey <tromey@redhat.com>
3807
3808 PR python/10808:
3809 * python/python.c (execute_gdb_command): Add keywords. Accept
3810 "to_string" argument.
3811 (struct restore_ui_file_closure): New.
3812 (restore_ui_file): New function.
3813 (make_cleanup_restore_ui_file): Likewise.
3814 (GdbMethods) <execute>: Update.
3815
c0cc4c83
UW
38162010-06-25 Ulrich Weigand <uweigand@de.ibm.com>
3817
3818 * s390-tdep.c (s390_push_dummy_call): Error on stack overflow
3819 during inferior call stack frame setup.
3820
f1d8ee66
UW
38212010-06-25 Ken Werner <ken.werner@de.ibm.com>
3822
3823 * solib-spu.c: Include "exception.h".
3824 (ocl_program_data_key): New variable.
3825 (append_ocl_sos): New function.
3826 (ocl_enable_break): Likewise.
3827 (spu_current_sos): Call append_ocl_sos.
3828 (spu_solib_loaded): Call ocl_enable_break.
3829 (_initialize_spu_solib): Register ocl_program_data_key.
3830
19c0c0f8
UW
38312010-06-25 Ulrich Weigand <uweigand@de.ibm.com>
3832
3833 * cp-support.c (reset_directive_searched): New function.
3834 (make_symbol_overload_list_using): Prevent recursive calls.
3835
0f6a939d
PM
38362010-06-25 Phil Muldoon <pmuldoon@redhat.com>
3837
3838 * printcmd.c (print_variable_and_value): Print error message on
3839 caught exception.
3840
f2c7657e
UW
38412010-06-25 Ulrich Weigand <uweigand@de.ibm.com>
3842
3843 * dwarf2expr.h (struct dwarf_value_location): Use ULONGEST as type
3844 of stack values.
3845 (struct dwarf_expr_piece): Rename "expr" member to "mem". Add new
3846 "value" member.
3847 (dwarf_expr_push): Change input type to ULONGEST.
3848 (dwarf_expr_fetch): Change return type to ULONGEST.
3849 (dwarf_expr_fetch_address): Add prototype.
3850 (dwarf2_read_address): Remove prototype.
3851 * dwarf2expr.c (dwarf_expr_push): Use ULONGEST as type of stack values.
3852 Truncate stack values to ctx->addr_size bytes.
3853 (dwarf_expr_fetch): Change return value to ULONGEST.
3854 (dwarf_expr_fetch_address): New function.
3855 (add_piece): Use dwarf_expr_fetch_address instead of dwarf_expr_fetch
3856 when appropriate. Update for struct dwarf_expr_piece changes.
3857 (dwarf2_read_address): Remove.
3858 (unsigned_address_type): Remove.
3859 (signed_address_type): Remove.
3860 (execute_stack_op): Use dwarf_expr_fetch_address instead of
3861 dwarf_expr_fetch when appropriate. Use ULONGEST as type of stack
3862 values. Perform operations on ULONGEST instead of on GDB values,
3863 sign-extending from ctx->addr_size bytes as needed. Read DW_OP_addr
3864 values and DW_OP_deref results as unsigned integers.
3865 * dwarf2loc.c (read_pieced_value): Update for struct dwarf_expr_piece
3866 changes.
3867 (write_pieced_value): Likewise.
3868 (dwarf2_evaluate_loc_desc): Use dwarf_expr_fetch_address instead of
3869 dwarf_expr_fetch when appropriate.
3870 (compile_dwarf_to_ax): Read DW_OP_addr values as unsigned integers.
3871 * dwarf2-frame.c (execute_stack_op): Use dwarf_expr_fetch_address
3872 instead of dwarf_expr_fetch when appropriate.
3873
b1d61bc9
PM
38742010-06-25 Pierre Muller <muller@ics.u-strasbg.fr>
3875
3876 * c-typeprint.c (c_print_typedef): Append new type name for typedefs.
3877
b14285f6
JB
38782010-06-24 Joel Brobecker <brobecker@adacore.com>
3879
3880 * python/python.c (_initialize_python): Add new "constant"
3881 PYTHONDIR in gdb module. Insert this path at the head of
3882 sys.path. Set gdb.__path__ to gdb.PYTHONDIR + '/gdb' and
3883 exec its __init__.py script if it exists in that directory.
3884
fd60dc69
KB
38852010-06-24 Kevin Buettner <kevinb@redhat.com>
3886
3887 * rx-tdep.c (RX_ACC_REGNUM): Define.
3888 (RX_NUM_REGS): Redefine to 26.
3889 (rx_register_name): Add register "acc". Change order of several
3890 registers. Change name of "vct" register to "fintv" to match RX
3891 documentation.
3892 (rx_register_type): Add case for RX_ACC_REGNUM.
3893
18430289
TT
38942010-06-24 Tom Tromey <tromey@redhat.com>
3895
3896 * psymtab.c (lookup_partial_symbol): Mark definition as static.
3897
40618926
JK
38982010-06-24 Jan Kratochvil <jan.kratochvil@redhat.com>
3899 Tom Tromey <tromey@redhat.com>
3900
3901 Fix GDB startup on readonly filesystem.
3902 * charset.c (find_charset_names): Use PEX_USE_PIPES for pex_init.
3903
628fe4e4
JK
39042010-06-24 Jan Kratochvil <jan.kratochvil@redhat.com>
3905 Pedro Alves <pedro@codesourcery.com>
3906
3907 Fix PR 9436.
3908 * breakpoint.c (handle_jit_event): New function.
3909 (bpstat_what): Remove enum class, kc, ss, sn, sgl, slr, clr, sr, shl,
3910 jit, err, table and bs_class. New variables shlib_event, jit_event,
3911 this_action and bptype. Change bs_class assignments to this_action
3912 assignments. new unhandled bptype internal error. Move here
3913 shlib_event and jit_event handling from handle_inferior_event.
3914 * breakpoint.h (enum bpstat_what_main_action): Extend the comment.
3915 Reorder items. Remove BPSTAT_WHAT_CHECK_SHLIBS and
3916 BPSTAT_WHAT_CHECK_JIT.
3917 * inferior.h (debug_infrun, stop_on_solib_events): New declarations.
3918 * infrun.c (debug_infrun, stop_on_solib_events): Remove static.
3919 (handle_inferior_event): Reinitialize frame and gdbarch after
3920 bpstat_what call. Move BPSTAT_WHAT_CHECK_SHLIBS and
3921 BPSTAT_WHAT_CHECK_JIT handling to bpstat_what. Reinitialize even
3922 gdbarch when frame gets reinitialized.
3923
f1421989
HZ
39242010-06-24 Hui Zhu <teawater@gmail.com>
3925
3926 * printcmd.c (ui_printf): New function.
3927 (printf_command): Call ui_printf.
3928 (_initialize_printcmd): New command "eval".
3929
d03285ec
UW
39302010-06-23 Ulrich Weigand <uweigand@de.ibm.com>
3931
3932 * infrun.c (handle_inferior_event): Handle presence of single-step
3933 breakpoints for TARGET_WAITKIND_FORKED and TARGET_WAITKIND_VFORKED.
3934 Cancel single-step breakpoints for TARGET_WAITKIND_EXITED,
3935 TARGET_WAITKIND_SIGNALED, and TARGET_WAITKIND_EXECD.
3936 * breakpoint.c (detach_single_step_breakpoints): New function.
3937 (detach_breakpoints): Call it.
3938 (cancel_single_step_breakpoints): New function.
3939 * breakpoint.h (cancel_single_step_breakpoints): Add prototype.
3940
3941 * spu-tdep.c (spu_memory_remove_breakpoint): New function.
3942 (spu_gdbarch_init): Install it.
3943
38f6b338
JK
39442010-06-23 Jan Kratochvil <jan.kratochvil@redhat.com>
3945
3946 * configure.ac: Always set RDYNAMIC at least as `-rdynamic'.
3947 * configure: Regenerate.
3948
bb08c432
HZ
39492010-06-22 Hui Zhu <teawater@gmail.com>
3950
3951 * i386-tdep.c (i386_record_lea_modrm): Change warning to query.
3952 (i386_process_record): Ditto.
3953 * record.c (record_memory_query): New variable.
3954 (_initialize_record): New command "set record memory-query".
3955 * record.h (record_memory_query): New extern.
3956
b55078be
DE
39572010-06-21 Doug Evans <dje@google.com>
3958
3959 * i386-tdep.h (i386_displaced_step_copy_insn): Declare.
3960 * i386-tdep.c (i386_displaced_step_copy_insn): New function.
3961 (i386_syscall_p): Change type of lengthp to int.
3962 (i386_displaced_step_fixup): Handle kernels that run one past a
3963 syscall insn.
3964 * i386-linux-tdep.c (i386_linux_init_abi): Use
3965 i386_displaced_step_copy_insn instead of
3966 simple_displaced_step_copy_insn.
3967
75079b2b
TT
39682010-06-21 Tom Tromey <tromey@redhat.com>
3969
3970 * dwarf2read.c (read_base_type): Handle DW_ATE_UTF.
3971 (dwarf_type_encoding_name): Likewise.
3972
b00fdb78
TT
39732010-06-21 Tom Tromey <tromey@redhat.com>
3974
3975 * p-valprint.c (pascal_val_print): Use TYPE_ERROR_NAME.
3976 * p-typeprint.c (pascal_type_print_base): Use TYPE_ERROR_NAME.
3977 * m2-valprint.c (m2_val_print): Use TYPE_ERROR_NAME.
3978 * gdbtypes.h (TYPE_ERROR_NAME): New macro.
3979 * f-valprint.c (f_val_print): Use TYPE_ERROR_NAME.
3980 * f-typeprint.c (f_type_print_base): Use TYPE_ERROR_NAME.
3981 * dwarf2read.c (tag_type_to_type): Create a new error type on
3982 failure.
3983 * c-valprint.c (c_val_print): Use TYPE_ERROR_NAME.
3984 * c-typeprint.c (c_type_print_base): Use TYPE_ERROR_NAME.
3985
84951ab5
MS
39862010-06-21 Michael Snyder <msnyder@vmware.com>
3987
889bf7c5 3988 * breakpoint.c (_initialize_breakpoint): Use add_prefix_cmd,
84951ab5
MS
3989 not add_abbrev_prefix_cmd, for "enable breakpoints".
3990
d4a087c7
UW
39912010-06-21 Ulrich Weigand <uweigand@de.ibm.com>
3992
3993 * dwarf2loc.c (find_location_expression): Add relocation offset
3994 to base-address-selection entry base addresses. Read addresses
3995 (and offsets) as signed/unsigned integers, depending on the
3996 BFD's sign_extend_vma flag. Do not call dwarf2_read_address.
3997 (loclist_describe_location): Likewise.
3998 (disassemble_dwarf_expression): Read DW_OP_addr operand as
3999 unsigned integer. Do not call dwarf2_read_address.
4000 (locexpr_describe_location): Likewise for DW_OP_GNU_push_tls_address.
4001
13def385
UW
40022010-06-19 Ulrich Weigand <uweigand@de.ibm.com>
4003
4004 * spu-tdep.c (spu_frame_unwind_cache): Use LSLR register
4005 value instead of hard-coded SPU_LS_SIZE.
4006 (spu_software_single_step): Likewise.
4007 * spu-tdep.h (SPU_LS_SIZE): Remove.
4008
d2ed6730
UW
40092010-06-19 Ulrich Weigand <uweigand@de.ibm.com>
4010
4011 * spu-multiarch.c (spu_xfer_partial): Wrap around local store
4012 limit on local store memory accesses.
4013 * spu-linux-nat.c (spu_xfer_partial): Likewise.
4014 * spu-tdep.c (spu_lslr): Remove.
4015 (spu_pointer_to_address): Do not truncate addresses.
4016 (spu_integer_to_address): Likewise.
4017 (spu_overlay_new_objfile): Use SPU_OVERLAY_LMA.
4018 * spu-tdep.h: Add comments.
4019 (SPUADDR_SPU): Respect SPU_OVERLAY_LMA bit.
4020 (SPU_OVERLAY_LMA): Define.
4021
6aed2dbc
SS
40222010-06-18 Stan Shebs <stan@codesourcery.com>
4023
a61408f8
SS
4024 * osdata.c (get_osdata): Warn separately if target does not report
4025 type list.
4026 (info_osdata_command): Allow empty type, report error if target
4027 does not return available types of OS data.
4028 * linux-nat.c (linux_nat_xfer_osdata): Report list of OS data
4029 types if no annex supplied.
4030
6aed2dbc
SS
4031 * thread.c (thread_id_make_value): Make a value representing the
4032 current thread.
4033 (_initialize_thread): Create $_thread.
4034
ec61707d
JB
40352010-06-17 Joel Brobecker <brobecker@adacore.com>
4036
4037 * dwarf2read.c (psymtabs_addrmap_cleanup): Add empty line after
4038 last local variable declaration. No real code change.
4039
60606b2c
TT
40402010-06-17 Tom Tromey <tromey@redhat.com>
4041
4042 * dwarf2read.c (psymtabs_addrmap_cleanup): New function.
4043 (dwarf2_build_psymtabs_hard): Use it. Create addrmap on a
4044 temporary obstack.
4045
65d79d4b
SDJ
40462010-06-16 Sergio Durigan Junior <sergiodj@redhat.com>
4047 Jan Kratochvil <jan.kratochvil@redhat.com>
4048
4049 * breakpoint.c: Include parser-defs.h.
4050 (watchpoint_exp_is_const): New function.
4051 (watch_command_1): Call watchpoint_exp_is_const to check
4052 if the expression is constant.
4053
0407b3f1
AS
40542010-06-15 Andreas Schwab <schwab@linux-m68k.org>
4055
4056 * configure.ac: Check for RDYNAMIC also for cross builds.
4057 * configure: Regenerate.
4058
98d64339
PA
40592010-06-15 Pedro Alves <pedro@codesourcery.com>
4060
4061 * Makefile.in (ALL_TARGET_OBS): Remove solib-target.o.
4062 (SFILES): Remove solib-null.c, add solib-target.c.
4063 (COMMON_OBS): Remove solib-null.o, add solib-target.o.
4064 (ALLDEPFILES): Remove solib-target.c.
4065 * solib-target.c (_initialize_solib_target): Set
4066 current_target_so_ops to solib_target_so_ops if not already set.
4067 * solib-null.c: Delete.
4068
6a271cae
PA
40692010-06-14 Pedro Alves <pedro@codesourcery.com>
4070
4071 * NEWS: Mention GDBserver's JIT compilation of tracepoint
4072 bytecode.
4073
1e9beacb
UW
40742010-06-14 Ulrich Weigand <uweigand@de.ibm.com>
4075
4076 * cp-valprint.c (cp_print_static_field): Members of
4077 dont_print_stat_array_obstack are of type "struct type *".
4078 (_initialize_cp_valprint): Likewise.
4079
21a176fb
UW
40802010-06-14 Ulrich Weigand <uweigand@de.ibm.com>
4081
4082 * frame.c (frame_register_unwind): Do not access contents
4083 of "optimized out" unwound register value.
4084
25b524e8
JK
40852010-06-14 Jan Kratochvil <jan.kratochvil@redhat.com>
4086
4087 * ada-lang.h (ada_print_type): Make varstring const.
4088 * ada-typeprint.c (print_func_type): Make name const.
4089 (ada_print_type): Make varstring const.
4090 * c-lang.h (c_print_type): Make varstring const.
4091 * c-typeprint.c (c_print_type): Likewise.
4092 * f-lang.h (f_print_type): Likewise.
4093 * f-typeprint.c (f_print_type): Likewise.
4094 * jv-lang.h (java_print_type): Likewise.
4095 * jv-typeprint.c (java_print_type): Likewise.
4096 * language.c (unk_lang_print_type): Likewise.
4097 * language.h (struct language_defn) <la_print_type>: Likewise.
4098 * m2-lang.h (m2_print_type): Likewise.
4099 * m2-typeprint.c (m2_print_type): Likewise.
4100 * p-lang.h (pascal_print_type): Likewise.
4101 * p-typeprint.c (pascal_print_type): Likewise.
4102
d914c394
SS
41032010-06-11 Stan Shebs <stan@codesourcery.com>
4104
4105 Add per-operation permission flags.
4106
4107 * target.h (struct target_ops): New method to_set_permissions.
4108 (target_set_permissions): New macro.
4109 (target_insert_breakpoint): Change macro to function.
4110 (target_remove_breakpoint): Ditto.
4111 (target_stop): Ditto.
4112 (may_write_registers): Declare.
4113 (may_write_memory): Declare.
4114 (may_insert_breakpoints): Declare.
4115 (may_insert_tracepoints): Declare.
4116 (may_insert_fast_tracepoints): Declare.
4117 (may_stop): Declare.
4118 * target.c (may_write_registers, may_write_registers_1): New globals.
4119 (may_write_memory, may_write_memory_1): New globals.
4120 (may_insert_breakpoints, may_insert_breakpoints_1): New globals.
4121 (may_insert_tracepoints, may_insert_tracepoints_1): New globals.
4122 (may_insert_fast_tracepoints, may_insert_fast_tracepoints_1): New
4123 globals.
4124 (may_stop, may_stop_1): New global.
4125 (target_xfer_partial): Test for write permission.
4126 (target_store_registers): Ditto.
4127 (target_insert_breakpoint): New function.
4128 (target_remove_breakpoint): New function.
4129 (target_stop): New function.
4130 (_initialize_targets): Add new set/show variables.
4131 (set_write_memory_permission): New function.
4132 (update_target_permissions): New function.
4133 (set_target_permissions): New function.
4134 (update_current_target): Default to_set_permissions.
4135 (_initialize_targets): Use new globals and setter function.
4136 * tracepoint.c (start_tracing): Test for permission.
4137 * inferior.h (update_observer_mode): Declare.
4138 * infrun.c (non_stop_1): Define earlier.
4139 (observer_mode, observer_mode_1): New globals.
4140 (set_observer_mode, show_observer_mode): New functions.
4141 (update_observer_mode): New function.
4142 (_initialize_infrun): Define "set observer" command.
4143 * remote.c (PACKET_QAllow): New optional packet.
4144 (remote_protocol_features): Add QAllow.
4145 (remote_set_permissions): New function.
4146 (remote_start_remote): Call it.
4147 (init_remote_ops): Add it to target vector.
4148 (_initialize_remote): Add config command for QAllow.
4149
aec5aa8b
TT
41502010-06-11 Tom Tromey <tromey@redhat.com>
4151
4152 * dwarf2read.c (dwarf2_add_member_fn): Handle correct form of
4153 DW_AT_vtable_elem_location even when GCC extension is seen.
4154
0e03807e
TT
41552010-06-11 Tom Tromey <tromey@redhat.com>
4156
4157 PR gdb/9977, PR exp/11636:
4158 * value.h (value_offset): Update.
4159 (struct lval_funcs) <check_validity>: New field.
4160 <copy_closure>: Make argument const.
4161 (value_computed_closure): Update.
4162 (value_contents_for_printing): Declare.
4163 (value_bits_valid): Likewise.
4164 (val_print): Likewise.
4165 (set_value_component_location): Update.
4166 (value_entirely_optimized_out): Declare.
4167 * value.c (value_offset): Argument now const.
4168 (require_not_optimized_out): New function.
4169 (value_contents_for_printing): New function.
4170 (value_contents_all): Call require_not_optimized_out.
4171 (value_contents): Likewise.
4172 (value_bits_valid): New function.
4173 (value_computed_closure): Argument now const.
4174 (set_value_component_location): Make 'whole' argument const.
4175 (value_entirely_optimized_out): New function.
4176 (value_bitsize): Argument now 'const'.
4177 (value_bitpos): Likewise.
4178 (value_type): Likewise.
4179 * valprint.h (val_print_array_elements): Update.
4180 * valprint.c (val_print): Add 'val' argument. Use
4181 valprint_check_validity.
4182 (valprint_check_validity): New function.
4183 (value_check_printable): Use value_entirely_optimized_out.
4184 (common_val_print): Update.
4185 (value_print): Likewise.
4186 (val_print_array_elements): Add 'val' argument.
4187 * valops.c (value_fetch_lazy): Use value_contents_for_printing,
4188 value_bits_valid. Reinit frame cache for lval_computed.
4189 * sh64-tdep.c (sh64_do_register): Update.
4190 * scm-valprint.c (scm_val_print): Add 'val' argument.
4191 * scm-lang.h (scm_val_print): Update.
4192 * python/python.h (apply_val_pretty_printer): Update.
4193 * python/py-prettyprint.c (apply_val_pretty_printer): Add 'val'
4194 argument. Call set_value_component_location.
4195 * printcmd.c (print_scalar_formatted): Update.
4196 * p-valprint.c (pascal_val_print): Add 'val' argument.
4197 (pascal_object_print_value_fields): Likewise.
4198 (pascal_object_print_value): Likewise.
4199 (pascal_object_print_static_field): Update.
4200 * p-lang.h (pascal_val_print): Update.
4201 (pascal_object_print_value_fields): Update.
4202 * mt-tdep.c (mt_registers_info): Update.
4203 * mi/mi-main.c (get_register): Update.
4204 (mi_cmd_data_evaluate_expression): Use common_val_print.
4205 * m2-valprint.c (m2_print_array_contents): Add 'val' argument.
4206 (m2_print_unbounded_array): Likewise.
4207 (m2_val_print): Likewise.
4208 * m2-lang.h (m2_val_print): Update.
4209 * language.h (struct language_defn) <la_val_print>: Add 'val'
4210 argument.
4211 (LA_VAL_PRINT): Likewise.
4212 * language.c (unk_lang_val_print): Add 'val' argument.
4213 * jv-valprint.c (java_print_value_fields): Add 'val' argument.
4214 (java_val_print): Likewise.
4215 * jv-lang.h (java_val_print): Add 'val' argument.
4216 * infcmd.c (default_print_registers_info): Update.
4217 * f-valprint.c (f77_print_array_1): Add 'val' argument.
4218 (f77_print_array): Likewise.
4219 (f_val_print): Likewise.
4220 * f-lang.h (f_val_print): Add 'val' argument.
4221 * dwarf2loc.c (read_pieced_value): Use value_bitsize and
4222 value_bitpos.
4223 <DWARF_VALUE_OPTIMIZED_OUT>: Don't print warning. Call
4224 set_value_optimized_out.
4225 (write_pieced_value): Use value_bitsize and value_bitpos.
4226 <default>: Don't exit loop.
4227 (check_pieced_value_validity): New function.
4228 (pieced_value_funcs): Reference check_pieced_value_validity,
4229 check_pieced_value_invalid.
4230 (copy_pieced_value_closure): Update.
4231 (check_pieced_value_bits): New function.
4232 (check_pieced_value_invalid): New function.
4233 * d-valprint.c (dynamic_array_type): Add 'val' argument.
4234 (d_val_print): Likewise.
4235 * d-lang.h (d_val_print): Update.
4236 * cp-valprint.c (cp_print_value_fields): Add 'val' argument.
4237 (cp_print_value_fields_rtti): Likewise.
4238 (cp_print_value): Likewise.
4239 (cp_print_static_field): Update.
4240 * c-valprint.c (c_val_print): Add 'val' argument.
4241 (c_value_print): Update.
4242 * c-lang.h (c_val_print): Update.
4243 (cp_print_value_fields): Likewise.
4244 (cp_print_value_fields_rtti): Likewise.
4245 * ada-valprint.c (struct ada_val_print_args): Remove.
4246 (val_print_packed_array_elements): Add 'val' argument.
4247 (ada_val_print): Likewise. Rewrite.
4248 (ada_val_print_stub): Remove.
4249 (ada_val_print_array): Add 'val' argument.
4250 (ada_val_print_1): Likewise.
4251 (print_variant_part): Likewise.
4252 (ada_value_print): Update.
4253 (print_record): Add 'val' argument.
4254 (print_field_values): Likewise.
4255 * ada-lang.h (ada_val_print): Update.
4256
3cf03773
TT
42572010-06-11 Tom Tromey <tromey@redhat.com>
4258
4259 * vec.h (VEC_cleanup): New macro.
4260 (DEF_VEC_ALLOC_FUNC_I): Update.
4261 (DEF_VEC_ALLOC_FUNC_P): Likewise.
4262 (DEF_VEC_ALLOC_FUNC_O): Likewise.
4263 * dwarf2loc.c (struct axs_var_loc): Remove.
4264 (unimplemented): New function.
4265 (translate_register): Likewise.
4266 (access_memory): Likewise.
4267 (compile_dwarf_to_ax): Likewise.
4268 (dwarf2_tracepoint_var_loc): Remove.
4269 (dwarf2_tracepoint_var_access): Likewise.
4270 (dwarf2_tracepoint_var_ref): Likewise.
4271 (locexpr_tracepoint_var_ref): Use compile_dwarf_to_ax.
4272 (loclist_tracepoint_var_ref): Likewise.
4273 * dwarf2expr.h (dwarf_expr_require_composition): Declare.
4274 * dwarf2expr.c (dwarf_expr_require_composition): Rename from
4275 require_composition. No longer static.
4276 (execute_stack_op): Update.
4277 * ax-gdb.h (trace_kludge): Declare.
4278
2bdf28a0
JK
42792010-06-11 Jan Kratochvil <jan.kratochvil@redhat.com>
4280
4281 * breakpoint.c (breakpoint_restore_shadows): New OWNER comment.
4282 (should_be_inserted): Return zero also on NULL OWNER.
4283 (breakpoint_program_space_exit): New OWNER comment.
4284 (insert_breakpoint_locations): Extend comment for OWNER.
4285 (remove_breakpoint_1, remove_breakpoint): Assert on OWNER.
4286 (breakpoint_init_inferior, breakpoint_here_p, breakpoint_thread_match):
4287 New OWNER comment.
4288 (print_it_typical): Return PRINT_UNKNOWN on NULL OWNER.
4289 (watchpoint_check): New assert on BREAKPOINT_AT and OWNER.
4290 (bpstat_check_location): New assert on OWNER.
4291 (bpstat_check_watchpoint, bpstat_check_breakpoint_conditions): Move BL
4292 and B initializations to the code block. New assert on them.
4293 (print_one_breakpoint_location): New OWNER comment.
4294 (watchpoint_locations_match): Assert on OWNER.
4295 (breakpoint_locations_match): Move HW_POINT1 and HW_POINT2
4296 initializations to the code block. New assert on OWNER.
4297 (set_breakpoint_location_function): New assert on OWNER.
4298 (disable_breakpoints_in_shlibs, disable_breakpoints_in_unloaded_shlib)
4299 (bp_location_compare, update_global_location_list)
4300 (update_global_location_list): New OWNER comment.
4301
5b9a19af
UW
43022010-06-09 Ulrich Weigand <uweigand@de.ibm.com>
4303
4304 * Makefile.in (HFILES_NO_SRCDIR): Remove config/i386/nm-linux.h
4305
669211f5
UW
43062010-06-09 Ulrich Weigand <uweigand@de.ibm.com>
4307
4308 * config/nm-linux.h (struct target_ops): Remove forward declaration.
4309 (lin_thread_get_thread_signals): Remove prototype.
4310 (GET_THREAD_SIGNALS): Remove.
4311 * linux-nat.h (lin_thread_get_thread_signals): Add prototype.
4312 * linux-thread-db.c (check_thread_signals): Directly call
4313 lin_thread_get_thread_signals; do not check GET_THREAD_SIGNALS.
4314
b7a8b4ef
UW
43152010-06-09 Ulrich Weigand <uweigand@de.ibm.com>
4316
4317 * gregset.h (GDB_FPXREGSET_T): Remove.
4318 (gdb_fpxregset_t): Likewise.
4319 (supply_fpxregset): Remove prototype.
4320 (fill_fpxregset): Likewise.
4321 * i386-linux-nat.c (supply_fpxregset): Remove.
4322 (fill_fpxregset): Likewise.
4323 (fetch_fpxregs): Inline supply_fpxregset call.
4324 (store_fpxregs): Inline fill_fpxregset call.
4325
4326 * config/i386/linux.mh: Set NAT_FILE to config/nm-linux.h.
4327 * config/i386/nm-linux.h: Remove file.
4328
82892036
MS
43292010-06-09 Michael Snyder <msnyder@vmware.com>
4330
4331 * target.c (update_current_target): Fix spelling error in comment.
4332 (target_mourn_inferior): Fix spelling error in error message.
4333
5ddb52fa
PH
43342010-06-08 Paul Hilfinger <hilfingr@adacore.com>
4335
4336 * dictionary.h (dict_iter_name_first, dict_iter_name_next): Refer to
4337 SYMBOL_SEARCH_NAME, not SYMBOL_BEST_NAME, in comments.
4338
0f2caa1b
MS
43392010-06-08 Michael Snyder <msnyder@vmware.com>
4340
4341 * remote.c (remote_close): Set inferior_ptid to null_ptid.
4342
3bebe2f2
JK
43432010-06-08 Jan Kratochvil <jan.kratochvil@redhat.com>
4344
4345 * configure.ac <"${have_libpython}" != no>: New workaround of
4346 python#4434.
4347 * configure: Regenerate.
4348
eaaffdf4
HZ
43492010-06-08 Hui Zhu <teawater@gmail.com>
4350
4351 * record.c (record_wait): Move signal out of replay code.
4352
5c631832
JK
43532010-06-07 Jan Kratochvil <jan.kratochvil@redhat.com>
4354
4355 Fix PR 10640.
4356 * dwarf2-frame.c (no_dwarf_call): New function.
4357 (execute_stack_op): Set CTX->DWARF_CALL.
4358 * dwarf2expr.c (execute_stack_op) <DW_OP_call2, DW_OP_call4>: New.
4359 * dwarf2expr.h (struct dwarf_expr_context) <dwarf_call>: New.
4360 (struct dwarf_expr_context) <get_subr>: Remove the #if0-ed field.
4361 * dwarf2loc.c (per_cu_dwarf_call, dwarf_expr_dwarf_call): New functions.
4362 (dwarf2_evaluate_loc_desc): Initialize CTX->DWARF_CALL.
4363 (needs_frame_dwarf_call): New function.
4364 (dwarf2_loc_desc_needs_frame): Initialize CTX->DWARF_CALL.
4365 * dwarf2read.c (follow_die_offset): Based on former follow_die_ref.
4366 Update the comment. Move variables die, offset and error call to ...
4367 (follow_die_ref): ... a new function.
4368 (dwarf2_fetch_die_location_block): New function.
4369 * dwarf2loc.h (dwarf2_fetch_die_location_block): New prototype.
4370
17ea53c3
JK
43712010-06-07 Jan Kratochvil <jan.kratochvil@redhat.com>
4372
4373 * dwarf2loc.c (struct dwarf_expr_baton) Replace objfile by per_cu.
4374 (dwarf_expr_tls_address): Use per_cu instead of objfile.
4375 (dwarf2_evaluate_loc_desc): Drop initialization of BATON.OBJFILE.
4376 Initialize new BATON.PER_CU. Adjust CTX->GDBARCH initialization for
4377 this change.
4378 (struct needs_frame_baton): New field per_cu.
4379 (dwarf2_loc_desc_needs_frame): Initialize new BATON.PER_CU.
4380 * dwarf2read.c (struct dwarf2_per_cu_data) <cu>: Extend the comment.
4381
245040d7
SW
43822010-06-07 Sami Wagiaalla <swagiaal@redhat.com>
4383
4384 * cp-support.c (make_symbol_overload_list_namespace): Only search
4385 static and global blocks.
4386 (make_symbol_overload_list_block): New function.
4387 (make_symbol_overload_list): Separate namespace search from block
4388 search.
4389 (make_symbol_overload_list_qualified): Use
4390 make_symbol_overload_list_block.
4391
4c3376c8
SW
43922010-06-07 Sami Wagiaalla <swagiaal@redhat.com>
4393
4394 * value.h: Created oload_search_type enum.
4395 (find_overload_match): Use oload_search_type enum.
4396 * valops.c (find_overload_match): Support combined member and
4397 non-member search.
4398 * eval.c (evaluate_subexp_standard): Calls to
4399 find_overload_match now use oload_search_type enum.
4400 (oload_method_static): Verify index is a proper value.
4401 * valarith.c (value_user_defined_cpp_op): Search for and handle
4402 both member and non-member operators.
4403 (value_user_defined_cpp_op): New function.
4404 (value_user_defined_op): New function.
4405 (value_x_unop): Use value_user_defined_op.
4406 (value_x_binop): Ditto.
4407 * cp-support.c (make_symbol_overload_list_using): Added block
4408 iteration.
4409 Add check for namespace aliases and imported declarations.
4410
ee55da67
JK
44112010-06-07 Jan Kratochvil <jan.kratochvil@redhat.com>
4412
4413 * breakpoint.h (owner): Extend the comment.
4414
1a2ab13a
JK
44152010-06-07 Jan Kratochvil <jan.kratochvil@redhat.com>
4416
4417 Clear stale specific bp_location from former whole breakpoint.
4418 * breakpoint.c (delete_breakpoint): Move the stale referencing clear
4419 code ...
4420 (free_bp_location): ... here. Rename there the called function to
4421 bpstat_remove_bp_location_callback.
4422 (bpstat_remove_breakpoint_callback): Rename to ...
4423 (bpstat_remove_bp_location_callback): ... here, change DATA resolution
4424 to struct bp_location. Change the called function to
4425 bpstat_remove_bp_location. Create new declaration for the function.
4426 (bpstat_remove_breakpoint): Rename to ...
4427 (bpstat_remove_bp_location): ..., change the parameter to loc, adjust
4428 code for the new parameter type.
4429
16d6b4b7
NS
44302010-06-07 Nathan Sidwell <nathan@codesourcery.com>
4431
4432 * README: Make version-agnostic.
4433
7e314c57
JK
44342010-06-05 Jan Kratochvil <jan.kratochvil@redhat.com>
4435
4436 Fix duplicate types for single DIE.
4437 * dwarf2read.c (read_structure_type): Move set_descriptive_type after
4438 set_die_type.
4439 (read_array_type): Remove type initialization. Recheck get_die_type
4440 after initial die_type. Move set_die_type before set_descriptive_type.
4441 (read_set_type): New variable domain_type. Recheck get_die_type after
4442 initial die_type. Move attr initialization later.
4443 (read_tag_pointer_type, read_tag_reference_type): New variable
4444 target_type. Recheck get_die_type after initial die_type.
4445 (read_tag_ptr_to_member_type): Recheck get_die_type after initial
4446 die_type and die_containing_type.
4447 (read_tag_const_type, read_tag_volatile_type, read_subroutine_type):
4448 Recheck get_die_type after initial die_type.
4449 (read_subrange_type): Recheck get_die_type after initial die_type.
4450 Move set_die_type before set_descriptive_type.
4451 (set_die_type): Extend the function comment. Call complaint if DIE has
4452 some type already set.
4453
2f296114
VP
44542010-06-05 Vladimir Prus <vladimir@codesourcery.com>
4455
4456 * mi/mi-main.c (mi_cmd_list_thread_groups): Adjust
4457 for current naming of thread groups (iN, not N).
4458
554794dc
SDJ
44592010-06-04 Sergio Durigan Junior <sergiodj@redhat.com>
4460
4461 * ada-lang.c (ada_operator_length): Constify `struct expression'.
4462 * parse.c (operator_length): Likewise.
4463 (operator_length_standard): Likewise.
4464 * parser-defs.h (operator_length): Likewise.
4465 (operator_length_standard): Likewise.
4466 (struct exp_descriptor <operator_length>): Likewise.
4467
967cf477
DE
44682010-06-04 Doug Evans <dje@google.com>
4469
bddaacb9 4470 Add support for enabling/disabling individual pretty-printers.
967cf477
DE
4471 * python/py-prettyprint.c (search_pp_list): Skip disabled printers.
4472 * python/python-internal.h (gdbpy_enabled_cst): Declare.
4473 * python/python.c (gdbpy_enabled_cst): Define.
4474 (_initialize_python): Initialize gdbpy_enabled_cst.
4475 * NEWS: Add entry.
4476
2dec564e
JK
44772010-06-04 Jan Kratochvil <jan.kratochvil@redhat.com>
4478
4479 * breakpoint.c (update_global_location_list): Fix comment typo.
4480
44b5680a
HZ
44812010-06-04 Hui Zhu <teawater@gmail.com>
4482
4483 * dwarf2loc.c (disassemble_dwarf_expression): Change ul to l.
4484
e7a30f46
DE
44852010-06-03 Doug Evans <dje@google.com>
4486
4487 * configure.ac: Don't fail if python is unusable when
4488 configured with --with-python=auto.
4489 * configure: Regenerate.
4490
84b4420f
SW
44912010-06-03 Sami Wagiaalla <swagiaal@redhat.com>
4492
889bf7c5 4493 * dwarf2read.c (new_symbol): Remove redundant naming of symbol.
84b4420f 4494
df178451
PM
44952010-06-03 Pierre Muller <muller@ics.u-strasbg.fr>
4496
4497 * valprint.h (get_array_bounds): Change low and high parameter types
4498 to LONGEST *.
0407b3f1 4499 * valprint.c (get_array_bounds): Use get_discrete_bounds call to
df178451
PM
4500 compute bounds.
4501 (val_print_array_elements): Adapt to change above.
4502 * ada-valprint.c (print_optional_low_bound): Adapt to change above.
4503 * p-valprint.c (pascal_val_print): Likewise.
4504
fd5700c7
JK
45052010-06-02 Jan Kratochvil <jan.kratochvil@redhat.com>
4506
4507 * symfile.c (init_filename_language_table): New extensions .for, .FOR,
4508 .ftn, .FTN, .fpp, .FPP, .f90, .F90, .f95, .F95, .f03, .F03, .f08 and
4509 .F08.
4510
f55ee35c
JK
45112010-06-02 Jan Kratochvil <jan.kratochvil@redhat.com>
4512
4513 Support DW_TAG_module as separate namespaces.
4514 * dwarf2read.c (typename_concat): New parameter physname.
4515 (read_module_type): New function and declaration.
4516 (scan_partial_symbols): Scan also DW_TAG_module children.
4517 (partial_die_parent_scope): Accept scope even from DW_TAG_module. Pass
4518 to typename_concat backward compatible physname value 0.
4519 (partial_die_full_name, read_namespace_type): Pass to typename_concat
4520 backward compatible physname value 0.
4521 (add_partial_module, read_module): Remove FIXME comment.
4522 (process_die) <DW_TAG_module>: Set PROCESSING_HAS_NAMESPACE_INFO.
4523 (die_needs_namespace) <DW_TAG_variable>: Allow returning true even for
4524 DIEs under DW_TAG_module.
4525 (dwarf2_compute_name): Move the ada block for DW_AT_linkage_name and
4526 DW_AT_MIPS_linkage_name first, extend it for language_fortran
4527 && physname and return there instead of just setting NAME. Extend
4528 the main block for language_fortran. Pass physname parameter to the
4529 typename_concat call.
4530 (read_import_statement, read_func_scope, get_scope_pc_bounds)
4531 (load_partial_dies, determine_prefix): Support also DW_TAG_module.
4532 (new_symbol): Fill in cplus_specific.demangled_name if it is still
4533 missing from SYMBOL_SET_NAMES in the language_fortran case.
4534 (new_symbol) <DW_TAG_variable>: Force LOC_UNRESOLVED for gfortran module
4535 variables.
4536 (read_type_die) <DW_TAG_module>: New.
4537 (MAX_SEP_LEN): Increase to 7.
4538 (typename_concat): New parameter physname. New variable lead. Support
4539 also language_fortran.
4540 * f-exp.y (yylex): Consider : also as a symbol name character class.
4541 * f-lang.c: Include cp-support.h.
4542 (f_word_break_characters, f_make_symbol_completion_list): New functions.
4543 (f_language_defn): Use cp_lookup_symbol_nonlocal,
4544 f_word_break_characters and f_make_symbol_completion_list.
4545 * f-typeprint.c (f_type_print_base) <TYPE_CODE_MODULE>: New.
4546 * gdbtypes.h (enum type_code) <TYPE_CODE_MODULE>: New.
4547 * symtab.c (symbol_init_language_specific): Support language_fortran.
4548 (symbol_find_demangled_name): New comment on language_fortran.
4549 (symbol_natural_name, symbol_demangled_name): Use demangled_name even
4550 for language_fortran.
4551 (lookup_symbol_aux_local): Check imports also for language_fortran.
4552 (default_make_symbol_completion_list): Rename to ...
4553 (default_make_symbol_completion_list_break_on): ... this name. New
4554 parameter break_on, use it.
4555 (default_make_symbol_completion_list): New stub.
4556 * symtab.h (default_make_symbol_completion_list_break_on): New
4557 prototype.
4558
cb91c06a
JB
45592010-06-02 Joel Brobecker <brobecker@adacore.com>
4560
4561 * remote.c (remote_get_noisy_reply): Remove trailing "\n" in call
4562 to error.
4563
5c315b68
JK
45642010-06-02 Jan Kratochvil <jan.kratochvil@redhat.com>
4565
4566 * dwarf2read.c (typename_concat): Add const to the variable sep.
4567
9eae7c52
TT
45682010-06-02 Tom Tromey <tromey@redhat.com>
4569
4570 * dwarf2loc.h (dwarf2_per_cu_data): Declare.
4571 * dwarf2read.c (dwarf_stack_op_name): No longer static. Return
4572 type is const. Add 'def' argument. Add missing operators, remove
4573 unhandled ones.
4574 (decode_locdesc): Update.
4575 (dwarf2_always_disassemble): New global.
4576 (show_dwarf2_always_disassemble): New function.
4577 (_initialize_dwarf2_read): Add always-disassemble.
4578 (dwarf2_per_cu_offset_size): New function.
4579 * dwarf2loc.c (dwarf2_always_disassemble): Declare.
4580 (piece_end_p): New function.
4581 (locexpr_describe_location_piece): Replace 'size' argument with
4582 'end'. Use piece_end_p. Rewrite recognition of TLS. Recognize
4583 some constants. Remove errors.
4584 (disassemble_dwarf_expression): New function.
4585 (locexpr_describe_location_1): Use disassemble_dwarf_expression.
4586 Add 'offset_size' argument.
4587 (loclist_describe_location): Change output formatting.
4588 * dwarf2expr.h (dwarf_stack_op_name): Declare.
4589
7d3fe98e
SW
45902010-06-02 Sami Wagiaalla <swagiaal@redhat.com>
4591
4592 * cp-support.c (make_symbol_overload_list_adl_namespace): Handle
4593 anonymous type case.
4594
e77813c8
PM
45952010-06-02 Pierre Muller <muller@ics.u-strasbg.fr>
4596
4597 * dwarf2read.c (read_subrange_type): Handle missing base type
4598 according to Dwarf-2 specifications.
4599
7cf3118a
SDJ
46002010-06-01 Sergio Durigan Junior <sergiodj@redhat.com>
4601
4602 * expprint.c (print_subexp_standard): Remove exp_opcodes BINOP_INCL,
4603 BINOP_EXCL.
4604 (op_name_standard): Remove exp_opcodes BINOP_INCL, BINOP_EXCL,
4605 UNOP_LOWER, UNOP_UPPER, UNOP_LENGTH.
4606 (dump_subexp_body_standard): Remove exp_opcodes BINOP_INCL,
4607 BINOP_EXCL, UNOP_LOWER, UNOP_UPPER, UNOP_LENGTH, UNOP_CARD,
4608 UNOP_CHMAX, UNOP_CHMIN.
4609 * expression.h (enum exp_opcode) <BINOP_INCL, BINOP_EXCL,
4610 UNOP_LOWER, UNOP_UPPER, UNOP_LENGTH, UNOP_CARD, UNOP_CHMAX,
4611 UNOP_CHMIN>: Remove opcodes.
4612
ae4d0c03
PM
46132010-06-01 Pierre Muller <muller@ics.u-strasbg.fr>
4614
4615 * dwarf2read.c (read_func_scope): Do not complain for
4616 external function if bounds are not found.
4617
fa593d66
PA
46182010-06-01 Pedro Alves <pedro@codesourcery.com>
4619
4620 * NEWS: Mention gdbserver fast tracepoints support.
4621
cd44747c
PM
46222010-05-31 Pierre Muller <muller@ics.u-strasbg.fr>
4623
4624 * windows-nat.c (GetConsoleFontSize, GetCurrentConsoleFont):
4625 New macros.
4626 (windows_set_console_info): New function.
4627 (windows_create_inferior): Call windows_set_console_info
4628 if NEW_CONSOLE is true.
4629 (bad_GetCurrentConsoleFont, bad_GetConsoleFontSize): New functions.
4630 (_initialize_loadable): Initialize GetConsoleFontSize and
4631 GetCurrentConsoleFont.
4632
f6528abd
JK
46332010-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
4634
4635 * Makefile.in (RDYNAMIC): New.
4636 (SFILES): Add proc-service.list.
4637 * config/alpha/alpha-linux.mh (NAT_CDEPS): New.
4638 (LOADLIBES): Replace -rdynamic by $(RDYNAMIC).
4639 * config/arm/linux.mh: Likewise.
4640 * config/i386/linux.mh: Likewise.
4641 * config/i386/linux64.mh: Likewise.
4642 * config/ia64/linux.mh: Likewise.
4643 * config/m32r/linux.mh: Likewise.
4644 * config/m68k/linux.mh: Likewise.
4645 * config/mips/linux.mh: Likewise.
4646 * config/pa/linux.mh: Likewise.
4647 * config/powerpc/linux.mh: Likewise.
4648 * config/powerpc/ppc64-linux.mh: Likewise.
4649 * config/s390/s390.mh: Likewise.
4650 * config/sparc/linux.mh: Likewise.
4651 * config/sparc/linux64.mh: Likewise.
4652 * config/xtensa/linux.mh: Likewise.
4653 * configure.ac: New RDYNAMIC on native host and GCC.
4654 (solaris*): Replace -Wl,-export-dynamic by $RDYNAMIC.
4655 * configure: Regenerate.
4656 * proc-service.list: New.
4657
ca2a87a0
JK
46582010-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
4659
4660 * linux-nat.c (linux_nat_core_of_thread_1): Fix crash on invalid
4661 CONTENT.
4662
1e225492
JK
46632010-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
4664
4665 * linux-nat.c (linux_nat_wait_1): Do not call
4666 linux_nat_core_of_thread_1 on TARGET_WAITKIND_EXITED or
4667 TARGET_WAITKIND_SIGNALLED.
4668
e802dbe0
JB
46692010-05-27 Joel Brobecker <brobecker@adacore.com>
4670
4671 * ada-lang.c (ada_inferior_data): New struct.
4672 (ada_inferior_data): New static global.
4673 (ada_inferior_data_cleanup, get_ada_inferior_data, ada_inferior_exit)
4674 (ada_get_tsd_type): New functions.
4675 (ada_tag_name_2): Use ada_get_tsd_type instead of ada_find_any_type
4676 to look the tsd type up.
4677 (_initialize_ada_language): Attach ada_inferior_exit to inferior_exit
4678 event. Set ada_inferior_data.
4679
176a6961
PA
46802010-05-27 Pedro Alves <pedro@codesourcery.com>
4681
4682 * remote.c (unpack_varlen_hex): Remove forward declaration.
4683 (remote_console_output): Make static, and add forward declaration.
4684 * remote.h: Drop FIXME comment.
4685 (unpack_varlen_hex): Declare.
4686 (remote_console_output, remote_cisco_objfile_relocate)
4687 (deprecated_target_resume_hook, deprecated_target_wait_loop_hook):
4688 Delete declarations.
4689 * tracepoint.c: Include "remote.h".
4690 (unpack_varlen_hex): Delete declaration.
4691
88bfdde4
TT
46922010-05-27 Tom Tromey <tromey@redhat.com>
4693
4694 * dwarf2loc.c (struct piece_closure) <refc>: New field.
4695 (allocate_piece_closure): Initialize refc.
4696 (copy_pieced_value_closure): Use refc.
4697 (free_pieced_value_closure): Likewise.
4698
8c6363cf
TT
46992010-05-27 Tom Tromey <tromey@redhat.com>
4700
4701 * arm-tdep.c (push_stack_item): 'contents' now const.
4702 (arm_push_dummy_call): Make 'val' const. Use value_contents, not
4703 value_contents_writeable. Introduce new temporary.
4704
7ecb917e
TT
47052010-05-27 Tom Tromey <tromey@redhat.com>
4706
4707 * findcmd.c (parse_find_args): Use value_contents, not
4708 value_contents_raw.
4709
f42a0a33
TT
47102010-05-27 Tom Tromey <tromey@redhat.com>
4711
4712 * alpha-tdep.c (alpha_push_dummy_call): Make alpha_arg.contents
4713 const. Use value_contents, not value_contents_writeable.
4714
12b795ad
JB
47152010-05-27 Joel Brobecker <brobecker@adacore.com>
4716
4717 * ada-lang.c (ensure_lval): Replace call to value_contents_raw
4718 by call to value_contents.
4719
5a2e11c7
OS
47202010-05-27 Ozkan Sezer <sezeroz@gmail.com>
4721
4722 * MAINTAINERS: Add myself for write after approval privileges.
4723
ec685c5e
DE
47242010-05-26 Doug Evans <dje@google.com>
4725
0c4a4063
DE
4726 Allow python to find its files if moved from original location.
4727 * acinclude.m4 (GDB_AC_DEFINE_RELOCATABLE): New function.
4728 (GDB_AC_WITH_DIR): Call it.
4729 * configure.ac: Define WITH_PYTHON_PATH if we can find the
4730 python installation directory.
4731 * config.in: Regenerate.
4732 * configure: Regenerate.
4733 * defs.h (python_libdir): Declare.
4734 * main.c (python_libdir): Define.
4735 (captured_main): Initialize python_libdir.
4736 * python/python.c (_initialize_python): #ifdef WITH_PYTHON_PATH,
4737 call Py_SetProgramName to make sure python can find its libraries
4738 and modules.
4739
ec685c5e
DE
4740 * configure.ac: Try to use python's distutils to fetch compilation
4741 parameters.
4742 * configure: Regenerate.
4743 * python/python-config.py: New file.
4744
363a6e9f
OS
47452010-05-26 Ozkan Sezer <sezeroz@gmail.com>
4746
4747 * ser-tcp.c (net_open): Check error return from socket() call by its
4748 equality to -1 not by it being negative.
4749 (net_close): Likewise.
4750
dde08ee1
PA
47512010-05-26 Pedro Alves <pedro@codesourcery.com>
4752
4753 * NEWS: Mention the `qRelocInsn' feature.
4754 * gdbarch.sh (relocate_instruction): New.
4755 * amd64-tdep.c (rip_relative_offset): New.
4756 (append_insns): New.
4757 (amd64_relocate_instruction): New.
4758 (amd64_init_abi): Install it.
4759 * i386-tdep.c (append_insns): New.
4760 (i386_relocate_instruction): New.
4761 (i386_gdbarch_init): Install it.
4762 * remote.c (remote_get_noisy_reply): Handle qRelocInsn requests.
4763 * gdbarch.h, gdbarch.c: Regenerate.
4764
947bb88f
TT
47652010-05-26 Tom Tromey <tromey@redhat.com>
4766
4767 * dwarf2loc.h (struct dwarf2_locexpr_baton) <data>: Now const.
4768 (struct dwarf2_loclist_baton) <data>: Likewise.
4769 * dwarf2loc.c (find_location_expression): Constify return type.
4770 (dwarf2_evaluate_loc_desc): Make 'data' argument const.
4771 (dwarf2_loc_desc_needs_frame): Likewise.
4772 (loclist_read_variable): Constify.
4773 (loclist_describe_location): Likewise.
4774 (loclist_tracepoint_var_ref): Likewise.
4775
0d45f56e
TT
47762010-05-25 Tom Tromey <tromey@redhat.com>
4777
4778 * dwarf2loc.c (dwarf_expr_frame_base): Constify.
4779 (dwarf_expr_frame_base_1): Likewise.
4780 (read_pieced_value): Update.
4781 (needs_frame_frame_base): Constify.
4782 (dwarf2_tracepoint_var_loc): Likewise.
4783 (dwarf2_tracepoint_var_access): Likewise.
4784 (locexpr_describe_location_piece): Likewise.
4785 (locexpr_describe_location_1): Likewise.
4786 * dwarf2expr.h (struct dwarf_expr_context) <get_frame_base>:
4787 Constify.
4788 (data): Now const.
4789 (struct dwarf_expr_piece) <v.literal.data>: Likewise.
4790 (dwarf_expr_eval, read_uleb128, read_sleb128)
4791 (dwarf2_read_address): Update.
4792 * dwarf2expr.c (dwarf_expr_eval): Constify.
4793 (read_uleb128): Likewise.
4794 (read_sleb128): Likewise.
4795 (dwarf2_read_address): Likewise.
4796 (require_composition): Likewise.
4797 (execute_stack_op): Likewise.
4798 * dwarf2-frame.h (struct dwarf2_frame_state_reg) <loc.exp>: Now a
4799 "const gdb_byte *".
4800 * dwarf2-frame.c (struct dwarf2_frame_state_reg_info) <cfa_exp>:
4801 Now const.
4802 (no_get_frame_base): Constify.
4803 (execute_stack_op): Likewise.
4804 (execute_cfa_program): Likewise.
4805 (read_encoded_value): Likewise.
4806
07ca107c
DE
48072010-05-25 Doug Evans <dje@google.com>
4808
e34838f0
DE
4809 * ser-pipe.c (pipe_open): Ignore SIGINTs in child.
4810
01f69b38
DE
4811 * event-loop.h (GDB_READABLE, GDB_WRITABLE, GDB_EXCEPTION): Move to ...
4812 * event-loop.c: ... here.
4813 * tui/tui-io.c (tui_readline_output): Rename parameter `code' to
4814 `error' for clarity.
4815 (tui_getc): Pass correct value for `error' parameter to
4816 tui_readline_output.
4817
07ca107c
DE
4818 Add python gdb.GdbError and gdb.string_to_argv.
4819 * NEWS: Document them.
4820 * python/py-cmd.c (cmdpy_function): Don't print a traceback if
4821 the exception is gdb.GdbError. Print a second traceback if there's
4822 an error computing the error message.
4823 (gdbpy_string_to_argv): New function.
4824 * python/py-utils.c (gdbpy_obj_to_string): New function.
4825 (gdbpy_exception_to_string): New function.
4826 * python/python-internal.h (gdbpy_string_to_argv): Declare.
4827 (gdbpy_obj_to_string, gdbpy_exception_to_string): Declare.
4828 (gdbpy_gdberror_exc): Declare.
4829 * python/python.c (gdbpy_gdberror_exc): New global.
4830 (_initialize_python): Initialize gdbpy_gdberror_exc and create
4831 gdb.GdbError.
4832 (GdbMethods): Add string_to_argv.
4833
5572ce1f
PM
48342010-05-21 Pierre Muller <muller@ics.u-strasbg.fr>
4835
4836 * windows-nat.c (display_selector): Call GetLastError to give better
4837 failure explanation.
4838
acd5838a
PA
48392010-05-24 Pedro Alves <pedro@codesourcery.com>
4840
4841 * config.in: Regenerate.
4842
b26a4dcb
JK
48432010-05-23 Jan Kratochvil <jan.kratochvil@redhat.com>
4844
4845 Code cleanup.
4846 * target.c (push_target): Return only void. Remove the return value
4847 comment.
4848 * target.h (push_target): Return only void.
4849
f434ba03
PA
48502010-05-23 Pedro Alves <pedro@codesourcery.com>
4851
4852 Update gnulib from latest git.
4853 (250b80067c1e1d8faa0c42fb572f721975b929c5)
4854
4855 * gnulib/memcmp.c: Removed.
4856 * gnulib/memchr.valgrind: New.
4857 * gnulib/stddef.in.h: New.
4858 * gnulib/Makefile.am: Updated.
4859 * gnulib/memchr.c: Updated.
4860 * gnulib/memmem.c: Updated.
4861 * gnulib/stdint.in.h: Updated.
4862 * gnulib/str-two-way.h: Updated.
4863 * gnulib/string.in.h: Updated.
4864 * gnulib/wchar.in.h: Updated.
4865
4866 * gnulib/extra/link-warning.h: Removed.
4867 * gnulib/extra/c++defs.h: New.
4868 * gnulib/extra/warn-on-use.h: New.
4869 * gnulib/extra/arg-nonnull.h: Updated.
4870
4871 * gnulib/m4/extensions.m4: Updated.
4872 * gnulib/m4/gnulib-cache.m4: Updated.
4873 * gnulib/m4/gnulib-common.m4: Updated.
4874 * gnulib/m4/gnulib-comp.m4: Updated.
4875 * gnulib/m4/gnulib-tool.m4: Updated.
4876 * gnulib/m4/include_next.m4: Updated.
4877 * gnulib/m4/longlong.m4: Updated.
4878 * gnulib/m4/memchr.m4: Updated.
4879 * gnulib/m4/memmem.m4: Updated.
4880 * gnulib/m4/stdint.m4: Updated.
4881 * gnulib/m4/string_h.m4: Updated.
4882 * gnulib/m4/memcmp.m4: Removed.
4883 * gnulib/m4/onceonly_2_57.m4: Removed.
4884 * gnulib/m4/00gnulib.m4: New.
4885 * gnulib/m4/mmap-anon.m4: New.
4886 * gnulib/m4/multiarch.m4: New.
4887 * gnulib/m4/onceonly.m4: New.
4888 * gnulib/m4/stddef_h.m4: New.
4889 * gnulib/m4/warn-on-use.m4: New.
4890 * gnulib/m4/wchar.m4: Removed.
4891 * gnulib/m4/wchar_h.m4: New.
4892 * gnulib/m4/wchar_t.m4: New.
4893 * gnulib/m4/wint_t.m4: New.
4894
4895 * aclocal.m4: Regenerate.
4896 * config.in: Likewise.
4897 * configure: Likewise.
4898 * gnulib/Makefile.in: Likewise.
4899
d3b1e874
TT
49002010-05-21 Tom Tromey <tromey@redhat.com>
4901
4902 * dwarf2loc.c (extract_bits_primitive): New function.
4903 (extract_bits): Likewise.
4904 (insert_bits): Likewise.
4905 (copy_bitwise): Likewise.
4906 (read_pieced_value): Do all operations in bits.
4907 (write_pieced_value): Likewise.
4908 * dwarf2expr.h (struct dwarf_expr_piece) <offset>: New field.
4909 * dwarf2expr.c (add_piece): New arguments bit_piece, offset.
4910 Always use xrealloc to resize piece array.
4911 (execute_stack_op) <DW_OP_reg0>: Handle DW_OP_bit_piece.
4912 <DW_OP_piece>: Update.
4913 <DW_OP_bit_piece>: New case.
4914
cb826367
TT
49152010-05-21 Tom Tromey <tromey@redhat.com>
4916
4917 * dwarf2loc.c (read_pieced_value): Exit loop when result is full.
4918 <DWARF_VALUE_OPTIMIZED_OUT>: New case.
4919 * dwarf2expr.h (enum dwarf_value_location)
4920 <DWARF_VALUE_OPTIMIZED_OUT>: New constant.
4921 * dwarf2expr.c (dwarf_expr_stack_empty_p): New function.
4922 (add_piece): Handle empty piece.
4923 (execute_stack_op) <DW_OP_piece>: Handle
4924 DWARF_VALUE_OPTIMIZED_OUT.
4925
74de6778
TT
49262010-05-21 Tom Tromey <tromey@redhat.com>
4927
4928 * eval.c (evaluate_subexp_standard) <BINOP_SUBSCRIPT>: Call
4929 evaluate_subexp, not evaluate_subexp_with_coercion.
4930
f346a30d
PM
49312010-05-21 Pierre Muller <muller@ics.u-strasbg.fr>
4932
4933 * dwarf2read.c (new_symbol): Handle DW_AT_variable_parameter
4934 attribute.
4935
afd74c5f
TT
49362010-05-21 Tom Tromey <tromey@redhat.com>
4937
4938 * dwarf2loc.c (read_pieced_value): Work properly when 'v' has an
4939 offset.
4940 (write_pieced_value): Likewise.
4941
90e7c2c5
PM
49422010-05-21 Pierre Muller <muller@ics.u-strasbg.fr>
4943
4944 * dwarf2read.c (process_die): Also allow DW_TAG_const_type
4945 and DW_TAG_volatile_type.
4946 (new_symbol): Likewise.
4947
8148cf8d
PM
49482010-05-20 Pierre Muller <muller@ics.u-strasbg.fr>
4949
4950 * p-valprint.c (pascal_val_print): Call get_array_bounds
4951 to obtain the number of elements in an array.
4952
3a1d4620
DE
49532010-05-19 Doug Evans <dje@google.com>
4954
0bf0f8c4
DE
4955 * python.c (gdbpy_print_stack): Ensure output ends with a newline.
4956
3a1d4620
DE
4957 * python.c (source_python_script): Add comment.
4958 (source_python_script_for_objfile): Remove unnecessary call to
4959 gdbpy_print_stack.
4960
dc21167c
JK
49612010-05-18 Jan Kratochvil <jan.kratochvil@redhat.com>
4962 Sergio Durigan Junior <sergiodj@redhat.com>
4963
4964 Code cleanup.
4965 * parse.c (exp_iterate): Use operator_length wrapper function.
4966
5b4ee69b
MS
49672010-05-18 Michael Snyder <msnyder@vmware.com>
4968
4969 * ada-lang.c: White space.
4970 * ada-typeprint.c: White space.
4971 * ada-valprint.c: White space.
4972 * addrmap.c: White space.
4973 * auxv.c: White space.
4974 * ax-gdb.c: White space.
4975
e17c9e56
HZ
49762010-05-18 Hui Zhu <teawater@gmail.com>
4977
4978 * linux-fork.c (inferior_call_waitpid_cleanup): Add check
4979 for oldfp.
4980 (inferior_call_waitpid): Move make_cleanup out of check.
4981 Check the return of waitpid.
4982 (delete_checkpoint_command): Add pptid to save fi->parent_ptid.
4983
a109c7c1
MS
49842010-05-17 Michael Snyder <msnyder@vmware.com>
4985
1c5313c5
MS
4986 * tui/tui.c: White space.
4987 * tui/tui-data.c: White space.
4988 * tui/tui-disasm.c: White space.
4989 * tui/tui-file.c: White space.
4990 * tui/tui-interp.c: White space.
4991 * tui/tui-main.c: White space.
4992 * tui/tui-out.c: White space.
4993 * tui/tui-regs.c: White space.
4994 * tui/tui-source.c: White space.
4995 * tui/tui-stack.c: White space.
4996 * tui/tui-win.c: White space.
4997 * tui/tui-winsource.c: White space.
4998
f4a14ae6
MS
4999 * procfs.c: White space.
5000
d59b6f6c
MS
5001 * python/py-auto-load.c: White space.
5002 * python/py-block.c: White space.
5003 * python/py-breakpoint.c: White space.
5004 * python/py-cmd.c: White space.
5005 * python/py-function.c: White space.
5006 * python/py-lazy-string.c: White space.
5007 * python/py-objfile.c: White space.
5008 * python/py-param.c: White space.
5009 * python/py-prettyprint.c: White space.
5010 * python/py-progspace.c: White space.
5011 * python/py-symtab.c: White space.
5012 * python/python.c: White space.
5013 * python/py-type.c: White space.
5014 * python/py-utils.c: White space.
5015 * python/py-value.c: White space.
5016
102040f0
MS
5017 * mi/mi-cmd-break.c: White space.
5018 * mi/mi-cmd-env.c: White space.
5019 * mi/mi-cmds.c: White space.
5020 * mi/mi-cmd-stack.c: White space.
5021 * mi/mi-cmd-var.c: White space.
5022 * mi/mi-console.c: White space.
5023 * mi/mi-getopt.c: White space.
5024 * mi/mi-interp.c: White space.
5025 * mi/mi-main.c: White space.
5026 * mi/mi-out.c: White space.
5027 * mi/mi-parse.c: White space.
5028
cdb27c12
MS
5029 * cli/cli-cmds.c: White space.
5030 * cli/cli-decode.c: White space.
5031 * cli/cli-dump.c: White space.
5032 * cli/cli-interp.c: White space.
5033 * cli/cli-logging.c: White space.
5034 * cli/cli-script.c: White space.
5035 * cli/cli-setshow.c: White space.
5036
a109c7c1
MS
5037 * valarith.c: White space.
5038 * valops.c: White space.
5039 * valprint.c: White space.
5040 * value.c: White space.
5041 * varobj.c: White space.
5042 * xcoffread.c: White space.
5043 * xml-support.c: White space.
5044 * xml-tdesc.c: White space.
5045
3872d37d
AS
50462010-05-17 Andreas Schwab <schwab@redhat.com>
5047
5048 PR gdb/11092
5049 * c-lang.c (c_printstr): Compute real length of NUL terminated
5050 string at first.
5051
0cce5bd9
JB
50522010-05-17 Joel Brobecker <brobecker@adacore.com>
5053
5054 * parse.c (parse_exp_in_context): When block is not NULL, use
5055 its associated language to parse the expression instead of
5056 the current_language.
5057
5f19d646
JB
50582010-05-17 Joel Brobecker <brobecker@adacore.com>
5059
5060 * jv-lang.c (java_lookup_class): Remove commented out code.
5061 (type_from_class): Likewise.
5062 (java_op_print_tab): Remove commented-out elements.
5063
28c85d6c
JB
50642010-05-17 Joel Brobecker <brobecker@adacore.com>
5065
5066 * ada-lang.c (to_fixed_range_type): The the raw index type as
5067 argument instead of the raw type name. Remove orig_type parameter.
5068 Update calls throughout.
5069 (ada_fixup_array_indexes_type): New function.
5070 (ada_array_bound_from_type): Add call to ada_fixup_array_indexes_type.
5071 * ada-lang.h (ada_fixup_array_indexes_type): Add declaration.
5072 * ada-typeprint.c (print_range_type): Renames print_range_type_named.
5073 Remove name parameter.
5074 (print_array_type): Add call to ada_fixup_array_indexes_type.
5075 Update calls to print_range_type.
5076 (ada_print_type): Update calls to print_range_type.
5077
d09039dd
PM
50782010-05-17 Pierre Muller <muller@ics.u-strasbg.fr>
5079
5080 * dwarf2read.c (read_set_type): Set type length if
5081 DW_AT_byte_size attribute is present.
5082
7a081a30
PM
50832010-05-17 Pierre Muller <muller@ics.u-strasbg.fr>
5084
5085 * p-valprint.c (pascal_val_print): Handle set type if range limits
5086 are undefined but size is known.
5087
77382aee
PA
50882010-05-17 Pedro Alves <pedro@codesourcery.com>
5089
5090 * procfs.c: Reformat.
5091
433759f7
MS
50922010-05-16 Michael Snyder <msnyder@vmware.com>
5093
5d502164
MS
5094 * target.c: White space.
5095 * target-descriptions.c: White space.
5096 * target-memory.c: White space.
5097 * thread.c: White space.
5098 * top.c: White space.
5099 * tracepoint.c: White space.
5100 * trad-frame.c: White space.
5101 * tramp-frame.c: White space.
5102 * ui-file.c: White space.
5103 * ui-out.c: White space.
5104 * user-regs.c: White space.
5105 * utils.c: White space.
5106
433759f7
MS
5107 * scm-exp.c: White space.
5108 * scm-lang.c: White space.
5109 * scm-valprint.c: White space.
5110 * sentinel-frame.c: White space.
5111 * ser-base.c: White space.
5112 * ser-go32.c: White space.
5113 * serial.c: White space.
5114 * ser-mingw.c: White space.
5115 * ser-pipe.c: White space.
5116 * ser-tcp.c: White space.
5117 * ser-unix.c: White space.
5118 * solib.c: White space.
5119 * solib-darwin.c: White space.
5120 * solib-frv.c: White space.
5121 * solib-irix.c: White space.
5122 * solib-osf.c: White space.
5123 * solib-pa64.c: White space.
5124 * solib-som.c: White space.
5125 * solib-spu.c: White space.
5126 * solib-svr4.c: White space.
5127 * solib-target.c: White space.
5128 * source.c: White space.
5129 * stabsread.c: White space.
5130 * stack.c: White space.
5131 * std-regs.c: White space.
5132 * symfile.c: White space.
5133 * symmisc.c: White space.
5134 * symtab.c: White space.
5135
dd304d53
MS
51362010-05-16 Michael Snyder <msnyder@vmware.com>
5137
5138 * source.c (_initialize_source): Add "rev" as an abbreviation
5139 for the "reverse-search" command.
5140
a744cf53
MS
51412010-05-16 Michael Snyder <msnyder@vmware.com>
5142
123f5f96
MS
5143 * record.c: White space.
5144 * regcache.c: White space.
5145 * reggroups.c: White space.
5146 * remote-fileio.c: White space.
5147 * remote-m32r-sdi.c: White space.
5148 * remote-mips.c: White space.
5149 * remote-sim.c: White space.
a744cf53
MS
5150 * remote.c: White space.
5151 (process_g_packet): Remove orphan braces.
5152
b8d56208
MS
51532010-05-15 Michael Snyder <msnyder@vmware.com>
5154
ad3bbd48
MS
5155 * parse.c: White space.
5156 * p-lang.c: White space.
5157 * posix-hdep.c: White space.
5158 * printcmd.c: White space.
5159 * progspace.c: White space.
5160 * prologue-value.c: White space.
5161 * psymtab.c: White space.
5162 * p-typeprint.c: White space.
5163 * p-valprint.c: White space.
5164
5cc80db3
MS
5165 * objc-lang.c: White space.
5166 * objfiles.c: White space.
5167 * observer.c: White space.
5168 * osabi.c: White space.
5169 * osdata.c: White space.
5170
b8d56208
MS
5171 * m2-lang.c: White space.
5172 * m2-valprint.c: White space.
5173 * macrocmd.c: White space.
5174 * macroexp.c: White space.
5175 * macroscope.c: White space.
5176 * macrotab.c: White space.
5177 * main.c: White space.
5178 * maint.c: White space.
5179 * mdebugread.c: White space.
5180 * memattr.c: White space.
5181 * minsyms.c: White space.
5182 * monitor.c: White space.
5183
9a619af0
MS
51842010-05-14 Michael Snyder <msnyder@vmware.com>
5185
e0881a8e
MS
5186 * jv-lang.c: White space.
5187 * jv-typeprint.c: White space.
5188 * jv-valprint.c: White space.
5189 * language.c: White space.
5190 * libunwind-frame.c: White space.
5191 * linespec.c: White space.
5192 * linux-nat.c: White space.
5193 * linux-record.c: White space.
5194 * linux-thread-db.c: White space.
5195
abbb1732
MS
5196 * infcall.c: White space.
5197 * inf-child.c: White space.
5198 * infcmd.c: White space.
5199 * inferior.c: White space.
5200 * inf-loop.c: White space.
5201 * inflow.c: White space.
5202 * inline-frame.c: White space.
5203 * interps.c: White space.
5204
d8734c88
MS
5205 * gcore.c: White space.
5206 * gdb.c: White space.
5207 * gdbtypes.c: White space.
5208 * gnu-nat.c: White space.
5209 * gnu-v2-abi.c: White space.
5210 * gnu-v3-abi.c: White space.
5211
bb9bcb69
MS
5212 * findcmd.c: White space.
5213 * findvar.c: White space.
5214 * fork-child.c: White space.
5215 * frame-base.c: White space.
5216 * frame.c: White space.
5217 * frame-unwind.c: White space.
5218 * f-valprint.c: White space.
5219
d7f9d729
MS
5220 * elfread.c: White space.
5221 * environ.c: White space.
5222 * eval.c: White space.
5223 * event-loop.c: White space.
5224 * event-top.c: White space.
5225 * exceptions.c: White space.
5226 * exec.c: White space.
5227 * expprint.c: White space.
5228
9a619af0
MS
5229 * dbxread.c: White space.
5230 * dcache.c: White space.
5231 * disasm.c: White space.
5232 * doublest.c: White space.
5233 * dsrec.c: White space.
5234 * dummy-frame.c: White space.
5235 * dwarf2expr.c: White space.
5236 * dwarf2-frame.c: White space.
5237 * dwarf2loc.c: White space.
5238 * dwarf2read.c: White space.
5239
88d4aea7
PM
52402010-05-14 Phil Muldoon <pmuldoon@redhat.com>
5241
889bf7c5 5242 PR python/11482
88d4aea7
PM
5243
5244 * python/py-value.c (valpy_hash): New function.
5245 (value_object_type): Register valpy_hash.
5246
7a298875 52472010-05-14 Hui Zhu <teawater@gmail.com>
0407b3f1 5248 Michael Snyder <msnyder@vmware.com>
7a298875
HZ
5249
5250 * linux-fork.c (gdbthread.h): New include.
5251 (fork_info): Add parent_ptid.
5252 (inferior_call_waitpid_cleanup, inferior_call_waitpid): New
5253 functions.
5254 (delete_checkpoint_command): Call inferior_call_waitpid.
5255 (checkpoint_command): Set parent_ptid.
5256
c14feecc
MS
52572010-05-13 Michael Snyder <msnyder@vmware.com>
5258
6595d32b
MS
5259 * dictionary.c: Re-indent to GNU coding standard.
5260
c5504eaf
MS
5261 * charset.c: White space.
5262 * c-lang.c: White space.
5263 * cli-out.c: White space.
5264 * coffread.c: White space.
5265 * complaints.c: White space.
5266 * completer.c: White space.
5267 * corefile.c: White space.
5268 * corelow.c: White space.
5269 * cp-abi.c: White space.
5270 * cp-namespace.c: White space.
5271 * cp-support.c: White space.
5272 * cp-valprint.c: White space.
5273 * c-typeprint.c: White space.
5274 * c-valprint.c: White space.
cc59ec59
MS
5275 * blockframe.c: White space.
5276 * breakpoint.c: White space.
5277 * buildsym.c: White space.
5278 * blockframe.c: White space.
b6de9da4 5279 * bcache.c: White space.
05c547f6
MS
5280 * gdbarch.sh: White space, add blank lines.
5281 * arch-utils.c: Ditto.
5282 * gdbarch.c: Regenerate.
1c4d3f96 5283 * frame.c: White space, add blank lines.
f89b749f
MS
5284 * stack.c: White space, add blank lines.
5285 (initialize_stack): Remove long-dead code.
c14feecc 5286
a2d33775
JK
52872010-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
5288
5289 Code cleanup.
5290 * dwarf2loc.c (dwarf2_evaluate_loc_desc): Change the parameter to type.
5291 (locexpr_read_variable, loclist_read_variable): Update the callers.
5292
33ac96f0
JK
52932010-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
5294
5295 Code cleanup.
5296 * dwarf2read.c (die_type, die_descriptive_type): Remove variable type.
5297 Remove check of NULL returned by tag_type_to_type.
5298 (die_containing_type): Remove variable type. Remove type_die variable
5299 initialization. Remove check of NULL returned by tag_type_to_type.
5300
f5a010c0
PM
53012010-05-11 Pierre Muller <muller@ics.u-strasbg.fr>
5302
5303 PR exp/11530.
5304 * gdbtypes.c (lookup_struct_elt_type): Also lookup
5305 names of unnamed structures or unions.
5306
bf701c2c
PM
53072010-05-11 Pierre Muller <muller@ics.u-strasbg.fr>
5308
5309 * procfs.c (proc_watchpoint_address): New function.
0407b3f1 5310 (procfs_stopped_by_watchpoint): Remove useless check after
bf701c2c
PM
5311 find_procinfo_or_die call.
5312 (procfs_stopped_data_address): New function.
5313 (procfs_use_watchpoints): Register new watchpoint related function.
5314
d02691ef
TT
53152010-05-11 Tom Tromey <tromey@redhat.com>
5316
5317 * eval.c (evaluate_subexp_standard): Revert inadvertent change.
5318
e0627e85
MS
53192010-05-10 Michael Snyder <msnyder@vmware.com>
5320
5321 * utils.c: White space cleanup.
5322
cc73bb8c
TT
53232010-05-10 Tom Tromey <tromey@redhat.com>
5324
5325 * eval.c (ptrmath_type_p): Add 'lang' argument.
5326 (evaluate_subexp_standard): Update.
5327 (evaluate_subexp_with_coercion): Update.
5328 * language.h (CAST_IS_CONVERSION): Add 'LANG' argument.
5329
c02866a0
MS
53302010-05-10 Michael Snyder <msnyder@vmware.com>
5331
5332 * utils.c (do_fclose_cleanup) Restore local variable.
5333
06280d23
DE
53342010-05-09 Doug Evans <dje@google.com>
5335
5336 * record.c (init_record_core_ops): Rename record_core to record-core.
5337
fa07e785
JB
53382010-05-08 Joel Brobecker <brobecker@adacore.com>
5339
5340 Implement task switching on pa-hpux.
5341 * inf-ttrace.c (inf_ttrace_get_ada_task_ptid): New function.
5342 (inf_ttrace_target): Set t->to_get_ada_task_ptid.
5343
4c680d1d
PM
53442010-05-08 Pierre Muller <muller@ics.u-strasbg.fr>
5345
5346 * valops.c (find_overload_match): Add missing i18n markup.
5347
28e176a6
PM
53482010-05-08 Pierre Muller <muller@ics.u-strasbg.fr>
5349
5350 * p-exp.y (exp : SIZEOF '(' exp ')'): New rule.
5351
48cb83fd
JK
53522010-05-08 Jan Kratochvil <jan.kratochvil@redhat.com>
5353
5354 * dwarf2read.c (typename_concat): Use (char *) NULL terminated stdarg
5355 list for the obconcat call.
5356 * mdebugread.c (parse_symbol): Likewise.
5357 * stabsread.c (define_symbol, read_member_functions, read_cpp_abbrev):
5358 Likewise.
5359 * symfile.c (obconcat): Replace the s1, s2 and s3 parameters by `...'.
5360 New variable ap. Remove variables len and val.
5361 * symfile.h (obconcat): Likewise for the prototype.
5362
f92adf3c
MS
53632010-05-07 Michael Snyder <msnyder@vmware.com>
5364
5365 * python/python.c (execute_gdb_command): Remove unused variables.
5366 * python/py-block.c (gdbpy_block_for_pc): Remove unused variable.
0407b3f1 5367 * python/py-breakpoint.c (gdbpy_breakpoint_created):
f92adf3c
MS
5368 Remove unused variable.
5369 * python/py-cmd.c (cmdpy_function): Remove unused variable.
5370 (cmdpy_completer): Remove unused variable.
5371 * python/py-frame.c (frapy_find_sal): Remove unused variable.
5372 * python/py-function.c (fnpy_call): Remove unused variable.
5373 * python/py-objfile.c (objfile_to_objfile_object):
5374 Remove unused variable.
5375 * python/py-param.c (parmpy_init): Remove unused variable.
0407b3f1 5376 * python/py-prettyprint.c (apply_varobj_pretty_printer):
f92adf3c
MS
5377 Remove unused variable.
5378 (gdbpy_default_visualizer): Remove unused variable.
5379 * python/py-progspace.c (pspace_to_pspace_object):
5380 Remove unused variable.
0407b3f1 5381 * python/py-symtab.c (symtab_and_line_to_sal_object):
f92adf3c 5382 Remove unused variable.
0407b3f1 5383 * python/py-type.c (typy_template_argument):
f92adf3c
MS
5384 Remove unused variable.
5385 * python/py-value.c (valpy_string): Remove unused variable.
5386 (convert_value_from_python): Remove unused variables.
5387
d160942f
MS
53882010-05-07 Michael Snyder <msnyder@vmware.com>
5389
5390 * valops.c (value_cast_pointers): Restore unused variable 'type1',
5391 and use it to compute variable 't1'.
5392
587542ab
JB
53932010-05-07 Joel Brobecker <brobecker@adacore.com>
5394
5395 * ada-lang.c (assign_aggregate): Remove unused variable.
5396
7322dca9
SW
53972010-05-07 Sami Wagiaalla <swagiaal@redhat.com>
5398
5399 PR C++/7943:
5400 * valops.c (find_overload_match): Handle fsym == NULL case.
5401 Add int no_adl argument.
5402 (find_oload_champ_namespace_loop): Call make_symbol_overload_list_adl
5403 when appropriate.
5404 Add int no_adl argument.
5405 (find_oload_champ_namespace): Add int no_adl argument.
5406 * parse.c (operator_length_standard): Return length for OP_ADL_FUNC
5407 expression.
5408 * expprint.c (op_name_standard): Added string for OP_ADL_FUNC case.
5409 * eval.c (evaluate_subexp_standard): Added OP_ADL_FUNC case.
5410 Evaluate arguments and use them to perform ADL lookup.
5411 Pass no_adl argument to find_overload_match.
5412 Disable adl lookup when evaluating a fully qualified OP_FUNCALL.
5413 * cp-support.h: Added prototype for
5414 make_symbol_overload_list_namespace.
5415 * cp-support.c (make_symbol_overload_list_namespace): New function.
5416 (make_symbol_overload_list_adl_namespace): New function.
5417 (make_symbol_overload_list_adl): New function.
5418 (make_symbol_overload_list_using): Moved code to add function to
5419 overload set to make_symbol_overload_list_namespace.
5420 * c-exp.y: create UNKNOWN_CPP_NAME token.
5421 Add parse rule for ADL functions.
5422 (classify_name): Recognize an UNKNOWN_CPP_NAME.
5423
3f1f6884
JK
54242010-05-07 Jan Kratochvil <jan.kratochvil@redhat.com>
5425
5426 * fbsd-nat.c (fbsd_make_corefile_notes): Add cast to NULL used as
5427 sentinel.
5428
3caf13b4
JB
54292010-05-07 Joel Brobecker <brobecker@adacore.com>
5430
5431 Implement task switching on solaris targets.
5432 * sol-thread.c (thread_db_find_thread_from_tid)
5433 (sol_get_ada_task_ptid): New functions.
5434 (init_sol_thread_ops): Set sol_thread_ops.to_get_ada_task_ptid.
5435
94b0dee1
PA
54362010-05-07 Pedro Alves <pedro@codesourcery.com>
5437
5438 * remote.c (remote_query_supported_append): Use reconcat.
5439 (remote_query_supported): Install a cleanup. Use reconcat.
5440
1408c251
PA
54412010-05-07 Pedro Alves <pedro@codesourcery.com>
5442
5443 * gdbarch.sh (qsupported): Delete.
5444 * gdbarch.h, gdbarch.c: Regenerate.
5445 * remote.c (remote_query_supported): Remove use of
5446 gdbarch_qsupported.
5447
f8e50cfe
SDJ
54482010-05-06 Sergio Durigan Junior <sergiodj@redhat.com>
5449
5450 * xml-syscall.c (syscall_start_syscalls_info): Remove unused
5451 function.
5452
8ea13695
MS
54532010-05-06 Michael Snyder <msnyder@vmware.com>
5454
c6913b7d
MS
5455 * xml-support.c (xinclude_start_include): Delete unused variable.
5456 (xml_process_xincludes): Delete unused variable.
5457 * xml-syscall.c (syscall_parse_xml): Delete unused variable.
5458 * target-descriptions.c (tdesc_gdb_type): Delete unused variable.
5459 (tdesc_find_arch_register): Delete unused variable.
5460 (tdesc_use_registers): Delete unused variable.
5461 * xml-tdesc.c (tdesc_start_target): Delete unused variable.
5462 * inferior.c (print_inferior): Delete unused variable.
5463 * record.c (record_open_1): Delete unused variable.
5464 (record_restore): Delete unused variable.
5465 (cmd_record_save): Delete unused variable.
5466 * gcore.c (derive_heap_segment): Delete unused variable.
5467 (objfile_find_memory_regions): Use unused variable.
5468 * jit.c (jit_inferior_init): Delete unused variable.
5469 * progspace.c (clone_program_space): Delete unused variable.
5470 (pspace_empty_p): Delete unused variable.
0407b3f1
AS
5471
5472 * frame-unwind.c (frame_unwind_find_by_frame):
1c5465ac
MS
5473 Delete unused variable.
5474 * gnu-v2-abi.c (gnuv2_value_rtti_type): Delete unused variable.
5475 * cp-support.c (mangled_name_to_comp): Delete unused variable.
5476 (method_name_from_physname): Delete unused variable.
5477 (cp_func_name): Delete unused variable.
5478 (cp_validate_operator): Delete unused variable.
0407b3f1 5479 * cp-namespace.c (cp_scan_for_anonymous_namespaces):
1c5465ac 5480 Delete unused variable.
0407b3f1 5481 * trad-frame.c (trad_frame_get_prev_register):
1c5465ac
MS
5482 Delete unused variable.
5483 * tramp-frame.c (tramp_frame_cache): Delete unused variable.
5484
1be757cf
MS
5485 * serial.c (serial_for_fd): Delete unused variable.
5486 * mdebugread.c (psymtab_to_symtab_1): Delete unused variable.
5487 * top.c (execute_command): Delete unused variable.
5488 (init_main): Delete unused variable.
5489 * utils.c (do_fclose_cleanup): Delete unused variable.
5490 (do_all_inferior_continuations): Delete unused variable.
5491 (initialize_utils): Delete unused variable.
5492 (internal_problem_mode): Delete unused global.
5493 * frame.c (get_prev_frame): Delete unused global.
5494 (get_frame_locals_address): Delete unused global.
5495 (get_frame_args_address): Delete unused global.
5496
9216103f
MS
5497 * p-typeprint.c (pascal_type_print_base): Delete unused variable.
5498 (pascal_type_print_varspec_prefix): Delete unused variable.
5499 * f-typeprint.c (f_type_print_base): Delete unused variable.
5500 (f_type_print_varspec_suffix): Delete unused variable.
5501 * m2-typeprint.c (m2_print_type): Delete unused variable.
5502 (m2_long_set): Delete unused variable.
5503 * ada-valprint.c (ada_val_print_1): Delete unused variable.
5504 * d-valprint.c (dynamic_array_type): Delete unused variable.
0407b3f1 5505 * f-valprint.c (f77_get_dynamic_length_of_aggregate):
9216103f
MS
5506 Delete unused variable.
5507 (f77_create_arrayprint_offset_tbl): Delete unused variable.
5508 * m2-valprint.c (m2_val_print): Delete unused variable.
5509
34fa1d9d
MS
5510 * ui-out.c (ui_out_field_int): Delete unused variable.
5511 (ui_out_field_fmt_int): Delete unused variable.
5512 * varobj.c (varobj_list_children): Delete unused variable.
5513 (varobj_set_value): Delete unused variable.
5514 (install_new_value_visualizer): Delete unused variable.
5515 (varobj_set_visualizer): Delete unused variable.
5516 (varobj_update): Delete unused variable.
5517 (varobj_editable_p): Delete unused variable.
5518 (c_value_of_root): Delete unused variable.
5519 (cplus_describe_child): Delete unused variable.
5520
b5385fc0
MS
5521 * ada-lang.c (add_defn_to_vec): Delete unused variable.
5522 (decode_constrained_packed_array_type): Delete unused variable.
5523 (add_defn_to_vec): Delete unused variable.
5524 (symbol_completion_match): Delete unused variable.
5525 (value_tag_from_contents_and_address): Delete unused variable.
5526 (ada_evaluate_subexp): Delete unused variable.
5527 * c-lang.c (classify_type): Delete unused variable.
5528 * f-lang.c (f_printstr): Delete unused variable.
5529 * objc-lang.c (objc_printstr): Delete unused variable.
5530 * ada-tasks.c (get_known_tasks_addr): Delete unused variable.
5531 * jv-lang.c (type_from_class): ifdef unused variable.
5532 (java_class_name_from_physname): Delete unused variable.
5533 * m2-lang.c (m2_printstr): Delete unused variable.
5534
4fc06681
MS
5535 * objfiles.c (objfile_relocate): Delete unused variable.
5536 * maint.c (_initialize_maint_cmds): Delete unused variable.
5537 * demangle.c (_initialize_demangler): Delete unused variable.
5538 * corefile.c (reopen_exec_file): Delete unused variable.
5539 * dwarf2expr.c (dwarf2_read_address): Delete unused variable.
5540 * dwarf2-frame.c (decode_frame_entry): Delete unused variable.
5541
6b4398f7
MS
5542 * osabi.c (_initialize_gdb_osabi): Delete unused variable.
5543 * memattr.c (mem_delete): Delete unused variable.
5544 (invalidate_target_mem_regions): Delete unused variable.
5545 * mem-break.c (default_memory_insert_breakpoint):
5546 Delete unused variable.
5547 * target.c (target_get_osdata): Delete unused variable.
5548 * parse.c (length_of_subexp): Delete unused variable.
5549 (prefixify_subexp): Delete unused variable.
5550 (exp_iterate): Delete unused variable.
5551 * reverse.c (delete_bookmark_command): Delete unused variable.
5552
308d96ed
MS
5553 * macrocmd.c (_initialize_macrocmd): Delete unused variable.
5554 * macroexp.c (gather_arguments): Delete unused variable.
5555 (substitute_args): Delete unused variable.
5556 * completer.c (gdb_completer_loc_break_characters): Unused, delete.
5557 * gdbarch.sh (gdbarch_printable_names): Delete unused variable.
5558 (_initialize_gdbarch): Delete unused variable.
5559 * gdbarch.c, gdbarch.h: Regenerate.
0407b3f1 5560 * arch-utils.c (initialize_current_architecture):
308d96ed
MS
5561 Delete unused variable.
5562 (_initialize_gdbarch_utils): Delete unused variable.
5563 * gdbtypes.c (make_cv_type): Delete unused variable.
5564 (make_type_with_address_space): Delete unused variable.
5565
167e4384
MS
5566 * linespec.c (decode_compound): Delete unused variable.
5567 * dictionary.c (iterator_next_hashed): Delete unused variable.
5568 * infcall.c (call_function_by_hand): Delete unused variable.
5569 * infcmd.c (step_1): Delete unused variable.
5570 (registers_info): Delete unused variable.
5571 (attach_command): Delete unused variable.
5572 * infrun.c (follow_exec): Delete unused variable.
5573 (handle_step_into_function_backwards): Delete unused variable.
5574 (_initialize_infrun): Delete unused variable.
5575 * stack.c (parse_frame_specification_1): Delete unused variable.
5576 (frame_info): Delete unused variable.
5577 (backtrace_command_1): Delete unused variable.
5578 (catch_info): Delete unused variable.
5579
8f78b329
MS
5580 * eval.c (evaluate_subexp_standard): Delete unused variable.
5581 * valops.c (value_cast_pointers): Delete unused variable.
5582 (value_dynamic_cast): Delete unused variable.
5583 (value_array): Delete unused variable.
5584 (find_overload_match): Delete unused variable.
5585 * valarith.c (value_subscript): Delete unused variable.
5586 (value_binop): Delete unused variable.
5587 * valprint.c (_initialize_valprint): Delete unused variable.
5588 * printcmd.c (print_command_1): Delete unused variable.
5589 (address_info): Delete unused variable.
5590 (printf_command): Delete unused variable.
5591
8ea13695
MS
5592 * auxv.c (target_auxv_search): Delete unused variable.
5593 * blockframe.c (get_frame_block): Delete unused variable.
5594 * regcache.c (regcache_cpy): Delete unused variable.
5595 (regcache_cpy_no_passthrough): Delete unused variable.
5596 * charset.c (wchar_iterate): Delete unused variable.
5597 (find_charset_names): Delete unused variable.
5598 (_initialize_charset): Delete unused variable.
0407b3f1 5599 * disasm.c (do_mixed_source_and_assembly):
8ea13695 5600 Delete unused variable.
0407b3f1 5601 * source.c (set_default_source_symtab_and_line):
8ea13695
MS
5602 Delete unused variable.
5603 (set_substitute_path_command): Delete unused variable.
5604 * value.c (preserve_values): Delete unused variable.
5605 (value_from_double): Delete unused variable.
5606
afe38095
MS
56072010-05-05 Michael Snyder <msnyder@vmware.com>
5608
952a6d41
MS
5609 * psymtab.c (lookup_partial_symbol): Delete unused variable.
5610 (find_last_source_symtab_from_partial): Delete unused variable.
5611 * symfile.c (place_section): Delete unused variable.
5612 (default_symfile_offsets): Delete unused variable.
5613 (get_debug_link_info): Delete unused variable.
5614 (find_separate_debug_file_by_debuglink): Delete unused variable.
5615 (add_symbol_file_command): Delete unused variable.
5616 (symfile_find_segment_sections): Delete unused variable.
5617 * symmisc.c (free_symtab): Delete unused variable.
5618 (dump_symtab_1): Delete unused variable.
5619 * symtab.c (lookup_symbil_aux_quick): Delete unused variable.
5620 (find_pc_sect_symtab): Delete unused variable.
5621 (skip_prologue_using_lineinfo): Delete unused variable.
5622 (sources_info): Delete unused variable.
5623 (completion_list_add_name): Delete unused variable.
5624 (expand_line_sal): Delete unused variable.
5625
0407b3f1 5626 * breakpoint.c (validate_commands_for_breakpoint):
afe38095
MS
5627 Delete unused variables.
5628 (insert_catchpoint): Delete unused variable.
5629 (update_watchpoint): Delete unused variable.
5630 (insert_bp_location): Delete unused variable.
5631 (insert_breakpoint_locations): Delete unused variable.
5632 (remove_breakpoint_1): Delete unused variable.
5633 (software_breakpoint_inserted_here_p): Delete unused variable.
5634 (watchpoints_triggered): Delete unused variable.
5635 (bpstat_check_watchpoint): Delete unused variable.
5636 (bpstat_stop_status): Delete unused variable.
5637 (print_one_breakpoint_location): Delete unused variable.
5638 (allocate_bp_location): Delete unused variable.
5639 (create_breakpoint): Delete unused variable.
5640 (watch_command_1): Delete unused variable.
5641 (catch_exception_command_1): Delete unused variable.
5642 (catch_ada_exception_command): Delete unused variable.
5643 (delete_breakpoint): Delete unused variable.
5644 (breakpoint_re_set_one): Delete unused variable.
5645 (do_enable_breakpoint): Delete unused variable.
5646
eda5a4d7
PA
56472010-05-06 Pedro Alves <pedro@codesourcery.com>
5648
5649 * amd64-tdep.c: Include disasm.h.
5650 (amd64_insn_length_fprintf, amd64_insn_length_init_dis)
5651 (amd64_insn_length): Moved to disasm.c and renamed.
5652 (fixup_riprel): Adjust.
5653 * disasm.c (do_ui_file_delete): New.
5654 (gdb_insn_length): New.
5655 (gdb_buffered_insn_length_fprintf)
5656 (gdb_buffered_insn_length_init_dis)
5657 (gdb_buffered_insn_length): New, moved from amd64-tdep.c, and
5658 renamed.
5659 * disasm.h (gdb_insn_length): Declare.
5660 (gdb_buffered_insn_length): Declare.
5661
02357a4a
PA
56622010-05-06 Pedro Alves <pedro@codesourcery.com>
5663
5664 * remote.c (clear_threads_parsing_context): New.
5665 (remote_threads_info): Delete unused null_cleanup. Install a
5666 cleanup to clear the threads_parsing_context in case parsing
5667 throws.
5668
8c5630cb
MS
56692010-05-05 Michael Snyder <msnyder@vmware.com>
5670
5671 * c-exp.y (parse_string_or_char): Delete unused variable.
5672 (c_lex): Delete unused variable.
5673 * cp-name-parser.y (cpname_lex): Delete unused variable.
5674 * ada-exp.y (find_primitive_type): Delete unused variable.
5675 (write_var_or_type): Delete unused variable.
5676 * jv-exp.y (java_parse): Delete unused variable.
5677 (push_expression_name): Delete unused variable.
5678 * p-exp.y (pascal_lex): Delete unused variable.
5679
46c162d4
PA
56802010-05-05 Pedro Alves <pedro@codesourcery.com>
5681
5682 * remote.c (remote_threads_info): Really revert previous previous
5683 change.
5684
0043e6a5
MS
56852010-05-05 Michael Snyder <msnyder@vmware.com>
5686
fa238c03
MS
5687 * elfread.c (elf_symtab_read): Delete unused variable.
5688 (find_separate_debug_file_by_buildid): Delete unused variables.
5689 (elf_symfile_read): Delete unused variable.
5690
5691 * coffread.c (coff_symfile_read): Delete unused variables.
5692
5693 * coff-pe-read.c (add_pe_exported_sym): Delete unused variable.
5694 (read_pe_exported_syms): Delete unused variable.
5695
5696 * stabsread.c (define_symbol): Delete unused variable.
5697
5698 * dwarf2read.c (read_type_comp_unit_head): Delete unused variable.
5699 (process_psymtab_comp_unit): Delete unused variable.
5700 (dwarf2_build_psymtabs_hard): Delete unused variable.
5701 (load_partial_comp_unit): Delete unused variable.
5702 (create_all_comp_units): Delete unused variable.
5703 (scan_partial_symbols): Delete unused variable.
5704 (add_partial_symbol): Delete unused variable.
5705 (add_partial_namespace): Delete unused variable.
5706 (add_partial_enumeration): Delete unused variable.
5707 (load_full_comp_unit): Delete unused variable.
5708 (process_full_comp_unit): Delete unused variable.
5709 (read_file_scope): Delete unused variable.
5710 (read_type_unit_scope): Delete unused variable.
5711 (process_structure_scope): Delete unused variable.
5712 (process_enumeration_scope): Delete unused variable.
5713 (read_tag_ptr_to_member_type): Delete unused variable.
5714 (read_typedef): Delete unused variable.
5715 (read_partial_die): Delete unused variable.
5716 (decode_locdesc): Delete unused variable.
5717 (zeroed_partial_die): Delete unused global variable.
5718
0407b3f1 5719 * tui/tui-interp.c (_initialize_tui_interp):
0043e6a5 5720 Delete unused variable.
0407b3f1 5721 * tui/tui-regs.c tui_display_registers_from):
0043e6a5
MS
5722 Delete unused variable.
5723 (tui_check_register_values): Delete unused variable.
5724 (tui_register_format): Delete unused variable.
5725 * tui/tui-win.c (_initialize_tui_win): Delete unused variable.
0407b3f1 5726 * tui/tui-windata.c (tui_display_data_from_line):
0043e6a5
MS
5727 Delete unused variables.
5728 (tui_vertical_data_scroll): Delete unused variables.
5729
75721c66
MS
57302010-05-05 Michael Snyder <msnyder@vmware.com>
5731
c31a71f4
MS
5732 * remote.c (remote_threads_info): Revert questionable part of
5733 the previous change.
5734
57352010-05-05 Michael Snyder <msnyder@vmware.com>
5736
5737 * mi/mi-out.c (mi_table_begin): Delete unused variable.
5738 * mi/mi-cmd-var.c (print_varobj): Delete unused variable.
5739 (mi_cmd_var_list_children): Delete unused variable.
5740 (varobj_update_one): Delete unused variable.
5741 * mi/mi-cmd-break.c (mi_cmd_break_insert): Delete unused variables.
0407b3f1 5742 * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals):
c31a71f4
MS
5743 Delete unused variable.
5744 (mi_cmd_stack_list_variables): Delete unused variable.
5745 (list_args_or_locals): Delete unused variable.
0407b3f1 5746 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file):
c31a71f4
MS
5747 Delete unused variables.
5748 (mi_cmd_file_list_exec_source_files): Delete unused variable.
0407b3f1 5749 * mi/mi-cmd-target.c (mi_cmd_target_file_delete):
c31a71f4
MS
5750 Delete unused variable.
5751 * mi/mi-interp.c (mi_interpreter_exec): Delete unused variable.
5752 (mi_cmd_interpreter_exec): Delete unused variable.
5753 (mi_on_normal_stop): Delete unused variable.
5754 * mi/mi-main.c (run_one_inferior): Delete unused variable.
5755 (print_one_inferior): Delete unused variables.
5756 (mi_execute_command): Delete unused variable.
5757 (mi_cmd_execute): Delete unused variable.
5758 (timestamp): Delete unused variable.
5759
5760 * cli/cli-dump.c (dump_memory_to_file): Delete unused variable.
d36fc00b 5761 (restore_binary_file): Delete unused variable.
c31a71f4
MS
5762 * cli/cli-decode.c (deprecated_cmd_warning): Delete unused variables.
5763 * cli/cli-script.c (define_command): Delete unused variables.
d36fc00b
MS
5764 (recurse_read_control_structure): Delete unused variable.
5765 (script_from_file): Delete unused variable.
c31a71f4 5766 * cli/cli-cmds.c (complete_command): Delete unused variable.
d36fc00b
MS
5767 (disassemble_command): Delete unused variable.
5768
5769 * ax-gdb.c (gen_struct_elt_for_reference): Delete unused variables.
0407b3f1 5770 * tracepoint.c (delete_trace_variable_command):
d36fc00b
MS
5771 Delete unused variables.
5772 (encode_actions_1): Delete unused variables.
5773 (start_tracing): Delete unused variable.
5774 (trace_status_mi): Delete unused variable.
5775 (tfind_1): Delete unused variable.
5776 (trace_find_pc_command): Delete unused variable.
5777 (trace_find_line_command): Delete unused variables.
5778 (trace_find_range_command): Delete unused variables.
5779 (trace_find_outside_command): Delete unused variables.
5780 (parse_tracepoint_definition): Delete unused variables.
5781 (tfile_fetch_registers): Delete unused variable.
5782
9128a503
MS
5783 * dcache.c (dcache_init): Delete unused variable.
5784 (dcache_info): Delete unused variable.
5785
aa369b55 5786 * remote.c (remote_threads_info): Delete unused variable.
9128a503 5787 (process_stop_reply) :Delete unused variable.
aa369b55
MS
5788 (remote_get_trace_status): Delete unused variables.
5789
9e9547e4
MS
5790 * linux-thread-db.c (add_thread_db_info): Delete unused variable.
5791 (thread_from_lwp): Delete unused variable.
5792 (enable_thread_event_reporting): Delete unused variable.
5793 (check_for_thread_db): Delete unused variables.
5794 (thread_db_find_new_threads_2): Delete unused variable.
0407b3f1 5795
9e9547e4
MS
5796 * linux-fork.c (info_checkpoints_command): Delete unused variables.
5797 (checkpoint_command): Delete unused variable.
5798 (linux_fork_context): Delete unused variables.
5799
fa238c03 5800 * linux-nat.c (linux_parent_pid): Delete unused global variable.
75083f7e
MS
5801 (linux_tracefork_child): Delete unused variable.
5802 (linux_child_follow_fork): Delete unused variable.
5803 (linux_nat_detach): Delete unused variable.
5804 (linux_handle_extended_wait): Delete unused variable.
5805 (linux_nat_has_pending_sigint): Delete unused variable.
5806 (linux_nat_find_memory_regions): Delete unused variable.
5807 (linux_nat_make_corefile_notes): Delete unused variables.
5808 (linux_nat_info_proc_cmd): Delete unused variable.
5809 (linux_proc_pending_signals): Delete unused variable.
5810 (linux_nat_stop_lwp): Delete unused variables.
5811 (_initialize_linux_nat): Delete unused variable.
5812
fa238c03 5813 * ser-pipe.c (pipe_ops): Delete unused global variable.
2d148b94 5814
0407b3f1 5815 * linux-record.c (record_linux_system_call):
e0f069a3
MS
5816 Delete unused variables.
5817
789d24f0
MS
5818 * corelow.c (core_xfer_partial): Delete unused variables.
5819
1cd337a5 5820 * solib-svr4.c (find_program_interpreter): Delete unused variable.
0407b3f1 5821 (svr4_solib_create_inferior_hook): Add ifdef around
1cd337a5
MS
5822 conditionally-used variable declarations.
5823
b00e3f56
MS
5824 * solib.c (solib_find): Delete unused variable.
5825 (free_so_symbols): Delete unused variable.
5826 (info_sharedlibrary_command): Delete unused variable.
5827 (reload_shared_libraries_1): Delete unused variable.
5828 (_initialize_solib): Delete unused variable.
5829
90f62196
MS
5830 * i386-tdep.c (i386_supply_xstateregset) Delete unused variable.
5831 (i386_collect_xstateregset): Delete unused variable.
5832 * i387-tdep.c (i387_print_float_info): Delete unused variable.
5833
75721c66
MS
5834 * features/i386/i386-mmx.c (initialize_tdesc_i386_mmx):
5835 Delete unused variable 'type'.
5836
af33db37
JB
58372010-05-05 Joel Brobecker <brobecker@adacore.com>
5838
90f62196 5839 * gdbtypes.h (MAX_OF_TYPE, MIN_OF_TYPE): Delete macros. *
63db82b2
JB
5840 ada-lang.c: Remove comment mentioning these macros.
5841 * m2-exp.y: Delete commented out code.
af33db37 5842
0497f5b0
JB
58432010-05-05 Joel Brobecker <brobecker@adacore.com>
5844
5845 * sparc-tdep.c (sparc_structure_or_union_p): Return non-zero
5846 for array types.
5847 * sparc64-tdep.c (sparc64_structure_or_union_p): Likewise.
5848
6e39997a
PM
58492010-05-04 Pierre Muller <muller@ics.u-strasbg.fr>
5850
5851 ARI fix: Remove ATTRIBUTE_UNUSED throughout.
0407b3f1 5852 * arm-linux-tdep.c (arm_linux_cleanup_svc): Remove
6e39997a
PM
5853 ATTRIBUTE_UNUSED.
5854 (cleanup_kernel_helper_return): Likewise.
5855 * arm-tdep.c (copy_unmodified): Likewise.
5856 (copy_preload): Likewise.
5857 (copy_copro_load_store): Likewise.
5858 (cleanup_branch): Likewise.
5859 (copy_b_bl_blx): Likewise.
5860 (copy_bx_blx_reg): Likewise.
5861 (copy_alu_imm): Likewise.
5862 (copy_alu_reg): Likewise.
5863 (copy_alu_shifted_reg): Likewise.
5864 (cleanup_load): Likewise.
5865 (cleanup_store): Likewise.
5866 (cleanup_block_load_pc): Likewise.
5867 (cleanup_svc): Likewise.
5868 (copy_undef): Likewise.
5869 (copy_unpred): Likewise.
5870 * remote.c (register_remote_support_xml): Likewise.
5871
1412f70b
HZ
58722010-05-05 Hui Zhu <teawater@gmail.com>
5873
5874 * gdbarch.h (gdbarch_has_dos_based_file_system): Update comment.
5875
c4f7c687
MK
58762010-05-04 Mark Kettenis <kettenis@gnu.org>
5877
5878 * remote.c (register_remote_support_xml)
5879 (remote_query_supported_append, remote_query_supported): Add cast
5880 to NULL used as sentinel.
5881 * tracepoint.c (tvariables_info_1): Likewise.
5882 * utils.c (add_internal_problem_command): Likewise.
5883
63b4f126
MGD
58842010-05-04 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
5885
5886 * dwarf2loc.c (read_pieced_value, write_pieced_value,
5887 dwarf2_evaluate_loc_desc): Handle not being able to access DWARF
5888 registers gracefully.
5889
2f1bdd26
MGD
58902010-05-04 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
5891
0407b3f1 5892 * exec.c (print_section_info): Display entry point without arch
2f1bdd26
MGD
5893 specific parts.
5894
e1c34c5d
PM
58952010-05-04 Pierre Muller <muller@ics.u-strasbg.fr>
5896
5897 PR exp/11349.
5898 * printcmd.c (x_command): Only dereference once implicitly for
5899 TYPE_CODE_REF.
5900
ae462839
DE
59012010-05-03 Doug Evans <dje@google.com>
5902
5903 * event-loop.c (gdb_timer): Delete unused global.
5904 (create_timer): Update.
5905
1ac77ea1
JK
59062010-05-03 Jan Kratochvil <jan.kratochvil@redhat.com>
5907
5908 * cp-namespace.c (cp_lookup_symbol_imports): Support ALIAS for the
5909 CURRENT->DECLARATION case.
5910 * cp-support.h (struct using_direct): Provide extended comment.
5911
7c54a108
MK
59122010-05-03 Mark Kettenis <kettenis@gnu.org>
5913
5914 * hppaobsd-tdep.c (HPPAOBSD_SIZEOF_GREGS): Renamed from
5915 HPPABSD_SIZEOF_GREGS.
5916 (HPPAOBSD_SIZEOF_FPREGS): New define.
5917 (hppaobsd_supply_gregset): Renamed from hppabsd_supply_gregset.
5918 (hppaobsd_supply_fpregset): New function.
5919 (hppaobsd_gregset): Renamed from hppabsd_gregset.
5920 (hppaobsd_fpregset): New variable.
5921 (hppaobsd_regset_from_core_section): Handle floating-point registers.
5922 (_initialize_hppabsd_tdep): Remove spurious blank line.
5923
278582cb
PM
59242010-05-03 Pierre Muller <muller@ics.u-strasbg.fr>
5925
5926 PR pascal/11349.
5927 * p-valprint.c (pascal_value_print): Always dereference a value with
5928 type code TYPE_CODE_REF.
0407b3f1 5929
f0223081
PA
59302010-05-03 Pedro Alves <pedro@codesourcery.com>
5931
5932 * remote.c (remote_notice_signals): New.
5933 (remote_start_remote): In non-stop mode, update the remote end on
5934 which signals it can silently pass.
5935 (init_remote_ops): Install remote_notice_signals.
5936
c25c4a8b
JK
59372010-05-02 Jan Kratochvil <jan.kratochvil@redhat.com>
5938
5939 * cli/cli-cmds.h (error_no_arg): Remove. Move the comment ...
5940 * command.h (error_no_arg): ... here. Remove NORETURN, change
5941 ATTR_NORETURN to ATTRIBUTE_NORETURN.
5942 * defs.h (NORETURN, ATTR_NORETURN): Remove.
5943 (perror_with_name, verror, error, error_stream, vfatal, fatal)
5944 (internal_verror, internal_error, nomem): Remove NORETURN, change
5945 ATTR_NORETURN to ATTRIBUTE_NORETURN.
5946 * exceptions.c (throw_exception, deprecated_throw_reason, throw_verror)
5947 (throw_vfatal, throw_error): Remove NORETURN.
5948 (throw_it): Remove NORETURN, change ATTR_NORETURN to ATTRIBUTE_NORETURN.
5949 * exceptions.h (throw_exception, throw_verror, throw_vfatal)
5950 (throw_error, deprecated_throw_reason): Remove NORETURN, change
5951 ATTR_NORETURN to ATTRIBUTE_NORETURN.
5952 * linespec.c (cplusplus_error): Remove NORETURN, change ATTR_NORETURN
5953 to ATTRIBUTE_NORETURN for prototype, for the definition only remove
5954 NORETURN.
5955 * remote-mips.c (mips_error): Change NORETURN to ATTRIBUTE_NORETURN.
5956 * remote-sim.c (gdb_os_error): Change ATTR_NORETURN to
5957 ATTRIBUTE_NORETURN.
5958 * target.c (tcomplain): Likewise.
5959 * target.h (noprocess): Remove NORETURN, change ATTR_NORETURN to
5960 ATTRIBUTE_NORETURN.
5961 * utils.c (verror, error, vfatal, fatal, error_stream, internal_verror)
5962 (internal_error, perror_with_name, nomem): Remove NORETURN.
5963 * xml-support.h (gdb_xml_error): Change ATTR_NORETURN to
5964 ATTRIBUTE_NORETURN.
5965
a0b31db1
JK
59662010-05-02 Jan Kratochvil <jan.kratochvil@redhat.com>
5967
5968 * ada-lang.c (lim_warning): Change ATTR_FORMAT to ATTRIBUTE_PRINTF.
5969 * amd64-tdep.c (amd64_insn_length_fprintf): Likewise.
5970 * cli-out.c (cli_field_fmt): New ATTRIBUTE_PRINTF.
5971 (cli_message, out_field_fmt): Change ATTR_FORMAT to ATTRIBUTE_PRINTF.
5972 * complaints.c (find_complaint): New ATTRIBUTE_PRINTF.
5973 (vcomplaint): Change ATTR_FORMAT to ATTRIBUTE_PRINTF.
5974 * complaints.h (complaint, internal_complaint): Likewise.
5975 * defs.h: Change ATTR_FORMAT to ATTRIBUTE_PRINTF in the top comment.
5976 (ATTR_FORMAT): Remove.
5977 (query, nquery, yquery, vprintf_filtered, vfprintf_filtered)
5978 (fprintf_filtered, fprintfi_filtered, printf_filtered, printfi_filtered)
5979 (vprintf_unfiltered, vfprintf_unfiltered, fprintf_unfiltered)
5980 (printf_unfiltered, xasprintf, xvasprintf, xstrprintf, xstrvprintf)
5981 (xsnprintf, verror, error, vfatal, fatal, internal_verror)
5982 (internal_error, internal_vwarning, internal_warning, warning)
5983 (vwarning): Change ATTR_FORMAT to ATTRIBUTE_PRINTF.
5984 * disasm.c (fprintf_disasm): Likewise.
5985 * exceptions.c (throw_it): Likewise.
5986 * exceptions.h (exception_fprintf, throw_verror, throw_vfatal)
5987 (throw_error): Likewise.
5988 * language.h (type_error, range_error): Likewise.
5989 * linespec.c (cplusplus_error): Likewise.
5990 * mi/mi-interp.c (mi_interp_query_hook): Likewise.
5991 * mi/mi-out.c (mi_field_fmt, mi_message): Likewise.
5992 * monitor.c (monitor_debug): Likewise.
5993 * parser-defs.h (parser_fprintf): Likewise.
5994 * serial.h (serial_printf): Likewise.
5995 * tui/tui-hooks.c (tui_query_hook): Likewise.
5996 * ui-out.c (default_field_fmt, default_message, uo_field_fmt)
5997 (uo_message): Likewise.
5998 * ui-out.h (ui_out_field_fmt, ui_out_message): Likewise.
5999 * utils.c (vfprintf_maybe_filtered, internal_vproblem, defaulted_query):
6000 Likewise.
6001 * xml-support.h (gdb_xml_debug, gdb_xml_error): Likewise.
6002
02a45ac0
PA
60032010-05-02 Pedro Alves <pedro@codesourcery.com>
6004
6005 * cli-out.c (cli_table_begin, cli_table_body, cli_table_end)
6006 (cli_table_header, cli_begin, cli_end, cli_field_int)
6007 (cli_field_skip, cli_field_string, cli_field_fmt, cli_spaces)
6008 (cli_text, cli_message, cli_wrap_hint, cli_flush, cli_redirect):
6009 Delete forward declarations.
6010 (cli_ui_out_impl): Move below the callbacks.
6011 (_initialize_cli_out): Delete.
6012
1915ef4f
PA
60132010-05-02 Pedro Alves <pedro@codesourcery.com>
6014
6015 * README: Use consistent `GDB' and `GDBserver' spellings.
6016
0dfb946f
JK
60172010-05-02 Jan Kratochvil <jan.kratochvil@redhat.com>
6018
6019 * cli/cli-dump.h (parse_and_eval_with_error): Remove the declaration.
6020
4d533103
PA
60212010-05-01 Pedro Alves <pedro@codesourcery.com>
6022
6023 * infrun.c (prepare_for_detach): In non-stop, context switch to
6024 the thread that got the event before handling the event.
6025
705b5767
TT
60262010-04-30 Tom Tromey <tromey@redhat.com>
6027
6028 * symtab.c (symbol_set_names): Fix typo.
6029
3c0ee1a4
PM
60302010-04-30 Pierre Muller <muller@ics.u-strasbg.fr>
6031
6032 * python/py-param.c (parm_constants): Avoid ARI warning
6033 by adding ARI comment.
6034 (parmpy_init): Likewise.
6035
ea1fae46
PM
60362010-04-30 Pierre Muller <muller@ics.u-strasbg.fr>
6037
6038 * windows-tdep.c (windows_get_tlb_type): Remember last GDBARCH
6039 and created type for re-use.
6040
c24d0242
PM
60412010-04-30 Pierre Muller <muller@ics.u-strasbg.fr>
6042
6043 * NEWS: Mention gdbserver support for x86_64 Windows 64-bit.
6044
a26d8d11
DE
60452010-04-29 Doug Evans <dje@google.com>
6046
6047 * ser-base.h (reschedule): Delete prototype.
6048 * ser-base.c (reschedule): Make static.
6049
f8624c62
MGD
60502010-04-29 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
6051
6052 * arm-linux-tdep.c (ARM_LINUX_JB_PC): Remove.
6053 (ARM_LINUX_JB_PC_FPA): Add, offset of PC in longjmp buffer for FPA.
0407b3f1 6054 (ARM_LINUX_JB_PC_EABI): Add, offset of PC in longjmp buffer for
f8624c62 6055 EABI.
0407b3f1 6056 (arm_linux_init_abi): Set up JB_PC field dependent on FP model in
f8624c62
MGD
6057 use.
6058
e66408ed
PA
60592010-04-29 Pedro Alves <pedro@codesourcery.com>
6060
6061 PR gdb/11557
6062
6063 * regcache.c (registers_changed): Rename to ...
6064 (registers_changed_ptid): ... this, and only delete register cache
6065 entries matching the ptid filter argument.
6066 (registers_changed): Reimplement on top of registers_changed_ptid.
6067 * regcache.h (registers_changed_ptid): Declare.
6068 * target.c (target_resume): Flush register caches.
6069
d7b32ed3 60702010-04-29 Phil Muldoon <pmuldoon@redhat.com>
0407b3f1
AS
6071 Tom Tromey <tromey@redhat.com>
6072 Thiago Jung Bauermann <bauerman@br.ibm.com>
6073
6074 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-parameter.
6075 (SUBDIR_PYTHON_SRCS): Likewise.
6076 (py-parameter.o): New rule.
6077 * python/py-parameter.c: New file.
6078 * python/python-internal.h (gdbpy_initialize_parameter)
6079 (gdbpy_parameter, gdbpy_parameter_value)
6080 (gdbpy_parse_command_name): Declare.
6081 * python/py-cmd.c (parse_command_name): Rename to
6082 gdbpy_parse_command_name.
6083 (gdbpy_parse_command_name): Accept a starting list parameter and
6084 use over cmdlist.
6085 (cmdpy_init): Use gdbpy_parse_command_name.
6086 * python/python.c (parameter_to_python): Rename to
6087 gdbpy_parameter_to_python. Accept enum var_types and value.
6088 (gdbpy_parameter): Use gdbpy_parameter_value.
6089 (_initialize_python): Call gdbpy_initialize_parameters.
d7b32ed3 6090
ce72ce41
MGD
60912010-04-29 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
6092
6093 * MAINTAINERS: Add myself for write after approval privileges.
6094
6aecb9c2
JB
60952010-04-29 Mihail Zenkov <mihail.zenkov@gmail.com>
6096
6097 D language support.
6098 * Makefile.in (SFILES): Add d-lang.c d-valprint.c.
6099 (COMMON_OBS): Add d-lang.o d-valprint.o.
6100 (HFILES_NO_SRCDIR): Add d-lang.h.
6101 * NEWS: Mention D language support.
6102 * c-lang.c (c_emit_char, exp_descriptor_c): Make public.
6103 * c-lang.h (c_emit_char, exp_descriptor_c): Add declaration.
6104 * d-lang.c: New file.
6105 * d-lang.h: New file.
6106 * d-valprint.c: New file.
6107 * defs.h (enum language): Add language_d.
6108 * dwarf2read.c (set_cu_language): Add DW_LANG_D.
6109 * language.c (binop_result_type, integral_type, character_type)
6110 (string_type, boolean_type, structured_type): Add language_d.
6111 * symfile.c (init_filename_language_table): Add language_d.
6112 * symtab.c: Include d-lang.h.
6113 (symbol_init_language_specific, symbol_find_demangled_name)
6114 (symbol_natural_name, lookup_symbol_in_language)
6115 (symbol_demangled_name, symbol_matches_domain): Add language_d.
6116
6f992fbf
JB
61172010-04-27 Joel Brobecker <brobecker@adacore.com>
6118
6119 * solib-svr4.c (solib_svr4_r_map): Expand function description.
6120
dde59185
JB
61212010-04-27 Joel Brobecker <brobecker@adacore.com>
6122
6123 * symfile.c (init_filename_language_table): Register .dg files
6124 with language_ada.
6125
d09ce91e
JB
61262010-04-27 Joel Brobecker <brobecker@adacore.com>
6127
6128 * gdbtypes.h (struct main_type): Expand comment about target_type
6129 field.
6130
67f1675e
JB
61312010-04-27 Pedro Alves <pedro@codesourcery.com>
6132 Tristan Gingold <gingold@adacore.com>
02aeec7b
JB
6133
6134 * symfile.c (reread_symbols): Also search for file in libraries.
6135 Update comment.
6136
dfd0fe27
JB
61372010-04-27 Joel Brobecker <brobecker@adacore.com>
6138
6139 * configure.tgt: Treat x86-lynxos targets as x86 bareboard targets
6140 in terms of configuration.
6141
0133421a
JK
61422010-04-27 Jan Kratochvil <jan.kratochvil@redhat.com>
6143
6144 * objfiles.c: Include solist.h.
6145 (free_all_objfiles): New variable so. Check stale solist objfiles.
6146 * symfile.c (symbol_file_clear): Swap the order of free_all_objfiles
6147 and no_shared_libraries.
6148
e78f4312
JB
61492010-04-27 Joel Brobecker <brobecker@adacore.com>
6150
6151 ARI warning fix.
6152 * python/py-auto-load.c (source_section_scripts): Remove trailing
6153 new-line in i18n string.
6154
9214d371
DE
61552010-04-26 Doug Evans <dje@google.com>
6156
6157 * serial.c (serial_write): Handle serial_debug_p akin to serial_read.
6158
3f172e24
TT
61592010-04-26 Tom Tromey <tromey@redhat.com>
6160
6161 * cli/cli-decode.c (complete_on_cmdlist): Make two passes over the
6162 command list.
6163
e790e06e
PM
61642010-04-26 Pierre Muller <muller@ics.u-strasbg.fr>
6165
6166 Removal of config/i386/nm-i386sol2.h native configuration file.
6167 * config/i386/nm-i386sol2.h: Remove file.
6168 * config/i386/i386sol2.mh: Remove NAT_FILE definition.
6169 * config/i386/sol2-64.mh: Idem.
88562582
PM
6170 * config/djgpp/fnchange.lst: Remove reference to that file.
6171 * Makefile.in (HFILES_NO_SRCDIR): Idem.
e790e06e 6172
b7da9e9f
PM
61732010-04-26 Pierre Muller <muller@ics.u-strasbg.fr>
6174
6175 PR breakpoints/11531.
6176 * config/i386/nm-i386sol2.h (CANNOT_STEP_HW_WATCHPOINTS): Remove
6177 macro definition and related comment.
6178 * infrun.c (CANNOT_STEP_HW_WATCHPOINTS): Remove macro.
6179 (resume): Remove code and comment related to this macro.
6180
72f6eb52
JK
61812010-04-26 Jan Kratochvil <jan.kratochvil@redhat.com>
6182
6183 * cp-namespace.c (cp_lookup_symbol_in_namespace): Fix alloca size.
6184 Fix whitespace.
6185
ab38a727
PA
61862010-04-24 Pedro Alves <pedro@codesourcery.com>
6187
6188 * defs.h: Adjust comment.
6189 * filesystem.h, filesystem.c: New files.
6190 * Makefile.in (SFILES): Add filesystem.c.
6191 (COMMON_OBS): Add filesystem.o.
6192 * solib.c (solib_find): Handle DOS-based filesystems. Handle
6193 different target and host path flavours.
6194 * arm-symbian-tdep.c (arm_symbian_init_abi): Set
6195 has_dos_based_file_system on the gdbarch.
6196 * arm-wince-tdep.c (arm_wince_init_abi): Ditto.
6197 * i386-cygwin-tdep.c (i386_cygwin_init_abi): Ditto.
6198 * i386-tdep.c (i386_go32_init_abi): Ditto.
6199 * gdbarch.sh (has_dos_based_file_system): New.
6200 * gdbarch.h, gdbarch.c: Regenerate.
6201 * NEWS: Mention improved support for remote targets with DOS-based
6202 filesystems. Mention new `set/show target-file-system-kind'
6203 commands.
6204
35c9c7ba
SS
62052010-04-23 Stan Shebs <stan@codesourcery.com>
6206
6207 * ax.h (struct agent_expr): Merge in agent_reqs fields, add some
6208 comments.
6209 (struct agent_reqs): Remove.
6210 (ax_reg_mask): Declare.
6211 * ax-general.c (new_agent_expr): Add gdbarch argument, set new fields.
6212 (free_agent_expr): Free reg_mask.
6213 (ax_print): Add scope and register mask info.
6214 (ax_reqs): Remove agent_reqs argument, use agent expression
6215 fields, and move part of register mask computation to...
6216 (ax_reg_mask): New function.
6217 * ax-gdb.c (gen_trace_static_fields): Call it.
6218 (gen_traced_pop): Ditto.
6219 (is_nontrivial_conversion): Add dummy gdbarch to new_agent_expr.
6220 (gen_trace_for_var): Pass gdbarch to new_agent_expr.
6221 (gen_trace_for_expr): Ditto, and clear optimized_out flag.
6222 (gen_eval_for_expr): Ditto, and require an rvalue.
6223 (agent_command): Call ax_reqs.
6224 (agent_eval_command): Ditto.
6225 * tracepoint.c (report_agent_reqs_errors): Use agent expression fields.
6226 (validate_action_line): Ditto.
6227 (collect_symbol): Ditto.
6228 (encode_actions_1): Ditto.
6229
492928e4
JK
62302010-04-23 Daniel Jacobowitz <dan@codesourcery.com>
6231 Paul Pluzhnikov <ppluzhnikov@google.com>
6232 Jan Kratochvil <jan.kratochvil@redhat.com>
6233
6234 Fix deadlock on looped list of loaded shared objects.
6235 * solib-svr4.c (LM_PREV): New function.
6236 (IGNORE_FIRST_LINK_MAP_ENTRY): Use it.
6237 (svr4_current_sos): Check for correct l_prev. New variables prev_lm
6238 and next_lm. Clear prev_lm for solib_svr4_r_ldsomap.
6239 * config/djgpp/fnchange.lst: Add translation for solib-corrupted.exp.
6240
66d09542
DE
62412010-04-23 Doug Evans <dje@google.com>
6242
88a1906b
DE
6243 * configure.ac (CONFIG_SRCS): Add py-auto-load.o even if not using
6244 python.
6245 * configure: Regenerate.
6246 * main.c: #include "python/python.h".
6247 (captured_main): Defer loading auto-loaded scripts until after
6248 local_gdbinit has been sourced.
6249 * python/py-auto-load.c (gdbpy_global_auto_load): New global.
6250 (load_auto_scripts_for_objfile): New function.
6251 (auto_load_new_objfile): Call it.
6252 * python/python.h (gdbpy_global_auto_load): Declare.
6253 (load_auto_scripts_for_objfile): Declare.
6254
66d09542
DE
6255 Add support for auto-loading scripts from .debug_gdb_scripts section.
6256 * NEWS: Add entry for .debug_gdb_scripts.
6257 * Makefile.in SUBDIR_PYTHON_OBS): Add py-auto-load.o.
6258 (SUBDIR_PYTHON_SRCS): Add py-auto-load.c.
6259 (py-auto-load.o): New rule.
6260 * cli/cli-cmds.c (find_and_open_script): Make externally visible.
6261 * cli/cli-cmds.h (find_and_open_script): Update prototype.
6262 * python/py-auto-load.c: New file.
6263 * python/python-internal.h: #include <stdio.h>.
6264 (set_python_list, show_python_list): Declare.
6265 (gdbpy_initialize_auto_load): Declare.
6266 (source_python_script_for_objfile): Declare.
6267 * python/python.c: Remove #include of observer.h.
6268 (gdbpy_auto_load): Moved to py-auto-load.c.
6269 (GDBPY_AUTO_FILENAME): Ditto.
6270 (gdbpy_new_objfile): Delete.
6271 (source_python_script_for_objfile): New function.
6272 (set_python_list, show_python_list): Make externally visible.
6273 (_initialize_python): Move "auto-load" command to py-auto-load.c
6274 and observer_attach_new_objfile to py-auto-load.c.
6275
3a48e6ff 62762010-04-23 Jerome Guitton <guitton@adacore.com>
0407b3f1 6277
3a48e6ff
JG
6278 * alpha-tdep.c (INSN_OPCODE, MEM_RA, MEM_RB, MEM_DISP, BR_RA)
6279 (OPR_FUNCTION, OPR_HAS_IMMEDIATE, OPR_RA, OPR_RC, OPR_LIT): New macros.
6280 (lda_opcode, stq_opcode, bne_opcode, subq_opcode, subq_function):
6281 New constants.
6282 (alpha_heuristic_analyze_probing_loop): New function.
6283 (alpha_heuristic_frame_unwind_cache): In the prologue analysis, detect
6284 and handle cases when a stack probe loop is generated.
6285 * alpha-mdebug-tdep.c (alpha_mdebug_frameless): New function.
6286 (alpha_mdebug_max_frame_size_exceeded): New function.
6287 (alpha_mdebug_after_prologue): Use alpha_mdebug_frameless.
6288 (alpha_mdebug_frame_sniffer, alpha_mdebug_frame_base_sniffer):
6289 Return 0 when the maximum debuggable frame size has been exceeded.
6290
e4166a49
JB
62912010-04-23 Joel Brobecker <brobecker@adacore.com>
6292
6293 Fix ARI warning.
6294 * ppc-linux-nat.c (booke_cmp_hw_point): Do not mark inline.
6295
8bd10a10
CM
62962010-04-20 Chris Moller <cmoller@redhat.com>
6297
6298 PR 10179
6299
6300 * symtab.c (rbreak_command): Added code to include a filename
6301 specification in the rbreak argument.
6302 * NEWS: Added a brief description of filename-qualified rbreak.
6303
c0201579
JK
63042010-04-22 Jan Kratochvil <jan.kratochvil@redhat.com>
6305
6306 Fix crashes on dangling display expressions.
6307 * ada-lang.c (ada_operator_check): New function.
6308 (ada_exp_descriptor): Fill-in the field operator_check.
6309 * c-lang.c (exp_descriptor_c): Fill-in the field operator_check.
6310 * jv-lang.c (exp_descriptor_java): Likewise.
6311 * m2-lang.c (exp_descriptor_modula2): Likewise.
6312 * scm-lang.c (exp_descriptor_scm): Likewise.
6313 * parse.c (exp_descriptor_standard): Likewise.
6314 (operator_check_standard): New function.
6315 (exp_iterate, exp_uses_objfile_iter, exp_uses_objfile): New functions.
6316 * parser-defs.h (struct exp_descriptor): New field operator_check.
6317 (operator_check_standard, exp_uses_objfile): New declarations.
6318 * printcmd.c: Remove the inclusion of solib.h.
6319 (display_uses_solib_p): Remove the function.
6320 (clear_dangling_display_expressions): Call lookup_objfile_from_block
6321 and exp_uses_objfile instead of display_uses_solib_p.
6322 * solist.h (struct so_list) <objfile>: New comment.
6323 * symtab.c (lookup_objfile_from_block): Remove the static qualifier.
6324 * symtab.h (lookup_objfile_from_block): New declaration.
6325 (struct general_symbol_info) <obj_section>: Extend the comment.
6326
6ffbb7ab
TJB
63272010-04-22 Sergio Durigan Junior <sergiodj@linux.vnet.ibm.com>
6328 Thiago Jung Bauermann <bauerman@br.ibm.com>
6329
6330 * ppc-linux-nat.c (PTRACE_GET_DEBUGREG): Update comment.
6331 (PPC_PTRACE_GETWDBGINFO, PPC_PTRACE_SETHWDEBUG, PPC_PTRACE_DELHWDEBUG,
6332 ppc_debug_info, PPC_DEBUG_FEATURE_INSN_BP_RANGE,
6333 PPC_DEBUG_FEATURE_INSN_BP_MASK, PPC_DEBUG_FEATURE_DATA_BP_RANGE,
6334 PPC_DEBUG_FEATURE_DATA_BP_MASK, ppc_hw_breakpoint,
6335 PPC_BREAKPOINT_TRIGGER_EXECUTE, PPC_BREAKPOINT_TRIGGER READ,
6336 PPC_BREAKPOINT_TRIGGER_WRITE, PPC_BREAKPOINT_TRIGGER_RW,
6337 PPC_BREAKPOINT_MODE_EXACT PPC_BREAKPOINT_MODE_RANGE_INCLUSIVE,
6338 PPC_BREAKPOINT_MODE_RANGE_EXCLUSIVE, PPC_BREAKPOINT_MODE_MASK,
6339 PPC_BREAKPOINT_CONDITION_NONE, PPC_BREAKPOINT_CONDITION_AND,
6340 PPC_BREAKPOINT_CONDITION_EXACT, PPC_BREAKPOINT_CONDITION_OR,
6341 PPC_BREAKPOINT_CONDITION_AND_OR, PPC_BREAKPOINT_CONDITION_BE_ALL,
6342 PPC_BREAKPOINT_CONDITION_BE_SHIFT, PPC_BREAKPOINT_CONDITION_BE):
6343 Define, in case <ptrace.h> doesn't provide it.
6344 (booke_debug_info): New variable.
6345 (max_slots_number): Ditto.
6346 (hw_break_tuple): New struct.
6347 (thread_points): Ditto.
6348 (ppc_threads): New variable.
6349 (PPC_DEBUG_CURRENT_VERSION): New define.
6350 (have_ptrace_new_debug_booke): New function.
6351 (ppc_linux_check_watch_resources): Renamed to ...
6352 (ppc_linux_can_use_hw_breakpoint): ... this. Handle BookE processors.
6353 (ppc_linux_region_ok_for_hw_watchpoint): Handle BookE processors.
6354 (booke_cmp_hw_point): New function.
6355 (booke_find_thread_points_by_tid): Ditto.
6356 (booke_insert_point): Ditto.
6357 (booke_remove_point): Ditto.
6358 (ppc_linux_insert_hw_breakpoint): Ditto.
6359 (ppc_linux_remove_hw_breakpoint): Ditto.
6360 (get_trigger_type): Ditto.
6361 (ppc_linux_insert_watchpoint): Handle BookE processors.
6362 (ppc_linux_remove_watchpoint): Ditto.
6363 (ppc_linux_new_thread): Ditto.
6364 (ppc_linux_thread_exit): New function..
6365 (ppc_linux_stopped_data_address): Handle BookE processors.
6366 (ppc_linux_watchpoint_addr_within_range): Ditto.
6367 (_initialize_ppc_linux_nat): Initialize to_insert_hw_breakpoint and
6368 to_remove_hw_breakpoint fields of the target operations struct.
6369 Add observe for the thread_exit event.
6370
be0d2954
L
63712010-04-22 H.J. Lu <hongjiu.lu@intel.com>
6372
6373 * i386-linux-nat.c (regmap): Removed.
6374 (fetch_register): Replace regmap with
6375 i386_linux_gregset_reg_offset.
6376 (store_register): Likewise.
6377 (supply_gregset): Likewise.
6378 (fill_gregset): Likewise.
6379
6380 * i386-linux-tdep.c (i386_linux_gregset_reg_offset): Make it
6381 global.
6382
6383 * i386-linux-tdep.h (i386_linux_gregset_reg_offset): New.
6384
f56dcb88
CM
63852010-04-22 Chris Moller <cmoller@redhat.com>
6386
6387 * cp-valprint.c (cp_print_value_fields): Replaced obstack_base()
758afad7
L
6388 method of popping recursion-detection stack with a method based on
6389 obstack_object_size(). (Similar to the PR9167 patch below, but for
f56dcb88
CM
6390 the static array obstack rather than the static member obstack.)
6391
6cd6a2ae
L
63922010-04-22 H.J. Lu <hongjiu.lu@intel.com>
6393
6394 * amd64-linux-nat.c (amd64_linux_gregset64_reg_offset): Removed.
6395 (_initialize_amd64_linux_nat): Replace
6396 amd64_linux_gregset64_reg_offset with
6397 amd64_linux_gregset_reg_offset.
6398
6399 * amd64-linux-tdep.c (amd64_linux_gregset_reg_offset): Make it
6400 global.
6401
6402 * amd64-tdep.h (amd64_linux_gregset_reg_offset): New.
6403
621791b8
PM
64042010-04-22 Pierre Muller <muller@ics.u-strasbg.fr>
6405
6406 PR stabs/11479.
6407 * stabsread.c (set_length_in_type_chain): New function.
6408 (read_struct_type): Call set_length_in_type_chain function.
6409 (read_enum_type): Idem.
6410
105c2d85
SS
64112010-04-21 Stan Shebs <stan@codesourcery.com>
6412 Nathan Sidwell <nathan@codesourcery.com>
6413
6414 * tracepoint.c (trace_save): Open in binary mode.
6415
9a22f0d0
PM
64162010-04-22 Pierre Muller <muller@ics.u-strasbg.fr>
6417
6418 * gdbtypes.h (builtin_type): Add builtin_char16 and builtin_char32
6419 fields.
0407b3f1 6420 * gdbtypes.c (gdbtypes_post_init): Set builtin_char16 and
9a22f0d0
PM
6421 builtin_char32 fields.
6422 * printcmd.c (decode_format): Set char size to '\0'
6423 for strings unless explicit size is given.
6424 (print_formatted): Correct calculation of NEXT_ADDRESS
6425 for 16 or 32 bit strings.
6426 (do_examine): Do not force byte size for strings.
6427 Use builtin_char16 and builtin_char32 types to display
0407b3f1 6428 16 or 32 bit-wide strings.
9a22f0d0
PM
6429 (x_command): Set LAST_SIZE to 'b' for string type.
6430
f335d1b3
L
64312010-04-21 H.J. Lu <hongjiu.lu@intel.com>
6432
6433 PR corefiles/11523
6434 * amd64-linux-tdep.c (amd64_linux_core_read_description): Check
6435 XCR0 first.
6436
6437 * i386-linux-tdep.c (i386_linux_core_read_xcr0): Return 0 if
6438 there is no .reg-xstate section.
6439 (i386_linux_core_read_description): Check XCR0 first.
6440
a9789a6b
MF
64412010-04-21 Mike Frysinger <vapier@gentoo.org>
6442
6443 * gdb/sparc-tdep.c (sparc32_store_return_value): Add gdb_assert ()
6444 for len <= 8.
6445
0b66f317
CM
64462010-04-21 Chris Moller <cmoller@redhat.com>
6447
6448 PR 9167
6449 * cp-valprint.c (cp_print_value_fields): Replaced obstack_base()
32d7376d
L
6450 method of popping recursion-detection stack with a method based on
6451 obstack_object_size().
0b66f317 6452
6e354e5e
PM
64532010-04-21 Pierre Muller <muller@ics.u-strasbg.fr>
6454
6455 PR pascal/11492.
6456 * p-valprint.c (pascal_val_print): Fix default printing of integer
6457 arrays.
6458
57174f31
PM
64592010-04-21 Pierre Muller <muller@ics.u-strasbg.fr>
6460
6461 Fix compilation warning on gcc-4.1.2.
6462 * rs6000-aix-tdep.c (rs6000_convert_from_func_ptr_addr): Initialize
6463 local variable`pc' to zero.
6464
6fbc7cd8
JB
64652010-04-20 Joel Brobecker <brobecker@adacore.com>
6466
6467 Implement thread support with core files on alpha-tru64.
6468 * dec-thread.c (dec_thread_find_new_threads): New function,
6469 extracted from resync_thread_list.
6470 (resync_thread_list): Add OPS parameter. Replace extracted-out
6471 code by call to dec_thread_find_new_threads.
6472 (dec_thread_wait): Update call to resync_thread_list.
6473 (init_dec_thread_ops): Set dec_thread_ops.to_find_new_threads.
6474
438c98a1
JB
64752010-04-20 Joel Brobecker <brobecker@adacore.com>
6476
6477 * ada-lang.c (value_pointer): New function.
6478 (make_array_descriptor): Call value_pointer to convert addresses to
6479 pointers.
6480
2971b56b
JB
64812010-04-20 Joel Brobecker <brobecker@adacore.com>
6482
6483 * rs6000-aix-tdep.c: #include exceptions.h.
6484 (rs6000_convert_from_func_ptr_addr): If an exception is thrown
6485 while reading the memory at ADDR, then ADDR cannot be a function
6486 descriptor.
6487
be942545
JB
64882010-04-20 Joel Brobecker <brobecker@adacore.com>
6489
6490 * ada-typeprint.c (ada_print_typedef): New function.
6491 * ada-lang.h (ada_print_typedef): Add declaration.
6492 * ada-lang.c (ada_language_defn): set la_print_typdef field
6493 to ada_print_typedef.
6494
1ca8fce0
JB
64952010-04-20 Joel Brobecker <brobecker@adacore.com>
6496
6497 * procfs.c (procfs_address_to_host_pointer): Only define when used.
6498
e9ef4f39
JB
64992010-04-20 Joel Brobecker <brobecker@adacore.com>
6500
6501 * procfs.c (iterate_over_mappings_cb_ftype): New typedef.
6502 (iterate_over_mappings): Adjust function profile. Add declaration.
6503 (insert_dbx_link_bpt_in_region, info_mappings_callback):
6504 Adjust accordingly.
6505
e294797a
JB
65062010-04-20 Joel Brobecker <brobecker@adacore.com>
6507
6508 * procfs.c (solib_mappings_callback): Move function up to avoid
6509 a compiler warning.
6510
a223f1e7
JB
65112010-04-20 Joel Brobecker <brobecker@adacore.com>
6512
6513 * procfs.c (find_signalled_thread, find_stop_signal): Move
6514 these functions down to define them only when used.
6515
0c3acc09
JB
65162010-04-20 Joel Brobecker <brobecker@adacore.com>
6517
6518 * valprint.c (common_val_print): Fix the value before extracting
6519 its contents.
6520 * ada-lang.c (ada_to_fixed_value): Make this function extern.
6521 * ada-lang.h (ada_to_fixed_value): New function declaration.
6522 * ada-valprint.c (ada_value_print): Use ada_to_fixed_value
6523 to avoid code duplication and fix a bug in the handling of
6524 fixed types contents.
6525
31ef98ae
TT
65262010-04-20 Tom Tromey <tromey@redhat.com>
6527
6528 * dwarf2read.c (dwarf2_compute_name): Handle DW_AT_linkage_name.
6529 (read_partial_die): Likewise.
6530 (dwarf_attr_name): Likewise.
6531
ec31cde5 65322010-04-20 Chris Moller <cmoller@redhat.com>
0407b3f1 6533
ec31cde5
CM
6534 PR 10867
6535
6536 * cp-valprint.c (global): Adding new static array recursion
6537 detection obstack.
6538 (cp_print_value_fields, cp_print_static_field): Added new static
6539 array recursion detection code.
6540
e0e0e543
MK
65412010-04-20 Mark Kettenis <kettenis@gnu.org>
6542
6543 * i386-linux-tdep.c (i386_linux_regset_sections): Size of the
6544 general-purpose register set should be 68 instead of 144.
6545 (i386_linux_sse_regset_sections): Likewise.
6546 (i386_linux_avx_regset_sections): Likewise.
6547
08922a10
SS
65482010-04-20 Stan Shebs <stan@codesourcery.com>
6549 Nathan Sidwell <nathan@codesourcery.com>
6550
6551 * dwarf2loc.c (struct axs_var_loc): New struct.
6552 (dwarf2_tracepoint_var_loc): New function.
6553 (dwarf2_tracepoint_var_access): New function.
6554 (dwarf2_tracepoint_var_ref): Use dwarf2_tracepoint_var_loc, deal
6555 with DW_OP_piece.
6556 (locexpr_describe_location_piece): New function.
6557 (locexpr_describe_location_1): New function.
6558 (locexpr_describe_location): Call it, update signature.
6559 (loclist_describe_location): Rewrite to loop over locations,
6560 update signature.
6561 * symtab.h (struct symbol_computed_ops): Add address to
6562 describe_location arguments, return void.
6563 * printcmd.c (address_info): Get context PC, pass to computed
6564 location description.
6565 * tracepoint.c (scope_info): Ditto.
6566 * ax-gdb.c (trace_kludge): Export.
6567
2dc7f7b3
TT
65682010-04-20 Tom Tromey <tromey@redhat.com>
6569
6570 * dwarf2-frame.c (decode_frame_entry_1): Handle CIE version 4.
6571 (struct dwarf2_cie) <segment_size>: New field.
6572 * dwarf2read.c (partial_read_comp_unit_head): Accept DWARF 4.
6573 (skip_one_die): Handle DW_FORM_flag_present, DW_FORM_sec_offset,
6574 DW_FORM_exprloc.
6575 (read_attribute_value): Handle DW_FORM_flag_present,
6576 DW_FORM_sec_offset, DW_FORM_exprloc.
6577 (dump_die_shallow): Likewise.
6578 (attr_form_is_section_offset): Handle DW_FORM_sec_offset.
6579 (dwarf2_const_value): Handle DW_FORM_exprloc.
6580 (attr_form_is_block): Likewise.
6581 (struct line_header) <maximum_ops_per_instruction>: New field.
6582 (dwarf_decode_line_header): Set new field.
6583 (dwarf_decode_lines): Handle new field.
6584
ce4b0682
SDJ
65852010-04-20 Jan Kratochvil <jan.kratochvil@redhat.com>
6586
6587 * f-exp.y: Add new production to recognize the `logical*8' type.
6588 (LOGICAL_S8_KEYWORD): New token.
6589 * f-lang.c (enum f_primitive_types)
6590 <f_primitive_type_logical_s8>: New field.
6591 (f_language_arch_info): Handling `logical*8' type.
6592 (build_fortran_types): Building `logical*8' type.
6593 * f-lang.h (struct builtin_f_type) <builtin_logical_s8>: New field.
6594
ff9f22f1
DE
65952010-04-19 Doug Evans <dje@google.com>
6596
6597 * ser-base.c (generic_readchar): Watch for EOF in read of error_fd.
6598 * ser-pipe.c (pipe_open): Fix file descriptor leaks.
6599 (pipe_close): Ditto.
6600
437125bd
PM
66012010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
6602
6603 * configure.tgt (x86_64-*-mingw*): Set BUILD_GDBSERVER to yes.
6604
e8e6c82e
PM
66052010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
6606
6607 * windows-tdep.c (windows_get_tlb_type): Change current_seh.handle
6608 type to void function.
6609
4136fdd2
SS
66102010-04-19 Stan Shebs <stan@codesourcery.com>
6611 Vladimir Prus <vladimir@codesourcery.com>
6612
6613 * tracepoint.c (tfind_1): Add missing newline, report exit from
6614 tfind mode as such.
6615 * target.c (update_current_target): Make default
6616 to_trace_find return -1.
6617
0c4b2e63
MF
66182010-04-19 Mike Frysinger <vapier@gentoo.org>
6619
6620 * objc-lang.c (find_methods): Move symname check up.
6621
78076abc
PA
66222010-04-19 Pedro Alves <pedro@codesourcery.com>
6623
6624 * ada-lang.c (print_recreate_exception)
6625 <ex_catch_exception_unhandled>: It's "catch exception unhandled",
6626 not "catch unhandled".
6627
6149aea9
PA
66282010-04-19 Pedro Alves <pedro@codesourcery.com>
6629
6630 PR breakpoints/8554.
6631
6632 Implement `save-breakpoints'.
6633
6634 * breakpoint.c (save_cmdlist): New.
6635 (breakpoint_set_cmdlist, breakpoint_show_cmdlist): Moved up close
6636 to save_cmdlist.
6637 (print_recreate_catch_fork): New.
6638 (catch_fork_breakpoint_ops): Install it.
6639 (print_recreate_catch_vfork): New.
6640 (catch_vfork_breakpoint_ops): Install it.
6641 (print_recreate_catch_syscall): New.
6642 (catch_syscall_breakpoint_ops): Install it.
6643 (print_recreate_catch_exec): New.
6644 (catch_exec_breakpoint_ops): Install it.
6645 (print_recreate_exception_catchpoint): New.
6646 (gnu_v3_exception_catchpoint_ops): Install it.
6647 (save_breakpoints): New, based on tracepoint_save_command, but
6648 handle all breakpoint types.
6649 (save_breakpoints_command): New.
6650 (tracepoint_save_command): Rename to...
6651 (save_tracepoints_command): ... this, and reimplement using
6652 save_breakpoints.
6653 (save_command): New.
6654 (_initialize_breakpoints): Install the "save" command prefix.
6655 Install the "save breakpoints" command. Make "save-tracepoints" a
6656 deprecated alias for "save tracepoints".
6657 * breakpoint.h (struct breakpoint_ops): New field `print_recreate'.
6658 * ada-lang.c (print_recreate_exception): New.
6659 (print_recreate_catch_exception): New.
6660 (catch_exception_breakpoint_ops): Install it.
6661 (print_recreate_catch_exception_unhandled): New.
6662 (catch_exception_unhandled_breakpoint_ops): Install it.
6663 (print_recreate_catch_assert): New.
6664 (catch_assert_breakpoint_ops): Install it.
6665
6666 * NEWS: Mention the new `save breakpoints' command. Mention the
6667 new `save tracepoints' alias and that `save-tracepoints' is now
6668 deprecated.
6669
0a8fce9a
PA
66702010-04-18 Pedro Alves <pedro@codesourcery.com>
6671
6672 PR tui/9217
6673
6674 * tui/tui-out.c: Include cli-out.h.
6675 (tui_table_begin, tui_table_body, tui_table_end, tui_table_header)
6676 (tui_begin, tui_end, tui_field_int, tui_field_skip)
6677 (tui_field_string, tui_field_fmt, tui_spaces, tui_text)
6678 (tui_message, tui_wrap_hint, tui_flush): Delete forward
6679 declarations.
6680 (struct ui_out_data): Rename to...
6681 (struct tui_ui_out_data): ... this. Remove `stream' and
6682 `suppress_output' fields, and inherit cli_ui_out_data.
6683 (tui_out_data): New typedef.
6684 (tui_ui_out_impl): Don't initialize fields staticaly.
6685 (tui_table_begin, tui_table_body, tui_table_end, tui_table_header)
6686 (tui_begin, tui_end): Delete.
6687 (tui_field_int): Adjust to delegate most work to the base type.
6688 (tui_field_skip): Delete.
6689 (tui_field_string, tui_field_fmt): Adjust comment. Adjust to
6690 delegate most work to the base type.
6691 (tui_spaces): Delete.
6692 (tui_text): Adjust to delegate most work to the base type.
6693 (tui_message): Delete.
6694 (tui_wrap_hint): Delete.
6695 (tui_flush): Delete.
6696 (out_field_fmt): Delete.
6697 (field_separator): Delete.
6698 (tui_out_new): Adjust to initialize the base type.
6699 (_initialize_tui_out): Initialize tui_ui_out_impl.
6700 * cli-out.c (struct ui_out_data): Moved out to cli-out.h, renamed
6701 cli_ui_out_data.
6702 (cli_out_data): Adjust.
6703 (cli_ui_out_impl): Make extern.
6704 (cli_table_header, cli_field_int, cli_field_skip): Use
6705 uo_field_string instead of cli_field_string.
6706 (cli_redirect): Adjust to use cli_out_data.
6707 (cli_out_data_ctor): New.
6708 (cli_out_new): Use it.
6709 * cli-out.h (struct ui_file): Remove forward declaration.
6710 (struct cli_ui_out_data): New, moved from cli-out.c, and renamed.
6711 (cli_ui_out_impl): Declare.
6712 (cli_out_data_ctor): Declare.
6713 * ui-out.c (struct ui_out) <data>: Change type to void pointer.
6714 (uo_field_string): No longer static.
6715 (ui_out_data): Change return type to void pointer.
6716 (ui_out_new): Change `data' parameter type to void pointer.
6717 * ui-out.h (struct ui_out_data): Don't forward declare.
6718 (ui_out_data): Change return type to void pointer.
6719 (ui_out_new): Change `data' parameter type to void pointer.
6720 (uo_field_string): Declare.
6721
172240dd
PA
67222010-04-17 Pedro Alves <pedro@codesourcery.com>
6723
6724 * ui-file.c (tee_file_isatty): Return whether `tee->one' is a tty,
6725 instead of always false.
6726
ed41462c
L
67272010-04-17 H.J. Lu <hongjiu.lu@intel.com>
6728
6729 PR corefiles/11511
6730 * amd64-linux-tdep.c (amd64_linux_gregset_reg_offset): Support
6731 orig_rax.
6732
cc60f2e3
PA
67332010-04-17 Pedro Alves <pedro@codesourcery.com>
6734
6735 * breakpoint.c (watchpoints_triggered): Use
6736 is_hardware_watchpoint.
6737 (watchpoints_triggered): Ditto.
6738 (bpstat_check_location): Use is_watchpoint and
6739 is_hardware_watchpoint.
6740 (bpstat_check_watchpoint): Use is_watchpoint and
6741 is_hardware_watchpoint.
6742 (bpstat_stop_status): Fix comment.
6743 (user_settable_breakpoint): Use is_watchpoint.
6744 (hw_watchpoint_used_count): Use is_hardware_watchpoint.
6745 (disable_watchpoints_before_interactive_call_start): Use
6746 is_watchpoint.
6747 (enable_watchpoints_after_interactive_call_stop): Use
6748 is_watchpoint.
6749 (clear_command): Use is_watchpoint.
6750 (do_enable_breakpoint): Use is_watchpoint.
6751
cb7db0f2
MF
67522010-04-16 Mike Frysinger <vapier@gentoo.org>
6753
6754 * solib-frv.c (enable_break1_done): Delete.
6755 (enable_break2): Do not check enable_break1_done. Move the
6756 enable_break2_done setting and call to
6757 remove_solib_event_breakpoints() to the end. Return without
6758 warning when the contents of _dl_debug_addr are 0.
6759 (enable_break): Do not set enable_break1_done.
6760 (frv_clear_solib): Likewise.
6761
d77b48cf
KB
67622010-04-16 Kevin Buettner <kevinb@redhat.com>
6763
6764 * m32c-tdep.c (m32c_m16c_address_to_pointer): Print warning
6765 instead of an error if no PLT entry is found. Return a
6766 potentially useful result.
6767 (m32c_m16c_pointer_to_address): Add code to search for function
6768 address when no .plt entry is found.
6769
f90824dc
SS
67702010-04-16 Stan Shebs <stan@codesourcery.com>
6771
6772 * tracepoint.c (trace_variable_command): Run a cleanup.
6773
9b79b476
PM
67742010-04-16 Pierre Muller <muller@ics.u-strasbg.fr>
6775
6776 * p-lang.c (pascal_one_char): Do not restrict C to 0..255 range.
6777
711e434b
PM
67782010-04-16 Pierre Muller <muller@ics.u-strasbg.fr>
6779
6780 Support for Windows OS Thread Information Block.
6781 * NEWS: Document new feature.
6782 * remote.c (PACKET_qGetTIBAddr): New enum element.
6783 (remote_get_tib_address): New function.
6784 (init_remote_ops): Set to_get_tib_address field
6785 to remote_get_tib_address.
6786 (_initialize_remote): Add add_packet_config_cmd
6787 for PACKET_qGetTIBAddr.
6788 * target.c (update_current_target): Set default value for
6789 new to_get_tib_address field.
6790 * target.h (target_ops): New field to_get_tib_address.
6791 (target_get_tib_address): New macro.
6792 * windows-nat.c (thread_info): Add thread_local_base field.
6793 (windows_add_thread): Add tlb argument of type 'void *'.
6794 (fake_create_process): Adapt windows_add_thread call.
6795 (get_windows_debug_event): Idem.
6796 (windows_get_tib_address): New function.
6797 (init_windows_ops): Set to_get_tib_address field
6798 to remote_get_tib_address.
6799 (_initialize_windows_nat): Replace info_w32_cmdlist
6800 initialization by a call to init_w32_command_list.
6801 (info_w32_command, info_w32_cmdlist): Removed from here...
6802 to windows-tdep.c file.
6803 * windows-tdep.h (info_w32_cmdlist): Declare.
0407b3f1 6804 (init_w32_command_list): New external function
711e434b
PM
6805 declaration.
6806 * windows-tdep.c: Add several headers.
6807 (info_w32_cmdlist): to here, made global.
6808 (thread_information_32): New struct.
6809 (thread_information_64): New struct.
6810 (TIB_NAME): New char array.
6811 (MAX_TIB32, MAX_TIB64, FULL_TIB_SIZE): New constants.
6812 (maint_display_all_tib): New static variable.
6813 (windows_get_tlb_type): New function.
6814 (tlb_value_read, tlb_value_write): New functions.
6815 (tlb_value_funcs): New static struct.
6816 (tlb_make_value): New function.
6817 (display_one_tib): New function.
6818 (display_tib): New function.
6819 (show_maint_show_all_tib):New function.
6820 (info_w32_command): Moved from windows-nat.c.
6821 (init_w32_command_list): New function.
6822 (_initialize_windows_tdep): New function.
6823 New "maint set/show show-all-tib" command
6824 New "$_tlb" internal variable.
6825
cae3f17b
JB
68262010-04-16 Joel Brobecker <brobecker@adacore.com>
6827
6828 * tui/tui-regs.c (tui_display_register): Add comment about
6829 a couple of casts.
6830 * tui/tui-stack.c (tui_show_locator_content): Ditto.
6831
2ce6d6bf
SS
68322010-04-15 Stan Shebs <stan@codesourcery.com>
6833
6834 * frame.c: Include tracepoint.h.
6835 (get_current_frame): Allow a trace frame to be an alternate source
6836 of stack frame data.
6837 * tracepoint.c (tfind_1): Don't try to get current stack frame if
6838 it won't succeed.
6839
7e559477
PA
68402010-04-15 Pedro Alves <pedro@codesourcery.com>
6841
6842 * ppc-linux-tdep.c (bsd_uthread_solib_loaded): Always pass 0 for
6843 flags.
6844 * solib-spu.c (spu_solib_loaded): Always pass 0 for flags.
6845
3f7b2faa
DE
68462010-04-15 Doug Evans <dje@google.com>
6847
fa33c3cd
DE
6848 * NEWS: Add entry for python program space support.
6849 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-progspace.o.
6850 (SUBDIR_PYTHON_SRCS): Add py-progspace.c.
6851 (py-progspace.o): New rule.
6852 * python/py-prettyprint.c (find_pretty_printer_from_objfiles): New
6853 function.
6854 (find_pretty_printer_from_progspace): New function.
6855 (find_pretty_printer_from_gdb): New function.
6856 (find_pretty_printer): Rewrite.
6857 * python/py-progspace.c: New file.
6858 * python/python-internal.h (program_space): Add forward decl.
6859 (pspace_to_pspace_object, pspy_get_printers): Declare.
6860 (gdbpy_initialize_pspace): Declare.
6861 * python/python.c: #include "progspace.h".
6862 (gdbpy_get_current_progspace, gdbpy_progspaces): New functions.
6863 (_initialize_python): Call gdbpy_initialize_pspace.
6864 (GdbMethods): Add current_progspace, progspaces.
6865
3f7b2faa
DE
6866 Add -s option to source command.
6867 * NEWS: Document new option.
6868 * cli/cli-cmds.c (find_and_open_script): Add function comment.
6869 Delete from_tty and cleanupp args. Split filep arg into file and
6870 full_pathp. New arg search_path.
6871 (source_script_from_stream): New function.
6872 (source_script_with_search): New function.
6873 (source_script): Rewrite.
6874 (source_command): Parse "-s" option.
6875 (init_cli_cmds): Add "-s" docs to source command help, and reformat.
6876 * python/python.c (source_python_script): Make file arg a const char *.
6877 Don't call fclose, leave for caller.
6878 * python/python.h (source_python_script): Update.
6879
a86988f2
PA
68802010-04-14 Daniel Jacobowitz <dan@codesourcery.com>
6881 Pedro Alves <pedro@codesourcery.com>
6882
6883 Avoid rereading shared libraries that haven't changed.
6884
6885 * solib.c (free_so_symbols): New function, from ...
6886 (free_so): ... here. Call it.
6887 (solib_read_symbols): Don't warn here if symbols have already been
6888 loaded.
6889 (solib_add): Warn here instead, if a pattern was specified.
6890 (reload_shared_libraries_1): New.
6891 (reload_shared_libraries): Rewrite to not fetch the library list.
6892
e6d9b9c2
DE
68932010-04-14 Doug Evans <dje@google.com>
6894
589390d6 6895 * source.c (openp): Strip DOS drive letter if present before
e6d9b9c2
DE
6896 concatenating string to search path.
6897
516ba659
PA
68982010-04-14 Pedro Alves <pedro@codesourcery.com>
6899
6900 * objfiles.h (gdb_bfd_close_or_warn): Declare.
6901 * objfiles.c (gdb_bfd_close_or_warn): New.
6902 * corelow.c: Include objfiles.h
6903 (core_close): Use gdb_bfd_close_or_warn.
6904 * elfread.c (build_id_verify): Ditto.
6905 * exec.c (exec_close, exec_close_1): Ditto.
6906
048d532d
PA
69072010-04-14 Daniel Jacobowitz <dan@codesourcery.com>
6908 Pedro Alves <pedro@codesourcery.com>
6909
6910 Group errors for many missing shared libraries.
6911
6912 * solist.h (struct so_list): Remove from_tty.
6913 * solib.c (solib_bfd_open): Return NULL if we failed to open a BFD.
6914 (solib_map_sections): Take so_list argument. Return 0 if we
6915 failed to open a BFD. Add target sections here.
6916 (symbol_add_stub): Delete.
6917 (solib_read_symbols): Inline symbol_add_stub. Use current flags,
6918 not from_tty copied from the so_list. Don't warn a second time
6919 for a missing library.
6920 (update_solib_list): Don't save from_tty. Use TRY_CATCH. Do not
6921 add to the section table here. Print out a single warning for all
6922 missing libraries.
6923 * bsd-uthread.c (bsd_uthread_solib_loaded): Always pass 0 for
6924 flags.
6925
044c0f87
PM
69262010-04-14 Phil Muldoon <pmuldoon@redhat.com>
6927
6928 * python/py-block.c (gdbpy_block_for_pc): Use i8n to encompass
6929 error/warning messages. Capitalize and use complete sentences.
6930 (blpy_block_syms_iternext): Likewise.
6931 * python/py-cmd.c (parse_command_name, cmdpy_init): Likewise.
6932 * python/py-frame.c (FRAPY_REQUIRE_VALID, frapy_block)
6933 (frame_info_to_frame_object, frapy_read_var)
6934 (gdbpy_frame_stop_reason_string): Likewise.
6935 * python/py-lazy-string.c (stpy_convert_to_value)
6936 (gdbpy_create_lazy_string_object): Likewise.
6937 * python/py-objfile.c (objfpy_set_printers): Likewise.
6938 * python/py-prettyprint.c (gdbpy_default_visualizer): Likewise.
6939 * python/python.c (parameter_to_python): Likewise.
6940 * python/py-type.c (typy_range, typy_target): Likewise.
6941 * python/py-value.c (valpy_cast, valpy_length, valpy_getitem)
6942 (valpy_richcompare, valpy_int, valpy_long, valpy_float): Likewise.
6943
6944
79f283fe
PM
69452010-04-14 Phil Muldoon <pmuldoon@redhat.com>
6946
6947 PR python/11381
6948
6949 * python/py-prettyprint.c (pretty_print_one_value): Test for
6950 Py_None.
6951 (print_string_repr): Test for Py_None. Set flags accordingly.
6952 Return value depending on return type.
6953 (print_children): Take a value indicating whether data was printed
6954 before this function was called. Alter output accordingly.
6955 (apply_val_pretty_printer): Capture return value from
6956 print_string_repr and pass to print_children.
6957
4ac5d44e
MK
69582010-04-13 Mark Kettenis <kettenis@gnu.org>
6959
e1caee70 6960 PR corefiles/11481
4ac5d44e
MK
6961 * i386-linux-tdep.c (i386_linux_regset_sections): Remove extended
6962 register note sections.
6963 (i386_linux_sse_regset_sections, i386_linux_avx_regset_sections):
6964 New variables.
6965 (i386_linux_init_abi): Install list of supported register note
6966 sections that matches the target description.
6967
ad91cd99
PA
69682010-04-13 Pedro Alves <pedro@codesourcery.com>
6969
6970 * remote.c (remote_get_noisy_reply): Don't error out on empty
6971 replies.
6972 (remote_start_remote): Update and merge tracepoints and trace
6973 state variables as long as the target supports tracepoints.
6974 (remote_trace_init): Fix prototype.
6975 (remote_download_trace_state_variable): Validate reply.
6976 (remote_trace_set_readonly_regions): Fix prototype.
6977 (remote_trace_start): Fix prototype. Check for empty reply.
6978 (remote_get_trace_status): Small cleanup.
6979 (remote_trace_stop): Fix prototype. Check for empty reply.
6980 (remote_trace_find): Check for empty reply.
6981 (remote_save_trace_data): Validate reply.
6982 (remote_set_disconnected_tracing): Check for empty reply, and
6983 validate reply.
6984 (remote_set_circular_trace_buffer): Ditto.
6985
ae3bccd4
PM
69862010-04-13 Pierre Muller <muller@ics.u-strasbg.fr>
6987
6988 Suppress unused value warning during compilation.
6989 * tui/tui-regs.c (tui_display_register): Cast wstandout and wstandend
6990 calls to void.
6991 * tui/tui-stack.c (tui_show_locator_content): Likewise.
6992
523136f2
SS
69932010-04-12 Stan Shebs <stan@codesourcery.com>
6994
6995 * tracepoint.c (tfile_xfer_partial): Check read result.
6996
0d18d720
MF
69972010-04-12 Mike Frysinger <vapier@gentoo.org>
6998
6999 * remote-m32r-sdi.c (m32r_files_info): Add const to local "file" var.
7000 * remote-sim.c (gdbsim_files_info): Likewise.
7001
3b273a55
RE
70022010-04-12 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
7003
7004 * arm-tdep.h (gdb_regnum): Add ARM_FPSCR_REGNUM
7005 * arm-linux-nat.c (arm_linux_vfp_register_count): New
7006 variable.
7007 (fetch_vfp_registers): New function to fetch VFP registers.
7008 (store_vfp_registers): New function to store VFP registers.
7009 (arm_linux_fetch_inferior_registers): Add support for VFP
7010 registers.
7011 (arm_linux_store_inferior_registers): Likewise.
7012 (arm_linux_read_description): Likewise.
7013 (_initialize_arm_linux_nat): Delay initialising iWMMX tdesc
7014 until we need it.
7015
778c7095
L
70162010-04-11 H.J. Lu <hongjiu.lu@intel.com>
7017
7018 * amd64-tdep.c (amd64_supply_xstateregset): Remove the unused
7019 tdep.
7020 (amd64_collect_xstateregset): Likewise.
7021
2114d44c
SS
70222010-04-09 Stan Shebs <stan@codesourcery.com>
7023
87290684
SS
7024 * tracepoint.c (trace_status_mi): Report frames created.
7025
2114d44c
SS
7026 * tracepoint.c (trace_dump_command): Include default-collect
7027 expressions.
7028
86da934b
UW
70292010-04-09 Ulrich Weigand <uweigand@de.ibm.com>
7030
7031 * symtab.c (find_function_start_sal): Never return SAL pointing
7032 before function start address, even if line info is missing.
7033
2d6e647a 70342010-04-09 Pedro Alves <pedro@codesourcery.com>
d337e9f0
PA
7035
7036 * NEWS: Mention tracepoints support.
7037
a97153c7
PA
70382010-04-09 Pedro Alves <pedro@codesourcery.com>
7039
7040 * tracepoint.c (trace_status_mi): Report disconnected tracing and
7041 circular trace buffer statuses.
7042
7a66d603
JK
70432010-04-09 Jan Kratochvil <jan.kratochvil@redhat.com>
7044
7045 * config/djgpp/fnchange.lst: Fix typo in translations for
7046 symbol-without-target_section.exp and symbol-without-target_section.c.
7047
2566ad2d
PA
70482010-04-09 Pedro Alves <pedro@codesourcery.com>
7049
7050 * breakpoint.c (condition_command): Pass condition expression to
7051 set_breakpoint_condition stripped from breakpoint number.
7052
adc36818
PM
70532010-04-09 Phil Muldoon <pmuldoon@redhat.com>
7054 Thiago Jung Bauermann <bauerman@br.ibm.com>
2566ad2d 7055 Tom Tromey <tromey@redhat.com>
adc36818
PM
7056
7057 * breakpoint.c (condition_command): Simplify. Move condition
7058 setting code to ...
7059 (set_breakpoint_condition): ... here. New function.
7060 * breakpoint.h (set_breakpoint_condition): Declare.
7061 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-breakpoint.
7062 (SUBDIR_PYTHON_SRCS): Likewise.
7063 (py-breakpoint.o): New rule.
7064 * python/py-breakpoint.c: New file.
7065 * python/python-internal.h (gdbpy_breakpoints)
7066 (gdbpy_initialize_breakpoints): Declare.
7067 (GDB_PY_SET_HANDLE_EXCEPTION) Define.
7068
219f2f23
PA
70692010-04-09 Pedro Alves <pedro@codesourcery.com>
7070
7071 * regformats/regdat.sh: Include server.h. Don't include
7072 regcache.h.
7073
33da3f1c
SS
70742010-04-08 Stan Shebs <stan@codesourcery.com>
7075 Pedro Alves <pedro@codesourcery.com>
7076
7077 * tracepoint.h (struct trace_status): New fields disconnected_tracing
7078 and circular_buffer.
7079 (disconnect_tracing): Rename from disconnect_or_stop_tracing.
7080 * tracepoint.c (trace_status_command): Display target's status for
7081 disconnected tracing and circular buffer.
7082 (disconnect_tracing): Rename from disconnect_or_stop_tracing, add
7083 query for non-disconnected-tracing case, remove the stop_tracing
7084 call.
7085 (tfile_open): Clear disconnected and circular buffer status.
7086 (trace_save): Save disconnected and circular buffer status.
7087 (parse_trace_status): Parse disconnected and circular buffer status,
7088 also recognize disconnected as a stop reason.
7089 * remote.c (remote_set_disconnected_tracing): Only set
7090 QTDisconnected if the remote end supports disconnected tracing.
7091 Warn otherwise, if trying to enable disconnected tracing.
7092 * infcmd.c (detach_command): Update disconnect_tracing call.
7093 * cli/cli-cmds.c (quit_command): Ditto.
7094
4e4d8374
L
70952010-04-08 H.J. Lu <hongjiu.lu@intel.com>
7096
7097 * i387-tdep.c (i387_collect_xsave): Replace abort with
7098 internal_error.
7099
ad443146
SS
71002010-04-08 Stan Shebs <stan@codesourcery.com>
7101
7102 * breakpoint.c (default_collect_info): New function.
7103 (breakpoints_info): Call it.
7104 (maintenance_info_breakpoints): Ditto.
7105 (tracepoints_info): Ditto.
7106
40936b0d
L
71072010-04-08 H.J. Lu <hongjiu.lu@intel.com>
7108
7109 * i387-tdep.c (i387_collect_xsave): Re-indent.
7110
3a13a53b
L
71112010-04-08 H.J. Lu <hongjiu.lu@intel.com>
7112
7113 * i386-linux-nat.c (have_ptrace_getfpxregs): Initialize to -1
7114 if HAVE_PTRACE_GETFPXREGS is defined.
7115 (i386_linux_read_description): Set have_ptrace_getfpxregs and
7116 have_ptrace_getregset to 0 if ptrace PTRACE_GETFPXREGS failed.
7117
7118 * i386-linux-tdep.c: Include "features/i386/i386-mmx-linux.c"
7119 (i386_linux_core_read_description): Return tdesc_i386_mmx_linux
7120 if .reg-xfp section doesn't exist.
7121 (_initialize_i386_linux_tdep): Call initialize_tdesc_i386_mmx_linux.
7122
7123 * i386-linux-tdep.h (tdesc_i386_mmx_linux): New.
7124
7125 * i386-tdep.c: Include "features/i386/i386-mmx.c".
7126 (i386_go32_init_abi): Set tdesc to tdesc_i386_mmx.
7127 (i386_validate_tdesc_p): Make org.gnu.gdb.i386.sse optional. Set
7128 xcr0 to I386_XSTATE_X87_MASK if SSE isn't available.
7129 (i386_gdbarch_init): Update comments.
7130 (_initialize_i386_tdep): Call initialize_tdesc_i386_mmx.
7131
7132 * common/i386-xstate.h (I386_XSTATE_X87_MASK): New.
7133
7134 * config/djgpp/fnchange.lst: Add i386 MMX XML files.
7135
7136 * features/Makefile (i386/i386-mmx-expedite): New.
7137 (i386/i386-mmx-linux-expedite): Likewise.
7138 ($(outdir)/i386/i386-mmx.dat): Likewise.
7139 ($(outdir)/i386/i386-mmx-linux.dat): Likewise.
7140
7141 * features/i386/i386-mmx-linux.c: New.
7142 * features/i386/i386-mmx-linux.xml: Likewise.
7143 * features/i386/i386-mmx.c: Likewise.
7144 * features/i386/i386-mmx.xml: Likewise.
7145 * regformats/i386/i386-mmx-linux.dat: Likewise.
7146 * regformats/i386/i386-mmx.dat: Likewise.
7147
7148 * features/Makefile (WHICH): Add i386/i386-mmx and
7149 i386/i386-mmx-linux.
7150
08001717
DE
71512010-04-08 Doug Evans <dje@google.com>
7152
7153 * source.c (openp): Skip $cdir in PATH.
7154
fff5cc64
PM
71552010-04-08 Phil Muldoon <pmuldoon@redhat.com>
7156
7157 PR python/11417
fff5cc64 7158 * python/py-lazy-string.c (stpy_convert_to_value): Check for
3a13a53b
L
7159 a NULL address.
7160 (gdbpy_create_lazy_string_object): Allow strings with a NULL
7161 address and a zero length.
fff5cc64 7162
f8c4f480
HZ
71632010-04-08 Hui Zhu <teawater@gmail.com>
7164
7165 * i386-tdep.c (i386_process_record): Add support for insn
7166 rdtsc.
7167
eb5cda86
DE
71682010-04-07 Doug Evans <dje@google.com>
7169
7170 * python/python.c (source_python_script): Use ensure_python_env
7171 to prepare environment for script.
7172
a055a187
L
71732010-04-07 H.J. Lu <hongjiu.lu@intel.com>
7174
7175 * amd64-linux-nat.c: Include "regset.h", "elf/common.h",
7176 <sys/uio.h> and "i386-xstate.h".
7177 (PTRACE_GETREGSET): New.
7178 (PTRACE_SETREGSET): Likewise.
7179 (have_ptrace_getregset): Likewise.
7180 (amd64_linux_gregset64_reg_offset): Include 16 upper YMM
7181 registers.
7182 (amd64_linux_gregset32_reg_offset): Include 8 upper YMM
7183 registers.
7184 (amd64_linux_fetch_inferior_registers): Support PTRACE_GETFPREGS.
7185 (amd64_linux_store_inferior_registers): Likewise.
7186 (amd64_linux_read_description): Check and enable AVX target
7187 descriptions.
7188
7189 * amd64-linux-tdep.c: Include "regset.h", "i386-linux-tdep.h"
7190 and "features/i386/amd64-avx-linux.c".
7191 (amd64_linux_regset_sections): New.
7192 (amd64_linux_core_read_description): Check and enable AVX
7193 target description.
7194 (amd64_linux_init_abi): Set xsave_xcr0_offset. Call
7195 set_gdbarch_core_regset_sections.
7196 (_initialize_amd64_linux_tdep): Call
7197 initialize_tdesc_amd64_avx_linux.
7198
7199 * amd64-linux-tdep.h (AMD64_LINUX_ORIG_RAX_REGNUM): Replace
7200 AMD64_MXCSR_REGNUM with AMD64_YMM15H_REGNUM.
7201 (tdesc_amd64_avx_linux): New.
7202 (amd64_linux_update_xstateregset): Likewise.
7203
7204 * amd64-tdep.c: Include "features/i386/amd64-avx.c".
7205 (amd64_ymm_names): New.
7206 (amd64_ymmh_names): Likewise.
7207 (amd64_register_name): Likewise.
7208 (amd64_supply_xstateregset): Likewise.
7209 (amd64_collect_xstateregset): Likewise.
7210 (amd64_supply_xsave): Likewise.
7211 (amd64_collect_xsave): Likewise.
7212 (AMD64_NUM_REGS): Removed.
7213 (amd64_dwarf_reg_to_regnum): Return %ymmN register number for
7214 %xmmN if AVX is available.
7215 (amd64_pseudo_register_name): Support pseudo YMM registers.
7216 (amd64_regset_from_core_section): Support .reg-xstate section.
7217 (amd64_init_abi): Set ymmh_register_names, num_ymm_regs
7218 and ymm0h_regnum. Call set_gdbarch_register_name.
7219 (amd64_init_abi): Call initialize_tdesc_amd64_avx.
7220
7221 * amd64-tdep.h (amd64_regnum): Add AMD64_YMM0H_REGNUM and
7222 AMD64_YMM15H_REGNUM.
7223 (AMD64_NUM_REGS): New.
7224 (amd64_supply_xsave): Likewise.
7225 (amd64_collect_xsave): Likewise.
7226 (amd64_register_name): Removed.
7227 (amd64_register_type): Likewise.
7228
31aeac78
L
72292010-04-07 H.J. Lu <hongjiu.lu@intel.com>
7230
7231 * i387-tdep.c: Include "i386-xstate.h".
7232 (XSAVE_XSTATE_BV_ADDR): New.
7233 (xsave_avxh_offset): Likewise.
7234 (XSAVE_AVXH_ADDR): Likewise.
7235 (i387_supply_xsave): Likewise.
7236 (i387_collect_xsave): Likewise.
7237
7238 * i387-tdep.h (I387_NUM_YMM_REGS): New.
7239 (I387_YMM0H_REGNUM): Likewise.
7240 (I387_YMMENDH_REGNUM): Likewise.
7241 (i387_supply_xsave): Likewise.
7242 (i387_collect_xsave): Likewise.
7243
c131fcee
L
72442010-04-07 H.J. Lu <hongjiu.lu@intel.com>
7245
7246 * i386-linux-nat.c: Include "regset.h", "elf/common.h",
7247 <sys/uio.h> and "i386-xstate.h".
7248 (PTRACE_GETREGSET): New.
7249 (PTRACE_SETREGSET): Likewise.
7250 (fetch_xstateregs): Likewise.
7251 (store_xstateregs): Likewise.
7252 (GETXSTATEREGS_SUPPLIES): Likewise.
7253 (regmap): Include 8 upper YMM registers.
7254 (i386_linux_fetch_inferior_registers): Support XSAVE extended
7255 state.
7256 (i386_linux_store_inferior_registers): Likewise.
7257 (i386_linux_read_description): Check and enable AVX target
7258 descriptions.
7259
7260 * i386-linux-tdep.c: Include "regset.h", "i387-tdep.h",
7261 "i386-xstate.h" and "features/i386/i386-avx-linux.c".
7262 (i386_linux_regset_sections): Add ".reg-xstate".
7263 (i386_linux_gregset_reg_offset): Include 8 upper YMM registers.
7264 (i386_linux_core_read_xcr0): New.
7265 (i386_linux_core_read_description): Check and enable AVX target
7266 description.
7267 (i386_linux_init_abi): Set xsave_xcr0_offset.
7268 (_initialize_i386_linux_tdep): Call
7269 initialize_tdesc_i386_avx_linux.
7270
7271 * i386-linux-tdep.h (I386_LINUX_ORIG_EAX_REGNUM): Replace
7272 I386_SSE_NUM_REGS with I386_AVX_NUM_REGS.
7273 (i386_linux_core_read_xcr0): New.
7274 (tdesc_i386_avx_linux): Likewise.
7275 (I386_LINUX_XSAVE_XCR0_OFFSET): Likewise.
7276
7277 * i386-tdep.c: Include "i386-xstate.h" and
7278 "features/i386/i386-avx.c".
7279 (i386_ymm_names): New.
7280 (i386_ymmh_names): Likewise.
7281 (i386_ymmh_regnum_p): Likewise.
7282 (i386_ymm_regnum_p): Likewise.
7283 (i386_xmm_regnum_p): Likewise.
7284 (i386_register_name): Likewise.
7285 (i386_ymm_type): Likewise.
7286 (i386_supply_xstateregset): Likewise.
7287 (i386_collect_xstateregset): Likewise.
7288 (i386_sse_regnum_p): Removed.
7289 (i386_pseudo_register_name): Support pseudo YMM registers.
7290 (i386_pseudo_register_type): Likewise.
7291 (i386_pseudo_register_read): Likewise.
7292 (i386_pseudo_register_write): Likewise.
7293 (i386_dbx_reg_to_regnum): Return %ymmN register number for
7294 %xmmN if AVX is available.
7295 (i386_regset_from_core_section): Support .reg-xstate section.
7296 (i386_register_reggroup_p): Supper upper YMM and YMM registers.
7297 (i386_process_record): Replace i386_sse_regnum_p with
7298 i386_xmm_regnum_p.
7299 (i386_validate_tdesc_p): Support org.gnu.gdb.i386.avx feature.
7300 Set ymmh_register_names, num_ymm_regs, ymm0h_regnum and xcr0.
8d95cc3b 7301 (i386_gdbarch_init): Set xstateregset. Set xsave_xcr0_offset.
c131fcee
L
7302 Call set_gdbarch_register_name. Replace I386_SSE_NUM_REGS with
7303 I386_AVX_NUM_REGS. Set ymmh_register_names, ymm0h_regnum and
7304 num_ymm_regs. Add num_ymm_regs to set_gdbarch_num_pseudo_regs.
7305 Set ymm0_regnum.
7306 (_initialize_i386_tdep): Call initialize_tdesc_i386_avx.
7307
7308 * i386-tdep.h (gdbarch_tdep): Add xstateregset, ymm0_regnum,
7309 xcr0, xsave_xcr0_offset, ymm0h_regnum, ymmh_register_names and
7310 i386_ymm_type.
7311 (i386_regnum): Add I386_YMM0H_REGNUM, and I386_YMM7H_REGNUM.
7312 (I386_AVX_NUM_REGS): New.
7313 (i386_xmm_regnum_p): Likewise.
7314 (i386_ymm_regnum_p): Likewise.
7315 (i386_ymmh_regnum_p): Likewise.
7316
7317 * common/i386-xstate.h: New.
7318
98adf0f3
L
73192010-04-07 H.J. Lu <hongjiu.lu@intel.com>
7320
7321 * config/djgpp/fnchange.lst: Add x86 AVX XML files.
7322
7323 * features/Makefile (WHICH): Add i386/i386-avx,
7324 i386/i386-avx-linux, i386/x86-64-avx and i386/x86-64-avx-linux.
7325 (i386/i386-avx-expedite): New.
7326 (i386/i386-avx-linux-expedite): Likewise.
7327 (i386/x86-64-avx-expedite):Likewise.
7328 (i386/x86-64-avx-linux-expedite): Likewise.
7329 ($(outdir)/i386/i386-avx.dat): New dependency.
7330 ($(outdir)/i386/i386-avx-linux.dat): Likewise.
7331 ($(outdir)/i386/x86-avx-64.dat): Likewise.
7332 ($(outdir)/i386/x86-64-avx-linux.dat): Likewise.
7333
7334 * features/i386/32bit-avx.xml: New.
7335 * features/i386/64bit-avx.xml: Likewise.
7336 * features/i386/i386-avx-linux.c: Likewise.
7337 * features/i386/i386-avx-linux.xml: Likewise.
7338 * features/i386/i386-avx.c: Likewise.
7339 * features/i386/i386-avx.xml: Likewise.
7340 * features/i386/x86-64-avx-linux.c: Likewise.
7341 * features/i386/x86-64-avx-linux.xml: Likewise.
7342 * features/i386/x86-64-avx.c: Likewise.
7343 * features/i386/x86-64-avx.xml: Likewise.
7344 * regformats/i386/i386-avx-linux.dat: Likewise.
7345 * regformats/i386/i386-avx.dat: Likewise.
7346 * regformats/i386/x86-64-avx-linux.dat: Likewise.
7347 * regformats/i386/x86-64-avx.dat: Likewise.
7348
05159abe
DE
73492010-04-07 Doug Evans <dje@google.com>
7350
7351 * top.c (source_file_name): Make const char *.
7352 * top.h (source_file_name): Update.
7353 * cli/cli-script.c (source_cleanup_lines_args): Make old_file
7354 const char *.
7355 (script_from_file): Change `file' arg to const char *.
7356 * cli/cli-script.h (script_from_file): Update.
7357
96e39866
DE
73582010-04-06 Doug Evans <dje@google.com>
7359
7360 * cli/cli-cmds.c (source_command): Run cleanups.
7361
3149d8c1
SS
73622010-04-06 Stan Shebs <stan@codesourcery.com>
7363
7364 * defs.h (char_ptr): Move typedef here from...
7365 * ada-lang.c (char_ptr): Remove.
7366 * charset.c (char_ptr): Remove.
7367 * tracepoint.h (struct uploaded_string): Remove.
7368 (struct uploaded_tp): Use vectors for string arrays.
7369 * tracepoint.c (trace_save): Use vectors of actions.
7370 (parse_tracepoint_definition): Ditto.
7371 (get_uploaded_tp): Clear vectors.
7372 * breakpoint.c (create_tracepoint_from_upload): Use vectors.
7373 (next_cmd): Change to an int.
7374 (read_next_cmd): Use vector of command strings.
7375
4cc23ede
DE
73762010-04-06 Doug Evans <dje@google.com>
7377
7378 * top.h (source_script, cd_command): Delete.
7379 * main.c: #include "cli/cli-cmds.h"
7380
bd333fb7
KB
73812010-04-06 Kevin Buettner <kevinb@redhat.com>
7382
7383 * m32c-tdep.c (make_types): When calling `arch_type', pass size of
7384 type in bytes, not bits.
7385
ec8a089a
PM
73862010-04-06 Pierre Muller <muller@ics.u-strasbg.fr>
7387
7388 * stabsread.c (define_symbol): Add support for char
7389 and string constants.
7390
2244ba2e
PM
73912010-04-06 Pierre Muller <muller@ics.u-strasbg.fr>
7392
7393 Remove remaining "%ll" uses.
7394 * go32-nat.c (go32_pte_for_address): Replace "0x%llx" using
7395 hex_string call.
7396 * rs6000-nat.c (rs6000_ptrace64): Idem.
7397 * solib-pa64.c (pa64_current_sos): Idem.
7398 * solib-spu.c (spu_current_sos): Idem.
7399 * linux-nat.c (linux_nat_find_memory_regions): Replace "%lld" using
7400 plongest call.
7401 * nto-procfs.c (procfs_meminfo): Replace "0x%016llx" using
7402 phex (VAR, 8) call.
7403 * sh64-tdep.c (sh64_show_media_regs): Idem.
7404
fce3c1f0
SS
74052010-04-05 Stan Shebs <stan@codesourcery.com>
7406
7407 * tracepoint.c: Include gdbcore.h.
7408 (tfile_xfer_partial): Return partial results, also try reading
7409 from executable.
7410 (tfile_has_all_memory): New function.
7411 (init_tfile_ops): Use it.
7412
626ea16d
SDJ
74132010-04-05 Sergio Durigan Junior <sergiodj@redhat.com>
7414
7415 PR gdb/10736:
7416 * xml-syscall.c (my_gdb_datadir): New variable to keep track of
7417 the changes in data-directory.
7418 (init_sysinfo): Reload the syscall XML file if the data-directory
7419 has changed.
7420
1f7ccab2
JK
74212010-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
7422
7423 Code cleanup.
7424 * breakpoint.c (bpstat_stop_status): Use bpstat_causes_stop.
7425
d77f58be
SS
74262010-04-04 Stan Shebs <stan@codesourcery.com>
7427 Nathan Sidwell <nathan@codesourcery.com>
7428
7429 * breakpoint.c (breakpoint_1): Add filter argument, return number of
7430 breakpoints printed.
7431 (is_hardware_watchpoint): Make argument const.
7432 (is_watchpoint): Ditto.
7433 (is_tracepoint): Merge of tracepoint_type and breakpoint_is_tracepoint,
7434 use it everywhere.
7435 (breakpoints_info): Pass NULL to breakpoint_1.
7436 (maintenance_info_breakpoints): Ditto.
7437 (watchpoints_info): New function.
7438 (tracepoints_info): Use breakpoint_1 filter.
7439 (set_ignore_count): Warn that tracepoint ignore count will be ignored.
7440 (_initialize_breakpoint): Make "info watchpoints" its own command.
7441 * breakpoint.h (is_tracepoint): Rename from breakpoint_is_tracepoint.
7442 * mi/mi-cmd-break.c (mi_cmd_break_commands): Use is_tracepoint.
7443
af54718e
SS
74442010-04-04 Stan Shebs <stan@codesourcery.com>
7445
7446 * tracepoint.c (tfile_fetch_registers): Add fallback case.
7447
74d1f91e
JK
74482010-04-04 Jan Kratochvil <jan.kratochvil@redhat.com>
7449
7450 * infcmd.c (run_command_1): Call proceed with regcache_read_pc address.
7451 * config/djgpp/fnchange.lst: Add translation for break-entry.exp.
7452
91d91ceb
JK
74532010-04-04 Jan Kratochvil <jan.kratochvil@redhat.com>
7454
7455 * breakpoint.c (bpstat_find_step_resume_breakpoint): Remove.
7456 * breakpoint.h (bpstat_find_step_resume_breakpoint): Remove.
7457
60531b24
JK
74582010-04-02 Jan Kratochvil <jan.kratochvil@redhat.com>
7459
7460 * dwarf2read.c (read_namespace_type): Use common "return set_die_type"
7461 code form.
7462
a3c4230a
HZ
74632010-04-02 Hui Zhu <teawater@gmail.com>
7464
7465 * i386-tdep.c (OT_DQUAD): New enum.
7466 (i386_process_record): Add code for MMX, 3DNow!, SSE, SSE2,
7467 SSE3, SSSE3 and SSE4.
7468
b15758fe
HZ
74692010-04-02 Hui Zhu <teawater@gmail.com>
7470
7471 * i386-tdep.c (i386_record_lea_modrm_addr): Remove useless
7472 "*addr = 0".
7473
afd02f27
PA
74742010-04-02 Pedro Alves <pedro@codesourcery.com>
7475
7476 * tracepoint.c (trace_dump_actions): New, factored out from
7477 trace_dump_command, and adjusted to recurse into while-stepping's
7478 action list.
7479 (trace_dump_command): Use it.
7480
5cea2a26
PA
74812010-04-02 Pedro Alves <pedro@codesourcery.com>
7482
7483 * breakpoint.h (struct counted_command_line): Moved definition to
7484 breakpoint.c, and forward declare.
7485 (breakpoint_commands): Declare.
7486 * breakpoint.c (struct counted_command_line): Moved here.
7487 (breakpoint_commands): New.
7488 * tracepoint.c (encode_actions): Use breakpoint_commands.
7489 * remote.c (remote_download_tracepoint): Ditto.
7490
7c47795c
L
74912010-04-01 H.J. Lu <hongjiu.lu@intel.com>
7492
7493 * remote.c (remote_parse_stop_reply): Use hex_string instead
7494 of phex_nz for error.
7495
fff87407
SS
74962010-04-01 Stan Shebs <stan@codesourcery.com>
7497 Nathan Sidwell <nathan@codesourcery.com>
7498
7499 * tracepoint.h (enum actionline_type): Remove.
7500 (validate_actionline): Change return to void.
7501 * tracepoint.c (report_agent_reqs_errors): New function.
7502 (validate_actionline): Call it, change return to void, report errors
7503 more consistently.
7504 (collect_symbol): Call report_agent_reqs_errors.
7505 (encode_actions_1): Ditto.
7506 (encode_actions): Don't expect a result from validate_actionline.
7507
615bcdef
SS
75082010-04-01 Stan Shebs <stan@codesourcery.com>
7509
7510 * tracepoint.c (trace_start_command): Confirm if trace is running.
7511 (trace_stop_command): Error if trace not running.
7512
fe01d668
L
75132010-04-01 H.J. Lu <hongjiu.lu@intel.com>
7514
7515 * amd64-tdep.c (amd64_byte_names): Add "ah", "bh", "ch", "dh".
7516 (AMD64_NUM_LOWER_BYTE_REGS): New.
7517 (amd64_pseudo_register_read): Handle "ah", "bh", "ch", "dh".
7518 (amd64_pseudo_register_write): Likewise.
7519 (amd64_init_abi): Set num_byte_regs to 20.
7520
86b17b60
PA
75212010-04-01 Pedro Alves <pedro@codesourcery.com>
7522
7523 * breakpoint.c (multi_start, multi_end, last_was_multi): Delete.
7524 (prev_breakpoint_count): New.
7525 (set_breakpoint_count): Adjust.
7526 (rbreak_start_breakpoint_count): New.
7527 (start_rbreak_breakpoints): Adjust.
7528 (end_rbreak_breakpoints): Adjust.
7529 (struct commands_info) <arg>: New field.
7530 (do_map_commands_command): Tweak output to include breakpoint spec
7531 range.
7532 (commands_command_1): Adjust. Avoid setting an xfree cleanup if
7533 ARG was empty on entry. Set INFO's arg.
7534 (create_breakpoint): Adjust.
7535
7536 * NEWS: Clarify `commands' changes.
7537
2c58c0a9
PA
75382010-04-01 Pedro Alves <pedro@codesourcery.com>
7539
7540 * tracepoint.c: Include stack.h.
7541 (struct add_local_symbols_data): New.
7542 (do_collect_symbol): New.
7543 (add_local_symbols): Rewrite using iterate_over_block_arg_vars and
7544 iterate_over_block_local_vars.
7545 * stack.c (print_block_frame_locals): Rewrite as ...
7546 (iterate_over_block_locals): ... this. Take a callback function
7547 pointer and generic data pointer, and call that instead of
7548 print_variable_and_value.
7549 (struct print_variable_and_value_data): New.
7550 (do_print_variable_and_value): New.
7551 (iterate_over_block_local_vars): New, abstracted out from
7552 print_frame_local_vars.
7553 (print_frame_local_vars): Rewrite using
7554 iterate_over_block_local_vars.
7555 (iterate_over_block_arg_vars): New, abstracted out from
7556 print_frame_arg_vars.
7557 (print_frame_arg_vars): Rewrite using iterate_over_block_arg_vars.
7558 * stack.h (iterate_over_block_arg_local_vars_cb): New typedef.
7559 (iterate_over_block_arg_vars, iterate_over_block_local_vars): Declare.
7560
d476da0e
RE
75612010-03-31 Richard Earnshaw <rearnsha@arm.com>
7562
7563 * arm-tdep.c (thumb_get_next_pc_raw): Correctly detect TBH
8d95cc3b 7564 instructions. Use the PC+4 if the base of the TBB or TBH is the
d476da0e
RE
7565 PC register.
7566
8072405b
JK
75672010-03-31 Jan Kratochvil <jan.kratochvil@redhat.com>
7568
7569 Fix crash on reading wrong function declaration DWARF.
7570 * dwarf2read.c (read_subroutine_type): New variable void_type.
7571 Pre-fill all TYPE_FIELD_TYPEs. Move nparams and iparams initialization
7572 more close to their use.
7573
8bf6485c
SS
75742010-03-31 Stan Shebs <stan@codesourcery.com>
7575
7576 * breakpoint.c (tracepoint_save_command): Include variables,
8d95cc3b 7577 conditionals, tracepoint types, and default-collect.
8bf6485c
SS
7578 * tracepoint.c (save_trace_state_variables): New function.
7579 * tracepoint.h (save_trace_state_variables): Declare it.
7580
2ae2a0b7
PM
75812010-03-31 Pierre Muller <muller@ics.u-strasbg.fr>
7582
1a161f72 7583 * remote.c (end_thread): ARI fix: Use xstrdup instead of strdup.
2ae2a0b7 7584
86ffb506
KS
75852010-03-30 Keith Seitz <keiths@redhat.com>
7586
7587 * c-typeprint.c (c_type_print_args): Don't print "void"
7588 for java, regardless of whether it is TYPE_PROTOTYPED.
7589 Use the passed-in language instead of current_language.
7590 (c_type_print_varspec_suffix): Use current_language instead
7591 of assuming language_c.
7592 * jv-typeprint.c (java_type_print_base): (bz 9320) Strip off
7593 any return type specifier from the physname.
7594
956c2c8b
PA
75952010-03-30 Pedro Alves <pedro@codesourcery.com>
7596
7597 * tui/tui-interp.c (tui_is_toplevel): New.
7598 (tui_init): Set it.
7599 (tui_allowed_p): New.
7600 * tui/tui.c (tui_enable): Check if the TUI is allowed before
7601 enabling it.
7602 * tui/tui.h (tui_allowed_p): Declare.
7603
98e5a990
TT
76042010-03-30 Ozkan Sezer <sezeroz@gmail.com>
7605
7606 * serial.h: Include winsock2.h before windows.h.
7607
c8d5aac9
L
76082010-03-30 H.J. Lu <hongjiu.lu@intel.com>
7609
7610 * NEWS: Mention xmlRegisters= in qSupported packet.
7611
7612 * i386-tdep.c: Include "remote.h".
7613 (_initialize_i386_tdep): Call register_remote_support_xml.
7614
7615 * remote.c (remote_support_xml): New.
7616 (register_remote_support_xml): Likewise.
7617 (remote_query_supported_append): Likewise.
7618 (remote_query_supported): Support remote_support_xml.
7619
7620 * remote.h (register_remote_support_xml): New.
7621
76a2b958
SS
76222010-03-29 Stan Shebs <stan@codesourcery.com>
7623
42e08e69
SS
7624 * tracepoint.c (trace_find_line_command): Remove dead code.
7625
409873ef
SS
7626 * tracepoint.h (struct uploaded_string): New struct.
7627 (struct uploaded_tp): New fields for source strings.
7628 * breakpoint.c (this_utp, next_cmd): New globals.
7629 (read_uploaded_action): New function.
7630 (create_tracepoint_from_upload): Fill in more parts
7631 of a tracepoint.
7632 * tracepoint.c (encode_source_string): New function.
7633 (trace_save): Write out source strings, fix error checks.
7634 (parse_tracepoint_definition): Add source string parsing.
7635 * remote.c (PACKET_TracepointSource): New packet type.
7636 (remote_download_command_source): New function.
7637 (remote_download_tracepoint): Download source pieces also.
7638 (_initialize_remote): Add packet config command.
7639
a0405854
SS
7640 * tracepoint.c (collect_symbol): Send LOC_UNRESOLVED symbols to
7641 expression handler.
7642
76a2b958
SS
7643 * tracepoint.c (start_tracing): Check tracepoints before sending
7644 commands to target, don't start if all tracepoints disabled.
7645
d350db38
PA
76462010-03-28 Pedro Alves <pedro@codesourcery.com>
7647
12f2d601 7648 * cli/cli-script.c (process_next_line): Handle 'stepping'.
d350db38 7649
8b9b7ef8
SS
76502010-03-26 Stan Shebs <stan@codesourcery.com>
7651
7652 * tracepoint.c (disconnect_or_stop_tracing): Get out of tfind mode.
7653
9766ced4
SS
76542010-03-26 Tom Tromey <tromey@redhat.com>
7655
7656 * breakpoint.c (commands_command_1): Duplicate 'arg'.
7657
059acae7
UW
76582010-03-26 Ulrich Weigand <uweigand@de.ibm.com>
7659
7660 * breakpoint.c (expand_line_sal_maybe): Always call skip_prologue_sal.
7661 (skip_prologue_sal): Remove local definition.
7662 (resolve_sal_pc): Remove now unnecessary code.
7663 * linespec.c (minsym_found): Call skip_prologue_sal.
7664 * symtab.c (find_function_start_pc): Remove.
7665 (find_function_start_sal): Extract prologue skipping into ...
7666 (skip_prologue_sal): ... this new function. Handle code both
7667 with and without debug info. Respect SAL's explicit_pc and
7668 explicit_line flags. Inline old find_function_start_pc.
7669 * symtab.h (find_function_start_pc): Remove.
7670 (skip_prologue_sal): Add prototype.
7671
4a811a97
UW
76722010-03-26 Ulrich Weigand <uweigand@de.ibm.com>
7673
7674 * dwarf2read.c (read_func_scope): Also scan specification DIEs
7675 for DW_TAG_imported_module children.
7676
907af001
UW
76772010-03-26 Ulrich Weigand <uweigand@de.ibm.com>
7678
7679 * dwarf2read.c (dwarf2_name): Work around GCC bugzilla debug/41828 by
7680 ignoring spurious DW_AT_name attributes for unnamed structs or unions.
7681 * completer.c (add_struct_fields): Fix inverted logic.
7682
dde2d684
UW
76832010-03-26 Ulrich Weigand <uweigand@de.ibm.com>
7684
7685 * breakpoint.c (bpstat_clear_actions): Reset bs->commands_left.
7686
a609a0c8
PA
76872010-03-26 Pedro Alves <pedro@codesourcery.com>
7688
7689 * tracepoint.c (current_trace_status): Don't make sure error_desc
7690 is non-NULL here.
7691 (parse_trace_status): Release a previous error_desc string, and
7692 set it to NULL by default. If stop reason is tracepoint_error,
7693 make sure error_desc is not left NULL.
7694
610197fd
PA
76952010-03-26 Pedro Alves <pedro@codesourcery.com>
7696
7697 * tracepoint.c (trace_save): Remove X from tracepoint error
7698 description.
7699
99b5e152
PA
77002010-03-26 Pedro Alves <pedro@codesourcery.com>
7701
7702 * tracepoint.c (parse_trace_status): Don't allow plain strings in
7703 the terror description. Don't expect an X prefix.
7704
6c28cbf2
SS
77052010-03-25 Stan Shebs <stan@codesourcery.com>
7706
7707 * tracepoint.h (trace_stop_reason): Add tracepoint_error.
7708 (struct trace_status): New field error_desc.
7709 * tracepoint.c (stop_reason_names): Add terror.
7710 (current_trace_status): Ensure non-NULL error description.
7711 (trace_status_command): Add error report.
7712 (trace_status_mi): Ditto.
7713 (trace_save): Add special case for error description.
7714 (parse_trace_status): Add case for errors.
7715
418835cc
KS
77162010-03-25 Keith Seitz <keiths@redhat.com>
7717
7718 * dwarf2read.c (read_subroutine_type): If the compilation unit
7719 language is Java, mark any formal parameter named "this" as
7720 artificial (GCC/43521).
7721 (dwarf2_name): Add special handling for Java constructors.
7722
aa7d318d
TT
77232010-03-25 Tom Tromey <tromey@redhat.com>
7724
7725 PR gdb/11327, PR gdb/11328, PR breakpoints/11368:
7726 * infrun.c (handle_inferior_event): Change initialization of
7727 stop_stack_dummy.
7728 (handle_inferior_event): Change assignment to stop_stack_dummy.
7729 (normal_stop): Update use of stop_stack_dummy.
7730 (struct inferior_status) <stop_stack_dummy>: Change type.
7731 * inferior.h (stop_stack_dummy): Update.
7732 * infcmd.c (stop_stack_dummy): Change type.
7733 * infcall.c (cleanup_delete_std_terminate_breakpoint): New
7734 function.
7735 (call_function_by_hand): Call set_std_terminate_breakpoint.
7736 Rewrite std::terminate handling.
7737 * breakpoint.h (enum bptype) <bp_std_terminate,
7738 bp_std_terminate_master>: New.
7739 (enum stop_stack_kind): New.
7740 (struct bpstat_what) <call_dummy>: Change type.
7741 (set_std_terminate_breakpoint, delete_std_terminate_breakpoint):
7742 Declare.
7743 * breakpoint.c (create_std_terminate_master_breakpoint): New
7744 function.
7745 (update_breakpoints_after_exec): Handle bp_std_terminate_master.
7746 Call create_std_terminate_master_breakpoint.
7747 (print_it_typical): Handle new breakpoint kinds.
7748 (bpstat_stop_status): Handle bp_std_terminate_master.
7749 (bpstat_what): Correctly set call_dummy field. Handle
7750 bp_std_terminate_master and bp_std_terminate.
7751 (print_one_breakpoint_location): Update.
7752 (allocate_bp_location): Update.
7753 (set_std_terminate_breakpoint): New function.
7754 (delete_std_terminate_breakpoint): Likewise.
7755 (create_thread_event_breakpoint): Update.
7756 (delete_command): Update.
7757 (breakpoint_re_set_one): Update.
7758 (breakpoint_re_set): Call create_std_terminate_master_breakpoint.
7759
82ccf5a5
JK
77602010-03-25 Jan Kratochvil <jan.kratochvil@redhat.com>
7761
7762 * symfile.c (build_section_addr_info_from_bfd): New.
7763 (build_section_addr_info_from_objfile): Base it on
7764 build_section_addr_info_from_bfd.
7765 (addrs_section_compar, addrs_section_sort): New.
7766 (addr_info_make_relative): New variables my_cleanup, abfd_addrs,
7767 addrs_sorted, abfd_addrs_sorted and addrs_to_abfd_addrs. Build
7768 addrs_to_abfd_addrs. Use it for recalculating ADDRS.
7769
737c4c52
MS
77702010-03-24 Michael Snyder <msnyder@localhost.localdomain>
7771
8d95cc3b 7772 * elfread.c (find_separate_debug_file_by_buildid):
737c4c52
MS
7773 Remove unused local variable.
7774
95a42b64
TT
77752010-03-24 Tom Tromey <tromey@redhat.com>
7776
7777 PR breakpoints/9352:
7778 * NEWS: Mention changes to `commands' and `rbreak'.
7779 * symtab.c (do_end_rbreak_breakpoints): New function.
7780 (rbreak_command): Call start_rbreak_breakpoints; arrange to call
7781 end_rbreak_breakpoints.
7782 * breakpoint.c (breakpoint_count, tracepoint_count): Now static.
7783 (set_breakpoint_count): Likewise. Clear last_was_multi.
7784 (multi_start, multi_end, last_was_multi): New globals.
7785 (start_rbreak_breakpoints, end_rbreak_breakpoints): New
7786 functions.
7787 (struct commands_info): New
7788 (do_map_commands_command): New function.
7789 (commands_command_1): New function.
7790 (commands_command): Use it.
7791 (commands_from_control_command): Likewise.
7792 (do_delete_breakpoint): New function.
7793 (delete_command): Use it.
7794 (map_breakpoint_numbers): Add 'data' argument. Pass to callback.
7795 (do_map_disable_breakpoint): New function.
7796 (disable_command): Use it.
7797 (do_map_enable_breakpoint): New function.
7798 (enable_command): Use it.
7799 (enable_once_breakpoint): Add argument.
7800 (enable_once_command): Update.
7801 (enable_delete_breakpoint): Add argument.
7802 (enable_delete_command): Update.
7803 (break_command_really): Set last_was_multi when needed.
7804 (check_tracepoint_command): Fix formatting.
7805 (validate_commands_for_breakpoint): New function.
7806 (breakpoint_set_commands): Use it.
7807 (tracepoint_save_command): Update.
7808 * breakpoint.h (start_rbreak_breakpoints, end_rbreak_breakpoints):
7809 Declare.
7810
9add0f1b
TT
78112010-03-24 Tom Tromey <tromey@redhat.com>
7812
7813 * breakpoint.h (struct counted_command_line): New struct.
7814 (struct breakpoint) <commands>: Change type.
7815 (struct bpstats) <commands>: Change type.
7816 <commands_left>: New field.
7817 * breakpoint.c (alloc_counted_command_line): New function.
7818 (incref_counted_command_line): Likewise.
7819 (decref_counted_command_line): Likewise.
7820 (do_cleanup_counted_command_line): Likewise.
7821 (make_cleanup_decref_counted_command_line): Likewise.
7822 (breakpoint_set_commands): Use decref_counted_command_line and
7823 alloc_counted_command_line.
7824 (commands_command): Don't error if breakpoint commands are
7825 executing.
7826 (commands_from_control_command): Likewise.
7827 (bpstat_free): Update.
7828 (bpstat_copy): Likewise.
7829 (bpstat_clear_actions): Likewise.
7830 (bpstat_do_actions_1): Likewise.
7831 (bpstat_stop_status): Likewise.
7832 (print_one_breakpoint_location): Likewise.
7833 (delete_breakpoint): Likewise.
7834 (bpstat_alloc): Initialize new field.
7835 (tracepoint_save_command): Update.
7836 * tracepoint.c (encode_actions): Update.
7837 (trace_dump_command): Update.
7838
a6c727b2
DJ
78392010-03-24 Daniel Jacobowitz <dan@codesourcery.com>
7840
7841 * dwarf2-frame.c (dwarf2_frame_find_quirks): Use producer_is_realview.
7842 * dwarf2read.c (load_full_comp_unit): Read DW_AT_producer.
7843 (read_structure_type): For RealView, set TYPE_STUB on structures with
7844 no byte size and no children.
7845 (read_subroutine_type): Mark functions as prototyped by default.
7846 * symtab.c (producer_is_realview): New function.
7847 * symtab.h (expand_line_sal): Fix declaration formatting.
7848 (producer_is_realview): Declare.
7849
0d39a070
DJ
78502010-03-24 Daniel Jacobowitz <dan@codesourcery.com>
7851
7852 * arm-tdep.c (skip_prologue_function): New function.
7853 (submask, bit, bits, sbits, BranchDest): Move higher in the file.
7854 (thumb_analyze_prologue): Document return value. Recognize more
7855 Thumb instructions, skippable calls, and some Thumb-2 instructions.
7856 Add debug output.
7857 (arm_skip_prologue): Remove call dummy check. Check the prologue
7858 for non-GNU compilers.
7859 (arm_instruction_changes_pc): New function.
7860 (arm_analyze_prologue): New function, broken out from
7861 arm_scan_prologue. Recognize more ARM instructions and skippable
7862 calls. Update comments. Handle NULL cache. Return the address
7863 of the first unrecognized instruction. Do not skip past other
7864 instructions which change control flow. Add debug output.
7865 (arm_scan_prologue): Use arm_analyze_prologue.
7866 (ARM_PC_32): Delete.
7867 (shifted_reg_val): Simplify ARM_PC_32 check.
7868
4baf5cf4
VP
78692010-03-24 Vladimir Prus <vladimir@codesourcery.com>
7870
7871 * tracepoint.c (tvariables_info_1): Actually compute
7872 the number of rows in the result.
7873
4a5e7a5b
PA
78742010-03-24 Pedro Alves <pedro@codesourcery.com>
7875
7876 * remote.c (crc32): Constify `buf' parameter.
7877 (remote_verify_memory): New, abstracted out from...
7878 (compare_sections_command): ... this. Remove hardcoded target
7879 checks.
7880 (init_remote_ops): Install remote_verify_memory.
7881 * target.c (target_verify_memory): New.
7882 * target.h (struct target_ops) <to_verify_memory>: New field.
7883 (target_verify_memory): Declare.
7884
011aacb0
VP
78852010-03-24 Vladimir Prus <vladimir@codesourcery.com>
7886
7887 Implement -trace-save.
7888
7889 * mi-cmds.h (mi_cmds_trace_save): Declare.
7890 * mi-cmds.c (mi_cmds): Register -trace-save.
7891 * mi/mi-main.c (mi_cmd_trace_save): New.
7892 * remote.c (remote_save_trace_data): Take const parameter.
7893 * target.h (struct target_ops::to_save_trace_data): Take
7894 const parameter.
7895 * target.c (update_current_target): Adjust to the above.
7896 * tracepoint.c (trave_save): New, extracted from
7897 (trace_save_command): ...this.
7898 (tfile_trace_find): Remove message that is unnecessary now
7899 that 'tfind' reports found frame.
7900 * tracepoint.h (trace_save): Declare.
7901
f197e0f1
VP
79022010-03-24 Vladimir Prus <vladimir@codesourcery.com>
7903
7904 Implement -trace-find.
7905
7906 * mi/mi-cmds.c (mi_cmds): Register -trace-find.
7907 * mi/mi-cmds.h (mi_cmd_trace_find): Declare.
7908 * mi/mi-main.c (mi_cmd_trace_find): New.
7909 * target.h (struct target_ops): Document to_trace_find.
7910 * tracepoint.h (tfind_1): Declare.
7911 * tracepoint.c (finish_tfind_command): Rename to...
7912 (tfind_1): ...this.
7913 * remote.c (remote_trace_find): Return -1 if target say
7914 there's no frame. Improve error diagnostics.
7915
40e1c229
VP
79162010-03-24 Vladimir Prus <vladimir@codesourcery.com>
7917
7918 -trace-define-variable and -trace-list-variables.
7919
7920 * tracepoint.c (create_trace_state_variable): Make
7921 private copy of name, as opposed to assuming the
7922 pointer lives forever.
7923 (tvariables_info_1): New.
7924 (tvariables_info): Use the above.
7925 * tracepoint.h (create_trace_state_variable, tvariables_info_1):
7926 Declare.
7927 * mi/mi-cmds.c (mi_cmds): Register -trace-define-variable
7928 and -trace-list-variables.
7929 * mi/mi-cmds.h (mi_cmd_trace_define_variable)
7930 (mi_cmd_trace_list_variables): New.
7931 * mi/mi-main.c (mi_cmd_trace_define_variable)
7932 (mi_cmd_trace_list_variables): New.
7933
9b4c786c
VP
79342010-03-24 Vladimir Prus <vladimir@codesourcery.com>
7935
7936 Implement -break-passcount.
7937
7938 * mi/mi-cmd-break.c (mi_cmd_break_passcount): New.
7939 * mi/mi-cmds.c (mi_cmds): Register -break-passcount.
7940 * mi/mi-cmds.h (mi_cmd_break_passcount): Declare.
7941
f224b49d
VP
79422010-03-24 Vladimir Prus <vladimir@codesourcery.com>
7943
7944 -trace-start/-trace-end/-trace-status.
7945
7946 * mi/mi-cmds.c (mi_cmds): Register -trace-start, -trace-status
7947 and -trace-stop.
7948 * mi/mi-cmds.h (mi_cmd_trace_start, mi_cmd_trace_status)
7949 (mi_cmd_trace_stop): Declare.
7950 * mi/mi-main.c (mi_cmd_trace_start, mi_cmd_trace_status)
7951 (mi_cmd_trace_stop): New.
7952 * tracepoint.c (start_tracing): New, extracted from...
7953 (trace_start_command): ...this.
7954 (trace_status_mi): New.
7955 * tracepoint.h (struct trace_status): Document
7956 stopping_tracepoint.
7957 (start_tracing, stop_tracing, trace_status_mi): Declare.
7958
6534d786
VP
79592010-03-24 Vladimir Prus <vladimir@codesourcery.com>
7960
7961 Implement creating tracepoints with -break-insert.
7962
7963 * mi/mi-cmd-break.c (mi_cmd_break_insert): Handle -a
7964 to mean that tracepoint should be created.
7965
51661e93
VP
79662010-03-24 Vladimir Prus <vladimir@codesourcery.com>
7967
7968 * breakpoint.c (check_no_tracepoint_commands): Use
7969 current spelling of 'teval'.
7970
a7bdde9e
VP
79712010-03-24 Vladimir Prus <vladimir@codesourcery.com>
7972
7973 Unify actions and commands
7974
7975 * defs.h (read_command_lines, read_command_lines_1): New
7976 parameters validator and closure.
7977 * tracepoint.h (struct action_line): Remove.
7978 * breakpoint.h (struct breakpoint): Remove the 'actions'
7979 field.
7980 * defs.h (enum command_control_type): New value
7981 while_stepping_control.
7982 (struct command_line): Add comments.
7983 * breakpoint.c (breakoint_is_tracepoint): New.
7984 (breakpoint_set_commands): For tracepoints,
7985 verify the commands are permissible.
7986 (check_tracepoint_commands): New.
7987 (commands_command): Require that each new line is validated using
7988 check_tracepoint_command, if we set commands for a tracepoint.
7989 (create_tracepoint_from_upload): Likewise.
7990 (print_one_breakpoint_location): Remove the code to print
7991 actions specifically.
7992 (tracepoint_save_command): Relay to print_command_lines.
7993 * cli/cli-script.c (process_next_line): New parameters validator
7994 and closure. Handle 'while-stepping'. Call validator if not null.
7995 (read_command_lines, read_command_lines1): Likewise.
7996 (recurse_read_control_structure): New parameters validator and
7997 closure. Handle while_stepping_control.
7998 (print_command_lines): Handle while-stepping.
7999 (get_command_line, define_command, document_command): Adjust.
8000 * remote.c (remote_download_tracepoint): Adjust.
8001 * tracepoint.c (make_cleanup_free_actions, read_actions)
8002 (free_actions, do_free_actions_cleanup): Remove.
8003 (trace_actions_command): Use read_command_lines.
8004 (validate_actionline): Use error in one place.
8005 (encode_actions_1): New, extracted from...
8006 (encode_actions): ...this. Also use cleanups for exception
8007 safety.
8008 (trace_dump_command): Adjust.
8009 * mi/mi-cmd-break (mi_cmd_break_commands): Validate commands if
8010 it's tracepoint.
8011
64e3cf3d
MF
80122010-03-23 Mike Frysinger <vapier@gentoo.org>
8013
8014 * Makefile.in (OPCODES_CFLAGS): Add -I$(OPCODES_SRC)/..
8015
52e9fde8
SS
80162010-03-22 Stan Shebs <stan@codesourcery.com>
8017
8018 * value.c (value_static_field): Be lazy about the field's value.
8019
508ccb1f
TT
80202010-03-22 Reid Kleckner <reid@kleckner.net>
8021
8022 PR gdb/11094
8023 * breakpoint.c (disable_breakpoints_in_unloaded_shlib): Add
8024 bp_jit_event.
8025 (disable_breakpoints_in_shlibs): Likewise.
8026
acebe513
UW
80272010-03-22 Ulrich Weigand <uweigand@de.ibm.com>
8028
8029 * dwarf2read.c (partial_die_parent_scope): Work around buggy
8030 GCC 4.1 debug info generation (GCC PR c++/28460).
8031 (determine_prefix): Likewise.
8032
957b8b5a
DJ
80332010-03-20 Daniel Jacobowitz <dan@codesourcery.com>
8034
8035 * tui/tui-disasm.c (tui_get_begin_asm_address): Default to
8036 get_current_arch.
8037 * tui/tui-layout.c (extract_display_start_addr): Likewise.
8038
3b11a015
SS
80392010-03-19 Stan Shebs <stan@codesourcery.com>
8040
8041 * ax-gdb.c (gen_fetch): Handle bool.
8042 (gen_usual_unary): Ditto.
8043 (gen_cast): Ditto.
8044 (gen_equal): New function.
8045 (gen_less): New function.
8046 (gen_expr_binop_rest): Call them, also return integer type from
8047 logical operations.
8048 (gen_expr): Ditto.
8049
20781792
TT
80502010-03-19 Tom Tromey <tromey@redhat.com>
8051
8052 * jv-lang.c (jv_dynamics_objfile_data_key)
8053 (jv_type_objfile_data_key): New globals.
8054 (class_symtab): Move earlier.
8055 (jv_per_objfile_free): New function.
8056 (get_dynamics_objfile): Call set_objfile_data. Add 'gdbarch'
8057 parameter.
8058 Remove ancient #if 1.
8059 (add_class_symbol): Remove redundant declaration.
8060 (java_lookup_class): Use alloc_type, not alloc_type_arch.
8061 (java_link_class_type): Mark as static. Update.
8062 (jv_clear_object_type): New function.
8063 (set_java_object_type): Likewise.
8064 (get_java_object_type): Use set_java_object_type.
8065 (is_object_type): Likewise.
8066 (_initialize_java_language): Register new objfile keys.
8067 (get_java_class_symtab): Add 'gdbarch' parameter.
8068 (add_class_symtab_symbol): Update.
8069 (type_from_class): Update.
8070
cf3e25ca
SS
80712010-03-19 Stan Shebs <stan@codesourcery.com>
8072
8d95cc3b 8073 * ax-general.c (ax_const_l): Fix a sizing bug.
cf3e25ca 8074
f1ae44c9 80752010-03-18 Joel Brobecker <brobecker@adacore.com>
8076
8077 GDB 7.1 released.
8078
4daf5ac0
SS
80792010-03-18 Stan Shebs <stan@codesourcery.com>
8080 Pedro Alves <pedro@codesourcery.com>
8081
8082 * target.h (struct target_ops): New method
8083 to_set_circular_trace_buffer.
8084 (target_set_circular_trace_buffer): New macro.
8085 * target.c (update_current_target): Add
8086 to_set_circular_trace_buffer, fix to_set_disconnected_tracing
8087 default behavior.
8088 * remote.c (remote_set_circular_trace_buffer): New function.
8089 (init_remote_ops): Add it to vector.
8090 * tracepoint.h (struct trace_status): New field traceframes_created,
8091 change buffer_size and buffer_free to int.
8092 * tracepoint.c (circular_trace_buffer): New global.
8093 (start_tracing): Send values of disconnected tracing and circular
8094 trace buffer settings.
8095 (set_circular_trace_buffer): New function.
8096 (parse_trace_state): Handle total space and frames created.
8097 (trace_status_command): Display total space and total frames
8098 created.
8099 (trace_save): Write out new status values.
8100 (parse_trace_status): Set traceframe_count, traceframes_created,
8101 buffer_free and buffer_size to -1 by default.
8102 (_initialize_tracepoint): New setshow for circular-trace-buffer.
8103 * NEWS: Mention the circular trace buffer option.
8104
40c549d6
TT
81052010-03-18 Tom Tromey <tromey@redhat.com>
8106
8107 * infcmd.c (finish_command_continuation): Wrap print_return_value
8108 in TRY_CATCH.
8109
e8d05480
JB
81102010-03-18 Joel Brobecker <brobecker@adacore.com>
8111
8112 * dwarf2read.c (add_partial_subprogram): Make sure the subprogram
8113 DIE has a name before creating the associated partial symbol.
8114 (read_func_scope): Emit a complaint if the subprogram does not
8115 have a name or when we can't extract the subprogram PC bounds.
8116
441b986a
UW
81172010-03-18 Ulrich Weigand <uweigand@de.ibm.com>
8118
8119 * mi/mi-main.c (mi_cmd_list_thread_groups): Use get_current_arch
8120 instead of selected frame architecture.
8121
4247603b
PA
81222010-03-18 Pedro Alves <pedro@codesourcery.com>
8123
8124 * infcmd.c (until_command): Use ERROR_NO_INFERIOR. Ensure there's
8125 a valid selected thread, and that it is not running.
8126 (advance_command): Ditto.
8127 (finish_command): Ditto.
8128
400c6af0
SS
81292010-03-17 Stan Shebs <stan@codesourcery.com>
8130
3a96536b
SS
8131 * ax-gdb.c (require_rvalue): Disallow non-scalars.
8132
573cda03
SS
8133 * infcall.c: Include tracepoint.h.
8134 (call_function_by_hand): Disallow calls in tfind mode.
8135 * infcmd.c: Include tracepoint.h.
8136 (ensure_not_tfind_mode): New function.
8137 (continue_1): Call it.
8138 (step_1) Ditto.
8139 (jump_command): Ditto.
8140 (signal_command): Ditto.
8141 (advance_command): Ditto.
8142 (until_command): Ditto.
8143 (finish_command): Ditto.
8144 * tracepoint.h (disconnect_or_stop_tracing): Declare.
8145
400c6af0
SS
8146 * ax-gdb.h (struct axs_value): New field optimized_out.
8147 (gen_trace_for_var): Add gdbarch argument.
8148 * ax-gdb.c (gen_trace_static_fields): New function.
8149 (gen_traced_pop): Call it, add gdbarch argument.
8150 (gen_trace_for_expr): Update call to it.
8151 (gen_trace_for_var): Ditto, and report optimized-out variables.
8152 (gen_struct_ref_recursive): Check for optimized-out value.
8153 (gen_struct_elt_for_reference): Ditto.
8154 (gen_static_field): Pass gdbarch instead of expression, assume
8155 optimization if field not found.
8156 (gen_var_ref): Set the optimized_out flag.
8157 (gen_expr): Error on optimized-out variable.
8158 * tracepoint.c (collect_symbol): Handle struct-valued vars as
8159 expressions, skip optimized-out variables with computed locations.
8160 * dwarf2loc.c (dwarf2_tracepoint_var_ref): Flag instead of
8161 erroring out if location expression missing.
8162 (loclist_tracepoint_var_ref): Don't error out here.
8163
a3b2a86b
TT
81642010-03-17 Tom Tromey <tromey@redhat.com>
8165
8166 * dwarf2read.c (dwarf2_get_section_info): Handle case where no
8167 DWARF data is available.
8168
38963c97
DJ
81692010-03-17 Daniel Jacobowitz <dan@codesourcery.com>
8170
8171 * symfile.c (generic_load): Reset breakpoints after loading.
8172
ddabfc73
TT
81732010-03-17 Tom Tromey <tromey@redhat.com>
8174
8175 * linux-nat.c (linux_nat_detach): Check debug_linux_nat.
8176
d8c09fb5
JK
81772010-03-17 Jan Kratochvil <jan.kratochvil@redhat.com>
8178
8179 * spu-tdep.c (spu_catch_start): Replace set_breakpoint call with the
8180 create_breakpoint call, adjust the parameters.
8181
bbb0eef6
JK
81822010-03-16 Jan Kratochvil <jan.kratochvil@redhat.com>
8183 Chandru <chandru@in.ibm.com>
8184
8185 * dwarf2read.c (read_subrange_type): Set TYPE_HIGH_BOUND_UNDEFINED.
8186 * valarith.c (value_subscripted_rvalue): Suppress error if
8187 TYPE_ARRAY_UPPER_BOUND_IS_UNDEFINED.
8188
46956e39
HZ
81892010-03-16 Holger Hans Peter Freyther <zecke@selfish.org>
8190
8191 * linux-record.c (record_linux_msghdr): Remove unintended semicolons.
8192
b8d088ac
JB
81932010-03-16 Joel Brobecker <brobecker@adacore.com>
8194
8195 * ada-tasks.c (task_command_1): Check that the task ptid is valid
8196 before doing the associated thread switch.
8197
322be962
DJ
81982010-03-16 Daniel Jacobowitz <dan@codesourcery.com>
8199
8200 * MAINTAINERS: Update my email address.
8201
8cdf0e15
VP
82022010-03-16 Vladimir Prus <vladimir@codesourcery.com>
8203
8204 Simplify MI breakpoint setting.
8205
8206 * breakpoint.c (break_command_really): Make nonstatic and
8207 rename to...
8208 (create_breakpoint): ...this. Rename prior function by this name
8209 to...
8210 (create_breakpoint_sal): ...this.
8211 (create_breakpoints): Rename to...
8212 (create_breakpoints_sal): ...this.
8213 (set_breakpoint): Remove.
8214 * breakpoint.h: Adjust to above changes.
8215 * mi/mi-cmd-break.c (mi_cmd_break_insert): Simplify.
8216
b6e7192f
SS
82172010-03-15 Stan Shebs <stan@codesourcery.com>
8218
8219 * ax-gdb.c: Include cp-support.h.
8220 (find_field): Remove.
8221 (gen_primitive_field): New function.
8222 (gen_struct_ref_recursive): New function.
8223 (gen_struct_ref): Rewrite to call gen_struct_ref_recursive instead
8224 of find_field.
8225 (gen_static_field): New function.
8226 (gen_struct_elt_for_reference): New.
8227 (gen_namespace_elt): New.
8228 (gen_maybe_namespace_elt): New.
8229 (gen_aggregate_elt_ref): New.
8230 (gen_expr): Add OP_SCOPE, display opcode name in error message.
8231
1054b214
TT
82322010-03-15 Tom Tromey <tromey@redhat.com>
8233
8234 * dwarf2read.c (die_needs_namespace): Also return 0 for
8235 DW_TAG_subprogram.
8236
13387711
SW
82372010-03-15 Sami Wagiaalla <swagiaal@redhat.com>
8238
8239 PR c++/7936:
8240 * cp-support.h: Added char *declaration element to using_direct
8241 data struct.
8242 (cp_add_using): Added char *declaration argument.
8243 (cp_add_using_directive): Ditto.
8244 (cp_lookup_symbol_imports): made extern.
8245 * cp-namespace.c: Updated with the above changes.
8246 * dwarf2read.c (read_import_statement): Ditto.
8247 (read_namespace): Ditto.
8248 (read_import_statement): Support import declarations.
8249 * cp-namespace.c (cp_lookup_symbol_imports): Check for imported
8250 declarations.
8251 Added support for 'declaration_only' search.
8252 (cp_lookup_symbol_namespace): Attempt to search for the name as
8253 is before consideration of imports.
8254 * symtab.c (lookup_symbol_aux_local): Added a 'declaration_only'
8255 search at every block level search.
8256 Now takes language argument.
8257 (lookup_symbol_aux): Updated.
8258
6e31430b
TT
82592010-03-15 Tom Tromey <tromey@redhat.com>
8260
8261 * c-exp.y (name_not_typename): Add 'operator' clause.
8262
4dea3bb7 82632010-03-15 Ralf Corsepius <ralf.corsepius@rtems.org> (tiny change)
bf307134
JB
8264
8265 * configure.ac: Exit if ${gdb_target_obs}" is not set.
8266 * configure: Regenerate.
8267
4d9743af
JK
82682010-03-15 Jan Kratochvil <jan.kratochvil@redhat.com>
8269
8270 * symfile.c (addr_info_make_relative): Ignore also missing ".dynbss"
8271 and ".sdynbss". Update the comment.
8272
f75150fe
JZ
82732010-03-15 Jie Zhang <jie@codesourcery.com>
8274
8275 * MAINTAINERS: Update my email address.
8276
3c13bc11
DJ
82772010-03-14 Daniel Jacobowitz <dan@codesourcery.com>
8278
8279 * gdbtypes.h (TYPE_IS_OPAQUE): Correct HAVE_CPLUS_STRUCT check.
8280
43484f03
DJ
82812010-03-14 Daniel Jacobowitz <dan@codesourcery.com>
8282
8283 * charset.c [USE_WIN32API]: Include <windows.h>.
8284 (_initialize_charset): Correct type of w32_host_default_charset.
8285
5f25d77d
PA
82862010-03-14 Pedro Alves <pedro@codesourcery.com>
8287
8288 * infrun.c (ptid_match): Don't assert that PTID is not a pid ptid.
8289
1c809c68
TT
82902010-03-12 Tom Tromey <tromey@redhat.com>
8291
8292 PR c++/9708:
8293 * dwarf2read.c (die_needs_namespace) <DW_TAG_variable>: A variable
8294 in a lexical block does not need a namespace.
8295 (new_symbol) <DW_TAG_variable>: Put extern variables on
8296 list_in_scope in all cases.
8297
948103cf
SS
82982010-03-12 Stan Shebs <stan@codesourcery.com>
8299
8300 * ax-gdb.c (gen_expr): Add shift expressions.
8301 (gen_expr_binop_rest): Ditto.
8302
00ae8fef
SW
83032010-03-12 Sami Wagiaalla <swagiaal@redhat.com>
8304
8305 * buildsym.c (finish_block): Reset using_directives pointer
8306 after block initialization.
8307
9cad29ac
L
83082010-03-12 H.J. Lu <hongjiu.lu@intel.com>
8309
8310 * amd64-tdep.c (amd64_word_names): Replace "sp" with "".
8311 * i386-tdep.c (i386_word_names): Likewise.
8312
2f4d8875
PA
83132010-03-12 Pedro Alves <pedro@codesourcery.com>
8314
8315 * target.c (memory_xfer_partial): Don't use the stack cache if
8316 inspecting trace frames.
8317 * tracepoint.c (finish_tfind_command): Invalidate the target
8318 dcache.
8319
ccf26247
JK
83202010-03-11 Jan Kratochvil <jan.kratochvil@redhat.com>
8321
8322 * solib-svr4.c (LM_ADDR_CHECK) <info_verbose>: Use printf_unfiltered
8323 for the PIC displacement, print also the displacement value.
8324 (svr4_exec_displacement): Print DISPLACEMENT if INFO_VERBOSE.
8325
477c84a7
KB
83262010-03-10 Kevin Buettner <kevinb@redhat.com>
8327
8328 * remote-mips.c (close_ports, mips_initialize_cleanups)
8329 (mips_exit_cleanups, mips_send_command, mips_open, pmon_open)
8330 (ddb_open, lsi_open, mips_remove_breakpoint, mips_remove_watchpoint)
8331 (mips_stopped_by_watchpoint, send_srec, pmon_checkset)
8332 (pmon_make_fastrec, pmon_check_ack, mips_expect_download)
8333 (pmon_check_entry_address, pmon_check_total, pmon_end_download)
8334 (pmon_download, pmon_load_fast, _initialize_remote_mips): Add
8335 comments describing each of these functions.
8336 (mips_enter_debug, mips_exit_debug, common_open)
8337 (mips_signal_from_protocol, pmon_makeb64, pmon_zeroset): Add
8338 blank line after the comment describing the function.
8339
01c30d6e
JK
83402010-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
8341
8342 * solib-svr4.c (svr4_exec_displacement): Return now success, new
8343 parameter displacementp. Update comment.
8344 (svr4_relocate_main_executable): Return if non-zero SECTION_OFFSETS
8345 element exists. Return if svr4_exec_displacement was not successful.
8346 Update comment.
8347
09919ac2
JK
83482010-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
8349 Daniel Jacobowitz <dan@codesourcery.com>
8350
8351 * solib-svr4.c (read_program_header): Support type == -1 to read
8352 all program headers.
8353 (read_program_headers_from_bfd): New function.
8354 (svr4_static_exec_displacement): Remove and move the comment ...
8355 (svr4_exec_displacement): ... here. Remove variable found. New
8356 variable displacement. Check also DYNAMIC. Verify DISPLACEMENT
8357 alignment for ELF targets. Compare target vs. exec_bfd PHDRs for ELF
8358 targets using read_program_headers_from_bfd. Remove the call of
8359 svr4_static_exec_displacement.
8360
d146bf1e
TT
83612010-03-10 Tom Tromey <tromey@redhat.com>
8362
8363 * dwarf2read.c (struct pubnames_header): Remove.
8364 (_PUBNAMES_HEADER): Remove.
8365 (_ACTUAL_PUBNAMES_HEADER_SIZE): Remove.
8366 (struct aranges_header): Remove.
8367 (_ARANGES_HEADER, _ACTUAL_ARANGES_HEADER_SIZE): Remove.
8368 (struct dwarf2_per_objfile) <pubnames, aranges>: Remove.
8369 (PUBNAMES_SECTION): Remove.
8370 (ARANGES_SECTION): Remove.
8371 (dwarf2_locate_sections): Don't handle pubnames or aranges.
8372 (dwarf2_build_psymtabs): Remove dead code.
8373 (dwarf2_build_psymtabs_easy): Remove.
8374
be391dca
TT
83752010-03-10 Tom Tromey <tromey@redhat.com>
8376
8377 * elfread.c (elf_symfile_read): Don't call
8378 dwarf2_build_frame_info.
8379 * dwarf2read.c (struct dwarf2_section_info) <readin>: New field.
8380 (struct dwarf2_per_objfile) <objfile>: New field.
8381 (dwarf2_has_info): Now idempotent. Set objfile field.
8382 (dwarf2_read_section): Check and set readin field. Call
8383 posix_madvise.
8384 (dwarf2_build_psymtabs): Don't read all sections.
8385 (read_type_comp_unit_head): Read types section.
8386 (create_debug_types_hash_table): Likewise.
8387 (init_cu_die_reader): Add asserts.
8388 (process_type_comp_unit): Add assert.
8389 (dwarf2_build_psymtabs_hard): Read info section.
8390 (load_partial_comp_unit): Add assert.
8391 (create_all_comp_units): Read info section.
8392 (load_full_comp_unit): Likewise.
8393 (dwarf2_ranges_read): Read ranges section.
8394 (dwarf2_record_block_ranges): Add assert.
8395 (dwarf2_read_abbrevs): Read abbrev section.
8396 (read_indirect_string): Read str section.
8397 (dwarf_decode_line_header): Read line section.
8398 (read_signatured_type_at_offset): Read types section.
8399 (dwarf_decode_macros): Read macinfo section.
8400 (dwarf2_symbol_mark_computed): Read loc section.
8401 * dwarf2-frame.c (dwarf2_frame_find_fde): Call
8402 dwarf2_build_frame_info.
8403 (dwarf2_build_frame_info): Unconditionally set
8404 dwarf2_frame_objfile_data on the objfile.
8405 * configure.ac: Check for posix_madvise.
8406 * config.in, configure: Rebuild.
8407
ccefe4c4
TT
84082010-03-10 Tom Tromey <tromey@redhat.com>
8409
e38df1d0
TT
8410 * xcoffread.c (xcoff_start_psymtab): Update.
8411 (xcoff_end_psymtab): Update.
8412 * psymtab.c (allocate_psymtab): Remove dead code.
8413 * psympriv.h (struct partial_symtab) <read_symtab_private>: Now
8414 void*.
8415 * mdebugread.c (parse_partial_symbols): Update.
8416 (new_psymtab): Likewise.
8417 * dwarf2read.c (process_psymtab_comp_unit): Update.
8418 (psymtab_to_symtab_1): Update.
8419 * dbxread.c (start_psymtab): Update.
8420 (end_psymtab): Likewise.
8421
be391dca 84222010-03-10 Tom Tromey <tromey@redhat.com>
e38df1d0 8423
ccefe4c4
TT
8424 * xcoffread.c: Include psymtab.h.
8425 (xcoff_sym_fns): Update.
8426 * symtab.h (struct partial_symbol): Remove.
8427 (PSYMBOL_DOMAIN, PSYMBOL_CLASS): Remove.
8428 (struct partial_symtab): Remove.
8429 (PSYMTAB_TO_SYMTAB): Remove.
8430 (lookup_partial_symbol, lookup_partial_symtab, find_pc_psymtab)
8431 (find_pc_sect_psymtab): Remove.
8432 (find_pc_sect_symtab_via_partial): Declare.
8433 (find_pc_psymtab, find_pc_sect_psymbol, psymtab_to_symtab)
8434 (find_main_psymtab): Remove.
8435 (find_main_filename): Declare.
8436 (fixup_psymbol_section): Remove.
8437 (fixup_section): Declare.
8438 * symtab.c: Include psymtab.h.
8439 (lookup_symtab): Use lookup_symtab method.
8440 (lookup_partial_symtab): Remove.
8441 (find_pc_sect_psymtab_closer): Remove.
8442 (find_pc_sect_psymtab): Remove.
8443 (find_pc_sect_symtab_via_partial): New function.
8444 (find_pc_psymtab, find_pc_sect_psymbol, find_pc_psymbol): Remove.
8445 (fixup_section): No longer static.
8446 (fixup_psymbol_section): Remove.
8447 (lookup_symbol_aux): Use lookup_symbol_aux_quick.
8448 (lookup_global_symbol_from_objfile): Likewise.
8449 (lookup_symbol_aux_psymtabs): Remove.
8450 (lookup_symbol_aux_quick): New function.
8451 (lookup_symbol_global): Use lookup_symbol_aux_quick.
8452 (lookup_partial_symbol): Remove.
8453 (basic_lookup_transparent_type_quick): New function.
8454 (basic_lookup_transparent_type): Use it.
8455 (find_main_psymtab): Remove.
8456 (find_main_filename): New function.
8457 (find_pc_sect_symtab): Use find_pc_sect_symtab method.
8458 (find_line_symtab): Use expand_symtabs_with_filename method.
8459 (output_partial_symbol_filename): New function.
8460 (sources_info): Use map_partial_symbol_filenames.
8461 (struct search_symbols_data): New type.
8462 (search_symbols_file_matches): New function.
8463 (search_symbols_name_matches): Likewise.
8464 (search_symbols): Use expand_symtabs_matching method.
8465 (struct add_name_data): Rename from add_macro_name_data.
8466 (add_macro_name): Update.
8467 (add_partial_symbol_name): New function.
8468 (default_make_symbol_completion_list): Use
8469 map_partial_symbol_names.
8470 (struct add_partial_symbol_name): New type.
8471 (maybe_add_partial_symtab_filename): New function.
8472 (make_source_files_completion_list): Use
8473 map_partial_symbol_filenames.
8474 (expand_line_sal): Use expand_symtabs_with_filename method.
8475 * symmisc.c: Include psymtab.h.
8476 (print_objfile_statistics): Use print_stats method.
8477 (dump_objfile): Use dump method.
8478 (dump_psymtab, maintenance_print_psymbols)
8479 (maintenance_info_psymtabs, maintenance_check_symtabs)
8480 (extend_psymbol_list): Remove.
8481 * symfile.h (struct quick_symbol_functions): New struct.
8482 (struct sym_fns) <qf>: New field.
8483 (sort_pst_symbols): Remove.
8484 (increment_reading_symtab): Declare.
8485 * symfile.c: Include psymtab.h.
8486 (compare_psymbols, sort_pst_symbols): Remove.
8487 (psymtab_to_symtab): Remove.
8488 (increment_reading_symtab): New function.
8489 (symbol_file_add_with_addrs_or_offsets): Use expand_all_symtabs
8490 method.
8491 (set_initial_language): Use find_main_filename.
8492 (allocate_psymtab, discard_psymtab, cashier_psymtab): Remove.
8493 (free_named_symtabs): Remove unused code.
8494 (start_psymtab_common, add_psymbol_to_bcache)
8495 (append_psymbol_to_list, add_psymbol_to_list, init_psymbol_list):
8496 Remove.
8497 * stack.c: Include psymtab.h, symfile.h.
8498 (backtrace_command_1): Use find_pc_sect_symtab_via_partial.
8499 * source.h (psymtab_to_fullname): Don't declare.
8500 * source.c: Include psymtab.h.
8501 (select_source_symtab): Use find_last_source_symtab method.
8502 (forget_cached_source_info): Use forget_cached_source_info
8503 method.
8504 (find_and_open_source): No longer static.
8505 (psymtab_to_fullname): Remove.
8506 * somread.c: Include psymtab.h.
8507 (som_sym_fns): Update.
8508 * psympriv.h: New file.
8509 * psymtab.h: New file.
8510 * psymtab.c: New file.
8511 * objfiles.h: (ALL_OBJFILE_PSYMTABS): Remove.
8512 (ALL_PSYMTABS, ALL_PSPACE_PSYMTABS): Likewise.
8513 * objfiles.c: Include psymtab.h.
8514 (objfile_relocate1): Use relocate method.
8515 (objfile_has_partial_symbols): Use has_symbols method.
8516 * mipsread.c: Include psymtab.h.
8517 (ecoff_sym_fns): Update.
8518 * mi/mi-cmd-file.c: Include psymtab.h.
8519 (print_partial_file_name): New function.
8520 (mi_cmd_file_list_exec_source_files): Use
8521 map_partial_symbol_filenames.
8522 * mdebugread.c: Include psympriv.h.
8523 * machoread.c: Include psympriv.h.
8524 (macho_sym_fns): Update.
8525 * m2-exp.y (yylex): Use lookup_symtab.
8526 * elfread.c: Include psympriv.h.
8527 (elf_sym_fns): Update.
8528 * dwarf2read.c: Include psympriv.h.
8529 * dbxread.c: Include psympriv.h.
8530 (aout_sym_fns): Update.
8531 * cp-support.c: Include psymtab.h.
8532 (read_in_psymtabs): Remove.
8533 (make_symbol_overload_list_qualified): Use
8534 expand_symtabs_for_function method.
8535 * coffread.c: Include psympriv.h.
8536 (coff_sym_fns): Update.
8537 * blockframe.c: Include psymtab.h.
8538 (find_pc_partial_function): Use find_pc_sect_symtab method.
8539 * ada-lang.h (ada_update_initial_language): Update.
8540 * ada-lang.c: Include psymtab.h.
8541 (ada_update_initial_language): Remove 'main_pst' argument.
8542 (ada_lookup_partial_symbol): Remove.
8543 (struct ada_psym_data): New type.
8544 (ada_add_psyms): New function.
8545 (ada_add_non_local_symbols): Use map_ada_symtabs method.
8546 (struct add_partial_datum): New type.
8547 (ada_add_partial_symbol_completions): New function.
8548 (ada_make_symbol_completion_list): Use map_partial_symbol_names.
8549 (ada_exception_support_info_sniffer): Update.
8550 * Makefile.in (SFILES): Add psymtab.c.
8551 (COMMON_OBS): Add psymtab.o.
8552 (HFILES_NO_SRCDIR): Add psymtab.h, psympriv.h.
8553
7d8500b7
PM
85542010-03-10 Pierre Muller <muller@ics.u-strasbg.fr>
8555
8556 * remote-fileio.c (cygwin_conv_path): Define macro for old cygwin API.
8557
c0cc3a76
SW
85582010-03-10 Sami Wagiaalla <swagiaal@redhat.com>
8559
8560 PR C++/11236:
8561 * cp-namespace.c (cp_add_using): Deleted.
8562 (cp_add_using_directive): Use obstack allocations.
8563 Merged the function cp_add_using into this one.
8564 Added 'struct obstack *' argument.
8565 (cp_scan_for_anonymous_namespaces): Updated.
8566 * cp-support.h: Updated.
8567 * dwarf2read.c (read_import_statement): Updated.
8568 (read_namespace): Updated.
8569
452fa064
CF
85702010-03-10 Pierre Muller <muller@ics.u-strasbg.fr>
8571
8572 * windows-nat.c (cygwin_conv_path): Remove old macro.
8573
60e1c644
PA
85742010-03-10 Pedro Alves <pedro@codesourcery.com>
8575
8576 * breakpoint.c (condition_command): Handle watchpoint conditions.
8577 (is_hardware_watchpoint): Add comment.
8578 (is_watchpoint): New.
8579 (update_watchpoint): Don't reparse the watchpoint's condition
8580 unless necessary.
8581 (WP_IGNORE): New.
8582 (watchpoint_check): Use it.
8583 (bpstat_check_watchpoint): Handle it.
8584 (bpstat_check_breakpoint_conditions): Evaluate watchpoint local
8585 conditions in a frame where it makes sense.
8586 (watch_command_1): Store the innermost block of the condition
8587 expression.
8588 (delete_breakpoint): Delete the watchpoint condition expression.
8589 * breakpoint.h (struct bp_location) <cond>: Update comment.
8590 (struct breakpoint): New field `cond_exp_valid_block'.
8591
af6b7be1
JB
85922010-03-09 Joel Brobecker <brobecker@adacore.com>
8593
8594 Adjust handling of Ada DIEs after dwarf2_physname patch.
8595 * dwarf2read.c (dwarf2_compute_name): Add handling of Ada DIEs.
8596
60c5c021
CF
85972010-03-09 Christopher Faylor <me+cygwin@cgf.cx>
8598 Pierre Muller <muller@ics.u-strasbg.fr>
8599
8600 * windows-nat.c (cygwin_conv_path): Redefine to properly convert
8601 from/to posix/win32.
8602 (windows_make_so): Use non-Cygwin 1.7 specific function.
8603 (windows_create_inferior): Make sure that cygallargs points to
8604 original args in non Cygwin 1.7. case.
8605
60a1502a
MS
86062010-03-09 Michael Snyder <msnyder@vmware.com>
8607
8608 * i386-tdep.c (i386_record_lea_modrm_addr): Use extract_signed_int
8609 after target_read_memory to get host byte order.
8610 (i386_process_record): Ditto.
8611
94af9270
KS
86122010-03-09 Keith Seitz <keiths@redhat.com>
8613
8614 Based on work from Daniel Jacobowitz <dan@codesourcery.com>
8615 * c-typeprint.c (cp_type_print_method_args): For non-static methods,
8616 print out const or volatile qualifiers, too.
8617 (c_type_print_args): Add parameters show_artificial and language.
8618 Skip artificial parameters when requested.
8619 Use the appropriate language printer.
8620 (c_type_print_varspec): Tell c_type_print_args to skip artificial
8621 parameters and pass language_c.
8622 * dwarf2read.c (die_list): New file global.
8623 (struct partial_die_info): Update comments for name field.
8624 (pdi_needs_namespace): Renamed to ...
8625 (die_needs_namespace): ... this. Rewrite.
8626 (dwarf2_linkage_name): Remove.
8627 (add_partial_symbol): Do not predicate the call to
8628 partial_die_full_name based on pdi_needs_namespace.
8629 Remove call to cp_check_possible_namespace_symbols and associated
8630 outdated comments.
8631 (guess_structure_name): Do not inspect child subprogram DIEs.
8632 (dwarf2_fullname): Update comments.
8633 Use die_needs_namespace to assist in computing the name.
8634 (read_func_scope): Use dwarf2_name to get the DIE's name.
8635 Use dwarf2_physname to get the "linkage name" of the DIE.
8636 (dwarf2_add_member_field): Use dwarf2_physname instead of
8637 dwarf2_linkage_name.
8638 (read_structure_type): For structs and classes, set TYPE_NAME, too.
8639 (determine_class): Remove.
8640 (read_partial_die): Ignore DW_AT_MIPS_linkage_name for all languages
8641 except Ada.
8642 (new_symbol): Unconditionally call dwarf2_name.
8643 Compute the "linkage name" using dwarf2_physname.
8644 Use dwarf2_name instead of dwarf2_full_name for enumerator DIEs.
8645 When determining to scan for anonymous C++ namespaces, ignore
8646 the linkage name.
8647 (dwarf2_physname): New function.
8648 (dwarf2_full_name): Move content to new function and call
8649 that.
8650 (dwarf2_compute_name): "New" function.
8651 (_initialize_dwarf2_read): Initialize die_list.
8652 * gnu-v3-eabi.c (gnu_v3_find_method_in): Remove unused variable
8653 physname.
8654 (gnu_v3_print_method_ptr): Use the physname for virtual methods
8655 without a demangled name.
8656 Print out type information for non-virtual methods.
c8d5aac9 8657 * linespec.c (decode_line_1): Force ANY string using "::" (or
94af9270 8658 "." for java) to use decode_compound, and clean up any stray quoting.
c8d5aac9
L
8659 If we found a file symtab, re-evaluate whether the remainder is_quoted.
8660 (decode_compound): Stop consuming at an open parenthesis.
8661 Keep template parameters.
8662 Keep any overload information.
8663 Keep keywords like "const".
8664 Remove paren_pointer.
8665 Move is_quoted check from set_flags to here.
8666 Remove #if 0 code from 2000. Ten years is long enough.
8667 (find_method): Before comparing symbol names, canonicalize the string
8668 from the user.
8669 If a specific overload is requested, find it. Otherwise throw an error.
94af9270
KS
8670 (find_method_overload_end): New function.
8671 (set_flags): Remove.
c8d5aac9
L
8672 (decode_compound): Assume that parentheses are matched.
8673 It's a lot easier.
94af9270
KS
8674 * symtab.c (symbol_find_demangled_name): Add DMGL_VERBOSE flag
8675 to cplus_demangle.
8676 * linespec.c (decode_line_1): Keep important keywords like
8677 "const" and "volatile".
8678 * symtab.h (SYMBOL_CPLUS_DEMANGLED_NAME): Remove.
8679 * typeprint.h (c_type_print_args): Add declaration.
8680 * ui-file.c (do_ui_file_obsavestring): New function.
8681 (ui_file_obsavestring): New function.
8682 * ui-file.h (ui_file_obsavestring): Add declaration.
8683 * valops.c (find_overload_match): Resolve the object to
8684 a non-pointer type.
8685 If the object is a data member, search the object for the member
8686 and return with staticp set.
8687 Use SYMBOL_NATURAL_NAME instead of SYMBOL_CPLUS_DEMANGLED_NAME.
8688 Do not attempt to extract a function name from non-function types.
8689 If the extracted function name and the original name are the same,
8690 we don't have a C++ method.
8691
8d95cc3b
PA
8692 From Jan Kratochvil <jan.kratochvil@redhat.com>:
8693 * dwarf2read.c (new_symbol <DW_TAG_enumerator>): Call dwarf2_full_name.
94af9270
KS
8694
8695 * ada-lang.c (ada_lookup_symbol): Remove linkage_name parameters
8696 and arguments from symbol lookups.
8697 * ax-gdb.c (gen_expr): Likewise.
8698 * cp-namespace.c (cp_lookup_symbol_nonlocal, lookup_namespace_scope,
8699 cp_lookup_symbol_namespace, lookup_symbol_file, lookup_nested_type,
8700 lookup_possible_namespace_symbol): Likewise.
8701 * cp-support.c (read_in_psymtabs): Likewise.
8702 * cp-support.h (cp_lookup_symbol_nonlocal): Likewise.
8703 * language.h (la_lookup_symbol_nonlocal): Likewise.
8704 * scm-valprint.c (scm_inferior_print): Likewise.
8705 * solib-darwin.c (darwin_relocate_section_addresses): Likewise.
8706 * solib-svr.c (elf_lookup_lib): Likewise.
8707 * solib.c (show_auto_solib_add): Likewise.
8708 * solist.h (lookup_lib_global, solib_global_lookup): Likewise.
8709 * symmisc.c (maintenance_check_symtabs): Likewise.
8710 * symtab.c (lookup_symbol_in_language, lookup_symbol_aux,
8711 lookup_symbol_aux_local, lookup_symbol_aux_block,
8712 lookup_symbol_from_objfile, lookup_symbol_aux_symtabs,
8713 lookup_symbol_aux_psymtabs,basic_lookup_symbol_nonlocal,
8714 lookup_symbol_static, lookup_symbol_global, symbol_matches_domain,
8715 basic_lookup_transparent_type, find_main_psymtab,
8716 lookup_block_symbol): Likewise.
8717 * symtab.h (basic_lookp_symbol_nonlocal, lookup_symbol_static,
8718 lookup_symbol_global, lookup_symbol_aux_block,
8719 lookup_symbol_partial_symbol, lookup_block_symbol,
8720 lookup_global_symbol, value_maybe_namespace_elt): Likewise.
8721
9cb74f47
PM
87222010-03-09 Pierre Muller <muller@ics.u-strasbg.fr>
8723
8724 * python/python-internal.h: Include symtab.h.
8725
af6b7be1
JB
87262010-03-09 Joel Brobecker <brobecker@adacore.com>
8727 Pierre Muller <muller@ics.u-strasbg.fr>
e13eedd5
PM
8728
8729 * p-lang.c (is_pascal_string_type): Remove unneeded parentheses.
8730 * p-valprint.c (pascal_val_print): Remove undeed block and fix
8731 indentation.
8732
bad56014
TT
87332010-03-08 Tom Tromey <tromey@redhat.com>
8734
8735 * breakpoint.c (breakpoint_1): Add "QUIT".
8736
08105857
PA
87372010-03-08 Daniel Jacobowitz <dan@codesourcery.com>
8738 Pedro Alves <pedro@codesourcery.com>
8739
8740 * solib.c (solib_find): Replace extension if
8741 solib_symbols_extension is set in the target gdbarch.
8742 * arm-symbian-tdep.c (arm_symbian_init_abi): Set
8743 solib_symbols_extension to "sym".
8744 * gdbarch.sh (solib_symbols_extension): New variable.
8745 (pstring): New function.
8746 * gdbarch.h, gdbarch.c: Regenerate.
8747
7c953934
TT
87482010-03-08 Tom Tromey <tromey@redhat.com>
8749
8750 PR cli/9591:
8751 * NEWS: Update.
8752 * utils.c: Include main.h.
8753 (fputs_maybe_filtered): Don't paginate if `batch_flag'.
8754 (defaulted_query): Use default answer if `batch_flag'.
8755 * main.h (batch_flag): Declare.
8756 * main.c (batch_flag): New global.
8757 (captured_main): Remove 'batch'. Update.
8758
bbd2783e
KB
87592010-03-08 Kevin Buettner <kevinb@redhat.com>
8760
8761 From Richard Sandiford, Martin M. Hunt, Corinna Vinschen,
8762 and Kevin Buettner:
8763
8764 * remote-mips.c (rockhopper_ops): New target_ops struct.
8765 (MON_ROCKHOPPER): New mips_monitor_type.
8766 (read_hex_value): New function.
8767 (mips_request): Send 8-byte values with a 'T' packet. Read the
8d95cc3b 8768 packet argument as a string and use read_hex_value to parse it.
bbd2783e
KB
8769 (mips_exit_debug): Wait for response when using MON_ROCKHOPPER.
8770 (rockhopper_open): New function.
8771 (mips_wait): Read the PC, FP and SP fields as strings. Use
8772 read_hex_value to parse them and mips_set_register to commit them.
8773 (mips_set_register): New function.
8774 (mips_fetch_registers): Do not cast register value to "unsigned"
8775 when reading a MON_ROCKHOPPER 't' packet. Use mips_set_register.
8776 (mips_store_registers): Use a 'T' packet to set registers when
8777 using MON_ROCKHOPPER.
8778 (pmon_end_download): Don't run initEther if using MON_ROCKHOPPER
8779 and expect the total to be printed before the entry address.
8780 (_initialize_remote_mips): Initialize and add rockhopper_ops.
8781
566f3d17
KB
87822010-03-08 Kevin Buettner <kevinb@redhat.com>
8783
8784 * remote-mips.c (mips_fetch_word): Add new parameter, `valp'.
8785 Change return value to int. Store value fetched in location
8786 addressed by `val'. Use function's return value as success
8787 or failure indicator. Adjust all callers.
8788
9c8ee2ab 87892010-03-08 Pierre Muller <muller@ics.u-strasbg.fr>
f72d4b77
PM
8790
8791 * p-lang.c (is_pascal_string_type): Check that TYPE arg is non NULL.
8792
7155de5a
HZ
87932010-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
8794 Hui Zhu <teawater@gmail.com>
8795
8796 * record.c (record_open_1): Check tmp_to_stopped_by_watchpoint and
8797 tmp_to_stopped_data_address.
8798 (record_open): Reset tmp_to_stopped_by_watchpoint and
8799 tmp_to_stopped_data_address.
8800 * target.c (init_dummy_target): Add to_stopped_by_watchpoint and
8801 to_stopped_data_address.
8802
580879fc
HZ
88032010-03-08 Hui Zhu <teawater@gmail.com>
8804
8805 * i386-tdep.c (i386_process_record): Initialize regnum.
8806
b0fcb67f
JK
88072010-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
8808
8809 * symfile.c (addr_info_make_relative): New variable sect_name, use it.
8810 Do not warn on ".gnu.liblist" and ".gnu.conflict".
8811
08597104
JB
88122010-03-08 Joel Brobecker <brobecker@adacore.com>
8813
8814 Memory error when reading wrong core file.
8815 * solib-svr4.c (solib_svr4_r_map): catch and print all exception
8816 errors while reading the inferior memory, and return zero if
8817 an exception was raised.
8818
425b824a
MS
88192010-03-07 Michael Snyder <msnyder@vmware.com>
8820
ec6dbf37
MS
8821 * record.c (record_restore): Rename tmpu8 to rectype.
8822
648d0c8b
MS
8823 * i386-tdep.c (i386_record_lea_modrm_addr): Rename local variables
8824 tmpu8, tmpi16, tmpi32, tmpulongest to addr8, addr16, addr32, addr64.
8825
8826 (i386_record_push): Rename local tmpulongest to addr.
8827
8828 (i386_process_record): Rename local tmpulongest to addr.
8829
8830 Rename local variables tmpu16, tmpu32, tmpu64 to addr16, addr32,
8831 addr64.
955db0c0
MS
8832
8833 Rename local variable tmpu8 to opcode8 and regnum.
425b824a 8834
10760264
JB
88352010-03-07 Joel Brobecker <brobecker@adacore.com>
8836
8837 * remote.c (remote_get_ada_task_ptid): New function.
c8d5aac9 8838 (init_remote_ops): Set remote_ops.to_get_ada_task_ptid.
10760264 8839
b3c613f2
CF
88402010-03-06 Christopher Faylor <me+cygwin@cgf.cx>
8841
8842 * windows-nat.c: Reorganize #ifdef __CYGWIN__ considerations into one
8843 block. Define helper macros to reduce ifdefs in code.
8844 (get_module_name): Use cygwin_buf_t for buffer and __PMAX for buffer
8845 size. Call unadorned GetModuleFileNameEx rather than
8846 GetModuleFileNameEx*.
8847 (windows_make_so): Use __PMAX to denote maximum buffer size and
8848 cygwin_buf_t for buffer type. Use GetSystemDirectory{W,A} as
8849 appropriate.
8850 (get_image_name): Use __PMAX to denote maximum buffer size.
8851 (handle_load_dll): Likewise.
8852 (windows_pid_to_exec_file): Likewise.
8853 (windows_create_inferior): Add many accommodations for older Cygwin and
8854 non-Cygwin.
8855 (bad_GetModuleFileNameExW): Control inclusion of this function based on
8856 __USEWIDE conditional.
8857 (bad_GetModuleFileNameExA): Likewise.
8858 (_initialize_loadable): Just use real function names without the dyn_
8859 part since they are defined earlier.
8860
f870a310
TT
88612010-03-05 Corinna Vinschen <vinschen@redhat.com>
8862 Tom Tromey <tromey@redhat.com>
8863
8864 * utils.c (host_char_to_target): Add 'gdbarch' argument.
8865 (parse_escape): Likewise.
8866 * python/py-utils.c (unicode_to_target_string): Update.
8867 (unicode_to_target_python_string): Update.
8868 (target_string_to_unicode): Update.
8869 * printcmd.c (printf_command): Update.
8870 * p-exp.y (yylex): Update.
8871 * objc-exp.y (yylex): Update.
8872 * mi/mi-parse.c: Include charset.h.
8873 (mi_parse_escape): New function.
8874 (mi_parse_argv): Use it.
8875 * jv-exp.y (yylex): Update.
8876 * i386-cygwin-tdep.c (i386_cygwin_auto_wide_charset): New
8877 function.
8878 (i386_cygwin_init_abi): Call set_gdbarch_auto_wide_charset.
8879 * gdbarch.sh (auto_charset, auto_wide_charset): New.
8880 * gdbarch.c: Rebuild.
8881 * gdbarch.h: Rebuild.
8882 * defs.h (parse_escape): Update.
8883 * cli/cli-setshow.c: Include arch-utils.h.
8884 (do_setshow_command): Update.
8885 * cli/cli-cmds.c (echo_command): Update.
8886 * charset.h (target_charset, target_wide_charset): Update.
8887 * charset.c: Include arch-utils.h.
8888 (target_charset_name): Default to "auto".
8889 (target_wide_charset_name): Likewise.
8890 (show_target_charset_name): Handle "auto".
8891 (show_target_wide_charset_name): Likewise.
8892 (be_le_arch): New global.
8893 (set_be_le_names): Add 'gdbarch' argument.
8894 (validate): Likewise. Don't call set_be_le_names.
8895 (set_charset_sfunc, set_host_charset_sfunc)
8896 (set_target_charset_sfunc, set_target_wide_charset_sfunc):
8897 Update.
8898 (target_charset): Add 'gdbarch' argument.
8899 (target_wide_charset): Likewise. Remove 'byte_order' argument.
8900 (auto_target_charset_name): New global.
8901 (default_auto_charset, default_auto_wide_charset): New functions.
8902 (_initialize_charset): Set auto_target_charset_name. Allow "auto"
8903 for target charsets. Copy result of nl_langinfo. Use GetACP if
8904 USE_WIN32API.
8905 * c-lang.c (charset_for_string_type): Add 'gdbarch' argument,
8906 remove 'byte_order' argument. Update.
8907 (classify_type): Likewise.
8908 (c_emit_char): Update.
8909 (c_printchar): Update.
8910 (c_printstr): Update.
8911 (c_get_string): Update.
8912 (evaluate_subexp_c): Update.
8913 * arch-utils.h (default_auto_charset, default_auto_wide_charset):
8914 Declare.
8915 * python/python.c (gdbpy_target_charset): New function.
8916 (gdbpy_target_wide_charset): Likewise.
8917 (GdbMethods): Update.
8918 * NEWS: Update.
8919
4e7386b0
UW
89202010-03-05 Ulrich Weigand <uweigand@de.ibm.com>
8921
8922 * symfile.c (build_section_addr_info_from_objfile): Do not mask
8923 off high address bits.
8924
aab48ede
UW
89252010-03-05 Ulrich Weigand <uweigand@de.ibm.com>
8926
8927 * python/py-lazy-string.c (gdbpy_extract_lazy_string): Extract
8928 address as UnsignedLongLong, not LongLong.
8929
8eeafb51 89302010-03-05 Kevin Buettner <kevinb@redhat.com>
c8d5aac9 8931 Pedro Alves <pedro@codesourcery.com>
8eeafb51
KB
8932
8933 * remote-mips.c (gdbthread.h): Include.
8934 (remote_mips_ptid): Declare.
8935 (mips_error): Only mourn the inferior when inferior_ptid is non-null.
8936 (common_open): Set inferior_ptid, add it as an inferior, and
8937 as a thread too. Delete FIXME comment regarding start_remote().
8938 (mips_close): Invoke generic_mourn_inferior().
8939 (mips_kill): Make sure that target_mourn_inferior is invoked.
8940 (mips_mourn_inferior): Don't invoke generic_mourn_inferior, as
8941 it's now invoked from mips_close().
8942 (mips_load): Don't null out inferior_ptid. Don't call
8943 clear_symtab_users().
8944 (mips_thread_alive, mips_pid_to_str): New functions.
8945 (_initialize_remote_mips): Initialize remote_mips_ptid. Initialize
8946 to_thread_alive and to_pid_to_str operations.
8947
ae411497
TT
89482010-03-04 Tom Tromey <tromey@redhat.com>
8949
8950 * dwarf2read.c (skip_one_die) <DW_FORM_ref_addr>: Use offset size
8951 in DWARF 3 and later.
8952 (read_attribute_value) <DW_FORM_ref_addr>: Likewise.
8953
0e0b460e
KS
89542010-03-04 Keith Seitz <keiths@redhat.com>
8955
8956 * linespec.c (decode_line_1): Update comments for is_quote_enclosed.
8957 If the filename portion of the linespec was quoted, recheck the
8958 remainder for additional quoting.
8959 (locate_first_half): Skip over completer chars, too.
8960
1b93ff13
TT
89612010-03-04 Tom Tromey <tromey@redhat.com>
8962
8963 * printcmd.c (printf_command): Pass dummy argument to
8964 printf_filtered.
8965
fc36e839
DE
89662010-03-04 Doug Evans <dje@google.com>
8967
111f853c
DE
8968 * arm-tdep.c (arm_make_stub_cache): Delete unused locals reg,
8969 unwound_fp.
8970
fc36e839
DE
8971 * arm-tdep.c (arm_stub_unwind_sniffer): Add comment.
8972
c7437ca6
PA
89732010-03-04 Pedro Alves <pedro@codesourcery.com>
8974
8975 * breakpoint.c (update_watchpoint): Create a sentinel location if
8976 the software watchpoint isn't watching any memory.
8977 (breakpoint_address_bits): Skip dummy software watchpoint locations.
8978
58dadb1b
PA
89792010-03-04 Pedro Alves <pedro@codesourcery.com>
8980
8981 * utils.c (fputs_maybe_filtered): Check if there's already a top
8982 level interpreter before dereferencing it. If there isn't one,
8983 don't paginate either.
8984
50e98be4
DJ
89852010-03-04 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
8986
8987 * arm-tdep.c (arm_pc_is_thumb): Add heuristic that tries to get
8988 the state right when single stepping.
8989 (arm_get_next_pc_raw, thumb_get_next_pc_raw): New functions.
8990 Get the next PC along with the instruction state.
8991 (thumb_get_next_pc): Remove.
8992 (arm_get_next_pc): Modified to use arm_get_next_pc_raw.
8993
2e3ceee9
HZ
89942010-03-04 Hui Zhu <teawater@gmail.com>
8995
8996 * i386-tdep.c (i386_process_record): Change "addr" to "tmpu64".
8997
390a8aca
PA
89982010-03-03 Pedro Alves <pedro@codesourcery.com>
8999
9000 * utils.c (fputs_maybe_filtered): Always disable pagination if the
9001 top level interpreter is MI.
9002
9355b391
SS
90032010-03-03 Stan Shebs <stan@codesourcery.com>
9004
9005 * remote.c (remote_download_tracepoint): Iterate over locations.
9006 * tracepoint.c (validate_actionline): Ditto.
9007 (encode_actions): Add location argument.
9008 (trace_dump_command): Check all locations to see if stepping
9009 frame.
390a8aca 9010
8685c86f
L
90112010-03-03 H.J. Lu <hongjiu.lu@intel.com>
9012 Eli Zaretskii <eliz@gnu.org>
9013
9014 * NEWS: Add X86 general purpose registers section.
9015
e8f781e2
TT
90162010-03-03 Tom Tromey <tromey@redhat.com>
9017
9018 PR mi/11098:
9019 * varobj.c (install_new_value): Handle case where new print_value
9020 is NULL.
9021
a0e0ef55
TT
90222010-03-03 Dainis Jonitis <jonitis@gmail.com>
9023
9024 PR gdb/11345:
9025 * printcmd.c (printf_command): Print end of format string using
9026 printf_filtered.
9027
a58d7472
TT
90282010-03-02 Tom Tromey <tromey@redhat.com>
9029
9030 * mi/mi-cmd-break.c (mi_read_next_line): Add missing 'void'.
9031 * defs.h (read_command_lines_1): Add missing 'void'.
9032 * cli/cli-script.c (recurse_read_control_structure): Add missing
9033 'void'.
9034 (read_next_line): Likewise.
9035 (read_command_lines_1): Likewise.
9036
ce50d78b
UW
90372010-03-02 Ulrich Weigand <uweigand@de.ibm.com>
9038
9039 * spu-tdep.c (spu_analyze_prologue): Track instruction to
9040 store backchain as part of prologue.
9041
7e9af34a
DJ
90422010-03-02 Daniel Jacobowitz <dan@codesourcery.com>
9043
9044 * progspace.c (update_address_spaces): Update inferior address spaces
9045 also.
9046
01637564
DE
90472010-03-02 Doug Evans <dje@google.com>
9048
9049 * dwarf2read.c (add_partial_subprogram): Add missing baseaddr to
9050 lowpc,highpc args to addrmap_set_empty.
9051
1ba53b71
L
90522010-03-02 H.J. Lu <hongjiu.lu@intel.com>
9053
9054 * amd64-tdep.c (amd64_byte_names): New.
9055 (amd64_word_names): Likewise.
9056 (amd64_dword_names): Likewise.
9057 (amd64_pseudo_register_name): Likewise.
9058 (amd64_pseudo_register_read): Likewise.
9059 (amd64_pseudo_register_write): Likewise.
9060 (amd64_init_abi): Set num_byte_regs, num_word_regs, num_dword_regs
9061 and num_mmx_regs. Call set_gdbarch_pseudo_register_read,
9062 set_gdbarch_pseudo_register_write and
9063 set_tdesc_pseudo_register_name. Don't call
9064 set_gdbarch_num_pseudo_regs. Don't set mm0_regnum.
9065
9066 * i386-tdep.c (i386_num_mmx_regs): Removed.
9067 (i386_num_pseudo_regs): Likewise.
9068 (i386_byte_names): New.
9069 (i386_word_names): Likewise.
9070 (i386_byte_regnum_p): Likewise.
9071 (i386_word_regnum_p): Likewise.
9072 (i386_mmx_regnum_p): Updated.
9073 (i386_pseudo_register_name): Make it global. Handle byte and
9074 word pseudo-registers.
9075 (i386_pseudo_register_read): Likewise.
9076 (i386_pseudo_register_write): Likewise.
9077 (i386_pseudo_register_type): Handle byte, word and dword
9078 pseudo-registers
9079 (i386_register_reggroup_p): Don't include pseudo
9080 registers, except for MXX, in any register groups. Don't
9081 include pseudo byte, word, dword registers in general_reggroup.
9082 (i386_gdbarch_init): Set num_byte_regs, num_word_regs,
9083 num_dword_regs, al_regnum, ax_regnum and eax_regnum. Put MMX
9084 pseudo-registers after word pseudo-registers. Call
9085 set_gdbarch_num_pseudo_regs after calling gdbarch_init_osabi.
9086
9087 * i386-tdep.h (gdbarch_tdep): Add num_mmx_regs, num_byte_regs,
9088 al_regnum, num_word_regs, ax_regnum, num_dword_regs and
9089 eax_regnum.
9090 (i386_byte_regnum_p): New.
9091 (i386_word_regnum_p): Likewise.
9092 (i386_dword_regnum_p): Likewise.
9093 (i386_pseudo_register_name): Likewise.
9094 (i386_pseudo_register_read): Likewise.
9095 (i386_pseudo_register_write): Likewise.
9096
a6f5ef51
L
90972010-03-01 H.J. Lu <hongjiu.lu@intel.com>
9098
9099 * target-descriptions.c (tdesc_type): Remove
9100 TDESC_TYPE_I386_EFLAGS and TDESC_TYPE_I386_MXCSR.
9101 (tdesc_predefined_types): Likewise.
9102 (tdesc_gdb_type): Likewise. Pass NULL to append_flags_type_flag
9103 if flag name is empty.
9104 (maint_print_c_tdesc_cmd): Handle TDESC_TYPE_FLAGS.
9105
9106 * features/i386/32bit-core.xml: Define i386_eflags.
9107 * features/i386/64bit-core.xml: Likewise.
9108
9109 * features/i386/32bit-sse.xml: Define i386_mxcsr.
9110 * features/i386/64bit-sse.xml: Likewise.
9111
9112 * features/i386/amd64-linux.c: Regenerated.
9113 * features/i386/amd64.c: Likewise.
9114 * features/i386/i386-linux.c: Likewise.
9115 * features/i386/i386.c: Likewise.
9116
f5dff777
DJ
91172010-03-01 Daniel Jacobowitz <dan@codesourcery.com>
9118
9119 * gdbtypes.c (append_composite_type_field_raw): New.
9120 (append_composite_type_field_aligned): Use the new function.
9121 * gdbtypes.h (append_composite_type_field_raw): Declare.
9122 * target-descriptions.c (struct tdesc_type_field): Add start and end.
9123 (struct tdesc_type_flag): New type.
9124 (struct tdesc_type): Add TDESC_TYPE_STRUCT and TDESC_TYPE_FLAGS to
9125 kind. Add size to u.u. Add u.f for flags.
9126 (tdesc_gdb_type): Handle TDESC_TYPE_STRUCT and TDESC_TYPE_FLAGS.
9127 (tdesc_free_type): Likewise.
9128 (tdesc_create_struct, tdesc_set_struct_size, tdesc_create_flags): New.
9129 (tdesc_add_field): Handle TDESC_TYPE_STRUCT.
9130 (tdesc_add_bitfield, tdesc_add_flag): New.
9131 * target-descriptions.h (tdesc_create_struct, tdesc_set_struct_size)
9132 (tdesc_create_flags, tdesc_add_bitfield, tdesc_add_flag): Declare.
9133 * xml-tdesc.c (struct tdesc_parsing_data): Rename current_union to
9134 current_type. Add current_type_size and current_type_is_flags.
9135 (tdesc_start_union): Clear the new fields.
9136 (tdesc_start_struct, tdesc_start_flags): New.
9137 (tdesc_start_field): Handle struct fields, including bitfields.
9138 (field_attributes): Make type optional. Add start and end.
9139 (union_children): Rename to struct_union_children.
9140 (union_attributes): Rename to struct_union_attributes. Add optional
9141 size.
9142 (flags_attributes): New.
9143 (feature_children): Add struct and flags.
9144 * features/gdb-target.dtd: Add flags and struct to features.
9145 Make field type optional. Add field start and end.
9146
90884b2b
L
91472010-03-01 H.J. Lu <hongjiu.lu@intel.com>
9148
9149 * amd64-linux-nat.c (AMD64_LINUX_USER64_CS): New.
9150 (amd64_linux_read_description): Likewise.
9151 (_initialize_amd64_linux_nat): Set to_read_description to
9152 amd64_linux_read_description.
9153
9154 * amd64-linux-tdep.c: Include "features/i386/amd64-linux.c".
9155 (amd64_linux_register_name): Removed.
9156 (amd64_linux_register_type): Likewise.
9157 (amd64_linux_core_read_description): New.
9158 (amd64_linux_init_abi): Set target description to
9159 tdesc_amd64_linux if needed. Support orig_rax in target
9160 description. Don't call set_gdbarch_register_name nor
9161 set_gdbarch_register_type. Call
9162 set_gdbarch_core_read_description.
9163 (_initialize_amd64_linux_tdep): Call
9164 initialize_tdesc_amd64_linux.
9165
9166 * amd64-linux-tdep.h (tdesc_amd64_linux): New.
9167
9168 * amd64-tdep.c: Include "features/i386/amd64.c".
9169 (amd64_register_names): Removed.
9170 (amd64_register_name): Likewise.
9171 (amd64_register_type): Likewise.
9172 (amd64_init_abi): Set num_core_regs and register_names. Set
8d95cc3b 9173 target description to tdesc_amd64 if needed. Don't call
90884b2b
L
9174 set_gdbarch_register_name nor set_gdbarch_register_type.
9175 (_initialize_amd64_tdep): New.
9176
9177 * i386-linux-nat.c (i386_linux_read_description): New.
9178 (_initialize_i386_linux_nat): Set to_read_description to
9179 i386_linux_read_description.
9180
9181 * i386-linux-tdep.c: Include "features/i386/i386-linux.c".
9182 (i386_linux_register_name): Removed.
9183 (i386_linux_core_read_description): New.
9184 (i386_linux_read_description): Likewise.
9185 (i386_linux_init_abi): Don't call set_gdbarch_register_name.
9186 Set target description to tdesc_i386_linux if needed. Support
9187 orig_eax. Set register_reggroup_p. Call
9188 set_gdbarch_core_read_description.
9189 (_initialize_i386_linux_tdep): Call initialize_tdesc_i386_linux.
9190
9191 * i386-linux-tdep.h (tdesc_i386_linux): New.
9192
9193 * i386-nto-tdep.c (i386nto_regset_id): Replace I386_NUM_FREGS
9194 with I387_NUM_REGS.
9195
9196 * i386-tdep.c: Include "features/i386/i386.c".
9197 (i386_register_names): Make it const.
9198 (i386_mmx_names): Likewise.
9199 (i386_num_register_names): Removed.
9200 (i386_register_name): Likewise.
9201 (i386_eflags_type): Likewise.
9202 (i386_mxcsr_type): Likewise.
9203 (i386_sse_type): Likewise.
9204 (i386_register_type): Likewise.
9205 (i387_ext_type): Call tdesc_find_type instead of arch_float_type.
9206 (i386_pseudo_register_name): New.
9207 (i386_pseudo_register_type): Likewise.
9208 (i386_mmx_type): Make it static.
9209 (i386_gdbarch_init): Check arch. Replace I386_NUM_FREGS with
9210 I387_NUM_REGS. Set num_core_regs and register_names. Don't
9211 call set_gdbarch_register_name nor set_gdbarch_register_type.
9212 Set register_reggroup_p. Set target description to tdesc_i386
9213 if needed. Call set_tdesc_pseudo_register_type,
9214 set_tdesc_pseudo_register_name and tdesc_use_registers.
9215 (_initialize_i386_tdep): Call initialize_tdesc_i386.
9216 initialize_tdesc_x86_64.
9217
9218 * i386-tdep.h (gdbarch_tdep): Remove i386_eflags_type,
9219 i386_mxcsr_type and i386_sse_type. Add num_core_regs,
9220 register_names, tdesc and register_reggroup_p.
9221 (I386_NUM_FREGS): Removed.
9222 (i386_eflags_type): Likewise.
9223 (i386_mxcsr_type): Likewise.
9224 (i386_mmx_type): Likewise.
9225 (i386_sse_type): Likewise.
9226 (i386_register_name): Likewise.
9227 (i386_regnum): Add I386_MXCSR_REGNUM.
9228 (I386_SSE_NUM_REGS): Defined with I386_MXCSR_REGNUM.
9229
9230 * i387-tdep.h (I387_NUM_REGS): New.
9231
9232 * regformats/i386/i386-linux.dat: Generated.
9233 * regformats/i386/i386.dat: Likewise.
9234 * regformats/i386/amd64-linux.dat: Likewise.
9235 * regformats/i386/amd64.dat: Likewise.
9236
9237 * regformats/reg-i386-linux.dat: Removed.
9238 * regformats/reg-i386.dat: Likewise.
9239 * regformats/reg-x86-64-linux.dat: Likewise.
9240 * regformats/reg-x86-64.dat: Likewise.
9241
d0d0ab16
CV
92422010-03-01 Corinna Vinschen <vinschen@redhat.com>
9243
9244 * remote-fileio.c (remote_fileio_func_rename): Use Cygwin 1.7
9245 cygwin_conv_path API rather than the deprecated
9246 cygwin_conv_to_full_posix_path.
9247 * windows-nat.c:
9248 (GetModuleFileNameExA): Undefine for Cygwin.
9249 (GetModuleFileNameExW): Define for Cygwin.
9250 (get_module_name): Change size of pathbuf to PATH_MAX for Cygwin.
9251 Call GetModuleFileNameExW and convert path to POSIX using
9252 cygwin_conv_path.
9253 (windows_make_so): Always define p. Drop unused variable m.
9254 Don't use Win32 functions to check file existance, rather use
9255 access on Cygwin. Fetch system directory using GetSystemDirectoryW.
9256 Use canonicalize_file_name to get full path.
9257 (get_image_name): Use wcstombs, rather than WideCharToMultiByte
9258 to convert Unicode pathname to multibyte on Cygwin. Otherwise,
9259 use correct target buffer size in call to WideCharToMultiByte.
9260 (handle_load_dll): Change size of dll_buf to PATH_MAX for Cygwin.
9261 (windows_pid_to_exec_file): Change size of path to PATH_MAX for Cygwin.
9262 (windows_create_inferior): Convert all paths and arguments to wchar_t
9263 and use CreateProcessW on Cygwin.
9264 (_initialize_windows_nat): Disable DOS-style path warning on Cygwin.
9265 (bad_GetModuleFileNameExA): Undefine for Cygwin.
9266 (bad_GetModuleFileNameExW): Define for Cygwin.
9267 (_initialize_loadable): Load GetModuleFileNameExW into
9268 dyn_GetModuleFileNameExW on Cygwin. Don't load ANSI function on Cygwin.
9269
dc00d89f
PM
92702010-02-28 Phil Muldoon <pmuldoon@redhat.com>
9271
9272 PR python/11036
9273 * python/py-frame.c (frapy_read_var): Add block argument and logic
9274 to cope with user provided blocks.
9275
0e095b7e
JK
92762010-02-28 Jan Kratochvil <jan.kratochvil@redhat.com>
9277
9278 * infcall.c (call_function_by_hand): Remove gdb_assert on sp and old_sp.
9279 New comment.
9280
2f9e05b4
CV
92812010-02-28 Corinna Vinschen <vinschen@redhat.com>
9282
9283 * Makefile.in (SUBDIR_MI_OBS): Move mi-common.o from here...
9284 (COMMON_OBS): ... to here since it's used unconditionally.
9285 (SUBDIR_MI_SRCS): Move mi/mi-common.c from here...
9286 (SFILES): To here.
9287
eb195664
DD
92882010-02-26 David Daney <ddaney@caviumnetworks.com>
9289
9290 * mips-linux-tdep.c: Update struct sigframe comments.
9291 (SIGFRAME_CODE_OFFSET): Delete macro.
9292 (mips_linux_o32_sigframe_init): Calculate sigcontext_base using
9293 this_frame's sp.
9294 (mips_linux_n32n64_sigframe_init): Same.
9295
97b0f3e2
KB
92962010-02-26 Kevin Buettner <kevinb@redhat.com>
9297
9298 * remote-mips.c (mips_load): Don't use pseudo-register when
9299 invalidating regcache.
9300
4069ebbe
DJ
93012010-02-26 Daniel Jacobowitz <dan@codesourcery.com>
9302
9303 * arm-tdep.c (thumb_get_next_pc): Correct conditional branch opcode.
9304
05071a4d
PA
93052010-02-26 Pedro Alves <pedro@codesourcery.com>
9306
9307 * NEWS: Add "New targets" section, and mention ARM Symbian
9308 support.
9309
6063c216
UW
93102010-02-26 Ulrich Weigand <uweigand@de.ibm.com>
9311
9312 * dwarf2loc.c (struct piece_closure): Remove ARCH member,
9313 add ADDR_SIZE member.
9314 (allocate_piece_closure): Update.
9315 (copy_pieced_value_closure): Likewise.
9316 (dwarf2_evaluate_loc_desc): Likewise.
9317 (read_pieced_value): Use DWARF address size instead of
9318 GDB's gdbarch_addr_bit as size of values on the DWARF stack.
9319
5107b149 93202010-02-26 Phil Muldoon <pmuldoon@redhat.com>
c8d5aac9 9321 Tom Tromey <tromey@redhat.com>
5107b149
PM
9322
9323 * python/py-type.c (typy_lookup_typename): Add in block argument.
9324 If provided restrict lookup to specified blocks.
9325 (gdbpy_lookup_type): Likewise.
9326 (typy_lookup_type): Likewise.
9327
78664fa3 93282010-02-25 Daniel Jacobowitz <dan@codesourcery.com>
8d95cc3b 9329
78664fa3
PA
9330 Symbian config
9331
9332 gdb/
9333 * arm-symbian-tdep.c: New.
9334 * configure.tgt (arm*-*-symbianelf*): New target.
9335 (*-*-symbianelf*): New OS.
9336 * osabi.c (gdb_osabi_names): Add Symbian.
9337 * defs.h (gdb_osabi): Add GDB_OSABI_SYMBIAN.
9338 * Makefile.in (ALL_TARGET_OBJS): Add arm-symbian-tdep.o.
9339 (ALLDEPFILES): Add arm-symbian-tdep.c.
9340
eb73e134
DJ
93412010-02-25 Daniel Jacobowitz <dan@codesourcery.com>
9342
9343 * symfile.c (find_lowest_section): Include SEC_ALLOC sections.
9344
46ef47e5
PA
93452010-02-24 Pedro Alves <pedro@codesourcery.com>
9346
9347 * mi/mi-main.c (mi_cmd_execute): Fix typo.
9348
f3e9a817 93492010-02-24 Phil Muldoon <pmuldoon@redhat.com>
8d95cc3b 9350 Tom Tromey <tromey@redhat.com>
f3e9a817
PM
9351 Thiago Jung Bauermann <bauerman@br.ibm.com>
9352
9353 * python/python.c (_initialize_python): Call
9354 gdbpy_initialize_symtabs, gdbpy_initialize_symbols and
9355 gdbpy_initialize_blocks.
9356 * python/python-internal.h: Declare struct symbol, block and
9357 symtab_and_line. Declare block_object_type and
9358 symbol_object_type
9359 (gdbpy_lookup_symbol gdbpy_block_for_pc)
9360 (symtab_and_line_to_sal_object, symtab_to_symtab_object)
9361 (symbol_to_symbol_object, block_to_block_object)
9362 (gdbpy_initialize_symtabs,gdbpy_initialize_symbols)
9363 (gdbpy_initialize_blocks ): Declare.
9364 * python/py-frame.c (frapy_block, frapy_function, frapy_find_sal)
9365 (frapy_select): Add methods.
9366 (frapy_read_var): Add symbol branch.
9367 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-symbol, py-symtab,
9368 py-block.
9369 (SUBDIR_PYTHON_SRCS): Likewise.
9370 (py-symbol.o): New rule.
9371 (py-symtab.o): Likewise.
9372 (py-block.o): Likewise.
9373 * python/py-symbol.c: New file.
9374 * python/py-symtab.c: Likewise.
9375 * python/py-block.c: Likewise.
9376
24291992
PA
93772010-02-24 Pedro Alves <pedro@codesourcery.com>
9378
9379 PR gdb/11321
9380
9381 * inferior.h (prepare_for_detach): Declare.
9382 (struct inferior) <detaching>: New field.
9383 * infrun.c (prepare_for_detach): New.
9384 (handle_inferior_event) <random signal>: Don't stop if detaching.
9385 * target.c (target_detach): Call prepare_for_detach.
9386
fc1cf338
PA
93872010-02-24 Pedro Alves <pedro@codesourcery.com>
9388
9389 Per-process displaced stepping queue.
9390
9391 * infrun.c (displaced_step_ptid, displaced_step_request_queue)
9392 (displaced_step_gdbarch, displaced_step_closure,
9393 (displaced_step_original, displaced_step_copy): Move globals to
9394 this...
9395 (struct displaced_step_inferior_state): ... new structure.
9396 (displaced_step_inferior_states): New global.
9397 (get_displaced_stepping_state, add_displaced_stepping_state)
9398 (remove_displaced_stepping_state, infrun_inferior_exit): New
9399 functions.
9400 (displaced_step_clear): Add displaced_step_inferior_state
9401 parameter, and adjust to handle it.
9402 (displaced_step_clear_cleanup): Parameter is now a
9403 displaced_step_inferior_state. Adjust.
9404 (displaced_step_prepare): Adjust.
9405 (displaced_step_fixup, displaced_step_fixup)
9406 (infrun_thread_ptid_changed, resume): Adjust.
9407 (init_wait_for_inferior): Don't call displaced_step_clear.
9408 (infrun_thread_stop_requested): Rewrite.
9409 (_initialize_infrun): Install infrun_inferior_exit as
9410 inferior_exit observer.
9411
0723dbf5
PA
94122010-02-24 Pedro Alves <pedro@codesourcery.com>
9413
9414 * inferior.h (ptid_match): Declare.
9415 * infrun.c (ptid_match): New.
9416 * remote.c (queued_stop_reply): Rewrite and use ptid_match.
9417 (handle_notification): Add debug output.
9418 * linux-nat.c (ptid_match): Delete.
9419
09de9781
DM
94202010-02-24 David S. Miller <davem@davemloft.net>
9421
9422 * gdb_ptrace.h (PT_SYSCALL): If PTRACE_SYSCALL is available, use it.
9423 * syscalls/sparc-linux.xml: New.
9424 * syscalls/sparc64-linux.xml: New.
9425 * Makefile.in (XML_SYSCALL_FILES): Add new syscall XML files.
9426 * sparc-linux-tdep.c (XML_SYSCALL_FILENAME_SPARC32): Define.
9427 (sparc32_linux_get_syscall_number): New function.
9428 (sparc32_linux_init_abi): Set syscall XML file name and hook up
9429 syscall number fetcher.
9430 * sparc64-linux-tdep.c (XML_SYSCALL_FILENAME_SPARC64): Define.
9431 (sparc64_linux_get_syscall_number): New function.
9432 (sparc64_linux_init_abi): Set syscall XML file name and hook up
9433 syscall number fetcher.
9434
a79b8f6e
VP
94352010-02-24 Vladimir Prus <vladimir@codesourcery.com>
9436
9437 Multiexec MI
9438
9439 * breakpoint.c (clear_syscall_counts): Take struct inferior*.
9440 * inferior.c (add_inferior_silent): Notify inferior_added
9441 observer.
9442 (delete_inferior_1): Notify inferior_removed observer.
9443 (exit_inferior_1): Pass inferior, not pid, to observer.
9444 (inferior_appeared): Likewise.
9445 (add_inferior_with_spaces): New.
9446 (add_inferior_command): Use the above.
9447 * inferior.h (delete_inferior_1, add_inferior_with_spaces):
9448 Declare.
9449
9450 * inflow.c (inflow_inferior_exit): Likewise.
9451 * jit.c (jit_inferior_exit_hook): Likewise.
9452
9453 * mi/mi-cmds.c (mi_cmds): Register add-inferior and
9454 remove-inferior.
9455 * mi/mi-cmds.h (mi_cmd_add_inferior, mi_cmd_remove_inferior): New.
9456 * mi/mi-interp.c (mi_inferior_added, mi_inferior_removed): New.
9457 (report_initial_inferior): New.
9458 (mi_inferior_removed): Register the above. Make sure
9459 inferior_added observer is called on the first inferior.
9460 (mi_new_thread, mi_thread_exit): Thread group is now identified by
9461 inferior number, not pid.
9462 (mi_solib_loaded, mi_solib_unloaded): Report which inferiors are
9463 affected.
9464 * mi/mi-main.c (current_context): New.
9465 (proceed_thread_callback): Use typed closure.
9466 Proceed everything if pid is 0. Most implementation split into
9467 (proceed_thread): ... this.
9468 (run_one_inferior): New.
9469 (mi_cmd_exec_continue, mi_cmd_exec_interrupt, mi_cmd_exec_run):
9470 Adjust for multiexec behaviour.
9471 (mi_cmd_add_inferior, mi_cmd_remove_inferior): New.
9472 (mi_cmd_execute): Handle the 'thread-group' option here.
9473 Do some extra checks.
9474 * mi-parse.c (mi_parse): Handle the --all and --thread-group
9475 options.
9476 * mi-parse.h (struct mi_parse): New fields all and thread_group.
9477
115d30f9
VP
94782010-02-24 Vladimir Prus <vladimir@codesourcery.com>
9479
9480 Make -exec-run a proper MI commands.
9481
9482 * mi/mi-cmds.h (mi_cmd_exec_run): Declare.
9483 * mi/mi-cmds.c (mi_cmds): Adjust.
9484 * mi/mi-main.c (mi_cmd_exec_run): New.
9485
06cd862c
PA
94862010-02-24 Pedro Alves <pedro@codesourcery.com>
9487 Stan Shebs <stan@codesourcery.com>
9488
9489 * tracepoint.h (set_traceframe_number)
9490 (cleanup_restore_current_traceframe): Declare.
9491 * tracepoint.c (set_traceframe_number): New.
9492 (struct current_traceframe_cleanup): New.
9493 (do_restore_current_traceframe_cleanup)
9494 (restore_current_traceframe_cleanup_dtor)
9495 (make_cleanup_restore_current_traceframe): New.
9496 * infrun.c: Include tracepoint.h.
9497 (fetch_inferior_event): Switch out and in of tfind mode.
9498
ab92d69b
PA
94992010-02-24 Pedro Alves <pedro@codesourcery.com>
9500
9501 * breakpoint.c (breakpoint_init_inferior): Also delete
9502 bp_shlib_event breakpoints.
9503 * solib-frv.c (enable_break): Remove call to
9504 remove_solib_event_breakpoints.
9505 * solib-svr4.c (enable_break): Ditto.
9506 * solib-darwin.c (darwin_solib_create_inferior_hook): Ditto.
9507 * solib-pa64.c (pa64_solib_create_inferior_hook): Ditto.
9508 * solib-som.c (som_solib_create_inferior_hook): Ditto.
9509 * solib-spu.c (spu_enable_break): Ditto.
9510
e707a91d
PA
95112010-02-23 Harald Koenig <H.Koenig@science-computing.de>
9512
9513 * c-exp.y (token_and_value): s/union YYSTYPE/YYSTYPE.
9514
cfce2ea2
PA
95152010-02-23 Harald Koenig <H.Koenig@science-computing.de>
9516
9517 * varobj.c (varobj_update): Avoid non-constants in initializers.
9518
05566b3b
TT
95192010-02-23 Tom Tromey <tromey@redhat.com>
9520
9521 * dwarf2loc.c (read_pieced_value) <DWARF_VALUE_STACK>: Correctly
9522 handle big-endian values.
9523 (dwarf2_evaluate_loc_desc) <DWARF_VALUE_STACK>: Likewise.
9524
85d721b8
PA
95252010-02-22 Pedro Alves <pedro@codesourcery.com>
9526
9527 PR9605
9528
9529 gdb/
9530 * breakpoint.c (insert_bp_location): If inserting the read
9531 watchpoint failed, fallback to an access watchpoint.
9532 (bpstat_check_watchpoint): Stop for read watchpoint triggers even
9533 if the value changed, if not watching the same memory for writes.
9534 (watchpoint_locations_match): Add comment.
9535 (update_global_location_list): Copy the location's watchpoint type.
9536 * i386-nat.c (i386_length_and_rw_bits): It's an internal error to
9537 handle read watchpoints here.
9538 (i386_insert_watchpoint): Read watchpoints aren't supported.
9539 * remote.c (remote_insert_watchpoint): Return 1 for unsupported
9540 packets.
9541 * target.h (target_insert_watchpoint): Update description.
9542
48ea67a7
TT
95432010-02-19 Tom Tromey <tromey@redhat.com>
9544
9545 * p-typeprint.c (pascal_type_print_varspec_prefix): Update.
9546 * m2-typeprint.c (m2_print_type): Update.
9547 * gdbtypes.c (recursive_dump_type): Update.
9548 (copy_type_recursive): Update.
9549 * c-typeprint.c (c_type_print_varspec_prefix): Update.
9550 (c_type_print_base): Update.
9551 * gdbtypes.h (TYPE_CODE_TEMPLATE, TYPE_CODE_TEMPLATE_ARG):
9552 Remove.
9553 (struct cplus_struct_type) <ntemplate_args>: Remove.
9554 <struct template_arg>: Remove.
9555 <is_dynamic>: Move earlier.
9556 (TYPE_TEMPLATE_ARGS): Remove.
9557 (TYPE_NTEMPLATE_ARGS): Remove.
9558 (TYPE_TEMPLATE_ARG): Remove.
9559
48e32051
TT
95602010-02-19 Tom Tromey <tromey@redhat.com>
9561
9562 PR c++/8693, PR c++/9496:
9563 * cp-namespace.c (cp_lookup_nested_type): Handle TYPE_CODE_UNION.
9564 * c-exp.y (lex_one_token): Rename from yylex. Don't call
9565 write_dollar_variable. Don't try to classify NAME tokens.
9566 (token_and_value): New type.
9567 (token_fifo, popping, name_obstack): New globals.
9568 (classify_name): New function.
9569 (classify_inner_name): Likewise.
9570 (yylex): Likewise.
9571 (VARIABLE): Now has type sval.
9572 (exp : VARIABLE): Call write_dollar_variable.
9573 (qualified_name): Use TYPENAME, not typebase. Add production for
9574 multiple "::" instances.
9575 (variable): Use name_not_typename.
9576 (qualified_type): Remove.
9577 (typebase): Update.
9578
672d9c23
JK
95792010-02-19 Jan Kratochvil <jan.kratochvil@redhat.com>
9580
9581 * symfile.c (addr_info_make_relative): Extend comment. Move SECT to
9582 a more inner block. Initialize ADDR by LOWER_OFFSET only if it was
9583 found by bfd_get_section_by_name.
9584 * symfile.h (struct section_addr_info) <sectindex>: New comment.
9585
bfbf3774
JB
95862010-02-19 Joel Brobecker <brobecker@adacore.com>
9587
9588 * NEWS: Add new "[...] since 7.1" section. Rename the "[...] since
9589 7.0 section" into "Changes in 7.1".
9590
6756b09b 95912010-02-19 Joel Brobecker <brobecker@adacore.com>
9592
9593 GDB 7.1 branch created (branch timestamp: 2010-02-18 20:00 UTC)
9594 * version.in: Bump version to 7.1.50.20100219-cvs.
9595
202b96c1
PA
95962010-02-18 Harald Koenig <H.Koenig@science-computing.de>
9597
9598 * mi/mi-main.c (mi_cmd_exec_jump): Drop unneeded `return'.
9599 * symfile.c (symfile_map_offsets_to_segments): Fix assertion.
9600
de2e5182
TT
96012010-02-17 Tom Tromey <tromey@redhat.com>
9602
9603 * NEWS: Add Python API Improvements section.
9604
7280022e
DJ
96052010-02-18 Daniel Jacobowitz <dan@codesourcery.com>
9606
9607 * NEWS: Correct typo.
9608
6f451e5e
TT
96092010-02-17 Tom Tromey <tromey@redhat.com>
9610
9611 * objfiles.c (gdb_bfd_ref): Handle abfd==NULL.
9612
012836ea
JK
96132010-02-17 Jan Kratochvil <jan.kratochvil@redhat.com>
9614
9615 * symfile.c (build_section_addr_info_from_objfile): Include sections
9616 only if they are SEC_ALLOC or SEC_LOAD.
9617
d182d057
L
96182010-02-17 H.J. Lu <hongjiu.lu@intel.com>
9619
9620 PR shlibs/11293
9621 * solib-svr4.c (enable_break): Check size of CORE_ADDR instead
9622 of ULONGEST for address size.
9623
4eef138c
TT
96242010-02-17 Tom Tromey <tromey@redhat.com>
9625
9626 * NEWS: Add C++ improvements section.
9627
548a926a
UW
96282010-02-17 Ulrich Weigand <uweigand@de.ibm.com>
9629
9630 * python/python-internal.h [!WITH_THREAD] (PyGILState_Release,
9631 PyThreadState_Swap): Avoid "statement with no effect" warning.
9632
ad3a0e5b
JK
96332010-02-17 Jan Kratochvil <jan.kratochvil@redhat.com>
9634
9635 * solib-svr4.c (enable_break <target_auxv_search>): New variable
9636 addr_bit. Adjust LOAD_ADDR sign for cross-arch inferiors.
9637
243e2c5d 96382010-02-17 Tristan Gingold <gingold@adacore.com>
b2319725 9639 Petr Hluzin <petr.hluzin@gmail.com>
243e2c5d
TG
9640
9641 * avr-tdep.c (avr_scan_prologue): Convert an if statement to a
9642 gdb_assert. Fix info->size for SIG prologue.
9643
275f2e57
DJ
96442010-02-16 Daniel Jacobowitz <dan@codesourcery.com>
9645
9646 * infcmd.c (show_inferior_tty_command): Check for NULL.
9647 Correct output message.
9648
791dfb64
DJ
96492010-02-16 Daniel Jacobowitz <dan@codesourcery.com>
9650
9651 * linespec.c (decode_line_1): Handle FILE:FUNCTION even if
9652 FUNCTION contains parentheses. Improve removal of a trailing
9653 single quote.
9654
14d1346b
DJ
96552010-02-16 Daniel Jacobowitz <dan@codesourcery.com>
9656
9657 * gcore.c (do_bfd_delete_cleanup): New function.
9658 (gcore_command): Use it. Discard the cleanup after success.
9659 (gcore_copy_callback): Delete dead code.
9660
e76ab67f
DJ
96612010-02-16 Daniel Jacobowitz <dan@codesourcery.com>
9662
9663 * symfile.c (addr_info_make_relative): Always use
9664 find_lowest_section.
9665
71dee663
SW
96662010-02-16 Sami Wagiaalla <swagiaal@redhat.com>
9667
9668 * NEWS: Added entry for namespace fixes.
9669
a9854bd5
TT
96702010-02-15 Tom Tromey <tromey@redhat.com>
9671
9672 * dwarf2read.c (guess_structure_name): Allocate name on the
9673 objfile obstack.
9674
fd9e29b5
TT
96752010-02-15 Tom Tromey <tromey@redhat.com>
9676
9677 * c-typeprint.c (c_type_print_base): Reverse order of test.
9678
4e1fc9c9
JK
96792010-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
9680
9681 * solib-svr4.c (LM_ADDR_CHECK): New variable minpagesize. Optionally
9682 initialize it from ELF BFD. Extend the prelink condition by it.
9683
74164c56
JK
96842010-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
9685
9686 * defs.h (parse_pid_to_attach): New.
9687 * utils.c (parse_pid_to_attach): New.
9688 * darwin-nat.c (darwin_attach): Replace ARGS parsing by parse_pid.
9689 * gnu-nat.c (gnu_attach): Likewise.
9690 * nto-procfs.c (procfs_attach): Likewise.
9691 * procfs.c (procfs_attach): Likewise.
9692 * windows-nat.c (windows_attach): Likewise.
9693 * inf-ptrace.c (inf_ptrace_attach): Likewise. Remove variable dummy.
9694 * inf-ttrace.c (inf_ttrace_attach): Likewise.
9695 * remote.c (extended_remote_attach_1): Likewise. New comment on getpid
9696 check.
9697
bf6adea8
MM
96982010-02-14 Masaki Muranaka <monaka@monami-software.com>
9699
9700 * MAINTAINERS: Add myself for write after approval privileges.
9701
28f34a8f
JK
97022010-02-13 Jan Kratochvil <jan.kratochvil@redhat.com>
9703
9704 * solib-svr4.c: (LM_ADDR_CHECK): Move variable align to a more inner
9705 block.
9706
701ed6dc
JK
97072010-02-13 Jan Kratochvil <jan.kratochvil@redhat.com>
9708
9709 * solib-svr4.c: (LM_ADDR_CHECK): Print successful prelink adjustment
9710 only if INFO_VERBOSE.
9711
e5829bee
MS
97122010-02-12 Tomas Holmberg <th@virtutech.com>
9713
9714 * mi/mi-main.c: Added the --reverse flag to the following MI
9715 commands: exec-continue, exec-finish, exec-next, exec-step,
9716 exec-next-instruction, exec-step-instruction. This is to
9717 support reverse execution over the MI interface to gdb.
9718
081dfbf7
PA
97192010-02-12 Pedro Alves <pedro@codesourcery.com>
9720
9721 * tracepoint.c (_initialize_tracepoint): Specify that the address
9722 range of `tfind outsize' is exclusive, and that the address range
9723 of `tfind range' is inclusive, in the commands' help strings.
9724
ecc13e53
JB
97252010-02-12 Joel Brobecker <brobecker@adacore.com>
9726
9727 Spurious "dll not found" error messages on x64-windows.
9728 * windows-nat.c: Add include of complaints.h.
9729 (handle_unload_dll): Change dll-not-found error into a complaint.
9730
15c3d785
PA
97312010-02-12 Pedro Alves <pedro@codesourcery.com>
9732
9733 * breakpoint.c (allocate_bp_location): Use bp_loc_other for
9734 bp_tracepoint and bp_fast_tracepoint, not
9735 bp_loc_software_breakpoint.
9736 (update_global_location_list): Tracepoints are never duplicates of
9737 anything.
9738
fd9b8c24
PA
97392010-02-12 Pedro Alves <pedro@codesourcery.com>
9740
9741 * breakpoint.c (break_command_really): Change return type to int.
9742 Return false if no breakpoint was created, true otherwise.
9743 (trace_command): Don't set the tracepoint count if no tracepoint
9744 was created.
9745 (ftrace_command): Ditto.
9746 (create_tracepoint_from_upload): Bail out if the tracepoint wasn't
9747 created in the breakpoints table.
9748
5c0d192f
JK
97492010-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
9750 Ulrich Weigand <uweigand@de.ibm.com>
9751
9752 * solib-svr4.c (LM_ADDR_CHECK): New comment on PPC-aware condition.
9753
5d5b640e
PA
97542010-02-11 Pedro Alves <pedro@codesourcery.com>
9755
9756 * ax-gdb.c (gen_exp_binop_rest) [BINOP_SUBSCRIPT]: Error out if
9757 the offset value isn't of integral type.
9758
e5a0a904
JK
97592010-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
9760
9761 * breakpoint.c (delete_breakpoint) <bpt->related_breakpoint != NULL>:
9762 New.
9763
be636754
PA
97642010-02-11 Pedro Alves <pedro@codesourcery.com>
9765
9766 * ax-gdb.c (gen_exp_binop_rest) [BINOP_SUBSCRIPT]: Error out on
9767 non-subscriptable types.
9768 * valarith.c (binop_types_user_defined_p): New, abstracted out
9769 from ...
9770 (binop_user_defined_p): ... this.
9771 * value.h (binop_types_user_defined_p): Declare.
9772
10ef8d6a
PA
97732010-02-11 Pedro Alves <pedro@codesourcery.com>
9774
9775 * tracepoint.c (tfile_open): Remove spurious discard_cleanups.
9776 Merge uploaded TSVs before merging uploaded tracepoints.
9777
b1028c8e
PA
97782010-02-11 Pedro Alves <pedro@codesourcery.com>
9779
9780 * ax-gdb.c (gen_deref): Don't allow dereferencing void pointers.
9781
7a93fb82 97822010-02-11 Vladimir Prus <vladimir@codesourcery.com>
84d90c10 9783
7a93fb82
VP
9784 * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Add extra
9785 whitespace character after a dot in comment.
9786 (mi_cmd_stack_list_arguments, mi_cmd_stack_list_variables):
9787 Likewise.
9788 (list_args_or_locals): For the 'all' (that is
9789 -stack-list-variables) case, always output list of tuples.
9790 Output 'arg' field if variable is argument.
84d90c10 9791
92981e24
TT
97922010-02-10 Tom Tromey <tromey@redhat.com>
9793
9794 * parser-defs.h (parser_debug): Declare.
9795 * parse.c (_initialize_parse): Install "debug parser" set/show
9796 command.
9797 (parser_debug): New global.
9798 (show_parserdebug): New function.
9799 * c-exp.y (c_parse): Set yydebug.
9800
9fd3625f
L
98012010-02-10 H.J. Lu <hongjiu.lu@intel.com>
9802
9803 * target-descriptions.c (tdesc_type): Add TDESC_TYPE_I387_EXT,
9804 TDESC_TYPE_I386_EFLAGS and TDESC_TYPE_I386_MXCSR.
9805 (tdesc_predefined_types): Add i387_ext, i386_eflags and
9806 i386_mxcsr.
9807 (tdesc_find_type): New.
9808 (tdesc_gdb_type): Use tdesc_find_type. Handle TDESC_TYPE_I387_EXT,
9809 TDESC_TYPE_I386_EFLAGS and TDESC_TYPE_I386_MXCSR.
9810
9811 * target-descriptions.h (tdesc_find_type): New.
9812
2fe842e5
MS
98132010-02-10 Michael Snyder <msnyder@vmware.com>
9814
9815 * gdb-gdb.py: Comment fix.
9816
f18b4cab
TG
98172010-02-09 Tristan Gingold <gingold@adacore.com>
9818
9819 * machoread.c (macho_symfile_relocate): New function.
9820 (macho_sym_fns): Use macho_symfile_relocate instead of
9821 default_symfile_relocate.
9822 (macho_oso_data): New type.
9823 (current_oso): New variable.
9824 (macho_add_oso_symfile): Do not compute section_addr_info, but
9825 instead set vma of sections.
9826 Do not set SYMFILE_VERBOSE to call symbol_file_add_from_bfd.
9827 Set and clear current_oso.
9828
31dbc1c5
JB
98292010-02-09 Joel Brobecker <brobecker@adacore.com>
9830
9831 Wrong type description for tagged type parameter.
9832 * ada-lang.c (ada_evaluate_subexp) [OP_VAR_VALUE]: When noside is
9833 EVAL_AVOID_SIDE_EFFECTS, also handle the case when type is a
9834 reference to a tagged type.
9835
399f313b
TG
98362010-02-09 Tristan Gingold <gingold@adacore.com>
9837
9838 * objfiles.c (objfile_separate_debug_iterate): Do not iterate on
9839 brothers of the parent.
9840
714f19d5
TT
98412010-02-08 Tom Tromey <tromey@redhat.com>
9842
9843 PR c++/8017:
9844 * value.h: Update.
9845 * valops.c (search_struct_field): Make 'name' const.
9846 (search_struct_method): Likewise.
9847 (find_method_list): Make 'method' const.
9848 (value_struct_elt): Make 'name' and 'err' const.
9849 (value_find_oload_method_list): Make 'method' const.
9850 (find_overload_match): Make 'name' const.
9851 * eval.c (evaluate_subexp_standard): New locals function,
9852 function_name.
9853 <OP_FUNCALL>: Handle OP_SCOPE specially.
9854
de0a0249
UW
98552010-02-08 Ulrich Weigand <uweigand@de.ibm.com>
9856
9857 * infrun.c (handle_inferior_event): Do not look up regcache
9858 for exited processes.
9859
8d95cc3b 98602010-02-08 Chris Moller <moller@mollerware.com>
83b10087
CM
9861
9862 PR gdb/10728
9863 * valarith.c (value_ptrdiff): Added a test for a zero type length,
8d95cc3b 9864 warn if found, and assume length = 1.
83b10087 9865
99903ae3
CM
98662010-02-08 Chris Moller <cmoller@redhat.com>
9867
9868 PR gdb/9067
9869 * cp-valprint.c (cp_print_value_fields) Fix use of obstacks.
6036c742 9870 (cp_print_static_field) Fix use of obstacks.
8d95cc3b 9871
e3e9f5a2
PA
98722010-02-08 Pedro Alves <pedro@codesourcery.com>
9873
9874 * linux-nat.c (linux_nat_resume): In non-stop, also only tag
9875 resumed LWPs as resumed.
9876 (linux_nat_wait_1): If there's no resumed LWP in the set of LWPs
9877 we're waiting for, bail out with TARGET_WAITKIND_IGNORE, instead
9878 of throwing an internal error. If an LWP of a process we're not
9879 waiting for reports a signal, don't force collecting a SIGSTOP,
9880 and if it was breakpoint hit in non-stop mode, cancel it. Don't
9881 go through all LWPs cancelling breakpoints in non-stop mode.
9882 (resume_stopped_resumed_lwps): New.
9883 (linux_nat_wait): Use it.
9884
46763423
L
98852010-02-07 H.J. Lu <hongjiu.lu@intel.com>
9886
9887 * features/Makefile (WHICH): Add i386/i386, i386/i386-linux,
9888 i386/amd64 and i386/amd64-linux.
9889 (i386/i386-expedite): New.
9890 (i386/i386-linux-expedite): Likewise.
9891 (i386/amd64-expedite):Likewise.
9892 (i386/amd64-linux-expedite): Likewise.
9893 ($(outdir)/i386/i386-linux.dat): Likewise.
9894 ($(outdir)/i386/amd64.dat): Likewise.
9895 ($(outdir)/i386/amd64-linux.dat): Likewise.
9896
9897 * features/i386/32bit-core.xml: New.
9898 * features/i386/32bit-linux.xml: Likewise.
9899 * features/i386/32bit-sse.xml: Likewise.
9900 * features/i386/64bit-core.xml: Likewise.
9901 * features/i386/64bit-linux.xml: Likewise.
9902 * features/i386/64bit-sse.xml: Likewise.
9903 * features/i386/i386-linux.xml: Likewise.
9904 * features/i386/i386.xml: Likewise.
9905 * features/i386/amd64-linux.xml: Likewise.
9906 * features/i386/amd64.xml: Likewise.
9907 * features/i386/i386-linux.c: Likewise.
9908 * features/i386/i386.c: Likewise.
9909 * features/i386/amd64-linux.c: Likewise.
9910 * features/i386/amd64.c: Likewise.
9911
82856980
SW
99122010-02-05 Sami Wagiaalla <swagiaal@redhat.com>
9913
9914 PR c++/7935:
9915 * cp-support.h: Added char* alias element to using_direct data
9916 struct.
9917 (cp_add_using): Added char* alias argument.
9918 (cp_add_using_directive): Ditto.
9919 * cp-namespace.c: Updated with the above changes.
9920 (cp_lookup_symbol_imports): Check for aliases.
9921 * dwarf2read.c (read_import_statement): Figure out local alias
9922 for the import and pass it on to cp_add_using.
9923 (read_namespace): Pass alias argument to cp_add_using.
9924
d18b8b7a
HZ
99252010-02-05 Hui Zhu <teawater@gmail.com>
9926
9927 * defs.h (gdb_bfd_errmsg): New extern.
9928 * exec.c (exec_file_attach): Change bfd_errmsg to
9929 gdb_bfd_errmsg.
9930 * utils.c (AMBIGUOUS_MESS1): New macro.
9931 (AMBIGUOUS_MESS2): New macro.
9932 (gdb_bfd_errmsg): New function.
9933
48379de6
DE
99342010-02-04 Doug Evans <dje@google.com>
9935
9936 * solib-svr4.c (enable_break): Add comment.
9937
4ee73e90
AG
99382010-02-04 Anthony Green <green@moxielogic.com>
9939
9940 * moxie-tdep.c (moxie_analyze_prologue): Fail protocol analysis
9941 gracefully.
9942
1a334831
TT
99432010-02-04 Tom Tromey <tromey@redhat.com>
9944
9945 * valops.c (search_struct_field): Account for
9946 value_embedded_offset. Fix check for virtual base past the end of
9947 the object. Use value_copy when making a slice of the value.
9948
1180b2c8
L
99492010-02-04 H.J. Lu <hongjiu.lu@intel.com>
9950
9951 PR tui/9622
9952 * tui/tui-interp.c (tui_init): Call tui_initialize_readline
9953 only if gdb_stdout is a tty.
9954
c3f08eb7
L
99552010-02-04 H.J. Lu <hongjiu.lu@intel.com>
9956
9957 * target-descriptions.c: Include "osabi.h".
9958 (maint_print_c_tdesc_cmd): Generate set_tdesc_osabi for valid
9959 OSABI.
9960
2d33f7b8
TG
99612010-02-04 Tristan Gingold <gingold@adacore.com>
9962
9963 * machoread.c (macho_add_oso): Renamed to macho_register_oso.
9964 (macho_symtab_read): Adjust calls to macho_add_oso.
9965 (macho_oso_symfile): Renamed to macho_symfile_read_all_oso.
9966 (macho_symfile_read): Adjust call to macho_oso_symfile.
9967 (macho_new_init): Move this function after declarations.
9968 (macho_symfile_init): Ditto.
9969 * darwin-nat-info.c (darwin_lib_gdb_ports): Remove.
9970 * darwin-nat.c (darwin_lookup_task): Remove unused prototype.
9971
11334b82
VP
99722010-02-04 Vladimir Prus <vladimir@codesourcery.com>
9973
9974 Include MI command in remotelog.
9975
9976 * mi/mi-main.c (mi_execute_command): Call target_log_command.
9977
ff97be06
L
99782010-02-03 H.J. Lu <hongjiu.lu@intel.com>
9979
9980 * remote.c (remote_state): Remove gdbarch.
9981 (init_remote_state): Don't set gdbarch.
9982 (remote_query_supported): Pass target_gdbarch instead of
9983 rs->gdbarch to gdbarch_qsupported.
9984
75cebea9
L
99852010-02-03 H.J. Lu <hongjiu.lu@intel.com>
9986
9987 * gdbarch.sh: Add qsupported.
9988
9989 * gdbarch.c: Regenerated.
9990 * gdbarch.h: Likewise.
9991
9992 * remote.c (remote_state): Add gdbarch.
9993 (init_remote_state): Set gdbarch.
9994 (remote_query_supported): Support gdbarch_qsupported.
9995
c1dec97b
DJ
99962010-02-03 Daniel Jacobowitz <dan@codesourcery.com>
9997
9998 * amd64fbsd-nat.c (amd64fbsd_supply_pcb): Also check for
9999 __FreeBSD_kernel_version.
10000
ac8035ab
TG
100012010-02-03 Tristan Gingold <gingold@adacore.com>
10002
10003 * symfile.h (struct sym_fns): Add sym_relocate field.
10004 (default_symfile_relocate): New prototype.
10005 (symfile_relocate_debug_section): First argument is now an objfile.
10006 * symfile.c (default_symfile_relocate): Rename from
10007 symfile_relocate_debug_section, first argument is now an objfile.
10008 (symfile_relocate_debug_section): New function.
10009 * coffread.c (coff_sym_fns): Set sym_relocate field.
10010 * somread.c (som_sym_fns): Ditto.
10011 * mipsread.c (ecoff_sym_fns): Ditto.
10012 * machoread.c (macho_sym_fns): Ditto.
10013 * elfread.c (elf_sym_fns): Ditto.
10014 * dwarf2read.c (dwarf2_read_section): Ditto.
10015 * xcoffread.c (xcoff_sym_fns): Ditto.
10016 * dbxread.c (aout_sym_fns): Ditto.
10017 (dbx_psymtab_to_symtab): Adjust call to symfile_relocate_debug_section.
10018 (elfstab_build_psymtabs): Ditto.
10019
be52b756
L
100202010-02-03 H.J. Lu <hongjiu.lu@intel.com>
10021
10022 * defs.h (MAX_REGISTER_SIZE): Increase to 32.
10023
9c3c02fd
TT
100242010-02-02 Tom Tromey <tromey@redhat.com>
10025
10026 * valops.c (value_cast_structs): Try downcasting using the RTTI
10027 type.
10028
f23f4c59
TT
100292010-02-02 Tom Tromey <tromey@redhat.com>
10030
10031 * gnu-v2-abi.c: Don't include gnu-v2-abi.h.
10032 (gnuv2_baseclass_offset): Now static.
10033 * Makefile.in (HFILES_NO_SRCDIR): Remove gnu-v2-abi.h.
10034 * gnu-v2-abi.h: Remove.
10035
0cc2414c
TT
100362010-02-02 Tom Tromey <tromey@redhat.com>
10037
10038 * m2-typeprint.c (m2_record_fields): Don't use
10039 TYPE_DECLARED_TYPE.
10040 * gdbtypes.h (TYPE_DECLARED_CLASS): New macro.
10041 (struct main_type) <flag_declared_class>: New field.
10042 (struct cplus_struct_type) <declared_type>: Remove.
10043 <ntemplate_args>: Move earlier.
10044 (DECLARED_TYPE_CLASS, DECLARED_TYPE_UNION, DECLARED_TYPE_STRUCT)
10045 (DECLARED_TYPE_TEMPLATE): Remove.
10046 (TYPE_DECLARED_TYPE): Remove.
10047 * gdbtypes.c (lookup_union): Don't use TYPE_DECLARED_TYPE.
10048 * dwarf2read.c (read_structure_type): Set TYPE_DECLARED_CLASS.
10049 * c-typeprint.c (c_type_print_base): Use TYPE_DECLARED_CLASS, not
10050 TYPE_DECLARED_TYPE.
10051
edf3d5f3
TT
100522010-02-02 Tom Tromey <tromey@redhat.com>
10053
10054 PR c++/11226, PR c++/9629, PR c++/9688, PR c++/8890:
10055 * valops.c (search_struct_field): Compute nbases after calling
10056 CHECK_TYPEDEF.
10057 (check_field): Call CHECK_TYPEDEF.
10058 * cp-valprint.c (cp_print_value): Pass correct address to
10059 baseclass_offset. Fix check for virtual base past the end of the
10060 object. Don't offset address passed to cp_print_value_fields or
10061 apply_val_pretty_printer.
10062 (cp_print_value_fields): Fix call to val_print.
10063 (cp_print_value_fields_rtti): New function.
10064 * c-valprint.c (c_val_print): Use cp_print_value_fields_rtti.
10065 * p-valprint.c (pascal_object_print_value_fields): Fix call to
10066 val_print.
10067 * python/py-prettyprint.c (apply_val_pretty_printer): Add embedded
10068 offset to address.
10069 * language.h (struct language_defn) <la_val_print>: Document.
10070 * c-lang.h (cp_print_value_fields_rtti): Declare.
10071
e4b7f41c
JK
100722010-02-01 Jan Kratochvil <jan.kratochvil@redhat.com>
10073
10074 PR libc/11214:
10075 * linux-low.c (linux_tracefork_child) [!(__UCLIBC__ && HAS_NOMMU)]: New.
10076 (linux_test_for_tracefork): Move `stack' into [__UCLIBC__ && HAS_NOMMU].
10077 (linux_test_for_tracefork) [!(__UCLIBC__ && HAS_NOMMU)]: New.
10078
7618e12b
DJ
100792010-02-01 Michael Matz <matz@suse.de>
10080 Daniel Jacobowitz <dan@codesourcery.com>
10081
e4b7f41c 10082 * i386-tdep.c (i386_frame_cache): Assume valid anonymous
7618e12b
DJ
10083 functions use a frame pointer.
10084
b381ea14
JK
100852010-02-01 Jan Kratochvil <jan.kratochvil@redhat.com>
10086
10087 * solib-svr4.c (scan_dyntag): New variable dyn_addr. Replace gdb_assert
10088 by a conditional setting DYN_ADDR. Use DYN_ADDR.
10089 * config/djgpp/fnchange.lst: Add translations for
10090 symbol-without-target_section.exp and symbol-without-target_section.c.
10091
0e05dfcb
DJ
100922010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
10093
10094 * gdbarch.sh: Set LANG and LC_ALL to C, not c.
10095 (remote_breakpoint_for_pc): Correct invalid_p check.
10096 * gdbarch.c: Regenerated.
10097
f9d67f43
DJ
100982010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
10099
10100 * arm-tdep.c (arm_find_mapping_symbol): New function, from
10101 arm_pc_is_thumb.
10102 (arm_pc_is_thumb): Use arm_find_mapping_symbol.
10103 (extend_buffer_earlier): New function.
10104 (MAX_IT_BLOCK_PREFIX, IT_SCAN_THRESHOLD): New constants.
10105 (arm_adjust_breakpoint_address): New function.
10106 (arm_gdbarch_init): Register arm_adjust_breakpoint_address.
10107
177321bd
DJ
101082010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
10109
10110 * arm-linux-tdep.c (arm_linux_thumb2_be_breakpoint)
10111 (arm_linux_thumb2_le_breakpoint): New constants.
10112 (arm_linux_init_abi): Set thumb2_breakpoint and
10113 thumb2_breakpoint_size.
10114 * arm-tdep.c (thumb_insn_size, thumb_advance_itstate): New functions.
10115 (thumb_get_next_pc): Add a comment. Rename IT to ITSTATE.
10116 Implement support for single stepping through IT blocks if
10117 a 32-bit Thumb breakpoint instruction is available.
10118 (arm_breakpoint_from_pc): If a 32-bit Thumb breakpoint instruction
10119 is available, use it when needed.
10120 (arm_remote_breakpoint_from_pc): New function.
10121 (arm_gdbarch_init): Register arm_remote_breakpoint_from_pc.
10122 * arm-tdep.h (struct gdbarch_tdep): Correct thumb_breakpoint
10123 comment. Add thumb2_breakpoint and thumb2_breakpoint_size.
10124
a1dcb23a
DJ
101252010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
10126
10127 * arch-utils.c (default_remote_breakpoint_from_pc): New function.
10128 * arch-utils.h (default_remote_breakpoint_from_pc): Declare.
10129 * gdbarch.c, gdbarch.h: Regenerated.
10130 * gdbarch.sh (remote_breakpoint_from_pc): New architecture method.
10131 * remote.c (remote_insert_breakpoint, remote_insert_hw_breakpoint): Use
10132 gdbarch_remote_breakpoint_from_pc.
10133
2b009048
DJ
101342010-01-29 Daniel Jacobowitz <dan@codesourcery.com>
10135
10136 * infrun.c (prepare_to_proceed): Handle other signals which might
10137 match a breakpoint.
10138 (handle_inferior_event): Move the check for unusual breakpoint
10139 signals earlier.
10140
e4e2711a
JB
101412010-01-29 Paul Hilfinger <hilfinger@adacore.com>
10142
10143 amd64 - function returning record with field straddling 2 registers.
10144 * amd64-tdep.c (amd_classify_aggregate): Handle the case of
10145 a record of length <= 16 in which a field straddles the two
10146 eightbytes.
10147
cba6fab5
JB
101482010-01-29 Joel Brobecker <brobecker@adacore.com>
10149
10150 Implement return values on amd64-windows.
10151 * amd64-windows-tdep.c: #include gdbcore.h and regcache.h.
10152 (amd64_windows_return_value): New function.
10153 (amd64_windows_init_abi): Call set_gdbarch_return_value with
10154 amd64_windows_return_value.
10155
3af6ddfe
JB
101562010-01-29 Joel Brobecker <brobecker@adacore.com>
10157
10158 amd64-windows: 32 bytes allocated on stack by caller for integer
cba6fab5 10159 parameter registers.
3af6ddfe
JB
10160 * i386-tdep.h (struct gdbarch_tdep): Add new field
10161 integer_param_regs_saved_in_caller_frame.
10162 * amd64-windows-tdep.c (amd64_windows_init_abi): Set
10163 tdep->integer_param_regs_saved_in_caller_frame to 1.
10164 * amd64-tdep.c (amd64_push_dummy_call): Allocate some memory on
10165 stack if tdep->integer_param_regs_saved_in_caller_frame is set.
10166
80d19a06
JB
101672010-01-29 Joel Brobecker <brobecker@adacore.com>
10168
10169 amd64-windows: memory args passed by pointer during function calls.
10170 * i386-tdep.h (gdbarch_tdep): Add field memory_args_by_pointer.
10171 * amd64-tdep.c (amd64_push_arguments): Add handling of architectures
10172 where tdep->memory_args_by_pointer is non-zero.
10173 * amd64-windows-tdep.c (amd64_windows_init_abi): Set
10174 tdep->memory_args_by_pointer to 1.
10175
ba581dc1
JB
101762010-01-29 Joel Brobecker <brobecker@adacore.com>
10177
4966b6c2 10178 amd64-windows: Integer parameters in function calls.
ba581dc1
JB
10179 * i386-tdep.h (enum amd64_reg_class): New, moved here from
10180 amd64-tdep.c.
10181 (struct gdbarch_tdep): Add fields call_dummy_num_integer_regs,
10182 call_dummy_integer_regs, and classify.
10183 * amd64-tdep.h (amd64_classify): Add declaration.
10184 * amd64-tdep.c (amd64_dummy_call_integer_regs): New static constant.
10185 (amd64_reg_class): Delete, moved to i386-tdep.h.
10186 (amd64_classify): Make non-static. Move declaration to amd64-tdep.h.
10187 Replace call to amd64_classify by call to tdep->classify.
10188 (amd64_push_arguments): Get the list of registers to use for
10189 passing integer parameters from the gdbarch tdep structure,
10190 rather than using a hardcoded one. Replace calls to amd64_classify
10191 by calls to tdep->classify.
10192 (amd64_push_dummy_call): Get the register number used for
10193 the "hidden" argument from tdep->call_dummy_integer_regs.
10194 (amd64_init_abi): Initialize tdep->call_dummy_num_integer_regs
10195 and tdep->call_dummy_integer_regs. Set tdep->classify.
10196 * amd64-windows-tdep.c: Add include of gdbtypes.h.
10197 (amd64_windows_dummy_call_integer_regs): New static global.
10198 (amd64_windows_classify): New function.
10199 (amd64_windows_init_abi): Initialize tdep->call_dummy_num_integer_regs
10200 tdep->call_dummy_integer_regs and tdep->classify.
10201
d37346f0
DJ
102022010-01-28 Daniel Jacobowitz <dan@codesourcery.com>
10203
10204 * regcache.c (regcache_xmalloc): Add aspace argument. Use it
10205 for the new regcache. All callers updated.
10206 (regcache_cpy, regcache_cpy_no_passthrough): Do not set aspace here.
10207 (get_thread_arch_regcache): Do not set aspace here.
10208 * regcache.h (regcache_xmalloc): Update declaration.
10209
10210 * frame.c, infcall.c, ppc-linux-tdep.c: Calls to
10211 regcache_xmalloc updated.
10212
7434dadd
JB
102132010-01-28 Joel Brobecker <brobecker@adacore.com>
10214
10215 Another -Wunused-function error in procfs.c (sparc-solaris)
10216 * procfs.c (insert_dbx_link_breakpoint): Delete declaration. Move up.
10217 Only define if SYS_syssgi is defined.
10218 (remove_dbx_link_breakpoint): Delete declaration. Move up.
10219 (dbx_link_addr, insert_dbx_link_bpt_in_file)
10220 (insert_dbx_link_bpt_in_region): Move up. Only define if SYS_syssgi
10221 is itself defined.
10222
16d905e2
CF
102232010-01-27 Christopher Faylor <me+cygwin@cgf.cx>
10224
10225 * windows-nat.c (windows_initialization_done): New variable.
10226 (get_windows_debug_event): Issue error when process dies before
10227 completely initializing.
10228 (do_initial_windows_stuff): Set flag to indicate when we are done with
10229 the initial steps of attaching to the child.
10230
cd55e50f
JK
102312010-01-27 Jan Kratochvil <jan.kratochvil@redhat.com>
10232
10233 * symtab.h (struct symbol <symtab>): New comment on NULL values.
10234
99cc78aa
DE
102352010-01-27 Doug Evans <dje@google.com>
10236
4c7dcb84
DE
10237 * solib-svr4.c (solib_break_names): Add __dl_rtld_db_dlactivity.
10238
99cc78aa
DE
10239 * breakpoint.c (bpstat_stop_status): Delete useless code.
10240
52334bf5
JK
102412010-01-27 Jan Kratochvil <jan.kratochvil@redhat.com>
10242
10243 * printcmd.c (display_uses_solib_p): Remove variable section. Access
10244 objfile via SYMBOL_SYMTAB.
10245
708ead4e
TT
102462010-01-26 Tom Tromey <tromey@redhat.com>
10247
10248 PR exp/7643:
10249 * eval.c (evaluate_subexp_for_address) <UNOP_IND>: Call
10250 coerce_array on result.
10251
b14e635e
SW
102522010-01-26 Sami Wagiaalla <swagiaal@redhat.com>
10253
10254 * cp-namespace.c (cp_lookup_symbol_namespace): Added
10255 search_parent argument.
10256 (cp_add_using): Initialize 'searched' field.
10257 (reset_directive_searched): New function.
10258 * cp-support.h: Add 'searched' field to using_direct struct.
10259 (cp_lookup_symbol_imports): Ditto.
10260 * cp-namespace.c (cp_lookup_symbol_imports): Ditto.
10261 Perform recursive search.
10262 Implement non parent search.
10263 * valops.c (value_maybe_namespace_elt): Updated.
10264
8540c487
SW
102652010-01-26 Sami Wagiaalla <swagiaal@redhat.com>
10266
10267 PR gdb/10929:
10268 * dwarf2read.c (read_lexical_block_scope): Create blocks for
10269 scopes which contain using directives even if they contain no
10270 declarations.
10271 * symtab.c (lookup_symbol_aux): Pass lowest level block to
10272 la_lookup_symbol_nonlocal.
10273 * cp-namespace.c (cp_lookup_symbol_nonlocal): call
10274 cp_lookup_symbol_namespace.
10275 (cp_lookup_symbol_namespace): Perform an import lookup at every
10276 block level.
10277 (cp_lookup_symbol_imports): New function.
10278 (cp_lookup_symbol_in_namespace): New function.
10279
421d5d99
TT
102802010-01-25 Tom Tromey <tromey@redhat.com>
10281
10282 PR gdb/11049:
10283 * c-valprint.c (c_val_print): Fix test of extract_unsigned_integer
10284 result.
10285
6bcc772d
RO
102862010-01-25 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
10287
10288 * configure.ac: Only use host_os part when disabling TUI on osf.
10289 Use test to check variables, prefix strings with x.
10290 * configure: Regenerate.
10291
10292 * solib-osf.c (osf_current_sos): Initialize tail.
10293
1c1238a5
TG
102942010-01-25 gingold <gingold@adacore.com>
10295
c8d5aac9
L
10296 * windows-nat.c (windows_continue): Use %x to print thread id.
10297 (get_windows_debug_event): Ditto.
1c1238a5 10298
0b92b5bb
TT
102992010-01-22 Tom Tromey <tromey@redhat.com>
10300
10301 PR symtab/11199:
10302 * dwarf2read.c (quirk_gcc_member_function_pointer): Change return
10303 type and arguments. Use smash_to_methodptr_type.
10304 (read_structure_type): Call quirk_gcc_member_function_pointer
10305 later.
10306 * gdbtypes.h (smash_to_methodptr_type): Declare.
10307 * gdbtypes.c (smash_to_methodptr_type): New function.
10308 (lookup_methodptr_type): Use it.
10309
0d5392b8
TT
103102010-01-21 Tom Tromey <tromey@redhat.com>
10311
10312 PR symtab/11198:
10313 * symtab.h (lookup_minimal_symbol_and_objfile): Declare.
10314 * minsyms.c (lookup_minimal_symbol_and_objfile): New function.
10315 * glibc-tdep.c (find_minsym_and_objfile): Remove.
10316 (glibc_skip_solib_resolver): Use
10317 lookup_minimal_symbol_and_objfile.
10318
e6d088ec
KT
103192010-01-21 Kai Tietz <kai.tietz@onevision.com>
10320
10321 * inflow.c (check_syscall): Guard by #if clause for GO32 and
10322 WIN32 targets.
10323
b966cb8a
TT
103242010-01-20 Tom Tromey <tromey@redhat.com>
10325
10326 PR backtrace/10770:
10327 * valarith.c (value_binop): Handle BINOP_GTR, BINOP_LEQ, and
10328 BINOP_GEQ. Handle BINOP_NOTEQUAL in the signed case.
10329 * dwarf2expr.c (new_dwarf_expr_context): Allocate
10330 dwarf_stack_values, not CORE_ADDRs.
10331 (execute_stack_op): Change DW_OP_div and comparison operators to
10332 use signed operands.
10333
3f81c18a
VP
103342010-01-20 Vladimir Prus <vladimir@codesourcery.com>
10335
10336 Per-inferior args and tty and environment.
10337
10338 * infcmd.c (inferior_args): Rename to ...
10339 (inferior_args_scratch): ... this.
10340 (inferior_io_terminal): Rename to ...
10341 (inferior_io_terminal_scratch): ... this.
10342 (inferior_argc, inferior_argv): Remove.
10343 (set_inferior_io_terminal, get_inferior_io_terminal): Store
10344 inside current_inferior().
10345 (set_inferior_tty_command, show_inferior_tty_command): New.
10346 (get_inferior_args, set_inferior_args): Store inside
10347 current_inferior().
10348 (notice_args_set): Likewise and rename to...
10349 (set_args_command): ... this.
10350 (set_inferior_args_vector): Likewise.
10351 (notice_args_read): Rename to...
10352 (show_args_command): ...new.
10353 (tty_command): Remove.
10354 (run_command_1): Don't free old args, as they are freed by
10355 set_inferior_arg now.
10356 (run_no_args_command): Likewise.
10357 (inferior_environ): Remove.
10358 (run_command_1): Use environment of the current inferior.
10359 (environment_info, set_environment_command)
10360 (unset_environment_command, path_info, path_command): Likewise.
10361 (_initialize_infcmd): Adjust for function and variable renames.
10362 Do not init inferior_environ.
10363 * inferior.h (set_inferior_arg): Adjust prototype.
10364 (struct inferior): New fields args, argc, argv, terminal, environment.
10365 (inferior_environ): Remove declaration.
10366 * inferior.c (free_inferior): Free new fields.
10367 (add_inferior_silent): Initialize 'environment' field.
10368 * main.c (captured_main): Set arguments only after the initial
10369 inferior has been created. Set set_inferior_io_terminal,
10370 not tty_command.
10371 * mi/mi-main.c (mi_cmd_env_path): Use environment of the current
10372 inferior.
10373 (_initialize_mi_cmd_env): Adjust for disappearance of global
10374 inferior_environ.
10375 * solib.c (solib_find): Use environment of the current inferior.
10376
d8b65138
JK
103772010-01-20 Jan Kratochvil <jan.kratochvil@redhat.com>
10378
10379 * varobj.c (varobj_add_child, install_dynamic_child): Wrap into #if
10380 HAVE_PYTHON.
10381 (instantiate_pretty_printer): Move HAVE_PYTHON outside of the function.
10382
692465f1
JB
103832010-01-20 Joel Brobecker <brobecker@adacore.com>
10384
10385 Get rid of ada-lang.c:function_name_from_pc.
10386 * ada-lang.c: Add "stack.h" #include.
10387 (function_name_from_pc): Delete.
10388 (is_known_support_routine): Replace call to function_name_from_pc
10389 by call to find_frame_funname.
10390 (ada_unhandled_exception_name_addr_from_raise): Likewise.
10391
95519e0e
TT
103922010-01-19 Tom Tromey <tromey@redhat.com>
10393
10394 PR c++/11026:
10395 * dwarf2read.c (read_partial_die): Allocate partial DIE's name on
10396 objfile obstack.
10397
95c11dc7
TT
103982010-01-19 Tom Tromey <tromey@redhat.com>
10399
10400 * top.c (stop_sig, float_handler, do_nothing): Remove.
10401
a0f49112
JK
104022010-01-19 Jan Kratochvil <jan.kratochvil@redhat.com>
10403
10404 * breakpoint.c (watchpoint_check): Check the call
10405 gdbarch_in_function_epilogue_p before calling frame_find_by_id.
10406 Extend the comment.
8d95cc3b 10407 * config/djgpp/fnchange.lst: Add translations for
a0f49112
JK
10408 watchpoint-cond-gone.exp, watchpoint-cond-gone.c and
10409 watchpoint-cond-gone-stripped.c.
10410
ceeb3d5a
TT
104112010-01-19 Tom Tromey <tromey@redhat.com>
10412
10413 PR c++/8000:
10414 * dwarf2read.c (partial_die_parent_scope): Put enumeration type
10415 into parent scope, and enumerator into grandparent scope.
10416
2b71fc8e
JB
104172010-01-19 Joel Brobecker <brobecker@adacore.com>
10418
10419 * NEWS: Add entry for "set/show ada trust-PAD-over-XVS" commands.
10420
03564ed9
JB
104212010-01-19 Joel Brobecker <brobecker@adacore.com>
10422
10423 * configure.host: Make x86_64-*-solaris2.1[0-9]* an alias of
10424 i[34567]86-*-solaris2.1[0-9]*.
10425 * configure.tgt: Likewise.
10426
fb2e7cb4
JB
104272010-01-19 Joel Brobecker <brobecker@adacore.com>
10428
10429 * NEWS: Document the source command enhancement allowing it
10430 to load Python scripts. Document the "set/show script-extension"
10431 commands.
10432
1cb5e2a4
JB
104332010-01-19 Joel Brobecker <brobecker@adacore.com>
10434
10435 Add -Wunused-function to compile flags.
10436 * configure.ac: Add -Wunused-function to build_warnings.
10437 * configure: Regenerate.
10438
0ec6cd0c
JB
104392010-01-19 Joel Brobecker <brobecker@adacore.com>
10440
10441 "delete" ada-lex.c:input function, not used.
10442 * ada-lex.l: #define YY_NO_INPUT.
10443
b74845da
JB
104442010-01-19 Joel Brobecker <brobecker@adacore.com>
10445
10446 Delete free_named_symtabs and associated cleanup.
10447 * symfile.h (free_named_symtabs): Delete declaration.
10448 * symfile.c: Remove some commented out code (clear_symtab_users_once).
10449 (cashier_psymtab): Comment function out.
10450 Delete declaration.
10451 (free_named_symtabs): Delete.
10452 * coffread.c (coff_end_symtab): Remove call to free_named_symtabs.
10453 * dbxread.c (end_psymtab): Likewise.
10454 * dwarf2read.c (process_psymtab_comp_unit): Ditto.
10455 * exec.c (exec_close_1): Ditto.
10456 * xcoffread.c (xcoff_end_psymtab): Likewise.
10457
65c06092
JB
104582010-01-19 Joel Brobecker <brobecker@adacore.com>
10459
10460 * stack.c (print_block_frame_labels): Comment function out.
10461
d5cd6034
JB
104622010-01-19 Joel Brobecker <brobecker@adacore.com>
10463
10464 Delete unused or undefined functions.
10465 * breakpoint.c (ep_parse_optional_filename): Delete.
10466 * dcache.c (dcache_write_line): Remove declaration.
10467 * infrun.c (build_infrun): Remove declaration.
10468 * tracepoint.c (tracepoint_save_command): Remove declaration.
10469 * linux-nat.c (init_lwp_list): Delete. No longer used.
10470 * event-loop.c (check_async_signal_handlers): Delete declaration.
10471 * infrun.c (init_execution_control_state): Delete.
10472 (proceed): Update comment to avoid mentioning
10473 init_execution_control_state.
10474 * target.c (kill_or_be_killed, nosupport_runtime): Delete.
10475 * ada-lang.c (ada_to_static_fixed_value): Delete.
10476 * scm-lang.c (evaluate_subexp_scm): Delete declaration.
10477 * cp-namespace.c (cp_copy_usings): Delete.
10478 * xml-syscall.c (xml_number_of_syscalls): Delete.
10479 * progspace.c (find_program_space_by_num): Delete.
10480 * inflow.c (handle_sigio): Delete declaration.
10481 * hppa-tdep.c (hppa_alignof): Delete.
10482 * mipsnbsd-tdep.c (mipsnbsd_sigtramp_offset)
10483 (mipsnbsd_core_osabi_sniffer): Delete.
10484
4e8f195d
TT
104852010-01-18 Tom Tromey <tromey@redhat.com>
10486
10487 PR c++/9680:
10488 * c-exp.y (REINTERPRET_CAST, DYNAMIC_CAST, STATIC_CAST)
10489 (CONST_CAST): New tokens.
10490 (exp): Add new productions.
10491 (ident_tokens): Add const_cast, dynamic_cast, static_cast, and
10492 reinterpret_cast.
10493 (is_cast_operator): New function.
10494 (yylex): Handle cast operators specially.
10495 * eval.c (evaluate_subexp_standard) <UNOP_DYNAMIC_CAST,
10496 UNOP_REINTERPRET_CAST>: New cases.
10497 * expprint.c (print_subexp_standard): Likewise.
10498 (op_name_standard): Likewise.
10499 (dump_subexp_body_standard): Likewise.
10500 * parse.c (operator_length_standard): Likewise.
10501 * expression.h (enum exp_opcode): New constants UNOP_DYNAMIC_CAST,
10502 UNOP_REINTERPRET_CAST.
10503 * gdbtypes.c (class_types_same_p): New function.
10504 (is_ancestor): Use it.
10505 (is_public_ancestor): New function.
10506 (is_unique_ancestor_worker): Likewise.
10507 (is_unique_ancestor): Likewise.
10508 * gdbtypes.h (class_types_same_p, is_public_ancestor)
10509 (is_unique_ancestor): Declare.
10510 * valops.c (value_reinterpret_cast): New function.
10511 (dynamic_cast_check_1): Likewise.
10512 (dynamic_cast_check_2): Likewise.
10513 (value_dynamic_cast): Likewise.
10514 * value.h (value_reinterpret_cast, value_dynamic_cast): Declare.
10515
d9c57d9f
JB
105162010-01-18 Joel Brobecker <brobecker@adacore.com>
10517
10518 Fix build failure when building without Python support.
10519 * python/python.c: Always include exceptions.h, even when HAVE_PYTHON
10520 is not defined.
10521
f80d3ff2
JB
105222010-01-18 Joel Brobecker <brobecker@adacore.com>
10523
10524 Use XVS field type instead of doing a parallel lookup.
10525 * ada-lang.c (ada_get_base_type): Follow the XVS field type
10526 if it is a reference type instead of doing a type lookup using
10527 the XVS field name.
10528
5bf03f13
JB
105292010-01-18 Joel Brobecker <brobecker@adacore.com>
10530
10531 Trust PAD types instead of using PAD___XVS.
10532 * ada-lang.c (trust_pad_over_xvs): New static variable.
10533 (ada_is_aligner_type): If !trust_pad_over_xvs and there is a
10534 parallel XVS type, follow the XVS type instead of the PAD type.
10535 (unwrap_value): Make sure that there is no parallel XVE type
10536 before returning the value as is.
10537 (set_ada_list, show_ada_list): New static variables.
10538 (set_ada_command, show_ada_command): New functions.
10539 (_initialize_ada_language): Add new "set/show ada" prefix commands.
10540 Add new "set/show ada trust-PAD-over-XVS" setting.
10541
973817a3
JB
105422010-01-18 Tom Tromey <tromey@redhat.com>
10543 Thiago Jung Bauermann <bauerman@br.ibm.com>
10544
10545 Allow "source" to load python scripts.
10546 * exceptions.h (enum errors): Add UNSUPPORTED_ERROR.
10547 * python/python.c (source_python_script): New function.
10548 * python/python.h (source_python_script): Add declaration.
10549 * cli/cli-cmds.c: #include exceptions.h and python/python.h.
10550 (script_ext_off, script_ext_soft, script_ext_strict)
10551 (script_ext_enums, script_ext_mode): New static constants.
10552 (show_script_ext_mode, find_and_open_script): New functions.
10553 (source_script): Enhance to handle Python scripts.
10554 (init_cli_cmds): Add set/show script-extension commands.
10555
98e03262
SS
105562010-01-16 Stan Shebs <stan@codesourcery.com>
10557
10558 * tracepoint.h (struct trace_status): Use unsigned long long
10559 instead of size_t.
10560 * tracepoint.c (trace_status_command): Fix printf directive.
10561 (trace_save_command): Check fwrite returns, fix printf directive.
10562 (trace_filename): New global.
10563 (tfile_open): Set it, check read returns.
10564 (tfile_close): Free trace_filename.
10565 (tfile_get_traceframe_address): Check read returns.
10566 (tfile_trace_find): Ditto.
10567 (tfile_fetch_registers): Ditto.
10568 (tfile_xfer_partial): Ditto.
10569 (tfile_get_trace_state_variable_value): Ditto.
10570
00bf0b85
SS
105712010-01-15 Stan Shebs <stan@codesourcery.com>
10572
10573 Add trace file support.
10574 * tracepoint.h (enum trace_stop_reason): New enum.
10575 (struct trace_status): New struct.
10576 (parse_trace_status): Declare.
10577 (struct uploaded_tp): Move here from remote.c,
10578 add fields for actions.
10579 (struct uploaded_tsv): New struct.
10580 * tracepoint.c (tfile_ops): New target vector.
10581 (trace_fd): New global.
10582 (tfile_open): New function.
10583 (tfile_close): New function.
10584 (tfile_files_info): New function.
10585 (tfile_get_trace_status): New function.
10586 (tfile_get_traceframe_address): New function.
10587 (tfile_trace_find): New function.
10588 (tfile_fetch_registers): New function.
10589 (tfile_xfer_partial): New function.
10590 (tfile_get_trace_state_variable_value): New function.
10591 (init_tfile_ops): New function.
10592 (_initialize_tracepoint): Call it, add tfile target.
10593 (trace_status): New global.
10594 (current_trace_status): New function.
10595 (trace_running_p): Remove, change all users to get from
10596 current_trace_status()->running.
10597 (get_trace_status): Remove.
10598 (trace_status_command): Call target_get_trace_status directly,
10599 report more detail including tracing stop reasons.
10600 (trace_find_command): Always allow tfind on a file.
10601 (trace_find_pc_command): Ditto.
10602 (trace_find_tracepoint_command): Ditto.
10603 (trace_find_line_command): Ditto.
10604 (trace_find_range_command): Ditto.
10605 (trace_find_outside_command): Ditto.
10606 (trace_frames_offset, cur_offset): Declare as off_t.
10607 (trace_regblock_size): Rename from reg_size, update users.
10608 (parse_trace_status): New function.
10609 (tfile_interp_line): New function.
10610 (disconnect_or_stop_tracing): Ensure current trace
10611 status before asking what to do.
10612 (stop_reason_names): New global.
10613 (trace_save_command): New command.
10614 (get_uploaded_tp): Move here from remote.c.
10615 (find_matching_tracepoint): Ditto.
10616 (merge_uploaded_tracepoints): New function.
10617 (parse_trace_status): Use stop_reason_names.
10618 (_initialize_tracepoint): Define tsave command.
10619 * target.h (target_ops): New fields to_save_trace_data,
10620 to_upload_tracepoints, to_upload_trace_state_variables,
10621 to_get_raw_trace_data, change to_get_trace_status
10622 to take a pointer to a status struct.
10623 (target_save_trace_data): New macro.
10624 (target_upload_tracepoints): New macro.
10625 (target_upload_trace_state_variables): New macro.
10626 (target_get_raw_trace_data): New macro.
10627 * target.c (update_current_target): Add new methods, change
10628 signature of to_get_trace_status.
10629 * remote.c (hex2bin): Make globally visible.
10630 (bin2hex): Ditto.
10631 (remote_download_trace_state_variable): Download name also.
10632 (remote_get_trace_status): Update parameter, use
10633 parse_trace_status.
10634 (remote_save_trace_data): New function.
10635 (remote_upload_tracepoints): New function.
10636 (remote_upload_trace_state_variables): New function.
10637 (remote_get_raw_trace_data): New function.
10638 (remote_start_remote): Use them.
10639 (_initialize_remote_ops): Add operations.
10640 * ax-gdb.c: Include breakpoint.h.
10641 * breakpoint.c (create_tracepoint_from_upload): Use
10642 break_command_really, return tracepoint, warn about unimplemented
10643 parts.
10644 * NEWS: Mention trace file addition.
10645
d904de5b
JK
106462010-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
10647
10648 Fix compilation warning on gcc-3.4.
10649 * exec.c (print_section_info): Move the `displacement' variable
10650 initialization to its declaration.
10651
64aa9731
JK
106522010-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
10653
10654 * gdb-gdb.py (StructMainTypePrettyPrinter): Fix TYPE_CODE_RANGE
10655 comparison.
10656
ca1f5def 106572010-01-15 Eric Botcazou <botcazou@adacore.com>
9f0dec2d
JB
10658
10659 "info tasks" broken by typedefs in ATCB type definitions.
10660 * ada-lang.c (ada_template_to_fixed_record_type_1): Add call to
10661 ada_check_typedef before retrieving the length of the type for
10662 regular fields.
10663
12ab9e09
JB
106642010-01-15 Joel Brobecker <brobecker@adacore.com>
10665
10666 Do not use name-based lookup for unconstrained packed arrays.
10667 * ada-lang.c (find_parallel_type_by_descriptive_type):
10668 Limit the fallback to name-based lookups to the case where
10669 the type is a constrained packed array.
10670
c389c3dc
JB
106712010-01-15 Joel Brobecker <brobecker@adacore.com>
10672
10673 Enhance gdb-gdb.py to handle main_type.type_specific.
10674 * gdb-gdb.py: Print the type-specific part of struct main_type.
10675
7991dee7
JK
106762010-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
10677
10678 * configure.ac (AC_CHECK_FUNCS): Check for setrlimit and getrlimit.
10679 * configure: Regenerate.
10680 * config.in: Regenerate.
10681 * utils.c: Include sys/resource.h.
10682 (dump_core, can_dump_core): New.
10683 (internal_vproblem): Update the comment. Check can_dump_core while
10684 setting dump_core_p. Replace two abort calls by dump_core calls.
10685
93c26624
JK
106862010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
10687 Eli Zaretskii <eliz@gnu.org>
10688
10689 * NEWS: Document the PIE support.
10690
55235ad7
JK
106912010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
10692
10693 * linux-tdep.c: Remove includes gdbcore.h, observer.h and elf-bfd.h.
10694 (check_is_pie_binary, _initialize_linux_tdep): Remove.
10695
41752192
JK
106962010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
10697
10698 * solib-svr4.c (svr4_exec_displacement): New comment for entry_point.
10699 Replace exec_entry_point call by bfd_get_start_address.
10700
9f2982ff
JK
107012010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
10702
10703 Support Valgrind attachments broken by the PIE support.
10704 * auxv.c: Include gdbcore.h.
10705 (procfs_xfer_auxv): Make static. Reduce its comment. Drop its
10706 parameters ops, object and annex. Remove their assertions.
10707 (ld_so_xfer_auxv, memory_xfer_auxv): New function.
10708 * auxv.h (procfs_xfer_auxv): Remove comment. Rename to ...
10709 (memory_xfer_auxv): ... here.
10710 * linux-nat.c (linux_xfer_partial): Rename procfs_xfer_auxv to
10711 memory_xfer_auxv.
10712 * procfs.c (procfs_xfer_partial): Likewise.
10713 * solib-svr4.c (svr4_relocate_main_executable): New prototype.
10714 (svr4_special_symbol_handling): Call svr4_relocate_main_executable.
10715 (svr4_solib_create_inferior_hook): Conditionalize the
10716 svr4_relocate_main_executable call.
10717
61f0d762
JK
107182010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
10719
10720 * solib-svr4.c (scan_dyntag): Remove variable dyn_addr. New variable
10721 target_section. Find SECT in current_target_sections, gdb_assert it.
10722 (elf_lookup_lib_symbol): Pass the binary file if given symfile_objfile.
10723 New variable abfd.
10724 * symtab.c (lookup_objfile_from_block): Return the binary file instead
10725 of separate debug info file.
10726
51bee8e9
JK
107272010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
10728
10729 Support PIEs with no symfile_objfile.
10730 * exec.c (print_section_info <abfd == exec_bfd>): Relocate Entry point.
10731 * solib-svr4.c (svr4_relocate_main_executable <exec_bfd>): New block.
10732
b8040f19
JK
107332010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
10734
10735 * solib-svr4.c (svr4_relocate_main_executable): Move the static exec
10736 code part to ...
10737 (svr4_static_exec_displacement): ... a new function.
10738 (svr4_exec_displacement): New function.
10739 (svr4_relocate_main_executable): Call svr4_exec_displacement. Allocate
10740 new_offsets using alloca now. Remove variable old_chain and changed.
10741 Call objfile_relocate unconditionally now.
10742
eb90ce83
DE
107432010-01-14 Doug Evans <dje@google.com>
10744
10745 * gdbtypes.c (arch_flags_type): Fix comment.
10746 * gdbtypes.h (arch_composite_type): Fix comment.
10747
bdfed3bc
TG
107482009-01-14 Tristan Gingold <gingold@adacore.com>
10749
10750 * machoread.c (macho_add_oso_symfile): Add symfile_flags parameter.
10751 Call xstrdup for abfd->filename. Pass symfile_flags and objfile flags
10752 to symbol_file_add_from_bfd. Add OSO as separate objfile.
10753 (macho_oso_symfile): Add symfile_flags parameter. Pass it to
10754 macho_add_oso_symfile.
10755 (macho_symfile_read): Pass symfile_flags to macho_oso_symfile.
10756
1596ad23
JB
107572010-01-14 Joel Brobecker <brobecker@adacore.com>
10758
10759 Tru64: Dead threads are never deleted.
10760 * dec-thread.c (dec_thread_ptid_is_alive): New function.
10761 (dec_thread_count_gdb_threads): Fix counter increment.
10762 (dec_thread_add_gdb_thread): Fix *listp increment.
10763 (resync_thread_list): Fix bug in deletion of dead threads that
10764 caused all threads to be deleted, instead of just the dead ones.
10765
be759fcf
PM
107662010-01-13 Phil Muldoon <pmuldoon@redhat.com>
10767
10768 PR python/10705
10769
10770 * python/python-internal.h: Add lazy_string_object_type
10771 definition.
10772 (create_lazy_string_object, gdbpy_initialize_lazy_string)
10773 (gdbpy_is_lazystring, gdbpy_extract_lazy_string): Define.
10774 * python/py-value.c (valpy_lazy_string): New function.
10775 (convert_value_from_python): Add lazy string conversion.
10776 * python/py-prettyprint.c (pretty_print_one_value): Check if
10777 return is also a lazy string.
10778 (print_string_repr): Add lazy string printing branch.
10779 (print_children): Likewise.
10780 * python/py-lazy-string.c: New file. Implement lazy strings.
10781 * python/python.c (_initialize_python): Call
10782 gdbpy_initialize_lazy_string.
10783 * varobj.c (value_get_print_value): Add lazy string printing
10784 branch. Account for encoding.
10785 * c-lang.c (c_printstr): Account for new encoding argument. If
10786 encoding is NULL, find encoding suited for type, otherwise use
10787 user encoding.
10788 * language.h (language_defn): Add encoding argument.
10789 (LA_PRINT_STRING): Likewise.
10790 * language.c (unk_lang_printstr): Update to reflect new encoding
10791 argument to language_defn.
10792 * ada-lang.h (ada_printstr): Likewise.
10793 * c-lang.h (c_printstr): Likewise.
10794 * p-lang.h (pascal_printstr);
10795 * f-lang.c (f_printstr): Likewise.
10796 * m2-lang.c (m2_printstr): Likewise.
10797 * objc-lang.c (objc_printstr): Likewise.
10798 * p-lang.c (pascal_printstr): Likewise.
10799 * scm-lang.c (scm_printstr): Likewise.
10800 * c-valprint.c (c_val_print): Update LA_PRINT_STRING call for
10801 encoding argument.
10802 * ada-valprint.c (ada_printstr): Likewise.
10803 * f-valprint.c (f_val_print): Likewise
10804 * m2-valprint.c (m2_val_print): Likewise.
10805 * p-valprint.c (pascal_val_print): Likewise.
10806 * expprint.c (print_subexp_standard): Likewise.
10807 * valprint.c (val_print_string): Likewise.
10808 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-lazy-string.
10809 (SUBDIR_PYTHON_SRCS): Likewise.
10810 (py-lazy-string.o): New rule.
10811
1fe72117 108122010-01-13 Doug Evans <dje@google.com>
8eee9c5a
DE
10813
10814 * mi/mi-main.c (list_available_thread_groups): Avoid "may be used
10815 uninitialized" warning from gcc on local `tree'.
10816
dc146f7c
VP
108172010-01-13 Vladimir Prus <vladimir@codesourcery.com>
10818
10819 Implement core awareness.
10820
10821 * bcache.c (compare_ints): Remove
10822 (print_percentage): Use compare_positive_ints.
10823 * defs.h (compare_positive_ints): Declare.
10824 * linux-nat.h (struct lin_lwp): New field core.
10825 (linux_nat_core_of_thread_1): Declare.
10826 * linux-nat.c (add_lwp): Init the 'core' field.
10827 (linux_nat_wait_1): Record the core.
10828 (linux_nat_core_of_thread_1, linux_nat_core_of_thread): New.
10829 (linux_nat_add_target): Register the above.
10830 * linux-thread-db.c (update_thread_core): New.
10831 (thread_db_find_new_threads): Update core information for
10832 every thread.
10833 * remote.c (struct private_thread_info): New.
10834 (free_private_thread_info, demand_private_info): New.
10835 (PACKET_qXfer_threads, use_osdata_threads): New.
10836 (struct thread_item, threads_parsing_context
10837 (start_thread, end_thread, thread_attributes)
10838 (thread_children, threads_children, threads_elements): New.
10839 (remote_threads_info): Try qXfer:threads before anything
10840 else.
10841 (remote_protocol_packets): Register qXfer:threads.
10842 (remote_open_1): Init use_osdata_threads.
10843 (struct stop_reply): New field 'core'.
10844 (remote_parse_stop_reply): Parse core number.
10845 (process_stop_reply): Record core number.
10846 (remote_xfer_partial): Handle qXfer:threads.
10847 (remote_core_of_thread): New.
10848 (init_remote_ops): Register remote_core_of_thread.
10849 (_initialize_remote): Register qXfer:read.
10850 * target.c (target_core_of_thread): New
10851 * target.h (enum target_object): New value TARGET_OBJECT_THREADS.
10852 (struct target_ops): New field to_core_of_threads.
10853 (target_core_of_thread): Declare.
10854 * gdbthread.h (struct thread_info): New field private_dtor.
10855 * thread.c (print_thread_info): Report the core.
10856 * ui-out.c (MAX_UI_OUT_LEVELS): Increase.
10857 * utils.c (compare_positive_ints): New.
10858 * features/threads.dtd: New.
10859 * mi/mi-interp.c (mi_on_normal_stop): Report the core.
10860 * mi/mi-main.c (struct collect_cores_data, collect_cores)
10861 (do_nothing, free_vector_of_osdata_items)
10862 (splay_tree_int_comparator, free_splay_tree): New.
10863 (print_one_inferior_data): Implemented printing of selected
10864 inferiors. Collect and print cores.
10865 (output_cores): New.
10866 (mi_cmd_list_thread_groups): Support --recurse. Permit specifying
10867 thread groups together with --available.
10868
d30c5336
JK
108692010-01-12 Jan Kratochvil <jan.kratochvil@redhat.com>
10870
10871 * configure: Regenerate (for _STRUCTURED_PROC).
10872
02893727
JB
108732010-01-12 Joel Brobecker <brobecker@adacore.com>
10874
10875 Delete dead function.
10876 * ada-lang.c (extract_string): Delete. No longer used.
10877
46ed2d6f
JB
108782010-01-12 Joel Brobecker <brobecker@adacore.com>
10879
10880 Fix -Wunused warning in dec-thread.c.
10881 * dec-thread.c (dec_thread_count_gdb_threads)
10882 (dec_thread_add_gdb_thread): Prevent -Wunused warning.
10883
606b8d1a
JB
108842010-01-12 Joel Brobecker <brobecker@adacore.com>
10885
10886 * ada-valprint.c (ada_print_floating): Remove trailing space.
10887
b4ba55a1
JB
108882010-01-12 Joel Brobecker <brobecker@adacore.com>
10889
10890 Add support for DW_AT_GNAT_descriptive_type.
10891 * gdbtypes.h (enum type_specific_kind): New enum.
10892 (struct main_type) [type_specific_field]: New component.
10893 [type_specific]: Add new component "gnat_stuff".
10894 (struct gnat_aux_type): New type.
10895 (INIT_CPLUS_SPECIFIC): Also set TYPE_SPECIFIC_FIELD (type).
10896 (HAVE_CPLUS_STRUCT): Also check TYPE_SPECIFIC_FIELD (type).
10897 (gnat_aux_default, allocate_gnat_aux_type): Add declaration.
10898 (INIT_GNAT_SPECIFIC, ALLOCATE_GNAT_AUX_TYPE, HAVE_GNAT_AUX_INFO)
10899 (TYPE_SPECIFIC_FIELD): New macros.
10900 (TYPE_CPLUS_SPECIFIC): Return cplus_struct_default if the given
10901 type does not hold any cplus-specific data.
10902 (TYPE_RAW_CPLUS_SPECIFIC): New macro.
10903 (TYPE_GNAT_SPECIFIC, TYPE_DESCRIPTIVE_TYPE): New macros.
10904 (TYPE_IS_OPAQUE): Use HAVE_CPLUS_STRUCT to check if type has
10905 cplus-specific data.
10906 * gdbtypes.c (allocate_cplus_struct_type): Minor stylistic rewrite.
10907 Set new component TYPE_SPECIFIC_FIELD (type).
10908 (gnat_aux_default): New constant.
10909 (allocate_gnat_aux_type): New function.
10910 (init_type): Add initialization the type-specific stuff for
10911 TYPE_CODE_FLT and TYPE_CODE_FUNC types.
10912 (print_gnat_stuff): New function.
10913 (recursive_dump_type): Use HAVE_CPLUS_STRUCT to check for cplus-
10914 specific data. Adjust code that prints the contents of the
10915 type-specific union using the TYPE_SPECIFIC_FIELD value.
10916 * dwarf2read.c (dwarf2_attach_fields_to_type): Do not allocate
10917 the type cplus stuff for Ada types.
10918 (dwarf2_add_member_fn, dwarf2_attach_fn_fields_to_type):
10919 Error out if these routines are called with an Ada type.
10920 (read_structure_type, read_array_type, read_subrange_type):
10921 Add call to set_descriptive_type.
10922 (set_die_type): Initialize the gnat-specific data if necessary.
10923 (need_gnat_info, die_descriptive_type, set_descriptive_type):
10924 New functions.
10925 * ada-lang.c (decode_constrained_packed_array_type): Use
10926 decode_constrained_packed_array_type instead of doing a standard
10927 lookup to locate a parallel type.
10928 (find_parallel_type_by_descriptive_type): New function.
10929 (ada_find_parallel_type_with_name): New function.
10930 (ada_find_parallel_type): Reimplement using
10931 ada_find_parallel_type_with_name.
10932 * ada-valprint.c (print_field_values): Use HAVE_CPLUS_STRUCT
10933 to check if type has a cplus stuff.
10934 * linespec.c (total_number_of_methods): Likewise.
10935 * mdebugread.c (new_type): Likewise.
10936
b0f02ee9
JK
109372010-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
10938
10939 * NEWS: Document the 0b binary number prefix parsing.
10940
b260e109
JK
109412010-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
10942
10943 * objfiles.c (objfile_relocate1): Change the return type to int.
10944 Describe the new return value. Return non-zero if data changed.
10945 (objfile_relocate): New variable changed. Set it. Call
10946 breakpoint_re_set depending on CHANGED.
10947
b5cfddf5
JK
109482010-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
10949
10950 Implement binary numbers parsing.
10951 * c-exp.y (parse_number): New case 'b' and 'B'.
10952
e0ae4240
JK
109532010-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
10954 Tristan Gingold <gingold@adacore.com>
10955
10956 * solib.c (info_sharedlibrary_command): Replace
10957 objfile_has_partial_symbols and objfile_has_full_symbols calls by
10958 objfile_has_symbols.
10959
6e0e5977
JB
109602010-01-10 Joel Brobecker <brobecker@adacore.com>
10961
10962 * NEWS: Document the improvements made to the mips-irix port.
10963
7348c5e1
JB
109642010-01-09 Joel Brobecker <brobecker@adacore.com>
10965
10966 Fix the documentation of valprint.c:value_print.
10967 * valprint.c (value_print): Update the function description to
10968 mention that the syntax of the output follows the current_language,
10969 not necessarily C.
10970
567995e1
JK
109712010-01-09 Jan Kratochvil <jan.kratochvil@redhat.com>
10972
10973 Fix displacement of separate debug info files.
10974 * objfiles.c (objfile_relocate): Rename to ...
10975 (objfile_relocate1): ... here and make it static. Extend the comment.
10976 (objfile_relocate): New function.
10977 * solib-spu.c (spu_relocate_main_executable): Explicitly check if
10978 SYMFILE_OBJFILE is NULL. Remove variables objfile and old_chain.
10979 Remove following of SEPARATE_DEBUG_OBJFILE. new_offsets is now
10980 allocated using alloca.
10981 * symfile.c (copy_section_addr_info): Remove.
10982 (build_section_addr_info_from_objfile): Make it global. New variables
10983 addr_bit and mask, use them.
10984 * symfile.h (build_section_addr_info_from_objfile): New prototype.
10985 (copy_section_addr_info): Remove.
10986
6d8eadbd
JB
109872010-01-09 Joel Brobecker <brobecker@adacore.com>
10988
10989 Signal unwinder for mips-irix N32.
10990 * mips-irix-tdep.c: #include mips-tdep.h, trad-frame.h, and
10991 tramp-frame.h.
10992 (SIGTRAMP_FRAME_SIZE, SIGCONTEXT_PC_OFF, SIGCONTEXT_REGS_OFF)
10993 (SIGCONTEXT_FPREGS_OFF, SIGCONTEXT_FPCSR_OFF, SIGCONTEXT_HI_OFF)
8d95cc3b
PA
10994 (SIGCONTEXT_LO_OFF): New macros.
10995 (mips_irix_n32_tramp_frame_init): New function.
6d8eadbd
JB
10996 (mips_irix_n32_tramp_frame): New static constant.
10997 (mips_irix_init_abi): Prepend the mips_irix_n32_tramp_frame unwinder.
10998
27087a3d
JB
109992010-01-09 Joel Brobecker <brobecker@adacore.com>
11000
11001 Breakpoint in shared library does not work on mips-irix.
11002 * procfs.c: #include "observer.h".
11003 (procfs_inferior_created): New function, moving here the code
11004 which unsets the syssgi syscall-exit notifications.
11005 (procfs_create_inferior): Remove the code which unsets the syssgi
11006 syscall-exit notifications. It is too early to do this here.
11007 (_initialize_procfs): Attach the procfs_inferior_created observer.
11008
f08877ba
JB
110092010-01-09 Joel Brobecker <brobecker@adacore.com>
11010
11011 Wrong return convention for arrays (mips-irix).
11012 * mips-tdep.c (mips_n32n64_return_value): Arrays whose size is
11013 128 bits or smaller are returned the same way as structs
11014 and unions of the the same size.
11015
e4b97d48
JB
110162010-01-09 Joel Brobecker <brobecker@adacore.com>
11017
11018 Cannot set the PC on mips-irix.
11019 * irix5-nat.c (fill_gregset): Check regno against the raw PC
11020 register number, no the cooked one.
11021
11377e68
JB
110222010-01-09 Joel Brobecker <brobecker@adacore.com>
11023
11024 Error while loading core file on mips-irix.
11025 * solib-irix.c (irix_solib_create_inferior_hook): Do nothing
11026 if debugging from a core file.
11027
b2391021
JB
110282010-01-09 Joel Brobecker <brobecker@adacore.com>
11029
11030 GDB hangs when attaching to process on mips-irix.
11031 * solib-irix.c (irix_solib_create_inferior_hook): Do nothing if
11032 attaching to a process.
11033
f2ec0ecf
JB
110342010-01-09 Joel Brobecker <brobecker@adacore.com>
11035
11036 Use the correct breakpoint instruction on mips-irix.
11037 * mips-tdep.c (mips_breakpoint_from_pc): Add new static variable
11038 containing the correct breakpoint instruction to use on mips-irix.
11039 Use it when the osabi is GDB_OSABI_IRIX.
11040
3c95f01c
JB
110412010-01-09 Joel Brobecker <brobecker@adacore.com>
11042
11043 -Wunused warning in procfs.c (mips-irix only).
11044 * procfs.c (gdb_praddset, gdb_prdelset): New macros. Use them
11045 throughout instead of using praddset and prdelset respectively.
11046
4b7703ad
JB
110472010-01-09 Joel Brobecker <brobecker@adacore.com>
11048
11049 GDB crash while stepping into function.
11050 * infrun.c (handle_inferior_event): Refetch the current frame
11051 after handling what.main_action, in case that pointer became
11052 dangling.
11053
12c89474
JB
110542010-01-09 Joel Brobecker <brobecker@adacore.com>
11055
11056 Fix build failure of solaris-hosted cross debuggers.
11057 * ada-valprint.c, parse.c: Include defs.h before including ctype.h.
11058
1a3fd262 110592010-01-09 Daniel Gutson <dgutson@codesourcery.com>
4c490650
JB
11060
11061 Fix build failure on sparc-solaris.
11062 * procfs.c: (procfs_do_thread_registers) Use elfcore_write_lwpstatus.
11063
75242ef4
JK
110642010-01-08 Jan Kratochvil <jan.kratochvil@redhat.com>
11065
11066 Move some symfile code into subroutines.
11067 * symfile.h (relative_addr_info_to_section_offsets)
11068 (addr_info_make_relative): New prototypes.
11069 * symfile.c (default_symfile_offsets): Move a part to ...
11070 (relative_addr_info_to_section_offsets): ... this new function.
11071 (default_symfile_offsets): Call it.
11072 (syms_from_objfile <!mainline && addrs && addrs->other[0].name>): Move
11073 this part to ...
11074 (addr_info_make_relative): ... this new function.
11075
268a4a75
JK
110762010-01-08 Jan Kratochvil <jan.kratochvil@redhat.com>
11077
11078 Add from_tty to solib_create_inferior_hook.
11079 * infcmd.c (post_create_inferior): Move solib_add after
11080 solib_create_inferior_hook. Pass from_tty to
11081 solib_create_inferior_hook. Call solib_add and SOLIB_ADD with
11082 0 from_tty and comment why.
11083 * infrun.c (follow_exec): Pass from_tty solib_create_inferior_hook as 0.
11084 * linux-nat.c (linux_child_follow_fork): Likewise.
11085 * nto-procfs.c (procfs_post_attach, procfs_create_inferior): Likewise.
11086 * solib-darwin.c (darwin_solib_create_inferior_hook): New parameter
11087 from_tty.
11088 * solib-frv.c (frv_solib_create_inferior_hook): Likewise.
11089 * solib-irix.c (irix_solib_create_inferior_hook): Likewise.
11090 * solib-null.c (null_solib_create_inferior_hook): Likewise.
11091 * solib-osf.c (osf_solib_create_inferior_hook): Likewise.
11092 * solib-pa64.c (pa64_solib_create_inferior_hook): Likewise.
11093 * solib-som.c (som_solib_create_inferior_hook): Likewise.
11094 * solib-spu.c (spu_solib_create_inferior_hook): New parameter from_tty.
11095 Pass it to svr4_so_ops.solib_create_inferior_hook.
11096 * solib-sunos.c (sunos_solib_create_inferior_hook): New parameter
11097 from_tty.
11098 * solib-svr4.c (enable_break): New parameter from_tty. Pass it to
11099 solib_add.
11100 (svr4_solib_create_inferior_hook): New parameter from_tty. Pass it to
11101 enable_break.
11102 * solib-target.c (solib_target_solib_create_inferior_hook): New
11103 parameter from_tty.
11104 * solib.c (solib_create_inferior_hook): New parameter from_tty. Pass
11105 it to ops->solib_create_inferior_hook.
11106 (reload_shared_libraries): Pass from_tty to solib_create_inferior_hook.
11107 Move solib_add after solib_create_inferior_hook, call it now with
11108 from_tty as 0. New comment there.
11109 * solib.h (solib_create_inferior_hook): New parameter from_tty.
11110 * solist.h (struct target_so_ops <solib_create_inferior_hook>):
11111 Likewise.
11112
cf00dfa7
VP
111132010-01-08 Vladimir Prus <vladimir@codesourcery.com>
11114
11115 Fix multiexec race.
11116 * infrun.c (handle_inferior_event): Use get_thread_regcache
11117 with events ptid, not get_current_regcache.
11118
f91e5ac3
JB
111192009-01-08 Joel Brobecker <brobecker@adacore.com>
11120
11121 GDB crash with empty executable name (MinGW).
11122 * source.c (openp): Add assert that parameter string is not NULL.
11123 if parameter string is an empty string, then return with a failure
11124 immediately.
11125
92b9ce5b
JB
111262009-01-08 Joel Brobecker <brobecker@adacore.com>
11127
11128 Get rid of support for VAX Floats.
11129 * ada-lang.h (ada_is_vax_floating_type, ada_vax_float_type_suffix)
11130 (ada_vax_float_print_function): Delete.
11131 * ada-lang.c (ada_is_vax_floating_type, ada_vax_float_type_suffix)
11132 (ada_vax_float_print_function): Delete.
11133 * ada-typeprint.c (print_vax_floating_point_type): Delete.
11134 (ada_print_type): Remove support for VAX floats.
11135 * ada-valprint.c (ada_val_print_1): Remove support for VAX floats.
11136
268a4a75 111372010-01-08 Jan Kratochvil <jan.kratochvil@redhat.com>
d24d8548
JK
11138
11139 * stabsread.c (read_args): Handle zero arguments.
11140
f0f20949
JB
111412009-01-08 Joel Brobecker <brobecker@adacore.com>
11142
11143 Cannot find in-tree libiconv.a after reconfigure.
11144 * acinclude.m4 (AM_ICONV): If we find an in-tree libiconv.a
11145 that we can use, then cache the path to this archive.
11146 * configure: Regenerate.
11147
6b6218c5
SS
111482010-01-07 Stan Shebs <stan@codesourcery.com>
11149
35b1e5cc
SS
11150 Make tracepoint operations go through target vector.
11151 * target.h (enum trace_find_type): New enum.
11152 (struct target_ops): New fields to_trace_init,
11153 to_download_tracepoint, to_download_trace_state_variable,
11154 to_trace_set_readonly_regions, to_trace_start, to_get_trace_status,
11155 to_trace_stop, to_trace_find, to_get_trace_state_variable_value,
11156 to_set_disconnected_tracing.
11157 (target_trace_init): New macro.
11158 (target_download_tracepoint): New macro.
11159 (target_download_trace_state_variable): New macro.
11160 (target_trace_start): New macro.
11161 (target_trace_set_readonly_regions): New macro.
11162 (target_get_trace_status): New macro.
11163 (target_trace_stop): New macro.
11164 (target_trace_find): New macro.
11165 (target_get_trace_state_variable_value): New macro.
11166 (target_set_disconnected_tracing): New macro.
11167 * target.c (update_current_target): Inherit and set defaults for
11168 tracepoint operations.
11169 * tracepoint.c (default_collect): Make globally visible.
11170 (target_is_remote): Remove, along with all calls.
11171 (tvariables_info): Call target_get_trace_state_variable_value.
11172 (remote_set_transparent_ranges): Remove.
11173 (trace_start_command): Call target_trace_init,
11174 target_download_tracepoint, etc.
11175 (download_tracepoint): Remove.
11176 (trace_stop_command): Simplify.
11177 (stop_tracing): Call target_trace_stop.
11178 (get_trace_status): Call target_get_trace_status.
11179 (trace_status_command): Add case for targets that cannot trace.
11180 (finish_tfind_command): Change to take numerical arguments, call
11181 target_trace_find.
11182 (trace_find_command): Update call to finish_tfind_command.
11183 (trace_find_pc_command): Ditto.
11184 (trace_find_tracepoint_command): Ditto.
11185 (trace_find_line_command): Ditto.
11186 (trace_find_range_command): Ditto.
11187 (trace_find_outside_command): Ditto.
11188 (set_disconnected_tracing_value): Call
11189 target_set_disconnected_tracing.
11190 * remote.c: Add protocol encoding bits from tracepoint.c.
11191 (trace_error): Move from tracepoint.c.
11192 (remote_get_noisy_reply): Ditto.
11193 (free_actions_list_cleanup_wrapper): Ditto.
11194 (free_actions_list): Ditto.
11195 (remote_trace_init): New function.
11196 (remote_download_tracepoint): New function.
11197 (remote_download_trace_state_variable): New function.
11198 (remote_trace_set_readonly_regions): New function.
11199 (remote_trace_start): New function.
11200 (remote_get_trace_status): New function.
11201 (remote_trace_stop): New function.
11202 (remote_trace_find): New function.
11203 (remote_download_trace_state_variable): New function.
11204 (remote_set_disconnected_tracing): New function.
11205 (init_remote_ops): Add tracepoint operations.
11206
6b6218c5
SS
11207 * tracepoint.c (trace_dump_command): Don't decr_pc_after_break.
11208
089b4803
TG
112092010-01-07 Tristan Gingold <gingold@adacore.com>
11210
11211 * symfile.c (build_section_addr_info_from_objfile): New function.
11212 (symbol_file_add_separate): Don't use offsets from objfile but
11213 built an addr info.
11214
d5551862
SS
112152010-01-06 Stan Shebs <stan@codesourcery.com>
11216
11217 Support disconnected tracing.
11218 * infcmd.c (detach_command): Ask whether to stop tracing.
11219 * cli/cli-cmds.c (quit_command): Ditto.
11220 * breakpoint.h (struct breakpoint): New field number_on_target.
11221 * breakpoint.c (create_tracepoint_from_upload): New function.
11222 (get_tracepoint_by_number_on_target): New function.
11223 * remote.c (struct remote): New field disconnected_tracing.
11224 (remote_disconnected_tracing_feature): New function.
11225 (remote_protocol_features): Add DisconnectedTracing.
11226 (struct uploaded_tp): New struct.
11227 (uploaded_tps): New global.
11228 (get_uploaded_tp): New function.
11229 (find_matching_tracepoint): New function.
11230 (remote_get_tracing_state): New function.
11231 (remote_start_remote): Call it.
11232 * tracepoint.c (disconnected_tracing): New global.
11233 (trace_start_command): Initialize number_on_target.
11234 (stop_tracing): New function, split out from...
11235 (trace_stop_command): Call stop_tracing.
11236 (get_trace_status): New function, split out from...
11237 (trace_status_command): Call get_trace_status, add info on
11238 disconnection behavior.
11239 (disconnect_or_stop_tracing): New function.
11240 (finish_tfind_command): Translate from number on target.
11241 (trace_find_tracepoint_command): Translate to number on target.
11242 (send_disconnected_tracing_value): New function.
11243 (set_disconnected_tracing): New function.
11244 (_initialize_tracepoint): Add disconnected-tracing variable.
11245 * NEWS: Mention disconnected tracing.
11246
15d123c9
TG
112472010-01-06 Tristan Gingold <gingold@adacore.com>
11248
11249 * symtab.c (lookup_global_symbol_from_objfile): Rename objfile
11250 parameter to main_objfile. Iterate on all separate debug objfiles.
11251 * symfile.h (symbol_file_add_separate)
11252 (find_separate_debug_file_by_debuglink): Remove parameter names.
11253 * symfile.c (symbol_file_add_separate): Use add_separate_objfile.
11254 (reread_symbols): Use free_objfile_separate_debug.
11255 * objfiles.h (struct objfile): Add separate_debug_objfile_link.
11256 Adjust comment.
11257 (objfile_separate_debug_iterate, add_separate_debug_objfile)
11258 (free_objfile_separate_debug): New prototypes.
11259 * objfiles.c (objfile_separate_debug_iterate): New function.
11260 (add_separate_debug_objfile, free_objfile_separate_debug): New
11261 functions.
11262 (free_objfile): Use free_objfile_separate_debug. Adjust for
11263 multiple separate debug objfile.
11264 (objfile_has_symbols): Adjust comment. Iterate on all separate
11265 debug objfiles.
11266 * minsyms.c (lookup_minimal_symbol): Adjust for multiple separate
11267 debug objfile.
11268 (lookup_minimal_symbol_text): Ditto.
11269 (lookup_minimal_symbol_by_pc_name): Ditto.
11270 (lookup_minimal_symbol_solib_trampoline): Ditto.
11271 (lookup_minimal_symbol_by_pc_section_1): Iterate on all separate
11272 debug objfiles.
11273
7a697b8d
SS
112742010-01-05 Stan Shebs <stan@codesourcery.com>
11275
11276 Add fast tracepoints.
11277 * arch-utils.h (default_fast_tracepoint_valid_at): Declare.
11278 * arch-utils.c (default_fast_tracepoint_valid_at): New function.
11279 * breakpoint.h (enum bptype): Add bp_fast_tracepoint.
11280 * breakpoint.c (tracepoint_type): New function.
11281 (ALL_TRACEPOINTS): Use it.
11282 (should_be_inserted): Ditto.
11283 (bpstat_check_location): Ditto.
11284 (print_one_breakpoint_location): Ditto.
11285 (user_settable_breakpoint): Ditto.
11286 (set_breakpoint_location_function): Ditto.
11287 (disable_breakpoints_in_shlibs): Ditto.
11288 (delete_trace_command): Ditto.
11289 (print_it_typical): Add bp_fast_tracepoint case.
11290 (bpstat_what): Ditto.
11291 (print_one_breakpoint_location): Ditto.
11292 (allocate_bp_location): Ditto.
11293 (mention): Ditto.
11294 (breakpoint_re_set_one): Ditto.
11295 (disable_command): Ditto.
11296 (enable_command): Ditto.
11297 (check_fast_tracepoint_sals): New function.
11298 (break_command_really): Call it.
11299 (ftrace_command): New function.
11300 (_initialize_breakpoint): Add ftrace command.
11301 * gdbarch.sh (fast_tracepoint_valid_at): New.
11302 * gdbarch.h, gdbarch.c: Regenerate.
11303 * i386-tdep.c (i386_fast_tracepoint_valid_at): New function.
11304 (i386_gdbarch_init): Use it.
11305 * remote.c (struct remote_state): New field fast_tracepoints.
11306 (PACKET_FastTracepoints): New packet config type.
11307 (remote_fast_tracepoint_feature): New function.
11308 (remote_protocol_features): Add FastTracepoints.
11309 (remote_supports_fast_tracepoints): New function.
11310 (_initialize_remote): Add FastTracepoints.
11311 * tracepoint.c (download_tracepoint): Add fast tracepoint option.
11312 * NEWS: Mention fast tracepoints.
11313
737a160e
JB
113142010-01-06 Joel Brobecker <brobecker@adacore.com>
11315
11316 * gdb-gdb.py: New file.
11317
ce6cca6d
MS
113182010-01-05 Michael Snyder <msnyder@vmware.com>
11319
11320 * infrun.c (handle_inferior_event): Fix typo in comment.
11321
0d15807d
JK
113222010-01-05 Jan Kratochvil <jan.kratochvil@redhat.com>
11323
11324 * symfile.c (syms_from_objfile): Remove the !MAINLINE conditional.
11325
7803799a
UW
113262010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
11327
c8d5aac9 11328 * features/Makefile (WHICH): Add s390-linux32, s390-linux64,
7803799a
UW
11329 and s390x-linux64.
11330 (s390-linux32-expedite): Define.
11331 (s390-linux64-expedite): Define.
11332 (s390x-linux64-expedite): Define.
11333 * features/s390-acr.xml: New file.
11334 * features/s390-fpr.xml: New file.
11335 * features/s390-core32.xml: New file.
11336 * features/s390-core64.xml: New file.
11337 * features/s390x-core64.xml: New file.
11338 * features/s390-linux32.xml: New file.
11339 * features/s390-linux64.xml: New file.
11340 * features/s390x-linux64.xml: New file.
11341 * features/s390-linux32.c: New generated file.
11342 * features/s390-linux64.c: New generated file.
11343 * features/s390x-linux64.c: New generated file.
11344
11345 * regformats/s390-linux32.dat: New generated file.
11346 * regformats/s390-linux64.dat: New generated file.
11347 * regformats/s390x-linux64.dat: New generated file.
11348 * regformats/reg-s390.dat: Remove.
11349 * regformats/reg-s390x.dat: Remove.
11350
11351 * s390-nat.c: Include "auxv.h" and <elf.h>.
11352 (HWCAP_S390_HIGH_GPRS): Define if undefined.
11353 (s390_target_wordsize): New function.
11354 (s390_auxv_parse): Likewise.
11355 (s390_get_hwcap): Likewise.
11356 (s390_read_description): Likewise.
11357 (_initialize_s390_nat): Install s390_auxv_parse and
11358 s390_read_description.
11359
11360 * s390-tdep.c: Include "features/s390-linux32.c",
11361 "features/s390-linux64.c", and "features/s390x-linux64.c".
11362 (struct gdbarch_tdep): Add gpr_full_regnum, pc_regnum, and cc_regnum.
11363 (s390_register_call_saved): New function.
11364 (s390_register_name): Remove.
11365 (s390_register_type): Remove.
11366 (s390_dwarf_regmap): Add lower half GPR pseudo DWARF CFI regnums.
11367 (s390_dwarf_reg_to_regnum): Remap GPR regnums to full GPRs.
11368 (s390_adjust_frame_regnum): Remap GPR regnums to lower halves for CFI.
11369 (s390_pseudo_register_name): New function.
11370 (s390_pseudo_register_type): New function.
11371 (s390_pseudo_register_read): Handle both 32-bit and 64-bit cases.
11372 Handle full GPR pesudos and varying pseudo register numbers.
11373 (s390_pseudo_register_write): Likewise
11374 (s390x_pseudo_register_read): Remove.
11375 (s390x_pseudo_register_write): Likewise.
11376 (s390_register_group): Remove.
11377 (s390_pseudo_register_group): New function.
11378 (s390_regmap_gregset): Add GPR upper halves.
11379 (s390x_regmap_gregset): Likewise.
11380 (s390_regmap_fpregset): Likewise.
11381 (s390_regmap_upper): New global variable.
11382 (s390_upper_regset): New global variable.
11383 (s390_upper_regset_sections): New global variable.
11384 (s390_regset_from_core_section): Handle GPR upper halves.
11385 (s390_core_read_description): New function.
11386 (s390_prologue_frame_unwind_cache): Set up ABI call-saved/clobbered
11387 register information. Handle varying pseudo register numbers.
11388 (s390_backchain_frame_unwind_cache): Likewise.
11389 (s390_frame_prev_register): Unwind full GPRs to show lower halves.
11390 (s390_stub_frame_unwind_cache): Handle varying pseudo register numbers.
11391 (s390_sigtramp_frame_unwind_cache): Unwind PSWM and PSWA as well as
11392 PC and CC pseudos. Unwind upper halves and full GPRs as appropriate.
11393 Handle varying pseudo register numbers.
11394 (s390_unwind_pc): Handle varying pseudo register numbers.
11395 (s390_dwarf2_prev_register): New function.
11396 (s390_dwarf2_frame_init_reg): Set up ABI call-saved/clobbered
11397 register information. Handle varying pseudo register numbers.
11398 Install s390_dwarf2_prev_register to unwind full GPRs.
11399 (s390_gdbarch_init): Handle target descriptions. Assign varying
11400 pseudo register numbers. Install s390_adjust_frame_regnum.
11401 (_initialize_s390_tdep): Initialize target descriptions.
11402
11403 * s390-tdep.h (S390_R0_UPPER_REGNUM .. S390_R15_UPPER_REGNUM): Define.
11404 (S390_NUM_REGS): Redefine to include upper half registers.
11405 (S390_PC_REGNUM, S390_CC_REGNUM): Remove.
11406 (S390_NUM_PSEUDO_REGS, S390_NUM_TOTAL_REGS): Likewise.
11407 (tdesc_s390_linux32): Add declaration.
11408 (tdesc_s390_linux64): Likewise.
11409 (tdesc_s390x_linux64): Likewise.
11410
1b1818e4
UW
114112010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
11412
11413 * regset.h (struct core_regset_section): Add HUMAN_NAME.
11414 * i386-linux-tdep.c (i386_linux_regset_sections): Fill in HUMAN_NAME.
11415 * ppc-linux-tdep.c (ppc_linux_vsx_regset_sections): Likewise.
11416 (ppc_linux_vmx_regset_sections): Likewise.
11417 (ppc_linux_fp_regset_sections): Likewise.
11418
11419 * corelow.c (get_core_register_section): Constify arguments.
11420 (get_core_registers): Use gdbarch_core_regset_sections instead
11421 of hard-coded platform-specific register section names.
11422
dcbf108f
UW
114232010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
11424
11425 * dwarf2loc.c (read_pieced_value): If a piece occupies part of
b3f41522 11426 a register, assume the least-significant part is used.
dcbf108f
UW
11427 (write_pieced_value): Likewise.
11428
704e9165
UW
114292010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
11430
11431 * printcmd.c: Include "arch-utils.h".
11432 (do_one_display): Re-parse expression if current architecture changed.
11433
c54eabfa
JK
114342010-01-03 Jan Kratochvil <jan.kratochvil@redhat.com>
11435 Joel Brobecker <brobecker@adacore.com>
11436
11437 * gdbtypes.c (check_typedef): New comment on type length.
11438 * value.c (allocate_value_lazy): Remove the unused atype variable. New
11439 comment on type length.
11440 (value_primitive_field): Keep the original TYPE value, new comment.
11441
50cb2941
JK
114422010-01-01 Jan Kratochvil <jan.kratochvil@redhat.com>
11443
11444 * cli/cli-script.c (process_next_line): Rename p1 as p_end and p2 as
11445 p_start. Change != comparisons to > and < comparisons.
11446
be66db07
JK
114472010-01-01 Jan Kratochvil <jan.kratochvil@redhat.com>
11448
11449 * cli/cli-script.c (process_next_line): Check P2 overrun.
11450
abd775ce
JB
114512009-01-01 Joel Brobecker <brobecker@adacore.com>
11452
11453 Update the copyright hearder to add year 2010 for most GDB files.
11454
6479260d
JB
114552009-01-01 Joel Brobecker <brobecker@adacore.com>
11456
11457 Fix build failure in inf-ptrace.c.
11458 * inf-ptrace.c (inf_ptrace_follow_fork): Fix typo.
11459
4a70f654
JB
114602010-01-01 Joel Brobecker <brobecker@adacore.com>
11461
11462 * top.c (print_gdb_version): Update copyright year.
11463
595939de 114642010-01-01, 10 Joel Brobecker <brobecker@adacore.com>
b9ee2233
JB
11465
11466 Fix break *FUN'address thread NUM.
11467 * ada-lex.l (task): Expand rule to also match the thread keyword.
11468
70575d34
JB
114692010-01-01 Joel Brobecker <brobecker@adacore.com>
11470
11471 Fix break *FUN'address task NUM.
11472 * ada-lex.l (task): New rule.
11473 * ada-lang.c (valid_task_id): Make sure the Ada task list has
11474 been built before using it.
11475
e1e4d4a4 11476For older changes see ChangeLog-2009.
c906108c
SS
11477\f
11478Local Variables:
11479mode: change-log
11480left-margin: 8
11481fill-column: 74
11482version-control: never
57da7796 11483coding: utf-8
c906108c 11484End:
This page took 1.899516 seconds and 4 git commands to generate.