* ada-lang.c (ada_convert_actual): Renames convert_actual.
[deliverable/binutils-gdb.git] / gdb / ChangeLog
1 2008-01-08 Joel Brobecker <brobecker@adacore.com>
2
3 * ada-lang.c (ada_convert_actual): Renames convert_actual.
4 Make non-static.
5 (ada_convert_actuals): Delete.
6 * ada-lang.h (ada_convert_actual): Add declaration.
7 (ada_convert_actuals): Remove declaration.
8 * infcall.c: #include "ada-lang.h".
9 (value_arg_coerce): Add new parameter sp. Update function
10 documetnation. Add handling of Ada function call parameters.
11 * Makefile.in (infcall.o): Update dependencies.
12
13 2008-01-08 Paul Hilfinger <hilfinger@adacore.com>
14
15 * ada-lang.c (ensure_lval): Fix value lval kind.
16 (convert_actual): Add handling for arguments passed by reference.
17
18 2008-01-08 Doug Evans <dje@google.com>
19
20 * dbxread.c (read_dbx_symtab): Fix indentation.
21
22 2008-01-07 Thiago Jung Bauermann <bauerman@br.ibm.com>
23
24 * Makefile.in (dfp.o): Depend on expression.h, gdbtypes.h and value.h.
25 (valarith.o): Depend on dfp.h.
26 (valops.o): Likewise.
27 * dfp.c: Include expression.h, gdbtypes.h, value.h and dfp.h.
28 (set_decnumber_context): New function.
29 (decimal_check_errors): Likewise.
30 (decimal_from_number): Likewise.
31 (decimal_to_number): Likewise.
32 (decimal_from_string): Use set_decnumber_context and
33 decimal_check_errors.
34 (decimal_from_integral): New function.
35 (decimal_from_floating): Likewise.
36 (decimal_to_double): Likewise.
37 (promote_decimal): Likewise.
38 (decimal_binop): Likewise.
39 (decimal_is_zero): Likewise.
40 (decimal_compare): Likewise.
41 (decimal_convert): Likewise.
42 * dfp.h (decimal_from_integral): New prototype.
43 (decimal_from_floating): Likewise.
44 (decimal_to_double): Likewise.
45 (decimal_binop): Likewise.
46 (decimal_is_zero): Likewise.
47 (decimal_compare): Likewise.
48 (decimal_convert): Likewise.
49 * eval.c (evaluate_subexp_standard): Remove expect_type argument from
50 call to value_from_decfloat.
51 * valarith.c: Include dfp.h.
52 (value_args_as_decimal): New function.
53 (value_binop): Add if block to handle TYPE_CODE_DECFLOAT values.
54 (value_logical_not): Likewise.
55 (value_equal): Likewise.
56 (value_less): Likewise.
57 (value_pos): Likewise.
58 (value_neg): Formatting fix.
59 * valops.c: Include dfp.h.
60 (value_cast): Add if block to handle TYPE_CODE_DECFLOAT values.
61 * value.c (unpack_long): Add case to handle TYPE_CODE_DECFLOAT.
62 (unpack_double): Add if block to handle TYPE_CODE_DECFLOAT.
63 (value_from_decfloat): Remove expect_type argument.
64 * value.h (value_from_decfloat): Update prototype.
65
66 2008-01-07 Vladimir Prus <vladimir@codesourcery.com>
67
68 Ignore change in name of dynamic linker during
69 execution on Solaris. This also unbreaks pending breakpoints.
70
71 * solist.h (struct target_so_ops): New field same.
72 * solib-svr4.c (svr4_same): New.
73 (_initialize_svr4_solib): Register svr4_same.
74 * solib.c (update_solib_list): Use ops->same, if available.
75
76 2008-01-06 Christopher Faylor <me+cygwin@cgf.cx>
77
78 * win32-nat.c (win32_make_so): Use cygwin-style path to avoid warnings
79 when using MS-DOS paths.
80
81 2008-01-05 Pedro Alves <pedro@codesourcery.com>
82
83 * NEWS: Mention --pid and --core command line behaviour changes.
84
85 2008-01-05 Pedro Alves <pedro@codesourcery.com>
86
87 * main.c (captured_main): Remove 'count' varible and the
88 ALIGN_STACK_ON_ENTRY block that used it. Error out if --core and
89 --pid options were issued simultaneously. If an explicit pid
90 option was passed, don't fallback to core file. Detect extra
91 arguments better in the presence of explicit pid or core
92 arguments.
93
94 2008-01-05 Joel Brobecker <brobecker@adacore.com>
95
96 * ada-lang.c (ada_which_variant_applies): Correctly compute
97 the value of the discriminant when the variant record is packed.
98
99 2008-01-04 Joel Brobecker <brobecker@adacore.com>
100
101 * ada-lang.c (is_name_suffix): Handle middle-name numeric suffixes
102 that are used to differentiate homonyms.
103
104 2008-01-04 Jerome Guitton <guitton@adacore.com>
105
106 * ada-lang.c (decode_packed_array_type): Avoid a seg fault
107 when the type is an anonymous pointer type.
108 (ada_check_typedef): Avoid a seg fault when the type is null.
109 * ada-typeprint.c (print_array_type): Add support for pointer
110 to packed arrays.
111
112 2008-01-04 Paul N. Hilfinger <hilfinger@adacore.com>
113
114 * ada-exp.y: Allow '{type} ADDRESS' notation on left of assignment.
115
116 2008-01-04 Joel Brobecker <brobecker@adacore.com>
117
118 * ada-lang.c (ada_evaluate_subexp): Evaluate tagged types in
119 EVAL_NORMAL mode when noside is EVAL_AVOID_SIDE_EFFECTS.
120
121 2008-01-04 Joel Brobecker <brobecker@adacore.com>
122
123 * ada-exp.y (chop_separator): New function.
124 (write_selectors): Rewrite to re-use chop_separator.
125 (ada_nget_field_index, get_symbol_field_type): New functions.
126 (write_var_or_type): Add support for "ptype TYPENAME.FIELD"
127 expressions.
128
129 2008-01-03 Thiago Jung Bauermann <bauerman@br.ibm.com>
130
131 * symtab.c (find_pc_sect_line): Use SYMBOL_VALUE_ADDRESS instead
132 of SYMBOL_VALUE when working with function symbols.
133
134 2008-01-03 Joel Brobecker <brobecker@adacore.com>
135
136 * ada-lang.c (resolve_subexp): Add handling of OP_REGISTER
137 expressions. These expressions do not need to be rewriten.
138
139 2008-01-03 Joel Brobecker <brobecker@adacore.com>
140
141 * dwarf2read.c (read_enumeration_type): Flag type as stub if
142 the given die is a declaration.
143
144 2008-01-03 Joel Brobecker <brobecker@adacore.com>
145
146 * ada-lang.c (ada_array_bound_from_type): Make non-static.
147 Handle properly the case when the index type is an enumerated type.
148 Do not return the subtype of the bounds type, just return the
149 bounds type directly - this is not needed and is more consistent
150 with what we do for arrays when no XA parallel type exists.
151
152 2008-01-03 Joel Brobecker <brobecker@adacore.com>
153
154 * ada-lang.c (static_unwrap_type): Add forward declaration.
155 (template_to_static_fixed_type): Fields of dynamic types sometimes
156 also need to be unwrapped. Take this into account.
157 (ada_to_fixed_type_1): Renamed from ada_to_fixed_type.
158 (ada_to_fixed_type): New wrapper around ada_to_fixed_type_1.
159 * ada-typeprint.c (ada_print_type): Get the typename from
160 the original type, not the base type.
161
162 2008-01-03 Jerome Guitton <guitton@adacore.com>
163
164 * ada-lang.c (ada_value_struct_elt, to_fixed_array_type)
165 (to_fixed_array_type, ada_to_fixed_value_create, unwrap_value):
166 Update calls to ada_to_fixed_type.
167 (ada_template_to_fixed_record_type_1): Ditto, but without looking
168 for the tag.
169 (ada_to_fixed_type): Add check_tag parameter; do not look for
170 tag if null. When looking for a tag, use a fixed record type.
171 * ada-lang.h (ada_to_fixed_type): Add check_tag parameter.
172 * ada-valprint.c (printable_val_type, ada_value_print): Update
173 calls to ada_to_fixed_type.
174
175 2008-01-03 Luis Machado <luisgpm@br.ibm.com>
176
177 * doublest.c (convert_floatformat_to_doublest): Call
178 floatformat_to_doublest instead of floatformat_to_double and use
179 DOUBLEST variables.
180 (convert_doublest_to_floatformat): Call floatformat_from_doublest
181 instead of floatformat_from_double and use DOUBLEST variables.
182
183 2008-01-03 Nick Hudson <nick.hudson@dsl.pipex.com>
184
185 * MAINTAINERS (Write After Approval): Add self.
186
187 2008-01-03 Joel Brobecker <brobecker@adacore.com>
188
189 * symfile.c (set_initial_language): Make non-static.
190 * symfile.h (set_initial_language): Add declaration.
191 * language.c: #include "symfile.h".
192 (set_language): Call set_initial_language if the frame language
193 could not be determined.
194
195 2008-01-03 Paul N. Hilfinger <hilfinger@adacore.com>
196
197 * eval.c (evaluate_subexp_for_address): Provide frame address to
198 locate_var_value only if it will be needed.
199
200 2008-01-02 Jan Kratochvil <jan.kratochvil@redhat.com>
201
202 * linux-nat.c (linux_child_follow_fork): Call also CHECK_FOR_THREAD_DB.
203
204 2008-01-02 Joel Brobecker <brobecker@adacore.com>
205
206 * ada-lang.c (ada_evaluate_subexp): Modify the value returned
207 when noside is EVAL_AVOID_SIDE_EFFECTS to be an lval_memory.
208 This is needed to make sure that any other treatment applied
209 to the resulting value does not fail for spurious reason,
210 such as trying to take the address of this value.
211
212 2008-01-02 Joel Brobecker <brobecker@adacore.com>
213
214 * ada-lang.c (ada_value_equal): Dereference reference types when
215 comparing arrays.
216
217 2008-01-01 Daniel Jacobowitz <dan@codesourcery.com>
218
219 Updated copyright notices for most files.
220
221 2008-01-01 Christopher Faylor <me+gdb@cgf.cx>
222
223 * win32-nat.c (psapi_module_handle): Remove static.
224 (get_module_name): Rename from psapi_get_dll_name. Revamp slightly to
225 return first module found if base_address is zero. Don't initialize
226 psapi function pointers here. Convert to cygwin paths when
227 appropriate.
228 (win32_pid_to_exec_file): Use Cygwin's /proc interface to determine
229 executable name. Use get_module_name when that fails or when
230 !__CYGWIN__.
231 (_initialize_psapi): New function. Initialize psapi stuff before it is
232 needed or issue a warning if it is not found. Move psapi_module_handle
233 here.
234
235 2008-01-01 Joel Brobecker <brobecker@adacore.com>
236
237 * ada-lang.c (ada_remove_trailing_digits): New function.
238 (ada_remove_po_subprogram_suffix): New function.
239 (ada_decode): Improve. Move the description of the algorithm
240 directly inside the code, instead of in the function global
241 description.
242
243 2008-01-01 Joel Brobecker <brobecker@adacore.com>
244
245 * ada-valprint.c (ada_val_print_1) [TYPE_CODE_REF]: Ignore deref_ref
246 and always print the dereferenced value.
247
248 2008-01-01 Joel Brobecker <brobecker@adacore.com>
249
250 * ada-lang.c (ada_evaluate_subexp, case BINOP_SUB): Add handling
251 of the case where the first argument is a reference.
252 (ada_evaluate_subexp, case BINOP_ADD): Likewise.
253
254 2008-01-01 Joel Brobecker <brobecker@adacore.com>
255
256 Implement support for Ada interface types.
257
258 * ada-lang.c (ada_is_dispatch_table_ptr_type): New function.
259 (ada_is_ignored_field): Ignore fields that are a dispatch table
260 of a tagged type.
261
262 2008-01-01 Joel Brobecker <brobecker@adacore.com>
263
264 * top.c (print_gdb_version): Update copyright year.
265
266 2008-01-01 Joel Brobecker <brobecker@adacore.com>
267
268 * ChangeLog-2007: New ChangeLog rotation.
269 * ChangeLog: Reset for 2008.
270 * config/djgpp/fnchange.lst: Add entries for ChangeLog-2006 and
271 ChangeLog-2007.
272
273 For older changes see ChangeLog-2007.
274 \f
275 Local Variables:
276 mode: change-log
277 left-margin: 8
278 fill-column: 74
279 version-control: never
280 coding: utf-8
281 End:
This page took 0.036414 seconds and 5 git commands to generate.