2006-01-04 Jim Blandy <jimb@redhat.com>
[deliverable/binutils-gdb.git] / gdb / ChangeLog
CommitLineData
24b06219
MK
12006-01-11 Mark Kettenis <kettenis@gnu.org>
2
3 * remote.c (get_memory_packet_size, set_thread)
4 (remote_unpack_thread_info_response, remote_get_threadinfo)
5 (parse_threadlist_response, remote_get_threadlist)
6 (remote_current_thread, remote_threads_info)
7 (remote_threads_extra_info, extended_remote_restart, get_offsets)
8 (remote_check_symbols, remote_open_1, remote_detach)
9 (remote_async_wait, remote_fetch_registers)
10 (remote_store_registers, check_binary_download, putpkt_binary)
11 (remote_insert_breakpoint, remote_insert_watchpoint)
12 (remote_remove_watchpoint, remote_insert_hw_breakpoint)
13 (remote_remove_hw_breakpoint, remote_xfer_partial, remote_rcmd)
14 (packet_command): Remove redundant parenthesis.
15
15550d6b
MK
162006-01-10 Mark Kettenis <kettenis@gnu.org>
17
dfb65433
MK
18 * corefile.c (read_memory_integer, read_memory_unsigned_integer)
19 (read_memory_typed_address, write_memory)
20 (write_memory_unsigned_integer, write_memory_signed_integer): Use
21 gdb_byte where appropriate.
22
508416a1
MK
23 * mi/mi-main.c (mi_cmd_data_read_memory): Change type of mbus into
24 'gdb_byte *'.
25
f6519ebc
MK
26 * target.h (target_read_memory_partial, target_write_memory_partial):
27 Change second argument to 'gdb_byte *'.
28 * target.c (target_xfer_memory_partial): Change third argument to
29 'gdb_byte *'.
30 (target_read_memory_partial, target_write_memory_partial): Change
31 second argument to 'gdb_byte *'.
32
15550d6b
MK
33 * linespec.c (decode_objc): Make i1 and i2 unsigned.
34 (find_method): Set values.sals to NULL.
35
d7a30af7
MK
362006-01-09 Mark Kettenis <kettenis@gnu.org>
37
38 * amd64obsd-nat.c (amd64obsd_supply_pcb): Use 'gdb_byte *' instead
39 of 'char *' in cast.
40
e1d5a0d2
PH
412006-01-07 Paul N. Hilfinger <hilfinger@adacore.com>
42
43 * ada-exp.y, ada-lex.l, ada-typeprint.c: I18n markup.
44 * ada-tasks.c, ada-lang.c: I18n markup.
45 Editorial: change "can not" => "cannot" throughout.
46
790124be
MK
472006-01-07 Mark Kettenis <kettenis@gnu.org>
48
49 * Makefile.in: Sort dependencies.
50
3c481fdc
EZ
512006-01-07 Eli Zaretskii <eliz@gnu.org>
52
53 * top.c (control_level): Remove unused variable.
54
cb5d864f
FF
552006-01-06 Fred Fish <fnf@specifix.com>
56
57 * objfiles.c (source.h): Include.
58 (free_objfile): Update comment about clear_symtab_users().
59 (free_objfile): Check all symtabs of objfile being freed and if
60 one of them is the current source symtab, call
61 clear_current_source_symtab_and_line().
62
ac264b3b
MS
632006-01-04 Michael Snyder <msnyder@redhat.com>
64
65 Checkpoint/Restart for Linux.
66 * linux-nat.c: Add support for debugging multiple forks.
67 Add #include for linux-fork.h (interface spec).
68 (super_mourn_inferior): New function pointer.
69 (child_mourn_inferior): New function / target method.
70 (linux_target): Claim to_mourn_inferior method pointer.
71 (child_follow_fork): Call interface to linux-fork, conditionally
72 add new fork processes to list of debugged processes.
73 (kill_inferior): Use interface to linux-fork to kill
74 multiple processes.
75
76 * linux-fork.h: New file.
77 * linux-fork.c: New file. Support for debugging multiple forks
78 of the same program. Support for checkpoint and restart commands.
79
80 * infrun.c (nullify_last_target_wait_ptid): New function.
81
82 * Makefile.in: Add linux-fork.
83 * config/*/linux.mh: Add linux-fork.
84 * NEWS: Mention new functionality.
85
f98ce7c2
PH
862006-01-02 Paul Hilfinger <hilfingr@nile.gnat.com>
87
88 * ada-exp.y (syntax definitions,write_var_or_type,write_name_assoc):
89 Change uses of "illegal" to "invalid".
90
52ce6436
PH
912006-01-02 Paul N. Hilfinger <hilfinger@adacore.com>
92
93 * ada-exp.y: Considerable reorganization to move functionality
94 from ada-lex.l to here, where it is logically more appropriate.
95 The original reason, however, was to prevent premature name
96 lookups for selector names in record aggregates.
97 (BLOCKNAME, TYPENAME, OBJECT_RENAMING): Remove; lexer now returns
98 NAME for all of these.
99 (VAR): New artificial token to clarify precedence rules.
100 (OTHERS): New lexeme.
101 (empty_stoken): New symbol.
102 (%union): Remove ssym, voidval.
103 (%type): Remove <voidval> type declarations.
104 (syntax definitions): Add aggregates.
105 Remove distinction between NAME, TYPENAME, BLOCKNAME, OBJECT_RENAMING.
106 Rename some non-terminals to be closer to reference manual usage.
107 Tighten up expression syntax to disallow certain non-Ada
108 constructions such as X and then Y or else Z.
109 (ada_parse): Remove initialization of left_block_context.
110 (write_var_from_name): Remove.
111 (write_var_or_type): New function, containing previous code from
112 defunct write_var_from_name and name_lookup.
113 (block_lookup): New function, moved from ada-lex.l
114 (select_possible_type_sym): New function, factored out of
115 name_lookup, which used to be in ada-lex.l.
116 (find_primitive_type): Ditto.
117 (chop_selector): Ditto.
118 (write_ambiguous_var): New function, factored out of defunct
119 write_var_from_name.
120 (write_selectors): New function.
121 (write_name_assoc): New function.
122 (write_exp_op_with_string): New function.
123
124 * ada-lex.l (processId): Change interface to return stoken.
125 (tempbuf, resize_tempbuf, tempbuf_size, tempbuf_len): Remove.
126 (block_lookup, name_lookup): Remove. Functionality moved to
127 ada-exp.y.
128 (state IN_STRING): Remove.
129 (rules): Handle string escapes in processString.
130 Add 'others' token.
131 Return all NAMEs, BLOCKNAMEs, OBJECT_RENAMINGs, TYPENAMEs in
132 yylval.sval (as simple strings).
133 All name look-ups now handled in ada-exp.y.
134 Introduce "::" (COLONCOLON) token and return as separate token.
135 (processId): Change return convention. Comment.
136 Leave leading "'" in place.
137 (processString): New function.
138 (find_dot_all): Add note to comment.
139 Fix problem that allowed match only at the end.
140
141 * ada-lang.c: Introduce aggregates.
142 (find_struct_field): Add new parameter to count fields skipped, and
143 allow other output parameters to be NULL.
144 (value_tag_from_contents_and_address, ada_value_struct_elt): Use
145 new find_struct_field.
146 (ada_index_struct_field, assign_aggregate, ada_is_array_type)
147 (num_visible_fields, ada_index_struct_field_1, ada_index_struct_field)
148 (num_component_specs, assign_component, assign_aggregate):
149 (aggregate_assign_from_choices,aggregate_assign_positional)
150 (aggregate_assign_others,add_component_interval):
151 New functions.
152 (ada_evaluate_subexp): Declare.
153 Add aggregate-related operators.
154 (ada_forward_operator_length): Declare.
155 (resolve_subexp): Add cases for new aggregate operators and OP_NAME.
156 Consolidate Ada operators, using ada_forward_operator_length.
157 (ada_search_struct_field): Search in forward order.
158 (ADA_OPERATORS): Add new aggregate operators.
159 (ada_operator_length, ada_op_name, ada_forward_operator_length)
160 (ada_dump_subexp_body, ada_print_subexp): Handle new aggregate
161 operators and OP_NAME.
162 (ada_type_of_array): Use longest_to_int.
163 (value_assign_to_component): New function.
164 (ada_forward_operator_length, ada_op_name, ada_dump_subexp_body):
165 Add OP_NAME case.
166 (ada_forward_operator_length, ada_dump_subexp_body):
167 Add OP_STRING case.
168
169 * ada-lang.h (enum ada_operator): Add OP_AGGREGATE, OP_OTHERS,
170 OP_CHOICES, OP_DISCRETE_RANGE, OP_POSITIONAL.
171
529cad9c
PH
1722006-01-02 Paul N. Hilfinger <hilfinger@adacore.com>
173
174 * ada-lang.c (process_raise_exception_name): Remove extraneous
175 definition from unsubmitted code.
176
177 (is_lower_alphanum): New function.
178 (ada_decode): Add support for decoding protected object subprograms
179 and entries, and of entities declared inside protected object
180 subprograms.
181 Also add missing handling for__{DIGITS}+ suffixes.
182 Allow '$<digits>' as valid overloading suffix.
183 (is_name_suffix): Add handling for protected type entriy suffixes.
184 Also add support for protected type subprogram suffixes, but keep
185 it commented out for now, as there is an ambiguity between these
186 entities and other internally generated entities.
187 Allow '$<digits>' as valid overloading suffix.
188 (is_valid_name_for_wild_match): New function.
189 (wild_match): Add an exra level of verification of the entity name
190 before declaring it a match for the given pattern.
191
192 (ada_type_of_array, ada_evaluate_subexp): Use more proper
193 longest_to_int rather than cast.
194
195 (ada_evaluate_subexp): Use "invalid" rather than "illegal" in comment.
196
197 (ada_coerce_to_simple_array): Call check_size to make sure
198 that the object size is reasonable.
199
200 (ada_value_primitive_packed_val): Use correct location in target
201 buffer for extracting packed record fields that are themselves records.
202
203 (add_defn_to_vec): Do not try to replace a stub type by its full
204 type. Avoids a potential infinite loop.
205
206 (ada_lookup_symbol): Move return incorrectly placed return statement,
207 causing a loop that should be scanning all object files to only
208 scan the first one.
209
210 (ada_tag_name_2): New function.
211 (ada_tag_name_1): If no 'tsd' field found in the dispatching table,
212 use alternative representation.
213
214 (ada_find_renaming_symbol): Strip the function name suffix when
215 computing the XR type name.
216
217 (ada_to_fixed_type): Try determining the tag only if we have the
218 object's address.
219 (to_fixed_array_type): Add comments.
220
221 (ada_check_typedef): Replace expression checking whether the given
222 type is a stub or not by a "call" to TYPE_STUB. Clearer and more
223 consistent.
224
225 * ada-lang.h (ADA_KNOWN_AUXILIARY_FUNCTION_NAME_PATTERNS): Allow
226 '$' in addition to '.' for runtime auxiliary function name suffixes.
227 See changes to ada_decode above.
228
229 (struct task_control_block): Add field called_task. (This change is
230 to keep synchronized with our local sources; it does not affect the
231 public version yet.)
232
233 * ada-typeprint.c (ada_print_type): Use int_string for printing
234 modulus of modular type.
235
236 (print_range): Trivial editorial comment fix.
237
238 * ada-valprint.c (ada_emit_char): Use normal Ada syntax for
239 double quote in string.
240
9b799fe6
JB
2412006-01-01 Joel Brobecker <brobecker@adacore.com>
242
243 * top.c: Add 2006 to list of copyright years in file header.
244
0bee0712
JB
2452006-01-01 Joel Brobecker <brobecker@adacore.com>
246
247 * top.c (print_gdb_version): Update copyright year to 2006.
248
13c763f4
JB
2492006-01-01 Roger Sayle <roger@eyesopen.com>
250 Elena Zannoni <ezannoni@redhat.com>
251
252 PR symtab/1651
253 * xcoffread.c (xcoff_next_symbol_text): Check this_symtab_psymtab
254 for NULL before assigning this_symtab_psymtab->objfile to objfile.
255 (scan_xcoff_symtab): Initialize next_symbol_text_func.
256 (Committed by Jim Blandy)
257
e50f0da1 258For older changes see ChangeLog-2005.
c906108c
SS
259\f
260Local Variables:
261mode: change-log
262left-margin: 8
263fill-column: 74
264version-control: never
265End:
This page took 0.831308 seconds and 4 git commands to generate.