* dwarf2loc.c (dwarf_expr_frame_base): Constify.
[binutils-gdb.git] / gdb / ChangeLog
1 2010-05-25 Tom Tromey <tromey@redhat.com>
2
3 * dwarf2loc.c (dwarf_expr_frame_base): Constify.
4 (dwarf_expr_frame_base_1): Likewise.
5 (read_pieced_value): Update.
6 (needs_frame_frame_base): Constify.
7 (dwarf2_tracepoint_var_loc): Likewise.
8 (dwarf2_tracepoint_var_access): Likewise.
9 (locexpr_describe_location_piece): Likewise.
10 (locexpr_describe_location_1): Likewise.
11 * dwarf2expr.h (struct dwarf_expr_context) <get_frame_base>:
12 Constify.
13 (data): Now const.
14 (struct dwarf_expr_piece) <v.literal.data>: Likewise.
15 (dwarf_expr_eval, read_uleb128, read_sleb128)
16 (dwarf2_read_address): Update.
17 * dwarf2expr.c (dwarf_expr_eval): Constify.
18 (read_uleb128): Likewise.
19 (read_sleb128): Likewise.
20 (dwarf2_read_address): Likewise.
21 (require_composition): Likewise.
22 (execute_stack_op): Likewise.
23 * dwarf2-frame.h (struct dwarf2_frame_state_reg) <loc.exp>: Now a
24 "const gdb_byte *".
25 * dwarf2-frame.c (struct dwarf2_frame_state_reg_info) <cfa_exp>:
26 Now const.
27 (no_get_frame_base): Constify.
28 (execute_stack_op): Likewise.
29 (execute_cfa_program): Likewise.
30 (read_encoded_value): Likewise.
31
32 2010-05-25 Doug Evans <dje@google.com>
33
34 * ser-pipe.c (pipe_open): Ignore SIGINTs in child.
35
36 * event-loop.h (GDB_READABLE, GDB_WRITABLE, GDB_EXCEPTION): Move to ...
37 * event-loop.c: ... here.
38 * tui/tui-io.c (tui_readline_output): Rename parameter `code' to
39 `error' for clarity.
40 (tui_getc): Pass correct value for `error' parameter to
41 tui_readline_output.
42
43 Add python gdb.GdbError and gdb.string_to_argv.
44 * NEWS: Document them.
45 * python/py-cmd.c (cmdpy_function): Don't print a traceback if
46 the exception is gdb.GdbError. Print a second traceback if there's
47 an error computing the error message.
48 (gdbpy_string_to_argv): New function.
49 * python/py-utils.c (gdbpy_obj_to_string): New function.
50 (gdbpy_exception_to_string): New function.
51 * python/python-internal.h (gdbpy_string_to_argv): Declare.
52 (gdbpy_obj_to_string, gdbpy_exception_to_string): Declare.
53 (gdbpy_gdberror_exc): Declare.
54 * python/python.c (gdbpy_gdberror_exc): New global.
55 (_initialize_python): Initialize gdbpy_gdberror_exc and create
56 gdb.GdbError.
57 (GdbMethods): Add string_to_argv.
58
59 2010-05-21 Pierre Muller <muller@ics.u-strasbg.fr>
60
61 * windows-nat.c (display_selector): Call GetLastError to give better
62 failure explanation.
63
64 2010-05-24 Pedro Alves <pedro@codesourcery.com>
65
66 * config.in: Regenerate.
67
68 2010-05-23 Jan Kratochvil <jan.kratochvil@redhat.com>
69
70 Code cleanup.
71 * target.c (push_target): Return only void. Remove the return value
72 comment.
73 * target.h (push_target): Return only void.
74
75 2010-05-23 Pedro Alves <pedro@codesourcery.com>
76
77 Update gnulib from latest git.
78 (250b80067c1e1d8faa0c42fb572f721975b929c5)
79
80 * gnulib/memcmp.c: Removed.
81 * gnulib/memchr.valgrind: New.
82 * gnulib/stddef.in.h: New.
83 * gnulib/Makefile.am: Updated.
84 * gnulib/memchr.c: Updated.
85 * gnulib/memmem.c: Updated.
86 * gnulib/stdint.in.h: Updated.
87 * gnulib/str-two-way.h: Updated.
88 * gnulib/string.in.h: Updated.
89 * gnulib/wchar.in.h: Updated.
90
91 * gnulib/extra/link-warning.h: Removed.
92 * gnulib/extra/c++defs.h: New.
93 * gnulib/extra/warn-on-use.h: New.
94 * gnulib/extra/arg-nonnull.h: Updated.
95
96 * gnulib/m4/extensions.m4: Updated.
97 * gnulib/m4/gnulib-cache.m4: Updated.
98 * gnulib/m4/gnulib-common.m4: Updated.
99 * gnulib/m4/gnulib-comp.m4: Updated.
100 * gnulib/m4/gnulib-tool.m4: Updated.
101 * gnulib/m4/include_next.m4: Updated.
102 * gnulib/m4/longlong.m4: Updated.
103 * gnulib/m4/memchr.m4: Updated.
104 * gnulib/m4/memmem.m4: Updated.
105 * gnulib/m4/stdint.m4: Updated.
106 * gnulib/m4/string_h.m4: Updated.
107 * gnulib/m4/memcmp.m4: Removed.
108 * gnulib/m4/onceonly_2_57.m4: Removed.
109 * gnulib/m4/00gnulib.m4: New.
110 * gnulib/m4/mmap-anon.m4: New.
111 * gnulib/m4/multiarch.m4: New.
112 * gnulib/m4/onceonly.m4: New.
113 * gnulib/m4/stddef_h.m4: New.
114 * gnulib/m4/warn-on-use.m4: New.
115 * gnulib/m4/wchar.m4: Removed.
116 * gnulib/m4/wchar_h.m4: New.
117 * gnulib/m4/wchar_t.m4: New.
118 * gnulib/m4/wint_t.m4: New.
119
120 * aclocal.m4: Regenerate.
121 * config.in: Likewise.
122 * configure: Likewise.
123 * gnulib/Makefile.in: Likewise.
124
125 2010-05-21 Tom Tromey <tromey@redhat.com>
126
127 * dwarf2loc.c (extract_bits_primitive): New function.
128 (extract_bits): Likewise.
129 (insert_bits): Likewise.
130 (copy_bitwise): Likewise.
131 (read_pieced_value): Do all operations in bits.
132 (write_pieced_value): Likewise.
133 * dwarf2expr.h (struct dwarf_expr_piece) <offset>: New field.
134 * dwarf2expr.c (add_piece): New arguments bit_piece, offset.
135 Always use xrealloc to resize piece array.
136 (execute_stack_op) <DW_OP_reg0>: Handle DW_OP_bit_piece.
137 <DW_OP_piece>: Update.
138 <DW_OP_bit_piece>: New case.
139
140 2010-05-21 Tom Tromey <tromey@redhat.com>
141
142 * dwarf2loc.c (read_pieced_value): Exit loop when result is full.
143 <DWARF_VALUE_OPTIMIZED_OUT>: New case.
144 * dwarf2expr.h (enum dwarf_value_location)
145 <DWARF_VALUE_OPTIMIZED_OUT>: New constant.
146 * dwarf2expr.c (dwarf_expr_stack_empty_p): New function.
147 (add_piece): Handle empty piece.
148 (execute_stack_op) <DW_OP_piece>: Handle
149 DWARF_VALUE_OPTIMIZED_OUT.
150
151 2010-05-21 Tom Tromey <tromey@redhat.com>
152
153 * eval.c (evaluate_subexp_standard) <BINOP_SUBSCRIPT>: Call
154 evaluate_subexp, not evaluate_subexp_with_coercion.
155
156 2010-05-21 Pierre Muller <muller@ics.u-strasbg.fr>
157
158 * dwarf2read.c (new_symbol): Handle DW_AT_variable_parameter
159 attribute.
160
161 2010-05-21 Tom Tromey <tromey@redhat.com>
162
163 * dwarf2loc.c (read_pieced_value): Work properly when 'v' has an
164 offset.
165 (write_pieced_value): Likewise.
166
167 2010-05-21 Pierre Muller <muller@ics.u-strasbg.fr>
168
169 * dwarf2read.c (process_die): Also allow DW_TAG_const_type
170 and DW_TAG_volatile_type.
171 (new_symbol): Likewise.
172
173 2010-05-20 Pierre Muller <muller@ics.u-strasbg.fr>
174
175 * p-valprint.c (pascal_val_print): Call get_array_bounds
176 to obtain the number of elements in an array.
177
178 2010-05-19 Doug Evans <dje@google.com>
179
180 * python.c (gdbpy_print_stack): Ensure output ends with a newline.
181
182 * python.c (source_python_script): Add comment.
183 (source_python_script_for_objfile): Remove unnecessary call to
184 gdbpy_print_stack.
185
186 2010-05-18 Jan Kratochvil <jan.kratochvil@redhat.com>
187 Sergio Durigan Junior <sergiodj@redhat.com>
188
189 Code cleanup.
190 * parse.c (exp_iterate): Use operator_length wrapper function.
191
192 2010-05-18 Michael Snyder <msnyder@vmware.com>
193
194 * ada-lang.c: White space.
195 * ada-typeprint.c: White space.
196 * ada-valprint.c: White space.
197 * addrmap.c: White space.
198 * auxv.c: White space.
199 * ax-gdb.c: White space.
200
201 2010-05-18 Hui Zhu <teawater@gmail.com>
202
203 * linux-fork.c (inferior_call_waitpid_cleanup): Add check
204 for oldfp.
205 (inferior_call_waitpid): Move make_cleanup out of check.
206 Check the return of waitpid.
207 (delete_checkpoint_command): Add pptid to save fi->parent_ptid.
208
209 2010-05-17 Michael Snyder <msnyder@vmware.com>
210
211 * tui/tui.c: White space.
212 * tui/tui-data.c: White space.
213 * tui/tui-disasm.c: White space.
214 * tui/tui-file.c: White space.
215 * tui/tui-interp.c: White space.
216 * tui/tui-main.c: White space.
217 * tui/tui-out.c: White space.
218 * tui/tui-regs.c: White space.
219 * tui/tui-source.c: White space.
220 * tui/tui-stack.c: White space.
221 * tui/tui-win.c: White space.
222 * tui/tui-winsource.c: White space.
223
224 * procfs.c: White space.
225
226 * python/py-auto-load.c: White space.
227 * python/py-block.c: White space.
228 * python/py-breakpoint.c: White space.
229 * python/py-cmd.c: White space.
230 * python/py-function.c: White space.
231 * python/py-lazy-string.c: White space.
232 * python/py-objfile.c: White space.
233 * python/py-param.c: White space.
234 * python/py-prettyprint.c: White space.
235 * python/py-progspace.c: White space.
236 * python/py-symtab.c: White space.
237 * python/python.c: White space.
238 * python/py-type.c: White space.
239 * python/py-utils.c: White space.
240 * python/py-value.c: White space.
241
242 * mi/mi-cmd-break.c: White space.
243 * mi/mi-cmd-env.c: White space.
244 * mi/mi-cmds.c: White space.
245 * mi/mi-cmd-stack.c: White space.
246 * mi/mi-cmd-var.c: White space.
247 * mi/mi-console.c: White space.
248 * mi/mi-getopt.c: White space.
249 * mi/mi-interp.c: White space.
250 * mi/mi-main.c: White space.
251 * mi/mi-out.c: White space.
252 * mi/mi-parse.c: White space.
253
254 * cli/cli-cmds.c: White space.
255 * cli/cli-decode.c: White space.
256 * cli/cli-dump.c: White space.
257 * cli/cli-interp.c: White space.
258 * cli/cli-logging.c: White space.
259 * cli/cli-script.c: White space.
260 * cli/cli-setshow.c: White space.
261
262 * valarith.c: White space.
263 * valops.c: White space.
264 * valprint.c: White space.
265 * value.c: White space.
266 * varobj.c: White space.
267 * xcoffread.c: White space.
268 * xml-support.c: White space.
269 * xml-tdesc.c: White space.
270
271 2010-05-17 Andreas Schwab <schwab@redhat.com>
272
273 PR gdb/11092
274 * c-lang.c (c_printstr): Compute real length of NUL terminated
275 string at first.
276
277 2010-05-17 Joel Brobecker <brobecker@adacore.com>
278
279 * parse.c (parse_exp_in_context): When block is not NULL, use
280 its associated language to parse the expression instead of
281 the current_language.
282
283 2010-05-17 Joel Brobecker <brobecker@adacore.com>
284
285 * jv-lang.c (java_lookup_class): Remove commented out code.
286 (type_from_class): Likewise.
287 (java_op_print_tab): Remove commented-out elements.
288
289 2010-05-17 Joel Brobecker <brobecker@adacore.com>
290
291 * ada-lang.c (to_fixed_range_type): The the raw index type as
292 argument instead of the raw type name. Remove orig_type parameter.
293 Update calls throughout.
294 (ada_fixup_array_indexes_type): New function.
295 (ada_array_bound_from_type): Add call to ada_fixup_array_indexes_type.
296 * ada-lang.h (ada_fixup_array_indexes_type): Add declaration.
297 * ada-typeprint.c (print_range_type): Renames print_range_type_named.
298 Remove name parameter.
299 (print_array_type): Add call to ada_fixup_array_indexes_type.
300 Update calls to print_range_type.
301 (ada_print_type): Update calls to print_range_type.
302
303 2010-05-17 Pierre Muller <muller@ics.u-strasbg.fr>
304
305 * dwarf2read.c (read_set_type): Set type length if
306 DW_AT_byte_size attribute is present.
307
308 2010-05-17 Pierre Muller <muller@ics.u-strasbg.fr>
309
310 * p-valprint.c (pascal_val_print): Handle set type if range limits
311 are undefined but size is known.
312
313 2010-05-17 Pedro Alves <pedro@codesourcery.com>
314
315 * procfs.c: Reformat.
316
317 2010-05-16 Michael Snyder <msnyder@vmware.com>
318
319 * target.c: White space.
320 * target-descriptions.c: White space.
321 * target-memory.c: White space.
322 * thread.c: White space.
323 * top.c: White space.
324 * tracepoint.c: White space.
325 * trad-frame.c: White space.
326 * tramp-frame.c: White space.
327 * ui-file.c: White space.
328 * ui-out.c: White space.
329 * user-regs.c: White space.
330 * utils.c: White space.
331
332 * scm-exp.c: White space.
333 * scm-lang.c: White space.
334 * scm-valprint.c: White space.
335 * sentinel-frame.c: White space.
336 * ser-base.c: White space.
337 * ser-go32.c: White space.
338 * serial.c: White space.
339 * ser-mingw.c: White space.
340 * ser-pipe.c: White space.
341 * ser-tcp.c: White space.
342 * ser-unix.c: White space.
343 * solib.c: White space.
344 * solib-darwin.c: White space.
345 * solib-frv.c: White space.
346 * solib-irix.c: White space.
347 * solib-osf.c: White space.
348 * solib-pa64.c: White space.
349 * solib-som.c: White space.
350 * solib-spu.c: White space.
351 * solib-svr4.c: White space.
352 * solib-target.c: White space.
353 * source.c: White space.
354 * stabsread.c: White space.
355 * stack.c: White space.
356 * std-regs.c: White space.
357 * symfile.c: White space.
358 * symmisc.c: White space.
359 * symtab.c: White space.
360
361 2010-05-16 Michael Snyder <msnyder@vmware.com>
362
363 * source.c (_initialize_source): Add "rev" as an abbreviation
364 for the "reverse-search" command.
365
366 2010-05-16 Michael Snyder <msnyder@vmware.com>
367
368 * record.c: White space.
369 * regcache.c: White space.
370 * reggroups.c: White space.
371 * remote-fileio.c: White space.
372 * remote-m32r-sdi.c: White space.
373 * remote-mips.c: White space.
374 * remote-sim.c: White space.
375 * remote.c: White space.
376 (process_g_packet): Remove orphan braces.
377
378 2010-05-15 Michael Snyder <msnyder@vmware.com>
379
380 * parse.c: White space.
381 * p-lang.c: White space.
382 * posix-hdep.c: White space.
383 * printcmd.c: White space.
384 * progspace.c: White space.
385 * prologue-value.c: White space.
386 * psymtab.c: White space.
387 * p-typeprint.c: White space.
388 * p-valprint.c: White space.
389
390 * objc-lang.c: White space.
391 * objfiles.c: White space.
392 * observer.c: White space.
393 * osabi.c: White space.
394 * osdata.c: White space.
395
396 * m2-lang.c: White space.
397 * m2-valprint.c: White space.
398 * macrocmd.c: White space.
399 * macroexp.c: White space.
400 * macroscope.c: White space.
401 * macrotab.c: White space.
402 * main.c: White space.
403 * maint.c: White space.
404 * mdebugread.c: White space.
405 * memattr.c: White space.
406 * minsyms.c: White space.
407 * monitor.c: White space.
408
409 2010-05-14 Michael Snyder <msnyder@vmware.com>
410
411 * jv-lang.c: White space.
412 * jv-typeprint.c: White space.
413 * jv-valprint.c: White space.
414 * language.c: White space.
415 * libunwind-frame.c: White space.
416 * linespec.c: White space.
417 * linux-nat.c: White space.
418 * linux-record.c: White space.
419 * linux-thread-db.c: White space.
420
421 * infcall.c: White space.
422 * inf-child.c: White space.
423 * infcmd.c: White space.
424 * inferior.c: White space.
425 * inf-loop.c: White space.
426 * inflow.c: White space.
427 * inline-frame.c: White space.
428 * interps.c: White space.
429
430 * gcore.c: White space.
431 * gdb.c: White space.
432 * gdbtypes.c: White space.
433 * gnu-nat.c: White space.
434 * gnu-v2-abi.c: White space.
435 * gnu-v3-abi.c: White space.
436
437 * findcmd.c: White space.
438 * findvar.c: White space.
439 * fork-child.c: White space.
440 * frame-base.c: White space.
441 * frame.c: White space.
442 * frame-unwind.c: White space.
443 * f-valprint.c: White space.
444
445 * elfread.c: White space.
446 * environ.c: White space.
447 * eval.c: White space.
448 * event-loop.c: White space.
449 * event-top.c: White space.
450 * exceptions.c: White space.
451 * exec.c: White space.
452 * expprint.c: White space.
453
454 * dbxread.c: White space.
455 * dcache.c: White space.
456 * disasm.c: White space.
457 * doublest.c: White space.
458 * dsrec.c: White space.
459 * dummy-frame.c: White space.
460 * dwarf2expr.c: White space.
461 * dwarf2-frame.c: White space.
462 * dwarf2loc.c: White space.
463 * dwarf2read.c: White space.
464
465 2010-05-14 Phil Muldoon <pmuldoon@redhat.com>
466
467 PR python/11482
468
469 * python/py-value.c (valpy_hash): New function.
470 (value_object_type): Register valpy_hash.
471
472 2010-05-14 Hui Zhu <teawater@gmail.com>
473 Michael Snyder <msnyder@vmware.com>
474
475 * linux-fork.c (gdbthread.h): New include.
476 (fork_info): Add parent_ptid.
477 (inferior_call_waitpid_cleanup, inferior_call_waitpid): New
478 functions.
479 (delete_checkpoint_command): Call inferior_call_waitpid.
480 (checkpoint_command): Set parent_ptid.
481
482 2010-05-13 Michael Snyder <msnyder@vmware.com>
483
484 * dictionary.c: Re-indent to GNU coding standard.
485
486 * charset.c: White space.
487 * c-lang.c: White space.
488 * cli-out.c: White space.
489 * coffread.c: White space.
490 * complaints.c: White space.
491 * completer.c: White space.
492 * corefile.c: White space.
493 * corelow.c: White space.
494 * cp-abi.c: White space.
495 * cp-namespace.c: White space.
496 * cp-support.c: White space.
497 * cp-valprint.c: White space.
498 * c-typeprint.c: White space.
499 * c-valprint.c: White space.
500 * blockframe.c: White space.
501 * breakpoint.c: White space.
502 * buildsym.c: White space.
503 * blockframe.c: White space.
504 * bcache.c: White space.
505 * gdbarch.sh: White space, add blank lines.
506 * arch-utils.c: Ditto.
507 * gdbarch.c: Regenerate.
508 * frame.c: White space, add blank lines.
509 * stack.c: White space, add blank lines.
510 (initialize_stack): Remove long-dead code.
511
512 2010-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
513
514 Code cleanup.
515 * dwarf2loc.c (dwarf2_evaluate_loc_desc): Change the parameter to type.
516 (locexpr_read_variable, loclist_read_variable): Update the callers.
517
518 2010-05-13 Jan Kratochvil <jan.kratochvil@redhat.com>
519
520 Code cleanup.
521 * dwarf2read.c (die_type, die_descriptive_type): Remove variable type.
522 Remove check of NULL returned by tag_type_to_type.
523 (die_containing_type): Remove variable type. Remove type_die variable
524 initialization. Remove check of NULL returned by tag_type_to_type.
525
526 2010-05-11 Pierre Muller <muller@ics.u-strasbg.fr>
527
528 PR exp/11530.
529 * gdbtypes.c (lookup_struct_elt_type): Also lookup
530 names of unnamed structures or unions.
531
532 2010-05-11 Pierre Muller <muller@ics.u-strasbg.fr>
533
534 * procfs.c (proc_watchpoint_address): New function.
535 (procfs_stopped_by_watchpoint): Remove useless check after
536 find_procinfo_or_die call.
537 (procfs_stopped_data_address): New function.
538 (procfs_use_watchpoints): Register new watchpoint related function.
539
540 2010-05-11 Tom Tromey <tromey@redhat.com>
541
542 * eval.c (evaluate_subexp_standard): Revert inadvertent change.
543
544 2010-05-10 Michael Snyder <msnyder@vmware.com>
545
546 * utils.c: White space cleanup.
547
548 2010-05-10 Tom Tromey <tromey@redhat.com>
549
550 * eval.c (ptrmath_type_p): Add 'lang' argument.
551 (evaluate_subexp_standard): Update.
552 (evaluate_subexp_with_coercion): Update.
553 * language.h (CAST_IS_CONVERSION): Add 'LANG' argument.
554
555 2010-05-10 Michael Snyder <msnyder@vmware.com>
556
557 * utils.c (do_fclose_cleanup) Restore local variable.
558
559 2010-05-09 Doug Evans <dje@google.com>
560
561 * record.c (init_record_core_ops): Rename record_core to record-core.
562
563 2010-05-08 Joel Brobecker <brobecker@adacore.com>
564
565 Implement task switching on pa-hpux.
566 * inf-ttrace.c (inf_ttrace_get_ada_task_ptid): New function.
567 (inf_ttrace_target): Set t->to_get_ada_task_ptid.
568
569 2010-05-08 Pierre Muller <muller@ics.u-strasbg.fr>
570
571 * valops.c (find_overload_match): Add missing i18n markup.
572
573 2010-05-08 Pierre Muller <muller@ics.u-strasbg.fr>
574
575 * p-exp.y (exp : SIZEOF '(' exp ')'): New rule.
576
577 2010-05-08 Jan Kratochvil <jan.kratochvil@redhat.com>
578
579 * dwarf2read.c (typename_concat): Use (char *) NULL terminated stdarg
580 list for the obconcat call.
581 * mdebugread.c (parse_symbol): Likewise.
582 * stabsread.c (define_symbol, read_member_functions, read_cpp_abbrev):
583 Likewise.
584 * symfile.c (obconcat): Replace the s1, s2 and s3 parameters by `...'.
585 New variable ap. Remove variables len and val.
586 * symfile.h (obconcat): Likewise for the prototype.
587
588 2010-05-07 Michael Snyder <msnyder@vmware.com>
589
590 * python/python.c (execute_gdb_command): Remove unused variables.
591 * python/py-block.c (gdbpy_block_for_pc): Remove unused variable.
592 * python/py-breakpoint.c (gdbpy_breakpoint_created):
593 Remove unused variable.
594 * python/py-cmd.c (cmdpy_function): Remove unused variable.
595 (cmdpy_completer): Remove unused variable.
596 * python/py-frame.c (frapy_find_sal): Remove unused variable.
597 * python/py-function.c (fnpy_call): Remove unused variable.
598 * python/py-objfile.c (objfile_to_objfile_object):
599 Remove unused variable.
600 * python/py-param.c (parmpy_init): Remove unused variable.
601 * python/py-prettyprint.c (apply_varobj_pretty_printer):
602 Remove unused variable.
603 (gdbpy_default_visualizer): Remove unused variable.
604 * python/py-progspace.c (pspace_to_pspace_object):
605 Remove unused variable.
606 * python/py-symtab.c (symtab_and_line_to_sal_object):
607 Remove unused variable.
608 * python/py-type.c (typy_template_argument):
609 Remove unused variable.
610 * python/py-value.c (valpy_string): Remove unused variable.
611 (convert_value_from_python): Remove unused variables.
612
613 2010-05-07 Michael Snyder <msnyder@vmware.com>
614
615 * valops.c (value_cast_pointers): Restore unused variable 'type1',
616 and use it to compute variable 't1'.
617
618 2010-05-07 Joel Brobecker <brobecker@adacore.com>
619
620 * ada-lang.c (assign_aggregate): Remove unused variable.
621
622 2010-05-07 Sami Wagiaalla <swagiaal@redhat.com>
623
624 PR C++/7943:
625 * valops.c (find_overload_match): Handle fsym == NULL case.
626 Add int no_adl argument.
627 (find_oload_champ_namespace_loop): Call make_symbol_overload_list_adl
628 when appropriate.
629 Add int no_adl argument.
630 (find_oload_champ_namespace): Add int no_adl argument.
631 * parse.c (operator_length_standard): Return length for OP_ADL_FUNC
632 expression.
633 * expprint.c (op_name_standard): Added string for OP_ADL_FUNC case.
634 * eval.c (evaluate_subexp_standard): Added OP_ADL_FUNC case.
635 Evaluate arguments and use them to perform ADL lookup.
636 Pass no_adl argument to find_overload_match.
637 Disable adl lookup when evaluating a fully qualified OP_FUNCALL.
638 * cp-support.h: Added prototype for
639 make_symbol_overload_list_namespace.
640 * cp-support.c (make_symbol_overload_list_namespace): New function.
641 (make_symbol_overload_list_adl_namespace): New function.
642 (make_symbol_overload_list_adl): New function.
643 (make_symbol_overload_list_using): Moved code to add function to
644 overload set to make_symbol_overload_list_namespace.
645 * c-exp.y: create UNKNOWN_CPP_NAME token.
646 Add parse rule for ADL functions.
647 (classify_name): Recognize an UNKNOWN_CPP_NAME.
648
649 2010-05-07 Jan Kratochvil <jan.kratochvil@redhat.com>
650
651 * fbsd-nat.c (fbsd_make_corefile_notes): Add cast to NULL used as
652 sentinel.
653
654 2010-05-07 Joel Brobecker <brobecker@adacore.com>
655
656 Implement task switching on solaris targets.
657 * sol-thread.c (thread_db_find_thread_from_tid)
658 (sol_get_ada_task_ptid): New functions.
659 (init_sol_thread_ops): Set sol_thread_ops.to_get_ada_task_ptid.
660
661 2010-05-07 Pedro Alves <pedro@codesourcery.com>
662
663 * remote.c (remote_query_supported_append): Use reconcat.
664 (remote_query_supported): Install a cleanup. Use reconcat.
665
666 2010-05-07 Pedro Alves <pedro@codesourcery.com>
667
668 * gdbarch.sh (qsupported): Delete.
669 * gdbarch.h, gdbarch.c: Regenerate.
670 * remote.c (remote_query_supported): Remove use of
671 gdbarch_qsupported.
672
673 2010-05-06 Sergio Durigan Junior <sergiodj@redhat.com>
674
675 * xml-syscall.c (syscall_start_syscalls_info): Remove unused
676 function.
677
678 2010-05-06 Michael Snyder <msnyder@vmware.com>
679
680 * xml-support.c (xinclude_start_include): Delete unused variable.
681 (xml_process_xincludes): Delete unused variable.
682 * xml-syscall.c (syscall_parse_xml): Delete unused variable.
683 * target-descriptions.c (tdesc_gdb_type): Delete unused variable.
684 (tdesc_find_arch_register): Delete unused variable.
685 (tdesc_use_registers): Delete unused variable.
686 * xml-tdesc.c (tdesc_start_target): Delete unused variable.
687 * inferior.c (print_inferior): Delete unused variable.
688 * record.c (record_open_1): Delete unused variable.
689 (record_restore): Delete unused variable.
690 (cmd_record_save): Delete unused variable.
691 * gcore.c (derive_heap_segment): Delete unused variable.
692 (objfile_find_memory_regions): Use unused variable.
693 * jit.c (jit_inferior_init): Delete unused variable.
694 * progspace.c (clone_program_space): Delete unused variable.
695 (pspace_empty_p): Delete unused variable.
696
697 * frame-unwind.c (frame_unwind_find_by_frame):
698 Delete unused variable.
699 * gnu-v2-abi.c (gnuv2_value_rtti_type): Delete unused variable.
700 * cp-support.c (mangled_name_to_comp): Delete unused variable.
701 (method_name_from_physname): Delete unused variable.
702 (cp_func_name): Delete unused variable.
703 (cp_validate_operator): Delete unused variable.
704 * cp-namespace.c (cp_scan_for_anonymous_namespaces):
705 Delete unused variable.
706 * trad-frame.c (trad_frame_get_prev_register):
707 Delete unused variable.
708 * tramp-frame.c (tramp_frame_cache): Delete unused variable.
709
710 * serial.c (serial_for_fd): Delete unused variable.
711 * mdebugread.c (psymtab_to_symtab_1): Delete unused variable.
712 * top.c (execute_command): Delete unused variable.
713 (init_main): Delete unused variable.
714 * utils.c (do_fclose_cleanup): Delete unused variable.
715 (do_all_inferior_continuations): Delete unused variable.
716 (initialize_utils): Delete unused variable.
717 (internal_problem_mode): Delete unused global.
718 * frame.c (get_prev_frame): Delete unused global.
719 (get_frame_locals_address): Delete unused global.
720 (get_frame_args_address): Delete unused global.
721
722 * p-typeprint.c (pascal_type_print_base): Delete unused variable.
723 (pascal_type_print_varspec_prefix): Delete unused variable.
724 * f-typeprint.c (f_type_print_base): Delete unused variable.
725 (f_type_print_varspec_suffix): Delete unused variable.
726 * m2-typeprint.c (m2_print_type): Delete unused variable.
727 (m2_long_set): Delete unused variable.
728 * ada-valprint.c (ada_val_print_1): Delete unused variable.
729 * d-valprint.c (dynamic_array_type): Delete unused variable.
730 * f-valprint.c (f77_get_dynamic_length_of_aggregate):
731 Delete unused variable.
732 (f77_create_arrayprint_offset_tbl): Delete unused variable.
733 * m2-valprint.c (m2_val_print): Delete unused variable.
734
735 * ui-out.c (ui_out_field_int): Delete unused variable.
736 (ui_out_field_fmt_int): Delete unused variable.
737 * varobj.c (varobj_list_children): Delete unused variable.
738 (varobj_set_value): Delete unused variable.
739 (install_new_value_visualizer): Delete unused variable.
740 (varobj_set_visualizer): Delete unused variable.
741 (varobj_update): Delete unused variable.
742 (varobj_editable_p): Delete unused variable.
743 (c_value_of_root): Delete unused variable.
744 (cplus_describe_child): Delete unused variable.
745
746 * ada-lang.c (add_defn_to_vec): Delete unused variable.
747 (decode_constrained_packed_array_type): Delete unused variable.
748 (add_defn_to_vec): Delete unused variable.
749 (symbol_completion_match): Delete unused variable.
750 (value_tag_from_contents_and_address): Delete unused variable.
751 (ada_evaluate_subexp): Delete unused variable.
752 * c-lang.c (classify_type): Delete unused variable.
753 * f-lang.c (f_printstr): Delete unused variable.
754 * objc-lang.c (objc_printstr): Delete unused variable.
755 * ada-tasks.c (get_known_tasks_addr): Delete unused variable.
756 * jv-lang.c (type_from_class): ifdef unused variable.
757 (java_class_name_from_physname): Delete unused variable.
758 * m2-lang.c (m2_printstr): Delete unused variable.
759
760 * objfiles.c (objfile_relocate): Delete unused variable.
761 * maint.c (_initialize_maint_cmds): Delete unused variable.
762 * demangle.c (_initialize_demangler): Delete unused variable.
763 * corefile.c (reopen_exec_file): Delete unused variable.
764 * dwarf2expr.c (dwarf2_read_address): Delete unused variable.
765 * dwarf2-frame.c (decode_frame_entry): Delete unused variable.
766
767 * osabi.c (_initialize_gdb_osabi): Delete unused variable.
768 * memattr.c (mem_delete): Delete unused variable.
769 (invalidate_target_mem_regions): Delete unused variable.
770 * mem-break.c (default_memory_insert_breakpoint):
771 Delete unused variable.
772 * target.c (target_get_osdata): Delete unused variable.
773 * parse.c (length_of_subexp): Delete unused variable.
774 (prefixify_subexp): Delete unused variable.
775 (exp_iterate): Delete unused variable.
776 * reverse.c (delete_bookmark_command): Delete unused variable.
777
778 * macrocmd.c (_initialize_macrocmd): Delete unused variable.
779 * macroexp.c (gather_arguments): Delete unused variable.
780 (substitute_args): Delete unused variable.
781 * completer.c (gdb_completer_loc_break_characters): Unused, delete.
782 * gdbarch.sh (gdbarch_printable_names): Delete unused variable.
783 (_initialize_gdbarch): Delete unused variable.
784 * gdbarch.c, gdbarch.h: Regenerate.
785 * arch-utils.c (initialize_current_architecture):
786 Delete unused variable.
787 (_initialize_gdbarch_utils): Delete unused variable.
788 * gdbtypes.c (make_cv_type): Delete unused variable.
789 (make_type_with_address_space): Delete unused variable.
790
791 * linespec.c (decode_compound): Delete unused variable.
792 * dictionary.c (iterator_next_hashed): Delete unused variable.
793 * infcall.c (call_function_by_hand): Delete unused variable.
794 * infcmd.c (step_1): Delete unused variable.
795 (registers_info): Delete unused variable.
796 (attach_command): Delete unused variable.
797 * infrun.c (follow_exec): Delete unused variable.
798 (handle_step_into_function_backwards): Delete unused variable.
799 (_initialize_infrun): Delete unused variable.
800 * stack.c (parse_frame_specification_1): Delete unused variable.
801 (frame_info): Delete unused variable.
802 (backtrace_command_1): Delete unused variable.
803 (catch_info): Delete unused variable.
804
805 * eval.c (evaluate_subexp_standard): Delete unused variable.
806 * valops.c (value_cast_pointers): Delete unused variable.
807 (value_dynamic_cast): Delete unused variable.
808 (value_array): Delete unused variable.
809 (find_overload_match): Delete unused variable.
810 * valarith.c (value_subscript): Delete unused variable.
811 (value_binop): Delete unused variable.
812 * valprint.c (_initialize_valprint): Delete unused variable.
813 * printcmd.c (print_command_1): Delete unused variable.
814 (address_info): Delete unused variable.
815 (printf_command): Delete unused variable.
816
817 * auxv.c (target_auxv_search): Delete unused variable.
818 * blockframe.c (get_frame_block): Delete unused variable.
819 * regcache.c (regcache_cpy): Delete unused variable.
820 (regcache_cpy_no_passthrough): Delete unused variable.
821 * charset.c (wchar_iterate): Delete unused variable.
822 (find_charset_names): Delete unused variable.
823 (_initialize_charset): Delete unused variable.
824 * disasm.c (do_mixed_source_and_assembly):
825 Delete unused variable.
826 * source.c (set_default_source_symtab_and_line):
827 Delete unused variable.
828 (set_substitute_path_command): Delete unused variable.
829 * value.c (preserve_values): Delete unused variable.
830 (value_from_double): Delete unused variable.
831
832 2010-05-05 Michael Snyder <msnyder@vmware.com>
833
834 * psymtab.c (lookup_partial_symbol): Delete unused variable.
835 (find_last_source_symtab_from_partial): Delete unused variable.
836 * symfile.c (place_section): Delete unused variable.
837 (default_symfile_offsets): Delete unused variable.
838 (get_debug_link_info): Delete unused variable.
839 (find_separate_debug_file_by_debuglink): Delete unused variable.
840 (add_symbol_file_command): Delete unused variable.
841 (symfile_find_segment_sections): Delete unused variable.
842 * symmisc.c (free_symtab): Delete unused variable.
843 (dump_symtab_1): Delete unused variable.
844 * symtab.c (lookup_symbil_aux_quick): Delete unused variable.
845 (find_pc_sect_symtab): Delete unused variable.
846 (skip_prologue_using_lineinfo): Delete unused variable.
847 (sources_info): Delete unused variable.
848 (completion_list_add_name): Delete unused variable.
849 (expand_line_sal): Delete unused variable.
850
851 * breakpoint.c (validate_commands_for_breakpoint):
852 Delete unused variables.
853 (insert_catchpoint): Delete unused variable.
854 (update_watchpoint): Delete unused variable.
855 (insert_bp_location): Delete unused variable.
856 (insert_breakpoint_locations): Delete unused variable.
857 (remove_breakpoint_1): Delete unused variable.
858 (software_breakpoint_inserted_here_p): Delete unused variable.
859 (watchpoints_triggered): Delete unused variable.
860 (bpstat_check_watchpoint): Delete unused variable.
861 (bpstat_stop_status): Delete unused variable.
862 (print_one_breakpoint_location): Delete unused variable.
863 (allocate_bp_location): Delete unused variable.
864 (create_breakpoint): Delete unused variable.
865 (watch_command_1): Delete unused variable.
866 (catch_exception_command_1): Delete unused variable.
867 (catch_ada_exception_command): Delete unused variable.
868 (delete_breakpoint): Delete unused variable.
869 (breakpoint_re_set_one): Delete unused variable.
870 (do_enable_breakpoint): Delete unused variable.
871
872 2010-05-06 Pedro Alves <pedro@codesourcery.com>
873
874 * amd64-tdep.c: Include disasm.h.
875 (amd64_insn_length_fprintf, amd64_insn_length_init_dis)
876 (amd64_insn_length): Moved to disasm.c and renamed.
877 (fixup_riprel): Adjust.
878 * disasm.c (do_ui_file_delete): New.
879 (gdb_insn_length): New.
880 (gdb_buffered_insn_length_fprintf)
881 (gdb_buffered_insn_length_init_dis)
882 (gdb_buffered_insn_length): New, moved from amd64-tdep.c, and
883 renamed.
884 * disasm.h (gdb_insn_length): Declare.
885 (gdb_buffered_insn_length): Declare.
886
887 2010-05-06 Pedro Alves <pedro@codesourcery.com>
888
889 * remote.c (clear_threads_parsing_context): New.
890 (remote_threads_info): Delete unused null_cleanup. Install a
891 cleanup to clear the threads_parsing_context in case parsing
892 throws.
893
894 2010-05-05 Michael Snyder <msnyder@vmware.com>
895
896 * c-exp.y (parse_string_or_char): Delete unused variable.
897 (c_lex): Delete unused variable.
898 * cp-name-parser.y (cpname_lex): Delete unused variable.
899 * ada-exp.y (find_primitive_type): Delete unused variable.
900 (write_var_or_type): Delete unused variable.
901 * jv-exp.y (java_parse): Delete unused variable.
902 (push_expression_name): Delete unused variable.
903 * p-exp.y (pascal_lex): Delete unused variable.
904
905 2010-05-05 Pedro Alves <pedro@codesourcery.com>
906
907 * remote.c (remote_threads_info): Really revert previous previous
908 change.
909
910 2010-05-05 Michael Snyder <msnyder@vmware.com>
911
912 * elfread.c (elf_symtab_read): Delete unused variable.
913 (find_separate_debug_file_by_buildid): Delete unused variables.
914 (elf_symfile_read): Delete unused variable.
915
916 * coffread.c (coff_symfile_read): Delete unused variables.
917
918 * coff-pe-read.c (add_pe_exported_sym): Delete unused variable.
919 (read_pe_exported_syms): Delete unused variable.
920
921 * stabsread.c (define_symbol): Delete unused variable.
922
923 * dwarf2read.c (read_type_comp_unit_head): Delete unused variable.
924 (process_psymtab_comp_unit): Delete unused variable.
925 (dwarf2_build_psymtabs_hard): Delete unused variable.
926 (load_partial_comp_unit): Delete unused variable.
927 (create_all_comp_units): Delete unused variable.
928 (scan_partial_symbols): Delete unused variable.
929 (add_partial_symbol): Delete unused variable.
930 (add_partial_namespace): Delete unused variable.
931 (add_partial_enumeration): Delete unused variable.
932 (load_full_comp_unit): Delete unused variable.
933 (process_full_comp_unit): Delete unused variable.
934 (read_file_scope): Delete unused variable.
935 (read_type_unit_scope): Delete unused variable.
936 (process_structure_scope): Delete unused variable.
937 (process_enumeration_scope): Delete unused variable.
938 (read_tag_ptr_to_member_type): Delete unused variable.
939 (read_typedef): Delete unused variable.
940 (read_partial_die): Delete unused variable.
941 (decode_locdesc): Delete unused variable.
942 (zeroed_partial_die): Delete unused global variable.
943
944 * tui/tui-interp.c (_initialize_tui_interp):
945 Delete unused variable.
946 * tui/tui-regs.c tui_display_registers_from):
947 Delete unused variable.
948 (tui_check_register_values): Delete unused variable.
949 (tui_register_format): Delete unused variable.
950 * tui/tui-win.c (_initialize_tui_win): Delete unused variable.
951 * tui/tui-windata.c (tui_display_data_from_line):
952 Delete unused variables.
953 (tui_vertical_data_scroll): Delete unused variables.
954
955 2010-05-05 Michael Snyder <msnyder@vmware.com>
956
957 * remote.c (remote_threads_info): Revert questionable part of
958 the previous change.
959
960 2010-05-05 Michael Snyder <msnyder@vmware.com>
961
962 * mi/mi-out.c (mi_table_begin): Delete unused variable.
963 * mi/mi-cmd-var.c (print_varobj): Delete unused variable.
964 (mi_cmd_var_list_children): Delete unused variable.
965 (varobj_update_one): Delete unused variable.
966 * mi/mi-cmd-break.c (mi_cmd_break_insert): Delete unused variables.
967 * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals):
968 Delete unused variable.
969 (mi_cmd_stack_list_variables): Delete unused variable.
970 (list_args_or_locals): Delete unused variable.
971 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file):
972 Delete unused variables.
973 (mi_cmd_file_list_exec_source_files): Delete unused variable.
974 * mi/mi-cmd-target.c (mi_cmd_target_file_delete):
975 Delete unused variable.
976 * mi/mi-interp.c (mi_interpreter_exec): Delete unused variable.
977 (mi_cmd_interpreter_exec): Delete unused variable.
978 (mi_on_normal_stop): Delete unused variable.
979 * mi/mi-main.c (run_one_inferior): Delete unused variable.
980 (print_one_inferior): Delete unused variables.
981 (mi_execute_command): Delete unused variable.
982 (mi_cmd_execute): Delete unused variable.
983 (timestamp): Delete unused variable.
984
985 * cli/cli-dump.c (dump_memory_to_file): Delete unused variable.
986 (restore_binary_file): Delete unused variable.
987 * cli/cli-decode.c (deprecated_cmd_warning): Delete unused variables.
988 * cli/cli-script.c (define_command): Delete unused variables.
989 (recurse_read_control_structure): Delete unused variable.
990 (script_from_file): Delete unused variable.
991 * cli/cli-cmds.c (complete_command): Delete unused variable.
992 (disassemble_command): Delete unused variable.
993
994 * ax-gdb.c (gen_struct_elt_for_reference): Delete unused variables.
995 * tracepoint.c (delete_trace_variable_command):
996 Delete unused variables.
997 (encode_actions_1): Delete unused variables.
998 (start_tracing): Delete unused variable.
999 (trace_status_mi): Delete unused variable.
1000 (tfind_1): Delete unused variable.
1001 (trace_find_pc_command): Delete unused variable.
1002 (trace_find_line_command): Delete unused variables.
1003 (trace_find_range_command): Delete unused variables.
1004 (trace_find_outside_command): Delete unused variables.
1005 (parse_tracepoint_definition): Delete unused variables.
1006 (tfile_fetch_registers): Delete unused variable.
1007
1008 * dcache.c (dcache_init): Delete unused variable.
1009 (dcache_info): Delete unused variable.
1010
1011 * remote.c (remote_threads_info): Delete unused variable.
1012 (process_stop_reply) :Delete unused variable.
1013 (remote_get_trace_status): Delete unused variables.
1014
1015 * linux-thread-db.c (add_thread_db_info): Delete unused variable.
1016 (thread_from_lwp): Delete unused variable.
1017 (enable_thread_event_reporting): Delete unused variable.
1018 (check_for_thread_db): Delete unused variables.
1019 (thread_db_find_new_threads_2): Delete unused variable.
1020
1021 * linux-fork.c (info_checkpoints_command): Delete unused variables.
1022 (checkpoint_command): Delete unused variable.
1023 (linux_fork_context): Delete unused variables.
1024
1025 * linux-nat.c (linux_parent_pid): Delete unused global variable.
1026 (linux_tracefork_child): Delete unused variable.
1027 (linux_child_follow_fork): Delete unused variable.
1028 (linux_nat_detach): Delete unused variable.
1029 (linux_handle_extended_wait): Delete unused variable.
1030 (linux_nat_has_pending_sigint): Delete unused variable.
1031 (linux_nat_find_memory_regions): Delete unused variable.
1032 (linux_nat_make_corefile_notes): Delete unused variables.
1033 (linux_nat_info_proc_cmd): Delete unused variable.
1034 (linux_proc_pending_signals): Delete unused variable.
1035 (linux_nat_stop_lwp): Delete unused variables.
1036 (_initialize_linux_nat): Delete unused variable.
1037
1038 * ser-pipe.c (pipe_ops): Delete unused global variable.
1039
1040 * linux-record.c (record_linux_system_call):
1041 Delete unused variables.
1042
1043 * corelow.c (core_xfer_partial): Delete unused variables.
1044
1045 * solib-svr4.c (find_program_interpreter): Delete unused variable.
1046 (svr4_solib_create_inferior_hook): Add ifdef around
1047 conditionally-used variable declarations.
1048
1049 * solib.c (solib_find): Delete unused variable.
1050 (free_so_symbols): Delete unused variable.
1051 (info_sharedlibrary_command): Delete unused variable.
1052 (reload_shared_libraries_1): Delete unused variable.
1053 (_initialize_solib): Delete unused variable.
1054
1055 * i386-tdep.c (i386_supply_xstateregset) Delete unused variable.
1056 (i386_collect_xstateregset): Delete unused variable.
1057 * i387-tdep.c (i387_print_float_info): Delete unused variable.
1058
1059 * features/i386/i386-mmx.c (initialize_tdesc_i386_mmx):
1060 Delete unused variable 'type'.
1061
1062 2010-05-05 Joel Brobecker <brobecker@adacore.com>
1063
1064 * gdbtypes.h (MAX_OF_TYPE, MIN_OF_TYPE): Delete macros. *
1065 ada-lang.c: Remove comment mentioning these macros.
1066 * m2-exp.y: Delete commented out code.
1067
1068 2010-05-05 Joel Brobecker <brobecker@adacore.com>
1069
1070 * sparc-tdep.c (sparc_structure_or_union_p): Return non-zero
1071 for array types.
1072 * sparc64-tdep.c (sparc64_structure_or_union_p): Likewise.
1073
1074 2010-05-04 Pierre Muller <muller@ics.u-strasbg.fr>
1075
1076 ARI fix: Remove ATTRIBUTE_UNUSED throughout.
1077 * arm-linux-tdep.c (arm_linux_cleanup_svc): Remove
1078 ATTRIBUTE_UNUSED.
1079 (cleanup_kernel_helper_return): Likewise.
1080 * arm-tdep.c (copy_unmodified): Likewise.
1081 (copy_preload): Likewise.
1082 (copy_copro_load_store): Likewise.
1083 (cleanup_branch): Likewise.
1084 (copy_b_bl_blx): Likewise.
1085 (copy_bx_blx_reg): Likewise.
1086 (copy_alu_imm): Likewise.
1087 (copy_alu_reg): Likewise.
1088 (copy_alu_shifted_reg): Likewise.
1089 (cleanup_load): Likewise.
1090 (cleanup_store): Likewise.
1091 (cleanup_block_load_pc): Likewise.
1092 (cleanup_svc): Likewise.
1093 (copy_undef): Likewise.
1094 (copy_unpred): Likewise.
1095 * remote.c (register_remote_support_xml): Likewise.
1096
1097 2010-05-05 Hui Zhu <teawater@gmail.com>
1098
1099 * gdbarch.h (gdbarch_has_dos_based_file_system): Update comment.
1100
1101 2010-05-04 Mark Kettenis <kettenis@gnu.org>
1102
1103 * remote.c (register_remote_support_xml)
1104 (remote_query_supported_append, remote_query_supported): Add cast
1105 to NULL used as sentinel.
1106 * tracepoint.c (tvariables_info_1): Likewise.
1107 * utils.c (add_internal_problem_command): Likewise.
1108
1109 2010-05-04 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
1110
1111 * dwarf2loc.c (read_pieced_value, write_pieced_value,
1112 dwarf2_evaluate_loc_desc): Handle not being able to access DWARF
1113 registers gracefully.
1114
1115 2010-05-04 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
1116
1117 * exec.c (print_section_info): Display entry point without arch
1118 specific parts.
1119
1120 2010-05-04 Pierre Muller <muller@ics.u-strasbg.fr>
1121
1122 PR exp/11349.
1123 * printcmd.c (x_command): Only dereference once implicitly for
1124 TYPE_CODE_REF.
1125
1126 2010-05-03 Doug Evans <dje@google.com>
1127
1128 * event-loop.c (gdb_timer): Delete unused global.
1129 (create_timer): Update.
1130
1131 2010-05-03 Jan Kratochvil <jan.kratochvil@redhat.com>
1132
1133 * cp-namespace.c (cp_lookup_symbol_imports): Support ALIAS for the
1134 CURRENT->DECLARATION case.
1135 * cp-support.h (struct using_direct): Provide extended comment.
1136
1137 2010-05-03 Mark Kettenis <kettenis@gnu.org>
1138
1139 * hppaobsd-tdep.c (HPPAOBSD_SIZEOF_GREGS): Renamed from
1140 HPPABSD_SIZEOF_GREGS.
1141 (HPPAOBSD_SIZEOF_FPREGS): New define.
1142 (hppaobsd_supply_gregset): Renamed from hppabsd_supply_gregset.
1143 (hppaobsd_supply_fpregset): New function.
1144 (hppaobsd_gregset): Renamed from hppabsd_gregset.
1145 (hppaobsd_fpregset): New variable.
1146 (hppaobsd_regset_from_core_section): Handle floating-point registers.
1147 (_initialize_hppabsd_tdep): Remove spurious blank line.
1148
1149 2010-05-03 Pierre Muller <muller@ics.u-strasbg.fr>
1150
1151 PR pascal/11349.
1152 * p-valprint.c (pascal_value_print): Always dereference a value with
1153 type code TYPE_CODE_REF.
1154
1155 2010-05-03 Pedro Alves <pedro@codesourcery.com>
1156
1157 * remote.c (remote_notice_signals): New.
1158 (remote_start_remote): In non-stop mode, update the remote end on
1159 which signals it can silently pass.
1160 (init_remote_ops): Install remote_notice_signals.
1161
1162 2010-05-02 Jan Kratochvil <jan.kratochvil@redhat.com>
1163
1164 * cli/cli-cmds.h (error_no_arg): Remove. Move the comment ...
1165 * command.h (error_no_arg): ... here. Remove NORETURN, change
1166 ATTR_NORETURN to ATTRIBUTE_NORETURN.
1167 * defs.h (NORETURN, ATTR_NORETURN): Remove.
1168 (perror_with_name, verror, error, error_stream, vfatal, fatal)
1169 (internal_verror, internal_error, nomem): Remove NORETURN, change
1170 ATTR_NORETURN to ATTRIBUTE_NORETURN.
1171 * exceptions.c (throw_exception, deprecated_throw_reason, throw_verror)
1172 (throw_vfatal, throw_error): Remove NORETURN.
1173 (throw_it): Remove NORETURN, change ATTR_NORETURN to ATTRIBUTE_NORETURN.
1174 * exceptions.h (throw_exception, throw_verror, throw_vfatal)
1175 (throw_error, deprecated_throw_reason): Remove NORETURN, change
1176 ATTR_NORETURN to ATTRIBUTE_NORETURN.
1177 * linespec.c (cplusplus_error): Remove NORETURN, change ATTR_NORETURN
1178 to ATTRIBUTE_NORETURN for prototype, for the definition only remove
1179 NORETURN.
1180 * remote-mips.c (mips_error): Change NORETURN to ATTRIBUTE_NORETURN.
1181 * remote-sim.c (gdb_os_error): Change ATTR_NORETURN to
1182 ATTRIBUTE_NORETURN.
1183 * target.c (tcomplain): Likewise.
1184 * target.h (noprocess): Remove NORETURN, change ATTR_NORETURN to
1185 ATTRIBUTE_NORETURN.
1186 * utils.c (verror, error, vfatal, fatal, error_stream, internal_verror)
1187 (internal_error, perror_with_name, nomem): Remove NORETURN.
1188 * xml-support.h (gdb_xml_error): Change ATTR_NORETURN to
1189 ATTRIBUTE_NORETURN.
1190
1191 2010-05-02 Jan Kratochvil <jan.kratochvil@redhat.com>
1192
1193 * ada-lang.c (lim_warning): Change ATTR_FORMAT to ATTRIBUTE_PRINTF.
1194 * amd64-tdep.c (amd64_insn_length_fprintf): Likewise.
1195 * cli-out.c (cli_field_fmt): New ATTRIBUTE_PRINTF.
1196 (cli_message, out_field_fmt): Change ATTR_FORMAT to ATTRIBUTE_PRINTF.
1197 * complaints.c (find_complaint): New ATTRIBUTE_PRINTF.
1198 (vcomplaint): Change ATTR_FORMAT to ATTRIBUTE_PRINTF.
1199 * complaints.h (complaint, internal_complaint): Likewise.
1200 * defs.h: Change ATTR_FORMAT to ATTRIBUTE_PRINTF in the top comment.
1201 (ATTR_FORMAT): Remove.
1202 (query, nquery, yquery, vprintf_filtered, vfprintf_filtered)
1203 (fprintf_filtered, fprintfi_filtered, printf_filtered, printfi_filtered)
1204 (vprintf_unfiltered, vfprintf_unfiltered, fprintf_unfiltered)
1205 (printf_unfiltered, xasprintf, xvasprintf, xstrprintf, xstrvprintf)
1206 (xsnprintf, verror, error, vfatal, fatal, internal_verror)
1207 (internal_error, internal_vwarning, internal_warning, warning)
1208 (vwarning): Change ATTR_FORMAT to ATTRIBUTE_PRINTF.
1209 * disasm.c (fprintf_disasm): Likewise.
1210 * exceptions.c (throw_it): Likewise.
1211 * exceptions.h (exception_fprintf, throw_verror, throw_vfatal)
1212 (throw_error): Likewise.
1213 * language.h (type_error, range_error): Likewise.
1214 * linespec.c (cplusplus_error): Likewise.
1215 * mi/mi-interp.c (mi_interp_query_hook): Likewise.
1216 * mi/mi-out.c (mi_field_fmt, mi_message): Likewise.
1217 * monitor.c (monitor_debug): Likewise.
1218 * parser-defs.h (parser_fprintf): Likewise.
1219 * serial.h (serial_printf): Likewise.
1220 * tui/tui-hooks.c (tui_query_hook): Likewise.
1221 * ui-out.c (default_field_fmt, default_message, uo_field_fmt)
1222 (uo_message): Likewise.
1223 * ui-out.h (ui_out_field_fmt, ui_out_message): Likewise.
1224 * utils.c (vfprintf_maybe_filtered, internal_vproblem, defaulted_query):
1225 Likewise.
1226 * xml-support.h (gdb_xml_debug, gdb_xml_error): Likewise.
1227
1228 2010-05-02 Pedro Alves <pedro@codesourcery.com>
1229
1230 * cli-out.c (cli_table_begin, cli_table_body, cli_table_end)
1231 (cli_table_header, cli_begin, cli_end, cli_field_int)
1232 (cli_field_skip, cli_field_string, cli_field_fmt, cli_spaces)
1233 (cli_text, cli_message, cli_wrap_hint, cli_flush, cli_redirect):
1234 Delete forward declarations.
1235 (cli_ui_out_impl): Move below the callbacks.
1236 (_initialize_cli_out): Delete.
1237
1238 2010-05-02 Pedro Alves <pedro@codesourcery.com>
1239
1240 * README: Use consistent `GDB' and `GDBserver' spellings.
1241
1242 2010-05-02 Jan Kratochvil <jan.kratochvil@redhat.com>
1243
1244 * cli/cli-dump.h (parse_and_eval_with_error): Remove the declaration.
1245
1246 2010-05-01 Pedro Alves <pedro@codesourcery.com>
1247
1248 * infrun.c (prepare_for_detach): In non-stop, context switch to
1249 the thread that got the event before handling the event.
1250
1251 2010-04-30 Tom Tromey <tromey@redhat.com>
1252
1253 * symtab.c (symbol_set_names): Fix typo.
1254
1255 2010-04-30 Pierre Muller <muller@ics.u-strasbg.fr>
1256
1257 * python/py-param.c (parm_constants): Avoid ARI warning
1258 by adding ARI comment.
1259 (parmpy_init): Likewise.
1260
1261 2010-04-30 Pierre Muller <muller@ics.u-strasbg.fr>
1262
1263 * windows-tdep.c (windows_get_tlb_type): Remember last GDBARCH
1264 and created type for re-use.
1265
1266 2010-04-30 Pierre Muller <muller@ics.u-strasbg.fr>
1267
1268 * NEWS: Mention gdbserver support for x86_64 Windows 64-bit.
1269
1270 2010-04-29 Doug Evans <dje@google.com>
1271
1272 * ser-base.h (reschedule): Delete prototype.
1273 * ser-base.c (reschedule): Make static.
1274
1275 2010-04-29 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
1276
1277 * arm-linux-tdep.c (ARM_LINUX_JB_PC): Remove.
1278 (ARM_LINUX_JB_PC_FPA): Add, offset of PC in longjmp buffer for FPA.
1279 (ARM_LINUX_JB_PC_EABI): Add, offset of PC in longjmp buffer for
1280 EABI.
1281 (arm_linux_init_abi): Set up JB_PC field dependent on FP model in
1282 use.
1283
1284 2010-04-29 Pedro Alves <pedro@codesourcery.com>
1285
1286 PR gdb/11557
1287
1288 * regcache.c (registers_changed): Rename to ...
1289 (registers_changed_ptid): ... this, and only delete register cache
1290 entries matching the ptid filter argument.
1291 (registers_changed): Reimplement on top of registers_changed_ptid.
1292 * regcache.h (registers_changed_ptid): Declare.
1293 * target.c (target_resume): Flush register caches.
1294
1295 2010-04-29 Phil Muldoon <pmuldoon@redhat.com>
1296 Tom Tromey <tromey@redhat.com>
1297 Thiago Jung Bauermann <bauerman@br.ibm.com>
1298
1299 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-parameter.
1300 (SUBDIR_PYTHON_SRCS): Likewise.
1301 (py-parameter.o): New rule.
1302 * python/py-parameter.c: New file.
1303 * python/python-internal.h (gdbpy_initialize_parameter)
1304 (gdbpy_parameter, gdbpy_parameter_value)
1305 (gdbpy_parse_command_name): Declare.
1306 * python/py-cmd.c (parse_command_name): Rename to
1307 gdbpy_parse_command_name.
1308 (gdbpy_parse_command_name): Accept a starting list parameter and
1309 use over cmdlist.
1310 (cmdpy_init): Use gdbpy_parse_command_name.
1311 * python/python.c (parameter_to_python): Rename to
1312 gdbpy_parameter_to_python. Accept enum var_types and value.
1313 (gdbpy_parameter): Use gdbpy_parameter_value.
1314 (_initialize_python): Call gdbpy_initialize_parameters.
1315
1316 2010-04-29 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
1317
1318 * MAINTAINERS: Add myself for write after approval privileges.
1319
1320 2010-04-29 Mihail Zenkov <mihail.zenkov@gmail.com>
1321
1322 D language support.
1323 * Makefile.in (SFILES): Add d-lang.c d-valprint.c.
1324 (COMMON_OBS): Add d-lang.o d-valprint.o.
1325 (HFILES_NO_SRCDIR): Add d-lang.h.
1326 * NEWS: Mention D language support.
1327 * c-lang.c (c_emit_char, exp_descriptor_c): Make public.
1328 * c-lang.h (c_emit_char, exp_descriptor_c): Add declaration.
1329 * d-lang.c: New file.
1330 * d-lang.h: New file.
1331 * d-valprint.c: New file.
1332 * defs.h (enum language): Add language_d.
1333 * dwarf2read.c (set_cu_language): Add DW_LANG_D.
1334 * language.c (binop_result_type, integral_type, character_type)
1335 (string_type, boolean_type, structured_type): Add language_d.
1336 * symfile.c (init_filename_language_table): Add language_d.
1337 * symtab.c: Include d-lang.h.
1338 (symbol_init_language_specific, symbol_find_demangled_name)
1339 (symbol_natural_name, lookup_symbol_in_language)
1340 (symbol_demangled_name, symbol_matches_domain): Add language_d.
1341
1342 2010-04-27 Joel Brobecker <brobecker@adacore.com>
1343
1344 * solib-svr4.c (solib_svr4_r_map): Expand function description.
1345
1346 2010-04-27 Joel Brobecker <brobecker@adacore.com>
1347
1348 * symfile.c (init_filename_language_table): Register .dg files
1349 with language_ada.
1350
1351 2010-04-27 Joel Brobecker <brobecker@adacore.com>
1352
1353 * gdbtypes.h (struct main_type): Expand comment about target_type
1354 field.
1355
1356 2010-04-27 Pedro Alves <pedro@codesourcery.com>
1357 Tristan Gingold <gingold@adacore.com>
1358
1359 * symfile.c (reread_symbols): Also search for file in libraries.
1360 Update comment.
1361
1362 2010-04-27 Joel Brobecker <brobecker@adacore.com>
1363
1364 * configure.tgt: Treat x86-lynxos targets as x86 bareboard targets
1365 in terms of configuration.
1366
1367 2010-04-27 Jan Kratochvil <jan.kratochvil@redhat.com>
1368
1369 * objfiles.c: Include solist.h.
1370 (free_all_objfiles): New variable so. Check stale solist objfiles.
1371 * symfile.c (symbol_file_clear): Swap the order of free_all_objfiles
1372 and no_shared_libraries.
1373
1374 2010-04-27 Joel Brobecker <brobecker@adacore.com>
1375
1376 ARI warning fix.
1377 * python/py-auto-load.c (source_section_scripts): Remove trailing
1378 new-line in i18n string.
1379
1380 2010-04-26 Doug Evans <dje@google.com>
1381
1382 * serial.c (serial_write): Handle serial_debug_p akin to serial_read.
1383
1384 2010-04-26 Tom Tromey <tromey@redhat.com>
1385
1386 * cli/cli-decode.c (complete_on_cmdlist): Make two passes over the
1387 command list.
1388
1389 2010-04-26 Pierre Muller <muller@ics.u-strasbg.fr>
1390
1391 Removal of config/i386/nm-i386sol2.h native configuration file.
1392 * config/i386/nm-i386sol2.h: Remove file.
1393 * config/i386/i386sol2.mh: Remove NAT_FILE definition.
1394 * config/i386/sol2-64.mh: Idem.
1395 * config/djgpp/fnchange.lst: Remove reference to that file.
1396 * Makefile.in (HFILES_NO_SRCDIR): Idem.
1397
1398 2010-04-26 Pierre Muller <muller@ics.u-strasbg.fr>
1399
1400 PR breakpoints/11531.
1401 * config/i386/nm-i386sol2.h (CANNOT_STEP_HW_WATCHPOINTS): Remove
1402 macro definition and related comment.
1403 * infrun.c (CANNOT_STEP_HW_WATCHPOINTS): Remove macro.
1404 (resume): Remove code and comment related to this macro.
1405
1406 2010-04-26 Jan Kratochvil <jan.kratochvil@redhat.com>
1407
1408 * cp-namespace.c (cp_lookup_symbol_in_namespace): Fix alloca size.
1409 Fix whitespace.
1410
1411 2010-04-24 Pedro Alves <pedro@codesourcery.com>
1412
1413 * defs.h: Adjust comment.
1414 * filesystem.h, filesystem.c: New files.
1415 * Makefile.in (SFILES): Add filesystem.c.
1416 (COMMON_OBS): Add filesystem.o.
1417 * solib.c (solib_find): Handle DOS-based filesystems. Handle
1418 different target and host path flavours.
1419 * arm-symbian-tdep.c (arm_symbian_init_abi): Set
1420 has_dos_based_file_system on the gdbarch.
1421 * arm-wince-tdep.c (arm_wince_init_abi): Ditto.
1422 * i386-cygwin-tdep.c (i386_cygwin_init_abi): Ditto.
1423 * i386-tdep.c (i386_go32_init_abi): Ditto.
1424 * gdbarch.sh (has_dos_based_file_system): New.
1425 * gdbarch.h, gdbarch.c: Regenerate.
1426 * NEWS: Mention improved support for remote targets with DOS-based
1427 filesystems. Mention new `set/show target-file-system-kind'
1428 commands.
1429
1430 2010-04-23 Stan Shebs <stan@codesourcery.com>
1431
1432 * ax.h (struct agent_expr): Merge in agent_reqs fields, add some
1433 comments.
1434 (struct agent_reqs): Remove.
1435 (ax_reg_mask): Declare.
1436 * ax-general.c (new_agent_expr): Add gdbarch argument, set new fields.
1437 (free_agent_expr): Free reg_mask.
1438 (ax_print): Add scope and register mask info.
1439 (ax_reqs): Remove agent_reqs argument, use agent expression
1440 fields, and move part of register mask computation to...
1441 (ax_reg_mask): New function.
1442 * ax-gdb.c (gen_trace_static_fields): Call it.
1443 (gen_traced_pop): Ditto.
1444 (is_nontrivial_conversion): Add dummy gdbarch to new_agent_expr.
1445 (gen_trace_for_var): Pass gdbarch to new_agent_expr.
1446 (gen_trace_for_expr): Ditto, and clear optimized_out flag.
1447 (gen_eval_for_expr): Ditto, and require an rvalue.
1448 (agent_command): Call ax_reqs.
1449 (agent_eval_command): Ditto.
1450 * tracepoint.c (report_agent_reqs_errors): Use agent expression fields.
1451 (validate_action_line): Ditto.
1452 (collect_symbol): Ditto.
1453 (encode_actions_1): Ditto.
1454
1455 2010-04-23 Daniel Jacobowitz <dan@codesourcery.com>
1456 Paul Pluzhnikov <ppluzhnikov@google.com>
1457 Jan Kratochvil <jan.kratochvil@redhat.com>
1458
1459 Fix deadlock on looped list of loaded shared objects.
1460 * solib-svr4.c (LM_PREV): New function.
1461 (IGNORE_FIRST_LINK_MAP_ENTRY): Use it.
1462 (svr4_current_sos): Check for correct l_prev. New variables prev_lm
1463 and next_lm. Clear prev_lm for solib_svr4_r_ldsomap.
1464 * config/djgpp/fnchange.lst: Add translation for solib-corrupted.exp.
1465
1466 2010-04-23 Doug Evans <dje@google.com>
1467
1468 * configure.ac (CONFIG_SRCS): Add py-auto-load.o even if not using
1469 python.
1470 * configure: Regenerate.
1471 * main.c: #include "python/python.h".
1472 (captured_main): Defer loading auto-loaded scripts until after
1473 local_gdbinit has been sourced.
1474 * python/py-auto-load.c (gdbpy_global_auto_load): New global.
1475 (load_auto_scripts_for_objfile): New function.
1476 (auto_load_new_objfile): Call it.
1477 * python/python.h (gdbpy_global_auto_load): Declare.
1478 (load_auto_scripts_for_objfile): Declare.
1479
1480 Add support for auto-loading scripts from .debug_gdb_scripts section.
1481 * NEWS: Add entry for .debug_gdb_scripts.
1482 * Makefile.in SUBDIR_PYTHON_OBS): Add py-auto-load.o.
1483 (SUBDIR_PYTHON_SRCS): Add py-auto-load.c.
1484 (py-auto-load.o): New rule.
1485 * cli/cli-cmds.c (find_and_open_script): Make externally visible.
1486 * cli/cli-cmds.h (find_and_open_script): Update prototype.
1487 * python/py-auto-load.c: New file.
1488 * python/python-internal.h: #include <stdio.h>.
1489 (set_python_list, show_python_list): Declare.
1490 (gdbpy_initialize_auto_load): Declare.
1491 (source_python_script_for_objfile): Declare.
1492 * python/python.c: Remove #include of observer.h.
1493 (gdbpy_auto_load): Moved to py-auto-load.c.
1494 (GDBPY_AUTO_FILENAME): Ditto.
1495 (gdbpy_new_objfile): Delete.
1496 (source_python_script_for_objfile): New function.
1497 (set_python_list, show_python_list): Make externally visible.
1498 (_initialize_python): Move "auto-load" command to py-auto-load.c
1499 and observer_attach_new_objfile to py-auto-load.c.
1500
1501 2010-04-23 Jerome Guitton <guitton@adacore.com>
1502
1503 * alpha-tdep.c (INSN_OPCODE, MEM_RA, MEM_RB, MEM_DISP, BR_RA)
1504 (OPR_FUNCTION, OPR_HAS_IMMEDIATE, OPR_RA, OPR_RC, OPR_LIT): New macros.
1505 (lda_opcode, stq_opcode, bne_opcode, subq_opcode, subq_function):
1506 New constants.
1507 (alpha_heuristic_analyze_probing_loop): New function.
1508 (alpha_heuristic_frame_unwind_cache): In the prologue analysis, detect
1509 and handle cases when a stack probe loop is generated.
1510 * alpha-mdebug-tdep.c (alpha_mdebug_frameless): New function.
1511 (alpha_mdebug_max_frame_size_exceeded): New function.
1512 (alpha_mdebug_after_prologue): Use alpha_mdebug_frameless.
1513 (alpha_mdebug_frame_sniffer, alpha_mdebug_frame_base_sniffer):
1514 Return 0 when the maximum debuggable frame size has been exceeded.
1515
1516 2010-04-23 Joel Brobecker <brobecker@adacore.com>
1517
1518 Fix ARI warning.
1519 * ppc-linux-nat.c (booke_cmp_hw_point): Do not mark inline.
1520
1521 2010-04-20 Chris Moller <cmoller@redhat.com>
1522
1523 PR 10179
1524
1525 * symtab.c (rbreak_command): Added code to include a filename
1526 specification in the rbreak argument.
1527 * NEWS: Added a brief description of filename-qualified rbreak.
1528
1529 2010-04-22 Jan Kratochvil <jan.kratochvil@redhat.com>
1530
1531 Fix crashes on dangling display expressions.
1532 * ada-lang.c (ada_operator_check): New function.
1533 (ada_exp_descriptor): Fill-in the field operator_check.
1534 * c-lang.c (exp_descriptor_c): Fill-in the field operator_check.
1535 * jv-lang.c (exp_descriptor_java): Likewise.
1536 * m2-lang.c (exp_descriptor_modula2): Likewise.
1537 * scm-lang.c (exp_descriptor_scm): Likewise.
1538 * parse.c (exp_descriptor_standard): Likewise.
1539 (operator_check_standard): New function.
1540 (exp_iterate, exp_uses_objfile_iter, exp_uses_objfile): New functions.
1541 * parser-defs.h (struct exp_descriptor): New field operator_check.
1542 (operator_check_standard, exp_uses_objfile): New declarations.
1543 * printcmd.c: Remove the inclusion of solib.h.
1544 (display_uses_solib_p): Remove the function.
1545 (clear_dangling_display_expressions): Call lookup_objfile_from_block
1546 and exp_uses_objfile instead of display_uses_solib_p.
1547 * solist.h (struct so_list) <objfile>: New comment.
1548 * symtab.c (lookup_objfile_from_block): Remove the static qualifier.
1549 * symtab.h (lookup_objfile_from_block): New declaration.
1550 (struct general_symbol_info) <obj_section>: Extend the comment.
1551
1552 2010-04-22 Sergio Durigan Junior <sergiodj@linux.vnet.ibm.com>
1553 Thiago Jung Bauermann <bauerman@br.ibm.com>
1554
1555 * ppc-linux-nat.c (PTRACE_GET_DEBUGREG): Update comment.
1556 (PPC_PTRACE_GETWDBGINFO, PPC_PTRACE_SETHWDEBUG, PPC_PTRACE_DELHWDEBUG,
1557 ppc_debug_info, PPC_DEBUG_FEATURE_INSN_BP_RANGE,
1558 PPC_DEBUG_FEATURE_INSN_BP_MASK, PPC_DEBUG_FEATURE_DATA_BP_RANGE,
1559 PPC_DEBUG_FEATURE_DATA_BP_MASK, ppc_hw_breakpoint,
1560 PPC_BREAKPOINT_TRIGGER_EXECUTE, PPC_BREAKPOINT_TRIGGER READ,
1561 PPC_BREAKPOINT_TRIGGER_WRITE, PPC_BREAKPOINT_TRIGGER_RW,
1562 PPC_BREAKPOINT_MODE_EXACT PPC_BREAKPOINT_MODE_RANGE_INCLUSIVE,
1563 PPC_BREAKPOINT_MODE_RANGE_EXCLUSIVE, PPC_BREAKPOINT_MODE_MASK,
1564 PPC_BREAKPOINT_CONDITION_NONE, PPC_BREAKPOINT_CONDITION_AND,
1565 PPC_BREAKPOINT_CONDITION_EXACT, PPC_BREAKPOINT_CONDITION_OR,
1566 PPC_BREAKPOINT_CONDITION_AND_OR, PPC_BREAKPOINT_CONDITION_BE_ALL,
1567 PPC_BREAKPOINT_CONDITION_BE_SHIFT, PPC_BREAKPOINT_CONDITION_BE):
1568 Define, in case <ptrace.h> doesn't provide it.
1569 (booke_debug_info): New variable.
1570 (max_slots_number): Ditto.
1571 (hw_break_tuple): New struct.
1572 (thread_points): Ditto.
1573 (ppc_threads): New variable.
1574 (PPC_DEBUG_CURRENT_VERSION): New define.
1575 (have_ptrace_new_debug_booke): New function.
1576 (ppc_linux_check_watch_resources): Renamed to ...
1577 (ppc_linux_can_use_hw_breakpoint): ... this. Handle BookE processors.
1578 (ppc_linux_region_ok_for_hw_watchpoint): Handle BookE processors.
1579 (booke_cmp_hw_point): New function.
1580 (booke_find_thread_points_by_tid): Ditto.
1581 (booke_insert_point): Ditto.
1582 (booke_remove_point): Ditto.
1583 (ppc_linux_insert_hw_breakpoint): Ditto.
1584 (ppc_linux_remove_hw_breakpoint): Ditto.
1585 (get_trigger_type): Ditto.
1586 (ppc_linux_insert_watchpoint): Handle BookE processors.
1587 (ppc_linux_remove_watchpoint): Ditto.
1588 (ppc_linux_new_thread): Ditto.
1589 (ppc_linux_thread_exit): New function..
1590 (ppc_linux_stopped_data_address): Handle BookE processors.
1591 (ppc_linux_watchpoint_addr_within_range): Ditto.
1592 (_initialize_ppc_linux_nat): Initialize to_insert_hw_breakpoint and
1593 to_remove_hw_breakpoint fields of the target operations struct.
1594 Add observe for the thread_exit event.
1595
1596 2010-04-22 H.J. Lu <hongjiu.lu@intel.com>
1597
1598 * i386-linux-nat.c (regmap): Removed.
1599 (fetch_register): Replace regmap with
1600 i386_linux_gregset_reg_offset.
1601 (store_register): Likewise.
1602 (supply_gregset): Likewise.
1603 (fill_gregset): Likewise.
1604
1605 * i386-linux-tdep.c (i386_linux_gregset_reg_offset): Make it
1606 global.
1607
1608 * i386-linux-tdep.h (i386_linux_gregset_reg_offset): New.
1609
1610 2010-04-22 Chris Moller <cmoller@redhat.com>
1611
1612 * cp-valprint.c (cp_print_value_fields): Replaced obstack_base()
1613 method of popping recursion-detection stack with a method based on
1614 obstack_object_size(). (Similar to the PR9167 patch below, but for
1615 the static array obstack rather than the static member obstack.)
1616
1617 2010-04-22 H.J. Lu <hongjiu.lu@intel.com>
1618
1619 * amd64-linux-nat.c (amd64_linux_gregset64_reg_offset): Removed.
1620 (_initialize_amd64_linux_nat): Replace
1621 amd64_linux_gregset64_reg_offset with
1622 amd64_linux_gregset_reg_offset.
1623
1624 * amd64-linux-tdep.c (amd64_linux_gregset_reg_offset): Make it
1625 global.
1626
1627 * amd64-tdep.h (amd64_linux_gregset_reg_offset): New.
1628
1629 2010-04-22 Pierre Muller <muller@ics.u-strasbg.fr>
1630
1631 PR stabs/11479.
1632 * stabsread.c (set_length_in_type_chain): New function.
1633 (read_struct_type): Call set_length_in_type_chain function.
1634 (read_enum_type): Idem.
1635
1636 2010-04-21 Stan Shebs <stan@codesourcery.com>
1637 Nathan Sidwell <nathan@codesourcery.com>
1638
1639 * tracepoint.c (trace_save): Open in binary mode.
1640
1641 2010-04-22 Pierre Muller <muller@ics.u-strasbg.fr>
1642
1643 * gdbtypes.h (builtin_type): Add builtin_char16 and builtin_char32
1644 fields.
1645 * gdbtypes.c (gdbtypes_post_init): Set builtin_char16 and
1646 builtin_char32 fields.
1647 * printcmd.c (decode_format): Set char size to '\0'
1648 for strings unless explicit size is given.
1649 (print_formatted): Correct calculation of NEXT_ADDRESS
1650 for 16 or 32 bit strings.
1651 (do_examine): Do not force byte size for strings.
1652 Use builtin_char16 and builtin_char32 types to display
1653 16 or 32 bit-wide strings.
1654 (x_command): Set LAST_SIZE to 'b' for string type.
1655
1656 2010-04-21 H.J. Lu <hongjiu.lu@intel.com>
1657
1658 PR corefiles/11523
1659 * amd64-linux-tdep.c (amd64_linux_core_read_description): Check
1660 XCR0 first.
1661
1662 * i386-linux-tdep.c (i386_linux_core_read_xcr0): Return 0 if
1663 there is no .reg-xstate section.
1664 (i386_linux_core_read_description): Check XCR0 first.
1665
1666 2010-04-21 Mike Frysinger <vapier@gentoo.org>
1667
1668 * gdb/sparc-tdep.c (sparc32_store_return_value): Add gdb_assert ()
1669 for len <= 8.
1670
1671 2010-04-21 Chris Moller <cmoller@redhat.com>
1672
1673 PR 9167
1674 * cp-valprint.c (cp_print_value_fields): Replaced obstack_base()
1675 method of popping recursion-detection stack with a method based on
1676 obstack_object_size().
1677
1678 2010-04-21 Pierre Muller <muller@ics.u-strasbg.fr>
1679
1680 PR pascal/11492.
1681 * p-valprint.c (pascal_val_print): Fix default printing of integer
1682 arrays.
1683
1684 2010-04-21 Pierre Muller <muller@ics.u-strasbg.fr>
1685
1686 Fix compilation warning on gcc-4.1.2.
1687 * rs6000-aix-tdep.c (rs6000_convert_from_func_ptr_addr): Initialize
1688 local variable`pc' to zero.
1689
1690 2010-04-20 Joel Brobecker <brobecker@adacore.com>
1691
1692 Implement thread support with core files on alpha-tru64.
1693 * dec-thread.c (dec_thread_find_new_threads): New function,
1694 extracted from resync_thread_list.
1695 (resync_thread_list): Add OPS parameter. Replace extracted-out
1696 code by call to dec_thread_find_new_threads.
1697 (dec_thread_wait): Update call to resync_thread_list.
1698 (init_dec_thread_ops): Set dec_thread_ops.to_find_new_threads.
1699
1700 2010-04-20 Joel Brobecker <brobecker@adacore.com>
1701
1702 * ada-lang.c (value_pointer): New function.
1703 (make_array_descriptor): Call value_pointer to convert addresses to
1704 pointers.
1705
1706 2010-04-20 Joel Brobecker <brobecker@adacore.com>
1707
1708 * rs6000-aix-tdep.c: #include exceptions.h.
1709 (rs6000_convert_from_func_ptr_addr): If an exception is thrown
1710 while reading the memory at ADDR, then ADDR cannot be a function
1711 descriptor.
1712
1713 2010-04-20 Joel Brobecker <brobecker@adacore.com>
1714
1715 * ada-typeprint.c (ada_print_typedef): New function.
1716 * ada-lang.h (ada_print_typedef): Add declaration.
1717 * ada-lang.c (ada_language_defn): set la_print_typdef field
1718 to ada_print_typedef.
1719
1720 2010-04-20 Joel Brobecker <brobecker@adacore.com>
1721
1722 * procfs.c (procfs_address_to_host_pointer): Only define when used.
1723
1724 2010-04-20 Joel Brobecker <brobecker@adacore.com>
1725
1726 * procfs.c (iterate_over_mappings_cb_ftype): New typedef.
1727 (iterate_over_mappings): Adjust function profile. Add declaration.
1728 (insert_dbx_link_bpt_in_region, info_mappings_callback):
1729 Adjust accordingly.
1730
1731 2010-04-20 Joel Brobecker <brobecker@adacore.com>
1732
1733 * procfs.c (solib_mappings_callback): Move function up to avoid
1734 a compiler warning.
1735
1736 2010-04-20 Joel Brobecker <brobecker@adacore.com>
1737
1738 * procfs.c (find_signalled_thread, find_stop_signal): Move
1739 these functions down to define them only when used.
1740
1741 2010-04-20 Joel Brobecker <brobecker@adacore.com>
1742
1743 * valprint.c (common_val_print): Fix the value before extracting
1744 its contents.
1745 * ada-lang.c (ada_to_fixed_value): Make this function extern.
1746 * ada-lang.h (ada_to_fixed_value): New function declaration.
1747 * ada-valprint.c (ada_value_print): Use ada_to_fixed_value
1748 to avoid code duplication and fix a bug in the handling of
1749 fixed types contents.
1750
1751 2010-04-20 Tom Tromey <tromey@redhat.com>
1752
1753 * dwarf2read.c (dwarf2_compute_name): Handle DW_AT_linkage_name.
1754 (read_partial_die): Likewise.
1755 (dwarf_attr_name): Likewise.
1756
1757 2010-04-20 Chris Moller <cmoller@redhat.com>
1758
1759 PR 10867
1760
1761 * cp-valprint.c (global): Adding new static array recursion
1762 detection obstack.
1763 (cp_print_value_fields, cp_print_static_field): Added new static
1764 array recursion detection code.
1765
1766 2010-04-20 Mark Kettenis <kettenis@gnu.org>
1767
1768 * i386-linux-tdep.c (i386_linux_regset_sections): Size of the
1769 general-purpose register set should be 68 instead of 144.
1770 (i386_linux_sse_regset_sections): Likewise.
1771 (i386_linux_avx_regset_sections): Likewise.
1772
1773 2010-04-20 Stan Shebs <stan@codesourcery.com>
1774 Nathan Sidwell <nathan@codesourcery.com>
1775
1776 * dwarf2loc.c (struct axs_var_loc): New struct.
1777 (dwarf2_tracepoint_var_loc): New function.
1778 (dwarf2_tracepoint_var_access): New function.
1779 (dwarf2_tracepoint_var_ref): Use dwarf2_tracepoint_var_loc, deal
1780 with DW_OP_piece.
1781 (locexpr_describe_location_piece): New function.
1782 (locexpr_describe_location_1): New function.
1783 (locexpr_describe_location): Call it, update signature.
1784 (loclist_describe_location): Rewrite to loop over locations,
1785 update signature.
1786 * symtab.h (struct symbol_computed_ops): Add address to
1787 describe_location arguments, return void.
1788 * printcmd.c (address_info): Get context PC, pass to computed
1789 location description.
1790 * tracepoint.c (scope_info): Ditto.
1791 * ax-gdb.c (trace_kludge): Export.
1792
1793 2010-04-20 Tom Tromey <tromey@redhat.com>
1794
1795 * dwarf2-frame.c (decode_frame_entry_1): Handle CIE version 4.
1796 (struct dwarf2_cie) <segment_size>: New field.
1797 * dwarf2read.c (partial_read_comp_unit_head): Accept DWARF 4.
1798 (skip_one_die): Handle DW_FORM_flag_present, DW_FORM_sec_offset,
1799 DW_FORM_exprloc.
1800 (read_attribute_value): Handle DW_FORM_flag_present,
1801 DW_FORM_sec_offset, DW_FORM_exprloc.
1802 (dump_die_shallow): Likewise.
1803 (attr_form_is_section_offset): Handle DW_FORM_sec_offset.
1804 (dwarf2_const_value): Handle DW_FORM_exprloc.
1805 (attr_form_is_block): Likewise.
1806 (struct line_header) <maximum_ops_per_instruction>: New field.
1807 (dwarf_decode_line_header): Set new field.
1808 (dwarf_decode_lines): Handle new field.
1809
1810 2010-04-20 Jan Kratochvil <jan.kratochvil@redhat.com>
1811
1812 * f-exp.y: Add new production to recognize the `logical*8' type.
1813 (LOGICAL_S8_KEYWORD): New token.
1814 * f-lang.c (enum f_primitive_types)
1815 <f_primitive_type_logical_s8>: New field.
1816 (f_language_arch_info): Handling `logical*8' type.
1817 (build_fortran_types): Building `logical*8' type.
1818 * f-lang.h (struct builtin_f_type) <builtin_logical_s8>: New field.
1819
1820 2010-04-19 Doug Evans <dje@google.com>
1821
1822 * ser-base.c (generic_readchar): Watch for EOF in read of error_fd.
1823 * ser-pipe.c (pipe_open): Fix file descriptor leaks.
1824 (pipe_close): Ditto.
1825
1826 2010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
1827
1828 * configure.tgt (x86_64-*-mingw*): Set BUILD_GDBSERVER to yes.
1829
1830 2010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
1831
1832 * windows-tdep.c (windows_get_tlb_type): Change current_seh.handle
1833 type to void function.
1834
1835 2010-04-19 Stan Shebs <stan@codesourcery.com>
1836 Vladimir Prus <vladimir@codesourcery.com>
1837
1838 * tracepoint.c (tfind_1): Add missing newline, report exit from
1839 tfind mode as such.
1840 * target.c (update_current_target): Make default
1841 to_trace_find return -1.
1842
1843 2010-04-19 Mike Frysinger <vapier@gentoo.org>
1844
1845 * objc-lang.c (find_methods): Move symname check up.
1846
1847 2010-04-19 Pedro Alves <pedro@codesourcery.com>
1848
1849 * ada-lang.c (print_recreate_exception)
1850 <ex_catch_exception_unhandled>: It's "catch exception unhandled",
1851 not "catch unhandled".
1852
1853 2010-04-19 Pedro Alves <pedro@codesourcery.com>
1854
1855 PR breakpoints/8554.
1856
1857 Implement `save-breakpoints'.
1858
1859 * breakpoint.c (save_cmdlist): New.
1860 (breakpoint_set_cmdlist, breakpoint_show_cmdlist): Moved up close
1861 to save_cmdlist.
1862 (print_recreate_catch_fork): New.
1863 (catch_fork_breakpoint_ops): Install it.
1864 (print_recreate_catch_vfork): New.
1865 (catch_vfork_breakpoint_ops): Install it.
1866 (print_recreate_catch_syscall): New.
1867 (catch_syscall_breakpoint_ops): Install it.
1868 (print_recreate_catch_exec): New.
1869 (catch_exec_breakpoint_ops): Install it.
1870 (print_recreate_exception_catchpoint): New.
1871 (gnu_v3_exception_catchpoint_ops): Install it.
1872 (save_breakpoints): New, based on tracepoint_save_command, but
1873 handle all breakpoint types.
1874 (save_breakpoints_command): New.
1875 (tracepoint_save_command): Rename to...
1876 (save_tracepoints_command): ... this, and reimplement using
1877 save_breakpoints.
1878 (save_command): New.
1879 (_initialize_breakpoints): Install the "save" command prefix.
1880 Install the "save breakpoints" command. Make "save-tracepoints" a
1881 deprecated alias for "save tracepoints".
1882 * breakpoint.h (struct breakpoint_ops): New field `print_recreate'.
1883 * ada-lang.c (print_recreate_exception): New.
1884 (print_recreate_catch_exception): New.
1885 (catch_exception_breakpoint_ops): Install it.
1886 (print_recreate_catch_exception_unhandled): New.
1887 (catch_exception_unhandled_breakpoint_ops): Install it.
1888 (print_recreate_catch_assert): New.
1889 (catch_assert_breakpoint_ops): Install it.
1890
1891 * NEWS: Mention the new `save breakpoints' command. Mention the
1892 new `save tracepoints' alias and that `save-tracepoints' is now
1893 deprecated.
1894
1895 2010-04-18 Pedro Alves <pedro@codesourcery.com>
1896
1897 PR tui/9217
1898
1899 * tui/tui-out.c: Include cli-out.h.
1900 (tui_table_begin, tui_table_body, tui_table_end, tui_table_header)
1901 (tui_begin, tui_end, tui_field_int, tui_field_skip)
1902 (tui_field_string, tui_field_fmt, tui_spaces, tui_text)
1903 (tui_message, tui_wrap_hint, tui_flush): Delete forward
1904 declarations.
1905 (struct ui_out_data): Rename to...
1906 (struct tui_ui_out_data): ... this. Remove `stream' and
1907 `suppress_output' fields, and inherit cli_ui_out_data.
1908 (tui_out_data): New typedef.
1909 (tui_ui_out_impl): Don't initialize fields staticaly.
1910 (tui_table_begin, tui_table_body, tui_table_end, tui_table_header)
1911 (tui_begin, tui_end): Delete.
1912 (tui_field_int): Adjust to delegate most work to the base type.
1913 (tui_field_skip): Delete.
1914 (tui_field_string, tui_field_fmt): Adjust comment. Adjust to
1915 delegate most work to the base type.
1916 (tui_spaces): Delete.
1917 (tui_text): Adjust to delegate most work to the base type.
1918 (tui_message): Delete.
1919 (tui_wrap_hint): Delete.
1920 (tui_flush): Delete.
1921 (out_field_fmt): Delete.
1922 (field_separator): Delete.
1923 (tui_out_new): Adjust to initialize the base type.
1924 (_initialize_tui_out): Initialize tui_ui_out_impl.
1925 * cli-out.c (struct ui_out_data): Moved out to cli-out.h, renamed
1926 cli_ui_out_data.
1927 (cli_out_data): Adjust.
1928 (cli_ui_out_impl): Make extern.
1929 (cli_table_header, cli_field_int, cli_field_skip): Use
1930 uo_field_string instead of cli_field_string.
1931 (cli_redirect): Adjust to use cli_out_data.
1932 (cli_out_data_ctor): New.
1933 (cli_out_new): Use it.
1934 * cli-out.h (struct ui_file): Remove forward declaration.
1935 (struct cli_ui_out_data): New, moved from cli-out.c, and renamed.
1936 (cli_ui_out_impl): Declare.
1937 (cli_out_data_ctor): Declare.
1938 * ui-out.c (struct ui_out) <data>: Change type to void pointer.
1939 (uo_field_string): No longer static.
1940 (ui_out_data): Change return type to void pointer.
1941 (ui_out_new): Change `data' parameter type to void pointer.
1942 * ui-out.h (struct ui_out_data): Don't forward declare.
1943 (ui_out_data): Change return type to void pointer.
1944 (ui_out_new): Change `data' parameter type to void pointer.
1945 (uo_field_string): Declare.
1946
1947 2010-04-17 Pedro Alves <pedro@codesourcery.com>
1948
1949 * ui-file.c (tee_file_isatty): Return whether `tee->one' is a tty,
1950 instead of always false.
1951
1952 2010-04-17 H.J. Lu <hongjiu.lu@intel.com>
1953
1954 PR corefiles/11511
1955 * amd64-linux-tdep.c (amd64_linux_gregset_reg_offset): Support
1956 orig_rax.
1957
1958 2010-04-17 Pedro Alves <pedro@codesourcery.com>
1959
1960 * breakpoint.c (watchpoints_triggered): Use
1961 is_hardware_watchpoint.
1962 (watchpoints_triggered): Ditto.
1963 (bpstat_check_location): Use is_watchpoint and
1964 is_hardware_watchpoint.
1965 (bpstat_check_watchpoint): Use is_watchpoint and
1966 is_hardware_watchpoint.
1967 (bpstat_stop_status): Fix comment.
1968 (user_settable_breakpoint): Use is_watchpoint.
1969 (hw_watchpoint_used_count): Use is_hardware_watchpoint.
1970 (disable_watchpoints_before_interactive_call_start): Use
1971 is_watchpoint.
1972 (enable_watchpoints_after_interactive_call_stop): Use
1973 is_watchpoint.
1974 (clear_command): Use is_watchpoint.
1975 (do_enable_breakpoint): Use is_watchpoint.
1976
1977 2010-04-16 Mike Frysinger <vapier@gentoo.org>
1978
1979 * solib-frv.c (enable_break1_done): Delete.
1980 (enable_break2): Do not check enable_break1_done. Move the
1981 enable_break2_done setting and call to
1982 remove_solib_event_breakpoints() to the end. Return without
1983 warning when the contents of _dl_debug_addr are 0.
1984 (enable_break): Do not set enable_break1_done.
1985 (frv_clear_solib): Likewise.
1986
1987 2010-04-16 Kevin Buettner <kevinb@redhat.com>
1988
1989 * m32c-tdep.c (m32c_m16c_address_to_pointer): Print warning
1990 instead of an error if no PLT entry is found. Return a
1991 potentially useful result.
1992 (m32c_m16c_pointer_to_address): Add code to search for function
1993 address when no .plt entry is found.
1994
1995 2010-04-16 Stan Shebs <stan@codesourcery.com>
1996
1997 * tracepoint.c (trace_variable_command): Run a cleanup.
1998
1999 2010-04-16 Pierre Muller <muller@ics.u-strasbg.fr>
2000
2001 * p-lang.c (pascal_one_char): Do not restrict C to 0..255 range.
2002
2003 2010-04-16 Pierre Muller <muller@ics.u-strasbg.fr>
2004
2005 Support for Windows OS Thread Information Block.
2006 * NEWS: Document new feature.
2007 * remote.c (PACKET_qGetTIBAddr): New enum element.
2008 (remote_get_tib_address): New function.
2009 (init_remote_ops): Set to_get_tib_address field
2010 to remote_get_tib_address.
2011 (_initialize_remote): Add add_packet_config_cmd
2012 for PACKET_qGetTIBAddr.
2013 * target.c (update_current_target): Set default value for
2014 new to_get_tib_address field.
2015 * target.h (target_ops): New field to_get_tib_address.
2016 (target_get_tib_address): New macro.
2017 * windows-nat.c (thread_info): Add thread_local_base field.
2018 (windows_add_thread): Add tlb argument of type 'void *'.
2019 (fake_create_process): Adapt windows_add_thread call.
2020 (get_windows_debug_event): Idem.
2021 (windows_get_tib_address): New function.
2022 (init_windows_ops): Set to_get_tib_address field
2023 to remote_get_tib_address.
2024 (_initialize_windows_nat): Replace info_w32_cmdlist
2025 initialization by a call to init_w32_command_list.
2026 (info_w32_command, info_w32_cmdlist): Removed from here...
2027 to windows-tdep.c file.
2028 * windows-tdep.h (info_w32_cmdlist): Declare.
2029 (init_w32_command_list): New external function
2030 declaration.
2031 * windows-tdep.c: Add several headers.
2032 (info_w32_cmdlist): to here, made global.
2033 (thread_information_32): New struct.
2034 (thread_information_64): New struct.
2035 (TIB_NAME): New char array.
2036 (MAX_TIB32, MAX_TIB64, FULL_TIB_SIZE): New constants.
2037 (maint_display_all_tib): New static variable.
2038 (windows_get_tlb_type): New function.
2039 (tlb_value_read, tlb_value_write): New functions.
2040 (tlb_value_funcs): New static struct.
2041 (tlb_make_value): New function.
2042 (display_one_tib): New function.
2043 (display_tib): New function.
2044 (show_maint_show_all_tib):New function.
2045 (info_w32_command): Moved from windows-nat.c.
2046 (init_w32_command_list): New function.
2047 (_initialize_windows_tdep): New function.
2048 New "maint set/show show-all-tib" command
2049 New "$_tlb" internal variable.
2050
2051 2010-04-16 Joel Brobecker <brobecker@adacore.com>
2052
2053 * tui/tui-regs.c (tui_display_register): Add comment about
2054 a couple of casts.
2055 * tui/tui-stack.c (tui_show_locator_content): Ditto.
2056
2057 2010-04-15 Stan Shebs <stan@codesourcery.com>
2058
2059 * frame.c: Include tracepoint.h.
2060 (get_current_frame): Allow a trace frame to be an alternate source
2061 of stack frame data.
2062 * tracepoint.c (tfind_1): Don't try to get current stack frame if
2063 it won't succeed.
2064
2065 2010-04-15 Pedro Alves <pedro@codesourcery.com>
2066
2067 * ppc-linux-tdep.c (bsd_uthread_solib_loaded): Always pass 0 for
2068 flags.
2069 * solib-spu.c (spu_solib_loaded): Always pass 0 for flags.
2070
2071 2010-04-15 Doug Evans <dje@google.com>
2072
2073 * NEWS: Add entry for python program space support.
2074 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-progspace.o.
2075 (SUBDIR_PYTHON_SRCS): Add py-progspace.c.
2076 (py-progspace.o): New rule.
2077 * python/py-prettyprint.c (find_pretty_printer_from_objfiles): New
2078 function.
2079 (find_pretty_printer_from_progspace): New function.
2080 (find_pretty_printer_from_gdb): New function.
2081 (find_pretty_printer): Rewrite.
2082 * python/py-progspace.c: New file.
2083 * python/python-internal.h (program_space): Add forward decl.
2084 (pspace_to_pspace_object, pspy_get_printers): Declare.
2085 (gdbpy_initialize_pspace): Declare.
2086 * python/python.c: #include "progspace.h".
2087 (gdbpy_get_current_progspace, gdbpy_progspaces): New functions.
2088 (_initialize_python): Call gdbpy_initialize_pspace.
2089 (GdbMethods): Add current_progspace, progspaces.
2090
2091 Add -s option to source command.
2092 * NEWS: Document new option.
2093 * cli/cli-cmds.c (find_and_open_script): Add function comment.
2094 Delete from_tty and cleanupp args. Split filep arg into file and
2095 full_pathp. New arg search_path.
2096 (source_script_from_stream): New function.
2097 (source_script_with_search): New function.
2098 (source_script): Rewrite.
2099 (source_command): Parse "-s" option.
2100 (init_cli_cmds): Add "-s" docs to source command help, and reformat.
2101 * python/python.c (source_python_script): Make file arg a const char *.
2102 Don't call fclose, leave for caller.
2103 * python/python.h (source_python_script): Update.
2104
2105 2010-04-14 Daniel Jacobowitz <dan@codesourcery.com>
2106 Pedro Alves <pedro@codesourcery.com>
2107
2108 Avoid rereading shared libraries that haven't changed.
2109
2110 * solib.c (free_so_symbols): New function, from ...
2111 (free_so): ... here. Call it.
2112 (solib_read_symbols): Don't warn here if symbols have already been
2113 loaded.
2114 (solib_add): Warn here instead, if a pattern was specified.
2115 (reload_shared_libraries_1): New.
2116 (reload_shared_libraries): Rewrite to not fetch the library list.
2117
2118 2010-04-14 Doug Evans <dje@google.com>
2119
2120 * source.c (openp): Strip DOS drive letter if present before
2121 concatenating string to search path.
2122
2123 2010-04-14 Pedro Alves <pedro@codesourcery.com>
2124
2125 * objfiles.h (gdb_bfd_close_or_warn): Declare.
2126 * objfiles.c (gdb_bfd_close_or_warn): New.
2127 * corelow.c: Include objfiles.h
2128 (core_close): Use gdb_bfd_close_or_warn.
2129 * elfread.c (build_id_verify): Ditto.
2130 * exec.c (exec_close, exec_close_1): Ditto.
2131
2132 2010-04-14 Daniel Jacobowitz <dan@codesourcery.com>
2133 Pedro Alves <pedro@codesourcery.com>
2134
2135 Group errors for many missing shared libraries.
2136
2137 * solist.h (struct so_list): Remove from_tty.
2138 * solib.c (solib_bfd_open): Return NULL if we failed to open a BFD.
2139 (solib_map_sections): Take so_list argument. Return 0 if we
2140 failed to open a BFD. Add target sections here.
2141 (symbol_add_stub): Delete.
2142 (solib_read_symbols): Inline symbol_add_stub. Use current flags,
2143 not from_tty copied from the so_list. Don't warn a second time
2144 for a missing library.
2145 (update_solib_list): Don't save from_tty. Use TRY_CATCH. Do not
2146 add to the section table here. Print out a single warning for all
2147 missing libraries.
2148 * bsd-uthread.c (bsd_uthread_solib_loaded): Always pass 0 for
2149 flags.
2150
2151 2010-04-14 Phil Muldoon <pmuldoon@redhat.com>
2152
2153 * python/py-block.c (gdbpy_block_for_pc): Use i8n to encompass
2154 error/warning messages. Capitalize and use complete sentences.
2155 (blpy_block_syms_iternext): Likewise.
2156 * python/py-cmd.c (parse_command_name, cmdpy_init): Likewise.
2157 * python/py-frame.c (FRAPY_REQUIRE_VALID, frapy_block)
2158 (frame_info_to_frame_object, frapy_read_var)
2159 (gdbpy_frame_stop_reason_string): Likewise.
2160 * python/py-lazy-string.c (stpy_convert_to_value)
2161 (gdbpy_create_lazy_string_object): Likewise.
2162 * python/py-objfile.c (objfpy_set_printers): Likewise.
2163 * python/py-prettyprint.c (gdbpy_default_visualizer): Likewise.
2164 * python/python.c (parameter_to_python): Likewise.
2165 * python/py-type.c (typy_range, typy_target): Likewise.
2166 * python/py-value.c (valpy_cast, valpy_length, valpy_getitem)
2167 (valpy_richcompare, valpy_int, valpy_long, valpy_float): Likewise.
2168
2169
2170 2010-04-14 Phil Muldoon <pmuldoon@redhat.com>
2171
2172 PR python/11381
2173
2174 * python/py-prettyprint.c (pretty_print_one_value): Test for
2175 Py_None.
2176 (print_string_repr): Test for Py_None. Set flags accordingly.
2177 Return value depending on return type.
2178 (print_children): Take a value indicating whether data was printed
2179 before this function was called. Alter output accordingly.
2180 (apply_val_pretty_printer): Capture return value from
2181 print_string_repr and pass to print_children.
2182
2183 2010-04-13 Mark Kettenis <kettenis@gnu.org>
2184
2185 PR corefiles/11481
2186 * i386-linux-tdep.c (i386_linux_regset_sections): Remove extended
2187 register note sections.
2188 (i386_linux_sse_regset_sections, i386_linux_avx_regset_sections):
2189 New variables.
2190 (i386_linux_init_abi): Install list of supported register note
2191 sections that matches the target description.
2192
2193 2010-04-13 Pedro Alves <pedro@codesourcery.com>
2194
2195 * remote.c (remote_get_noisy_reply): Don't error out on empty
2196 replies.
2197 (remote_start_remote): Update and merge tracepoints and trace
2198 state variables as long as the target supports tracepoints.
2199 (remote_trace_init): Fix prototype.
2200 (remote_download_trace_state_variable): Validate reply.
2201 (remote_trace_set_readonly_regions): Fix prototype.
2202 (remote_trace_start): Fix prototype. Check for empty reply.
2203 (remote_get_trace_status): Small cleanup.
2204 (remote_trace_stop): Fix prototype. Check for empty reply.
2205 (remote_trace_find): Check for empty reply.
2206 (remote_save_trace_data): Validate reply.
2207 (remote_set_disconnected_tracing): Check for empty reply, and
2208 validate reply.
2209 (remote_set_circular_trace_buffer): Ditto.
2210
2211 2010-04-13 Pierre Muller <muller@ics.u-strasbg.fr>
2212
2213 Suppress unused value warning during compilation.
2214 * tui/tui-regs.c (tui_display_register): Cast wstandout and wstandend
2215 calls to void.
2216 * tui/tui-stack.c (tui_show_locator_content): Likewise.
2217
2218 2010-04-12 Stan Shebs <stan@codesourcery.com>
2219
2220 * tracepoint.c (tfile_xfer_partial): Check read result.
2221
2222 2010-04-12 Mike Frysinger <vapier@gentoo.org>
2223
2224 * remote-m32r-sdi.c (m32r_files_info): Add const to local "file" var.
2225 * remote-sim.c (gdbsim_files_info): Likewise.
2226
2227 2010-04-12 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
2228
2229 * arm-tdep.h (gdb_regnum): Add ARM_FPSCR_REGNUM
2230 * arm-linux-nat.c (arm_linux_vfp_register_count): New
2231 variable.
2232 (fetch_vfp_registers): New function to fetch VFP registers.
2233 (store_vfp_registers): New function to store VFP registers.
2234 (arm_linux_fetch_inferior_registers): Add support for VFP
2235 registers.
2236 (arm_linux_store_inferior_registers): Likewise.
2237 (arm_linux_read_description): Likewise.
2238 (_initialize_arm_linux_nat): Delay initialising iWMMX tdesc
2239 until we need it.
2240
2241 2010-04-11 H.J. Lu <hongjiu.lu@intel.com>
2242
2243 * amd64-tdep.c (amd64_supply_xstateregset): Remove the unused
2244 tdep.
2245 (amd64_collect_xstateregset): Likewise.
2246
2247 2010-04-09 Stan Shebs <stan@codesourcery.com>
2248
2249 * tracepoint.c (trace_status_mi): Report frames created.
2250
2251 * tracepoint.c (trace_dump_command): Include default-collect
2252 expressions.
2253
2254 2010-04-09 Ulrich Weigand <uweigand@de.ibm.com>
2255
2256 * symtab.c (find_function_start_sal): Never return SAL pointing
2257 before function start address, even if line info is missing.
2258
2259 2010-04-09 Pedro Alves <pedro@codesourcery.com>
2260
2261 * NEWS: Mention tracepoints support.
2262
2263 2010-04-09 Pedro Alves <pedro@codesourcery.com>
2264
2265 * tracepoint.c (trace_status_mi): Report disconnected tracing and
2266 circular trace buffer statuses.
2267
2268 2010-04-09 Jan Kratochvil <jan.kratochvil@redhat.com>
2269
2270 * config/djgpp/fnchange.lst: Fix typo in translations for
2271 symbol-without-target_section.exp and symbol-without-target_section.c.
2272
2273 2010-04-09 Pedro Alves <pedro@codesourcery.com>
2274
2275 * breakpoint.c (condition_command): Pass condition expression to
2276 set_breakpoint_condition stripped from breakpoint number.
2277
2278 2010-04-09 Phil Muldoon <pmuldoon@redhat.com>
2279 Thiago Jung Bauermann <bauerman@br.ibm.com>
2280 Tom Tromey <tromey@redhat.com>
2281
2282 * breakpoint.c (condition_command): Simplify. Move condition
2283 setting code to ...
2284 (set_breakpoint_condition): ... here. New function.
2285 * breakpoint.h (set_breakpoint_condition): Declare.
2286 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-breakpoint.
2287 (SUBDIR_PYTHON_SRCS): Likewise.
2288 (py-breakpoint.o): New rule.
2289 * python/py-breakpoint.c: New file.
2290 * python/python-internal.h (gdbpy_breakpoints)
2291 (gdbpy_initialize_breakpoints): Declare.
2292 (GDB_PY_SET_HANDLE_EXCEPTION) Define.
2293
2294 2010-04-09 Pedro Alves <pedro@codesourcery.com>
2295
2296 * regformats/regdat.sh: Include server.h. Don't include
2297 regcache.h.
2298
2299 2010-04-08 Stan Shebs <stan@codesourcery.com>
2300 Pedro Alves <pedro@codesourcery.com>
2301
2302 * tracepoint.h (struct trace_status): New fields disconnected_tracing
2303 and circular_buffer.
2304 (disconnect_tracing): Rename from disconnect_or_stop_tracing.
2305 * tracepoint.c (trace_status_command): Display target's status for
2306 disconnected tracing and circular buffer.
2307 (disconnect_tracing): Rename from disconnect_or_stop_tracing, add
2308 query for non-disconnected-tracing case, remove the stop_tracing
2309 call.
2310 (tfile_open): Clear disconnected and circular buffer status.
2311 (trace_save): Save disconnected and circular buffer status.
2312 (parse_trace_status): Parse disconnected and circular buffer status,
2313 also recognize disconnected as a stop reason.
2314 * remote.c (remote_set_disconnected_tracing): Only set
2315 QTDisconnected if the remote end supports disconnected tracing.
2316 Warn otherwise, if trying to enable disconnected tracing.
2317 * infcmd.c (detach_command): Update disconnect_tracing call.
2318 * cli/cli-cmds.c (quit_command): Ditto.
2319
2320 2010-04-08 H.J. Lu <hongjiu.lu@intel.com>
2321
2322 * i387-tdep.c (i387_collect_xsave): Replace abort with
2323 internal_error.
2324
2325 2010-04-08 Stan Shebs <stan@codesourcery.com>
2326
2327 * breakpoint.c (default_collect_info): New function.
2328 (breakpoints_info): Call it.
2329 (maintenance_info_breakpoints): Ditto.
2330 (tracepoints_info): Ditto.
2331
2332 2010-04-08 H.J. Lu <hongjiu.lu@intel.com>
2333
2334 * i387-tdep.c (i387_collect_xsave): Re-indent.
2335
2336 2010-04-08 H.J. Lu <hongjiu.lu@intel.com>
2337
2338 * i386-linux-nat.c (have_ptrace_getfpxregs): Initialize to -1
2339 if HAVE_PTRACE_GETFPXREGS is defined.
2340 (i386_linux_read_description): Set have_ptrace_getfpxregs and
2341 have_ptrace_getregset to 0 if ptrace PTRACE_GETFPXREGS failed.
2342
2343 * i386-linux-tdep.c: Include "features/i386/i386-mmx-linux.c"
2344 (i386_linux_core_read_description): Return tdesc_i386_mmx_linux
2345 if .reg-xfp section doesn't exist.
2346 (_initialize_i386_linux_tdep): Call initialize_tdesc_i386_mmx_linux.
2347
2348 * i386-linux-tdep.h (tdesc_i386_mmx_linux): New.
2349
2350 * i386-tdep.c: Include "features/i386/i386-mmx.c".
2351 (i386_go32_init_abi): Set tdesc to tdesc_i386_mmx.
2352 (i386_validate_tdesc_p): Make org.gnu.gdb.i386.sse optional. Set
2353 xcr0 to I386_XSTATE_X87_MASK if SSE isn't available.
2354 (i386_gdbarch_init): Update comments.
2355 (_initialize_i386_tdep): Call initialize_tdesc_i386_mmx.
2356
2357 * common/i386-xstate.h (I386_XSTATE_X87_MASK): New.
2358
2359 * config/djgpp/fnchange.lst: Add i386 MMX XML files.
2360
2361 * features/Makefile (i386/i386-mmx-expedite): New.
2362 (i386/i386-mmx-linux-expedite): Likewise.
2363 ($(outdir)/i386/i386-mmx.dat): Likewise.
2364 ($(outdir)/i386/i386-mmx-linux.dat): Likewise.
2365
2366 * features/i386/i386-mmx-linux.c: New.
2367 * features/i386/i386-mmx-linux.xml: Likewise.
2368 * features/i386/i386-mmx.c: Likewise.
2369 * features/i386/i386-mmx.xml: Likewise.
2370 * regformats/i386/i386-mmx-linux.dat: Likewise.
2371 * regformats/i386/i386-mmx.dat: Likewise.
2372
2373 * features/Makefile (WHICH): Add i386/i386-mmx and
2374 i386/i386-mmx-linux.
2375
2376 2010-04-08 Doug Evans <dje@google.com>
2377
2378 * source.c (openp): Skip $cdir in PATH.
2379
2380 2010-04-08 Phil Muldoon <pmuldoon@redhat.com>
2381
2382 PR python/11417
2383 * python/py-lazy-string.c (stpy_convert_to_value): Check for
2384 a NULL address.
2385 (gdbpy_create_lazy_string_object): Allow strings with a NULL
2386 address and a zero length.
2387
2388 2010-04-08 Hui Zhu <teawater@gmail.com>
2389
2390 * i386-tdep.c (i386_process_record): Add support for insn
2391 rdtsc.
2392
2393 2010-04-07 Doug Evans <dje@google.com>
2394
2395 * python/python.c (source_python_script): Use ensure_python_env
2396 to prepare environment for script.
2397
2398 2010-04-07 H.J. Lu <hongjiu.lu@intel.com>
2399
2400 * amd64-linux-nat.c: Include "regset.h", "elf/common.h",
2401 <sys/uio.h> and "i386-xstate.h".
2402 (PTRACE_GETREGSET): New.
2403 (PTRACE_SETREGSET): Likewise.
2404 (have_ptrace_getregset): Likewise.
2405 (amd64_linux_gregset64_reg_offset): Include 16 upper YMM
2406 registers.
2407 (amd64_linux_gregset32_reg_offset): Include 8 upper YMM
2408 registers.
2409 (amd64_linux_fetch_inferior_registers): Support PTRACE_GETFPREGS.
2410 (amd64_linux_store_inferior_registers): Likewise.
2411 (amd64_linux_read_description): Check and enable AVX target
2412 descriptions.
2413
2414 * amd64-linux-tdep.c: Include "regset.h", "i386-linux-tdep.h"
2415 and "features/i386/amd64-avx-linux.c".
2416 (amd64_linux_regset_sections): New.
2417 (amd64_linux_core_read_description): Check and enable AVX
2418 target description.
2419 (amd64_linux_init_abi): Set xsave_xcr0_offset. Call
2420 set_gdbarch_core_regset_sections.
2421 (_initialize_amd64_linux_tdep): Call
2422 initialize_tdesc_amd64_avx_linux.
2423
2424 * amd64-linux-tdep.h (AMD64_LINUX_ORIG_RAX_REGNUM): Replace
2425 AMD64_MXCSR_REGNUM with AMD64_YMM15H_REGNUM.
2426 (tdesc_amd64_avx_linux): New.
2427 (amd64_linux_update_xstateregset): Likewise.
2428
2429 * amd64-tdep.c: Include "features/i386/amd64-avx.c".
2430 (amd64_ymm_names): New.
2431 (amd64_ymmh_names): Likewise.
2432 (amd64_register_name): Likewise.
2433 (amd64_supply_xstateregset): Likewise.
2434 (amd64_collect_xstateregset): Likewise.
2435 (amd64_supply_xsave): Likewise.
2436 (amd64_collect_xsave): Likewise.
2437 (AMD64_NUM_REGS): Removed.
2438 (amd64_dwarf_reg_to_regnum): Return %ymmN register number for
2439 %xmmN if AVX is available.
2440 (amd64_pseudo_register_name): Support pseudo YMM registers.
2441 (amd64_regset_from_core_section): Support .reg-xstate section.
2442 (amd64_init_abi): Set ymmh_register_names, num_ymm_regs
2443 and ymm0h_regnum. Call set_gdbarch_register_name.
2444 (amd64_init_abi): Call initialize_tdesc_amd64_avx.
2445
2446 * amd64-tdep.h (amd64_regnum): Add AMD64_YMM0H_REGNUM and
2447 AMD64_YMM15H_REGNUM.
2448 (AMD64_NUM_REGS): New.
2449 (amd64_supply_xsave): Likewise.
2450 (amd64_collect_xsave): Likewise.
2451 (amd64_register_name): Removed.
2452 (amd64_register_type): Likewise.
2453
2454 2010-04-07 H.J. Lu <hongjiu.lu@intel.com>
2455
2456 * i387-tdep.c: Include "i386-xstate.h".
2457 (XSAVE_XSTATE_BV_ADDR): New.
2458 (xsave_avxh_offset): Likewise.
2459 (XSAVE_AVXH_ADDR): Likewise.
2460 (i387_supply_xsave): Likewise.
2461 (i387_collect_xsave): Likewise.
2462
2463 * i387-tdep.h (I387_NUM_YMM_REGS): New.
2464 (I387_YMM0H_REGNUM): Likewise.
2465 (I387_YMMENDH_REGNUM): Likewise.
2466 (i387_supply_xsave): Likewise.
2467 (i387_collect_xsave): Likewise.
2468
2469 2010-04-07 H.J. Lu <hongjiu.lu@intel.com>
2470
2471 * i386-linux-nat.c: Include "regset.h", "elf/common.h",
2472 <sys/uio.h> and "i386-xstate.h".
2473 (PTRACE_GETREGSET): New.
2474 (PTRACE_SETREGSET): Likewise.
2475 (fetch_xstateregs): Likewise.
2476 (store_xstateregs): Likewise.
2477 (GETXSTATEREGS_SUPPLIES): Likewise.
2478 (regmap): Include 8 upper YMM registers.
2479 (i386_linux_fetch_inferior_registers): Support XSAVE extended
2480 state.
2481 (i386_linux_store_inferior_registers): Likewise.
2482 (i386_linux_read_description): Check and enable AVX target
2483 descriptions.
2484
2485 * i386-linux-tdep.c: Include "regset.h", "i387-tdep.h",
2486 "i386-xstate.h" and "features/i386/i386-avx-linux.c".
2487 (i386_linux_regset_sections): Add ".reg-xstate".
2488 (i386_linux_gregset_reg_offset): Include 8 upper YMM registers.
2489 (i386_linux_core_read_xcr0): New.
2490 (i386_linux_core_read_description): Check and enable AVX target
2491 description.
2492 (i386_linux_init_abi): Set xsave_xcr0_offset.
2493 (_initialize_i386_linux_tdep): Call
2494 initialize_tdesc_i386_avx_linux.
2495
2496 * i386-linux-tdep.h (I386_LINUX_ORIG_EAX_REGNUM): Replace
2497 I386_SSE_NUM_REGS with I386_AVX_NUM_REGS.
2498 (i386_linux_core_read_xcr0): New.
2499 (tdesc_i386_avx_linux): Likewise.
2500 (I386_LINUX_XSAVE_XCR0_OFFSET): Likewise.
2501
2502 * i386-tdep.c: Include "i386-xstate.h" and
2503 "features/i386/i386-avx.c".
2504 (i386_ymm_names): New.
2505 (i386_ymmh_names): Likewise.
2506 (i386_ymmh_regnum_p): Likewise.
2507 (i386_ymm_regnum_p): Likewise.
2508 (i386_xmm_regnum_p): Likewise.
2509 (i386_register_name): Likewise.
2510 (i386_ymm_type): Likewise.
2511 (i386_supply_xstateregset): Likewise.
2512 (i386_collect_xstateregset): Likewise.
2513 (i386_sse_regnum_p): Removed.
2514 (i386_pseudo_register_name): Support pseudo YMM registers.
2515 (i386_pseudo_register_type): Likewise.
2516 (i386_pseudo_register_read): Likewise.
2517 (i386_pseudo_register_write): Likewise.
2518 (i386_dbx_reg_to_regnum): Return %ymmN register number for
2519 %xmmN if AVX is available.
2520 (i386_regset_from_core_section): Support .reg-xstate section.
2521 (i386_register_reggroup_p): Supper upper YMM and YMM registers.
2522 (i386_process_record): Replace i386_sse_regnum_p with
2523 i386_xmm_regnum_p.
2524 (i386_validate_tdesc_p): Support org.gnu.gdb.i386.avx feature.
2525 Set ymmh_register_names, num_ymm_regs, ymm0h_regnum and xcr0.
2526 (i386_gdbarch_init): Set xstateregset. Set xsave_xcr0_offset.
2527 Call set_gdbarch_register_name. Replace I386_SSE_NUM_REGS with
2528 I386_AVX_NUM_REGS. Set ymmh_register_names, ymm0h_regnum and
2529 num_ymm_regs. Add num_ymm_regs to set_gdbarch_num_pseudo_regs.
2530 Set ymm0_regnum.
2531 (_initialize_i386_tdep): Call initialize_tdesc_i386_avx.
2532
2533 * i386-tdep.h (gdbarch_tdep): Add xstateregset, ymm0_regnum,
2534 xcr0, xsave_xcr0_offset, ymm0h_regnum, ymmh_register_names and
2535 i386_ymm_type.
2536 (i386_regnum): Add I386_YMM0H_REGNUM, and I386_YMM7H_REGNUM.
2537 (I386_AVX_NUM_REGS): New.
2538 (i386_xmm_regnum_p): Likewise.
2539 (i386_ymm_regnum_p): Likewise.
2540 (i386_ymmh_regnum_p): Likewise.
2541
2542 * common/i386-xstate.h: New.
2543
2544 2010-04-07 H.J. Lu <hongjiu.lu@intel.com>
2545
2546 * config/djgpp/fnchange.lst: Add x86 AVX XML files.
2547
2548 * features/Makefile (WHICH): Add i386/i386-avx,
2549 i386/i386-avx-linux, i386/x86-64-avx and i386/x86-64-avx-linux.
2550 (i386/i386-avx-expedite): New.
2551 (i386/i386-avx-linux-expedite): Likewise.
2552 (i386/x86-64-avx-expedite):Likewise.
2553 (i386/x86-64-avx-linux-expedite): Likewise.
2554 ($(outdir)/i386/i386-avx.dat): New dependency.
2555 ($(outdir)/i386/i386-avx-linux.dat): Likewise.
2556 ($(outdir)/i386/x86-avx-64.dat): Likewise.
2557 ($(outdir)/i386/x86-64-avx-linux.dat): Likewise.
2558
2559 * features/i386/32bit-avx.xml: New.
2560 * features/i386/64bit-avx.xml: Likewise.
2561 * features/i386/i386-avx-linux.c: Likewise.
2562 * features/i386/i386-avx-linux.xml: Likewise.
2563 * features/i386/i386-avx.c: Likewise.
2564 * features/i386/i386-avx.xml: Likewise.
2565 * features/i386/x86-64-avx-linux.c: Likewise.
2566 * features/i386/x86-64-avx-linux.xml: Likewise.
2567 * features/i386/x86-64-avx.c: Likewise.
2568 * features/i386/x86-64-avx.xml: Likewise.
2569 * regformats/i386/i386-avx-linux.dat: Likewise.
2570 * regformats/i386/i386-avx.dat: Likewise.
2571 * regformats/i386/x86-64-avx-linux.dat: Likewise.
2572 * regformats/i386/x86-64-avx.dat: Likewise.
2573
2574 2010-04-07 Doug Evans <dje@google.com>
2575
2576 * top.c (source_file_name): Make const char *.
2577 * top.h (source_file_name): Update.
2578 * cli/cli-script.c (source_cleanup_lines_args): Make old_file
2579 const char *.
2580 (script_from_file): Change `file' arg to const char *.
2581 * cli/cli-script.h (script_from_file): Update.
2582
2583 2010-04-06 Doug Evans <dje@google.com>
2584
2585 * cli/cli-cmds.c (source_command): Run cleanups.
2586
2587 2010-04-06 Stan Shebs <stan@codesourcery.com>
2588
2589 * defs.h (char_ptr): Move typedef here from...
2590 * ada-lang.c (char_ptr): Remove.
2591 * charset.c (char_ptr): Remove.
2592 * tracepoint.h (struct uploaded_string): Remove.
2593 (struct uploaded_tp): Use vectors for string arrays.
2594 * tracepoint.c (trace_save): Use vectors of actions.
2595 (parse_tracepoint_definition): Ditto.
2596 (get_uploaded_tp): Clear vectors.
2597 * breakpoint.c (create_tracepoint_from_upload): Use vectors.
2598 (next_cmd): Change to an int.
2599 (read_next_cmd): Use vector of command strings.
2600
2601 2010-04-06 Doug Evans <dje@google.com>
2602
2603 * top.h (source_script, cd_command): Delete.
2604 * main.c: #include "cli/cli-cmds.h"
2605
2606 2010-04-06 Kevin Buettner <kevinb@redhat.com>
2607
2608 * m32c-tdep.c (make_types): When calling `arch_type', pass size of
2609 type in bytes, not bits.
2610
2611 2010-04-06 Pierre Muller <muller@ics.u-strasbg.fr>
2612
2613 * stabsread.c (define_symbol): Add support for char
2614 and string constants.
2615
2616 2010-04-06 Pierre Muller <muller@ics.u-strasbg.fr>
2617
2618 Remove remaining "%ll" uses.
2619 * go32-nat.c (go32_pte_for_address): Replace "0x%llx" using
2620 hex_string call.
2621 * rs6000-nat.c (rs6000_ptrace64): Idem.
2622 * solib-pa64.c (pa64_current_sos): Idem.
2623 * solib-spu.c (spu_current_sos): Idem.
2624 * linux-nat.c (linux_nat_find_memory_regions): Replace "%lld" using
2625 plongest call.
2626 * nto-procfs.c (procfs_meminfo): Replace "0x%016llx" using
2627 phex (VAR, 8) call.
2628 * sh64-tdep.c (sh64_show_media_regs): Idem.
2629
2630 2010-04-05 Stan Shebs <stan@codesourcery.com>
2631
2632 * tracepoint.c: Include gdbcore.h.
2633 (tfile_xfer_partial): Return partial results, also try reading
2634 from executable.
2635 (tfile_has_all_memory): New function.
2636 (init_tfile_ops): Use it.
2637
2638 2010-04-05 Sergio Durigan Junior <sergiodj@redhat.com>
2639
2640 PR gdb/10736:
2641 * xml-syscall.c (my_gdb_datadir): New variable to keep track of
2642 the changes in data-directory.
2643 (init_sysinfo): Reload the syscall XML file if the data-directory
2644 has changed.
2645
2646 2010-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
2647
2648 Code cleanup.
2649 * breakpoint.c (bpstat_stop_status): Use bpstat_causes_stop.
2650
2651 2010-04-04 Stan Shebs <stan@codesourcery.com>
2652 Nathan Sidwell <nathan@codesourcery.com>
2653
2654 * breakpoint.c (breakpoint_1): Add filter argument, return number of
2655 breakpoints printed.
2656 (is_hardware_watchpoint): Make argument const.
2657 (is_watchpoint): Ditto.
2658 (is_tracepoint): Merge of tracepoint_type and breakpoint_is_tracepoint,
2659 use it everywhere.
2660 (breakpoints_info): Pass NULL to breakpoint_1.
2661 (maintenance_info_breakpoints): Ditto.
2662 (watchpoints_info): New function.
2663 (tracepoints_info): Use breakpoint_1 filter.
2664 (set_ignore_count): Warn that tracepoint ignore count will be ignored.
2665 (_initialize_breakpoint): Make "info watchpoints" its own command.
2666 * breakpoint.h (is_tracepoint): Rename from breakpoint_is_tracepoint.
2667 * mi/mi-cmd-break.c (mi_cmd_break_commands): Use is_tracepoint.
2668
2669 2010-04-04 Stan Shebs <stan@codesourcery.com>
2670
2671 * tracepoint.c (tfile_fetch_registers): Add fallback case.
2672
2673 2010-04-04 Jan Kratochvil <jan.kratochvil@redhat.com>
2674
2675 * infcmd.c (run_command_1): Call proceed with regcache_read_pc address.
2676 * config/djgpp/fnchange.lst: Add translation for break-entry.exp.
2677
2678 2010-04-04 Jan Kratochvil <jan.kratochvil@redhat.com>
2679
2680 * breakpoint.c (bpstat_find_step_resume_breakpoint): Remove.
2681 * breakpoint.h (bpstat_find_step_resume_breakpoint): Remove.
2682
2683 2010-04-02 Jan Kratochvil <jan.kratochvil@redhat.com>
2684
2685 * dwarf2read.c (read_namespace_type): Use common "return set_die_type"
2686 code form.
2687
2688 2010-04-02 Hui Zhu <teawater@gmail.com>
2689
2690 * i386-tdep.c (OT_DQUAD): New enum.
2691 (i386_process_record): Add code for MMX, 3DNow!, SSE, SSE2,
2692 SSE3, SSSE3 and SSE4.
2693
2694 2010-04-02 Hui Zhu <teawater@gmail.com>
2695
2696 * i386-tdep.c (i386_record_lea_modrm_addr): Remove useless
2697 "*addr = 0".
2698
2699 2010-04-02 Pedro Alves <pedro@codesourcery.com>
2700
2701 * tracepoint.c (trace_dump_actions): New, factored out from
2702 trace_dump_command, and adjusted to recurse into while-stepping's
2703 action list.
2704 (trace_dump_command): Use it.
2705
2706 2010-04-02 Pedro Alves <pedro@codesourcery.com>
2707
2708 * breakpoint.h (struct counted_command_line): Moved definition to
2709 breakpoint.c, and forward declare.
2710 (breakpoint_commands): Declare.
2711 * breakpoint.c (struct counted_command_line): Moved here.
2712 (breakpoint_commands): New.
2713 * tracepoint.c (encode_actions): Use breakpoint_commands.
2714 * remote.c (remote_download_tracepoint): Ditto.
2715
2716 2010-04-01 H.J. Lu <hongjiu.lu@intel.com>
2717
2718 * remote.c (remote_parse_stop_reply): Use hex_string instead
2719 of phex_nz for error.
2720
2721 2010-04-01 Stan Shebs <stan@codesourcery.com>
2722 Nathan Sidwell <nathan@codesourcery.com>
2723
2724 * tracepoint.h (enum actionline_type): Remove.
2725 (validate_actionline): Change return to void.
2726 * tracepoint.c (report_agent_reqs_errors): New function.
2727 (validate_actionline): Call it, change return to void, report errors
2728 more consistently.
2729 (collect_symbol): Call report_agent_reqs_errors.
2730 (encode_actions_1): Ditto.
2731 (encode_actions): Don't expect a result from validate_actionline.
2732
2733 2010-04-01 Stan Shebs <stan@codesourcery.com>
2734
2735 * tracepoint.c (trace_start_command): Confirm if trace is running.
2736 (trace_stop_command): Error if trace not running.
2737
2738 2010-04-01 H.J. Lu <hongjiu.lu@intel.com>
2739
2740 * amd64-tdep.c (amd64_byte_names): Add "ah", "bh", "ch", "dh".
2741 (AMD64_NUM_LOWER_BYTE_REGS): New.
2742 (amd64_pseudo_register_read): Handle "ah", "bh", "ch", "dh".
2743 (amd64_pseudo_register_write): Likewise.
2744 (amd64_init_abi): Set num_byte_regs to 20.
2745
2746 2010-04-01 Pedro Alves <pedro@codesourcery.com>
2747
2748 * breakpoint.c (multi_start, multi_end, last_was_multi): Delete.
2749 (prev_breakpoint_count): New.
2750 (set_breakpoint_count): Adjust.
2751 (rbreak_start_breakpoint_count): New.
2752 (start_rbreak_breakpoints): Adjust.
2753 (end_rbreak_breakpoints): Adjust.
2754 (struct commands_info) <arg>: New field.
2755 (do_map_commands_command): Tweak output to include breakpoint spec
2756 range.
2757 (commands_command_1): Adjust. Avoid setting an xfree cleanup if
2758 ARG was empty on entry. Set INFO's arg.
2759 (create_breakpoint): Adjust.
2760
2761 * NEWS: Clarify `commands' changes.
2762
2763 2010-04-01 Pedro Alves <pedro@codesourcery.com>
2764
2765 * tracepoint.c: Include stack.h.
2766 (struct add_local_symbols_data): New.
2767 (do_collect_symbol): New.
2768 (add_local_symbols): Rewrite using iterate_over_block_arg_vars and
2769 iterate_over_block_local_vars.
2770 * stack.c (print_block_frame_locals): Rewrite as ...
2771 (iterate_over_block_locals): ... this. Take a callback function
2772 pointer and generic data pointer, and call that instead of
2773 print_variable_and_value.
2774 (struct print_variable_and_value_data): New.
2775 (do_print_variable_and_value): New.
2776 (iterate_over_block_local_vars): New, abstracted out from
2777 print_frame_local_vars.
2778 (print_frame_local_vars): Rewrite using
2779 iterate_over_block_local_vars.
2780 (iterate_over_block_arg_vars): New, abstracted out from
2781 print_frame_arg_vars.
2782 (print_frame_arg_vars): Rewrite using iterate_over_block_arg_vars.
2783 * stack.h (iterate_over_block_arg_local_vars_cb): New typedef.
2784 (iterate_over_block_arg_vars, iterate_over_block_local_vars): Declare.
2785
2786 2010-03-31 Richard Earnshaw <rearnsha@arm.com>
2787
2788 * arm-tdep.c (thumb_get_next_pc_raw): Correctly detect TBH
2789 instructions. Use the PC+4 if the base of the TBB or TBH is the
2790 PC register.
2791
2792 2010-03-31 Jan Kratochvil <jan.kratochvil@redhat.com>
2793
2794 Fix crash on reading wrong function declaration DWARF.
2795 * dwarf2read.c (read_subroutine_type): New variable void_type.
2796 Pre-fill all TYPE_FIELD_TYPEs. Move nparams and iparams initialization
2797 more close to their use.
2798
2799 2010-03-31 Stan Shebs <stan@codesourcery.com>
2800
2801 * breakpoint.c (tracepoint_save_command): Include variables,
2802 conditionals, tracepoint types, and default-collect.
2803 * tracepoint.c (save_trace_state_variables): New function.
2804 * tracepoint.h (save_trace_state_variables): Declare it.
2805
2806 2010-03-31 Pierre Muller <muller@ics.u-strasbg.fr>
2807
2808 * remote.c (end_thread): ARI fix: Use xstrdup instead of strdup.
2809
2810 2010-03-30 Keith Seitz <keiths@redhat.com>
2811
2812 * c-typeprint.c (c_type_print_args): Don't print "void"
2813 for java, regardless of whether it is TYPE_PROTOTYPED.
2814 Use the passed-in language instead of current_language.
2815 (c_type_print_varspec_suffix): Use current_language instead
2816 of assuming language_c.
2817 * jv-typeprint.c (java_type_print_base): (bz 9320) Strip off
2818 any return type specifier from the physname.
2819
2820 2010-03-30 Pedro Alves <pedro@codesourcery.com>
2821
2822 * tui/tui-interp.c (tui_is_toplevel): New.
2823 (tui_init): Set it.
2824 (tui_allowed_p): New.
2825 * tui/tui.c (tui_enable): Check if the TUI is allowed before
2826 enabling it.
2827 * tui/tui.h (tui_allowed_p): Declare.
2828
2829 2010-03-30 Ozkan Sezer <sezeroz@gmail.com>
2830
2831 * serial.h: Include winsock2.h before windows.h.
2832
2833 2010-03-30 H.J. Lu <hongjiu.lu@intel.com>
2834
2835 * NEWS: Mention xmlRegisters= in qSupported packet.
2836
2837 * i386-tdep.c: Include "remote.h".
2838 (_initialize_i386_tdep): Call register_remote_support_xml.
2839
2840 * remote.c (remote_support_xml): New.
2841 (register_remote_support_xml): Likewise.
2842 (remote_query_supported_append): Likewise.
2843 (remote_query_supported): Support remote_support_xml.
2844
2845 * remote.h (register_remote_support_xml): New.
2846
2847 2010-03-29 Stan Shebs <stan@codesourcery.com>
2848
2849 * tracepoint.c (trace_find_line_command): Remove dead code.
2850
2851 * tracepoint.h (struct uploaded_string): New struct.
2852 (struct uploaded_tp): New fields for source strings.
2853 * breakpoint.c (this_utp, next_cmd): New globals.
2854 (read_uploaded_action): New function.
2855 (create_tracepoint_from_upload): Fill in more parts
2856 of a tracepoint.
2857 * tracepoint.c (encode_source_string): New function.
2858 (trace_save): Write out source strings, fix error checks.
2859 (parse_tracepoint_definition): Add source string parsing.
2860 * remote.c (PACKET_TracepointSource): New packet type.
2861 (remote_download_command_source): New function.
2862 (remote_download_tracepoint): Download source pieces also.
2863 (_initialize_remote): Add packet config command.
2864
2865 * tracepoint.c (collect_symbol): Send LOC_UNRESOLVED symbols to
2866 expression handler.
2867
2868 * tracepoint.c (start_tracing): Check tracepoints before sending
2869 commands to target, don't start if all tracepoints disabled.
2870
2871 2010-03-28 Pedro Alves <pedro@codesourcery.com>
2872
2873 * cli/cli-script.c (process_next_line): Handle 'stepping'.
2874
2875 2010-03-26 Stan Shebs <stan@codesourcery.com>
2876
2877 * tracepoint.c (disconnect_or_stop_tracing): Get out of tfind mode.
2878
2879 2010-03-26 Tom Tromey <tromey@redhat.com>
2880
2881 * breakpoint.c (commands_command_1): Duplicate 'arg'.
2882
2883 2010-03-26 Ulrich Weigand <uweigand@de.ibm.com>
2884
2885 * breakpoint.c (expand_line_sal_maybe): Always call skip_prologue_sal.
2886 (skip_prologue_sal): Remove local definition.
2887 (resolve_sal_pc): Remove now unnecessary code.
2888 * linespec.c (minsym_found): Call skip_prologue_sal.
2889 * symtab.c (find_function_start_pc): Remove.
2890 (find_function_start_sal): Extract prologue skipping into ...
2891 (skip_prologue_sal): ... this new function. Handle code both
2892 with and without debug info. Respect SAL's explicit_pc and
2893 explicit_line flags. Inline old find_function_start_pc.
2894 * symtab.h (find_function_start_pc): Remove.
2895 (skip_prologue_sal): Add prototype.
2896
2897 2010-03-26 Ulrich Weigand <uweigand@de.ibm.com>
2898
2899 * dwarf2read.c (read_func_scope): Also scan specification DIEs
2900 for DW_TAG_imported_module children.
2901
2902 2010-03-26 Ulrich Weigand <uweigand@de.ibm.com>
2903
2904 * dwarf2read.c (dwarf2_name): Work around GCC bugzilla debug/41828 by
2905 ignoring spurious DW_AT_name attributes for unnamed structs or unions.
2906 * completer.c (add_struct_fields): Fix inverted logic.
2907
2908 2010-03-26 Ulrich Weigand <uweigand@de.ibm.com>
2909
2910 * breakpoint.c (bpstat_clear_actions): Reset bs->commands_left.
2911
2912 2010-03-26 Pedro Alves <pedro@codesourcery.com>
2913
2914 * tracepoint.c (current_trace_status): Don't make sure error_desc
2915 is non-NULL here.
2916 (parse_trace_status): Release a previous error_desc string, and
2917 set it to NULL by default. If stop reason is tracepoint_error,
2918 make sure error_desc is not left NULL.
2919
2920 2010-03-26 Pedro Alves <pedro@codesourcery.com>
2921
2922 * tracepoint.c (trace_save): Remove X from tracepoint error
2923 description.
2924
2925 2010-03-26 Pedro Alves <pedro@codesourcery.com>
2926
2927 * tracepoint.c (parse_trace_status): Don't allow plain strings in
2928 the terror description. Don't expect an X prefix.
2929
2930 2010-03-25 Stan Shebs <stan@codesourcery.com>
2931
2932 * tracepoint.h (trace_stop_reason): Add tracepoint_error.
2933 (struct trace_status): New field error_desc.
2934 * tracepoint.c (stop_reason_names): Add terror.
2935 (current_trace_status): Ensure non-NULL error description.
2936 (trace_status_command): Add error report.
2937 (trace_status_mi): Ditto.
2938 (trace_save): Add special case for error description.
2939 (parse_trace_status): Add case for errors.
2940
2941 2010-03-25 Keith Seitz <keiths@redhat.com>
2942
2943 * dwarf2read.c (read_subroutine_type): If the compilation unit
2944 language is Java, mark any formal parameter named "this" as
2945 artificial (GCC/43521).
2946 (dwarf2_name): Add special handling for Java constructors.
2947
2948 2010-03-25 Tom Tromey <tromey@redhat.com>
2949
2950 PR gdb/11327, PR gdb/11328, PR breakpoints/11368:
2951 * infrun.c (handle_inferior_event): Change initialization of
2952 stop_stack_dummy.
2953 (handle_inferior_event): Change assignment to stop_stack_dummy.
2954 (normal_stop): Update use of stop_stack_dummy.
2955 (struct inferior_status) <stop_stack_dummy>: Change type.
2956 * inferior.h (stop_stack_dummy): Update.
2957 * infcmd.c (stop_stack_dummy): Change type.
2958 * infcall.c (cleanup_delete_std_terminate_breakpoint): New
2959 function.
2960 (call_function_by_hand): Call set_std_terminate_breakpoint.
2961 Rewrite std::terminate handling.
2962 * breakpoint.h (enum bptype) <bp_std_terminate,
2963 bp_std_terminate_master>: New.
2964 (enum stop_stack_kind): New.
2965 (struct bpstat_what) <call_dummy>: Change type.
2966 (set_std_terminate_breakpoint, delete_std_terminate_breakpoint):
2967 Declare.
2968 * breakpoint.c (create_std_terminate_master_breakpoint): New
2969 function.
2970 (update_breakpoints_after_exec): Handle bp_std_terminate_master.
2971 Call create_std_terminate_master_breakpoint.
2972 (print_it_typical): Handle new breakpoint kinds.
2973 (bpstat_stop_status): Handle bp_std_terminate_master.
2974 (bpstat_what): Correctly set call_dummy field. Handle
2975 bp_std_terminate_master and bp_std_terminate.
2976 (print_one_breakpoint_location): Update.
2977 (allocate_bp_location): Update.
2978 (set_std_terminate_breakpoint): New function.
2979 (delete_std_terminate_breakpoint): Likewise.
2980 (create_thread_event_breakpoint): Update.
2981 (delete_command): Update.
2982 (breakpoint_re_set_one): Update.
2983 (breakpoint_re_set): Call create_std_terminate_master_breakpoint.
2984
2985 2010-03-25 Jan Kratochvil <jan.kratochvil@redhat.com>
2986
2987 * symfile.c (build_section_addr_info_from_bfd): New.
2988 (build_section_addr_info_from_objfile): Base it on
2989 build_section_addr_info_from_bfd.
2990 (addrs_section_compar, addrs_section_sort): New.
2991 (addr_info_make_relative): New variables my_cleanup, abfd_addrs,
2992 addrs_sorted, abfd_addrs_sorted and addrs_to_abfd_addrs. Build
2993 addrs_to_abfd_addrs. Use it for recalculating ADDRS.
2994
2995 2010-03-24 Michael Snyder <msnyder@localhost.localdomain>
2996
2997 * elfread.c (find_separate_debug_file_by_buildid):
2998 Remove unused local variable.
2999
3000 2010-03-24 Tom Tromey <tromey@redhat.com>
3001
3002 PR breakpoints/9352:
3003 * NEWS: Mention changes to `commands' and `rbreak'.
3004 * symtab.c (do_end_rbreak_breakpoints): New function.
3005 (rbreak_command): Call start_rbreak_breakpoints; arrange to call
3006 end_rbreak_breakpoints.
3007 * breakpoint.c (breakpoint_count, tracepoint_count): Now static.
3008 (set_breakpoint_count): Likewise. Clear last_was_multi.
3009 (multi_start, multi_end, last_was_multi): New globals.
3010 (start_rbreak_breakpoints, end_rbreak_breakpoints): New
3011 functions.
3012 (struct commands_info): New
3013 (do_map_commands_command): New function.
3014 (commands_command_1): New function.
3015 (commands_command): Use it.
3016 (commands_from_control_command): Likewise.
3017 (do_delete_breakpoint): New function.
3018 (delete_command): Use it.
3019 (map_breakpoint_numbers): Add 'data' argument. Pass to callback.
3020 (do_map_disable_breakpoint): New function.
3021 (disable_command): Use it.
3022 (do_map_enable_breakpoint): New function.
3023 (enable_command): Use it.
3024 (enable_once_breakpoint): Add argument.
3025 (enable_once_command): Update.
3026 (enable_delete_breakpoint): Add argument.
3027 (enable_delete_command): Update.
3028 (break_command_really): Set last_was_multi when needed.
3029 (check_tracepoint_command): Fix formatting.
3030 (validate_commands_for_breakpoint): New function.
3031 (breakpoint_set_commands): Use it.
3032 (tracepoint_save_command): Update.
3033 * breakpoint.h (start_rbreak_breakpoints, end_rbreak_breakpoints):
3034 Declare.
3035
3036 2010-03-24 Tom Tromey <tromey@redhat.com>
3037
3038 * breakpoint.h (struct counted_command_line): New struct.
3039 (struct breakpoint) <commands>: Change type.
3040 (struct bpstats) <commands>: Change type.
3041 <commands_left>: New field.
3042 * breakpoint.c (alloc_counted_command_line): New function.
3043 (incref_counted_command_line): Likewise.
3044 (decref_counted_command_line): Likewise.
3045 (do_cleanup_counted_command_line): Likewise.
3046 (make_cleanup_decref_counted_command_line): Likewise.
3047 (breakpoint_set_commands): Use decref_counted_command_line and
3048 alloc_counted_command_line.
3049 (commands_command): Don't error if breakpoint commands are
3050 executing.
3051 (commands_from_control_command): Likewise.
3052 (bpstat_free): Update.
3053 (bpstat_copy): Likewise.
3054 (bpstat_clear_actions): Likewise.
3055 (bpstat_do_actions_1): Likewise.
3056 (bpstat_stop_status): Likewise.
3057 (print_one_breakpoint_location): Likewise.
3058 (delete_breakpoint): Likewise.
3059 (bpstat_alloc): Initialize new field.
3060 (tracepoint_save_command): Update.
3061 * tracepoint.c (encode_actions): Update.
3062 (trace_dump_command): Update.
3063
3064 2010-03-24 Daniel Jacobowitz <dan@codesourcery.com>
3065
3066 * dwarf2-frame.c (dwarf2_frame_find_quirks): Use producer_is_realview.
3067 * dwarf2read.c (load_full_comp_unit): Read DW_AT_producer.
3068 (read_structure_type): For RealView, set TYPE_STUB on structures with
3069 no byte size and no children.
3070 (read_subroutine_type): Mark functions as prototyped by default.
3071 * symtab.c (producer_is_realview): New function.
3072 * symtab.h (expand_line_sal): Fix declaration formatting.
3073 (producer_is_realview): Declare.
3074
3075 2010-03-24 Daniel Jacobowitz <dan@codesourcery.com>
3076
3077 * arm-tdep.c (skip_prologue_function): New function.
3078 (submask, bit, bits, sbits, BranchDest): Move higher in the file.
3079 (thumb_analyze_prologue): Document return value. Recognize more
3080 Thumb instructions, skippable calls, and some Thumb-2 instructions.
3081 Add debug output.
3082 (arm_skip_prologue): Remove call dummy check. Check the prologue
3083 for non-GNU compilers.
3084 (arm_instruction_changes_pc): New function.
3085 (arm_analyze_prologue): New function, broken out from
3086 arm_scan_prologue. Recognize more ARM instructions and skippable
3087 calls. Update comments. Handle NULL cache. Return the address
3088 of the first unrecognized instruction. Do not skip past other
3089 instructions which change control flow. Add debug output.
3090 (arm_scan_prologue): Use arm_analyze_prologue.
3091 (ARM_PC_32): Delete.
3092 (shifted_reg_val): Simplify ARM_PC_32 check.
3093
3094 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
3095
3096 * tracepoint.c (tvariables_info_1): Actually compute
3097 the number of rows in the result.
3098
3099 2010-03-24 Pedro Alves <pedro@codesourcery.com>
3100
3101 * remote.c (crc32): Constify `buf' parameter.
3102 (remote_verify_memory): New, abstracted out from...
3103 (compare_sections_command): ... this. Remove hardcoded target
3104 checks.
3105 (init_remote_ops): Install remote_verify_memory.
3106 * target.c (target_verify_memory): New.
3107 * target.h (struct target_ops) <to_verify_memory>: New field.
3108 (target_verify_memory): Declare.
3109
3110 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
3111
3112 Implement -trace-save.
3113
3114 * mi-cmds.h (mi_cmds_trace_save): Declare.
3115 * mi-cmds.c (mi_cmds): Register -trace-save.
3116 * mi/mi-main.c (mi_cmd_trace_save): New.
3117 * remote.c (remote_save_trace_data): Take const parameter.
3118 * target.h (struct target_ops::to_save_trace_data): Take
3119 const parameter.
3120 * target.c (update_current_target): Adjust to the above.
3121 * tracepoint.c (trave_save): New, extracted from
3122 (trace_save_command): ...this.
3123 (tfile_trace_find): Remove message that is unnecessary now
3124 that 'tfind' reports found frame.
3125 * tracepoint.h (trace_save): Declare.
3126
3127 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
3128
3129 Implement -trace-find.
3130
3131 * mi/mi-cmds.c (mi_cmds): Register -trace-find.
3132 * mi/mi-cmds.h (mi_cmd_trace_find): Declare.
3133 * mi/mi-main.c (mi_cmd_trace_find): New.
3134 * target.h (struct target_ops): Document to_trace_find.
3135 * tracepoint.h (tfind_1): Declare.
3136 * tracepoint.c (finish_tfind_command): Rename to...
3137 (tfind_1): ...this.
3138 * remote.c (remote_trace_find): Return -1 if target say
3139 there's no frame. Improve error diagnostics.
3140
3141 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
3142
3143 -trace-define-variable and -trace-list-variables.
3144
3145 * tracepoint.c (create_trace_state_variable): Make
3146 private copy of name, as opposed to assuming the
3147 pointer lives forever.
3148 (tvariables_info_1): New.
3149 (tvariables_info): Use the above.
3150 * tracepoint.h (create_trace_state_variable, tvariables_info_1):
3151 Declare.
3152 * mi/mi-cmds.c (mi_cmds): Register -trace-define-variable
3153 and -trace-list-variables.
3154 * mi/mi-cmds.h (mi_cmd_trace_define_variable)
3155 (mi_cmd_trace_list_variables): New.
3156 * mi/mi-main.c (mi_cmd_trace_define_variable)
3157 (mi_cmd_trace_list_variables): New.
3158
3159 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
3160
3161 Implement -break-passcount.
3162
3163 * mi/mi-cmd-break.c (mi_cmd_break_passcount): New.
3164 * mi/mi-cmds.c (mi_cmds): Register -break-passcount.
3165 * mi/mi-cmds.h (mi_cmd_break_passcount): Declare.
3166
3167 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
3168
3169 -trace-start/-trace-end/-trace-status.
3170
3171 * mi/mi-cmds.c (mi_cmds): Register -trace-start, -trace-status
3172 and -trace-stop.
3173 * mi/mi-cmds.h (mi_cmd_trace_start, mi_cmd_trace_status)
3174 (mi_cmd_trace_stop): Declare.
3175 * mi/mi-main.c (mi_cmd_trace_start, mi_cmd_trace_status)
3176 (mi_cmd_trace_stop): New.
3177 * tracepoint.c (start_tracing): New, extracted from...
3178 (trace_start_command): ...this.
3179 (trace_status_mi): New.
3180 * tracepoint.h (struct trace_status): Document
3181 stopping_tracepoint.
3182 (start_tracing, stop_tracing, trace_status_mi): Declare.
3183
3184 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
3185
3186 Implement creating tracepoints with -break-insert.
3187
3188 * mi/mi-cmd-break.c (mi_cmd_break_insert): Handle -a
3189 to mean that tracepoint should be created.
3190
3191 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
3192
3193 * breakpoint.c (check_no_tracepoint_commands): Use
3194 current spelling of 'teval'.
3195
3196 2010-03-24 Vladimir Prus <vladimir@codesourcery.com>
3197
3198 Unify actions and commands
3199
3200 * defs.h (read_command_lines, read_command_lines_1): New
3201 parameters validator and closure.
3202 * tracepoint.h (struct action_line): Remove.
3203 * breakpoint.h (struct breakpoint): Remove the 'actions'
3204 field.
3205 * defs.h (enum command_control_type): New value
3206 while_stepping_control.
3207 (struct command_line): Add comments.
3208 * breakpoint.c (breakoint_is_tracepoint): New.
3209 (breakpoint_set_commands): For tracepoints,
3210 verify the commands are permissible.
3211 (check_tracepoint_commands): New.
3212 (commands_command): Require that each new line is validated using
3213 check_tracepoint_command, if we set commands for a tracepoint.
3214 (create_tracepoint_from_upload): Likewise.
3215 (print_one_breakpoint_location): Remove the code to print
3216 actions specifically.
3217 (tracepoint_save_command): Relay to print_command_lines.
3218 * cli/cli-script.c (process_next_line): New parameters validator
3219 and closure. Handle 'while-stepping'. Call validator if not null.
3220 (read_command_lines, read_command_lines1): Likewise.
3221 (recurse_read_control_structure): New parameters validator and
3222 closure. Handle while_stepping_control.
3223 (print_command_lines): Handle while-stepping.
3224 (get_command_line, define_command, document_command): Adjust.
3225 * remote.c (remote_download_tracepoint): Adjust.
3226 * tracepoint.c (make_cleanup_free_actions, read_actions)
3227 (free_actions, do_free_actions_cleanup): Remove.
3228 (trace_actions_command): Use read_command_lines.
3229 (validate_actionline): Use error in one place.
3230 (encode_actions_1): New, extracted from...
3231 (encode_actions): ...this. Also use cleanups for exception
3232 safety.
3233 (trace_dump_command): Adjust.
3234 * mi/mi-cmd-break (mi_cmd_break_commands): Validate commands if
3235 it's tracepoint.
3236
3237 2010-03-23 Mike Frysinger <vapier@gentoo.org>
3238
3239 * Makefile.in (OPCODES_CFLAGS): Add -I$(OPCODES_SRC)/..
3240
3241 2010-03-22 Stan Shebs <stan@codesourcery.com>
3242
3243 * value.c (value_static_field): Be lazy about the field's value.
3244
3245 2010-03-22 Reid Kleckner <reid@kleckner.net>
3246
3247 PR gdb/11094
3248 * breakpoint.c (disable_breakpoints_in_unloaded_shlib): Add
3249 bp_jit_event.
3250 (disable_breakpoints_in_shlibs): Likewise.
3251
3252 2010-03-22 Ulrich Weigand <uweigand@de.ibm.com>
3253
3254 * dwarf2read.c (partial_die_parent_scope): Work around buggy
3255 GCC 4.1 debug info generation (GCC PR c++/28460).
3256 (determine_prefix): Likewise.
3257
3258 2010-03-20 Daniel Jacobowitz <dan@codesourcery.com>
3259
3260 * tui/tui-disasm.c (tui_get_begin_asm_address): Default to
3261 get_current_arch.
3262 * tui/tui-layout.c (extract_display_start_addr): Likewise.
3263
3264 2010-03-19 Stan Shebs <stan@codesourcery.com>
3265
3266 * ax-gdb.c (gen_fetch): Handle bool.
3267 (gen_usual_unary): Ditto.
3268 (gen_cast): Ditto.
3269 (gen_equal): New function.
3270 (gen_less): New function.
3271 (gen_expr_binop_rest): Call them, also return integer type from
3272 logical operations.
3273 (gen_expr): Ditto.
3274
3275 2010-03-19 Tom Tromey <tromey@redhat.com>
3276
3277 * jv-lang.c (jv_dynamics_objfile_data_key)
3278 (jv_type_objfile_data_key): New globals.
3279 (class_symtab): Move earlier.
3280 (jv_per_objfile_free): New function.
3281 (get_dynamics_objfile): Call set_objfile_data. Add 'gdbarch'
3282 parameter.
3283 Remove ancient #if 1.
3284 (add_class_symbol): Remove redundant declaration.
3285 (java_lookup_class): Use alloc_type, not alloc_type_arch.
3286 (java_link_class_type): Mark as static. Update.
3287 (jv_clear_object_type): New function.
3288 (set_java_object_type): Likewise.
3289 (get_java_object_type): Use set_java_object_type.
3290 (is_object_type): Likewise.
3291 (_initialize_java_language): Register new objfile keys.
3292 (get_java_class_symtab): Add 'gdbarch' parameter.
3293 (add_class_symtab_symbol): Update.
3294 (type_from_class): Update.
3295
3296 2010-03-19 Stan Shebs <stan@codesourcery.com>
3297
3298 * ax-general.c (ax_const_l): Fix a sizing bug.
3299
3300 2010-03-18 Joel Brobecker <brobecker@adacore.com>
3301
3302 GDB 7.1 released.
3303
3304 2010-03-18 Stan Shebs <stan@codesourcery.com>
3305 Pedro Alves <pedro@codesourcery.com>
3306
3307 * target.h (struct target_ops): New method
3308 to_set_circular_trace_buffer.
3309 (target_set_circular_trace_buffer): New macro.
3310 * target.c (update_current_target): Add
3311 to_set_circular_trace_buffer, fix to_set_disconnected_tracing
3312 default behavior.
3313 * remote.c (remote_set_circular_trace_buffer): New function.
3314 (init_remote_ops): Add it to vector.
3315 * tracepoint.h (struct trace_status): New field traceframes_created,
3316 change buffer_size and buffer_free to int.
3317 * tracepoint.c (circular_trace_buffer): New global.
3318 (start_tracing): Send values of disconnected tracing and circular
3319 trace buffer settings.
3320 (set_circular_trace_buffer): New function.
3321 (parse_trace_state): Handle total space and frames created.
3322 (trace_status_command): Display total space and total frames
3323 created.
3324 (trace_save): Write out new status values.
3325 (parse_trace_status): Set traceframe_count, traceframes_created,
3326 buffer_free and buffer_size to -1 by default.
3327 (_initialize_tracepoint): New setshow for circular-trace-buffer.
3328 * NEWS: Mention the circular trace buffer option.
3329
3330 2010-03-18 Tom Tromey <tromey@redhat.com>
3331
3332 * infcmd.c (finish_command_continuation): Wrap print_return_value
3333 in TRY_CATCH.
3334
3335 2010-03-18 Joel Brobecker <brobecker@adacore.com>
3336
3337 * dwarf2read.c (add_partial_subprogram): Make sure the subprogram
3338 DIE has a name before creating the associated partial symbol.
3339 (read_func_scope): Emit a complaint if the subprogram does not
3340 have a name or when we can't extract the subprogram PC bounds.
3341
3342 2010-03-18 Ulrich Weigand <uweigand@de.ibm.com>
3343
3344 * mi/mi-main.c (mi_cmd_list_thread_groups): Use get_current_arch
3345 instead of selected frame architecture.
3346
3347 2010-03-18 Pedro Alves <pedro@codesourcery.com>
3348
3349 * infcmd.c (until_command): Use ERROR_NO_INFERIOR. Ensure there's
3350 a valid selected thread, and that it is not running.
3351 (advance_command): Ditto.
3352 (finish_command): Ditto.
3353
3354 2010-03-17 Stan Shebs <stan@codesourcery.com>
3355
3356 * ax-gdb.c (require_rvalue): Disallow non-scalars.
3357
3358 * infcall.c: Include tracepoint.h.
3359 (call_function_by_hand): Disallow calls in tfind mode.
3360 * infcmd.c: Include tracepoint.h.
3361 (ensure_not_tfind_mode): New function.
3362 (continue_1): Call it.
3363 (step_1) Ditto.
3364 (jump_command): Ditto.
3365 (signal_command): Ditto.
3366 (advance_command): Ditto.
3367 (until_command): Ditto.
3368 (finish_command): Ditto.
3369 * tracepoint.h (disconnect_or_stop_tracing): Declare.
3370
3371 * ax-gdb.h (struct axs_value): New field optimized_out.
3372 (gen_trace_for_var): Add gdbarch argument.
3373 * ax-gdb.c (gen_trace_static_fields): New function.
3374 (gen_traced_pop): Call it, add gdbarch argument.
3375 (gen_trace_for_expr): Update call to it.
3376 (gen_trace_for_var): Ditto, and report optimized-out variables.
3377 (gen_struct_ref_recursive): Check for optimized-out value.
3378 (gen_struct_elt_for_reference): Ditto.
3379 (gen_static_field): Pass gdbarch instead of expression, assume
3380 optimization if field not found.
3381 (gen_var_ref): Set the optimized_out flag.
3382 (gen_expr): Error on optimized-out variable.
3383 * tracepoint.c (collect_symbol): Handle struct-valued vars as
3384 expressions, skip optimized-out variables with computed locations.
3385 * dwarf2loc.c (dwarf2_tracepoint_var_ref): Flag instead of
3386 erroring out if location expression missing.
3387 (loclist_tracepoint_var_ref): Don't error out here.
3388
3389 2010-03-17 Tom Tromey <tromey@redhat.com>
3390
3391 * dwarf2read.c (dwarf2_get_section_info): Handle case where no
3392 DWARF data is available.
3393
3394 2010-03-17 Daniel Jacobowitz <dan@codesourcery.com>
3395
3396 * symfile.c (generic_load): Reset breakpoints after loading.
3397
3398 2010-03-17 Tom Tromey <tromey@redhat.com>
3399
3400 * linux-nat.c (linux_nat_detach): Check debug_linux_nat.
3401
3402 2010-03-17 Jan Kratochvil <jan.kratochvil@redhat.com>
3403
3404 * spu-tdep.c (spu_catch_start): Replace set_breakpoint call with the
3405 create_breakpoint call, adjust the parameters.
3406
3407 2010-03-16 Jan Kratochvil <jan.kratochvil@redhat.com>
3408 Chandru <chandru@in.ibm.com>
3409
3410 * dwarf2read.c (read_subrange_type): Set TYPE_HIGH_BOUND_UNDEFINED.
3411 * valarith.c (value_subscripted_rvalue): Suppress error if
3412 TYPE_ARRAY_UPPER_BOUND_IS_UNDEFINED.
3413
3414 2010-03-16 Holger Hans Peter Freyther <zecke@selfish.org>
3415
3416 * linux-record.c (record_linux_msghdr): Remove unintended semicolons.
3417
3418 2010-03-16 Joel Brobecker <brobecker@adacore.com>
3419
3420 * ada-tasks.c (task_command_1): Check that the task ptid is valid
3421 before doing the associated thread switch.
3422
3423 2010-03-16 Daniel Jacobowitz <dan@codesourcery.com>
3424
3425 * MAINTAINERS: Update my email address.
3426
3427 2010-03-16 Vladimir Prus <vladimir@codesourcery.com>
3428
3429 Simplify MI breakpoint setting.
3430
3431 * breakpoint.c (break_command_really): Make nonstatic and
3432 rename to...
3433 (create_breakpoint): ...this. Rename prior function by this name
3434 to...
3435 (create_breakpoint_sal): ...this.
3436 (create_breakpoints): Rename to...
3437 (create_breakpoints_sal): ...this.
3438 (set_breakpoint): Remove.
3439 * breakpoint.h: Adjust to above changes.
3440 * mi/mi-cmd-break.c (mi_cmd_break_insert): Simplify.
3441
3442 2010-03-15 Stan Shebs <stan@codesourcery.com>
3443
3444 * ax-gdb.c: Include cp-support.h.
3445 (find_field): Remove.
3446 (gen_primitive_field): New function.
3447 (gen_struct_ref_recursive): New function.
3448 (gen_struct_ref): Rewrite to call gen_struct_ref_recursive instead
3449 of find_field.
3450 (gen_static_field): New function.
3451 (gen_struct_elt_for_reference): New.
3452 (gen_namespace_elt): New.
3453 (gen_maybe_namespace_elt): New.
3454 (gen_aggregate_elt_ref): New.
3455 (gen_expr): Add OP_SCOPE, display opcode name in error message.
3456
3457 2010-03-15 Tom Tromey <tromey@redhat.com>
3458
3459 * dwarf2read.c (die_needs_namespace): Also return 0 for
3460 DW_TAG_subprogram.
3461
3462 2010-03-15 Sami Wagiaalla <swagiaal@redhat.com>
3463
3464 PR c++/7936:
3465 * cp-support.h: Added char *declaration element to using_direct
3466 data struct.
3467 (cp_add_using): Added char *declaration argument.
3468 (cp_add_using_directive): Ditto.
3469 (cp_lookup_symbol_imports): made extern.
3470 * cp-namespace.c: Updated with the above changes.
3471 * dwarf2read.c (read_import_statement): Ditto.
3472 (read_namespace): Ditto.
3473 (read_import_statement): Support import declarations.
3474 * cp-namespace.c (cp_lookup_symbol_imports): Check for imported
3475 declarations.
3476 Added support for 'declaration_only' search.
3477 (cp_lookup_symbol_namespace): Attempt to search for the name as
3478 is before consideration of imports.
3479 * symtab.c (lookup_symbol_aux_local): Added a 'declaration_only'
3480 search at every block level search.
3481 Now takes language argument.
3482 (lookup_symbol_aux): Updated.
3483
3484 2010-03-15 Tom Tromey <tromey@redhat.com>
3485
3486 * c-exp.y (name_not_typename): Add 'operator' clause.
3487
3488 2010-03-15 Ralf Corsepius <ralf.corsepius@rtems.org> (tiny change)
3489
3490 * configure.ac: Exit if ${gdb_target_obs}" is not set.
3491 * configure: Regenerate.
3492
3493 2010-03-15 Jan Kratochvil <jan.kratochvil@redhat.com>
3494
3495 * symfile.c (addr_info_make_relative): Ignore also missing ".dynbss"
3496 and ".sdynbss". Update the comment.
3497
3498 2010-03-15 Jie Zhang <jie@codesourcery.com>
3499
3500 * MAINTAINERS: Update my email address.
3501
3502 2010-03-14 Daniel Jacobowitz <dan@codesourcery.com>
3503
3504 * gdbtypes.h (TYPE_IS_OPAQUE): Correct HAVE_CPLUS_STRUCT check.
3505
3506 2010-03-14 Daniel Jacobowitz <dan@codesourcery.com>
3507
3508 * charset.c [USE_WIN32API]: Include <windows.h>.
3509 (_initialize_charset): Correct type of w32_host_default_charset.
3510
3511 2010-03-14 Pedro Alves <pedro@codesourcery.com>
3512
3513 * infrun.c (ptid_match): Don't assert that PTID is not a pid ptid.
3514
3515 2010-03-12 Tom Tromey <tromey@redhat.com>
3516
3517 PR c++/9708:
3518 * dwarf2read.c (die_needs_namespace) <DW_TAG_variable>: A variable
3519 in a lexical block does not need a namespace.
3520 (new_symbol) <DW_TAG_variable>: Put extern variables on
3521 list_in_scope in all cases.
3522
3523 2010-03-12 Stan Shebs <stan@codesourcery.com>
3524
3525 * ax-gdb.c (gen_expr): Add shift expressions.
3526 (gen_expr_binop_rest): Ditto.
3527
3528 2010-03-12 Sami Wagiaalla <swagiaal@redhat.com>
3529
3530 * buildsym.c (finish_block): Reset using_directives pointer
3531 after block initialization.
3532
3533 2010-03-12 H.J. Lu <hongjiu.lu@intel.com>
3534
3535 * amd64-tdep.c (amd64_word_names): Replace "sp" with "".
3536 * i386-tdep.c (i386_word_names): Likewise.
3537
3538 2010-03-12 Pedro Alves <pedro@codesourcery.com>
3539
3540 * target.c (memory_xfer_partial): Don't use the stack cache if
3541 inspecting trace frames.
3542 * tracepoint.c (finish_tfind_command): Invalidate the target
3543 dcache.
3544
3545 2010-03-11 Jan Kratochvil <jan.kratochvil@redhat.com>
3546
3547 * solib-svr4.c (LM_ADDR_CHECK) <info_verbose>: Use printf_unfiltered
3548 for the PIC displacement, print also the displacement value.
3549 (svr4_exec_displacement): Print DISPLACEMENT if INFO_VERBOSE.
3550
3551 2010-03-10 Kevin Buettner <kevinb@redhat.com>
3552
3553 * remote-mips.c (close_ports, mips_initialize_cleanups)
3554 (mips_exit_cleanups, mips_send_command, mips_open, pmon_open)
3555 (ddb_open, lsi_open, mips_remove_breakpoint, mips_remove_watchpoint)
3556 (mips_stopped_by_watchpoint, send_srec, pmon_checkset)
3557 (pmon_make_fastrec, pmon_check_ack, mips_expect_download)
3558 (pmon_check_entry_address, pmon_check_total, pmon_end_download)
3559 (pmon_download, pmon_load_fast, _initialize_remote_mips): Add
3560 comments describing each of these functions.
3561 (mips_enter_debug, mips_exit_debug, common_open)
3562 (mips_signal_from_protocol, pmon_makeb64, pmon_zeroset): Add
3563 blank line after the comment describing the function.
3564
3565 2010-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
3566
3567 * solib-svr4.c (svr4_exec_displacement): Return now success, new
3568 parameter displacementp. Update comment.
3569 (svr4_relocate_main_executable): Return if non-zero SECTION_OFFSETS
3570 element exists. Return if svr4_exec_displacement was not successful.
3571 Update comment.
3572
3573 2010-03-10 Jan Kratochvil <jan.kratochvil@redhat.com>
3574 Daniel Jacobowitz <dan@codesourcery.com>
3575
3576 * solib-svr4.c (read_program_header): Support type == -1 to read
3577 all program headers.
3578 (read_program_headers_from_bfd): New function.
3579 (svr4_static_exec_displacement): Remove and move the comment ...
3580 (svr4_exec_displacement): ... here. Remove variable found. New
3581 variable displacement. Check also DYNAMIC. Verify DISPLACEMENT
3582 alignment for ELF targets. Compare target vs. exec_bfd PHDRs for ELF
3583 targets using read_program_headers_from_bfd. Remove the call of
3584 svr4_static_exec_displacement.
3585
3586 2010-03-10 Tom Tromey <tromey@redhat.com>
3587
3588 * dwarf2read.c (struct pubnames_header): Remove.
3589 (_PUBNAMES_HEADER): Remove.
3590 (_ACTUAL_PUBNAMES_HEADER_SIZE): Remove.
3591 (struct aranges_header): Remove.
3592 (_ARANGES_HEADER, _ACTUAL_ARANGES_HEADER_SIZE): Remove.
3593 (struct dwarf2_per_objfile) <pubnames, aranges>: Remove.
3594 (PUBNAMES_SECTION): Remove.
3595 (ARANGES_SECTION): Remove.
3596 (dwarf2_locate_sections): Don't handle pubnames or aranges.
3597 (dwarf2_build_psymtabs): Remove dead code.
3598 (dwarf2_build_psymtabs_easy): Remove.
3599
3600 2010-03-10 Tom Tromey <tromey@redhat.com>
3601
3602 * elfread.c (elf_symfile_read): Don't call
3603 dwarf2_build_frame_info.
3604 * dwarf2read.c (struct dwarf2_section_info) <readin>: New field.
3605 (struct dwarf2_per_objfile) <objfile>: New field.
3606 (dwarf2_has_info): Now idempotent. Set objfile field.
3607 (dwarf2_read_section): Check and set readin field. Call
3608 posix_madvise.
3609 (dwarf2_build_psymtabs): Don't read all sections.
3610 (read_type_comp_unit_head): Read types section.
3611 (create_debug_types_hash_table): Likewise.
3612 (init_cu_die_reader): Add asserts.
3613 (process_type_comp_unit): Add assert.
3614 (dwarf2_build_psymtabs_hard): Read info section.
3615 (load_partial_comp_unit): Add assert.
3616 (create_all_comp_units): Read info section.
3617 (load_full_comp_unit): Likewise.
3618 (dwarf2_ranges_read): Read ranges section.
3619 (dwarf2_record_block_ranges): Add assert.
3620 (dwarf2_read_abbrevs): Read abbrev section.
3621 (read_indirect_string): Read str section.
3622 (dwarf_decode_line_header): Read line section.
3623 (read_signatured_type_at_offset): Read types section.
3624 (dwarf_decode_macros): Read macinfo section.
3625 (dwarf2_symbol_mark_computed): Read loc section.
3626 * dwarf2-frame.c (dwarf2_frame_find_fde): Call
3627 dwarf2_build_frame_info.
3628 (dwarf2_build_frame_info): Unconditionally set
3629 dwarf2_frame_objfile_data on the objfile.
3630 * configure.ac: Check for posix_madvise.
3631 * config.in, configure: Rebuild.
3632
3633 2010-03-10 Tom Tromey <tromey@redhat.com>
3634
3635 * xcoffread.c (xcoff_start_psymtab): Update.
3636 (xcoff_end_psymtab): Update.
3637 * psymtab.c (allocate_psymtab): Remove dead code.
3638 * psympriv.h (struct partial_symtab) <read_symtab_private>: Now
3639 void*.
3640 * mdebugread.c (parse_partial_symbols): Update.
3641 (new_psymtab): Likewise.
3642 * dwarf2read.c (process_psymtab_comp_unit): Update.
3643 (psymtab_to_symtab_1): Update.
3644 * dbxread.c (start_psymtab): Update.
3645 (end_psymtab): Likewise.
3646
3647 2010-03-10 Tom Tromey <tromey@redhat.com>
3648
3649 * xcoffread.c: Include psymtab.h.
3650 (xcoff_sym_fns): Update.
3651 * symtab.h (struct partial_symbol): Remove.
3652 (PSYMBOL_DOMAIN, PSYMBOL_CLASS): Remove.
3653 (struct partial_symtab): Remove.
3654 (PSYMTAB_TO_SYMTAB): Remove.
3655 (lookup_partial_symbol, lookup_partial_symtab, find_pc_psymtab)
3656 (find_pc_sect_psymtab): Remove.
3657 (find_pc_sect_symtab_via_partial): Declare.
3658 (find_pc_psymtab, find_pc_sect_psymbol, psymtab_to_symtab)
3659 (find_main_psymtab): Remove.
3660 (find_main_filename): Declare.
3661 (fixup_psymbol_section): Remove.
3662 (fixup_section): Declare.
3663 * symtab.c: Include psymtab.h.
3664 (lookup_symtab): Use lookup_symtab method.
3665 (lookup_partial_symtab): Remove.
3666 (find_pc_sect_psymtab_closer): Remove.
3667 (find_pc_sect_psymtab): Remove.
3668 (find_pc_sect_symtab_via_partial): New function.
3669 (find_pc_psymtab, find_pc_sect_psymbol, find_pc_psymbol): Remove.
3670 (fixup_section): No longer static.
3671 (fixup_psymbol_section): Remove.
3672 (lookup_symbol_aux): Use lookup_symbol_aux_quick.
3673 (lookup_global_symbol_from_objfile): Likewise.
3674 (lookup_symbol_aux_psymtabs): Remove.
3675 (lookup_symbol_aux_quick): New function.
3676 (lookup_symbol_global): Use lookup_symbol_aux_quick.
3677 (lookup_partial_symbol): Remove.
3678 (basic_lookup_transparent_type_quick): New function.
3679 (basic_lookup_transparent_type): Use it.
3680 (find_main_psymtab): Remove.
3681 (find_main_filename): New function.
3682 (find_pc_sect_symtab): Use find_pc_sect_symtab method.
3683 (find_line_symtab): Use expand_symtabs_with_filename method.
3684 (output_partial_symbol_filename): New function.
3685 (sources_info): Use map_partial_symbol_filenames.
3686 (struct search_symbols_data): New type.
3687 (search_symbols_file_matches): New function.
3688 (search_symbols_name_matches): Likewise.
3689 (search_symbols): Use expand_symtabs_matching method.
3690 (struct add_name_data): Rename from add_macro_name_data.
3691 (add_macro_name): Update.
3692 (add_partial_symbol_name): New function.
3693 (default_make_symbol_completion_list): Use
3694 map_partial_symbol_names.
3695 (struct add_partial_symbol_name): New type.
3696 (maybe_add_partial_symtab_filename): New function.
3697 (make_source_files_completion_list): Use
3698 map_partial_symbol_filenames.
3699 (expand_line_sal): Use expand_symtabs_with_filename method.
3700 * symmisc.c: Include psymtab.h.
3701 (print_objfile_statistics): Use print_stats method.
3702 (dump_objfile): Use dump method.
3703 (dump_psymtab, maintenance_print_psymbols)
3704 (maintenance_info_psymtabs, maintenance_check_symtabs)
3705 (extend_psymbol_list): Remove.
3706 * symfile.h (struct quick_symbol_functions): New struct.
3707 (struct sym_fns) <qf>: New field.
3708 (sort_pst_symbols): Remove.
3709 (increment_reading_symtab): Declare.
3710 * symfile.c: Include psymtab.h.
3711 (compare_psymbols, sort_pst_symbols): Remove.
3712 (psymtab_to_symtab): Remove.
3713 (increment_reading_symtab): New function.
3714 (symbol_file_add_with_addrs_or_offsets): Use expand_all_symtabs
3715 method.
3716 (set_initial_language): Use find_main_filename.
3717 (allocate_psymtab, discard_psymtab, cashier_psymtab): Remove.
3718 (free_named_symtabs): Remove unused code.
3719 (start_psymtab_common, add_psymbol_to_bcache)
3720 (append_psymbol_to_list, add_psymbol_to_list, init_psymbol_list):
3721 Remove.
3722 * stack.c: Include psymtab.h, symfile.h.
3723 (backtrace_command_1): Use find_pc_sect_symtab_via_partial.
3724 * source.h (psymtab_to_fullname): Don't declare.
3725 * source.c: Include psymtab.h.
3726 (select_source_symtab): Use find_last_source_symtab method.
3727 (forget_cached_source_info): Use forget_cached_source_info
3728 method.
3729 (find_and_open_source): No longer static.
3730 (psymtab_to_fullname): Remove.
3731 * somread.c: Include psymtab.h.
3732 (som_sym_fns): Update.
3733 * psympriv.h: New file.
3734 * psymtab.h: New file.
3735 * psymtab.c: New file.
3736 * objfiles.h: (ALL_OBJFILE_PSYMTABS): Remove.
3737 (ALL_PSYMTABS, ALL_PSPACE_PSYMTABS): Likewise.
3738 * objfiles.c: Include psymtab.h.
3739 (objfile_relocate1): Use relocate method.
3740 (objfile_has_partial_symbols): Use has_symbols method.
3741 * mipsread.c: Include psymtab.h.
3742 (ecoff_sym_fns): Update.
3743 * mi/mi-cmd-file.c: Include psymtab.h.
3744 (print_partial_file_name): New function.
3745 (mi_cmd_file_list_exec_source_files): Use
3746 map_partial_symbol_filenames.
3747 * mdebugread.c: Include psympriv.h.
3748 * machoread.c: Include psympriv.h.
3749 (macho_sym_fns): Update.
3750 * m2-exp.y (yylex): Use lookup_symtab.
3751 * elfread.c: Include psympriv.h.
3752 (elf_sym_fns): Update.
3753 * dwarf2read.c: Include psympriv.h.
3754 * dbxread.c: Include psympriv.h.
3755 (aout_sym_fns): Update.
3756 * cp-support.c: Include psymtab.h.
3757 (read_in_psymtabs): Remove.
3758 (make_symbol_overload_list_qualified): Use
3759 expand_symtabs_for_function method.
3760 * coffread.c: Include psympriv.h.
3761 (coff_sym_fns): Update.
3762 * blockframe.c: Include psymtab.h.
3763 (find_pc_partial_function): Use find_pc_sect_symtab method.
3764 * ada-lang.h (ada_update_initial_language): Update.
3765 * ada-lang.c: Include psymtab.h.
3766 (ada_update_initial_language): Remove 'main_pst' argument.
3767 (ada_lookup_partial_symbol): Remove.
3768 (struct ada_psym_data): New type.
3769 (ada_add_psyms): New function.
3770 (ada_add_non_local_symbols): Use map_ada_symtabs method.
3771 (struct add_partial_datum): New type.
3772 (ada_add_partial_symbol_completions): New function.
3773 (ada_make_symbol_completion_list): Use map_partial_symbol_names.
3774 (ada_exception_support_info_sniffer): Update.
3775 * Makefile.in (SFILES): Add psymtab.c.
3776 (COMMON_OBS): Add psymtab.o.
3777 (HFILES_NO_SRCDIR): Add psymtab.h, psympriv.h.
3778
3779 2010-03-10 Pierre Muller <muller@ics.u-strasbg.fr>
3780
3781 * remote-fileio.c (cygwin_conv_path): Define macro for old cygwin API.
3782
3783 2010-03-10 Sami Wagiaalla <swagiaal@redhat.com>
3784
3785 PR C++/11236:
3786 * cp-namespace.c (cp_add_using): Deleted.
3787 (cp_add_using_directive): Use obstack allocations.
3788 Merged the function cp_add_using into this one.
3789 Added 'struct obstack *' argument.
3790 (cp_scan_for_anonymous_namespaces): Updated.
3791 * cp-support.h: Updated.
3792 * dwarf2read.c (read_import_statement): Updated.
3793 (read_namespace): Updated.
3794
3795 2010-03-10 Pierre Muller <muller@ics.u-strasbg.fr>
3796
3797 * windows-nat.c (cygwin_conv_path): Remove old macro.
3798
3799 2010-03-10 Pedro Alves <pedro@codesourcery.com>
3800
3801 * breakpoint.c (condition_command): Handle watchpoint conditions.
3802 (is_hardware_watchpoint): Add comment.
3803 (is_watchpoint): New.
3804 (update_watchpoint): Don't reparse the watchpoint's condition
3805 unless necessary.
3806 (WP_IGNORE): New.
3807 (watchpoint_check): Use it.
3808 (bpstat_check_watchpoint): Handle it.
3809 (bpstat_check_breakpoint_conditions): Evaluate watchpoint local
3810 conditions in a frame where it makes sense.
3811 (watch_command_1): Store the innermost block of the condition
3812 expression.
3813 (delete_breakpoint): Delete the watchpoint condition expression.
3814 * breakpoint.h (struct bp_location) <cond>: Update comment.
3815 (struct breakpoint): New field `cond_exp_valid_block'.
3816
3817 2010-03-09 Joel Brobecker <brobecker@adacore.com>
3818
3819 Adjust handling of Ada DIEs after dwarf2_physname patch.
3820 * dwarf2read.c (dwarf2_compute_name): Add handling of Ada DIEs.
3821
3822 2010-03-09 Christopher Faylor <me+cygwin@cgf.cx>
3823 Pierre Muller <muller@ics.u-strasbg.fr>
3824
3825 * windows-nat.c (cygwin_conv_path): Redefine to properly convert
3826 from/to posix/win32.
3827 (windows_make_so): Use non-Cygwin 1.7 specific function.
3828 (windows_create_inferior): Make sure that cygallargs points to
3829 original args in non Cygwin 1.7. case.
3830
3831 2010-03-09 Michael Snyder <msnyder@vmware.com>
3832
3833 * i386-tdep.c (i386_record_lea_modrm_addr): Use extract_signed_int
3834 after target_read_memory to get host byte order.
3835 (i386_process_record): Ditto.
3836
3837 2010-03-09 Keith Seitz <keiths@redhat.com>
3838
3839 Based on work from Daniel Jacobowitz <dan@codesourcery.com>
3840 * c-typeprint.c (cp_type_print_method_args): For non-static methods,
3841 print out const or volatile qualifiers, too.
3842 (c_type_print_args): Add parameters show_artificial and language.
3843 Skip artificial parameters when requested.
3844 Use the appropriate language printer.
3845 (c_type_print_varspec): Tell c_type_print_args to skip artificial
3846 parameters and pass language_c.
3847 * dwarf2read.c (die_list): New file global.
3848 (struct partial_die_info): Update comments for name field.
3849 (pdi_needs_namespace): Renamed to ...
3850 (die_needs_namespace): ... this. Rewrite.
3851 (dwarf2_linkage_name): Remove.
3852 (add_partial_symbol): Do not predicate the call to
3853 partial_die_full_name based on pdi_needs_namespace.
3854 Remove call to cp_check_possible_namespace_symbols and associated
3855 outdated comments.
3856 (guess_structure_name): Do not inspect child subprogram DIEs.
3857 (dwarf2_fullname): Update comments.
3858 Use die_needs_namespace to assist in computing the name.
3859 (read_func_scope): Use dwarf2_name to get the DIE's name.
3860 Use dwarf2_physname to get the "linkage name" of the DIE.
3861 (dwarf2_add_member_field): Use dwarf2_physname instead of
3862 dwarf2_linkage_name.
3863 (read_structure_type): For structs and classes, set TYPE_NAME, too.
3864 (determine_class): Remove.
3865 (read_partial_die): Ignore DW_AT_MIPS_linkage_name for all languages
3866 except Ada.
3867 (new_symbol): Unconditionally call dwarf2_name.
3868 Compute the "linkage name" using dwarf2_physname.
3869 Use dwarf2_name instead of dwarf2_full_name for enumerator DIEs.
3870 When determining to scan for anonymous C++ namespaces, ignore
3871 the linkage name.
3872 (dwarf2_physname): New function.
3873 (dwarf2_full_name): Move content to new function and call
3874 that.
3875 (dwarf2_compute_name): "New" function.
3876 (_initialize_dwarf2_read): Initialize die_list.
3877 * gnu-v3-eabi.c (gnu_v3_find_method_in): Remove unused variable
3878 physname.
3879 (gnu_v3_print_method_ptr): Use the physname for virtual methods
3880 without a demangled name.
3881 Print out type information for non-virtual methods.
3882 * linespec.c (decode_line_1): Force ANY string using "::" (or
3883 "." for java) to use decode_compound, and clean up any stray quoting.
3884 If we found a file symtab, re-evaluate whether the remainder is_quoted.
3885 (decode_compound): Stop consuming at an open parenthesis.
3886 Keep template parameters.
3887 Keep any overload information.
3888 Keep keywords like "const".
3889 Remove paren_pointer.
3890 Move is_quoted check from set_flags to here.
3891 Remove #if 0 code from 2000. Ten years is long enough.
3892 (find_method): Before comparing symbol names, canonicalize the string
3893 from the user.
3894 If a specific overload is requested, find it. Otherwise throw an error.
3895 (find_method_overload_end): New function.
3896 (set_flags): Remove.
3897 (decode_compound): Assume that parentheses are matched.
3898 It's a lot easier.
3899 * symtab.c (symbol_find_demangled_name): Add DMGL_VERBOSE flag
3900 to cplus_demangle.
3901 * linespec.c (decode_line_1): Keep important keywords like
3902 "const" and "volatile".
3903 * symtab.h (SYMBOL_CPLUS_DEMANGLED_NAME): Remove.
3904 * typeprint.h (c_type_print_args): Add declaration.
3905 * ui-file.c (do_ui_file_obsavestring): New function.
3906 (ui_file_obsavestring): New function.
3907 * ui-file.h (ui_file_obsavestring): Add declaration.
3908 * valops.c (find_overload_match): Resolve the object to
3909 a non-pointer type.
3910 If the object is a data member, search the object for the member
3911 and return with staticp set.
3912 Use SYMBOL_NATURAL_NAME instead of SYMBOL_CPLUS_DEMANGLED_NAME.
3913 Do not attempt to extract a function name from non-function types.
3914 If the extracted function name and the original name are the same,
3915 we don't have a C++ method.
3916
3917 From Jan Kratochvil <jan.kratochvil@redhat.com>:
3918 * dwarf2read.c (new_symbol <DW_TAG_enumerator>): Call dwarf2_full_name.
3919
3920 * ada-lang.c (ada_lookup_symbol): Remove linkage_name parameters
3921 and arguments from symbol lookups.
3922 * ax-gdb.c (gen_expr): Likewise.
3923 * cp-namespace.c (cp_lookup_symbol_nonlocal, lookup_namespace_scope,
3924 cp_lookup_symbol_namespace, lookup_symbol_file, lookup_nested_type,
3925 lookup_possible_namespace_symbol): Likewise.
3926 * cp-support.c (read_in_psymtabs): Likewise.
3927 * cp-support.h (cp_lookup_symbol_nonlocal): Likewise.
3928 * language.h (la_lookup_symbol_nonlocal): Likewise.
3929 * scm-valprint.c (scm_inferior_print): Likewise.
3930 * solib-darwin.c (darwin_relocate_section_addresses): Likewise.
3931 * solib-svr.c (elf_lookup_lib): Likewise.
3932 * solib.c (show_auto_solib_add): Likewise.
3933 * solist.h (lookup_lib_global, solib_global_lookup): Likewise.
3934 * symmisc.c (maintenance_check_symtabs): Likewise.
3935 * symtab.c (lookup_symbol_in_language, lookup_symbol_aux,
3936 lookup_symbol_aux_local, lookup_symbol_aux_block,
3937 lookup_symbol_from_objfile, lookup_symbol_aux_symtabs,
3938 lookup_symbol_aux_psymtabs,basic_lookup_symbol_nonlocal,
3939 lookup_symbol_static, lookup_symbol_global, symbol_matches_domain,
3940 basic_lookup_transparent_type, find_main_psymtab,
3941 lookup_block_symbol): Likewise.
3942 * symtab.h (basic_lookp_symbol_nonlocal, lookup_symbol_static,
3943 lookup_symbol_global, lookup_symbol_aux_block,
3944 lookup_symbol_partial_symbol, lookup_block_symbol,
3945 lookup_global_symbol, value_maybe_namespace_elt): Likewise.
3946
3947 2010-03-09 Pierre Muller <muller@ics.u-strasbg.fr>
3948
3949 * python/python-internal.h: Include symtab.h.
3950
3951 2010-03-09 Joel Brobecker <brobecker@adacore.com>
3952 Pierre Muller <muller@ics.u-strasbg.fr>
3953
3954 * p-lang.c (is_pascal_string_type): Remove unneeded parentheses.
3955 * p-valprint.c (pascal_val_print): Remove undeed block and fix
3956 indentation.
3957
3958 2010-03-08 Tom Tromey <tromey@redhat.com>
3959
3960 * breakpoint.c (breakpoint_1): Add "QUIT".
3961
3962 2010-03-08 Daniel Jacobowitz <dan@codesourcery.com>
3963 Pedro Alves <pedro@codesourcery.com>
3964
3965 * solib.c (solib_find): Replace extension if
3966 solib_symbols_extension is set in the target gdbarch.
3967 * arm-symbian-tdep.c (arm_symbian_init_abi): Set
3968 solib_symbols_extension to "sym".
3969 * gdbarch.sh (solib_symbols_extension): New variable.
3970 (pstring): New function.
3971 * gdbarch.h, gdbarch.c: Regenerate.
3972
3973 2010-03-08 Tom Tromey <tromey@redhat.com>
3974
3975 PR cli/9591:
3976 * NEWS: Update.
3977 * utils.c: Include main.h.
3978 (fputs_maybe_filtered): Don't paginate if `batch_flag'.
3979 (defaulted_query): Use default answer if `batch_flag'.
3980 * main.h (batch_flag): Declare.
3981 * main.c (batch_flag): New global.
3982 (captured_main): Remove 'batch'. Update.
3983
3984 2010-03-08 Kevin Buettner <kevinb@redhat.com>
3985
3986 From Richard Sandiford, Martin M. Hunt, Corinna Vinschen,
3987 and Kevin Buettner:
3988
3989 * remote-mips.c (rockhopper_ops): New target_ops struct.
3990 (MON_ROCKHOPPER): New mips_monitor_type.
3991 (read_hex_value): New function.
3992 (mips_request): Send 8-byte values with a 'T' packet. Read the
3993 packet argument as a string and use read_hex_value to parse it.
3994 (mips_exit_debug): Wait for response when using MON_ROCKHOPPER.
3995 (rockhopper_open): New function.
3996 (mips_wait): Read the PC, FP and SP fields as strings. Use
3997 read_hex_value to parse them and mips_set_register to commit them.
3998 (mips_set_register): New function.
3999 (mips_fetch_registers): Do not cast register value to "unsigned"
4000 when reading a MON_ROCKHOPPER 't' packet. Use mips_set_register.
4001 (mips_store_registers): Use a 'T' packet to set registers when
4002 using MON_ROCKHOPPER.
4003 (pmon_end_download): Don't run initEther if using MON_ROCKHOPPER
4004 and expect the total to be printed before the entry address.
4005 (_initialize_remote_mips): Initialize and add rockhopper_ops.
4006
4007 2010-03-08 Kevin Buettner <kevinb@redhat.com>
4008
4009 * remote-mips.c (mips_fetch_word): Add new parameter, `valp'.
4010 Change return value to int. Store value fetched in location
4011 addressed by `val'. Use function's return value as success
4012 or failure indicator. Adjust all callers.
4013
4014 2010-03-08 Pierre Muller <muller@ics.u-strasbg.fr>
4015
4016 * p-lang.c (is_pascal_string_type): Check that TYPE arg is non NULL.
4017
4018 2010-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
4019 Hui Zhu <teawater@gmail.com>
4020
4021 * record.c (record_open_1): Check tmp_to_stopped_by_watchpoint and
4022 tmp_to_stopped_data_address.
4023 (record_open): Reset tmp_to_stopped_by_watchpoint and
4024 tmp_to_stopped_data_address.
4025 * target.c (init_dummy_target): Add to_stopped_by_watchpoint and
4026 to_stopped_data_address.
4027
4028 2010-03-08 Hui Zhu <teawater@gmail.com>
4029
4030 * i386-tdep.c (i386_process_record): Initialize regnum.
4031
4032 2010-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
4033
4034 * symfile.c (addr_info_make_relative): New variable sect_name, use it.
4035 Do not warn on ".gnu.liblist" and ".gnu.conflict".
4036
4037 2010-03-08 Joel Brobecker <brobecker@adacore.com>
4038
4039 Memory error when reading wrong core file.
4040 * solib-svr4.c (solib_svr4_r_map): catch and print all exception
4041 errors while reading the inferior memory, and return zero if
4042 an exception was raised.
4043
4044 2010-03-07 Michael Snyder <msnyder@vmware.com>
4045
4046 * record.c (record_restore): Rename tmpu8 to rectype.
4047
4048 * i386-tdep.c (i386_record_lea_modrm_addr): Rename local variables
4049 tmpu8, tmpi16, tmpi32, tmpulongest to addr8, addr16, addr32, addr64.
4050
4051 (i386_record_push): Rename local tmpulongest to addr.
4052
4053 (i386_process_record): Rename local tmpulongest to addr.
4054
4055 Rename local variables tmpu16, tmpu32, tmpu64 to addr16, addr32,
4056 addr64.
4057
4058 Rename local variable tmpu8 to opcode8 and regnum.
4059
4060 2010-03-07 Joel Brobecker <brobecker@adacore.com>
4061
4062 * remote.c (remote_get_ada_task_ptid): New function.
4063 (init_remote_ops): Set remote_ops.to_get_ada_task_ptid.
4064
4065 2010-03-06 Christopher Faylor <me+cygwin@cgf.cx>
4066
4067 * windows-nat.c: Reorganize #ifdef __CYGWIN__ considerations into one
4068 block. Define helper macros to reduce ifdefs in code.
4069 (get_module_name): Use cygwin_buf_t for buffer and __PMAX for buffer
4070 size. Call unadorned GetModuleFileNameEx rather than
4071 GetModuleFileNameEx*.
4072 (windows_make_so): Use __PMAX to denote maximum buffer size and
4073 cygwin_buf_t for buffer type. Use GetSystemDirectory{W,A} as
4074 appropriate.
4075 (get_image_name): Use __PMAX to denote maximum buffer size.
4076 (handle_load_dll): Likewise.
4077 (windows_pid_to_exec_file): Likewise.
4078 (windows_create_inferior): Add many accommodations for older Cygwin and
4079 non-Cygwin.
4080 (bad_GetModuleFileNameExW): Control inclusion of this function based on
4081 __USEWIDE conditional.
4082 (bad_GetModuleFileNameExA): Likewise.
4083 (_initialize_loadable): Just use real function names without the dyn_
4084 part since they are defined earlier.
4085
4086 2010-03-05 Corinna Vinschen <vinschen@redhat.com>
4087 Tom Tromey <tromey@redhat.com>
4088
4089 * utils.c (host_char_to_target): Add 'gdbarch' argument.
4090 (parse_escape): Likewise.
4091 * python/py-utils.c (unicode_to_target_string): Update.
4092 (unicode_to_target_python_string): Update.
4093 (target_string_to_unicode): Update.
4094 * printcmd.c (printf_command): Update.
4095 * p-exp.y (yylex): Update.
4096 * objc-exp.y (yylex): Update.
4097 * mi/mi-parse.c: Include charset.h.
4098 (mi_parse_escape): New function.
4099 (mi_parse_argv): Use it.
4100 * jv-exp.y (yylex): Update.
4101 * i386-cygwin-tdep.c (i386_cygwin_auto_wide_charset): New
4102 function.
4103 (i386_cygwin_init_abi): Call set_gdbarch_auto_wide_charset.
4104 * gdbarch.sh (auto_charset, auto_wide_charset): New.
4105 * gdbarch.c: Rebuild.
4106 * gdbarch.h: Rebuild.
4107 * defs.h (parse_escape): Update.
4108 * cli/cli-setshow.c: Include arch-utils.h.
4109 (do_setshow_command): Update.
4110 * cli/cli-cmds.c (echo_command): Update.
4111 * charset.h (target_charset, target_wide_charset): Update.
4112 * charset.c: Include arch-utils.h.
4113 (target_charset_name): Default to "auto".
4114 (target_wide_charset_name): Likewise.
4115 (show_target_charset_name): Handle "auto".
4116 (show_target_wide_charset_name): Likewise.
4117 (be_le_arch): New global.
4118 (set_be_le_names): Add 'gdbarch' argument.
4119 (validate): Likewise. Don't call set_be_le_names.
4120 (set_charset_sfunc, set_host_charset_sfunc)
4121 (set_target_charset_sfunc, set_target_wide_charset_sfunc):
4122 Update.
4123 (target_charset): Add 'gdbarch' argument.
4124 (target_wide_charset): Likewise. Remove 'byte_order' argument.
4125 (auto_target_charset_name): New global.
4126 (default_auto_charset, default_auto_wide_charset): New functions.
4127 (_initialize_charset): Set auto_target_charset_name. Allow "auto"
4128 for target charsets. Copy result of nl_langinfo. Use GetACP if
4129 USE_WIN32API.
4130 * c-lang.c (charset_for_string_type): Add 'gdbarch' argument,
4131 remove 'byte_order' argument. Update.
4132 (classify_type): Likewise.
4133 (c_emit_char): Update.
4134 (c_printchar): Update.
4135 (c_printstr): Update.
4136 (c_get_string): Update.
4137 (evaluate_subexp_c): Update.
4138 * arch-utils.h (default_auto_charset, default_auto_wide_charset):
4139 Declare.
4140 * python/python.c (gdbpy_target_charset): New function.
4141 (gdbpy_target_wide_charset): Likewise.
4142 (GdbMethods): Update.
4143 * NEWS: Update.
4144
4145 2010-03-05 Ulrich Weigand <uweigand@de.ibm.com>
4146
4147 * symfile.c (build_section_addr_info_from_objfile): Do not mask
4148 off high address bits.
4149
4150 2010-03-05 Ulrich Weigand <uweigand@de.ibm.com>
4151
4152 * python/py-lazy-string.c (gdbpy_extract_lazy_string): Extract
4153 address as UnsignedLongLong, not LongLong.
4154
4155 2010-03-05 Kevin Buettner <kevinb@redhat.com>
4156 Pedro Alves <pedro@codesourcery.com>
4157
4158 * remote-mips.c (gdbthread.h): Include.
4159 (remote_mips_ptid): Declare.
4160 (mips_error): Only mourn the inferior when inferior_ptid is non-null.
4161 (common_open): Set inferior_ptid, add it as an inferior, and
4162 as a thread too. Delete FIXME comment regarding start_remote().
4163 (mips_close): Invoke generic_mourn_inferior().
4164 (mips_kill): Make sure that target_mourn_inferior is invoked.
4165 (mips_mourn_inferior): Don't invoke generic_mourn_inferior, as
4166 it's now invoked from mips_close().
4167 (mips_load): Don't null out inferior_ptid. Don't call
4168 clear_symtab_users().
4169 (mips_thread_alive, mips_pid_to_str): New functions.
4170 (_initialize_remote_mips): Initialize remote_mips_ptid. Initialize
4171 to_thread_alive and to_pid_to_str operations.
4172
4173 2010-03-04 Tom Tromey <tromey@redhat.com>
4174
4175 * dwarf2read.c (skip_one_die) <DW_FORM_ref_addr>: Use offset size
4176 in DWARF 3 and later.
4177 (read_attribute_value) <DW_FORM_ref_addr>: Likewise.
4178
4179 2010-03-04 Keith Seitz <keiths@redhat.com>
4180
4181 * linespec.c (decode_line_1): Update comments for is_quote_enclosed.
4182 If the filename portion of the linespec was quoted, recheck the
4183 remainder for additional quoting.
4184 (locate_first_half): Skip over completer chars, too.
4185
4186 2010-03-04 Tom Tromey <tromey@redhat.com>
4187
4188 * printcmd.c (printf_command): Pass dummy argument to
4189 printf_filtered.
4190
4191 2010-03-04 Doug Evans <dje@google.com>
4192
4193 * arm-tdep.c (arm_make_stub_cache): Delete unused locals reg,
4194 unwound_fp.
4195
4196 * arm-tdep.c (arm_stub_unwind_sniffer): Add comment.
4197
4198 2010-03-04 Pedro Alves <pedro@codesourcery.com>
4199
4200 * breakpoint.c (update_watchpoint): Create a sentinel location if
4201 the software watchpoint isn't watching any memory.
4202 (breakpoint_address_bits): Skip dummy software watchpoint locations.
4203
4204 2010-03-04 Pedro Alves <pedro@codesourcery.com>
4205
4206 * utils.c (fputs_maybe_filtered): Check if there's already a top
4207 level interpreter before dereferencing it. If there isn't one,
4208 don't paginate either.
4209
4210 2010-03-04 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
4211
4212 * arm-tdep.c (arm_pc_is_thumb): Add heuristic that tries to get
4213 the state right when single stepping.
4214 (arm_get_next_pc_raw, thumb_get_next_pc_raw): New functions.
4215 Get the next PC along with the instruction state.
4216 (thumb_get_next_pc): Remove.
4217 (arm_get_next_pc): Modified to use arm_get_next_pc_raw.
4218
4219 2010-03-04 Hui Zhu <teawater@gmail.com>
4220
4221 * i386-tdep.c (i386_process_record): Change "addr" to "tmpu64".
4222
4223 2010-03-03 Pedro Alves <pedro@codesourcery.com>
4224
4225 * utils.c (fputs_maybe_filtered): Always disable pagination if the
4226 top level interpreter is MI.
4227
4228 2010-03-03 Stan Shebs <stan@codesourcery.com>
4229
4230 * remote.c (remote_download_tracepoint): Iterate over locations.
4231 * tracepoint.c (validate_actionline): Ditto.
4232 (encode_actions): Add location argument.
4233 (trace_dump_command): Check all locations to see if stepping
4234 frame.
4235
4236 2010-03-03 H.J. Lu <hongjiu.lu@intel.com>
4237 Eli Zaretskii <eliz@gnu.org>
4238
4239 * NEWS: Add X86 general purpose registers section.
4240
4241 2010-03-03 Tom Tromey <tromey@redhat.com>
4242
4243 PR mi/11098:
4244 * varobj.c (install_new_value): Handle case where new print_value
4245 is NULL.
4246
4247 2010-03-03 Dainis Jonitis <jonitis@gmail.com>
4248
4249 PR gdb/11345:
4250 * printcmd.c (printf_command): Print end of format string using
4251 printf_filtered.
4252
4253 2010-03-02 Tom Tromey <tromey@redhat.com>
4254
4255 * mi/mi-cmd-break.c (mi_read_next_line): Add missing 'void'.
4256 * defs.h (read_command_lines_1): Add missing 'void'.
4257 * cli/cli-script.c (recurse_read_control_structure): Add missing
4258 'void'.
4259 (read_next_line): Likewise.
4260 (read_command_lines_1): Likewise.
4261
4262 2010-03-02 Ulrich Weigand <uweigand@de.ibm.com>
4263
4264 * spu-tdep.c (spu_analyze_prologue): Track instruction to
4265 store backchain as part of prologue.
4266
4267 2010-03-02 Daniel Jacobowitz <dan@codesourcery.com>
4268
4269 * progspace.c (update_address_spaces): Update inferior address spaces
4270 also.
4271
4272 2010-03-02 Doug Evans <dje@google.com>
4273
4274 * dwarf2read.c (add_partial_subprogram): Add missing baseaddr to
4275 lowpc,highpc args to addrmap_set_empty.
4276
4277 2010-03-02 H.J. Lu <hongjiu.lu@intel.com>
4278
4279 * amd64-tdep.c (amd64_byte_names): New.
4280 (amd64_word_names): Likewise.
4281 (amd64_dword_names): Likewise.
4282 (amd64_pseudo_register_name): Likewise.
4283 (amd64_pseudo_register_read): Likewise.
4284 (amd64_pseudo_register_write): Likewise.
4285 (amd64_init_abi): Set num_byte_regs, num_word_regs, num_dword_regs
4286 and num_mmx_regs. Call set_gdbarch_pseudo_register_read,
4287 set_gdbarch_pseudo_register_write and
4288 set_tdesc_pseudo_register_name. Don't call
4289 set_gdbarch_num_pseudo_regs. Don't set mm0_regnum.
4290
4291 * i386-tdep.c (i386_num_mmx_regs): Removed.
4292 (i386_num_pseudo_regs): Likewise.
4293 (i386_byte_names): New.
4294 (i386_word_names): Likewise.
4295 (i386_byte_regnum_p): Likewise.
4296 (i386_word_regnum_p): Likewise.
4297 (i386_mmx_regnum_p): Updated.
4298 (i386_pseudo_register_name): Make it global. Handle byte and
4299 word pseudo-registers.
4300 (i386_pseudo_register_read): Likewise.
4301 (i386_pseudo_register_write): Likewise.
4302 (i386_pseudo_register_type): Handle byte, word and dword
4303 pseudo-registers
4304 (i386_register_reggroup_p): Don't include pseudo
4305 registers, except for MXX, in any register groups. Don't
4306 include pseudo byte, word, dword registers in general_reggroup.
4307 (i386_gdbarch_init): Set num_byte_regs, num_word_regs,
4308 num_dword_regs, al_regnum, ax_regnum and eax_regnum. Put MMX
4309 pseudo-registers after word pseudo-registers. Call
4310 set_gdbarch_num_pseudo_regs after calling gdbarch_init_osabi.
4311
4312 * i386-tdep.h (gdbarch_tdep): Add num_mmx_regs, num_byte_regs,
4313 al_regnum, num_word_regs, ax_regnum, num_dword_regs and
4314 eax_regnum.
4315 (i386_byte_regnum_p): New.
4316 (i386_word_regnum_p): Likewise.
4317 (i386_dword_regnum_p): Likewise.
4318 (i386_pseudo_register_name): Likewise.
4319 (i386_pseudo_register_read): Likewise.
4320 (i386_pseudo_register_write): Likewise.
4321
4322 2010-03-01 H.J. Lu <hongjiu.lu@intel.com>
4323
4324 * target-descriptions.c (tdesc_type): Remove
4325 TDESC_TYPE_I386_EFLAGS and TDESC_TYPE_I386_MXCSR.
4326 (tdesc_predefined_types): Likewise.
4327 (tdesc_gdb_type): Likewise. Pass NULL to append_flags_type_flag
4328 if flag name is empty.
4329 (maint_print_c_tdesc_cmd): Handle TDESC_TYPE_FLAGS.
4330
4331 * features/i386/32bit-core.xml: Define i386_eflags.
4332 * features/i386/64bit-core.xml: Likewise.
4333
4334 * features/i386/32bit-sse.xml: Define i386_mxcsr.
4335 * features/i386/64bit-sse.xml: Likewise.
4336
4337 * features/i386/amd64-linux.c: Regenerated.
4338 * features/i386/amd64.c: Likewise.
4339 * features/i386/i386-linux.c: Likewise.
4340 * features/i386/i386.c: Likewise.
4341
4342 2010-03-01 Daniel Jacobowitz <dan@codesourcery.com>
4343
4344 * gdbtypes.c (append_composite_type_field_raw): New.
4345 (append_composite_type_field_aligned): Use the new function.
4346 * gdbtypes.h (append_composite_type_field_raw): Declare.
4347 * target-descriptions.c (struct tdesc_type_field): Add start and end.
4348 (struct tdesc_type_flag): New type.
4349 (struct tdesc_type): Add TDESC_TYPE_STRUCT and TDESC_TYPE_FLAGS to
4350 kind. Add size to u.u. Add u.f for flags.
4351 (tdesc_gdb_type): Handle TDESC_TYPE_STRUCT and TDESC_TYPE_FLAGS.
4352 (tdesc_free_type): Likewise.
4353 (tdesc_create_struct, tdesc_set_struct_size, tdesc_create_flags): New.
4354 (tdesc_add_field): Handle TDESC_TYPE_STRUCT.
4355 (tdesc_add_bitfield, tdesc_add_flag): New.
4356 * target-descriptions.h (tdesc_create_struct, tdesc_set_struct_size)
4357 (tdesc_create_flags, tdesc_add_bitfield, tdesc_add_flag): Declare.
4358 * xml-tdesc.c (struct tdesc_parsing_data): Rename current_union to
4359 current_type. Add current_type_size and current_type_is_flags.
4360 (tdesc_start_union): Clear the new fields.
4361 (tdesc_start_struct, tdesc_start_flags): New.
4362 (tdesc_start_field): Handle struct fields, including bitfields.
4363 (field_attributes): Make type optional. Add start and end.
4364 (union_children): Rename to struct_union_children.
4365 (union_attributes): Rename to struct_union_attributes. Add optional
4366 size.
4367 (flags_attributes): New.
4368 (feature_children): Add struct and flags.
4369 * features/gdb-target.dtd: Add flags and struct to features.
4370 Make field type optional. Add field start and end.
4371
4372 2010-03-01 H.J. Lu <hongjiu.lu@intel.com>
4373
4374 * amd64-linux-nat.c (AMD64_LINUX_USER64_CS): New.
4375 (amd64_linux_read_description): Likewise.
4376 (_initialize_amd64_linux_nat): Set to_read_description to
4377 amd64_linux_read_description.
4378
4379 * amd64-linux-tdep.c: Include "features/i386/amd64-linux.c".
4380 (amd64_linux_register_name): Removed.
4381 (amd64_linux_register_type): Likewise.
4382 (amd64_linux_core_read_description): New.
4383 (amd64_linux_init_abi): Set target description to
4384 tdesc_amd64_linux if needed. Support orig_rax in target
4385 description. Don't call set_gdbarch_register_name nor
4386 set_gdbarch_register_type. Call
4387 set_gdbarch_core_read_description.
4388 (_initialize_amd64_linux_tdep): Call
4389 initialize_tdesc_amd64_linux.
4390
4391 * amd64-linux-tdep.h (tdesc_amd64_linux): New.
4392
4393 * amd64-tdep.c: Include "features/i386/amd64.c".
4394 (amd64_register_names): Removed.
4395 (amd64_register_name): Likewise.
4396 (amd64_register_type): Likewise.
4397 (amd64_init_abi): Set num_core_regs and register_names. Set
4398 target description to tdesc_amd64 if needed. Don't call
4399 set_gdbarch_register_name nor set_gdbarch_register_type.
4400 (_initialize_amd64_tdep): New.
4401
4402 * i386-linux-nat.c (i386_linux_read_description): New.
4403 (_initialize_i386_linux_nat): Set to_read_description to
4404 i386_linux_read_description.
4405
4406 * i386-linux-tdep.c: Include "features/i386/i386-linux.c".
4407 (i386_linux_register_name): Removed.
4408 (i386_linux_core_read_description): New.
4409 (i386_linux_read_description): Likewise.
4410 (i386_linux_init_abi): Don't call set_gdbarch_register_name.
4411 Set target description to tdesc_i386_linux if needed. Support
4412 orig_eax. Set register_reggroup_p. Call
4413 set_gdbarch_core_read_description.
4414 (_initialize_i386_linux_tdep): Call initialize_tdesc_i386_linux.
4415
4416 * i386-linux-tdep.h (tdesc_i386_linux): New.
4417
4418 * i386-nto-tdep.c (i386nto_regset_id): Replace I386_NUM_FREGS
4419 with I387_NUM_REGS.
4420
4421 * i386-tdep.c: Include "features/i386/i386.c".
4422 (i386_register_names): Make it const.
4423 (i386_mmx_names): Likewise.
4424 (i386_num_register_names): Removed.
4425 (i386_register_name): Likewise.
4426 (i386_eflags_type): Likewise.
4427 (i386_mxcsr_type): Likewise.
4428 (i386_sse_type): Likewise.
4429 (i386_register_type): Likewise.
4430 (i387_ext_type): Call tdesc_find_type instead of arch_float_type.
4431 (i386_pseudo_register_name): New.
4432 (i386_pseudo_register_type): Likewise.
4433 (i386_mmx_type): Make it static.
4434 (i386_gdbarch_init): Check arch. Replace I386_NUM_FREGS with
4435 I387_NUM_REGS. Set num_core_regs and register_names. Don't
4436 call set_gdbarch_register_name nor set_gdbarch_register_type.
4437 Set register_reggroup_p. Set target description to tdesc_i386
4438 if needed. Call set_tdesc_pseudo_register_type,
4439 set_tdesc_pseudo_register_name and tdesc_use_registers.
4440 (_initialize_i386_tdep): Call initialize_tdesc_i386.
4441 initialize_tdesc_x86_64.
4442
4443 * i386-tdep.h (gdbarch_tdep): Remove i386_eflags_type,
4444 i386_mxcsr_type and i386_sse_type. Add num_core_regs,
4445 register_names, tdesc and register_reggroup_p.
4446 (I386_NUM_FREGS): Removed.
4447 (i386_eflags_type): Likewise.
4448 (i386_mxcsr_type): Likewise.
4449 (i386_mmx_type): Likewise.
4450 (i386_sse_type): Likewise.
4451 (i386_register_name): Likewise.
4452 (i386_regnum): Add I386_MXCSR_REGNUM.
4453 (I386_SSE_NUM_REGS): Defined with I386_MXCSR_REGNUM.
4454
4455 * i387-tdep.h (I387_NUM_REGS): New.
4456
4457 * regformats/i386/i386-linux.dat: Generated.
4458 * regformats/i386/i386.dat: Likewise.
4459 * regformats/i386/amd64-linux.dat: Likewise.
4460 * regformats/i386/amd64.dat: Likewise.
4461
4462 * regformats/reg-i386-linux.dat: Removed.
4463 * regformats/reg-i386.dat: Likewise.
4464 * regformats/reg-x86-64-linux.dat: Likewise.
4465 * regformats/reg-x86-64.dat: Likewise.
4466
4467 2010-03-01 Corinna Vinschen <vinschen@redhat.com>
4468
4469 * remote-fileio.c (remote_fileio_func_rename): Use Cygwin 1.7
4470 cygwin_conv_path API rather than the deprecated
4471 cygwin_conv_to_full_posix_path.
4472 * windows-nat.c:
4473 (GetModuleFileNameExA): Undefine for Cygwin.
4474 (GetModuleFileNameExW): Define for Cygwin.
4475 (get_module_name): Change size of pathbuf to PATH_MAX for Cygwin.
4476 Call GetModuleFileNameExW and convert path to POSIX using
4477 cygwin_conv_path.
4478 (windows_make_so): Always define p. Drop unused variable m.
4479 Don't use Win32 functions to check file existance, rather use
4480 access on Cygwin. Fetch system directory using GetSystemDirectoryW.
4481 Use canonicalize_file_name to get full path.
4482 (get_image_name): Use wcstombs, rather than WideCharToMultiByte
4483 to convert Unicode pathname to multibyte on Cygwin. Otherwise,
4484 use correct target buffer size in call to WideCharToMultiByte.
4485 (handle_load_dll): Change size of dll_buf to PATH_MAX for Cygwin.
4486 (windows_pid_to_exec_file): Change size of path to PATH_MAX for Cygwin.
4487 (windows_create_inferior): Convert all paths and arguments to wchar_t
4488 and use CreateProcessW on Cygwin.
4489 (_initialize_windows_nat): Disable DOS-style path warning on Cygwin.
4490 (bad_GetModuleFileNameExA): Undefine for Cygwin.
4491 (bad_GetModuleFileNameExW): Define for Cygwin.
4492 (_initialize_loadable): Load GetModuleFileNameExW into
4493 dyn_GetModuleFileNameExW on Cygwin. Don't load ANSI function on Cygwin.
4494
4495 2010-02-28 Phil Muldoon <pmuldoon@redhat.com>
4496
4497 PR python/11036
4498 * python/py-frame.c (frapy_read_var): Add block argument and logic
4499 to cope with user provided blocks.
4500
4501 2010-02-28 Jan Kratochvil <jan.kratochvil@redhat.com>
4502
4503 * infcall.c (call_function_by_hand): Remove gdb_assert on sp and old_sp.
4504 New comment.
4505
4506 2010-02-28 Corinna Vinschen <vinschen@redhat.com>
4507
4508 * Makefile.in (SUBDIR_MI_OBS): Move mi-common.o from here...
4509 (COMMON_OBS): ... to here since it's used unconditionally.
4510 (SUBDIR_MI_SRCS): Move mi/mi-common.c from here...
4511 (SFILES): To here.
4512
4513 2010-02-26 David Daney <ddaney@caviumnetworks.com>
4514
4515 * mips-linux-tdep.c: Update struct sigframe comments.
4516 (SIGFRAME_CODE_OFFSET): Delete macro.
4517 (mips_linux_o32_sigframe_init): Calculate sigcontext_base using
4518 this_frame's sp.
4519 (mips_linux_n32n64_sigframe_init): Same.
4520
4521 2010-02-26 Kevin Buettner <kevinb@redhat.com>
4522
4523 * remote-mips.c (mips_load): Don't use pseudo-register when
4524 invalidating regcache.
4525
4526 2010-02-26 Daniel Jacobowitz <dan@codesourcery.com>
4527
4528 * arm-tdep.c (thumb_get_next_pc): Correct conditional branch opcode.
4529
4530 2010-02-26 Pedro Alves <pedro@codesourcery.com>
4531
4532 * NEWS: Add "New targets" section, and mention ARM Symbian
4533 support.
4534
4535 2010-02-26 Ulrich Weigand <uweigand@de.ibm.com>
4536
4537 * dwarf2loc.c (struct piece_closure): Remove ARCH member,
4538 add ADDR_SIZE member.
4539 (allocate_piece_closure): Update.
4540 (copy_pieced_value_closure): Likewise.
4541 (dwarf2_evaluate_loc_desc): Likewise.
4542 (read_pieced_value): Use DWARF address size instead of
4543 GDB's gdbarch_addr_bit as size of values on the DWARF stack.
4544
4545 2010-02-26 Phil Muldoon <pmuldoon@redhat.com>
4546 Tom Tromey <tromey@redhat.com>
4547
4548 * python/py-type.c (typy_lookup_typename): Add in block argument.
4549 If provided restrict lookup to specified blocks.
4550 (gdbpy_lookup_type): Likewise.
4551 (typy_lookup_type): Likewise.
4552
4553 2010-02-25 Daniel Jacobowitz <dan@codesourcery.com>
4554
4555 Symbian config
4556
4557 gdb/
4558 * arm-symbian-tdep.c: New.
4559 * configure.tgt (arm*-*-symbianelf*): New target.
4560 (*-*-symbianelf*): New OS.
4561 * osabi.c (gdb_osabi_names): Add Symbian.
4562 * defs.h (gdb_osabi): Add GDB_OSABI_SYMBIAN.
4563 * Makefile.in (ALL_TARGET_OBJS): Add arm-symbian-tdep.o.
4564 (ALLDEPFILES): Add arm-symbian-tdep.c.
4565
4566 2010-02-25 Daniel Jacobowitz <dan@codesourcery.com>
4567
4568 * symfile.c (find_lowest_section): Include SEC_ALLOC sections.
4569
4570 2010-02-24 Pedro Alves <pedro@codesourcery.com>
4571
4572 * mi/mi-main.c (mi_cmd_execute): Fix typo.
4573
4574 2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
4575 Tom Tromey <tromey@redhat.com>
4576 Thiago Jung Bauermann <bauerman@br.ibm.com>
4577
4578 * python/python.c (_initialize_python): Call
4579 gdbpy_initialize_symtabs, gdbpy_initialize_symbols and
4580 gdbpy_initialize_blocks.
4581 * python/python-internal.h: Declare struct symbol, block and
4582 symtab_and_line. Declare block_object_type and
4583 symbol_object_type
4584 (gdbpy_lookup_symbol gdbpy_block_for_pc)
4585 (symtab_and_line_to_sal_object, symtab_to_symtab_object)
4586 (symbol_to_symbol_object, block_to_block_object)
4587 (gdbpy_initialize_symtabs,gdbpy_initialize_symbols)
4588 (gdbpy_initialize_blocks ): Declare.
4589 * python/py-frame.c (frapy_block, frapy_function, frapy_find_sal)
4590 (frapy_select): Add methods.
4591 (frapy_read_var): Add symbol branch.
4592 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-symbol, py-symtab,
4593 py-block.
4594 (SUBDIR_PYTHON_SRCS): Likewise.
4595 (py-symbol.o): New rule.
4596 (py-symtab.o): Likewise.
4597 (py-block.o): Likewise.
4598 * python/py-symbol.c: New file.
4599 * python/py-symtab.c: Likewise.
4600 * python/py-block.c: Likewise.
4601
4602 2010-02-24 Pedro Alves <pedro@codesourcery.com>
4603
4604 PR gdb/11321
4605
4606 * inferior.h (prepare_for_detach): Declare.
4607 (struct inferior) <detaching>: New field.
4608 * infrun.c (prepare_for_detach): New.
4609 (handle_inferior_event) <random signal>: Don't stop if detaching.
4610 * target.c (target_detach): Call prepare_for_detach.
4611
4612 2010-02-24 Pedro Alves <pedro@codesourcery.com>
4613
4614 Per-process displaced stepping queue.
4615
4616 * infrun.c (displaced_step_ptid, displaced_step_request_queue)
4617 (displaced_step_gdbarch, displaced_step_closure,
4618 (displaced_step_original, displaced_step_copy): Move globals to
4619 this...
4620 (struct displaced_step_inferior_state): ... new structure.
4621 (displaced_step_inferior_states): New global.
4622 (get_displaced_stepping_state, add_displaced_stepping_state)
4623 (remove_displaced_stepping_state, infrun_inferior_exit): New
4624 functions.
4625 (displaced_step_clear): Add displaced_step_inferior_state
4626 parameter, and adjust to handle it.
4627 (displaced_step_clear_cleanup): Parameter is now a
4628 displaced_step_inferior_state. Adjust.
4629 (displaced_step_prepare): Adjust.
4630 (displaced_step_fixup, displaced_step_fixup)
4631 (infrun_thread_ptid_changed, resume): Adjust.
4632 (init_wait_for_inferior): Don't call displaced_step_clear.
4633 (infrun_thread_stop_requested): Rewrite.
4634 (_initialize_infrun): Install infrun_inferior_exit as
4635 inferior_exit observer.
4636
4637 2010-02-24 Pedro Alves <pedro@codesourcery.com>
4638
4639 * inferior.h (ptid_match): Declare.
4640 * infrun.c (ptid_match): New.
4641 * remote.c (queued_stop_reply): Rewrite and use ptid_match.
4642 (handle_notification): Add debug output.
4643 * linux-nat.c (ptid_match): Delete.
4644
4645 2010-02-24 David S. Miller <davem@davemloft.net>
4646
4647 * gdb_ptrace.h (PT_SYSCALL): If PTRACE_SYSCALL is available, use it.
4648 * syscalls/sparc-linux.xml: New.
4649 * syscalls/sparc64-linux.xml: New.
4650 * Makefile.in (XML_SYSCALL_FILES): Add new syscall XML files.
4651 * sparc-linux-tdep.c (XML_SYSCALL_FILENAME_SPARC32): Define.
4652 (sparc32_linux_get_syscall_number): New function.
4653 (sparc32_linux_init_abi): Set syscall XML file name and hook up
4654 syscall number fetcher.
4655 * sparc64-linux-tdep.c (XML_SYSCALL_FILENAME_SPARC64): Define.
4656 (sparc64_linux_get_syscall_number): New function.
4657 (sparc64_linux_init_abi): Set syscall XML file name and hook up
4658 syscall number fetcher.
4659
4660 2010-02-24 Vladimir Prus <vladimir@codesourcery.com>
4661
4662 Multiexec MI
4663
4664 * breakpoint.c (clear_syscall_counts): Take struct inferior*.
4665 * inferior.c (add_inferior_silent): Notify inferior_added
4666 observer.
4667 (delete_inferior_1): Notify inferior_removed observer.
4668 (exit_inferior_1): Pass inferior, not pid, to observer.
4669 (inferior_appeared): Likewise.
4670 (add_inferior_with_spaces): New.
4671 (add_inferior_command): Use the above.
4672 * inferior.h (delete_inferior_1, add_inferior_with_spaces):
4673 Declare.
4674
4675 * inflow.c (inflow_inferior_exit): Likewise.
4676 * jit.c (jit_inferior_exit_hook): Likewise.
4677
4678 * mi/mi-cmds.c (mi_cmds): Register add-inferior and
4679 remove-inferior.
4680 * mi/mi-cmds.h (mi_cmd_add_inferior, mi_cmd_remove_inferior): New.
4681 * mi/mi-interp.c (mi_inferior_added, mi_inferior_removed): New.
4682 (report_initial_inferior): New.
4683 (mi_inferior_removed): Register the above. Make sure
4684 inferior_added observer is called on the first inferior.
4685 (mi_new_thread, mi_thread_exit): Thread group is now identified by
4686 inferior number, not pid.
4687 (mi_solib_loaded, mi_solib_unloaded): Report which inferiors are
4688 affected.
4689 * mi/mi-main.c (current_context): New.
4690 (proceed_thread_callback): Use typed closure.
4691 Proceed everything if pid is 0. Most implementation split into
4692 (proceed_thread): ... this.
4693 (run_one_inferior): New.
4694 (mi_cmd_exec_continue, mi_cmd_exec_interrupt, mi_cmd_exec_run):
4695 Adjust for multiexec behaviour.
4696 (mi_cmd_add_inferior, mi_cmd_remove_inferior): New.
4697 (mi_cmd_execute): Handle the 'thread-group' option here.
4698 Do some extra checks.
4699 * mi-parse.c (mi_parse): Handle the --all and --thread-group
4700 options.
4701 * mi-parse.h (struct mi_parse): New fields all and thread_group.
4702
4703 2010-02-24 Vladimir Prus <vladimir@codesourcery.com>
4704
4705 Make -exec-run a proper MI commands.
4706
4707 * mi/mi-cmds.h (mi_cmd_exec_run): Declare.
4708 * mi/mi-cmds.c (mi_cmds): Adjust.
4709 * mi/mi-main.c (mi_cmd_exec_run): New.
4710
4711 2010-02-24 Pedro Alves <pedro@codesourcery.com>
4712 Stan Shebs <stan@codesourcery.com>
4713
4714 * tracepoint.h (set_traceframe_number)
4715 (cleanup_restore_current_traceframe): Declare.
4716 * tracepoint.c (set_traceframe_number): New.
4717 (struct current_traceframe_cleanup): New.
4718 (do_restore_current_traceframe_cleanup)
4719 (restore_current_traceframe_cleanup_dtor)
4720 (make_cleanup_restore_current_traceframe): New.
4721 * infrun.c: Include tracepoint.h.
4722 (fetch_inferior_event): Switch out and in of tfind mode.
4723
4724 2010-02-24 Pedro Alves <pedro@codesourcery.com>
4725
4726 * breakpoint.c (breakpoint_init_inferior): Also delete
4727 bp_shlib_event breakpoints.
4728 * solib-frv.c (enable_break): Remove call to
4729 remove_solib_event_breakpoints.
4730 * solib-svr4.c (enable_break): Ditto.
4731 * solib-darwin.c (darwin_solib_create_inferior_hook): Ditto.
4732 * solib-pa64.c (pa64_solib_create_inferior_hook): Ditto.
4733 * solib-som.c (som_solib_create_inferior_hook): Ditto.
4734 * solib-spu.c (spu_enable_break): Ditto.
4735
4736 2010-02-23 Harald Koenig <H.Koenig@science-computing.de>
4737
4738 * c-exp.y (token_and_value): s/union YYSTYPE/YYSTYPE.
4739
4740 2010-02-23 Harald Koenig <H.Koenig@science-computing.de>
4741
4742 * varobj.c (varobj_update): Avoid non-constants in initializers.
4743
4744 2010-02-23 Tom Tromey <tromey@redhat.com>
4745
4746 * dwarf2loc.c (read_pieced_value) <DWARF_VALUE_STACK>: Correctly
4747 handle big-endian values.
4748 (dwarf2_evaluate_loc_desc) <DWARF_VALUE_STACK>: Likewise.
4749
4750 2010-02-22 Pedro Alves <pedro@codesourcery.com>
4751
4752 PR9605
4753
4754 gdb/
4755 * breakpoint.c (insert_bp_location): If inserting the read
4756 watchpoint failed, fallback to an access watchpoint.
4757 (bpstat_check_watchpoint): Stop for read watchpoint triggers even
4758 if the value changed, if not watching the same memory for writes.
4759 (watchpoint_locations_match): Add comment.
4760 (update_global_location_list): Copy the location's watchpoint type.
4761 * i386-nat.c (i386_length_and_rw_bits): It's an internal error to
4762 handle read watchpoints here.
4763 (i386_insert_watchpoint): Read watchpoints aren't supported.
4764 * remote.c (remote_insert_watchpoint): Return 1 for unsupported
4765 packets.
4766 * target.h (target_insert_watchpoint): Update description.
4767
4768 2010-02-19 Tom Tromey <tromey@redhat.com>
4769
4770 * p-typeprint.c (pascal_type_print_varspec_prefix): Update.
4771 * m2-typeprint.c (m2_print_type): Update.
4772 * gdbtypes.c (recursive_dump_type): Update.
4773 (copy_type_recursive): Update.
4774 * c-typeprint.c (c_type_print_varspec_prefix): Update.
4775 (c_type_print_base): Update.
4776 * gdbtypes.h (TYPE_CODE_TEMPLATE, TYPE_CODE_TEMPLATE_ARG):
4777 Remove.
4778 (struct cplus_struct_type) <ntemplate_args>: Remove.
4779 <struct template_arg>: Remove.
4780 <is_dynamic>: Move earlier.
4781 (TYPE_TEMPLATE_ARGS): Remove.
4782 (TYPE_NTEMPLATE_ARGS): Remove.
4783 (TYPE_TEMPLATE_ARG): Remove.
4784
4785 2010-02-19 Tom Tromey <tromey@redhat.com>
4786
4787 PR c++/8693, PR c++/9496:
4788 * cp-namespace.c (cp_lookup_nested_type): Handle TYPE_CODE_UNION.
4789 * c-exp.y (lex_one_token): Rename from yylex. Don't call
4790 write_dollar_variable. Don't try to classify NAME tokens.
4791 (token_and_value): New type.
4792 (token_fifo, popping, name_obstack): New globals.
4793 (classify_name): New function.
4794 (classify_inner_name): Likewise.
4795 (yylex): Likewise.
4796 (VARIABLE): Now has type sval.
4797 (exp : VARIABLE): Call write_dollar_variable.
4798 (qualified_name): Use TYPENAME, not typebase. Add production for
4799 multiple "::" instances.
4800 (variable): Use name_not_typename.
4801 (qualified_type): Remove.
4802 (typebase): Update.
4803
4804 2010-02-19 Jan Kratochvil <jan.kratochvil@redhat.com>
4805
4806 * symfile.c (addr_info_make_relative): Extend comment. Move SECT to
4807 a more inner block. Initialize ADDR by LOWER_OFFSET only if it was
4808 found by bfd_get_section_by_name.
4809 * symfile.h (struct section_addr_info) <sectindex>: New comment.
4810
4811 2010-02-19 Joel Brobecker <brobecker@adacore.com>
4812
4813 * NEWS: Add new "[...] since 7.1" section. Rename the "[...] since
4814 7.0 section" into "Changes in 7.1".
4815
4816 2010-02-19 Joel Brobecker <brobecker@adacore.com>
4817
4818 GDB 7.1 branch created (branch timestamp: 2010-02-18 20:00 UTC)
4819 * version.in: Bump version to 7.1.50.20100219-cvs.
4820
4821 2010-02-18 Harald Koenig <H.Koenig@science-computing.de>
4822
4823 * mi/mi-main.c (mi_cmd_exec_jump): Drop unneeded `return'.
4824 * symfile.c (symfile_map_offsets_to_segments): Fix assertion.
4825
4826 2010-02-17 Tom Tromey <tromey@redhat.com>
4827
4828 * NEWS: Add Python API Improvements section.
4829
4830 2010-02-18 Daniel Jacobowitz <dan@codesourcery.com>
4831
4832 * NEWS: Correct typo.
4833
4834 2010-02-17 Tom Tromey <tromey@redhat.com>
4835
4836 * objfiles.c (gdb_bfd_ref): Handle abfd==NULL.
4837
4838 2010-02-17 Jan Kratochvil <jan.kratochvil@redhat.com>
4839
4840 * symfile.c (build_section_addr_info_from_objfile): Include sections
4841 only if they are SEC_ALLOC or SEC_LOAD.
4842
4843 2010-02-17 H.J. Lu <hongjiu.lu@intel.com>
4844
4845 PR shlibs/11293
4846 * solib-svr4.c (enable_break): Check size of CORE_ADDR instead
4847 of ULONGEST for address size.
4848
4849 2010-02-17 Tom Tromey <tromey@redhat.com>
4850
4851 * NEWS: Add C++ improvements section.
4852
4853 2010-02-17 Ulrich Weigand <uweigand@de.ibm.com>
4854
4855 * python/python-internal.h [!WITH_THREAD] (PyGILState_Release,
4856 PyThreadState_Swap): Avoid "statement with no effect" warning.
4857
4858 2010-02-17 Jan Kratochvil <jan.kratochvil@redhat.com>
4859
4860 * solib-svr4.c (enable_break <target_auxv_search>): New variable
4861 addr_bit. Adjust LOAD_ADDR sign for cross-arch inferiors.
4862
4863 2010-02-17 Tristan Gingold <gingold@adacore.com>
4864 Petr Hluzin <petr.hluzin@gmail.com>
4865
4866 * avr-tdep.c (avr_scan_prologue): Convert an if statement to a
4867 gdb_assert. Fix info->size for SIG prologue.
4868
4869 2010-02-16 Daniel Jacobowitz <dan@codesourcery.com>
4870
4871 * infcmd.c (show_inferior_tty_command): Check for NULL.
4872 Correct output message.
4873
4874 2010-02-16 Daniel Jacobowitz <dan@codesourcery.com>
4875
4876 * linespec.c (decode_line_1): Handle FILE:FUNCTION even if
4877 FUNCTION contains parentheses. Improve removal of a trailing
4878 single quote.
4879
4880 2010-02-16 Daniel Jacobowitz <dan@codesourcery.com>
4881
4882 * gcore.c (do_bfd_delete_cleanup): New function.
4883 (gcore_command): Use it. Discard the cleanup after success.
4884 (gcore_copy_callback): Delete dead code.
4885
4886 2010-02-16 Daniel Jacobowitz <dan@codesourcery.com>
4887
4888 * symfile.c (addr_info_make_relative): Always use
4889 find_lowest_section.
4890
4891 2010-02-16 Sami Wagiaalla <swagiaal@redhat.com>
4892
4893 * NEWS: Added entry for namespace fixes.
4894
4895 2010-02-15 Tom Tromey <tromey@redhat.com>
4896
4897 * dwarf2read.c (guess_structure_name): Allocate name on the
4898 objfile obstack.
4899
4900 2010-02-15 Tom Tromey <tromey@redhat.com>
4901
4902 * c-typeprint.c (c_type_print_base): Reverse order of test.
4903
4904 2010-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
4905
4906 * solib-svr4.c (LM_ADDR_CHECK): New variable minpagesize. Optionally
4907 initialize it from ELF BFD. Extend the prelink condition by it.
4908
4909 2010-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
4910
4911 * defs.h (parse_pid_to_attach): New.
4912 * utils.c (parse_pid_to_attach): New.
4913 * darwin-nat.c (darwin_attach): Replace ARGS parsing by parse_pid.
4914 * gnu-nat.c (gnu_attach): Likewise.
4915 * nto-procfs.c (procfs_attach): Likewise.
4916 * procfs.c (procfs_attach): Likewise.
4917 * windows-nat.c (windows_attach): Likewise.
4918 * inf-ptrace.c (inf_ptrace_attach): Likewise. Remove variable dummy.
4919 * inf-ttrace.c (inf_ttrace_attach): Likewise.
4920 * remote.c (extended_remote_attach_1): Likewise. New comment on getpid
4921 check.
4922
4923 2010-02-14 Masaki Muranaka <monaka@monami-software.com>
4924
4925 * MAINTAINERS: Add myself for write after approval privileges.
4926
4927 2010-02-13 Jan Kratochvil <jan.kratochvil@redhat.com>
4928
4929 * solib-svr4.c: (LM_ADDR_CHECK): Move variable align to a more inner
4930 block.
4931
4932 2010-02-13 Jan Kratochvil <jan.kratochvil@redhat.com>
4933
4934 * solib-svr4.c: (LM_ADDR_CHECK): Print successful prelink adjustment
4935 only if INFO_VERBOSE.
4936
4937 2010-02-12 Tomas Holmberg <th@virtutech.com>
4938
4939 * mi/mi-main.c: Added the --reverse flag to the following MI
4940 commands: exec-continue, exec-finish, exec-next, exec-step,
4941 exec-next-instruction, exec-step-instruction. This is to
4942 support reverse execution over the MI interface to gdb.
4943
4944 2010-02-12 Pedro Alves <pedro@codesourcery.com>
4945
4946 * tracepoint.c (_initialize_tracepoint): Specify that the address
4947 range of `tfind outsize' is exclusive, and that the address range
4948 of `tfind range' is inclusive, in the commands' help strings.
4949
4950 2010-02-12 Joel Brobecker <brobecker@adacore.com>
4951
4952 Spurious "dll not found" error messages on x64-windows.
4953 * windows-nat.c: Add include of complaints.h.
4954 (handle_unload_dll): Change dll-not-found error into a complaint.
4955
4956 2010-02-12 Pedro Alves <pedro@codesourcery.com>
4957
4958 * breakpoint.c (allocate_bp_location): Use bp_loc_other for
4959 bp_tracepoint and bp_fast_tracepoint, not
4960 bp_loc_software_breakpoint.
4961 (update_global_location_list): Tracepoints are never duplicates of
4962 anything.
4963
4964 2010-02-12 Pedro Alves <pedro@codesourcery.com>
4965
4966 * breakpoint.c (break_command_really): Change return type to int.
4967 Return false if no breakpoint was created, true otherwise.
4968 (trace_command): Don't set the tracepoint count if no tracepoint
4969 was created.
4970 (ftrace_command): Ditto.
4971 (create_tracepoint_from_upload): Bail out if the tracepoint wasn't
4972 created in the breakpoints table.
4973
4974 2010-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
4975 Ulrich Weigand <uweigand@de.ibm.com>
4976
4977 * solib-svr4.c (LM_ADDR_CHECK): New comment on PPC-aware condition.
4978
4979 2010-02-11 Pedro Alves <pedro@codesourcery.com>
4980
4981 * ax-gdb.c (gen_exp_binop_rest) [BINOP_SUBSCRIPT]: Error out if
4982 the offset value isn't of integral type.
4983
4984 2010-02-11 Jan Kratochvil <jan.kratochvil@redhat.com>
4985
4986 * breakpoint.c (delete_breakpoint) <bpt->related_breakpoint != NULL>:
4987 New.
4988
4989 2010-02-11 Pedro Alves <pedro@codesourcery.com>
4990
4991 * ax-gdb.c (gen_exp_binop_rest) [BINOP_SUBSCRIPT]: Error out on
4992 non-subscriptable types.
4993 * valarith.c (binop_types_user_defined_p): New, abstracted out
4994 from ...
4995 (binop_user_defined_p): ... this.
4996 * value.h (binop_types_user_defined_p): Declare.
4997
4998 2010-02-11 Pedro Alves <pedro@codesourcery.com>
4999
5000 * tracepoint.c (tfile_open): Remove spurious discard_cleanups.
5001 Merge uploaded TSVs before merging uploaded tracepoints.
5002
5003 2010-02-11 Pedro Alves <pedro@codesourcery.com>
5004
5005 * ax-gdb.c (gen_deref): Don't allow dereferencing void pointers.
5006
5007 2010-02-11 Vladimir Prus <vladimir@codesourcery.com>
5008
5009 * mi/mi-cmd-stack.c (mi_cmd_stack_list_locals): Add extra
5010 whitespace character after a dot in comment.
5011 (mi_cmd_stack_list_arguments, mi_cmd_stack_list_variables):
5012 Likewise.
5013 (list_args_or_locals): For the 'all' (that is
5014 -stack-list-variables) case, always output list of tuples.
5015 Output 'arg' field if variable is argument.
5016
5017 2010-02-10 Tom Tromey <tromey@redhat.com>
5018
5019 * parser-defs.h (parser_debug): Declare.
5020 * parse.c (_initialize_parse): Install "debug parser" set/show
5021 command.
5022 (parser_debug): New global.
5023 (show_parserdebug): New function.
5024 * c-exp.y (c_parse): Set yydebug.
5025
5026 2010-02-10 H.J. Lu <hongjiu.lu@intel.com>
5027
5028 * target-descriptions.c (tdesc_type): Add TDESC_TYPE_I387_EXT,
5029 TDESC_TYPE_I386_EFLAGS and TDESC_TYPE_I386_MXCSR.
5030 (tdesc_predefined_types): Add i387_ext, i386_eflags and
5031 i386_mxcsr.
5032 (tdesc_find_type): New.
5033 (tdesc_gdb_type): Use tdesc_find_type. Handle TDESC_TYPE_I387_EXT,
5034 TDESC_TYPE_I386_EFLAGS and TDESC_TYPE_I386_MXCSR.
5035
5036 * target-descriptions.h (tdesc_find_type): New.
5037
5038 2010-02-10 Michael Snyder <msnyder@vmware.com>
5039
5040 * gdb-gdb.py: Comment fix.
5041
5042 2010-02-09 Tristan Gingold <gingold@adacore.com>
5043
5044 * machoread.c (macho_symfile_relocate): New function.
5045 (macho_sym_fns): Use macho_symfile_relocate instead of
5046 default_symfile_relocate.
5047 (macho_oso_data): New type.
5048 (current_oso): New variable.
5049 (macho_add_oso_symfile): Do not compute section_addr_info, but
5050 instead set vma of sections.
5051 Do not set SYMFILE_VERBOSE to call symbol_file_add_from_bfd.
5052 Set and clear current_oso.
5053
5054 2010-02-09 Joel Brobecker <brobecker@adacore.com>
5055
5056 Wrong type description for tagged type parameter.
5057 * ada-lang.c (ada_evaluate_subexp) [OP_VAR_VALUE]: When noside is
5058 EVAL_AVOID_SIDE_EFFECTS, also handle the case when type is a
5059 reference to a tagged type.
5060
5061 2010-02-09 Tristan Gingold <gingold@adacore.com>
5062
5063 * objfiles.c (objfile_separate_debug_iterate): Do not iterate on
5064 brothers of the parent.
5065
5066 2010-02-08 Tom Tromey <tromey@redhat.com>
5067
5068 PR c++/8017:
5069 * value.h: Update.
5070 * valops.c (search_struct_field): Make 'name' const.
5071 (search_struct_method): Likewise.
5072 (find_method_list): Make 'method' const.
5073 (value_struct_elt): Make 'name' and 'err' const.
5074 (value_find_oload_method_list): Make 'method' const.
5075 (find_overload_match): Make 'name' const.
5076 * eval.c (evaluate_subexp_standard): New locals function,
5077 function_name.
5078 <OP_FUNCALL>: Handle OP_SCOPE specially.
5079
5080 2010-02-08 Ulrich Weigand <uweigand@de.ibm.com>
5081
5082 * infrun.c (handle_inferior_event): Do not look up regcache
5083 for exited processes.
5084
5085 2010-02-08 Chris Moller <moller@mollerware.com>
5086
5087 PR gdb/10728
5088 * valarith.c (value_ptrdiff): Added a test for a zero type length,
5089 warn if found, and assume length = 1.
5090
5091 2010-02-08 Chris Moller <cmoller@redhat.com>
5092
5093 PR gdb/9067
5094 * cp-valprint.c (cp_print_value_fields) Fix use of obstacks.
5095 cp_print_static_field) Fix use of obstacks.
5096
5097 2010-02-08 Pedro Alves <pedro@codesourcery.com>
5098
5099 * linux-nat.c (linux_nat_resume): In non-stop, also only tag
5100 resumed LWPs as resumed.
5101 (linux_nat_wait_1): If there's no resumed LWP in the set of LWPs
5102 we're waiting for, bail out with TARGET_WAITKIND_IGNORE, instead
5103 of throwing an internal error. If an LWP of a process we're not
5104 waiting for reports a signal, don't force collecting a SIGSTOP,
5105 and if it was breakpoint hit in non-stop mode, cancel it. Don't
5106 go through all LWPs cancelling breakpoints in non-stop mode.
5107 (resume_stopped_resumed_lwps): New.
5108 (linux_nat_wait): Use it.
5109
5110 2010-02-07 H.J. Lu <hongjiu.lu@intel.com>
5111
5112 * features/Makefile (WHICH): Add i386/i386, i386/i386-linux,
5113 i386/amd64 and i386/amd64-linux.
5114 (i386/i386-expedite): New.
5115 (i386/i386-linux-expedite): Likewise.
5116 (i386/amd64-expedite):Likewise.
5117 (i386/amd64-linux-expedite): Likewise.
5118 ($(outdir)/i386/i386-linux.dat): Likewise.
5119 ($(outdir)/i386/amd64.dat): Likewise.
5120 ($(outdir)/i386/amd64-linux.dat): Likewise.
5121
5122 * features/i386/32bit-core.xml: New.
5123 * features/i386/32bit-linux.xml: Likewise.
5124 * features/i386/32bit-sse.xml: Likewise.
5125 * features/i386/64bit-core.xml: Likewise.
5126 * features/i386/64bit-linux.xml: Likewise.
5127 * features/i386/64bit-sse.xml: Likewise.
5128 * features/i386/i386-linux.xml: Likewise.
5129 * features/i386/i386.xml: Likewise.
5130 * features/i386/amd64-linux.xml: Likewise.
5131 * features/i386/amd64.xml: Likewise.
5132 * features/i386/i386-linux.c: Likewise.
5133 * features/i386/i386.c: Likewise.
5134 * features/i386/amd64-linux.c: Likewise.
5135 * features/i386/amd64.c: Likewise.
5136
5137 2010-02-05 Sami Wagiaalla <swagiaal@redhat.com>
5138
5139 PR c++/7935:
5140 * cp-support.h: Added char* alias element to using_direct data
5141 struct.
5142 (cp_add_using): Added char* alias argument.
5143 (cp_add_using_directive): Ditto.
5144 * cp-namespace.c: Updated with the above changes.
5145 (cp_lookup_symbol_imports): Check for aliases.
5146 * dwarf2read.c (read_import_statement): Figure out local alias
5147 for the import and pass it on to cp_add_using.
5148 (read_namespace): Pass alias argument to cp_add_using.
5149
5150 2010-02-05 Hui Zhu <teawater@gmail.com>
5151
5152 * defs.h (gdb_bfd_errmsg): New extern.
5153 * exec.c (exec_file_attach): Change bfd_errmsg to
5154 gdb_bfd_errmsg.
5155 * utils.c (AMBIGUOUS_MESS1): New macro.
5156 (AMBIGUOUS_MESS2): New macro.
5157 (gdb_bfd_errmsg): New function.
5158
5159 2010-02-04 Doug Evans <dje@google.com>
5160
5161 * solib-svr4.c (enable_break): Add comment.
5162
5163 2010-02-04 Anthony Green <green@moxielogic.com>
5164
5165 * moxie-tdep.c (moxie_analyze_prologue): Fail protocol analysis
5166 gracefully.
5167
5168 2010-02-04 Tom Tromey <tromey@redhat.com>
5169
5170 * valops.c (search_struct_field): Account for
5171 value_embedded_offset. Fix check for virtual base past the end of
5172 the object. Use value_copy when making a slice of the value.
5173
5174 2010-02-04 H.J. Lu <hongjiu.lu@intel.com>
5175
5176 PR tui/9622
5177 * tui/tui-interp.c (tui_init): Call tui_initialize_readline
5178 only if gdb_stdout is a tty.
5179
5180 2010-02-04 H.J. Lu <hongjiu.lu@intel.com>
5181
5182 * target-descriptions.c: Include "osabi.h".
5183 (maint_print_c_tdesc_cmd): Generate set_tdesc_osabi for valid
5184 OSABI.
5185
5186 2010-02-04 Tristan Gingold <gingold@adacore.com>
5187
5188 * machoread.c (macho_add_oso): Renamed to macho_register_oso.
5189 (macho_symtab_read): Adjust calls to macho_add_oso.
5190 (macho_oso_symfile): Renamed to macho_symfile_read_all_oso.
5191 (macho_symfile_read): Adjust call to macho_oso_symfile.
5192 (macho_new_init): Move this function after declarations.
5193 (macho_symfile_init): Ditto.
5194 * darwin-nat-info.c (darwin_lib_gdb_ports): Remove.
5195 * darwin-nat.c (darwin_lookup_task): Remove unused prototype.
5196
5197 2010-02-04 Vladimir Prus <vladimir@codesourcery.com>
5198
5199 Include MI command in remotelog.
5200
5201 * mi/mi-main.c (mi_execute_command): Call target_log_command.
5202
5203 2010-02-03 H.J. Lu <hongjiu.lu@intel.com>
5204
5205 * remote.c (remote_state): Remove gdbarch.
5206 (init_remote_state): Don't set gdbarch.
5207 (remote_query_supported): Pass target_gdbarch instead of
5208 rs->gdbarch to gdbarch_qsupported.
5209
5210 2010-02-03 H.J. Lu <hongjiu.lu@intel.com>
5211
5212 * gdbarch.sh: Add qsupported.
5213
5214 * gdbarch.c: Regenerated.
5215 * gdbarch.h: Likewise.
5216
5217 * remote.c (remote_state): Add gdbarch.
5218 (init_remote_state): Set gdbarch.
5219 (remote_query_supported): Support gdbarch_qsupported.
5220
5221 2010-02-03 Daniel Jacobowitz <dan@codesourcery.com>
5222
5223 * amd64fbsd-nat.c (amd64fbsd_supply_pcb): Also check for
5224 __FreeBSD_kernel_version.
5225
5226 2010-02-03 Tristan Gingold <gingold@adacore.com>
5227
5228 * symfile.h (struct sym_fns): Add sym_relocate field.
5229 (default_symfile_relocate): New prototype.
5230 (symfile_relocate_debug_section): First argument is now an objfile.
5231 * symfile.c (default_symfile_relocate): Rename from
5232 symfile_relocate_debug_section, first argument is now an objfile.
5233 (symfile_relocate_debug_section): New function.
5234 * coffread.c (coff_sym_fns): Set sym_relocate field.
5235 * somread.c (som_sym_fns): Ditto.
5236 * mipsread.c (ecoff_sym_fns): Ditto.
5237 * machoread.c (macho_sym_fns): Ditto.
5238 * elfread.c (elf_sym_fns): Ditto.
5239 * dwarf2read.c (dwarf2_read_section): Ditto.
5240 * xcoffread.c (xcoff_sym_fns): Ditto.
5241 * dbxread.c (aout_sym_fns): Ditto.
5242 (dbx_psymtab_to_symtab): Adjust call to symfile_relocate_debug_section.
5243 (elfstab_build_psymtabs): Ditto.
5244
5245 2010-02-03 H.J. Lu <hongjiu.lu@intel.com>
5246
5247 * defs.h (MAX_REGISTER_SIZE): Increase to 32.
5248
5249 2010-02-02 Tom Tromey <tromey@redhat.com>
5250
5251 * valops.c (value_cast_structs): Try downcasting using the RTTI
5252 type.
5253
5254 2010-02-02 Tom Tromey <tromey@redhat.com>
5255
5256 * gnu-v2-abi.c: Don't include gnu-v2-abi.h.
5257 (gnuv2_baseclass_offset): Now static.
5258 * Makefile.in (HFILES_NO_SRCDIR): Remove gnu-v2-abi.h.
5259 * gnu-v2-abi.h: Remove.
5260
5261 2010-02-02 Tom Tromey <tromey@redhat.com>
5262
5263 * m2-typeprint.c (m2_record_fields): Don't use
5264 TYPE_DECLARED_TYPE.
5265 * gdbtypes.h (TYPE_DECLARED_CLASS): New macro.
5266 (struct main_type) <flag_declared_class>: New field.
5267 (struct cplus_struct_type) <declared_type>: Remove.
5268 <ntemplate_args>: Move earlier.
5269 (DECLARED_TYPE_CLASS, DECLARED_TYPE_UNION, DECLARED_TYPE_STRUCT)
5270 (DECLARED_TYPE_TEMPLATE): Remove.
5271 (TYPE_DECLARED_TYPE): Remove.
5272 * gdbtypes.c (lookup_union): Don't use TYPE_DECLARED_TYPE.
5273 * dwarf2read.c (read_structure_type): Set TYPE_DECLARED_CLASS.
5274 * c-typeprint.c (c_type_print_base): Use TYPE_DECLARED_CLASS, not
5275 TYPE_DECLARED_TYPE.
5276
5277 2010-02-02 Tom Tromey <tromey@redhat.com>
5278
5279 PR c++/11226, PR c++/9629, PR c++/9688, PR c++/8890:
5280 * valops.c (search_struct_field): Compute nbases after calling
5281 CHECK_TYPEDEF.
5282 (check_field): Call CHECK_TYPEDEF.
5283 * cp-valprint.c (cp_print_value): Pass correct address to
5284 baseclass_offset. Fix check for virtual base past the end of the
5285 object. Don't offset address passed to cp_print_value_fields or
5286 apply_val_pretty_printer.
5287 (cp_print_value_fields): Fix call to val_print.
5288 (cp_print_value_fields_rtti): New function.
5289 * c-valprint.c (c_val_print): Use cp_print_value_fields_rtti.
5290 * p-valprint.c (pascal_object_print_value_fields): Fix call to
5291 val_print.
5292 * python/py-prettyprint.c (apply_val_pretty_printer): Add embedded
5293 offset to address.
5294 * language.h (struct language_defn) <la_val_print>: Document.
5295 * c-lang.h (cp_print_value_fields_rtti): Declare.
5296
5297 2010-02-01 Jan Kratochvil <jan.kratochvil@redhat.com>
5298
5299 PR libc/11214:
5300 * linux-low.c (linux_tracefork_child) [!(__UCLIBC__ && HAS_NOMMU)]: New.
5301 (linux_test_for_tracefork): Move `stack' into [__UCLIBC__ && HAS_NOMMU].
5302 (linux_test_for_tracefork) [!(__UCLIBC__ && HAS_NOMMU)]: New.
5303
5304 2010-02-01 Michael Matz <matz@suse.de>
5305 Daniel Jacobowitz <dan@codesourcery.com>
5306
5307 * i386-tdep.c (i386_frame_cache): Assume valid anonymous
5308 functions use a frame pointer.
5309
5310 2010-02-01 Jan Kratochvil <jan.kratochvil@redhat.com>
5311
5312 * solib-svr4.c (scan_dyntag): New variable dyn_addr. Replace gdb_assert
5313 by a conditional setting DYN_ADDR. Use DYN_ADDR.
5314 * config/djgpp/fnchange.lst: Add translations for
5315 symbol-without-target_section.exp and symbol-without-target_section.c.
5316
5317 2010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
5318
5319 * gdbarch.sh: Set LANG and LC_ALL to C, not c.
5320 (remote_breakpoint_for_pc): Correct invalid_p check.
5321 * gdbarch.c: Regenerated.
5322
5323 2010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
5324
5325 * arm-tdep.c (arm_find_mapping_symbol): New function, from
5326 arm_pc_is_thumb.
5327 (arm_pc_is_thumb): Use arm_find_mapping_symbol.
5328 (extend_buffer_earlier): New function.
5329 (MAX_IT_BLOCK_PREFIX, IT_SCAN_THRESHOLD): New constants.
5330 (arm_adjust_breakpoint_address): New function.
5331 (arm_gdbarch_init): Register arm_adjust_breakpoint_address.
5332
5333 2010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
5334
5335 * arm-linux-tdep.c (arm_linux_thumb2_be_breakpoint)
5336 (arm_linux_thumb2_le_breakpoint): New constants.
5337 (arm_linux_init_abi): Set thumb2_breakpoint and
5338 thumb2_breakpoint_size.
5339 * arm-tdep.c (thumb_insn_size, thumb_advance_itstate): New functions.
5340 (thumb_get_next_pc): Add a comment. Rename IT to ITSTATE.
5341 Implement support for single stepping through IT blocks if
5342 a 32-bit Thumb breakpoint instruction is available.
5343 (arm_breakpoint_from_pc): If a 32-bit Thumb breakpoint instruction
5344 is available, use it when needed.
5345 (arm_remote_breakpoint_from_pc): New function.
5346 (arm_gdbarch_init): Register arm_remote_breakpoint_from_pc.
5347 * arm-tdep.h (struct gdbarch_tdep): Correct thumb_breakpoint
5348 comment. Add thumb2_breakpoint and thumb2_breakpoint_size.
5349
5350 2010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
5351
5352 * arch-utils.c (default_remote_breakpoint_from_pc): New function.
5353 * arch-utils.h (default_remote_breakpoint_from_pc): Declare.
5354 * gdbarch.c, gdbarch.h: Regenerated.
5355 * gdbarch.sh (remote_breakpoint_from_pc): New architecture method.
5356 * remote.c (remote_insert_breakpoint, remote_insert_hw_breakpoint): Use
5357 gdbarch_remote_breakpoint_from_pc.
5358
5359 2010-01-29 Daniel Jacobowitz <dan@codesourcery.com>
5360
5361 * infrun.c (prepare_to_proceed): Handle other signals which might
5362 match a breakpoint.
5363 (handle_inferior_event): Move the check for unusual breakpoint
5364 signals earlier.
5365
5366 2010-01-29 Paul Hilfinger <hilfinger@adacore.com>
5367
5368 amd64 - function returning record with field straddling 2 registers.
5369 * amd64-tdep.c (amd_classify_aggregate): Handle the case of
5370 a record of length <= 16 in which a field straddles the two
5371 eightbytes.
5372
5373 2010-01-29 Joel Brobecker <brobecker@adacore.com>
5374
5375 Implement return values on amd64-windows.
5376 * amd64-windows-tdep.c: #include gdbcore.h and regcache.h.
5377 (amd64_windows_return_value): New function.
5378 (amd64_windows_init_abi): Call set_gdbarch_return_value with
5379 amd64_windows_return_value.
5380
5381 2010-01-29 Joel Brobecker <brobecker@adacore.com>
5382
5383 amd64-windows: 32 bytes allocated on stack by caller for integer
5384 parameter registers.
5385 * i386-tdep.h (struct gdbarch_tdep): Add new field
5386 integer_param_regs_saved_in_caller_frame.
5387 * amd64-windows-tdep.c (amd64_windows_init_abi): Set
5388 tdep->integer_param_regs_saved_in_caller_frame to 1.
5389 * amd64-tdep.c (amd64_push_dummy_call): Allocate some memory on
5390 stack if tdep->integer_param_regs_saved_in_caller_frame is set.
5391
5392 2010-01-29 Joel Brobecker <brobecker@adacore.com>
5393
5394 amd64-windows: memory args passed by pointer during function calls.
5395 * i386-tdep.h (gdbarch_tdep): Add field memory_args_by_pointer.
5396 * amd64-tdep.c (amd64_push_arguments): Add handling of architectures
5397 where tdep->memory_args_by_pointer is non-zero.
5398 * amd64-windows-tdep.c (amd64_windows_init_abi): Set
5399 tdep->memory_args_by_pointer to 1.
5400
5401 2010-01-29 Joel Brobecker <brobecker@adacore.com>
5402
5403 amd64-windows: Integer parameters in function calls.
5404 * i386-tdep.h (enum amd64_reg_class): New, moved here from
5405 amd64-tdep.c.
5406 (struct gdbarch_tdep): Add fields call_dummy_num_integer_regs,
5407 call_dummy_integer_regs, and classify.
5408 * amd64-tdep.h (amd64_classify): Add declaration.
5409 * amd64-tdep.c (amd64_dummy_call_integer_regs): New static constant.
5410 (amd64_reg_class): Delete, moved to i386-tdep.h.
5411 (amd64_classify): Make non-static. Move declaration to amd64-tdep.h.
5412 Replace call to amd64_classify by call to tdep->classify.
5413 (amd64_push_arguments): Get the list of registers to use for
5414 passing integer parameters from the gdbarch tdep structure,
5415 rather than using a hardcoded one. Replace calls to amd64_classify
5416 by calls to tdep->classify.
5417 (amd64_push_dummy_call): Get the register number used for
5418 the "hidden" argument from tdep->call_dummy_integer_regs.
5419 (amd64_init_abi): Initialize tdep->call_dummy_num_integer_regs
5420 and tdep->call_dummy_integer_regs. Set tdep->classify.
5421 * amd64-windows-tdep.c: Add include of gdbtypes.h.
5422 (amd64_windows_dummy_call_integer_regs): New static global.
5423 (amd64_windows_classify): New function.
5424 (amd64_windows_init_abi): Initialize tdep->call_dummy_num_integer_regs
5425 tdep->call_dummy_integer_regs and tdep->classify.
5426
5427 2010-01-28 Daniel Jacobowitz <dan@codesourcery.com>
5428
5429 * regcache.c (regcache_xmalloc): Add aspace argument. Use it
5430 for the new regcache. All callers updated.
5431 (regcache_cpy, regcache_cpy_no_passthrough): Do not set aspace here.
5432 (get_thread_arch_regcache): Do not set aspace here.
5433 * regcache.h (regcache_xmalloc): Update declaration.
5434
5435 * frame.c, infcall.c, ppc-linux-tdep.c: Calls to
5436 regcache_xmalloc updated.
5437
5438 2010-01-28 Joel Brobecker <brobecker@adacore.com>
5439
5440 Another -Wunused-function error in procfs.c (sparc-solaris)
5441 * procfs.c (insert_dbx_link_breakpoint): Delete declaration. Move up.
5442 Only define if SYS_syssgi is defined.
5443 (remove_dbx_link_breakpoint): Delete declaration. Move up.
5444 (dbx_link_addr, insert_dbx_link_bpt_in_file)
5445 (insert_dbx_link_bpt_in_region): Move up. Only define if SYS_syssgi
5446 is itself defined.
5447
5448 2010-01-27 Christopher Faylor <me+cygwin@cgf.cx>
5449
5450 * windows-nat.c (windows_initialization_done): New variable.
5451 (get_windows_debug_event): Issue error when process dies before
5452 completely initializing.
5453 (do_initial_windows_stuff): Set flag to indicate when we are done with
5454 the initial steps of attaching to the child.
5455
5456 2010-01-27 Jan Kratochvil <jan.kratochvil@redhat.com>
5457
5458 * symtab.h (struct symbol <symtab>): New comment on NULL values.
5459
5460 2010-01-27 Doug Evans <dje@google.com>
5461
5462 * solib-svr4.c (solib_break_names): Add __dl_rtld_db_dlactivity.
5463
5464 * breakpoint.c (bpstat_stop_status): Delete useless code.
5465
5466 2010-01-27 Jan Kratochvil <jan.kratochvil@redhat.com>
5467
5468 * printcmd.c (display_uses_solib_p): Remove variable section. Access
5469 objfile via SYMBOL_SYMTAB.
5470
5471 2010-01-26 Tom Tromey <tromey@redhat.com>
5472
5473 PR exp/7643:
5474 * eval.c (evaluate_subexp_for_address) <UNOP_IND>: Call
5475 coerce_array on result.
5476
5477 2010-01-26 Sami Wagiaalla <swagiaal@redhat.com>
5478
5479 * cp-namespace.c (cp_lookup_symbol_namespace): Added
5480 search_parent argument.
5481 (cp_add_using): Initialize 'searched' field.
5482 (reset_directive_searched): New function.
5483 * cp-support.h: Add 'searched' field to using_direct struct.
5484 (cp_lookup_symbol_imports): Ditto.
5485 * cp-namespace.c (cp_lookup_symbol_imports): Ditto.
5486 Perform recursive search.
5487 Implement non parent search.
5488 * valops.c (value_maybe_namespace_elt): Updated.
5489
5490 2010-01-26 Sami Wagiaalla <swagiaal@redhat.com>
5491
5492 PR gdb/10929:
5493 * dwarf2read.c (read_lexical_block_scope): Create blocks for
5494 scopes which contain using directives even if they contain no
5495 declarations.
5496 * symtab.c (lookup_symbol_aux): Pass lowest level block to
5497 la_lookup_symbol_nonlocal.
5498 * cp-namespace.c (cp_lookup_symbol_nonlocal): call
5499 cp_lookup_symbol_namespace.
5500 (cp_lookup_symbol_namespace): Perform an import lookup at every
5501 block level.
5502 (cp_lookup_symbol_imports): New function.
5503 (cp_lookup_symbol_in_namespace): New function.
5504
5505 2010-01-25 Tom Tromey <tromey@redhat.com>
5506
5507 PR gdb/11049:
5508 * c-valprint.c (c_val_print): Fix test of extract_unsigned_integer
5509 result.
5510
5511 2010-01-25 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
5512
5513 * configure.ac: Only use host_os part when disabling TUI on osf.
5514 Use test to check variables, prefix strings with x.
5515 * configure: Regenerate.
5516
5517 * solib-osf.c (osf_current_sos): Initialize tail.
5518
5519 2010-01-25 gingold <gingold@adacore.com>
5520
5521 * windows-nat.c (windows_continue): Use %x to print thread id.
5522 (get_windows_debug_event): Ditto.
5523
5524 2010-01-22 Tom Tromey <tromey@redhat.com>
5525
5526 PR symtab/11199:
5527 * dwarf2read.c (quirk_gcc_member_function_pointer): Change return
5528 type and arguments. Use smash_to_methodptr_type.
5529 (read_structure_type): Call quirk_gcc_member_function_pointer
5530 later.
5531 * gdbtypes.h (smash_to_methodptr_type): Declare.
5532 * gdbtypes.c (smash_to_methodptr_type): New function.
5533 (lookup_methodptr_type): Use it.
5534
5535 2010-01-21 Tom Tromey <tromey@redhat.com>
5536
5537 PR symtab/11198:
5538 * symtab.h (lookup_minimal_symbol_and_objfile): Declare.
5539 * minsyms.c (lookup_minimal_symbol_and_objfile): New function.
5540 * glibc-tdep.c (find_minsym_and_objfile): Remove.
5541 (glibc_skip_solib_resolver): Use
5542 lookup_minimal_symbol_and_objfile.
5543
5544 2010-01-21 Kai Tietz <kai.tietz@onevision.com>
5545
5546 * inflow.c (check_syscall): Guard by #if clause for GO32 and
5547 WIN32 targets.
5548
5549 2010-01-20 Tom Tromey <tromey@redhat.com>
5550
5551 PR backtrace/10770:
5552 * valarith.c (value_binop): Handle BINOP_GTR, BINOP_LEQ, and
5553 BINOP_GEQ. Handle BINOP_NOTEQUAL in the signed case.
5554 * dwarf2expr.c (new_dwarf_expr_context): Allocate
5555 dwarf_stack_values, not CORE_ADDRs.
5556 (execute_stack_op): Change DW_OP_div and comparison operators to
5557 use signed operands.
5558
5559 2010-01-20 Vladimir Prus <vladimir@codesourcery.com>
5560
5561 Per-inferior args and tty and environment.
5562
5563 * infcmd.c (inferior_args): Rename to ...
5564 (inferior_args_scratch): ... this.
5565 (inferior_io_terminal): Rename to ...
5566 (inferior_io_terminal_scratch): ... this.
5567 (inferior_argc, inferior_argv): Remove.
5568 (set_inferior_io_terminal, get_inferior_io_terminal): Store
5569 inside current_inferior().
5570 (set_inferior_tty_command, show_inferior_tty_command): New.
5571 (get_inferior_args, set_inferior_args): Store inside
5572 current_inferior().
5573 (notice_args_set): Likewise and rename to...
5574 (set_args_command): ... this.
5575 (set_inferior_args_vector): Likewise.
5576 (notice_args_read): Rename to...
5577 (show_args_command): ...new.
5578 (tty_command): Remove.
5579 (run_command_1): Don't free old args, as they are freed by
5580 set_inferior_arg now.
5581 (run_no_args_command): Likewise.
5582 (inferior_environ): Remove.
5583 (run_command_1): Use environment of the current inferior.
5584 (environment_info, set_environment_command)
5585 (unset_environment_command, path_info, path_command): Likewise.
5586 (_initialize_infcmd): Adjust for function and variable renames.
5587 Do not init inferior_environ.
5588 * inferior.h (set_inferior_arg): Adjust prototype.
5589 (struct inferior): New fields args, argc, argv, terminal, environment.
5590 (inferior_environ): Remove declaration.
5591 * inferior.c (free_inferior): Free new fields.
5592 (add_inferior_silent): Initialize 'environment' field.
5593 * main.c (captured_main): Set arguments only after the initial
5594 inferior has been created. Set set_inferior_io_terminal,
5595 not tty_command.
5596 * mi/mi-main.c (mi_cmd_env_path): Use environment of the current
5597 inferior.
5598 (_initialize_mi_cmd_env): Adjust for disappearance of global
5599 inferior_environ.
5600 * solib.c (solib_find): Use environment of the current inferior.
5601
5602 2010-01-20 Jan Kratochvil <jan.kratochvil@redhat.com>
5603
5604 * varobj.c (varobj_add_child, install_dynamic_child): Wrap into #if
5605 HAVE_PYTHON.
5606 (instantiate_pretty_printer): Move HAVE_PYTHON outside of the function.
5607
5608 2010-01-20 Joel Brobecker <brobecker@adacore.com>
5609
5610 Get rid of ada-lang.c:function_name_from_pc.
5611 * ada-lang.c: Add "stack.h" #include.
5612 (function_name_from_pc): Delete.
5613 (is_known_support_routine): Replace call to function_name_from_pc
5614 by call to find_frame_funname.
5615 (ada_unhandled_exception_name_addr_from_raise): Likewise.
5616
5617 2010-01-19 Tom Tromey <tromey@redhat.com>
5618
5619 PR c++/11026:
5620 * dwarf2read.c (read_partial_die): Allocate partial DIE's name on
5621 objfile obstack.
5622
5623 2010-01-19 Tom Tromey <tromey@redhat.com>
5624
5625 * top.c (stop_sig, float_handler, do_nothing): Remove.
5626
5627 2010-01-19 Jan Kratochvil <jan.kratochvil@redhat.com>
5628
5629 * breakpoint.c (watchpoint_check): Check the call
5630 gdbarch_in_function_epilogue_p before calling frame_find_by_id.
5631 Extend the comment.
5632 * config/djgpp/fnchange.lst: Add translations for
5633 watchpoint-cond-gone.exp, watchpoint-cond-gone.c and
5634 watchpoint-cond-gone-stripped.c.
5635
5636 2010-01-19 Tom Tromey <tromey@redhat.com>
5637
5638 PR c++/8000:
5639 * dwarf2read.c (partial_die_parent_scope): Put enumeration type
5640 into parent scope, and enumerator into grandparent scope.
5641
5642 2010-01-19 Joel Brobecker <brobecker@adacore.com>
5643
5644 * NEWS: Add entry for "set/show ada trust-PAD-over-XVS" commands.
5645
5646 2010-01-19 Joel Brobecker <brobecker@adacore.com>
5647
5648 * configure.host: Make x86_64-*-solaris2.1[0-9]* an alias of
5649 i[34567]86-*-solaris2.1[0-9]*.
5650 * configure.tgt: Likewise.
5651
5652 2010-01-19 Joel Brobecker <brobecker@adacore.com>
5653
5654 * NEWS: Document the source command enhancement allowing it
5655 to load Python scripts. Document the "set/show script-extension"
5656 commands.
5657
5658 2010-01-19 Joel Brobecker <brobecker@adacore.com>
5659
5660 Add -Wunused-function to compile flags.
5661 * configure.ac: Add -Wunused-function to build_warnings.
5662 * configure: Regenerate.
5663
5664 2010-01-19 Joel Brobecker <brobecker@adacore.com>
5665
5666 "delete" ada-lex.c:input function, not used.
5667 * ada-lex.l: #define YY_NO_INPUT.
5668
5669 2010-01-19 Joel Brobecker <brobecker@adacore.com>
5670
5671 Delete free_named_symtabs and associated cleanup.
5672 * symfile.h (free_named_symtabs): Delete declaration.
5673 * symfile.c: Remove some commented out code (clear_symtab_users_once).
5674 (cashier_psymtab): Comment function out.
5675 Delete declaration.
5676 (free_named_symtabs): Delete.
5677 * coffread.c (coff_end_symtab): Remove call to free_named_symtabs.
5678 * dbxread.c (end_psymtab): Likewise.
5679 * dwarf2read.c (process_psymtab_comp_unit): Ditto.
5680 * exec.c (exec_close_1): Ditto.
5681 * xcoffread.c (xcoff_end_psymtab): Likewise.
5682
5683 2010-01-19 Joel Brobecker <brobecker@adacore.com>
5684
5685 * stack.c (print_block_frame_labels): Comment function out.
5686
5687 2010-01-19 Joel Brobecker <brobecker@adacore.com>
5688
5689 Delete unused or undefined functions.
5690 * breakpoint.c (ep_parse_optional_filename): Delete.
5691 * dcache.c (dcache_write_line): Remove declaration.
5692 * infrun.c (build_infrun): Remove declaration.
5693 * tracepoint.c (tracepoint_save_command): Remove declaration.
5694 * linux-nat.c (init_lwp_list): Delete. No longer used.
5695 * event-loop.c (check_async_signal_handlers): Delete declaration.
5696 * infrun.c (init_execution_control_state): Delete.
5697 (proceed): Update comment to avoid mentioning
5698 init_execution_control_state.
5699 * target.c (kill_or_be_killed, nosupport_runtime): Delete.
5700 * ada-lang.c (ada_to_static_fixed_value): Delete.
5701 * scm-lang.c (evaluate_subexp_scm): Delete declaration.
5702 * cp-namespace.c (cp_copy_usings): Delete.
5703 * xml-syscall.c (xml_number_of_syscalls): Delete.
5704 * progspace.c (find_program_space_by_num): Delete.
5705 * inflow.c (handle_sigio): Delete declaration.
5706 * hppa-tdep.c (hppa_alignof): Delete.
5707 * mipsnbsd-tdep.c (mipsnbsd_sigtramp_offset)
5708 (mipsnbsd_core_osabi_sniffer): Delete.
5709
5710 2010-01-18 Tom Tromey <tromey@redhat.com>
5711
5712 PR c++/9680:
5713 * c-exp.y (REINTERPRET_CAST, DYNAMIC_CAST, STATIC_CAST)
5714 (CONST_CAST): New tokens.
5715 (exp): Add new productions.
5716 (ident_tokens): Add const_cast, dynamic_cast, static_cast, and
5717 reinterpret_cast.
5718 (is_cast_operator): New function.
5719 (yylex): Handle cast operators specially.
5720 * eval.c (evaluate_subexp_standard) <UNOP_DYNAMIC_CAST,
5721 UNOP_REINTERPRET_CAST>: New cases.
5722 * expprint.c (print_subexp_standard): Likewise.
5723 (op_name_standard): Likewise.
5724 (dump_subexp_body_standard): Likewise.
5725 * parse.c (operator_length_standard): Likewise.
5726 * expression.h (enum exp_opcode): New constants UNOP_DYNAMIC_CAST,
5727 UNOP_REINTERPRET_CAST.
5728 * gdbtypes.c (class_types_same_p): New function.
5729 (is_ancestor): Use it.
5730 (is_public_ancestor): New function.
5731 (is_unique_ancestor_worker): Likewise.
5732 (is_unique_ancestor): Likewise.
5733 * gdbtypes.h (class_types_same_p, is_public_ancestor)
5734 (is_unique_ancestor): Declare.
5735 * valops.c (value_reinterpret_cast): New function.
5736 (dynamic_cast_check_1): Likewise.
5737 (dynamic_cast_check_2): Likewise.
5738 (value_dynamic_cast): Likewise.
5739 * value.h (value_reinterpret_cast, value_dynamic_cast): Declare.
5740
5741 2010-01-18 Joel Brobecker <brobecker@adacore.com>
5742
5743 Fix build failure when building without Python support.
5744 * python/python.c: Always include exceptions.h, even when HAVE_PYTHON
5745 is not defined.
5746
5747 2010-01-18 Joel Brobecker <brobecker@adacore.com>
5748
5749 Use XVS field type instead of doing a parallel lookup.
5750 * ada-lang.c (ada_get_base_type): Follow the XVS field type
5751 if it is a reference type instead of doing a type lookup using
5752 the XVS field name.
5753
5754 2010-01-18 Joel Brobecker <brobecker@adacore.com>
5755
5756 Trust PAD types instead of using PAD___XVS.
5757 * ada-lang.c (trust_pad_over_xvs): New static variable.
5758 (ada_is_aligner_type): If !trust_pad_over_xvs and there is a
5759 parallel XVS type, follow the XVS type instead of the PAD type.
5760 (unwrap_value): Make sure that there is no parallel XVE type
5761 before returning the value as is.
5762 (set_ada_list, show_ada_list): New static variables.
5763 (set_ada_command, show_ada_command): New functions.
5764 (_initialize_ada_language): Add new "set/show ada" prefix commands.
5765 Add new "set/show ada trust-PAD-over-XVS" setting.
5766
5767 2010-01-18 Tom Tromey <tromey@redhat.com>
5768 Thiago Jung Bauermann <bauerman@br.ibm.com>
5769
5770 Allow "source" to load python scripts.
5771 * exceptions.h (enum errors): Add UNSUPPORTED_ERROR.
5772 * python/python.c (source_python_script): New function.
5773 * python/python.h (source_python_script): Add declaration.
5774 * cli/cli-cmds.c: #include exceptions.h and python/python.h.
5775 (script_ext_off, script_ext_soft, script_ext_strict)
5776 (script_ext_enums, script_ext_mode): New static constants.
5777 (show_script_ext_mode, find_and_open_script): New functions.
5778 (source_script): Enhance to handle Python scripts.
5779 (init_cli_cmds): Add set/show script-extension commands.
5780
5781 2010-01-16 Stan Shebs <stan@codesourcery.com>
5782
5783 * tracepoint.h (struct trace_status): Use unsigned long long
5784 instead of size_t.
5785 * tracepoint.c (trace_status_command): Fix printf directive.
5786 (trace_save_command): Check fwrite returns, fix printf directive.
5787 (trace_filename): New global.
5788 (tfile_open): Set it, check read returns.
5789 (tfile_close): Free trace_filename.
5790 (tfile_get_traceframe_address): Check read returns.
5791 (tfile_trace_find): Ditto.
5792 (tfile_fetch_registers): Ditto.
5793 (tfile_xfer_partial): Ditto.
5794 (tfile_get_trace_state_variable_value): Ditto.
5795
5796 2010-01-15 Stan Shebs <stan@codesourcery.com>
5797
5798 Add trace file support.
5799 * tracepoint.h (enum trace_stop_reason): New enum.
5800 (struct trace_status): New struct.
5801 (parse_trace_status): Declare.
5802 (struct uploaded_tp): Move here from remote.c,
5803 add fields for actions.
5804 (struct uploaded_tsv): New struct.
5805 * tracepoint.c (tfile_ops): New target vector.
5806 (trace_fd): New global.
5807 (tfile_open): New function.
5808 (tfile_close): New function.
5809 (tfile_files_info): New function.
5810 (tfile_get_trace_status): New function.
5811 (tfile_get_traceframe_address): New function.
5812 (tfile_trace_find): New function.
5813 (tfile_fetch_registers): New function.
5814 (tfile_xfer_partial): New function.
5815 (tfile_get_trace_state_variable_value): New function.
5816 (init_tfile_ops): New function.
5817 (_initialize_tracepoint): Call it, add tfile target.
5818 (trace_status): New global.
5819 (current_trace_status): New function.
5820 (trace_running_p): Remove, change all users to get from
5821 current_trace_status()->running.
5822 (get_trace_status): Remove.
5823 (trace_status_command): Call target_get_trace_status directly,
5824 report more detail including tracing stop reasons.
5825 (trace_find_command): Always allow tfind on a file.
5826 (trace_find_pc_command): Ditto.
5827 (trace_find_tracepoint_command): Ditto.
5828 (trace_find_line_command): Ditto.
5829 (trace_find_range_command): Ditto.
5830 (trace_find_outside_command): Ditto.
5831 (trace_frames_offset, cur_offset): Declare as off_t.
5832 (trace_regblock_size): Rename from reg_size, update users.
5833 (parse_trace_status): New function.
5834 (tfile_interp_line): New function.
5835 (disconnect_or_stop_tracing): Ensure current trace
5836 status before asking what to do.
5837 (stop_reason_names): New global.
5838 (trace_save_command): New command.
5839 (get_uploaded_tp): Move here from remote.c.
5840 (find_matching_tracepoint): Ditto.
5841 (merge_uploaded_tracepoints): New function.
5842 (parse_trace_status): Use stop_reason_names.
5843 (_initialize_tracepoint): Define tsave command.
5844 * target.h (target_ops): New fields to_save_trace_data,
5845 to_upload_tracepoints, to_upload_trace_state_variables,
5846 to_get_raw_trace_data, change to_get_trace_status
5847 to take a pointer to a status struct.
5848 (target_save_trace_data): New macro.
5849 (target_upload_tracepoints): New macro.
5850 (target_upload_trace_state_variables): New macro.
5851 (target_get_raw_trace_data): New macro.
5852 * target.c (update_current_target): Add new methods, change
5853 signature of to_get_trace_status.
5854 * remote.c (hex2bin): Make globally visible.
5855 (bin2hex): Ditto.
5856 (remote_download_trace_state_variable): Download name also.
5857 (remote_get_trace_status): Update parameter, use
5858 parse_trace_status.
5859 (remote_save_trace_data): New function.
5860 (remote_upload_tracepoints): New function.
5861 (remote_upload_trace_state_variables): New function.
5862 (remote_get_raw_trace_data): New function.
5863 (remote_start_remote): Use them.
5864 (_initialize_remote_ops): Add operations.
5865 * ax-gdb.c: Include breakpoint.h.
5866 * breakpoint.c (create_tracepoint_from_upload): Use
5867 break_command_really, return tracepoint, warn about unimplemented
5868 parts.
5869 * NEWS: Mention trace file addition.
5870
5871 2010-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
5872
5873 Fix compilation warning on gcc-3.4.
5874 * exec.c (print_section_info): Move the `displacement' variable
5875 initialization to its declaration.
5876
5877 2010-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
5878
5879 * gdb-gdb.py (StructMainTypePrettyPrinter): Fix TYPE_CODE_RANGE
5880 comparison.
5881
5882 2010-01-15 Eric Botcazou <botcazou@adacore.com>
5883
5884 "info tasks" broken by typedefs in ATCB type definitions.
5885 * ada-lang.c (ada_template_to_fixed_record_type_1): Add call to
5886 ada_check_typedef before retrieving the length of the type for
5887 regular fields.
5888
5889 2010-01-15 Joel Brobecker <brobecker@adacore.com>
5890
5891 Do not use name-based lookup for unconstrained packed arrays.
5892 * ada-lang.c (find_parallel_type_by_descriptive_type):
5893 Limit the fallback to name-based lookups to the case where
5894 the type is a constrained packed array.
5895
5896 2010-01-15 Joel Brobecker <brobecker@adacore.com>
5897
5898 Enhance gdb-gdb.py to handle main_type.type_specific.
5899 * gdb-gdb.py: Print the type-specific part of struct main_type.
5900
5901 2010-01-15 Jan Kratochvil <jan.kratochvil@redhat.com>
5902
5903 * configure.ac (AC_CHECK_FUNCS): Check for setrlimit and getrlimit.
5904 * configure: Regenerate.
5905 * config.in: Regenerate.
5906 * utils.c: Include sys/resource.h.
5907 (dump_core, can_dump_core): New.
5908 (internal_vproblem): Update the comment. Check can_dump_core while
5909 setting dump_core_p. Replace two abort calls by dump_core calls.
5910
5911 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
5912 Eli Zaretskii <eliz@gnu.org>
5913
5914 * NEWS: Document the PIE support.
5915
5916 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
5917
5918 * linux-tdep.c: Remove includes gdbcore.h, observer.h and elf-bfd.h.
5919 (check_is_pie_binary, _initialize_linux_tdep): Remove.
5920
5921 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
5922
5923 * solib-svr4.c (svr4_exec_displacement): New comment for entry_point.
5924 Replace exec_entry_point call by bfd_get_start_address.
5925
5926 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
5927
5928 Support Valgrind attachments broken by the PIE support.
5929 * auxv.c: Include gdbcore.h.
5930 (procfs_xfer_auxv): Make static. Reduce its comment. Drop its
5931 parameters ops, object and annex. Remove their assertions.
5932 (ld_so_xfer_auxv, memory_xfer_auxv): New function.
5933 * auxv.h (procfs_xfer_auxv): Remove comment. Rename to ...
5934 (memory_xfer_auxv): ... here.
5935 * linux-nat.c (linux_xfer_partial): Rename procfs_xfer_auxv to
5936 memory_xfer_auxv.
5937 * procfs.c (procfs_xfer_partial): Likewise.
5938 * solib-svr4.c (svr4_relocate_main_executable): New prototype.
5939 (svr4_special_symbol_handling): Call svr4_relocate_main_executable.
5940 (svr4_solib_create_inferior_hook): Conditionalize the
5941 svr4_relocate_main_executable call.
5942
5943 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
5944
5945 * solib-svr4.c (scan_dyntag): Remove variable dyn_addr. New variable
5946 target_section. Find SECT in current_target_sections, gdb_assert it.
5947 (elf_lookup_lib_symbol): Pass the binary file if given symfile_objfile.
5948 New variable abfd.
5949 * symtab.c (lookup_objfile_from_block): Return the binary file instead
5950 of separate debug info file.
5951
5952 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
5953
5954 Support PIEs with no symfile_objfile.
5955 * exec.c (print_section_info <abfd == exec_bfd>): Relocate Entry point.
5956 * solib-svr4.c (svr4_relocate_main_executable <exec_bfd>): New block.
5957
5958 2010-01-14 Jan Kratochvil <jan.kratochvil@redhat.com>
5959
5960 * solib-svr4.c (svr4_relocate_main_executable): Move the static exec
5961 code part to ...
5962 (svr4_static_exec_displacement): ... a new function.
5963 (svr4_exec_displacement): New function.
5964 (svr4_relocate_main_executable): Call svr4_exec_displacement. Allocate
5965 new_offsets using alloca now. Remove variable old_chain and changed.
5966 Call objfile_relocate unconditionally now.
5967
5968 2010-01-14 Doug Evans <dje@google.com>
5969
5970 * gdbtypes.c (arch_flags_type): Fix comment.
5971 * gdbtypes.h (arch_composite_type): Fix comment.
5972
5973 2009-01-14 Tristan Gingold <gingold@adacore.com>
5974
5975 * machoread.c (macho_add_oso_symfile): Add symfile_flags parameter.
5976 Call xstrdup for abfd->filename. Pass symfile_flags and objfile flags
5977 to symbol_file_add_from_bfd. Add OSO as separate objfile.
5978 (macho_oso_symfile): Add symfile_flags parameter. Pass it to
5979 macho_add_oso_symfile.
5980 (macho_symfile_read): Pass symfile_flags to macho_oso_symfile.
5981
5982 2010-01-14 Joel Brobecker <brobecker@adacore.com>
5983
5984 Tru64: Dead threads are never deleted.
5985 * dec-thread.c (dec_thread_ptid_is_alive): New function.
5986 (dec_thread_count_gdb_threads): Fix counter increment.
5987 (dec_thread_add_gdb_thread): Fix *listp increment.
5988 (resync_thread_list): Fix bug in deletion of dead threads that
5989 caused all threads to be deleted, instead of just the dead ones.
5990
5991 2010-01-13 Phil Muldoon <pmuldoon@redhat.com>
5992
5993 PR python/10705
5994
5995 * python/python-internal.h: Add lazy_string_object_type
5996 definition.
5997 (create_lazy_string_object, gdbpy_initialize_lazy_string)
5998 (gdbpy_is_lazystring, gdbpy_extract_lazy_string): Define.
5999 * python/py-value.c (valpy_lazy_string): New function.
6000 (convert_value_from_python): Add lazy string conversion.
6001 * python/py-prettyprint.c (pretty_print_one_value): Check if
6002 return is also a lazy string.
6003 (print_string_repr): Add lazy string printing branch.
6004 (print_children): Likewise.
6005 * python/py-lazy-string.c: New file. Implement lazy strings.
6006 * python/python.c (_initialize_python): Call
6007 gdbpy_initialize_lazy_string.
6008 * varobj.c (value_get_print_value): Add lazy string printing
6009 branch. Account for encoding.
6010 * c-lang.c (c_printstr): Account for new encoding argument. If
6011 encoding is NULL, find encoding suited for type, otherwise use
6012 user encoding.
6013 * language.h (language_defn): Add encoding argument.
6014 (LA_PRINT_STRING): Likewise.
6015 * language.c (unk_lang_printstr): Update to reflect new encoding
6016 argument to language_defn.
6017 * ada-lang.h (ada_printstr): Likewise.
6018 * c-lang.h (c_printstr): Likewise.
6019 * p-lang.h (pascal_printstr);
6020 * f-lang.c (f_printstr): Likewise.
6021 * m2-lang.c (m2_printstr): Likewise.
6022 * objc-lang.c (objc_printstr): Likewise.
6023 * p-lang.c (pascal_printstr): Likewise.
6024 * scm-lang.c (scm_printstr): Likewise.
6025 * c-valprint.c (c_val_print): Update LA_PRINT_STRING call for
6026 encoding argument.
6027 * ada-valprint.c (ada_printstr): Likewise.
6028 * f-valprint.c (f_val_print): Likewise
6029 * m2-valprint.c (m2_val_print): Likewise.
6030 * p-valprint.c (pascal_val_print): Likewise.
6031 * expprint.c (print_subexp_standard): Likewise.
6032 * valprint.c (val_print_string): Likewise.
6033 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-lazy-string.
6034 (SUBDIR_PYTHON_SRCS): Likewise.
6035 (py-lazy-string.o): New rule.
6036
6037 2010-01-13 Doug Evans <dje@google.com>
6038
6039 * mi/mi-main.c (list_available_thread_groups): Avoid "may be used
6040 uninitialized" warning from gcc on local `tree'.
6041
6042 2010-01-13 Vladimir Prus <vladimir@codesourcery.com>
6043
6044 Implement core awareness.
6045
6046 * bcache.c (compare_ints): Remove
6047 (print_percentage): Use compare_positive_ints.
6048 * defs.h (compare_positive_ints): Declare.
6049 * linux-nat.h (struct lin_lwp): New field core.
6050 (linux_nat_core_of_thread_1): Declare.
6051 * linux-nat.c (add_lwp): Init the 'core' field.
6052 (linux_nat_wait_1): Record the core.
6053 (linux_nat_core_of_thread_1, linux_nat_core_of_thread): New.
6054 (linux_nat_add_target): Register the above.
6055 * linux-thread-db.c (update_thread_core): New.
6056 (thread_db_find_new_threads): Update core information for
6057 every thread.
6058 * remote.c (struct private_thread_info): New.
6059 (free_private_thread_info, demand_private_info): New.
6060 (PACKET_qXfer_threads, use_osdata_threads): New.
6061 (struct thread_item, threads_parsing_context
6062 (start_thread, end_thread, thread_attributes)
6063 (thread_children, threads_children, threads_elements): New.
6064 (remote_threads_info): Try qXfer:threads before anything
6065 else.
6066 (remote_protocol_packets): Register qXfer:threads.
6067 (remote_open_1): Init use_osdata_threads.
6068 (struct stop_reply): New field 'core'.
6069 (remote_parse_stop_reply): Parse core number.
6070 (process_stop_reply): Record core number.
6071 (remote_xfer_partial): Handle qXfer:threads.
6072 (remote_core_of_thread): New.
6073 (init_remote_ops): Register remote_core_of_thread.
6074 (_initialize_remote): Register qXfer:read.
6075 * target.c (target_core_of_thread): New
6076 * target.h (enum target_object): New value TARGET_OBJECT_THREADS.
6077 (struct target_ops): New field to_core_of_threads.
6078 (target_core_of_thread): Declare.
6079 * gdbthread.h (struct thread_info): New field private_dtor.
6080 * thread.c (print_thread_info): Report the core.
6081 * ui-out.c (MAX_UI_OUT_LEVELS): Increase.
6082 * utils.c (compare_positive_ints): New.
6083 * features/threads.dtd: New.
6084 * mi/mi-interp.c (mi_on_normal_stop): Report the core.
6085 * mi/mi-main.c (struct collect_cores_data, collect_cores)
6086 (do_nothing, free_vector_of_osdata_items)
6087 (splay_tree_int_comparator, free_splay_tree): New.
6088 (print_one_inferior_data): Implemented printing of selected
6089 inferiors. Collect and print cores.
6090 (output_cores): New.
6091 (mi_cmd_list_thread_groups): Support --recurse. Permit specifying
6092 thread groups together with --available.
6093
6094 2010-01-12 Jan Kratochvil <jan.kratochvil@redhat.com>
6095
6096 * configure: Regenerate (for _STRUCTURED_PROC).
6097
6098 2010-01-12 Joel Brobecker <brobecker@adacore.com>
6099
6100 Delete dead function.
6101 * ada-lang.c (extract_string): Delete. No longer used.
6102
6103 2010-01-12 Joel Brobecker <brobecker@adacore.com>
6104
6105 Fix -Wunused warning in dec-thread.c.
6106 * dec-thread.c (dec_thread_count_gdb_threads)
6107 (dec_thread_add_gdb_thread): Prevent -Wunused warning.
6108
6109 2010-01-12 Joel Brobecker <brobecker@adacore.com>
6110
6111 * ada-valprint.c (ada_print_floating): Remove trailing space.
6112
6113 2010-01-12 Joel Brobecker <brobecker@adacore.com>
6114
6115 Add support for DW_AT_GNAT_descriptive_type.
6116 * gdbtypes.h (enum type_specific_kind): New enum.
6117 (struct main_type) [type_specific_field]: New component.
6118 [type_specific]: Add new component "gnat_stuff".
6119 (struct gnat_aux_type): New type.
6120 (INIT_CPLUS_SPECIFIC): Also set TYPE_SPECIFIC_FIELD (type).
6121 (HAVE_CPLUS_STRUCT): Also check TYPE_SPECIFIC_FIELD (type).
6122 (gnat_aux_default, allocate_gnat_aux_type): Add declaration.
6123 (INIT_GNAT_SPECIFIC, ALLOCATE_GNAT_AUX_TYPE, HAVE_GNAT_AUX_INFO)
6124 (TYPE_SPECIFIC_FIELD): New macros.
6125 (TYPE_CPLUS_SPECIFIC): Return cplus_struct_default if the given
6126 type does not hold any cplus-specific data.
6127 (TYPE_RAW_CPLUS_SPECIFIC): New macro.
6128 (TYPE_GNAT_SPECIFIC, TYPE_DESCRIPTIVE_TYPE): New macros.
6129 (TYPE_IS_OPAQUE): Use HAVE_CPLUS_STRUCT to check if type has
6130 cplus-specific data.
6131 * gdbtypes.c (allocate_cplus_struct_type): Minor stylistic rewrite.
6132 Set new component TYPE_SPECIFIC_FIELD (type).
6133 (gnat_aux_default): New constant.
6134 (allocate_gnat_aux_type): New function.
6135 (init_type): Add initialization the type-specific stuff for
6136 TYPE_CODE_FLT and TYPE_CODE_FUNC types.
6137 (print_gnat_stuff): New function.
6138 (recursive_dump_type): Use HAVE_CPLUS_STRUCT to check for cplus-
6139 specific data. Adjust code that prints the contents of the
6140 type-specific union using the TYPE_SPECIFIC_FIELD value.
6141 * dwarf2read.c (dwarf2_attach_fields_to_type): Do not allocate
6142 the type cplus stuff for Ada types.
6143 (dwarf2_add_member_fn, dwarf2_attach_fn_fields_to_type):
6144 Error out if these routines are called with an Ada type.
6145 (read_structure_type, read_array_type, read_subrange_type):
6146 Add call to set_descriptive_type.
6147 (set_die_type): Initialize the gnat-specific data if necessary.
6148 (need_gnat_info, die_descriptive_type, set_descriptive_type):
6149 New functions.
6150 * ada-lang.c (decode_constrained_packed_array_type): Use
6151 decode_constrained_packed_array_type instead of doing a standard
6152 lookup to locate a parallel type.
6153 (find_parallel_type_by_descriptive_type): New function.
6154 (ada_find_parallel_type_with_name): New function.
6155 (ada_find_parallel_type): Reimplement using
6156 ada_find_parallel_type_with_name.
6157 * ada-valprint.c (print_field_values): Use HAVE_CPLUS_STRUCT
6158 to check if type has a cplus stuff.
6159 * linespec.c (total_number_of_methods): Likewise.
6160 * mdebugread.c (new_type): Likewise.
6161
6162 2010-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
6163
6164 * NEWS: Document the 0b binary number prefix parsing.
6165
6166 2010-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
6167
6168 * objfiles.c (objfile_relocate1): Change the return type to int.
6169 Describe the new return value. Return non-zero if data changed.
6170 (objfile_relocate): New variable changed. Set it. Call
6171 breakpoint_re_set depending on CHANGED.
6172
6173 2010-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
6174
6175 Implement binary numbers parsing.
6176 * c-exp.y (parse_number): New case 'b' and 'B'.
6177
6178 2010-01-11 Jan Kratochvil <jan.kratochvil@redhat.com>
6179 Tristan Gingold <gingold@adacore.com>
6180
6181 * solib.c (info_sharedlibrary_command): Replace
6182 objfile_has_partial_symbols and objfile_has_full_symbols calls by
6183 objfile_has_symbols.
6184
6185 2010-01-10 Joel Brobecker <brobecker@adacore.com>
6186
6187 * NEWS: Document the improvements made to the mips-irix port.
6188
6189 2010-01-09 Joel Brobecker <brobecker@adacore.com>
6190
6191 Fix the documentation of valprint.c:value_print.
6192 * valprint.c (value_print): Update the function description to
6193 mention that the syntax of the output follows the current_language,
6194 not necessarily C.
6195
6196 2010-01-09 Jan Kratochvil <jan.kratochvil@redhat.com>
6197
6198 Fix displacement of separate debug info files.
6199 * objfiles.c (objfile_relocate): Rename to ...
6200 (objfile_relocate1): ... here and make it static. Extend the comment.
6201 (objfile_relocate): New function.
6202 * solib-spu.c (spu_relocate_main_executable): Explicitly check if
6203 SYMFILE_OBJFILE is NULL. Remove variables objfile and old_chain.
6204 Remove following of SEPARATE_DEBUG_OBJFILE. new_offsets is now
6205 allocated using alloca.
6206 * symfile.c (copy_section_addr_info): Remove.
6207 (build_section_addr_info_from_objfile): Make it global. New variables
6208 addr_bit and mask, use them.
6209 * symfile.h (build_section_addr_info_from_objfile): New prototype.
6210 (copy_section_addr_info): Remove.
6211
6212 2010-01-09 Joel Brobecker <brobecker@adacore.com>
6213
6214 Signal unwinder for mips-irix N32.
6215 * mips-irix-tdep.c: #include mips-tdep.h, trad-frame.h, and
6216 tramp-frame.h.
6217 (SIGTRAMP_FRAME_SIZE, SIGCONTEXT_PC_OFF, SIGCONTEXT_REGS_OFF)
6218 (SIGCONTEXT_FPREGS_OFF, SIGCONTEXT_FPCSR_OFF, SIGCONTEXT_HI_OFF)
6219 (SIGCONTEXT_LO_OFF): New macros.
6220 (mips_irix_n32_tramp_frame_init): New function.
6221 (mips_irix_n32_tramp_frame): New static constant.
6222 (mips_irix_init_abi): Prepend the mips_irix_n32_tramp_frame unwinder.
6223
6224 2010-01-09 Joel Brobecker <brobecker@adacore.com>
6225
6226 Breakpoint in shared library does not work on mips-irix.
6227 * procfs.c: #include "observer.h".
6228 (procfs_inferior_created): New function, moving here the code
6229 which unsets the syssgi syscall-exit notifications.
6230 (procfs_create_inferior): Remove the code which unsets the syssgi
6231 syscall-exit notifications. It is too early to do this here.
6232 (_initialize_procfs): Attach the procfs_inferior_created observer.
6233
6234 2010-01-09 Joel Brobecker <brobecker@adacore.com>
6235
6236 Wrong return convention for arrays (mips-irix).
6237 * mips-tdep.c (mips_n32n64_return_value): Arrays whose size is
6238 128 bits or smaller are returned the same way as structs
6239 and unions of the the same size.
6240
6241 2010-01-09 Joel Brobecker <brobecker@adacore.com>
6242
6243 Cannot set the PC on mips-irix.
6244 * irix5-nat.c (fill_gregset): Check regno against the raw PC
6245 register number, no the cooked one.
6246
6247 2010-01-09 Joel Brobecker <brobecker@adacore.com>
6248
6249 Error while loading core file on mips-irix.
6250 * solib-irix.c (irix_solib_create_inferior_hook): Do nothing
6251 if debugging from a core file.
6252
6253 2010-01-09 Joel Brobecker <brobecker@adacore.com>
6254
6255 GDB hangs when attaching to process on mips-irix.
6256 * solib-irix.c (irix_solib_create_inferior_hook): Do nothing if
6257 attaching to a process.
6258
6259 2010-01-09 Joel Brobecker <brobecker@adacore.com>
6260
6261 Use the correct breakpoint instruction on mips-irix.
6262 * mips-tdep.c (mips_breakpoint_from_pc): Add new static variable
6263 containing the correct breakpoint instruction to use on mips-irix.
6264 Use it when the osabi is GDB_OSABI_IRIX.
6265
6266 2010-01-09 Joel Brobecker <brobecker@adacore.com>
6267
6268 -Wunused warning in procfs.c (mips-irix only).
6269 * procfs.c (gdb_praddset, gdb_prdelset): New macros. Use them
6270 throughout instead of using praddset and prdelset respectively.
6271
6272 2010-01-09 Joel Brobecker <brobecker@adacore.com>
6273
6274 GDB crash while stepping into function.
6275 * infrun.c (handle_inferior_event): Refetch the current frame
6276 after handling what.main_action, in case that pointer became
6277 dangling.
6278
6279 2010-01-09 Joel Brobecker <brobecker@adacore.com>
6280
6281 Fix build failure of solaris-hosted cross debuggers.
6282 * ada-valprint.c, parse.c: Include defs.h before including ctype.h.
6283
6284 2010-01-09 Daniel Gutson <dgutson@codesourcery.com>
6285
6286 Fix build failure on sparc-solaris.
6287 * procfs.c: (procfs_do_thread_registers) Use elfcore_write_lwpstatus.
6288
6289 2010-01-08 Jan Kratochvil <jan.kratochvil@redhat.com>
6290
6291 Move some symfile code into subroutines.
6292 * symfile.h (relative_addr_info_to_section_offsets)
6293 (addr_info_make_relative): New prototypes.
6294 * symfile.c (default_symfile_offsets): Move a part to ...
6295 (relative_addr_info_to_section_offsets): ... this new function.
6296 (default_symfile_offsets): Call it.
6297 (syms_from_objfile <!mainline && addrs && addrs->other[0].name>): Move
6298 this part to ...
6299 (addr_info_make_relative): ... this new function.
6300
6301 2010-01-08 Jan Kratochvil <jan.kratochvil@redhat.com>
6302
6303 Add from_tty to solib_create_inferior_hook.
6304 * infcmd.c (post_create_inferior): Move solib_add after
6305 solib_create_inferior_hook. Pass from_tty to
6306 solib_create_inferior_hook. Call solib_add and SOLIB_ADD with
6307 0 from_tty and comment why.
6308 * infrun.c (follow_exec): Pass from_tty solib_create_inferior_hook as 0.
6309 * linux-nat.c (linux_child_follow_fork): Likewise.
6310 * nto-procfs.c (procfs_post_attach, procfs_create_inferior): Likewise.
6311 * solib-darwin.c (darwin_solib_create_inferior_hook): New parameter
6312 from_tty.
6313 * solib-frv.c (frv_solib_create_inferior_hook): Likewise.
6314 * solib-irix.c (irix_solib_create_inferior_hook): Likewise.
6315 * solib-null.c (null_solib_create_inferior_hook): Likewise.
6316 * solib-osf.c (osf_solib_create_inferior_hook): Likewise.
6317 * solib-pa64.c (pa64_solib_create_inferior_hook): Likewise.
6318 * solib-som.c (som_solib_create_inferior_hook): Likewise.
6319 * solib-spu.c (spu_solib_create_inferior_hook): New parameter from_tty.
6320 Pass it to svr4_so_ops.solib_create_inferior_hook.
6321 * solib-sunos.c (sunos_solib_create_inferior_hook): New parameter
6322 from_tty.
6323 * solib-svr4.c (enable_break): New parameter from_tty. Pass it to
6324 solib_add.
6325 (svr4_solib_create_inferior_hook): New parameter from_tty. Pass it to
6326 enable_break.
6327 * solib-target.c (solib_target_solib_create_inferior_hook): New
6328 parameter from_tty.
6329 * solib.c (solib_create_inferior_hook): New parameter from_tty. Pass
6330 it to ops->solib_create_inferior_hook.
6331 (reload_shared_libraries): Pass from_tty to solib_create_inferior_hook.
6332 Move solib_add after solib_create_inferior_hook, call it now with
6333 from_tty as 0. New comment there.
6334 * solib.h (solib_create_inferior_hook): New parameter from_tty.
6335 * solist.h (struct target_so_ops <solib_create_inferior_hook>):
6336 Likewise.
6337
6338 2010-01-08 Vladimir Prus <vladimir@codesourcery.com>
6339
6340 Fix multiexec race.
6341 * infrun.c (handle_inferior_event): Use get_thread_regcache
6342 with events ptid, not get_current_regcache.
6343
6344 2009-01-08 Joel Brobecker <brobecker@adacore.com>
6345
6346 GDB crash with empty executable name (MinGW).
6347 * source.c (openp): Add assert that parameter string is not NULL.
6348 if parameter string is an empty string, then return with a failure
6349 immediately.
6350
6351 2009-01-08 Joel Brobecker <brobecker@adacore.com>
6352
6353 Get rid of support for VAX Floats.
6354 * ada-lang.h (ada_is_vax_floating_type, ada_vax_float_type_suffix)
6355 (ada_vax_float_print_function): Delete.
6356 * ada-lang.c (ada_is_vax_floating_type, ada_vax_float_type_suffix)
6357 (ada_vax_float_print_function): Delete.
6358 * ada-typeprint.c (print_vax_floating_point_type): Delete.
6359 (ada_print_type): Remove support for VAX floats.
6360 * ada-valprint.c (ada_val_print_1): Remove support for VAX floats.
6361
6362 2010-01-08 Jan Kratochvil <jan.kratochvil@redhat.com>
6363
6364 * stabsread.c (read_args): Handle zero arguments.
6365
6366 2009-01-08 Joel Brobecker <brobecker@adacore.com>
6367
6368 Cannot find in-tree libiconv.a after reconfigure.
6369 * acinclude.m4 (AM_ICONV): If we find an in-tree libiconv.a
6370 that we can use, then cache the path to this archive.
6371 * configure: Regenerate.
6372
6373 2010-01-07 Stan Shebs <stan@codesourcery.com>
6374
6375 Make tracepoint operations go through target vector.
6376 * target.h (enum trace_find_type): New enum.
6377 (struct target_ops): New fields to_trace_init,
6378 to_download_tracepoint, to_download_trace_state_variable,
6379 to_trace_set_readonly_regions, to_trace_start, to_get_trace_status,
6380 to_trace_stop, to_trace_find, to_get_trace_state_variable_value,
6381 to_set_disconnected_tracing.
6382 (target_trace_init): New macro.
6383 (target_download_tracepoint): New macro.
6384 (target_download_trace_state_variable): New macro.
6385 (target_trace_start): New macro.
6386 (target_trace_set_readonly_regions): New macro.
6387 (target_get_trace_status): New macro.
6388 (target_trace_stop): New macro.
6389 (target_trace_find): New macro.
6390 (target_get_trace_state_variable_value): New macro.
6391 (target_set_disconnected_tracing): New macro.
6392 * target.c (update_current_target): Inherit and set defaults for
6393 tracepoint operations.
6394 * tracepoint.c (default_collect): Make globally visible.
6395 (target_is_remote): Remove, along with all calls.
6396 (tvariables_info): Call target_get_trace_state_variable_value.
6397 (remote_set_transparent_ranges): Remove.
6398 (trace_start_command): Call target_trace_init,
6399 target_download_tracepoint, etc.
6400 (download_tracepoint): Remove.
6401 (trace_stop_command): Simplify.
6402 (stop_tracing): Call target_trace_stop.
6403 (get_trace_status): Call target_get_trace_status.
6404 (trace_status_command): Add case for targets that cannot trace.
6405 (finish_tfind_command): Change to take numerical arguments, call
6406 target_trace_find.
6407 (trace_find_command): Update call to finish_tfind_command.
6408 (trace_find_pc_command): Ditto.
6409 (trace_find_tracepoint_command): Ditto.
6410 (trace_find_line_command): Ditto.
6411 (trace_find_range_command): Ditto.
6412 (trace_find_outside_command): Ditto.
6413 (set_disconnected_tracing_value): Call
6414 target_set_disconnected_tracing.
6415 * remote.c: Add protocol encoding bits from tracepoint.c.
6416 (trace_error): Move from tracepoint.c.
6417 (remote_get_noisy_reply): Ditto.
6418 (free_actions_list_cleanup_wrapper): Ditto.
6419 (free_actions_list): Ditto.
6420 (remote_trace_init): New function.
6421 (remote_download_tracepoint): New function.
6422 (remote_download_trace_state_variable): New function.
6423 (remote_trace_set_readonly_regions): New function.
6424 (remote_trace_start): New function.
6425 (remote_get_trace_status): New function.
6426 (remote_trace_stop): New function.
6427 (remote_trace_find): New function.
6428 (remote_download_trace_state_variable): New function.
6429 (remote_set_disconnected_tracing): New function.
6430 (init_remote_ops): Add tracepoint operations.
6431
6432 * tracepoint.c (trace_dump_command): Don't decr_pc_after_break.
6433
6434 2010-01-07 Tristan Gingold <gingold@adacore.com>
6435
6436 * symfile.c (build_section_addr_info_from_objfile): New function.
6437 (symbol_file_add_separate): Don't use offsets from objfile but
6438 built an addr info.
6439
6440 2010-01-06 Stan Shebs <stan@codesourcery.com>
6441
6442 Support disconnected tracing.
6443 * infcmd.c (detach_command): Ask whether to stop tracing.
6444 * cli/cli-cmds.c (quit_command): Ditto.
6445 * breakpoint.h (struct breakpoint): New field number_on_target.
6446 * breakpoint.c (create_tracepoint_from_upload): New function.
6447 (get_tracepoint_by_number_on_target): New function.
6448 * remote.c (struct remote): New field disconnected_tracing.
6449 (remote_disconnected_tracing_feature): New function.
6450 (remote_protocol_features): Add DisconnectedTracing.
6451 (struct uploaded_tp): New struct.
6452 (uploaded_tps): New global.
6453 (get_uploaded_tp): New function.
6454 (find_matching_tracepoint): New function.
6455 (remote_get_tracing_state): New function.
6456 (remote_start_remote): Call it.
6457 * tracepoint.c (disconnected_tracing): New global.
6458 (trace_start_command): Initialize number_on_target.
6459 (stop_tracing): New function, split out from...
6460 (trace_stop_command): Call stop_tracing.
6461 (get_trace_status): New function, split out from...
6462 (trace_status_command): Call get_trace_status, add info on
6463 disconnection behavior.
6464 (disconnect_or_stop_tracing): New function.
6465 (finish_tfind_command): Translate from number on target.
6466 (trace_find_tracepoint_command): Translate to number on target.
6467 (send_disconnected_tracing_value): New function.
6468 (set_disconnected_tracing): New function.
6469 (_initialize_tracepoint): Add disconnected-tracing variable.
6470 * NEWS: Mention disconnected tracing.
6471
6472 2010-01-06 Tristan Gingold <gingold@adacore.com>
6473
6474 * symtab.c (lookup_global_symbol_from_objfile): Rename objfile
6475 parameter to main_objfile. Iterate on all separate debug objfiles.
6476 * symfile.h (symbol_file_add_separate)
6477 (find_separate_debug_file_by_debuglink): Remove parameter names.
6478 * symfile.c (symbol_file_add_separate): Use add_separate_objfile.
6479 (reread_symbols): Use free_objfile_separate_debug.
6480 * objfiles.h (struct objfile): Add separate_debug_objfile_link.
6481 Adjust comment.
6482 (objfile_separate_debug_iterate, add_separate_debug_objfile)
6483 (free_objfile_separate_debug): New prototypes.
6484 * objfiles.c (objfile_separate_debug_iterate): New function.
6485 (add_separate_debug_objfile, free_objfile_separate_debug): New
6486 functions.
6487 (free_objfile): Use free_objfile_separate_debug. Adjust for
6488 multiple separate debug objfile.
6489 (objfile_has_symbols): Adjust comment. Iterate on all separate
6490 debug objfiles.
6491 * minsyms.c (lookup_minimal_symbol): Adjust for multiple separate
6492 debug objfile.
6493 (lookup_minimal_symbol_text): Ditto.
6494 (lookup_minimal_symbol_by_pc_name): Ditto.
6495 (lookup_minimal_symbol_solib_trampoline): Ditto.
6496 (lookup_minimal_symbol_by_pc_section_1): Iterate on all separate
6497 debug objfiles.
6498
6499 2010-01-05 Stan Shebs <stan@codesourcery.com>
6500
6501 Add fast tracepoints.
6502 * arch-utils.h (default_fast_tracepoint_valid_at): Declare.
6503 * arch-utils.c (default_fast_tracepoint_valid_at): New function.
6504 * breakpoint.h (enum bptype): Add bp_fast_tracepoint.
6505 * breakpoint.c (tracepoint_type): New function.
6506 (ALL_TRACEPOINTS): Use it.
6507 (should_be_inserted): Ditto.
6508 (bpstat_check_location): Ditto.
6509 (print_one_breakpoint_location): Ditto.
6510 (user_settable_breakpoint): Ditto.
6511 (set_breakpoint_location_function): Ditto.
6512 (disable_breakpoints_in_shlibs): Ditto.
6513 (delete_trace_command): Ditto.
6514 (print_it_typical): Add bp_fast_tracepoint case.
6515 (bpstat_what): Ditto.
6516 (print_one_breakpoint_location): Ditto.
6517 (allocate_bp_location): Ditto.
6518 (mention): Ditto.
6519 (breakpoint_re_set_one): Ditto.
6520 (disable_command): Ditto.
6521 (enable_command): Ditto.
6522 (check_fast_tracepoint_sals): New function.
6523 (break_command_really): Call it.
6524 (ftrace_command): New function.
6525 (_initialize_breakpoint): Add ftrace command.
6526 * gdbarch.sh (fast_tracepoint_valid_at): New.
6527 * gdbarch.h, gdbarch.c: Regenerate.
6528 * i386-tdep.c (i386_fast_tracepoint_valid_at): New function.
6529 (i386_gdbarch_init): Use it.
6530 * remote.c (struct remote_state): New field fast_tracepoints.
6531 (PACKET_FastTracepoints): New packet config type.
6532 (remote_fast_tracepoint_feature): New function.
6533 (remote_protocol_features): Add FastTracepoints.
6534 (remote_supports_fast_tracepoints): New function.
6535 (_initialize_remote): Add FastTracepoints.
6536 * tracepoint.c (download_tracepoint): Add fast tracepoint option.
6537 * NEWS: Mention fast tracepoints.
6538
6539 2010-01-06 Joel Brobecker <brobecker@adacore.com>
6540
6541 * gdb-gdb.py: New file.
6542
6543 2010-01-05 Michael Snyder <msnyder@vmware.com>
6544
6545 * infrun.c (handle_inferior_event): Fix typo in comment.
6546
6547 2010-01-05 Jan Kratochvil <jan.kratochvil@redhat.com>
6548
6549 * symfile.c (syms_from_objfile): Remove the !MAINLINE conditional.
6550
6551 2010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
6552
6553 * features/Makefile (WHICH): Add s390-linux32, s390-linux64,
6554 and s390x-linux64.
6555 (s390-linux32-expedite): Define.
6556 (s390-linux64-expedite): Define.
6557 (s390x-linux64-expedite): Define.
6558 * features/s390-acr.xml: New file.
6559 * features/s390-fpr.xml: New file.
6560 * features/s390-core32.xml: New file.
6561 * features/s390-core64.xml: New file.
6562 * features/s390x-core64.xml: New file.
6563 * features/s390-linux32.xml: New file.
6564 * features/s390-linux64.xml: New file.
6565 * features/s390x-linux64.xml: New file.
6566 * features/s390-linux32.c: New generated file.
6567 * features/s390-linux64.c: New generated file.
6568 * features/s390x-linux64.c: New generated file.
6569
6570 * regformats/s390-linux32.dat: New generated file.
6571 * regformats/s390-linux64.dat: New generated file.
6572 * regformats/s390x-linux64.dat: New generated file.
6573 * regformats/reg-s390.dat: Remove.
6574 * regformats/reg-s390x.dat: Remove.
6575
6576 * s390-nat.c: Include "auxv.h" and <elf.h>.
6577 (HWCAP_S390_HIGH_GPRS): Define if undefined.
6578 (s390_target_wordsize): New function.
6579 (s390_auxv_parse): Likewise.
6580 (s390_get_hwcap): Likewise.
6581 (s390_read_description): Likewise.
6582 (_initialize_s390_nat): Install s390_auxv_parse and
6583 s390_read_description.
6584
6585 * s390-tdep.c: Include "features/s390-linux32.c",
6586 "features/s390-linux64.c", and "features/s390x-linux64.c".
6587 (struct gdbarch_tdep): Add gpr_full_regnum, pc_regnum, and cc_regnum.
6588 (s390_register_call_saved): New function.
6589 (s390_register_name): Remove.
6590 (s390_register_type): Remove.
6591 (s390_dwarf_regmap): Add lower half GPR pseudo DWARF CFI regnums.
6592 (s390_dwarf_reg_to_regnum): Remap GPR regnums to full GPRs.
6593 (s390_adjust_frame_regnum): Remap GPR regnums to lower halves for CFI.
6594 (s390_pseudo_register_name): New function.
6595 (s390_pseudo_register_type): New function.
6596 (s390_pseudo_register_read): Handle both 32-bit and 64-bit cases.
6597 Handle full GPR pesudos and varying pseudo register numbers.
6598 (s390_pseudo_register_write): Likewise
6599 (s390x_pseudo_register_read): Remove.
6600 (s390x_pseudo_register_write): Likewise.
6601 (s390_register_group): Remove.
6602 (s390_pseudo_register_group): New function.
6603 (s390_regmap_gregset): Add GPR upper halves.
6604 (s390x_regmap_gregset): Likewise.
6605 (s390_regmap_fpregset): Likewise.
6606 (s390_regmap_upper): New global variable.
6607 (s390_upper_regset): New global variable.
6608 (s390_upper_regset_sections): New global variable.
6609 (s390_regset_from_core_section): Handle GPR upper halves.
6610 (s390_core_read_description): New function.
6611 (s390_prologue_frame_unwind_cache): Set up ABI call-saved/clobbered
6612 register information. Handle varying pseudo register numbers.
6613 (s390_backchain_frame_unwind_cache): Likewise.
6614 (s390_frame_prev_register): Unwind full GPRs to show lower halves.
6615 (s390_stub_frame_unwind_cache): Handle varying pseudo register numbers.
6616 (s390_sigtramp_frame_unwind_cache): Unwind PSWM and PSWA as well as
6617 PC and CC pseudos. Unwind upper halves and full GPRs as appropriate.
6618 Handle varying pseudo register numbers.
6619 (s390_unwind_pc): Handle varying pseudo register numbers.
6620 (s390_dwarf2_prev_register): New function.
6621 (s390_dwarf2_frame_init_reg): Set up ABI call-saved/clobbered
6622 register information. Handle varying pseudo register numbers.
6623 Install s390_dwarf2_prev_register to unwind full GPRs.
6624 (s390_gdbarch_init): Handle target descriptions. Assign varying
6625 pseudo register numbers. Install s390_adjust_frame_regnum.
6626 (_initialize_s390_tdep): Initialize target descriptions.
6627
6628 * s390-tdep.h (S390_R0_UPPER_REGNUM .. S390_R15_UPPER_REGNUM): Define.
6629 (S390_NUM_REGS): Redefine to include upper half registers.
6630 (S390_PC_REGNUM, S390_CC_REGNUM): Remove.
6631 (S390_NUM_PSEUDO_REGS, S390_NUM_TOTAL_REGS): Likewise.
6632 (tdesc_s390_linux32): Add declaration.
6633 (tdesc_s390_linux64): Likewise.
6634 (tdesc_s390x_linux64): Likewise.
6635
6636 2010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
6637
6638 * regset.h (struct core_regset_section): Add HUMAN_NAME.
6639 * i386-linux-tdep.c (i386_linux_regset_sections): Fill in HUMAN_NAME.
6640 * ppc-linux-tdep.c (ppc_linux_vsx_regset_sections): Likewise.
6641 (ppc_linux_vmx_regset_sections): Likewise.
6642 (ppc_linux_fp_regset_sections): Likewise.
6643
6644 * corelow.c (get_core_register_section): Constify arguments.
6645 (get_core_registers): Use gdbarch_core_regset_sections instead
6646 of hard-coded platform-specific register section names.
6647
6648 2010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
6649
6650 * dwarf2loc.c (read_pieced_value): If a piece occupies part of
6651 a register, assume the least-significant part is used.
6652 (write_pieced_value): Likewise.
6653
6654 2010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
6655
6656 * printcmd.c: Include "arch-utils.h".
6657 (do_one_display): Re-parse expression if current architecture changed.
6658
6659 2010-01-03 Jan Kratochvil <jan.kratochvil@redhat.com>
6660 Joel Brobecker <brobecker@adacore.com>
6661
6662 * gdbtypes.c (check_typedef): New comment on type length.
6663 * value.c (allocate_value_lazy): Remove the unused atype variable. New
6664 comment on type length.
6665 (value_primitive_field): Keep the original TYPE value, new comment.
6666
6667 2010-01-01 Jan Kratochvil <jan.kratochvil@redhat.com>
6668
6669 * cli/cli-script.c (process_next_line): Rename p1 as p_end and p2 as
6670 p_start. Change != comparisons to > and < comparisons.
6671
6672 2010-01-01 Jan Kratochvil <jan.kratochvil@redhat.com>
6673
6674 * cli/cli-script.c (process_next_line): Check P2 overrun.
6675
6676 2009-01-01 Joel Brobecker <brobecker@adacore.com>
6677
6678 Update the copyright hearder to add year 2010 for most GDB files.
6679
6680 2009-01-01 Joel Brobecker <brobecker@adacore.com>
6681
6682 Fix build failure in inf-ptrace.c.
6683 * inf-ptrace.c (inf_ptrace_follow_fork): Fix typo.
6684
6685 2010-01-01 Joel Brobecker <brobecker@adacore.com>
6686
6687 * top.c (print_gdb_version): Update copyright year.
6688
6689 2010-01-01 Joel Brobecker <brobecker@adacore.com>
6690
6691 Fix break *FUN'address thread NUM.
6692 * ada-lex.l (task): Expand rule to also match the thread keyword.
6693
6694 2010-01-01 Joel Brobecker <brobecker@adacore.com>
6695
6696 Fix break *FUN'address task NUM.
6697 * ada-lex.l (task): New rule.
6698 * ada-lang.c (valid_task_id): Make sure the Ada task list has
6699 been built before using it.
6700
6701 For older changes see ChangeLog-2009.
6702 \f
6703 Local Variables:
6704 mode: change-log
6705 left-margin: 8
6706 fill-column: 74
6707 version-control: never
6708 coding: utf-8
6709 End: