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