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