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