]>
Commit | Line | Data |
---|---|---|
a036ba48 TT |
1 | 2012-08-15 Tom Tromey <[email protected]> |
2 | ||
3 | * dwarf2read.c (dwarf_decode_macro_bytes) | |
4 | <DW_MACRO_GNU_transparent_include>: Use pointer to included data | |
5 | as hash key. | |
6 | ||
486c7739 MF |
7 | 2012-08-14 Mike Frysinger <[email protected]> |
8 | ||
9 | * infcmd.c (_initialize_infcmd): Update help text for the signal, | |
10 | stepi, nexti, finish, next, step, jump, and continue commands. | |
11 | * infrun.c (_initialize_infrun): Update help text for the handle | |
12 | command. | |
13 | ||
4cf93a03 DE |
14 | 2012-08-14 Doug Evans <[email protected]> |
15 | ||
70b099cf DE |
16 | * gdbtypes.c (struct extra): Delete, unused. |
17 | ||
5212577a DE |
18 | * gdbtypes.c: Whitespace cleanup. |
19 | (address_space_name_to_int): Remove "extern" from definition. | |
20 | (_initialize_gdbtypes): Declare with initialize_file_ftype. | |
21 | ||
4cf93a03 DE |
22 | * gdbtypes.c (make_pointer_type): Remove redundant setting of |
23 | TYPE_POINTER_TYPE (type). | |
24 | ||
3756ef7e GB |
25 | 2012-08-14 Gary Benson <[email protected]> |
26 | ||
27 | * solib-svr4.c (svr4_free_library_list): Use free_so. | |
28 | ||
40d72643 MF |
29 | 2012-08-13 Mike Frysinger <[email protected]> |
30 | ||
31 | * .gitignore: Add go-exp.c. | |
32 | ||
f47f77df DE |
33 | 2012-08-13 Doug Evans <[email protected]> |
34 | ||
35 | * value.c (show_convenience): Tweak comment. | |
36 | (_initialize_values): Mention convenience functions in the help text | |
37 | for "show convenience". | |
38 | ||
7507c54a YQ |
39 | 2012-08-13 Yao Qi <[email protected]> |
40 | ||
41 | * std-operator.def: Remove TERNOP_SLICE_COUNT. | |
42 | * breakpoint.c (watchpoint_exp_is_const): Remove handling to | |
43 | TERNOP_SLICE_COUNT. | |
44 | * eval.c (evaluate_subexp_standard): Likewise. | |
45 | * expprint.c (print_subexp_standard): Likewise. | |
46 | (dump_subexp_body_standard): Likewise. | |
47 | * parse.c (operator_length_standard): Likewise. | |
48 | ||
5cad9736 YQ |
49 | 2012-08-13 Yao Qi <[email protected]> |
50 | ||
51 | * std-operator.def: Remove OP_BITSTRING. | |
52 | * breakpoint.c (watchpoint_exp_is_const): Update. | |
53 | * eval.c (evaluate_subexp_standard): Remove handling to | |
54 | OP_BITSTRING. | |
55 | * expprint.c (print_subexp_standard): Likewise. | |
56 | (dump_subexp_body_standard): Likewise. | |
57 | * parse.c (operator_length_standard): Likewise. | |
58 | * valops.c (value_bitstring): Remove. | |
59 | * value.h: Remove the declaration of 'value_bitstring'. | |
60 | ||
bad7670a SDJ |
61 | 2012-08-10 Sergio Durigan Junior <[email protected]> |
62 | ||
63 | * linespec.c (find_methods): Remove unused variables `i1' and | |
64 | `name_len'. | |
65 | (decode_line_full): Likewise for `arg_start'. | |
66 | ||
d9dce7fa SDJ |
67 | 2012-08-10 Sergio Durigan Junior <[email protected]> |
68 | ||
69 | * gdb_bfd.c (gdb_bfd_unref): Remove unused variable `slot'. | |
70 | (zlib_decompress_section): Likewise for `section_data'. | |
71 | (gdb_bfd_map_section): Likewise for `buf' and `retbuf'. | |
72 | ||
a72c3253 DE |
73 | 2012-08-10 Doug Evans <[email protected]> |
74 | ||
75 | Add $_memeq, $_regex, $_streq, $_strlen convenience functions. | |
76 | * NEWS: Document them. | |
77 | * data-directory/Makefile.in (PYTHON_FILES): Add function/__init__.py, | |
78 | function/strfns.py. | |
79 | * python/py-type.c (typy_array_1): New function. | |
80 | (typy_array): Call it. | |
81 | (typy_vector): New function. | |
82 | (type_object_methods): Add "vector". | |
83 | * python/lib/gdb/function/__init__.py: New file. | |
84 | * python/lib/gdb/function/strfns.py: New file. | |
85 | ||
200bc880 SP |
86 | 2012-08-10 Siddhesh Poyarekar <[email protected]> |
87 | ||
88 | * python/py-type.c (convert_field): Use gdb_py_long_from_longest | |
89 | for TYPE_FIELD_BITPOS. | |
90 | (typy_get_sizeof): Likewise for TYPE_LENGTH. | |
91 | ||
de0bea00 MF |
92 | 2012-08-10 Mike Frysinger <[email protected]> |
93 | ||
94 | PR cli/10436: | |
95 | * common/vec.h (VEC_merge): Define. | |
96 | (DEF_VEC_ALLOC_FUNC_I): Add a merge helper. | |
97 | (DEF_VEC_ALLOC_FUNC_P): Likewise. | |
98 | (DEF_VEC_ALLOC_FUNC_O): Likewise. | |
99 | * completer.c: Include gdb_signals.h. | |
100 | (signal_completer): Define. | |
101 | * completer.h (signal_completer): Add prototype. | |
102 | * infcmd.c (_initialize_infcmd): Assign the command | |
103 | completer for "signal" to handle_completer. | |
104 | * infrun.c: Include completer.h. | |
105 | (handle_completer): Define. | |
106 | (_initialize_infrun): Declare a new local variable c. Store the | |
107 | result of add_com("handle") to it. Assign the command | |
108 | completer for "handle" to handle_completer. | |
109 | ||
5b9afe8a YQ |
110 | 2012-08-09 Yao Qi <[email protected]> |
111 | ||
112 | * cli/cli-decode.c (set_cmd_prefix): New. | |
113 | (lookup_cmd_for_prefixlist): New. | |
114 | (add_prefix_cmd): Call set_cmd_prefix and update field 'prefix' | |
115 | of each cmd_list_element in *prefixlist. | |
116 | (add_setshow_cmd_full): set_cmd_prefix. | |
117 | (add_alias_cmd): Likewise. | |
118 | * cli/cli-decode.h (struct cmd_list_element) <prefix>: New field. | |
119 | Declare 'auto_boolean_enums'. | |
120 | * cli/cli-setshow.c: Include "observer.h". | |
121 | (notify_command_param_changed_p): New. | |
122 | (add_setshow_auto_boolean_cmd): Move auto_boolean_enums out. | |
123 | Remove 'static'. | |
124 | (do_setshow_command): Split it to ... | |
125 | (do_set_command, do_show_command): ... them. New. | |
126 | (do_set_command): Call observer_notify_command_param_changed if | |
127 | notify_command_param_changed_p returns true. | |
128 | (cmd_show_list): Caller update. | |
129 | * auto-load.c (set_auto_load_cmd): Likewise. | |
130 | * remote.c (show_remote_cmd): Likewise. | |
131 | * cli/cli-setshow.h: Update declarations. | |
132 | * top.c (execute_command): Call do_set_command and do_show_command. | |
133 | ||
134 | * NEWS: Mention new MI notification. | |
135 | * mi/mi-interp.c: Declare mi_command_param_changed. | |
136 | (mi_interpreter_init): Attach mi_command_param_changed to | |
137 | observer command_param_changed. | |
138 | (mi_command_param_changed): New. | |
139 | Remove mi_suppress_breakpoint_notifications. | |
140 | Define global variable mi_suppress_notification. | |
141 | (mi_breakpoint_created): Update. | |
142 | (mi_breakpoint_deleted): Likewise. | |
143 | (mi_breakpoint_modified): Likewise. | |
144 | * mi/mi-main.c (mi_cmd_execute): Likewise. Check command | |
145 | 'gdb-set' and set mi_suppress_notification. | |
146 | * mi/mi-main.h: (mi_suppress_notification): New struct. | |
147 | ||
1969df89 JK |
148 | 2012-08-09 Andreas Tobler <[email protected]> |
149 | Jan Kratochvil <[email protected]> | |
150 | ||
151 | * fbsd-nat.h (fbsd_find_memory_regions): Use find_memory_region_ftype. | |
152 | ||
8bfd80db YQ |
153 | 2012-08-09 Yao Qi <[email protected]> |
154 | ||
155 | * cli/cli-cmds.c (enablebreaklist): Move it to breakpoint.c. | |
156 | (skiplist): Move it to skip.c. | |
157 | (init_cmd_lists): Remove code setting enablebreaklist and | |
158 | skiplist to NULL. | |
159 | * breakpoint.c (enablebreaklist): Moved from cli/cli-cmds.c. | |
160 | * cli/cli-cmds.h: Remove declaration of enablebreaklist and | |
161 | skiplist. | |
162 | * gdbcmd.h: Likewise. | |
163 | * skip.c (_initialize_step_skip): Move 'skiplist' from | |
164 | cli/cli-cmds.c. | |
165 | ||
28578e6b YQ |
166 | 2012-08-09 Yao Qi <[email protected]> |
167 | ||
168 | * cli/cli-dump.c: Add 'static' to some cmd_list_element variables. | |
169 | * gnu-nat.c, symfile.c: Likewise. | |
170 | ||
260c0b2a DE |
171 | 2012-08-08 Aaron Gamble <[email protected]> |
172 | ||
173 | * utils.c (prompt_for_continue_wait_time): New static global. | |
174 | (make_command_stats_cleanup): Initialize it. | |
175 | (report_command_stats): Subtract time waiting for user. | |
176 | (prompt_for_continue): Track time waiting for user. | |
177 | (defaulted_query): Track time waiting for user. | |
178 | ||
4f485ebc DE |
179 | 2012-08-08 Doug Evans <[email protected]> |
180 | ||
181 | * eval.c (evaluate_subexp_standard): Fix thinko in handling | |
182 | UNOP_MEMVAL_TYPE. | |
183 | * expprint.c (print_subexp_standard, case OP_TYPE): New. | |
184 | (print_subexp_standard, case UNOP_CAST_TYPE): Don't increment pos. | |
185 | (print_subexp_standard, case UNOP_DYNAMIC_CAST): Ditto. | |
186 | (print_subexp_standard, case UNOP_REINTERPRET_CAST): Ditto. | |
187 | (print_subexp_standard, case UNOP_MEMVAL_TYPE): Ditto. | |
188 | (dump_subexp_body_standard, case UNOP_DYNAMIC_CAST): Don't increment | |
189 | elt. | |
190 | (dump_subexp_body_standard, case UNOP_REINTERPRET_CAST): Ditto. | |
191 | (dump_subexp_body_standard, case UNOP_CAST_TYPE): Ditto. | |
192 | (dump_subexp_body_standard, case UNOP_MEMVAL_TYPE): Ditto. | |
193 | (dump_prefix_expression): Handle OP_TYPE. | |
194 | ||
2acf2b39 KS |
195 | 2012-08-08 Keith Seitz <[email protected]> |
196 | ||
197 | * breakpoint.c (parse_breakpoint_sals): Remove unused variable | |
198 | addr_start. | |
199 | ||
e6712ff1 DE |
200 | 2012-08-08 Doug Evans <[email protected]> |
201 | ||
202 | * linux-thread-db.c: #include "gdb_vecs.h". | |
203 | (try_thread_db_load_from_pdir_1): New arg "subdir". All callers | |
204 | updated. | |
205 | (try_thread_db_load_from_pdir): New arg "subdir". All callers updated. | |
206 | (thread_db_load_search): Use a vector to iterate over path elements. | |
207 | Handle text appearing after "$pdir". | |
208 | ||
209 | * gdb_string.h: Moved to ... | |
210 | * common/gdb_string.h: ... here. | |
211 | * common/vec.h: Remove #ifndef GDBSERVER conditional inclusion of | |
212 | gdb_string.h and gdb_assert.h. | |
213 | ||
ab854e54 YQ |
214 | 2012-08-08 Yao Qi <[email protected]> |
215 | ||
216 | * tic6x-tdep.c (tic6x_register_to_value): Remove. | |
217 | (tic6x_value_to_register): Likewise. | |
218 | (tic6x_gdbarch_init): Don't call set_gdbarch_register_to_value | |
219 | and set_gdbarch_value_to_register. | |
220 | ||
4f69f4c2 JK |
221 | 2012-08-07 Jan Kratochvil <[email protected]> |
222 | Jean-Marc Saffroy <[email protected]> | |
223 | ||
224 | PR 11804 | |
225 | * defs.h (find_memory_region_ftype): New comment. New arg modified. | |
226 | * fbsd-nat.c (fbsd_find_memory_regions): Add the passed modified value. | |
227 | * gcore.c (gcore_create_callback): New function comment. Add modified | |
228 | parameter. Only write modified regions. Set SEC_READONLY exactly | |
229 | according to MODIFIED. | |
230 | (objfile_find_memory_regions): Ignore separate debug info files. Ass | |
231 | the passed modified value to FUNC. | |
232 | * gnu-nat.c (gnu_find_memory_regions): Add the passed modified value. | |
233 | * linux-tdep.c (linux_find_memory_regions): Try to reads smaps file | |
234 | first. New variables modified and has_anonymous. Parse the lines of | |
235 | smaps file. Add the passed MODIFIED value to FUNC. | |
236 | * procfs.c (find_memory_regions_callback): Add the passed modified | |
237 | value. | |
238 | ||
78ac5f83 TT |
239 | 2012-08-06 Tom Tromey <[email protected]> |
240 | ||
241 | * dwarf2-frame.c (clear_pointer_cleanup): New function. | |
242 | (dwarf2_frame_cache): Use it. | |
243 | * frame-unwind.h (frame_sniffer_ftype): Document prologue | |
244 | cache initialization constraint. | |
245 | ||
2c12abee TT |
246 | 2012-08-06 Tom Tromey <[email protected]> |
247 | ||
248 | PR python/14386: | |
249 | * varobj.c (update_dynamic_varobj_children): Don't call | |
250 | PyIter_Check. | |
251 | ||
4979d7f0 TT |
252 | 2012-08-06 Tom Tromey <[email protected]> |
253 | ||
254 | PR cli/14392: | |
255 | * cli/cli-cmds.c (list_command): Filter 'sals_end'. | |
256 | ||
f3c8a52a JK |
257 | 2012-08-06 Nathaniel Flath <[email protected]> |
258 | ||
259 | * NEWS: New entry for 'cd' default parameters. | |
260 | * cli/cli-cmds.c (cd_command): Replace error_no_arg by DIR assignment. | |
261 | ||
5a1cf4d6 TT |
262 | 2012-08-03 Tom Tromey <[email protected]> |
263 | ||
264 | * dwarf2-frame.c (dwarf2_frame_cache): Call do_cleanups before | |
265 | return. | |
266 | ||
7c3270ae UW |
267 | 2012-08-02 Ulrich Weigand <[email protected]> |
268 | ||
269 | * inf-child.c (inf_child_fileio_pwrite): If pwrite fails, fall back | |
270 | to attempting lseek/write. | |
271 | (inf_child_fileio_pread): Likewise for pread. | |
272 | ||
ccce17b0 YQ |
273 | 2012-08-02 Yao Qi <[email protected]> |
274 | ||
275 | * dwarf2loc.c (entry_values_debug): Add 'unsigned'. | |
276 | (_initialize_dwarf2loc): Call add_setshow_zuinteger_cmd instead of | |
277 | add_setshow_zinteger_cmd. | |
278 | * dwarf2loc.h: Update the declaration of 'entry_values_debug'. | |
279 | * dwarf2read.c (dwarf2_die_debug): Add 'unsigned'. | |
280 | (_initialize_dwarf2_read): Call add_setshow_zuinteger_cmd | |
281 | instead of add_setshow_zinteger_cmd. | |
282 | * darwin-nat.c (dwarwin_debug_flag): Add 'unsigned'. | |
283 | (_initialize_darwin_inferior): Call add_setshow_zuinteger_cmd | |
284 | instead of add_setshow_zinteger_cmd. | |
285 | * frame.c (frame_debug): Add 'unsigned'. | |
286 | (_intialize_frame): Call add_setshow_zuinteger_cmd instead of | |
287 | add_setshow_zinteger_cmd. | |
288 | * frame.h: Update the declaration of 'frame_debug'. | |
289 | * gdbtypes.c (overload_debug): Add 'unsigned'. | |
290 | (_initialize_gdbtypes): Call add_setshow_zuinteger_cmd instead of | |
291 | add_setshow_zinteger_cmd. | |
292 | * inferior.h: Update declaration of 'debug_infrun'. | |
293 | * infrun.c (debug_infrun): Add 'unsigned'. | |
294 | (_initialize_infrun): Call add_setshow_zuinteger_cmd instead of | |
295 | add_setshow_zinteger_cmd. | |
296 | * jit.c (jit_debug): Add 'unsigned'. | |
297 | (_initialize_jit): Call add_setshow_zuinteger_cmd instead of | |
298 | add_setshow_zinteger_cmd. | |
299 | * linux-nat.c (debug_linux_nat): Add 'unsigned'. | |
300 | (_initialize_linux_nat): Call add_setshow_zuinteger_cmd | |
301 | instead of add_setshow_zinteger_cmd. | |
302 | * linux-thread-db.c (libthread_db_debug): Add 'unsigned'. | |
303 | (_initialize_thread_db): Call add_setshow_zuinteger_cmd instead of | |
304 | add_setshow_zinteger_cmd. | |
305 | * machoread.c (mach_o_debug_level): Add 'unsigned'. | |
306 | (_initialize_machoread): Call add_setshow_zuinteger_cmd | |
307 | instead of add_setshow_zinteger_cmd. | |
308 | * mi/mi-cmd-var.c: Update the declaration of 'varobjdebug'. | |
309 | * microblaze-tdep.c (microblaze_debug_flag): Add 'unsigned'. | |
310 | (_initialize_microblaze_tdep): Call add_setshow_zuinteger_cmd | |
311 | intead of add_setshow_zinteger_cmd. | |
312 | * mips-tdep.c (mips_debug): Add 'unsigned'. | |
313 | (_initialize_mips_tdep): Call add_setshow_zuinteger_cmd | |
314 | instead of add_setshow_zinteger_cmd. | |
315 | * monitor.c (monitor_debug): Add 'unsigned'. | |
316 | (_initialize_remote_monitors): Call add_setshow_zuinteger_cmd instead of | |
317 | add_setshow_zinteger_cmd. | |
318 | * observer.c (observer_debug): Add 'unsigned'. | |
319 | (_initialize_observer): Call add_setshow_zuinteger_cmd instead of | |
320 | add_setshow_zinteger_cmd. | |
321 | * parse.c (expressiondebug): Add 'unsigned'. | |
322 | (_initialize_parse): Call add_setshow_zuinteger_cmd instead of | |
323 | add_setshow_zinteger_cmd. | |
324 | * record.c (record_debug): Add 'unsigned'. | |
325 | (_initialize_record): Call add_setshow_zuinteger_cmd instead of | |
326 | add_setshow_zinteger_cmd. | |
327 | * record.h: Update the declaration of 'record_debug'. | |
328 | * stap-probe.c (stap_expression_debug): Add 'unsigned'. | |
329 | (_initialize_stap_probe): Call add_setshow_zuinteger_cmd instead of | |
330 | add_setshow_zinteger_cmd. | |
331 | * serial.c (global_serial_debug_p): Add 'unsigned'. | |
332 | (_initialize_serial): Call add_setshow_zuinteger_cmd instead of | |
333 | add_setshow_zinteger_cmd. | |
334 | * solib-dsbt.c (solib_dsbt_debug): Add 'unsigned'. | |
335 | (_initialize_dsbt_solib): Call add_setshow_zuinteger_cmd instead of | |
336 | add_setshow_zinteger_cmd. | |
337 | * solib-frv.c (solib_frv_debug): Add 'unsigned'. | |
338 | (_initialize_frv_solib): Call add_setshow_zuinteger_cmd instead of | |
339 | add_setshow_zinteger_cmd. | |
340 | * target.c (targetdebug): Add 'unsigned'. | |
341 | (initialize_targets): Call add_setshow_zuinteger_cmd instead of | |
342 | add_setshow_zinteger_cmd. | |
343 | * valops.c (overload_debug): Add 'unsigned'. | |
344 | * varobj.c (varobjdebug): Add 'unsigned'. | |
345 | (_initialize_varobj): Call add_setshow_zuinteger_cmd instead of | |
346 | add_setshow_zinteger_cmd. | |
347 | * xtensa-tdep.c (xtensa_debug_level): Add 'unsigned'. | |
348 | (_initialize_xtensa_tdep): Call add_setshow_zuinteger_cmd | |
349 | instead of add_setshow_zinteger_cmd. | |
350 | ||
351 | * arch-utils.h: Remove the declaration of 'gdbarch_debug'. | |
352 | * gdbarch.sh (gdbarch_debug): Add 'unsigned'. | |
353 | (extern void _initialize_gdbarch): Call add_setshow_zuinteger_cmd | |
354 | instead of add_setshow_zinteger_cmd. | |
355 | * gdbarch.c, gdbarch.h: Re-generated. | |
356 | ||
95b07c96 YQ |
357 | 2012-08-02 Yao Qi <[email protected]> |
358 | ||
359 | * nto-tdep.c: Don't include cli/cli-decode.h and | |
360 | cli/cli-cmds.h. | |
361 | (_initialize_nto_tdep): Remove. | |
362 | * nto-tdep.h (struct nto_target_ops) <internal_debugging>: | |
363 | Remove field. | |
364 | Remove macro nto_internal_debugging. | |
365 | ||
57295b0b RH |
366 | 2012-08-01 Richard Henderson <[email protected]> |
367 | ||
368 | * configure.tgt (m32c-*-*) [gdb_target_obs]: Remove prologue-value.o. | |
369 | (mep-*-*) [gdb_target_obs]: Likewise. | |
370 | ||
f782ad9b AS |
371 | 2012-07-31 Andreas Schwab <[email protected]> |
372 | ||
373 | * ppc-linux-tdep.c (ppc_linux_init_abi): Register | |
374 | linux_get_siginfo_type. | |
375 | ||
a14dd77e JK |
376 | 2012-07-31 Jan Kratochvil <[email protected]> |
377 | ||
378 | * infcall.c (call_function_by_hand): Move BP_ADDR comment to | |
379 | AT_ENTRY_POINT. | |
380 | (call_function_by_hand) <ON_STACK>: Call write_memory with | |
381 | gdbarch_breakpoint_from_pc, if possible. | |
382 | (call_function_by_hand) <AT_ENTRY_POINT>: The BP_ADDR comment is moved | |
383 | here. | |
384 | ||
1467929f YQ |
385 | 2012-07-31 Yao Qi <[email protected]> |
386 | ||
387 | * tracepoint.c: Add 'static' for some variables. | |
388 | ||
70976b65 YQ |
389 | 2012-07-31 Yao Qi <[email protected]> |
390 | ||
391 | * go32-nat.c: Declare _initialize_go32_nat. | |
392 | * ser-go32.c: Declare _initialize_ser_dos. | |
393 | * top.c (do_chdir_cleanup): Add 'static'. | |
394 | ||
eff9c3e6 KS |
395 | 2012-07-30 Keith Seitz <[email protected]> |
396 | ||
397 | * linespec.c (linespec_lex_number): A number followed | |
398 | by quotes is a valid number, too. | |
399 | ||
728400d7 TT |
400 | 2012-07-30 Tom Tromey <[email protected]> |
401 | ||
402 | * remote-sim.c (gdb_os_poll_quit): Don't check immediate_quit. | |
403 | ||
fcf303ab UW |
404 | 2012-07-30 Ulrich Weigand <[email protected]> |
405 | ||
406 | * arm-linux-nat.c (arm_linux_hw_breakpoint_initialize): Do not | |
407 | attempt to 4-byte-align HW breakpoint addresses for Thumb. | |
408 | ||
4e969b4f AB |
409 | 2012-07-30 Andrew Burgess <[email protected]> |
410 | ||
411 | * varobj.c (varobj_invalidate_iter): All varobj must be marked as | |
412 | invalid or reevaluated to prevent prevent references to possibly | |
413 | delete'd type objects being left in the varobj. | |
414 | ||
c4bfde41 JK |
415 | 2012-07-27 Tom Tromey <[email protected]> |
416 | Jan Kratochvil <[email protected]> | |
417 | ||
418 | * copying.awk: Print buffer-read-only and vi ro markers. | |
419 | * copying.c: Rebuild. | |
420 | * gdbarch.sh (copyright): Print buffer-read-only and vi ro markers. | |
421 | * gdbarch.c, gdbarch.h: Rebuild. | |
422 | * target-descriptions.c (maint_print_c_tdesc_cmd): Print | |
423 | buffer-read-only and vi ro markers. | |
424 | * features/arm-with-iwmmxt.c: Rebuild. | |
425 | * features/arm-with-m-fpa-layout.c: Rebuild. | |
426 | * features/arm-with-m-vfp-d16.c: Rebuild. | |
427 | * features/arm-with-m.c: Rebuild. | |
428 | * features/arm-with-neon.c: Rebuild. | |
429 | * features/arm-with-vfpv2.c: Rebuild. | |
430 | * features/arm-with-vfpv3.c: Rebuild. | |
431 | * features/i386/amd64-avx-linux.c: Rebuild. | |
432 | * features/i386/amd64-avx.c: Rebuild. | |
433 | * features/i386/amd64-linux.c: Rebuild. | |
434 | * features/i386/amd64.c: Rebuild. | |
435 | * features/i386/i386-avx-linux.c: Rebuild. | |
436 | * features/i386/i386-avx.c: Rebuild. | |
437 | * features/i386/i386-linux.c: Rebuild. | |
438 | * features/i386/i386-mmx-linux.c: Rebuild. | |
439 | * features/i386/i386-mmx.c: Rebuild. | |
440 | * features/i386/i386.c: Rebuild. | |
441 | * features/i386/x32-avx-linux.c: Rebuild. | |
442 | * features/i386/x32-avx.c: Rebuild. | |
443 | * features/i386/x32-linux.c: Rebuild. | |
444 | * features/i386/x32.c: Rebuild. | |
445 | * features/mips-dsp-linux.c: Rebuild. | |
446 | * features/mips-linux.c: Rebuild. | |
447 | * features/mips64-dsp-linux.c: Rebuild. | |
448 | * features/mips64-linux.c: Rebuild. | |
449 | * features/rs6000/powerpc-32.c: Rebuild. | |
450 | * features/rs6000/powerpc-32l.c: Rebuild. | |
451 | * features/rs6000/powerpc-403.c: Rebuild. | |
452 | * features/rs6000/powerpc-403gc.c: Rebuild. | |
453 | * features/rs6000/powerpc-405.c: Rebuild. | |
454 | * features/rs6000/powerpc-505.c: Rebuild. | |
455 | * features/rs6000/powerpc-601.c: Rebuild. | |
456 | * features/rs6000/powerpc-602.c: Rebuild. | |
457 | * features/rs6000/powerpc-603.c: Rebuild. | |
458 | * features/rs6000/powerpc-604.c: Rebuild. | |
459 | * features/rs6000/powerpc-64.c: Rebuild. | |
460 | * features/rs6000/powerpc-64l.c: Rebuild. | |
461 | * features/rs6000/powerpc-7400.c: Rebuild. | |
462 | * features/rs6000/powerpc-750.c: Rebuild. | |
463 | * features/rs6000/powerpc-860.c: Rebuild. | |
464 | * features/rs6000/powerpc-altivec32.c: Rebuild. | |
465 | * features/rs6000/powerpc-altivec32l.c: Rebuild. | |
466 | * features/rs6000/powerpc-altivec64.c: Rebuild. | |
467 | * features/rs6000/powerpc-altivec64l.c: Rebuild. | |
468 | * features/rs6000/powerpc-cell32l.c: Rebuild. | |
469 | * features/rs6000/powerpc-cell64l.c: Rebuild. | |
470 | * features/rs6000/powerpc-e500.c: Rebuild. | |
471 | * features/rs6000/powerpc-e500l.c: Rebuild. | |
472 | * features/rs6000/powerpc-isa205-32l.c: Rebuild. | |
473 | * features/rs6000/powerpc-isa205-64l.c: Rebuild. | |
474 | * features/rs6000/powerpc-isa205-altivec32l.c: Rebuild. | |
475 | * features/rs6000/powerpc-isa205-altivec64l.c: Rebuild. | |
476 | * features/rs6000/powerpc-isa205-vsx32l.c: Rebuild. | |
477 | * features/rs6000/powerpc-isa205-vsx64l.c: Rebuild. | |
478 | * features/rs6000/powerpc-vsx32.c: Rebuild. | |
479 | * features/rs6000/powerpc-vsx32l.c: Rebuild. | |
480 | * features/rs6000/powerpc-vsx64.c: Rebuild. | |
481 | * features/rs6000/powerpc-vsx64l.c: Rebuild. | |
482 | * features/rs6000/rs6000.c: Rebuild. | |
483 | * features/s390-linux32.c: Rebuild. | |
484 | * features/s390-linux32v1.c: Rebuild. | |
485 | * features/s390-linux32v2.c: Rebuild. | |
486 | * features/s390-linux64.c: Rebuild. | |
487 | * features/s390-linux64v1.c: Rebuild. | |
488 | * features/s390-linux64v2.c: Rebuild. | |
489 | * features/s390x-linux64.c: Rebuild. | |
490 | * features/s390x-linux64v1.c: Rebuild. | |
491 | * features/s390x-linux64v2.c: Rebuild. | |
492 | * features/tic6x-c62x-linux.c: Rebuild. | |
493 | * features/tic6x-c62x.c: Rebuild. | |
494 | * features/tic6x-c64x-linux.c: Rebuild. | |
495 | * features/tic6x-c64x.c: Rebuild. | |
496 | * features/tic6x-c64xp-linux.c: Rebuild. | |
497 | * features/tic6x-c64xp.c: Rebuild. | |
498 | ||
826f0041 TT |
499 | 2012-07-27 Tom Tromey <[email protected]> |
500 | ||
501 | * c-exp.y (classify_name): Avoid assignment in condition. | |
502 | ||
84552b16 PA |
503 | 2012-07-27 Roland Schwingel <[email protected]> |
504 | ||
505 | * amd64-windows-tdep.c: Include "frame.h". | |
506 | (amd64_windows_skip_trampoline_code): New function. | |
507 | (amd64_windows_init_abi): Add trampoline registration. | |
508 | ||
a8a64aa8 YQ |
509 | 2012-07-27 Yao Qi <[email protected]> |
510 | ||
511 | * tracepoint.c (cur_traceframe_number): Remove. | |
512 | (set_tfile_traceframe): Remove. | |
513 | (tfile_trace_find, tfile_fetch_registers): Update callers. | |
514 | (tfile_xfer_partial, tfile_get_trace_state_variable_value): Likewise. | |
515 | (tfile_open, tfile_trace_find): Likewise. | |
516 | ||
d99067cb YQ |
517 | 2012-07-27 Yao Qi <[email protected]> |
518 | ||
519 | * thread.c (switch_to_thread): Don't call registers_changed. | |
520 | ||
f2e8016f TT |
521 | 2012-07-26 Tom Tromey <[email protected]> |
522 | ||
f782ad9b AS |
523 | * Makefile.in (SFILES): Remove objc-exp.y. |
524 | (YYFILES): Remove objc-exp.c. | |
525 | (YYOBJ): Remove objc-exp.o. | |
526 | (local-maintainer-clean): Don't mention objc-exp.c. | |
527 | * c-exp.y: Include objc-lang.h. | |
528 | (%union) <class>: New field. | |
529 | (NSSTRING, SELECTOR, CLASSNAME, OBJC_LBRAC): New tokens. | |
530 | (exp): Clone subscript production for OBJC_LBRAC. Add various | |
531 | Objective C productions. | |
532 | (msglist, msgarglist, msgarg): New productions. | |
533 | (array_mod, func_mod, operator): Clone productions for | |
534 | OBJC_LBRAC. | |
535 | (parse_string_or_char): Handle '@' strings. | |
536 | (lex_one_token): Return OBJC_LBRAC. Recognize @selector. | |
537 | (classify_name): Check la_name_of_this. Recognize ObjC class | |
538 | names. | |
539 | * objc-exp.y: Remove. | |
540 | * objc-lang.c (objc_language_defn): Use c_parse, c_error. | |
541 | * objc-lang.h (objc_parse, objc_error): Don't declare. | |
f2e8016f | 542 | |
f66713d2 JK |
543 | 2012-07-26 Markus Metzger <[email protected]> |
544 | ||
545 | * python/py-inferior.c (infpy_threads): Call update_thread_list (). | |
546 | ||
7cfe01b4 JK |
547 | 2012-07-26 Jan Kratochvil <[email protected]> |
548 | ||
549 | * auto-load.c (auto_load_info_scripts): Remove immediate_quit increment | |
550 | and decrement. | |
551 | ||
5ba19b4c TT |
552 | 2012-07-26 Tom Tromey <[email protected]> |
553 | ||
554 | * copying.c: Rebuild. | |
555 | * copying.awk: Don't use immediate_quit. Use 'no_set_class', not | |
556 | 'no_class'. | |
557 | ||
27618ce4 TT |
558 | 2012-07-26 Tom Tromey <[email protected]> |
559 | ||
560 | * symmisc.c (print_symbol_bcache_statistics): Use QUIT, not | |
561 | immediate_quit. | |
562 | (print_objfile_statistics): Likewise. | |
563 | (maintenance_print_symbols): Likewise. | |
564 | (maintenance_print_msymbols): Likewise. | |
565 | (maintenance_print_objfiles): Likewise. | |
566 | * psymtab.c (print_partial_symbols): Call QUIT. | |
567 | (maintenance_print_psymbols): Likewise. Don't modify | |
568 | immediate_quit. | |
569 | * copying.c (show_copying_command): Don't modify immediate_quit. | |
570 | (show_warranty_command): Likewise. | |
571 | * cli/cli-cmds.c (show_version): Don't modify immediate_quit. | |
572 | ||
dd3818c8 KS |
573 | 2012-07-26 Keith Seitz <[email protected]> |
574 | ||
575 | * linespec.c (linespec_lexer_lex_number): The input | |
576 | is also a valid number if the next character is a comma | |
577 | or colon. | |
578 | ||
23a80689 JB |
579 | 2012-07-26 Joel Brobecker <[email protected]> |
580 | ||
581 | * NEWS: Document new --enable-libmcheck/--disable-libmcheck | |
582 | configure options. | |
583 | ||
29f77997 TG |
584 | 2012-07-26 Tristan Gingold <[email protected]> |
585 | ||
586 | * machoread.c: Include gdb_bfd.h. | |
587 | ||
a55c1f32 TG |
588 | 2012-07-26 Tristan Gingold <[email protected]> |
589 | ||
590 | * dwarf2loc.c (locexpr_describe_location_piece): Use uint64_t for | |
591 | offset. | |
592 | ||
56eb65bd SP |
593 | 2012-07-26 Siddhesh Poyarekar <[email protected]> |
594 | ||
595 | * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Expand parameter | |
596 | SIZE to size_t. | |
597 | (dwarf2_evaluate_loc_desc): Likewise. | |
598 | (dwarf2_loc_desc_needs_frame): Likewise. | |
599 | (locexpr_describe_location_1): Likewise. | |
600 | * dwarf2loc.h (struct dwarf2_locexpr_baton): Make SIZE as | |
601 | size_t. | |
602 | (struct dwarf2_loclist_baton): Likewise. | |
603 | * dwarf2read.c (struct dwarf_block): Likewise. | |
604 | (dump_die_shallow): Use pulongest to print dwarf_block.size. | |
605 | (decode_locdesc): Expand SIZE and I to size_t. | |
606 | ||
aec8845c JK |
607 | 2012-07-25 Jan Kratochvil <[email protected]> |
608 | ||
609 | * contrib/cc-with-tweaks.sh: Put into comment path gdb/contrib/. | |
610 | ||
33d7655b JB |
611 | 2012-07-25 Joel Brobecker <[email protected]> |
612 | ||
613 | * doublest.c (convert_doublest_to_floatformat): If the exponent | |
614 | is too small, treat the value as zero. If the exponent is too | |
615 | large, treat the value as infinity. | |
616 | ||
a22d44ff JB |
617 | 2012-07-25 Joel Brobecker <[email protected]> |
618 | ||
619 | * configure.ac: Add --enable-lmcheck configure option. | |
620 | * configure: Regenerate. | |
621 | ||
d6b28940 TT |
622 | 2012-07-25 Tom Tromey <[email protected]> |
623 | ||
f782ad9b AS |
624 | * NEWS: Mention maint info bfds. |
625 | * gdb_bfd.c (all_bfds): New global. | |
626 | (gdb_bfd_ref, gdb_bfd_unref): Update all_bfds. | |
627 | (print_one_bfd, maintenance_info_bfds, _initialize_gdb_bfd): | |
628 | New functions. | |
d6b28940 | 629 | |
6e73ba20 RC |
630 | 2012-07-25 Ralf Corsépius <[email protected]> |
631 | ||
632 | * configure.tgt: Add v850*-*-rtems*. | |
633 | ||
d560eebd TT |
634 | 2012-07-25 Tom Tromey <[email protected]> |
635 | ||
636 | * macrotab.c (macro_bcache_str): Remove cast. | |
637 | ||
d7cbec71 HZ |
638 | 2012-07-25 Hui Zhu <[email protected]> |
639 | ||
640 | * linespec.c (linespec_lexer_lex_number): Update comments, | |
641 | change the return and add check to make sure the input is | |
642 | the decimal numbers. | |
643 | (linespec_lexer_lex_one): If linespec_lexer_lex_number return | |
644 | false, call linespec_lexer_lex_string. | |
645 | ||
882f447f TT |
646 | 2012-07-24 Tom Tromey <[email protected]> |
647 | ||
648 | * symfile.c (symbol_file_add): Don't open BFD twice. | |
649 | ||
53ab4066 | 650 | 2012-07-24 Marc Khouzam <[email protected]> |
e12c7713 MK |
651 | |
652 | * breakpoint.c (create_breakpoint): Store condition for pending | |
653 | breakpoints. | |
654 | ||
108fb0f7 AS |
655 | 2012-07-24 Andreas Schwab <[email protected]> |
656 | ||
657 | * m68k-tdep.c (m68k_reg_struct_return_p): Accept complex types. | |
658 | (m68k_return_value): Handle complex types like structures. | |
659 | (m68k_svr4_return_value): Likewise. | |
660 | ||
1634dcbe JK |
661 | 2012-07-24 Marcus Shawcroft <[email protected]> |
662 | ||
663 | * gdb_bfd.c (zlib_decompress_section) <!HAVE_ZLIB_H>: Adjust | |
664 | parameters to bfd_get_section_name. | |
665 | ||
e2d12c21 YQ |
666 | 2012-07-24 Yao Qi <[email protected]> |
667 | ||
668 | * cli/cli-setshow.c: Handle case 'var_uinteger' | |
669 | and 'var_zuninteger' together. Handle case 'var_integer' and | |
670 | 'var_zinteger' together. | |
671 | ||
64b92e45 KS |
672 | 2012-07-23 Keith Seitz <[email protected]> |
673 | ||
674 | * linespec.c (convert_linespec_to_sal): Don't add | |
675 | any symbols to the result vector if symbol_to_sal | |
676 | returns zero. | |
677 | ||
0f5f4ffe KS |
678 | 2012-07-23 Keith Seitz <[email protected]> |
679 | ||
680 | * linespec.c (decode_objc): Record the function name | |
681 | in the linespec. | |
682 | ||
da1cc82f TT |
683 | 2012-07-23 Tom Tromey <[email protected]> |
684 | ||
685 | * rs6000-nat.c (add_vmap): Rewrite archive loop. Fix reference | |
686 | counting. | |
687 | * exec.c (exec_close_1): Unconditionally release vmap's BFD. | |
688 | (map_vmap): Acquire a reference to the BFD. | |
689 | ||
6c18f3e0 SP |
690 | 2012-07-23 Siddhesh Poyarekar <[email protected]> |
691 | ||
692 | * p-valprint.c (pascal_object_print_value): Replace potentially | |
693 | unsafe alloca with xmalloc/xfree. | |
694 | * valops.c (search_struct_method): Likewise. | |
695 | ||
695c3173 TT |
696 | 2012-07-23 Tom Tromey <[email protected]> |
697 | ||
698 | * solib-svr4.c (enable_break): Update. | |
699 | * bfd-target.h (target_bfd_reopen): Update documentation. | |
700 | ||
08d2cd74 TT |
701 | 2012-07-23 Tom Tromey <[email protected]> |
702 | ||
703 | * symfile.c (separate_debug_file_exists): Update. | |
704 | (gdb_bfd_open_maybe_remote): Rename from bfd_open_maybe_remote. | |
705 | (reread_symbols): Update. | |
706 | * elfread.c (build_id_verify): Update. | |
707 | * symfile.h (gdb_bfd_open_maybe_remote): Rename from | |
708 | bfd_open_maybe_remote. | |
709 | ||
596f7d67 TT |
710 | 2012-07-23 Tom Tromey <[email protected]> |
711 | ||
712 | * gdb_bfd.c (gdb_bfd_ref, gdb_bfd_unref): Fix comment. | |
713 | ||
8ac244b4 TT |
714 | 2012-07-23 Tom Tromey <[email protected]> |
715 | ||
716 | * coffread.c (coff_symfile_read): Make a cleanup for 'debugfile' | |
717 | and 'abfd'. | |
718 | * elfread.c (elf_symfile_read): Make a cleanup for 'debugfile' | |
719 | and 'abfd'. | |
720 | * jit.c (jit_bfd_try_read_symtab): Make a cleanup for 'nbfd'. | |
721 | * machoread.c (macho_add_oso_symfile): Make a cleanup for | |
722 | 'abfd'. | |
723 | (macho_symfile_read): Make a cleanup for 'dsym_bfd'. | |
724 | * objfiles.c (allocate_objfile): Acquire a new reference. | |
725 | * rs6000-nat.c (add_vmap): Don't acquire a BFD reference. | |
726 | * solib.c (solib_read_symbols): Don't acquire a BFD reference. | |
727 | * spu-linux-nat.c (spu_symbol_file_add_from_memory): Make | |
728 | a cleanup for 'nbfd'. | |
729 | * symfile-mem.c (symbol_file_add_from_memory): Make a cleanup | |
730 | for 'nbfd'. | |
731 | * symfile.c (symbol_file_add_with_addrs_or_offsets): Don't | |
732 | make a cleanup for 'abfd'. | |
733 | (symbol_file_add): Make a BFD cleanup. | |
734 | ||
64c31149 TT |
735 | 2012-07-23 Tom Tromey <[email protected]> |
736 | ||
737 | * cli/cli-dump.c (bfd_openr_with_cleanup): Use gdb_bfd_openr. | |
738 | (bfd_openw_with_cleanup): Use gdb_bfd_openw. | |
739 | * corelow.c (core_open): Use gdb_bfd_fopen. | |
740 | * dsrec.c (load_srec): Use gdb_bfd_openr. | |
741 | * exec.c (exec_file_attach): Use gdb_bfd_fopen. | |
742 | * gcore.c (gcore_memory_sections): Use gdb_bfd_openw. | |
743 | * gdb_bfd.c (gdb_bfd_fopen, gdb_bfd_openr, gdb_bfd_openw) | |
744 | (gdb_bfd_openr_iovec, gdb_bfd_openr_next_archived_file) | |
745 | (gdb_bfd_fdopenr): New functions. | |
746 | * gdb_bfd.h (gdb_bfd_fopen, gdb_bfd_openr, gdb_bfd_openw) | |
747 | (gdb_bfd_openr_iovec, gdb_bfd_openr_next_archived_file) | |
748 | (gdb_bfd_fdopenr): Declare. | |
749 | * jit.c (bfd_open_from_target_memory): Use gdb_bfd_openr_iovec. | |
750 | * m32-rom.c (m32r_load, m32r_upload_command): Use gdb_bfd_openr. | |
751 | * machoread.c (macho_symfile_read_all_oso): Use gdb_bfd_openr, | |
752 | gdb_bfd_openr_next_archived_file. | |
753 | (macho_check_dsym): Use gdb_bfd_openr. | |
754 | (macho_add_oso_symfile): Don't call gdb_bfd_stash_filename. | |
755 | * procfs.c (insert_dbx_link_bpt_in_file): Use gdb_bfd_fdopenr. | |
756 | * remote-m32r-sdi.c (m32r_load): Use gdb_bfd_openr. | |
757 | * remote-mips.c (mips_load_srec, pmon_load_fast): Use | |
758 | gdb_bfd_openr. | |
759 | * remote.c (remote_bfd_open): Use gdb_bfd_openr_iovec. | |
760 | * rs6000-nat.c (add_vmap): Use gdb_bfd_openr, gdb_bfd_fdopenr, | |
761 | gdb_bfd_openr_next_archived_file. | |
762 | * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init): | |
763 | Use gdb_bfd_openr. | |
764 | * solib-pa64.c (pa64_solib_create_inferior_hook): Use | |
765 | gdb_bfd_openr. | |
766 | * solib-spu.c (spu_bfd_fopen): Use gdb_bfd_openr_iovec. | |
767 | * solib.c (solib_bfd_fopen): Use gdb_bfd_fopen. | |
768 | * spu-linux-nat.c (spu_bfd_open): Use gdb_bfd_openr_iovec. | |
769 | * symfile.c (bfd_open_maybe_remote): Use gdb_bfd_openr. | |
770 | (symfile_bfd_open): Use gdb_bfd_fopen. | |
771 | (generic_load): Use gdb_bfd_openr. | |
772 | * windows-nat.c (windows_make_so): Use gdb_bfd_openr. | |
773 | ||
520b0001 TT |
774 | 2012-07-23 Tom Tromey <[email protected]> |
775 | ||
776 | * bfd-target.c (target_bfd_reopen): Update. | |
777 | * cli/cli-dump.c (bfd_openr_with_cleanup) | |
778 | (bfd_openw_with_cleanup): Update. | |
779 | * corelow.c (core_open): Update. | |
780 | * dsrec.c (load_srec): Update. | |
781 | * exec.c (exec_file_attach): Update. | |
782 | * gcore.c (create_gcore_bfd): Update. | |
783 | * gdb_bfd.c (gdb_bfd_ref): Return void. | |
784 | (gdb_bfd_open): Update. | |
785 | * gdb_bfd.h (gdb_bfd_ref): Return void. | |
786 | Update comments. | |
787 | * jit.c (jit_bfd_try_read_symtab): Update. | |
788 | * m32r-rom.c (m32r_load, m32r_upload_command): Update. | |
789 | * machoread.c (macho_symfile_read_all_oso): Update. | |
790 | (macho_check_dsym): Update. | |
791 | * procfs.c (insert_dbx_link_bpt_in_file): Update. | |
792 | * remote-m32r-sdi.c (m32r_load): Update. | |
793 | * remote-mips.c (mips_load_srec, pmon_load_fast): Update. | |
794 | * rs6000-nat.c (add_vmap): Update. | |
795 | * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init): | |
796 | Update. | |
797 | * solib-pa64.c (pa64_solib_create_inferior_hook): Update. | |
798 | * solib-spu.c (spu_bfd_open): Update. | |
799 | * solib.c (solib_bfd_fopen, solib_read_symbols): Update. | |
800 | * spu-linux-nat.c (spu_bfd_open): Update. | |
801 | * symfile.c (bfd_open_maybe_remote, symfile_bfd_open) | |
802 | (generic_load): Update. | |
803 | * windows-nat.c (windows_make_so): Update. | |
804 | ||
2322ff16 SP |
805 | 2012-07-22 Siddhesh Poyarekar <[email protected]> |
806 | ||
807 | * sh-tdep.c (sh_treat_as_flt_p): Remove unused variable LEN. | |
808 | ||
3def0b36 PA |
809 | 2012-07-20 Jeff Kenton <[email protected]> |
810 | ||
811 | * tilegx-linux-tdep.c (tilegx_linux_sigframe_init): Fix | |
812 | SIGTRAMP_FRAME unwinding. | |
813 | ||
e615022a DE |
814 | 2012-07-20 Doug Evans <[email protected]> |
815 | ||
816 | * NEWS: Document new options "set/show use-deprecated-index-sections", | |
817 | and delete reference to --use-deprecated-index-sections. | |
818 | * symfile.h (use_deprecated_index_sections): Delete. | |
819 | * dwarf2read.c (use_deprecated_index_sections): Make static. | |
820 | (read_index_from_section): Update wording of how to load | |
821 | deprecated index sections. | |
822 | (_initialize_dwarf2_read): New options | |
823 | "set/show use-deprecated-index-sections". | |
824 | * main.c (captured_main): Delete --use-deprecated-index-sections. | |
825 | ||
64776a0b PA |
826 | 2012-07-20 Pedro Alves <[email protected]> |
827 | ||
828 | PR threads/11692 | |
829 | PR gdb/12203 | |
830 | ||
831 | * infrun.c (handle_inferior_event) <new thread>: Don't special | |
832 | case minus_one_ptid. | |
833 | <TARGET_WAITKIND_SPURIOUS>: Ditto. | |
834 | * linux-thread-db.c (thread_get_info_callback): Don't return early | |
835 | if the thread is zombie. | |
836 | (thread_from_lwp): Change return type to void. Rewrite stale | |
837 | comment. | |
838 | (attach_thread): Don't return early if the thread is zombie, | |
839 | instead set its "dying" flag. | |
840 | (thread_db_wait): Don't return TARGET_WAITKIND_SPURIOUS anymore. | |
841 | (find_new_threads_callback): Don't return early if the thread is | |
842 | zombie. | |
843 | ||
09826ec5 PA |
844 | 2012-07-20 Pedro Alves <[email protected]> |
845 | ||
846 | * linux-nat.c (linux_nat_wait): Dump the passed in target options. | |
847 | * target.c (target_wait): Likewise. | |
848 | (str_comma_list_concat_elem, do_option, target_options_to_string): | |
849 | New functions. | |
850 | * target.h (target_options_to_string): Declare. | |
851 | ||
f7a35f02 TT |
852 | 2012-07-20 Jan Kratochvil <[email protected]> |
853 | Tom Tromey <[email protected]> | |
854 | ||
855 | * dwarf2read.c (dwarf_decode_macros) | |
856 | <DW_MACRO_GNU_define_indirect_alt, DW_MACRO_GNU_undef_indirect_alt, | |
857 | DW_MACRO_GNU_transparent_include_alt>: New cases. | |
858 | (dwarf_decode_macro_bytes) <DW_MACRO_GNU_define_indirect, | |
859 | DW_MACRO_GNU_undef_indirect>: Examine 'section_is_dwz'. | |
860 | ||
b81e1ee0 TT |
861 | 2012-07-20 Tom Tromey <[email protected]> |
862 | ||
863 | * dwarf2read.c (try_open_dwo_file): Don't call | |
864 | gdb_bfd_stash_filename. | |
865 | ||
99c1624c PA |
866 | 2012-07-20 Pedro Alves <[email protected]> |
867 | ||
868 | * i386-tdep.c (i386_record_modrm, i386_record_lea_modrm_addr) | |
869 | (i386_record_lea_modrm, i386_record_push, i386_record_floats) | |
870 | (i386_process_record): Tweak description comments. | |
871 | ||
4ffa4fc7 PA |
872 | 2012-07-20 Pedro Alves <[email protected]> |
873 | ||
874 | * i386-tdep.c (i386_record_modrm, i386_record_lea_modrm_addr) | |
875 | (i386_process_record): Use record_read_memory. | |
876 | * record.c (record_read_memory): New function. | |
877 | (record_arch_list_add_mem, record_exec_insn): Use | |
878 | record_read_memory. | |
879 | * record.h (record_read_memory): Declare. | |
880 | ||
c24343e2 YQ |
881 | 2012-07-20 Yao Qi <[email protected]> |
882 | ||
883 | * cli/cli-setshow.c (do_setshow_command): Don't check pointer is | |
884 | NULL for xfree. | |
885 | ||
90f47860 PA |
886 | 2012-07-19 Pedro Alves <[email protected]> |
887 | ||
888 | * record.c (record_resume): Ask the target beneath to report all | |
889 | signals. | |
890 | ||
01093045 DE |
891 | 2012-07-19 Doug Evans <[email protected]> |
892 | ||
893 | * dwarf2read.c (dwarf2_ranges_read): Ignore ranges starting at zero if | |
894 | there's no section at address zero. | |
895 | (dwarf2_record_block_ranges): Ditto. | |
896 | ||
a7c3d162 YQ |
897 | 2012-07-19 Yao Qi <[email protected]> |
898 | ||
899 | * command.h, remote.c: Fix a typo in comment. | |
900 | ||
608b4967 TT |
901 | 2012-07-19 Tom Tromey <[email protected]> |
902 | ||
903 | PR exp/13206: | |
904 | * ax-gdb.c (gen_expr) <OP_TYPEOF, OP_DECLTYPE>: New cases. | |
905 | * breakpoint.c (watchpoint_exp_is_const) <OP_TYPEOF, | |
906 | OP_DECLTYPE>: New cases. | |
907 | * c-exp.y (TYPEOF, DECLTYPE): New tokens. | |
908 | (type_exp): Add new productions. | |
909 | (ident_tokens): Add __typeof__, typeof, __typeof, __decltype, | |
910 | and decltype. | |
911 | * eval.c (evaluate_subexp_standard) <OP_TYPEOF, OP_DECLTYPE>: | |
912 | New case. | |
913 | * expprint.c (dump_subexp_body_standard) <OP_TYPEOF, | |
914 | OP_DECLTYPE>: New case. | |
915 | * parse.c (operator_length_standard) <OP_TYPEOF, OP_DECLTYPE>: | |
916 | New case. | |
917 | * std-operator.def (OP_TYPEOF, OP_DECLTYPE): New constants. | |
918 | * varobj.c (varobj_create): Handle OP_TYPEOF, OP_DECLTYPE. | |
919 | ||
274b54d7 TT |
920 | 2012-07-19 Tom Tromey <[email protected]> |
921 | ||
922 | * c-exp.y (enum token_flags): New. | |
923 | (struct token) <cxx_only>: Remove. | |
924 | <flags>: New field. | |
925 | (tokentab3, tokentab2, ident_tokens): Update. | |
926 | (lex_one_token): Update. Handle FLAG_SHADOW. | |
927 | ||
9eaf6705 TT |
928 | 2012-07-19 Tom Tromey <[email protected]> |
929 | ||
930 | * ax-gdb.c (gen_expr): Handle UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE. | |
931 | * breakpoint.c (watchpoint_exp_is_const): Handle UNOP_CAST_TYPE, | |
932 | UNOP_REINTERPRET_CAST, UNOP_DYNAMIC_CAST. | |
933 | * c-exp.y (exp): Emit UNOP_MEMVAL_TYPE, UNOP_CAST_TYPE. Update | |
934 | for changes to UNOP_REINTERPRET_CAST, UNOP_DYNAMIC_CAST. Use | |
935 | type_exp production where appropriate. | |
936 | * eval.c (evaluate_subexp_standard) <UNOP_CAST_TYPE>: New case. | |
937 | <UNOP_DYNAMIC_CAST, UNOP_REINTERPRET_CAST>: Update. | |
938 | <UNOP_MEMVAL_TYPE>: New case. | |
939 | (evaluate_subexp_for_address) <UNOP_MEMVAL_TYPE>: New case. | |
940 | (evaluate_subexp_for_sizeof) <UNOP_MEMVAL_TYPE>: New case. | |
941 | * expprint.c (print_subexp_standard) <UNOP_CAST_TYPE>: New case. | |
942 | <UNOP_MEMVAL_TYPE>: New case. | |
943 | (dump_subexp_body_standard) <UNOP_DYNAMIC_CAST, | |
944 | UNOP_REINTERPRET_CAST>: Update. | |
945 | <UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE>: New cases. | |
946 | * parse.c (operator_length_standard) <UNOP_DYNAMIC_CAST, | |
947 | UNOP_REINTERPRET_CAST>: Update. | |
948 | <UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE>: New cases. | |
949 | * stack.c (return_command): Also check for UNOP_CAST_TYPE. | |
950 | * std-operator.def (UNOP_CAST_TYPE, UNOP_MEMVAL_TYPE): New | |
951 | constants. | |
952 | ||
6ace3df1 YQ |
953 | 2012-07-19 Yao Qi <[email protected]> |
954 | Jan Kratochvil <[email protected]> | |
955 | ||
956 | * cli/cli-setshow.c (do_setshow_command): Handle case 'var_filename' | |
957 | and case 'var_optional_filename' together. | |
958 | * infcmd.c (_initialize_infcmd): Call add_setshow_string_noescape_cmd | |
959 | instead of add_setshow_optional_filename_cmd for setshow command | |
960 | 'args'. Set completer for 'set args'. | |
961 | ||
48faced0 DE |
962 | 2012-07-18 Doug Evans <[email protected]> |
963 | ||
964 | * common/gdb_vecs.h: Moved here from ./gdb_vecs.h. | |
965 | * common/gdb_vecs.c: New file, contents from utils.c. | |
966 | * common/host-defs.h: New file, contents from defs.h. | |
967 | * utils.h: New file, contents from defs.h. | |
968 | * defs.h: Move all declarations of objects defined in utils.c | |
969 | to utils.h (except QUIT() and related). | |
970 | #include "utils.h", "host-defs.h". | |
971 | * probe.h (probe_p): Move here from gdb_vecs.h. | |
972 | * symfile.c: #include "probe.h" instead of "gdb_vecs.h". | |
973 | * utils.c (free_char_ptr_vec): Moved to common/gdb_vecs.c. | |
974 | (dirnames_to_char_ptr_vec_append, dirnames_to_char_ptr_vec): Ditto. | |
975 | * Makefile.in (SFILES): Add common/gdb_vecs.c. | |
976 | (HFILES_NO_SRCDIR): Add common/gdb_vecs.h, common/host-defs.h, utils.h. | |
977 | (COMMON_OBS): Add gdb_vecs.o. | |
978 | (gdb_vecs.o): New rule. | |
979 | ||
66f1999b KS |
980 | 2012-07-18 Keith Seitz <[email protected]> |
981 | ||
982 | * linespec.c (add_sal_to_sals): Add LITERAL_CANONICAL | |
983 | parameter. If non-zero, use SYMNAME as the canonical name | |
984 | for the SaL. | |
985 | Update all callers. | |
986 | (convert_linespec_to_sals): Use add_sal_to_sals for | |
987 | expressions, too. | |
988 | (decode_line_full): No need to "fill in missing canonical names" | |
989 | anymore. Simply make cleanups for the allocated names. | |
990 | ||
5d94e27b KS |
991 | 2012-07-18 Keith Seitz <[email protected]> |
992 | ||
993 | * linespec.c (struct linespec): Constify expression, | |
994 | source_filename, function_name, and label_name. | |
995 | (symbol_not_found_error): Make all parameters const. | |
996 | (linespec_parser_delete): No need to check for NULL | |
997 | when using xfree. Cast const char * to char * for xfree. | |
998 | ||
af4908ba KS |
999 | 2012-07-18 Keith Seitz <[email protected]> |
1000 | ||
1001 | * breakpoint.c (invalid_thread_id_error): New function. | |
1002 | (find_condition_and_thread): Use invalid_thread_id_error. | |
1003 | (watch_command_1): Likewise. | |
1004 | ||
853254db TT |
1005 | 2012-07-18 Tom Tromey <[email protected]> |
1006 | ||
1007 | * cc-with-index.sh, cc-with-dwz.sh: Remove. | |
1008 | * contrib/cc-with-tweaks.sh: New file. | |
1009 | ||
2ec9a5e0 TT |
1010 | 2012-07-18 Tom Tromey <[email protected]> |
1011 | ||
1012 | * dwarf2read.c (struct dwz_file) <gdb_index>: New field. | |
1013 | (locate_dwz_sections): Recognize .gdb_index. | |
1014 | (create_cus_from_index_list): New function. | |
1015 | (create_cus_from_index): Use it. Handle .dwz data. | |
1016 | (read_index_from_section): New function, extracted from | |
1017 | dwarf2_read_index. | |
1018 | (dwarf2_read_index): Use it. Read .gdb_index from dwz file, | |
1019 | if needed. | |
1020 | ||
36586728 TT |
1021 | 2012-07-18 Tom Tromey <[email protected]> |
1022 | ||
1023 | * dwarf2read.c (struct dwarf2_per_objfile) <dwz_file>: New field. | |
1024 | (struct dwarf2_per_cu_data) <length>: No longer bitfield. | |
1025 | <is_dwz>: New field. | |
1026 | (struct dwz_file): New. | |
1027 | (struct partial_die_info) <is_dwz, spec_is_dwz>: New fields. | |
1028 | (locate_dwz_sections, dwarf2_get_dwz_file) | |
1029 | (get_abbrev_section_for_cu): New functions. | |
1030 | (error_check_comp_unit_head, read_and_check_comp_unit_head) | |
1031 | (read_and_check_type_unit_head): Add abbrev_section argument. | |
1032 | (create_debug_types_hash_table): Update. | |
1033 | (init_cutu_and_read_dies): Use proper abbrev section. | |
1034 | (init_cutu_and_read_dies_no_follow): Likewise. | |
1035 | (set_partial_user): Do nothing if PST==NULL. | |
1036 | (read_comp_units_from_section): New function. | |
1037 | (create_all_comp_units): Use it. | |
1038 | (scan_partial_symbols, partial_die_parent_scope): Update. | |
1039 | (skip_one_die): Handle DW_FORM_GNU_ref_alt, DW_FORM_GNU_strp_alt. | |
1040 | (process_imported_unit_die, read_partial_die): Handle .dwz files. | |
1041 | (find_partial_die): Add offset_in_dwz argument. Update. | |
1042 | (guess_partial_die_structure_name, fixup_partial_die): Update. | |
1043 | (read_attribute_value): Handle DW_FORM_GNU_ref_alt, | |
1044 | DW_FORM_GNU_strp_alt. | |
1045 | (read_indirect_string_from_dwz): New function. | |
1046 | (dwarf2_const_value_attr): Handle DW_FORM_GNU_strp_alt. | |
1047 | (dump_die_shallow): Handle DW_FORM_GNU_ref_alt, DW_FORM_GNU_strp_alt. | |
1048 | (is_ref_attr): Handle DW_FORM_GNU_ref_alt. | |
1049 | (follow_die_offset): Add offset_in_dwz argument. | |
1050 | (follow_die_ref, dwarf2_fetch_die_location_block): Update. | |
1051 | (skip_form_bytes): Handle DW_FORM_GNU_strp_alt. | |
1052 | (dwarf_decode_macro_bytes): Add section_is_dwz argument. | |
1053 | Handle new macro forms. | |
1054 | (dwarf_decode_macros): Update. | |
1055 | (dwarf2_find_containing_comp_unit): Add offset_in_dwz argument. | |
1056 | (dwarf2_per_objfile_free): Unref dwz_bfd, if it exists | |
1057 | (lookup_die_type): Handle DW_FORM_GNU_ref_alt. | |
1058 | (create_debug_types_hash_table): Use correct abbrev section. | |
1059 | (get_debug_line_section): New function. | |
1060 | (dwarf_decode_line_header, dwarf_decode_lines_1): Use it. | |
1061 | (process_full_comp_unit): Pass 'required' argument to | |
1062 | end_symtab_get_static_block. | |
1063 | * buildsym.h (end_symtab_get_static_block): Update. | |
1064 | * buildsym.c (end_symtab_get_static_block): Add 'required' | |
1065 | argument. | |
1066 | (end_symtab, end_expandable_symtab): Update. | |
1067 | ||
4bf44c1c TT |
1068 | 2012-07-18 Tom Tromey <[email protected]> |
1069 | ||
1070 | * dwarf2read.c: Don't include zlib.h or sys/mman.h. | |
1071 | (pagesize): Remove. | |
1072 | (struct dwarf2_section_info) <map_addr, map_len>: Remove. | |
1073 | (zlib_decompress_section): Remove. | |
1074 | (dwarf2_read_section): Use gdb_bfd_map_section. | |
1075 | (munmap_section_buffer): Remove. | |
1076 | (free_dwo_file, dwarf2_per_objfile_free): Don't use | |
1077 | munmap_section_buffer. | |
1078 | * gdb_bfd.c: Include zlib.h, sys/mman.h. | |
1079 | (struct gdb_bfd_section_data): New. | |
1080 | (free_one_bfd_section): New function. | |
1081 | (gdb_bfd_close_or_warn): Use free_one_bfd_section. | |
1082 | (get_section_descriptor, zlib_decompress_section) | |
1083 | (gdb_bfd_map_section): New functions. | |
1084 | * gdb_bfd.h (gdb_bfd_map_section): Declare. | |
1085 | ||
bb397797 TT |
1086 | 2012-07-18 Tom Tromey <[email protected]> |
1087 | ||
1088 | * dwarf2read.c (try_open_dwo_file): use gdb_bfd_open. | |
1089 | ||
6ec53d05 TT |
1090 | 2012-07-18 Tom Tromey <[email protected]> |
1091 | ||
1092 | * gdb_bfd.c (struct gdb_bfd_data): New. | |
1093 | (gdb_bfd_cache): New global. | |
1094 | (struct gdb_bfd_cache_search): New. | |
1095 | (hash_bfd, eq_bfd, gdb_bfd_open): New functions. | |
1096 | (gdb_bfd_ref, gdb_bfd_unref): Use gdb_bfd_data. | |
1097 | * gdb_bfd.h (gdb_bfd_open): Declare. | |
1098 | ||
f9a062ff TT |
1099 | 2012-07-18 Tom Tromey <[email protected]> |
1100 | ||
1101 | * utils.c (make_cleanup_bfd_unref): Rename from | |
1102 | make_cleanup_bfd_close. | |
1103 | * defs.h (make_cleanup_bfd_unref): Rename from | |
1104 | make_cleanup_bfd_close. | |
1105 | * cli/cli-dump.c (bfd_openr_with_cleanup): Update. | |
1106 | (bfd_openw_with_cleanup): Update. | |
1107 | * corelow.c (core_open): Update. | |
1108 | * dsrec.c (load_srec): Update. | |
1109 | * m32r-rom.c (m32r_load, m32r_upload_command): Update. | |
1110 | * remote-m32r-sdi.c (m32r_load): Update. | |
1111 | * remote-mips.c (mips_load_srec): Update. | |
1112 | (pmon_load_fast): Update. | |
1113 | * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init): | |
1114 | Update. | |
1115 | (darwin_bfd_open): Update. | |
1116 | * solib.c (solib_bfd_fopen): Update. | |
1117 | * symfile-mem.c (symbol_file_add_from_memory): Update. | |
1118 | * symfile.c (symbol_file_add_with_addrs_or_offsets): Update. | |
1119 | (symfile_bfd_open): Update. | |
1120 | (generic_load): Update. | |
1121 | ||
d6ad71ba TT |
1122 | 2012-07-18 Tom Tromey <[email protected]> |
1123 | ||
1124 | * remote-mips.c (mips_load_srec): Use make_cleanup_bfd_close. | |
1125 | (pmon_load_fast): Likewise. | |
1126 | * m32r-rom.c (m32r_load): Use make_cleanup_bfd_close. | |
1127 | (m32r_upload_command): Likewise. | |
1128 | * dsrec.c (load_srec): Use make_cleanup_bfd_close. | |
1129 | * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init): | |
1130 | Use make_cleanup_bfd_close. | |
1131 | ||
a4453b7e TT |
1132 | 2012-07-18 Tom Tromey <[email protected]> |
1133 | ||
1134 | * symfile.c (symfile_bfd_open): Don't copy name. Call | |
1135 | gdb_bfd_stash_filename. | |
1136 | (load_command): Open the new BFD before freeing the old. | |
1137 | (bfd_open_maybe_remote): Call gdb_bfd_stash_filename. | |
1138 | * symfile-mem.c (symbol_file_add_from_memory): Don't copy name. | |
1139 | Call gdb_bfd_stash_filename. | |
1140 | * spu-linux-nat.c (spu_bfd_open): Don't copy name. | |
1141 | * solib-spu.c (spu_bfd_fopen): Don't copy name. Call | |
1142 | gdb_bfd_stash_filename. | |
1143 | * solib-darwin.c (darwin_solib_get_all_image_info_addr_at_init): | |
1144 | Free found_pathname. | |
1145 | * rs6000-nat.c (add_vmap): Don't copy filename. Call | |
1146 | gdb_bfd_stash_filename. | |
1147 | * remote.c (remote_bfd_open): Call gdb_bfd_stash_filename. | |
1148 | * machoread.c (macho_add_oso_symfile): Call | |
1149 | gdb_bfd_stash_filename. | |
1150 | (macho_symfile_read_all_oso): Arrange to free archive_name. Call | |
1151 | gdb_bfd_stash_filename. | |
1152 | (macho_check_dsym): Don't copy filename. Call | |
1153 | gdb_bfd_stash_filename. | |
1154 | * jit.c (bfd_open_from_target_memory): Don't copy the filename. | |
1155 | * gdb_bfd.c (gdb_bfd_stash_filename): New function. | |
1156 | * gdb_bfd.h (gdb_bfd_stash_filename): Declare. | |
1157 | * gcore.c (create_gcore_bfd): Call gdb_bfd_stash_filename. | |
1158 | * exec.c (exec_close): Don't free the BFD's filename. | |
1159 | (exec_file_attach): Don't copy the filename. Call | |
1160 | gdb_bfd_stash_filename. | |
1161 | * corelow.c (core_close): Don't free the BFD's filename. | |
1162 | (core_open): Call gdb_bfd_stash_filename. | |
1163 | * corefile.c (reopen_exec_file): Remove #if 0 code. | |
1164 | * solib.c (solib_bfd_fopen): Call gdb_bfd_stash_filename. Free | |
1165 | pathname. | |
1166 | * dwarf2read.c (try_open_dwo_file): Call gdb_bfd_stash_filename. | |
1167 | ||
cbb099e8 TT |
1168 | 2012-07-18 Tom Tromey <[email protected]> |
1169 | ||
1170 | * dwarf2read.c (try_open_dwo_file): Use gdb_bfd_ref and | |
1171 | gdb_bfd_unref. | |
1172 | (free_dwo_file): Use gdb_bfd_unref. | |
1173 | * cli/cli-dump.c: Include gdb_bfd.h. | |
1174 | (bfd_openw_with_cleanup): Use gdb_bfd_ref. | |
1175 | (bfd_openr_with_cleanup): Likewise. | |
1176 | * windows-nat.c (windows_make_so): Use gdb_bfd_ref, | |
1177 | gdb_bfd_unref. | |
1178 | * utils.c: Include gdb_bfd.h. | |
1179 | (do_bfd_close_cleanup): Use gdb_bfd_unref. | |
1180 | * symfile.c: Include gdb_bfd.h. | |
1181 | (separate_debug_file_exists): Use gdb_bfd_unref. | |
1182 | (bfd_open_maybe_remote): Use gdb_bfd_ref. | |
1183 | (symfile_bfd_open): Use gdb_bfd_ref, gdb_bfd_unref. | |
1184 | (generic_load): Use gdb_bfd_ref. | |
1185 | (reread_symbols): Use gdb_bfd_unref. | |
1186 | * symfile-mem.c: Include gdb_bfd.h. | |
1187 | (symbol_file_add_from_memory): Use make_cleanup_bfd_close. | |
1188 | * spu-linux-nat.c (spu_bfd_open): Use gdb_bfd_ref, gdb_bfd_unref. | |
1189 | * solib.c: Include gdb_bfd.h. | |
1190 | (solib_bfd_fopen): Use gdb_bfd_ref. | |
1191 | (solib_bfd_open): Use gdb_bfd_unref. | |
1192 | (free_so_symbols): Use gdb_bfd_unref. | |
1193 | (reload_shared_libraries_1): Use gdb_bfd_unref. | |
1194 | * solib-spu.c: Include gdb_bfd.h. | |
1195 | (spu_bfd_fopen): Use gdb_bfd_ref, gdb_bfd_unref. | |
1196 | * solib-pa64.c (pa64_solib_create_inferior_hook): Use gdb_bfd_ref, | |
1197 | gdb_bfd_unref. | |
1198 | * solib-frv.c: Include gdb_bfd.h. | |
1199 | (enable_break2): Use gdb_bfd_unref. | |
1200 | * solib-dsbt.c: Include gdb_bfd.h. | |
1201 | (enable_break2): Use gdb_bfd_unref. | |
1202 | * solib-darwin.c: Include gdb_bfd.h. | |
1203 | (darwin_solib_get_all_image_info_addr_at_init): Use gdb_bfd_ref, | |
1204 | gdb_bfd_unref. | |
1205 | (darwin_bfd_open): Use gdb_bfd_unref. | |
1206 | * rs6000-nat.c (add_vmap): Use gdb_bfd_ref, gdb_bfd_unref. | |
1207 | * remote-mips.c: Include gdb_bfd.h. | |
1208 | (mips_load_srec): Use gdb_bfd_ref. | |
1209 | (pmon_load_fast): Use gdb_bfd_ref. | |
1210 | * remote-m32r-sdi.c: Include gdb_bfd.h. | |
1211 | (m32r_load): Use gdb_bfd_ref. | |
1212 | * record.c: Include gdb_bfd.h. | |
1213 | (record_save_cleanups): Use gdb_bfd_unref. | |
1214 | (cmd_record_save): Use gdb_bfd_unref. | |
1215 | * procfs.c (insert_dbx_link_bpt_in_file): Use gdb_bfd_ref, | |
1216 | gdb_bfd_unref. | |
1217 | * objfiles.h (gdb_bfd_close_or_warn): Remove. | |
1218 | (gdb_bfd_ref, gdb_bfd_unref): Move to gdb_bfd.h. | |
1219 | * objfiles.c: Include gdb_bfd.h. | |
1220 | (free_objfile): Use gdb_bfd_unref. | |
1221 | (gdb_bfd_close_or_warn, gdb_bfd_ref, gdb_bfd_unref): Move to | |
1222 | gdb_bfd.c. | |
1223 | * machoread.c (macho_add_oso_symfile): Use gdb_bfd_unref. | |
1224 | (macho_symfile_read_all_oso): Use gdb_bfd_ref, gdb_bfd_unref. | |
1225 | (macho_check_dsym): Likewise. | |
1226 | * m32r-rom.c: Include gdb_bfd.h. | |
1227 | (m32r_load): Use gdb_bfd_ref. | |
1228 | (m32r_upload_command): Use gdb_bfd_ref. | |
1229 | * jit.c: Include gdb_bfd.h. | |
1230 | (jit_bfd_try_read_symtab): Use gdb_bfd_ref, gdb_bfd_unref. | |
1231 | * gdb_bfd.h: New file. | |
1232 | * gdb_bfd.c: New file. | |
1233 | * gcore.c: Include gdb_bfd.h. | |
1234 | (create_gcore_bfd): Use gdb_bfd_ref. | |
1235 | (do_bfd_delete_cleanup): Use gdb_bfd_unref. | |
1236 | (gcore_command): Use gdb_bfd_unref. | |
1237 | * exec.c: Include gdb_bfd.h. | |
1238 | (exec_close): Use gdb_bfd_unref. | |
1239 | (exec_close_1): Use gdb_bfd_unref. | |
1240 | (exec_file_attach): Use gdb_bfd_ref. | |
1241 | * elfread.c: Include gdb_bfd.h. | |
1242 | (build_id_verify): Use gdb_bfd_unref. | |
1243 | * dsrec.c: Include gdb_bfd.h. | |
1244 | (load_srec): Use gdb_bfd_ref. | |
1245 | * corelow.c: Include gdb_bfd.h. | |
1246 | (core_close): Use gdb_bfd_unref. | |
1247 | (core_open): Use gdb_bfd_ref. | |
1248 | * bfd-target.c: Include gdb_bfd.h. | |
1249 | (target_bfd_xclose): Use gdb_bfd_unref. | |
1250 | (target_bfd_reopen): Use gdb_bfd_ref. | |
1251 | * Makefile.in (SFILES): Add gdb_bfd.c. | |
1252 | (HFILES_NO_SRCDIR): Add gdb_bfd.h. | |
1253 | (COMMON_OBS): Add gdb_bfd.o. | |
1254 | ||
ed1d1739 KS |
1255 | 2012-07-18 Keith Seitz <[email protected]> |
1256 | ||
1257 | * breakpoint.c (find_condition_and_thread): Initialize | |
1258 | TASK and REST. | |
1259 | (create_breakpiont): find_condition_and_thread will now | |
1260 | initialize COND_STRING, THREAD, and REST (and TASK). | |
1261 | (addr_string_to_sals): Likewise. | |
1262 | ||
eab402df PA |
1263 | 2012-07-18 Pedro Alves <[email protected]> |
1264 | ||
1265 | * infrun.c (handle_inferior_event) <TARGET_WAITKIND_NO_HISTORY>: | |
1266 | Pull the single step breakpoints out of the target. | |
1267 | ||
2b963b68 SDJ |
1268 | 2012-07-18 Sergio Durigan Junior <[email protected]> |
1269 | ||
1270 | * probe.c (probe_safe_evaluate_at_pc): Rename variable `n_probes'. | |
1271 | * stap-probe.c (compile_probe_arg): Likewise. | |
1272 | ||
6bac7473 SDJ |
1273 | 2012-07-18 Sergio Durigan Junior <[email protected]> |
1274 | ||
1275 | * elfread.c (elf_get_probe_argument_count): Remove `objfile' argument. | |
1276 | (elf_compile_to_ax): Likewise. | |
1277 | * infrun.c (insert_exception_resume_from_probe): Likewise. | |
1278 | (check_exception_resume): Remove `objfile' variable. | |
1279 | * probe.c (find_probe_by_pc): Remove `objfile' argument. | |
1280 | (struct probe_and_objfile, probe_and_objfile_s): Delete. | |
1281 | (collect_probes): Adjust return value to `VEC (probe_p) *'. | |
1282 | (compare_entries): Rename to... | |
1283 | (compare_probes): ...this. Adjust function to work with | |
1284 | `struct probe *'. Rename variables `ea' and `eb' to `pa' and `pb' | |
1285 | respectively. | |
1286 | (gen_ui_out_table_header_info): Adjust `probes' argument to be | |
1287 | `VEC (probe_p) *'. | |
1288 | (print_ui_out_info): Adjust argument to be `struct probe *'. | |
1289 | (info_probes_for_ops): Adjust internal computations to use | |
1290 | `VEC (probe_p) *'. | |
1291 | (probe_safe_evaluate_at_pc): Refactor to not pass `objfile' anymore. | |
1292 | * probe.h (struct probe_ops) <get_probe_argument_count, compile_to_ax, | |
1293 | gen_info_probes_table_values>: Remove `objfile' argument. | |
1294 | (struct probe) <objfile>: New field. | |
1295 | (find_probe_by_pc): Remove `objfile' argument. | |
1296 | * stap-probe.c (stap_parse_probe_arguments): Likewise. | |
1297 | (stap_get_probe_argument_count): Likewise. | |
1298 | (stap_get_arg): Likewise. | |
1299 | (stap_evaluate_probe_argument): Likewise. | |
1300 | (stap_compile_to_ax): Likewise. | |
1301 | (compile_probe_arg): Refactor not to pass `objfile' anymore. | |
1302 | (handle_stap_probe): Fill `objfile' field from `struct probe'. | |
1303 | (stap_gen_info_probes_table_header): Remove `objfile' argument. | |
1304 | * symfile.h (struct sym_probe_fns) <sym_evaluate_probe_argument, | |
1305 | sym_compile_to_ax>: Likewise. | |
1306 | ||
3347eb1a | 1307 | 2012-07-18 Terry Guo <[email protected]> |
1308 | ||
1309 | PR 14329 | |
1310 | * defs.h (GDB_MI_MSG_WIDTH): New. | |
1311 | * ser_base (ser_base_read_error_fd): New function. | |
1312 | (do_ser_base_readchar): Poll error file descriptor as well as | |
1313 | standard output. | |
f782ad9b | 1314 | (generic_readchar): Refactor error handling. |
3347eb1a | 1315 | |
80c8d323 JB |
1316 | 2012-07-18 Joel Brobecker <[email protected]> |
1317 | ||
1318 | * NEWS: Create a new section for the next release branch. | |
1319 | Rename the section of the current branch, now that it has | |
1320 | been cut. | |
1321 | ||
b45a0664 | 1322 | 2012-07-18 Joel Brobecker <[email protected]> |
1323 | ||
1324 | GDB 7.5 branch created (branch timestamp: 2012-07-18 03:22 UTC) | |
1325 | * version.in: Bump version to 7.5.50.20120718-cvs. | |
1326 | ||
09cf2b22 KS |
1327 | 2012-07-17 Keith Seitz <[email protected]> |
1328 | ||
1329 | * linespec.c (linespec_parse_line_offset): Make parameter | |
1330 | const. | |
1331 | ||
8f043999 JK |
1332 | 2012-07-16 Jan Kratochvil <[email protected]> |
1333 | ||
1334 | PR 11914 | |
1335 | * f-valprint.c (info_common_command): New variable frame_id. | |
1336 | Reinitialize FI form FRAME_ID after each print_variable_and_value. | |
1337 | * printcmd.c (print_variable_and_value): Extend function comment. | |
1338 | Add comment for invalidated FRAME. | |
1339 | * stack.c (backtrace_command_1): New variable frame_id. Reinitialize | |
1340 | FI form FRAME_ID after each print_frame_local_vars. | |
1341 | (struct print_variable_and_value_data): Change frame to frame_id. | |
1342 | (do_print_variable_and_value): New variable frame, initialize it from | |
1343 | p->frame_id. Add comment for invalidated FRAME. | |
1344 | (print_frame_local_vars, print_frame_arg_vars): New function comment. | |
1345 | Update CB_DATA.FRAME to CB_DATA.FRAME_ID initialization. Add comment | |
1346 | for invalidated FRAME. | |
1347 | ||
ae5e0686 MK |
1348 | 2012-07-16 Marc Khouzam <[email protected]> |
1349 | Pedro Alves <[email protected]> | |
1350 | ||
1351 | * linux-nat.c (linux_nat_detach): Don't unregister from the event | |
1352 | loop. | |
1353 | ||
5049c5be TT |
1354 | 2012-07-16 Tom Tromey <[email protected]> |
1355 | ||
1356 | * jv-typeprint.c (c_type_print_varspec_suffix): Don't declare. | |
1357 | ||
2908cac6 DE |
1358 | 2012-07-15 Doug Evans <[email protected]> |
1359 | ||
094b34ac DE |
1360 | * dwarf2read.c (stmt_list_hash): New struct. |
1361 | (type_unit_group): Embed "per_cu" member, remove pointer. | |
1362 | New union member "t", move member "tus" into it, all uses updated. | |
1363 | New member "hash", replaces member "line_offset, all uses updated. | |
1364 | (quick_file_names): Replace member "offset" with "hash", all uses | |
1365 | updated. | |
1366 | (hash_stmt_list_entry, eq_stmt_list_entry): New functions. | |
1367 | (hash_file_name_entry, eq_file_name_entry): Call them. | |
1368 | (hash_type_unit_group, eq_type_unit_group): Ditto. | |
1369 | (dw2_get_cu, dw2_get_primary_cu): Replace assert with a better one. | |
1370 | (dw2_get_file_names_reader): Fix file name table calculation for TUs. | |
1371 | (dw2_get_file_names): Update. | |
1372 | (create_type_unit_group): Replace "per_cu" arg with "cu". | |
1373 | All callers updated. Fix "quick" (.gdb_index) handling. | |
1374 | (get_type_unit_group): Replace "per_cu" arg with "cu". | |
1375 | All callers updated. | |
1376 | (build_type_unit_groups): Don't reset tu_stats. | |
1377 | ||
2908cac6 DE |
1378 | * symtab.c (filename_seen_cache): Delete members "tab_alloc_size", |
1379 | "tab_cur_size". Change member "tab" to be a htab_t. | |
1380 | (create_filename_seen_cache): Update. | |
1381 | (clear_filename_seen_cache, delete_filename_seen_cache): Update. | |
1382 | (filename_seen): Update. | |
1383 | ||
a2b6eff5 DE |
1384 | 2012-07-13 Doug Evans <[email protected]> |
1385 | ||
1386 | * symtab.c (filename_seen): Update comment. | |
1387 | ||
4359dff1 JK |
1388 | 2012-07-13 Jan Kratochvil <[email protected]> |
1389 | Doug Evans <[email protected]> | |
1390 | ||
1391 | * buildsym.c (end_symtab_1): Split it to ... | |
1392 | (end_symtab_get_static_block): ... this ... | |
1393 | (end_symtab_from_static_block): ... and this function. | |
1394 | (end_symtab, end_expandable_symtab): Call them. | |
1395 | * buildsym.h (end_symtab_get_static_block) | |
1396 | (end_symtab_from_static_block): New declarations. | |
1397 | * dwarf2read.c (process_full_comp_unit): New variable static_block. | |
1398 | Set its valid CU ranges. | |
1399 | ||
a24f71ab JK |
1400 | 2012-07-13 Jan Kratochvil <[email protected]> |
1401 | ||
1402 | * dwarf2loc.c (disassemble_dwarf_expression): Handle | |
1403 | DW_OP_GNU_parameter_ref. | |
1404 | ||
d76b7dbc JK |
1405 | 2012-07-13 Jan Kratochvil <[email protected]> |
1406 | ||
1407 | * dwarf2read.c (read_call_site_scope): Do not gdb_assert for invalid | |
1408 | read-in CALL_SITE_PARAMETER_PARAM_OFFSET. | |
1409 | ||
9fdc877b DE |
1410 | 2012-07-13 Doug Evans <[email protected]> |
1411 | ||
1412 | * symtab.c (output_source_filename): Delete unnecessary forward decl. | |
1413 | (filename_seen_cache): New struct. | |
1414 | (INITIAL_FILENAME_SEEN_CACHE_SIZE): New macro. | |
1415 | (create_filename_seen_cache): New function. | |
1416 | (clear_filename_seen_cache, delete_filename_seen_cache): New functions. | |
1417 | (filename_seen): Delete arg "first". New arg "cache". All callers | |
1418 | updated. | |
1419 | (output_source_filename_data): New struct. | |
1420 | (output_source_filename): Delete arg "first". New arg "data". | |
1421 | All callers updated. | |
1422 | (sources_info): Delete local "first". New locals "data", "cleanups". | |
1423 | Rewrite to use filename_seen_cache. | |
1424 | (add_partial_filename_data): Delete member "first". New member | |
1425 | "filename_seen_cache". All uses updated. | |
1426 | (make_source_files_completion_list): Rewrite to use | |
1427 | filename_seen_cache. | |
1428 | ||
f80c6f3f DE |
1429 | 2012-07-12 Doug Evans <[email protected]> |
1430 | ||
1431 | * psymtab.c (map_symbol_filenames_psymtab): Skip shared psymtabs. | |
1432 | ||
0bfa869d DE |
1433 | 2012-07-10 Doug Evans <[email protected]> |
1434 | ||
f4dc4d17 DE |
1435 | PR gdb/13498 |
1436 | * dwarf2read.c (dwarf2_per_objfile): New members n_type_unit_groups, | |
1437 | all_type_unit_groups, type_unit_groups, tu_stats. | |
1438 | (dwarf2_per_cu_data): Move "imported_symtabs" into new union "s". | |
1439 | All uses updated. Add type_unit_group to union "s". | |
1440 | (type_unit_group): New struct. | |
1441 | (IS_TYPE_UNIT_GROUP): New macro. | |
1442 | (abbrev_table): Delete unused member "section". | |
1443 | (dw2_do_instantiate_symtab): Early exit if type_unit_group. | |
1444 | (dw2_get_cu): Assert not used with type_unit_group. | |
1445 | (dw2_get_primary_cu): New function. | |
1446 | (dw2_build_type_unit_groups_reader): New function. | |
1447 | (dw2_build_type_unit_groups): New function. | |
1448 | (dw2_get_file_names): Assert not called on type units. | |
1449 | (dw2_map_symtabs_matching_filename): Call dw2_build_type_unit_groups. | |
1450 | Redo loop to iterate over type unit groups instead of type units. | |
1451 | (dw2_expand_symtabs_matching, dw2_map_symbol_filenames): Ditto. | |
1452 | (read_abbrev_offset): New function. | |
1453 | (init_cutu_and_read_dies): New arg "abbrev_table". All callers | |
1454 | updated. | |
1455 | (create_partial_symtab): New function. | |
1456 | (process_psymtab_comp_unit_reader): Assert not used with type units. | |
1457 | Call create_partial_symtab. | |
1458 | (process_psymtab_type_unit): Delete. | |
1459 | (hash_type_unit_group, eq_type_unit_group): New functions. | |
1460 | (allocate_type_unit_groups_table): New function. | |
1461 | (NO_STMT_LIST_TYPE_UNIT_PSYMTAB): New macro. | |
1462 | (NO_STMT_LIST_TYPE_UNIT_PSYMTAB_SIZE): New macro. | |
1463 | (create_type_unit_group, get_type_unit_group): New functions. | |
1464 | (tu_abbrev_offset): New struct. | |
1465 | (sort_tu_by_abbrev_offset): New function. | |
1466 | (add_type_unit_group_to_table): New function. | |
1467 | (build_type_unit_groups): New function. | |
1468 | (build_type_psymtabs_reader): New function. | |
1469 | (build_type_psymtab_dependencies): New function. | |
1470 | (build_type_psymtabs): Rewrite. | |
1471 | (scan_partial_symbols): Flag an error if a DW_TAG_imported_unit | |
1472 | is seen in a type unit. | |
1473 | (process_queue): Move symtab expansion debugging printfs here. | |
1474 | Call process_full_type_unit for type units. | |
1475 | (compute_symtab_includes): Assert not called for type units. | |
1476 | (process_cu_includes): Don't call compute_symtab_includes for | |
1477 | type units. | |
1478 | (process_full_type_unit): New function. | |
1479 | (process_imported_unit_die): Flag an error if called for type units. | |
1480 | (handle_DW_AT_stmt_list): Delete arg "want_line_info". All callers | |
1481 | updated. Assert not called for type units. | |
1482 | (read_file_scope): Call dwarf2_start_symtab. | |
1483 | (setup_type_unit_groups): New function. | |
1484 | (read_type_unit_scope): Rewrite. | |
1485 | (abbrev_table_read_table): Initialize abbrev_table->offset. | |
1486 | (abbrev_table_free_cleanup): New function. | |
1487 | (dwarf2_start_symtab): New function. | |
1488 | (load_full_type_unit): Assert not called for type unit groups. | |
6d30eef8 DE |
1489 | * buildsym.c (finish_block_internal): New arg "expandable". |
1490 | All callers updated. | |
1491 | (start_symtab): Move most contents to ... | |
1492 | (restart_symtab): ... here. New function. | |
1493 | (reset_symtab_globals): New function. | |
1494 | (end_symtab_1): Renamed from end_symtab. New arg "expandable". | |
1495 | Call reset_symtab_globals. | |
1496 | (end_symtab, end_expandable_symtab): New functions. | |
1497 | (set_missing_symtab, augment_type_symtab): New functions. | |
1498 | * buildsym.h (end_expandable_symtab): Declare. | |
1499 | (augment_type_symtab, restart_symtab): Declare. | |
b4c41fc7 DE |
1500 | * psympriv.h (struct partial_symtab): New member "anonymous". |
1501 | * psymtab.c (partial_map_symtabs_matching_filename): Ignore | |
1502 | anonymous psymtabs. | |
1503 | (read_psymtabs_with_filename): Ditto. | |
1504 | (map_symbol_filenames_psymtab, psymtab_to_fullname): Ditto. | |
1505 | (expand_symtabs_matching_via_partial): Ditto. | |
1506 | (dump_psymtab): Update. | |
0bfa869d DE |
1507 | * dictionary.c (dict_add_pending): New function. |
1508 | * dictionary.h (dict_add_pending): Declare. | |
1509 | ||
45e58e77 DE |
1510 | 2012-07-09 Doug Evans <[email protected]> |
1511 | ||
b74db436 DE |
1512 | * buildsym.c (start_subfile): Remove unnecessary check for |
1513 | name == NULL. | |
1514 | ||
fd55216c DE |
1515 | * psymtab.c (allocate_psymtab): Use host_address_to_string. |
1516 | ||
6721b2ec DE |
1517 | * dwarf2read.c (load_full_type_unit): Simplify. |
1518 | ||
b4dd5633 DE |
1519 | * dwarf2read.c (dwarf2_per_objfile): Change type of all_type_units |
1520 | to struct signatured_type **. All uses updated. | |
1521 | ||
45e58e77 DE |
1522 | * dwarf2read.c (dwarf2_attr_no_follow): Delete unused arg "cu". |
1523 | All callers updated. | |
1524 | ||
e314d629 TT |
1525 | 2012-07-09 Tom Tromey <[email protected]> |
1526 | ||
1527 | * c-exp.y (check_parameter_typelist): New function. | |
1528 | (parameter_typelist): Call it. | |
1529 | * eval.c (make_params): Handle '(void)' case. | |
1530 | * gdbtypes.c (lookup_function_type_with_arguments): Handle | |
1531 | '(void)' case. | |
1532 | ||
aa7c7447 JK |
1533 | 2012-07-07 Jan Kratochvil <[email protected]> |
1534 | ||
1535 | * common/linux-ptrace.c: Include gdb_assert.h. | |
1536 | <__i386__> (linux_ptrace_test_ret_to_nx_instr): New declaration. | |
1537 | <__i386__>: Include sys/reg.h, sys/mman.h, signal.h, sys/wait.h and | |
1538 | stdint.h. | |
1539 | (linux_ptrace_test_ret_to_nx, linux_ptrace_init_warnings): New | |
1540 | functions. | |
1541 | * common/linux-ptrace.h (linux_ptrace_init_warnings): New declarations. | |
1542 | * linux-nat.c (linux_child_post_attach) | |
1543 | (linux_child_post_startup_inferior): Call linux_ptrace_init_warnings. | |
1544 | ||
889003ed JK |
1545 | 2012-07-07 Jan Kratochvil <[email protected]> |
1546 | ||
1547 | * linux-thread-db.c (thread_db_find_new_threads_silently): Do not apply | |
1548 | nptl <2.7 bug workaround for core files. | |
1549 | ||
da559b09 JK |
1550 | 2012-07-06 Jan Kratochvil <[email protected]> |
1551 | ||
1552 | * linux-nat.c (resume_lwp, linux_nat_resume): Remove LP->SIGINFO | |
1553 | clearing. | |
1554 | (save_siginfo): Remove. | |
1555 | (stop_wait_callback, linux_nat_filter_event): Remove the save_siginfo | |
1556 | call. | |
1557 | (resume_stopped_resumed_lwps): Remove LP->SIGINFO clearing. | |
1558 | (linux_nat_get_siginfo): Use PTRACE_GETSIGINFO. | |
1559 | * linux-nat.h (struct lwp_info): Remove field siginfo. | |
1560 | ||
f865ee35 JK |
1561 | 2012-07-06 Jan Kratochvil <[email protected]> |
1562 | ||
1563 | Code cleanup for the next patch. | |
1564 | * arm-linux-nat.c (arm_linux_stopped_data_address): Change variable | |
1565 | siginfo_p to siginfo, update its users incl. the linux_nat_get_siginfo | |
1566 | call for it. | |
1567 | * ia64-linux-nat.c (ia64_linux_stopped_data_address): Likewise. | |
1568 | (ia64_linux_stopped_data_address): | |
1569 | * linux-nat.c (linux_nat_get_siginfo): Add parameter siginfo, change | |
1570 | the return value. | |
1571 | * linux-nat.h (linux_nat_get_siginfo): Likewise. | |
1572 | * ppc-linux-nat.c (ppc_linux_stopped_data_address): Change variable | |
1573 | siginfo_p to siginfo, update its users incl. the linux_nat_get_siginfo | |
1574 | call for it. | |
1575 | ||
76b83c51 JK |
1576 | 2012-07-06 Jan Kratochvil <[email protected]> |
1577 | ||
1578 | PR 14321 | |
1579 | * findcmd.c (parse_find_args): New variable pattern_buf_size_need. | |
1580 | Increase buffer sizes to 2x we need, not just 2x of the previous size. | |
1581 | ||
a6fb9c08 TT |
1582 | 2012-07-06 Tom Tromey <[email protected]> |
1583 | ||
1584 | * c-exp.y (DOTDOTDOT): New token. | |
1585 | (func_mod, exp): Use parameter_typelist. | |
1586 | (parameter_typelist): New production. | |
1587 | (tokentab3): Add "..." token. | |
1588 | * eval.c (make_params): Handle varargs. | |
1589 | * gdbtypes.c (lookup_function_type_with_arguments): Handle | |
1590 | varargs. | |
1591 | ||
71918a86 TT |
1592 | 2012-07-06 Tom Tromey <[email protected]> |
1593 | ||
1594 | PR exp/9608: | |
1595 | * c-exp.y (%union) <tvec>: Change type. | |
1596 | (func_mod): Now uses <tvec> type. | |
1597 | (exp): Update for tvec change. | |
1598 | (direct_abs_decl): Push the typelist. | |
1599 | (func_mod): Return a typelist. | |
1600 | (nonempty_typelist): Update for tvec change. | |
1601 | * gdbtypes.c (lookup_function_type_with_arguments): New function. | |
1602 | * gdbtypes.h (lookup_function_type_with_arguments): Declare. | |
1603 | * parse.c (pop_type_list): New function. | |
1604 | (push_typelist): New function. | |
1605 | (follow_types): Handle tp_function_with_arguments. | |
1606 | * parser-defs.h (type_ptr): New typedef. Define a VEC. | |
1607 | (enum type_pieces) <tp_function_with_arguments>: New constant. | |
1608 | (union type_stack_elt) <typelist_val>: New field. | |
1609 | (push_typelist): Declare. | |
1610 | ||
fcde5961 TT |
1611 | 2012-07-06 Tom Tromey <[email protected]> |
1612 | ||
1613 | * c-exp.y (%union) <type_stack>: New field. | |
1614 | (abs_decl, direct_abs_decl): Use <type_stack> type. Update. | |
1615 | (ptr_operator_ts): New production. | |
1616 | (ptype): Update. | |
1617 | * parse.c (type_stack_reserve): New function. | |
1618 | (check_type_stack_depth): Use it. | |
1619 | (pop_type_stack, append_type_stack, push_type_stack) | |
1620 | (get_type_stack, type_stack_cleanup): New functions. | |
1621 | (follow_types): Handle tp_type_stack. | |
1622 | (_initialize_parse): Simplify initialization. | |
1623 | * parser-defs.h (enum type_pieces) <tp_type_stack>: New | |
1624 | constant. | |
1625 | (union type_stack_elt) <stack_val>: New field. | |
1626 | (get_type_stack, append_type_stack, push_type_stack) | |
1627 | (type_stack_cleanup): Declare. | |
1628 | ||
1a7d0ce4 TT |
1629 | 2012-07-06 Tom Tromey <[email protected]> |
1630 | ||
1631 | * parser-defs.h (type_stack, type_stack_size, type_stack_depth): | |
1632 | Remove. | |
1633 | (struct type_stack): New. | |
1634 | * parse.c (type_stack, type_stack_size, type_stack_depth): | |
1635 | Remove. | |
1636 | (type_stack): New global. | |
1637 | (parse_exp_in_context, check_type_stack_depth) | |
1638 | (insert_into_type_stack, insert_type, push_type, push_type_int) | |
1639 | (insert_type_address_space, pop_type, pop_type_int) | |
1640 | (_initialize_parse): Update. | |
1641 | ||
16d01384 TT |
1642 | 2012-07-06 Tom Tromey <[email protected]> |
1643 | ||
1644 | * c-exp.y (func_mod, direct_abs_decl, abs_decl, ptr_operator): | |
1645 | Remove %type. | |
1646 | ||
9bfc60bf SP |
1647 | 2012-07-06 Siddhesh Poyarekar <[email protected]> |
1648 | ||
1649 | * c-lang.c (c_printstr): Remove ununsed variable WIDTH. | |
1650 | ||
d5161074 SP |
1651 | 2012-07-06 Siddhesh Poyarekar <[email protected]> |
1652 | Jan Kratochvil <[email protected]> | |
1653 | ||
1654 | * cp-valprint.c (cp_print_value): Replace potentially unsafe | |
1655 | alloca with xmalloc/xfree. | |
1656 | ||
a74bc576 SP |
1657 | 2012-07-06 Siddhesh Poyarekar <[email protected]> |
1658 | ||
1659 | * MAINTAINERS (Write After Approval): Add myself to the list. | |
1660 | ||
667e0a4b DE |
1661 | 2012-07-05 Doug Evans <[email protected]> |
1662 | ||
1663 | * dwarf2read.c (dw2_expand_symtabs_matching): Fix typo. | |
1664 | ||
34b536a8 HZ |
1665 | 2012-07-05 Hui Zhu <[email protected]> |
1666 | ||
1667 | * ax-gdb.c (cli/cli-utils.h): New include. | |
1668 | (linespec.h): Ditto. | |
1669 | (agent_eval_command_one): New function. | |
1670 | (agent_command_1): Ditto. | |
1671 | (agent_command): Call function agent_command_1. | |
1672 | (agent_eval_command): Ditto. | |
1673 | (_initialize_ax_gdb): Change help for "maint agent" | |
1674 | and "maint agent-eval". | |
1675 | ||
e6f0bce7 HZ |
1676 | 2012-07-05 Hui Zhu <[email protected]> |
1677 | ||
1678 | * breakpoint.c (check_for_argument): Move to file cli/cli-utils.c. | |
1679 | * cli/cli-utils.c (check_for_argument): New function. | |
1680 | * cli/cli-utils.h (check_for_argument): Ditto. | |
1681 | ||
1b3371b1 L |
1682 | 2012-07-04 H.J. Lu <[email protected]> |
1683 | ||
1684 | * NEWS: Mention x32 ABI support. | |
1685 | ||
23e2d720 L |
1686 | 2012-07-04 H.J. Lu <[email protected]> |
1687 | ||
1688 | * amd64-tdep.c (amd64_x32_init_abi): Set sp_regnum_from_eax to | |
1689 | AMD64_RSP_REGNUM and pc_regnum_from_eax to AMD64_RIP_REGNUM. | |
1690 | ||
1691 | * i386-tdep.c (i386_gdbarch_init): Initialize sp_regnum_from_eax | |
1692 | and pc_regnum_from_eax to -1. Update SP regnum from | |
1693 | sp_regnum_from_eax and PC regnum from pc_regnum_from_eax if | |
1694 | needed. | |
1695 | ||
1696 | * i386-tdep.h (gdbarch_tdep): Add sp_regnum_from_eax and | |
1697 | pc_regnum_from_eax. | |
1698 | ||
836bf454 JK |
1699 | 2012-07-03 Jan Kratochvil <[email protected]> |
1700 | ||
1701 | Fix 'warning: parameter has incomplete type' with gcc-3.4.6. | |
1702 | * dwarf2expr.h: Include gdbtypes.h. | |
1703 | (enum call_site_parameter_kind, union call_site_parameter_u): Remove | |
1704 | these forward declarations. | |
1705 | (cu_offset, sect_offset): Move these ... | |
1706 | * gdbtypes.h: Remove include dwarf2expr.h. | |
1707 | (cu_offset, sect_offset): ... here. | |
1708 | ||
1e55e04f L |
1709 | 2012-07-03 H.J. Lu <[email protected]> |
1710 | ||
1711 | * amd64-linux-tdep.c (linux_sigtramp_code): Renamed to ... | |
1712 | (amd64_linux_sigtramp_code): This. | |
1713 | (amd64_x32_linux_sigtramp_code): New. | |
1714 | (LINUX_SIGTRAMP_LEN): Updated. | |
1715 | (amd64_linux_sigtramp_start): Check x32 sigtramp. | |
1716 | ||
7d0e21ad JK |
1717 | 2012-07-02 Jan Kratochvil <[email protected]> |
1718 | ||
1719 | * linux-thread-db.c (thread_db_new_objfile): Fix comment typos. | |
1720 | ||
8775fd2d JK |
1721 | 2012-07-02 Jan Kratochvil <[email protected]> |
1722 | ||
1723 | * config.in: Regenerate. | |
1724 | * configure: Regenerate. | |
1725 | * configure.ac: Remove check for gnu/libc-version.h. | |
1726 | * linux-thread-db.c <HAVE_GNU_LIBC_VERSION_H>: Remove include of | |
1727 | gnu/libc-version.h. | |
1728 | (enable_thread_event_reporting) <HAVE_GNU_LIBC_VERSION_H>: Remove | |
1729 | variables libc_version, libc_major and libc_minor. Replace sscanf by | |
1730 | inferior_has_bug. Extend the comment. | |
1731 | ||
fcb44371 JK |
1732 | 2012-07-02 Jan Kratochvil <[email protected]> |
1733 | ||
1734 | * linux-thread-db.c (inferior_has_bug): New function. | |
1735 | (thread_db_find_new_threads_silently): Return boolean as checked by | |
1736 | inferior_has_bug, describe it in the comments. | |
1737 | (try_thread_db_load_1): Move call to thread_db_find_new_threads_silently | |
1738 | earlier. Abort the initialization if it returned non-zero. | |
7d0e21ad | 1739 | (thread_db_new_objfile): Exclude debug files. |
fcb44371 JK |
1740 | (thread_db_find_new_threads_2): Preinitialize ERR. Check errors also |
1741 | if UNTIL_NO_NEW, | |
1742 | ||
09406207 DE |
1743 | 2012-07-02 Doug Evans <[email protected]> |
1744 | ||
0907af0c DE |
1745 | * dwarf2read.c (maybe_queue_comp_unit): Move definition next to others |
1746 | related to queue management. | |
1747 | ||
09406207 DE |
1748 | * dwarf2read.c (create_debug_types_hash_table): Use "debug dwarf2-read" |
1749 | instead of "debug dwarf2-die" in debugging printfs. | |
1750 | (create_debug_info_hash_table_reader): Ditto. | |
1751 | (create_debug_info_hash_table): Ditto. | |
1752 | (init_dwo_file): Ditto. | |
1753 | (init_cutu_and_read_dies): Add debugging printf. | |
1754 | (init_cutu_and_read_dies_no_follow): Ditto. | |
1755 | (process_psymtab_comp_unit_reader): Ditto. | |
1756 | ||
d3ce09f5 SS |
1757 | 2012-07-02 Stan Shebs <[email protected]> |
1758 | ||
1759 | Add target-side support for dynamic printf. | |
1760 | * NEWS: Mention the additional style. | |
1761 | * breakpoint.h (struct bp_target_info): New fields tcommands, persist. | |
1762 | (struct bp_location): New field cmd_bytecode. | |
1763 | * breakpoint.c: Include format.h. | |
1764 | (disconnected_dprintf): New global. | |
1765 | (parse_cmd_to_aexpr): New function. | |
1766 | (build_target_command_list): New function. | |
1767 | (insert_bp_location): Call it. | |
1768 | (remove_breakpoints_pid): Skip dprintf breakpoints. | |
1769 | (print_one_breakpoint_location): Ditto. | |
1770 | (dprintf_style_agent): New global. | |
1771 | (dprintf_style_enums): Add dprintf_style_agent. | |
1772 | (update_dprintf_command_list): Add agent case. | |
1773 | (agent_printf_command): New function. | |
1774 | (_initialize_breakpoint): Add new commands. | |
1775 | * common/ax.def (printf): New bytecode. | |
1776 | * ax.h (ax_string): Declare. | |
1777 | * ax-gdb.h (gen_printf): Declare. | |
1778 | * ax-gdb.c: Include cli-utils.h, format.h. | |
1779 | (gen_printf): New function. | |
1780 | (maint_agent_print_command): New function. | |
1781 | (_initialize_ax_gdb): Add maint agent-printf command. | |
1782 | * ax-general.c (ax_string): New function. | |
1783 | (ax_print): Add printf disassembly. | |
1784 | * Makefile.in (SFILES): Add format.c | |
1785 | (COMMON_OBS): Add format.o. | |
1786 | * common/format.h: New file. | |
1787 | * common/format.c: New file. | |
1788 | * printcmd.c: Include format.h. | |
1789 | (ui_printf): Call parse_format_string. | |
1790 | * remote.c (remote_state): New field breakpoint_commands. | |
1791 | (PACKET_BreakpointCommands): New enum. | |
1792 | (remote_breakpoint_commands_feature): New function. | |
1793 | (remote_protocol_features): Add new BreakpointCommands entry. | |
1794 | (remote_can_run_breakpoint_commands): New function. | |
1795 | (remote_add_target_side_commands): New function. | |
1796 | (remote_insert_breakpoint): Call it. | |
1797 | (remote_insert_hw_breakpoint): Ditto. | |
1798 | (_initialize_remote): Add new packet configuration for | |
1799 | target-side breakpoint commands. | |
1800 | * target.h (struct target_ops): New field | |
1801 | to_can_run_breakpoint_commands. | |
1802 | (target_can_run_breakpoint_commands): New macro. | |
1803 | * target.c (update_current_target): Handle | |
1804 | to_can_run_breakpoint_commands. | |
1805 | ||
2d7b58e8 JK |
1806 | 2012-07-02 Jan Kratochvil <[email protected]> |
1807 | ||
1808 | Execute -ix and -iex only after system and user gdbinit files. | |
1809 | * main.c (captured_main): Move CMDARG_INIT_FILE and CMDARG_INIT_COMMAND | |
1810 | processing down after gdbinit files. | |
1811 | ||
8690e634 JK |
1812 | 2012-07-02 Jan Kratochvil <[email protected]> |
1813 | ||
1814 | Add fnmatch-gnu module. | |
1815 | * gnulib/Makefile.in (aclocal_m4_deps): Add new files and remove one. | |
1816 | * gnulib/configure.ac (AC_INIT): Use now import/memmem.c. | |
1817 | * gnulib/aclocal.m4: Regenerate. | |
1818 | * gnulib/config.in: Regenerate. | |
1819 | * gnulib/configure: Regenerate. | |
1820 | * gnulib/import/dummy.c: Remove. | |
1821 | * gnulib/import/Makefile.am: Regenerate. | |
1822 | * gnulib/import/Makefile.in: Likewise. | |
1823 | * gnulib/import/m4/gnulib-cache.m4: Likewise. | |
1824 | * gnulib/import/m4/gnulib-comp.m4: Likewise. | |
1825 | * gnulib/import/alloca.c: New file. | |
1826 | * gnulib/import/alloca.in.h: Likewise. | |
1827 | * gnulib/import/config.charset: Likewise. | |
1828 | * gnulib/import/fnmatch.c: Likewise. | |
1829 | * gnulib/import/fnmatch.in.h: Likewise. | |
1830 | * gnulib/import/fnmatch_loop.c: Likewise. | |
1831 | * gnulib/import/localcharset.c: Likewise. | |
1832 | * gnulib/import/localcharset.h: Likewise. | |
1833 | * gnulib/import/m4/alloca.m4: Likewise. | |
1834 | * gnulib/import/m4/codeset.m4: Likewise. | |
1835 | * gnulib/import/m4/configmake.m4: Likewise. | |
1836 | * gnulib/import/m4/fcntl-o.m4: Likewise. | |
1837 | * gnulib/import/m4/fnmatch.m4: Likewise. | |
1838 | * gnulib/import/m4/glibc21.m4: Likewise. | |
1839 | * gnulib/import/m4/localcharset.m4: Likewise. | |
1840 | * gnulib/import/m4/locale-fr.m4: Likewise. | |
1841 | * gnulib/import/m4/locale-ja.m4: Likewise. | |
1842 | * gnulib/import/m4/locale-zh.m4: Likewise. | |
1843 | * gnulib/import/m4/mbrtowc.m4: Likewise. | |
1844 | * gnulib/import/m4/mbsinit.m4: Likewise. | |
1845 | * gnulib/import/m4/mbsrtowcs.m4: Likewise. | |
1846 | * gnulib/import/m4/mbstate_t.m4: Likewise. | |
1847 | * gnulib/import/m4/stdbool.m4: Likewise. | |
1848 | * gnulib/import/m4/wchar_h.m4: Likewise. | |
1849 | * gnulib/import/m4/wctype_h.m4: Likewise. | |
1850 | * gnulib/import/m4/wint_t.m4: Likewise. | |
1851 | * gnulib/import/mbrtowc.c: Likewise. | |
1852 | * gnulib/import/mbsinit.c: Likewise. | |
1853 | * gnulib/import/mbsrtowcs-impl.h: Likewise. | |
1854 | * gnulib/import/mbsrtowcs-state.c: Likewise. | |
1855 | * gnulib/import/mbsrtowcs.c: Likewise. | |
1856 | * gnulib/import/ref-add.sin: Likewise. | |
1857 | * gnulib/import/ref-del.sin: Likewise. | |
1858 | * gnulib/import/stdbool.in.h: Likewise. | |
1859 | * gnulib/import/streq.h: Likewise. | |
1860 | * gnulib/import/strnlen1.c: Likewise. | |
1861 | * gnulib/import/strnlen1.h: Likewise. | |
1862 | * gnulib/import/verify.h: Likewise. | |
1863 | * gnulib/import/wchar.in.h: Likewise. | |
1864 | * gnulib/import/wctype.in.h: Likewise. | |
1865 | ||
202cbf1c JK |
1866 | 2012-07-02 Jan Kratochvil <[email protected]> |
1867 | ||
1868 | Support shell wildcards for 'set auto-load safe-path'. | |
1869 | * auto-load.c: Include fnmatch.h. | |
1870 | (filename_is_in_dir): Rename to ... | |
1871 | (filename_is_in_pattern_1, filename_is_in_pattern): ... here and split | |
1872 | it. Update function comment. Rename dir_len to pattern_len. New | |
1873 | variables filename_len, pattern and filename. Add more DEBUG_AUTO_LOAD | |
1874 | messages. Use gdb_filename_fnmatch. | |
1875 | (filename_is_in_auto_load_safe_path_vec): Rename variable dir to | |
1876 | pattern. | |
1877 | (_initialize_auto_load): Extend the "set auto-load safe-path" help text. | |
1878 | * defs.h (gdb_filename_fnmatch): New declaration. | |
1879 | * utils.c: Include fnmatch.h. | |
1880 | (gdb_filename_fnmatch): New function. | |
1881 | ||
fb7b5af4 SDJ |
1882 | 2012-07-02 Sergio Durigan Junior <[email protected]> |
1883 | ||
1884 | * breakpoint.c (BREAK_ARGS_HELP): Include help message for the new | |
1885 | `-probe' and `-probe-stap' options. | |
1886 | ||
72d0e2c5 YQ |
1887 | 2012-07-01 Yao Qi <[email protected]> |
1888 | ||
1889 | * breakpoint.c: Removed always_inserted_auto, always_inserted_on, | |
1890 | always_inserted_off, and always_inserted_enums. | |
1891 | Change always_inserted_mode's type to 'enum auto_boolean'. | |
1892 | (show_always_inserted_mode, breakpoint_always_inserted_mode): Update | |
1893 | callers. | |
1894 | (_initialize_breakpoint): Call add_setshow_auto_boolean_cmd instead | |
1895 | of add_setshow_enum_cmd. | |
1896 | * infrun.c: Remove can_use_displaced_stepping_auto, | |
1897 | can_use_displaced_stepping_on, can_use_displaced_stepping_off, and | |
1898 | can_use_displaced_stepping_enum. | |
1899 | Change can_use_displaced_stepping's type to 'enum auto_boolean'. | |
1900 | (show_can_use_displaced_stepping, use_displaced_stepping): Update callers. | |
1901 | (_initialize_infrun): Call add_setshow_auto_boolean_cmd instead of | |
1902 | add_setshow_enum_cmd. | |
1903 | ||
42e7ad6c DE |
1904 | 2012-06-30 Doug Evans <[email protected]> |
1905 | ||
1906 | * dwarf2read.c (signatured_type): Make "per_cu" member first. | |
1907 | (init_cutu_and_read_dies): Handle rereading a DWO CU while it's | |
1908 | currently being read. Propagate DW_AT_comp_dir to DWO DIE. | |
1909 | ||
39cf75f7 DE |
1910 | 2012-06-29 Doug Evans <[email protected]> |
1911 | ||
1912 | * linespec.c: #include "stack.h". | |
1913 | (decode_line_with_current_source): Moved here from symtab.c and | |
1914 | renamed from decode_line_spec. All callers updated. | |
1915 | (decode_line_with_last_displayed): Moved here from breakpoint.c and | |
1916 | renamed from decode_line_spec_1. All callers updated. | |
1917 | * linespec.h (decode_line_with_current_source): Move declaration here | |
1918 | from symtab.h and renamed from decode_line_spec. | |
1919 | (decode_line_with_last_displayed): Move declaration here from symtab.h | |
1920 | and renamed from decode_line_spec_1. | |
1921 | * macrocmd.c: #include "linespec.h". | |
1922 | * symtab.c: Remove #include "linespec.h". | |
1923 | ||
433df2d4 DE |
1924 | 2012-06-28 Doug Evans <[email protected]> |
1925 | ||
1ce1cefd DE |
1926 | * dwarf2read.c (get_cu_length): New function. |
1927 | (offset_in_cu_p, error_check_comp_unit_head): Call it. | |
1928 | (create_debug_types_hash_table): Ditto. | |
1929 | (init_cutu_and_read_dies): Ditto. | |
1930 | (init_cutu_and_read_dies_no_follow): Ditto. | |
1931 | ||
3b80fe9b DE |
1932 | * dwarf2read.c (dwarf2_find_base_address): Move definition. |
1933 | ||
433df2d4 DE |
1934 | * dwarf2read.c (ABBREV_HASH_SIZE): Remove enclosing #ifndef/#endif. |
1935 | (struct abbrev_table): Define. | |
1936 | (dwarf2_cu): Replace members dwarf2_abbrevs, abbrev_obstack with | |
1937 | abbrev_table. | |
1938 | (init_cutu_and_read_dies): Update. | |
1939 | (abbrev_table_alloc_abbrev): New function. Replaces | |
1940 | dwarf_alloc_abbrev. All callers updated. | |
1941 | (abbrev_table_add_abbrev): New function. | |
1942 | (abbrev_table_lookup_abbrev): New function. Replaces | |
1943 | dwarf2_lookup_abbrev. All callers updated. | |
1944 | (abbrev_table_read_table): New function. Contents moved here from | |
1945 | dwarf2_read_abbrevs. | |
1946 | (dwarf2_read_abbrevs): Call it. | |
1947 | (abbrev_table_free): New function. | |
1948 | (dwarf2_free_abbrev_table): Call it. | |
1949 | ||
71caed83 SS |
1950 | 2012-06-28 Stan Shebs <[email protected]> |
1951 | ||
1952 | * osdata.c (info_osdata_command): Filter out "Title" columns | |
1953 | from non-MI uses. | |
1954 | * common/linux-osdata.c (struct osdata_type): Add title field. | |
1955 | (osdata_table): Add titles to each entry. | |
1956 | (linux_command_xfer_osdata): Add a column for title data. | |
1957 | ||
37ce89eb SS |
1958 | 2012-06-28 Stan Shebs <[email protected]> |
1959 | ||
1960 | Make logging work for MI. | |
1961 | * NEWS: Mention it. | |
1962 | * interps.h (interp_set_logging_ftype): New typedef. | |
1963 | (struct interp_procs): New field set_logging_proc. | |
1964 | (current_interp_set_logging): Declare. | |
1965 | * interps.c (current_interp_set_logging): New function. | |
1966 | * cli/cli-logging.c: Include interps.h. | |
1967 | (set_logging_redirect): Call current_interp_set_logging. | |
1968 | (pop_output_files): Ditto. | |
1969 | (handle_redirections): Ditto, plus skip ui-out redirect if MI. | |
1970 | * mi/mi-console.h (mi_console_set_raw): Declare. | |
1971 | * mi/mi-console.c (mi_console_set_raw): New function. | |
1972 | * mi/mi-interp.c (saved_raw_stdout): New global. | |
1973 | (mi_set_logging): New function. | |
1974 | (_initialize_mi_interp): Add it to interp procs. | |
1975 | ||
659c9f3a DE |
1976 | 2012-06-28 Doug Evans <[email protected]> |
1977 | ||
a743abeb DE |
1978 | * symtab.c (lookup_symbol_aux_objfile): Use |
1979 | ALL_OBJFILE_PRIMARY_SYMTABS. | |
1980 | ||
659c9f3a DE |
1981 | * gdbtypes.c (lookup_typename): Rename local variable "tmp" to "type". |
1982 | ||
da2d6d3d JK |
1983 | 2012-06-28 Jan Kratochvil <[email protected]> |
1984 | ||
1985 | * common/buffer.c: Include inttypes.h and stdint.h. | |
1986 | (buffer_xml_printf): Use PRId64, PRIu64, PRIx64 and PRIo64. | |
1987 | ||
e5ef252a PA |
1988 | 2012-06-28 Jan Kratochvil <[email protected]> |
1989 | Pedro Alves <[email protected]> | |
1990 | ||
1991 | * gdbthread.h (ALL_THREADS): New macro. | |
1992 | (thread_list): Declare. | |
1993 | * infrun.c (handle_inferior_event) <spurious signal>: Don't keep | |
1994 | going, but instead fall through to the stepping handling. | |
1995 | * linux-nat.c (resume_lwp): New parameter 'signo'. Resume with | |
1996 | the passed in signal. Adjust debug output. | |
1997 | (resume_callback): Rename to ... | |
1998 | (linux_nat_resume_callback): ... this. Pass the thread's last | |
1999 | stop signal, if in "pass" state. | |
2000 | (linux_nat_resume): Adjust to rename. | |
2001 | (stop_wait_callback): New assertion. Don't respawn signals; | |
2002 | instead let the LWP remain with SIGNALLED set. | |
2003 | (linux_nat_wait_1): Remove flushing of pending SIGSTOPs. | |
2004 | * remote.c (append_pending_thread_resumptions): New. | |
2005 | (remote_vcont_resume): Call it. | |
2006 | * target.h (target_resume): Extend comment. | |
2007 | ||
1d7975eb IS |
2008 | 2012-06-28 Iain Sandoe <[email protected]> |
2009 | ||
2010 | * auxv.c (fprint_target_auxv): Handle extended cache data tags. | |
2011 | ||
2e3cf129 DE |
2012 | 2012-06-27 Doug Evans <[email protected]> |
2013 | ||
2014 | * dwarf2read.c (dwarf2_cu): Add ranges_base. | |
2015 | Delete have_addr_base, unused. All uses updated. | |
2016 | (init_cutu_and_read_dies): Process DW_AT_GNU_ranges_base. | |
2017 | (dwarf2_get_pc_bounds): Add ranges_base. | |
2018 | (dwarf2_record_block_ranges): Ditto. | |
2019 | ||
1bb9788d TT |
2020 | 2012-06-27 Tom Tromey <[email protected]> |
2021 | ||
2022 | PR macros/7961: | |
2023 | * varobj.c (varobj_create): Update. | |
2024 | (varobj_set_value): Update. | |
2025 | * tracepoint.c (validate_actionline): Update. | |
2026 | (encode_actions_1): Update. | |
2027 | * parse.c (parse_exp_1): Add 'pc' argument. | |
2028 | (parse_exp_in_context): Add 'pc' argument. Change how | |
2029 | expression_context_pc is set. | |
2030 | (parse_expression): Update. | |
2031 | (parse_field_expression): Update. | |
2032 | * expression.h (parse_exp_1): Update. | |
2033 | * eval.c (parse_to_comma_and_eval): Update. | |
2034 | * breakpoint.c (set_breakpoint_condition): Update. | |
2035 | (update_watchpoint): Update. | |
2036 | (init_breakpoint_sal): Update | |
2037 | (find_condition_and_thread): Update. | |
2038 | (watch_command_1): Update. | |
2039 | (update_breakpoint_locations): Update. | |
2040 | * ada-lang.c (ada_read_renaming_var_value): Update. | |
2041 | (create_excep_cond_exprs): Update. | |
2042 | ||
0bc3a05c DE |
2043 | 2012-06-27 Doug Evans <[email protected]> |
2044 | ||
2045 | * dwarf2read.c (per_cu_header_read_in): Simplify, and handle | |
2046 | type units. | |
2047 | ||
4bdcc0c1 DE |
2048 | 2012-06-26 Doug Evans <[email protected]> |
2049 | ||
2050 | * dwarf2read.c (read_and_check_comp_unit_head): Delete unnecessary | |
2051 | prototype. | |
2052 | (error_check_comp_unit_head): New arg abbrev_section. All callers | |
2053 | updated. | |
2054 | (read_and_check_comp_unit_head): Ditto. | |
2055 | (read_and_check_type_unit_head): Ditto. | |
2056 | ||
ee0bf529 SCR |
2057 | 2012-06-26 Siva Chandra Reddy <[email protected]> |
2058 | ||
2059 | New attribute 'last' for gdb.Symtab_and_line. | |
2060 | * NEWS (Python Scripting): Add entry about the new attribute. | |
2061 | * python/py-symtab.c (salpy_get_last): New function which | |
2062 | implements the get method for the 'last' attribute of | |
2063 | gdb.Symtab_and_line. | |
2064 | (sal_object_getset): Add entry for the 'last' attribute. | |
2065 | ||
1c658ad5 DE |
2066 | 2012-06-26 Doug Evans <[email protected]> |
2067 | ||
09262596 DE |
2068 | * dwarf2read.c (dwo_section_names): Add macinfo_dwo, macro_dwo. |
2069 | (dwo_sections): Add macinfo, macro. | |
2070 | (dwarf2_locate_dwo_sections): Watch for macro sections. | |
2071 | (dwarf_decode_macros): Remove args lh, abfd, section, section_name. | |
2072 | All callers updated. Handle DWO files. | |
2073 | ||
45cfd468 DE |
2074 | * NEWS: Mention new options "set debug dwarf2-read" and |
2075 | "set debug symtab-create". | |
2076 | * dwarf2read.c (dwarf2_read_debug): New static global. | |
2077 | (dwarf2_build_psymtabs_hard): Add debugging printfs. | |
2078 | (process_queue): Ditto. | |
2079 | (process_full_comp_unit): Ditto. | |
2080 | (_initialize_dwarf2_read): Add new option "set debug dwarf2-read". | |
2081 | * elfread.c (elf_symfile_read): Add debugging printf. | |
2082 | * minsyms.c (install_minimal_symbols): Ditto. | |
2083 | * psymtab.c (allocate_psymtab): Ditto. | |
2084 | * symfile.c (allocate_symtab): Ditto. | |
2085 | * symtab.c (symtab_create_debug): New global. | |
2086 | (_initialize_symtab): Add new option "set debug symtab-create". | |
2087 | * symtab.h (symtab_create_debug): Declare. | |
2088 | ||
1c658ad5 DE |
2089 | * dwarf2read.c (lookup_dwo_comp_unit): Enhance comment. |
2090 | (lookup_dwo_type_unit): Ditto. | |
2091 | ||
6fea9e18 L |
2092 | 2012-06-26 Roland McGrath <[email protected]> |
2093 | H.J. Lu <[email protected]> | |
2094 | ||
2095 | * amd64-linux-nat.c: Include <sys/user.h>. | |
2096 | (ps_get_thread_area): Use PTRACE_PEEKUSER to get fs_base/gs_base | |
2097 | if HAVE_STRUCT_USER_REGS_STRUCT_FS_BASE or | |
2098 | HAVE_STRUCT_USER_REGS_STRUCT_GS_BASE is defined. | |
2099 | ||
2100 | * configure.ac: Check if the fs_base and gs_base members of | |
2101 | `struct user_regs_struct' exist. | |
2102 | * config.in: Regenerated. | |
2103 | * configure: Likewise. | |
2104 | ||
adb4fe3b ME |
2105 | 2012-06-25 Michael Eager <[email protected]> |
2106 | ||
2107 | PR python/14291 | |
f782ad9b | 2108 | * python/python.c (gdbpy_write): Check for interrupted output. |
adb4fe3b | 2109 | |
fc51cce1 MGD |
2110 | 2012-06-25 Greta Yorsh <[email protected]> |
2111 | ||
2112 | * arm-tdep.c (arm_in_function_epilogue_p): Recognize POP with a single | |
2113 | register as a stack alignment in ARM mode. | |
2114 | ||
40a73391 JK |
2115 | 2012-06-24 Jan Kratochvil <[email protected]> |
2116 | ||
2117 | Update gnulib to GIT commit a39f53ccb70a613e647e1019fb4c63645220267e. | |
2118 | * gnulib/config.in: Regenerate. | |
2119 | * gnulib/configure: Likewise. | |
2120 | * gnulib/import/m4/extensions.m4: Update it. | |
2121 | * gnulib/import/m4/gnulib-common.m4: Likewise. | |
2122 | * gnulib/import/m4/memmem.m4: Likewise. | |
2123 | * gnulib/import/m4/mmap-anon.m4: Likewise. | |
2124 | * gnulib/import/m4/multiarch.m4: Likewise. | |
2125 | * gnulib/import/stdint.in.h: Likewise. | |
2126 | ||
972daa01 YQ |
2127 | 2012-06-24 Yao Qi <[email protected]> |
2128 | ||
2129 | * corefile.c (write_memory_with_notification): New. | |
2130 | * gdbcore.h: Declare write_memory_with_notification. | |
2131 | * ada-lang.c (ada_value_assign): Replace 'write_memory' and | |
2132 | 'observer_notify_memory_changed' with 'write_memory_with_notification'. | |
2133 | * valops.c (value_assign): Likewise. | |
2134 | * python/py-inferior.c (infpy_write_memory): Call | |
2135 | 'write_memory_with_notification'. | |
2136 | ||
8d6e0714 JK |
2137 | 2012-06-24 Jan Kratochvil <[email protected]> |
2138 | ||
2139 | * cc-with-index.sh: Use also -ex "set auto-load no". | |
2140 | ||
156942c7 DE |
2141 | 2012-06-23 Doug Evans <[email protected]> |
2142 | ||
2143 | PR 14125 | |
2144 | * NEWS: Document additions to .gdb_index. | |
2145 | * dwarf2read.c: #include "gdb/gdb-index.h". | |
2146 | (DW2_GDB_INDEX_SYMBOL_STATIC_SET_VALUE): New macro. | |
2147 | (DW2_GDB_INDEX_SYMBOL_KIND_SET_VALUE): New macro. | |
2148 | (DW2_GDB_INDEX_CU_SET_VALUE): New macro. | |
2149 | (dwarf2_read_index): Recognize version 7. | |
2150 | (dw2_do_expand_symtabs_matching): New args want_specific_block, | |
2151 | block_kind, domain): All callers updated. | |
2152 | (dw2_find_symbol_file): Handle new index CU values. | |
2153 | (dw2_expand_symtabs_matching): Match symbol kind if requested. | |
2154 | (add_index_entry): New args is_static, kind. All callers updated. | |
2155 | (offset_type_compare, uniquify_cu_indices): New functions | |
2156 | (symbol_kind): New function. | |
2157 | (write_psymtabs_to_index): Remove duplicate CU values. | |
2158 | (write_psymtabs_to_index): Write .gdb_index version 7. | |
2159 | ||
352b3eda JB |
2160 | 2012-06-22 Joel Brobecker <[email protected]> |
2161 | ||
2162 | * configure.ac (build_warnings): Add -Wdeclaration-after-statement. | |
2163 | * configure: Regenerate. | |
2164 | ||
2678e2af YQ |
2165 | 2012-06-20 Yao Qi <[email protected]> |
2166 | ||
2167 | * python/py-inferior.c: Update comments of infpy_read_memory | |
2168 | and infpy_write_memory. | |
2169 | ||
95c391b6 TT |
2170 | 2012-06-19 Tom Tromey <[email protected]> |
2171 | ||
2172 | PR exp/9514: | |
2173 | * parser-defs.h (insert_type, insert_type_address_space): Declare. | |
2174 | (push_type_address_space): Remove. | |
2175 | * parse.c (insert_into_type_stack): New function. | |
2176 | (insert_type): Likewise. | |
2177 | (insert_type_address_space): Rename from push_type_address_space. | |
2178 | Insert tp_space_identifier. | |
2179 | * c-exp.y (ptr_operator): New production. | |
2180 | (abs_decl): Use ptr_operator. | |
2181 | (space_identifier): Call insert_type_address_space. | |
2182 | (ptype): Don't use const_or_volatile_or_space_identifier. | |
2183 | (const_or_volatile_noopt): Call insert_type. | |
2184 | (conversion_type_id, conversion_declarator): New productions. | |
2185 | (operator): Use conversion_type_id. | |
2186 | ||
6ac9ef80 DE |
2187 | 2012-06-18 Doug Evans <[email protected]> |
2188 | ||
422d65e7 DE |
2189 | * symtab.h (minimal_symbol): New member created_by_gdb. |
2190 | * elfread.c (elf_symtab_read): Set created_by_gdb for @plt minsym | |
2191 | created by gdb. | |
2192 | * symtab.c (lookup_symbol_in_objfile_from_linkage_name): New function. | |
2193 | (search_symbols): Call it instead of lookup_symbol. | |
2194 | Skip symbols created by gdb. Only scan minsyms if nfiles == 0. | |
2195 | ||
49f6c839 DE |
2196 | * dwarf2expr.c (execute_stack_op): Handle DW_OP_GNU_const_index. |
2197 | Adjust address for DW_OP_GNU_addr_index. | |
2198 | * dwarf2expr.h (dwarf_expr_context): Update comment. | |
2199 | * dwarf2loc.c (locexpr_describe_location_piece): New arg per_cu, | |
2200 | all callers updated. Handle TLS vars described with | |
2201 | DW_OP_GNU_const_index. | |
2202 | (disassemble_dwarf_expression): Handle DW_OP_GNU_addr_index | |
2203 | and DW_OP_GNU_const_index. | |
2204 | * dwarf2read.c (decode_locdesc): Handle DW_OP_GNU_addr_index. | |
2205 | ||
6ac9ef80 DE |
2206 | * block.c (find_block_in_blockvector): Make explicit the fact that we |
2207 | ignore GLOBAL_BLOCK. | |
2208 | ||
4cd18215 TT |
2209 | 2012-06-18 Tom Tromey <[email protected]> |
2210 | ||
2211 | * c-exp.y (operator): Remove trailing space after "delete" and | |
2212 | "delete[]". | |
2213 | ||
a9b8d892 JK |
2214 | 2012-06-18 Mark Kettenis <[email protected]> |
2215 | Jan Kratochvil <[email protected]> | |
2216 | ||
2217 | Switch i386 and derived targets to ON_STACK. | |
2218 | * amd64-dicos-tdep.c (amd64_dicos_push_dummy_code): Remove. | |
2219 | (amd64_dicos_init_abi): Remove its installment. | |
2220 | * dicos-tdep.c (dicos_init_abi): Remove the | |
2221 | set_gdbarch_call_dummy_location call. Update the comment here. | |
2222 | * i386-dicos-tdep.c (i386_dicos_push_dummy_code): Remove. | |
2223 | (i386_dicos_init_abi): Remove its installment. | |
2224 | * i386-tdep.c (i386_push_dummy_code): New function. | |
2225 | (i386_gdbarch_init): Call set_gdbarch_call_dummy_location, install | |
2226 | i386_push_dummy_code. | |
2227 | ||
e2e4d78b JK |
2228 | 2012-06-18 Jan Kratochvil <[email protected]> |
2229 | ||
2230 | Remove stale dummy frames. | |
2231 | * breakpoint.c: Include dummy-frame.h. | |
2232 | (longjmp_breakpoint_ops): New variable. | |
2233 | (update_breakpoints_after_exec, breakpoint_init_inferior): Delete also | |
2234 | bp_longjmp_call_dummy. | |
2235 | (bpstat_what, bptype_string, print_one_breakpoint_location) | |
2236 | (init_bp_location): Support bp_longjmp_call_dummy. | |
2237 | (set_longjmp_breakpoint): Use longjmp_breakpoint_ops. Comment why. | |
2238 | (set_longjmp_breakpoint_for_call_dummy) | |
2239 | (check_longjmp_breakpoint_for_call_dummy, longjmp_bkpt_dtor): New | |
2240 | functions. | |
2241 | (initialize_breakpoint_ops): Initialize longjmp_breakpoint_ops. | |
2242 | * breakpoint.h (enum bptype): New item bp_longjmp_call_dummy. Delete | |
2243 | FIXME comment and extend the other comment for bp_call_dummy. | |
2244 | (set_longjmp_breakpoint_for_call_dummy) | |
2245 | (check_longjmp_breakpoint_for_call_dummy): New declarations. | |
2246 | * dummy-frame.c: Include gdbthread.h. | |
2247 | (pop_dummy_frame_bpt): New function. | |
2248 | (pop_dummy_frame): Call pop_dummy_frame_bpt. | |
2249 | (dummy_frame_discard): New function. | |
2250 | (cleanup_dummy_frames): Update the comment about longjmps. | |
2251 | * dummy-frame.h (dummy_frame_discard): New declaration. | |
2252 | * gdbthread.h (struct thread_info): Extend initiating_frame comment. | |
2253 | * infcall.c (call_function_by_hand): New variable longjmp_b. Call | |
2254 | set_longjmp_breakpoint_for_call_dummy. Chain its breakpoints with BPT. | |
2255 | * infrun.c (handle_inferior_event) <BPSTAT_WHAT_CLEAR_LONGJMP_RESUME>: | |
2256 | Add case 4 comment. Call check_longjmp_breakpoint_for_call_dummy and | |
2257 | keep_going if IS_LONGJMP and there is no other reason to stop. | |
2258 | ||
09d5912c TT |
2259 | 2012-06-18 Greta Yorsh <[email protected]> |
2260 | ||
2261 | * remote-sim.c (sim_command_completer): Initialize | |
2262 | variable 'result'. | |
2263 | ||
1788b2d3 JK |
2264 | 2012-06-17 Jan Kratochvil <[email protected]> |
2265 | ||
2266 | * dwarf2expr.c (execute_stack_op): Support DW_OP_GNU_parameter_ref. | |
2267 | * dwarf2loc.c (call_site_parameter_matches): Support | |
2268 | CALL_SITE_PARAMETER_PARAM_OFFSET. | |
2269 | (needs_dwarf_reg_entry_value): Push stub value. | |
2270 | * dwarf2read.c (read_call_site_scope): New variable origin. Support | |
2271 | CALL_SITE_PARAMETER_PARAM_OFFSET and its DW_AT_abstract_origin. | |
2272 | * gdbtypes.h (enum call_site_parameter_kind): New item | |
2273 | CALL_SITE_PARAMETER_PARAM_OFFSET. | |
2274 | (struct call_site.parameter.u): New field param_offset. | |
2275 | ||
24c5c679 JK |
2276 | 2012-06-17 Jan Kratochvil <[email protected]> |
2277 | ||
2278 | Code cleanup: Generalize call_site.parameter key. | |
2279 | * dwarf2expr.c (execute_stack_op) <DW_OP_GNU_entry_value>: Remove | |
2280 | variable dwarf_reg. New variable kind_u. Update parameters to | |
2281 | push_dwarf_reg_entry_value. | |
2282 | (ctx_no_push_dwarf_reg_entry_value): Update parameters. | |
2283 | * dwarf2expr.h (enum call_site_parameter_kind) | |
2284 | (union call_site_parameter_u): Forward declarations. | |
2285 | (struct dwarf_expr_context_funcs): Update parameters and their | |
2286 | description for push_dwarf_reg_entry_value. | |
2287 | (ctx_no_push_dwarf_reg_entry_value): Update parameters. | |
2288 | * dwarf2loc.c (call_site_parameter_matches): New function. | |
2289 | (dwarf_expr_reg_to_entry_parameter): Update parameters and their | |
2290 | description. Use call_site_parameter_matches. | |
2291 | (dwarf_expr_push_dwarf_reg_entry_value, value_of_dwarf_reg_entry): | |
2292 | Update parameters and their description. | |
2293 | (value_of_dwarf_block_entry): Remove variables dwarf_reg and fb_offset. | |
2294 | New variable kind_u. Adjust the caller for updated parameters. | |
2295 | (needs_dwarf_reg_entry_value): Update parameters. | |
2296 | * dwarf2read.c (read_call_site_scope): New variable loc. Use it | |
2297 | instead of attr. Update for the changed fields of struct | |
2298 | call_site_parameter. | |
2299 | * gdbtypes.h: Include dwarf2expr.h. | |
2300 | (enum call_site_parameter_kind): New. | |
2301 | (struct call_site.parameter): New field kind. Wrap dwarf_reg and | |
2302 | fb_offset into new union u. | |
2303 | ||
ac142d96 L |
2304 | 2012-06-16 H.J. Lu <[email protected]> |
2305 | ||
2306 | * amd64-tdep.c (amd64_x32_analyze_stack_align): New function. | |
2307 | (amd64_analyze_prologue): Call amd64_x32_analyze_stack_align | |
2308 | for x32. | |
2309 | ||
ba224c70 L |
2310 | 2012-06-16 H.J. Lu <[email protected]> |
2311 | ||
2312 | * amd64-linux-nat.c (compat_x32_clock_t): New. | |
2313 | (compat_x32_siginfo_t): Likewise. | |
2314 | (compat_x32_siginfo_from_siginfo): Likewise. | |
2315 | (siginfo_from_compat_x32_siginfo): Likewise. | |
2316 | (amd64_linux_siginfo_fixup): Call compat_x32_siginfo_from_siginfo | |
2317 | and siginfo_from_compat_x32_siginfo for x32. | |
2318 | ||
7ecbc825 HZ |
2319 | 2012-06-15 Hui Zhu <[email protected]> |
2320 | ||
2321 | * tracepoint.c (tfile_xfer_partial): Add a lseek. | |
2322 | ||
233dfcf0 L |
2323 | 2012-06-15 H.J. Lu <[email protected]> |
2324 | ||
2325 | * amd64-linux-nat.c (ps_get_thread_area): Check bits_per_word | |
2326 | instead of gdbarch_ptr_bit. | |
2327 | * amd64-nat.c (amd64_native_gregset_reg_offset): Likewise. | |
2328 | (amd64_supply_native_gregset): Likewise. | |
2329 | (amd64_collect_native_gregset): Likewise. | |
2330 | * amd64-tdep.c (amd64_supply_fxsave): Likewise. | |
2331 | (amd64_supply_xsave): Likewise. | |
2332 | (amd64_collect_fxsave): Likewise. | |
2333 | (amd64_collect_xsave): Likewise. | |
2334 | ||
6da38f42 L |
2335 | 2012-06-15 H.J. Lu <[email protected]> |
2336 | ||
2337 | * amd64-linux-nat.c (AMD64_LINUX_X32_DS): New. | |
2338 | (amd64_linux_read_description): Check DS segment register for | |
2339 | x32 process. | |
2340 | ||
663b969e TT |
2341 | 2012-06-15 Tom Tromey <[email protected]> |
2342 | ||
2343 | * dwarf2read.c (dw2_find_symbol_file): Unconditionally use | |
2344 | init_cutu_and_read_dies. | |
2345 | ||
d6f05027 IS |
2346 | 2012-06-15 Iain Sandoe <[email protected]> |
2347 | ||
2348 | * MAINTAINERS (Write After Approval): Add myself to the list. | |
2349 | ||
6598ed07 TT |
2350 | 2012-06-15 Tom Tromey <[email protected]> |
2351 | ||
2352 | * valops.c (value_find_oload_method_list): Now static. | |
2353 | * value.h (value_find_oload_method_list): Don't declare. | |
2354 | ||
2b214ea6 TT |
2355 | 2012-06-15 Tom Tromey <[email protected]> |
2356 | ||
2357 | * valops.c (find_overload_match): Use value_ind. | |
2358 | ||
a210c238 MR |
2359 | 2012-06-15 Maciej W. Rozycki <[email protected]> |
2360 | ||
2361 | * infrun.c (handle_inferior_event): Correct indentation. | |
2362 | ||
3771a44c DE |
2363 | 2012-06-14 Doug Evans <[email protected]> |
2364 | ||
2365 | * dwarf2loc.c (debug_loc_kind): Add DEBUG_LOC_START_LENGTH. | |
2366 | (DEBUG_LOC_START_END): Renamed from DEBUG_LOC_NORMAL. | |
2367 | All uses updated. | |
2368 | (decode_debug_loc_dwo_addresses): New arg "byte_order". All callers | |
2369 | updated. Handle DEBUG_LOC_START_LENGTH. | |
2370 | (dwarf2_find_location_expression): Handle DEBUG_LOC_START_LENGTH. | |
2371 | (loclist_describe_location): Ditto. | |
2372 | ||
1c5a993e MR |
2373 | 2012-06-14 Maciej W. Rozycki <[email protected]> |
2374 | ||
2375 | PR backtrace/13866 | |
2376 | * infrun.c (handle_inferior_event): Re-fetch frame and gdbarch | |
2377 | after hiding inline functions. | |
2378 | ||
0b155465 JB |
2379 | 2012-06-13 Joel Brobecker <[email protected]> |
2380 | ||
2381 | * inf-ttrace.c (_initialize_hppa_hpux_nat): Rename into | |
2382 | _initialize_inf_ttrace. | |
2383 | ||
45717bac JB |
2384 | 2012-06-13 Joel Brobecker <[email protected]> |
2385 | ||
2386 | * ia64-hpux-nat.c (_initialize_ia64_hpux_nat): Renames | |
2387 | _initialize_hppa_hpux_nat. | |
2388 | ||
34370865 JB |
2389 | 2012-06-13 Joel Brobecker <[email protected]> |
2390 | ||
2391 | * remote-sim.c (sim_command_completer): Change type of return | |
2392 | value to "VEC (char_ptr) *". Adjust implementation accordingly. | |
2393 | ||
284c5a60 MK |
2394 | 2012-06-13 Mark Kettenis <[email protected]> |
2395 | Jan Kratochvil <[email protected]> | |
2396 | ||
2397 | PR tdep/14222 | |
2398 | * i386-tdep.c (i386_push_dummy_call): Unconditionally align the | |
2399 | stack on a 16-byte boundary. | |
2400 | ||
2535757a TT |
2401 | 2012-06-13 Kaushik Srenevasan <[email protected]> |
2402 | ||
2403 | * jit.c (finalize_symtab): Set function's return type to 'void' by | |
2404 | default. | |
2405 | ||
fff4548b MK |
2406 | 2012-06-13 Mark Kettenis <[email protected]> |
2407 | H.J. Lu <[email protected]> | |
2408 | ||
5a83521a MK |
2409 | * amd64-linux-tdep.c (amd64_linux_init_abi_common): New function. |
2410 | Move bits common to both the classic LP64 and the new x32 ILP32 | |
2411 | ABI here. | |
2412 | (amd64_linux_init_abi): Call amd64_linux_init_abi_common. | |
2413 | (amd64_x32_linux_init_abi): New function. | |
2414 | (_initialize_amd64_linux_tdep): Register osabi for bfd_mach_x64_32 | |
2415 | subtype. | |
2416 | ||
fff4548b MK |
2417 | * i386-tdep.h (i386_pseudo_register_name): New prototype. |
2418 | * i386-tdep.c (i386_pseudo_register_name): Make public. | |
2419 | * amd64-tdep.h (amd64_x32_init_abi): New prototype. | |
2420 | * amd64-tdep.c (amd64_dword_names): Add "eip". | |
2421 | (amd64_x32_pseudo_register_type): New function | |
2422 | (amd64_x32_init_abi): New function. | |
2423 | ||
dd80ea3c JK |
2424 | 2012-06-13 Jan Kratochvil <[email protected]> |
2425 | ||
2426 | PR build/14003 | |
2427 | * inferior.h (struct inferior_suspend_state): Comment out. | |
2428 | (struct inferior): Comment out the field suspend. | |
2429 | * infrun.c (struct infcall_suspend_state): Comment out the field | |
2430 | inferior_suspend. | |
2431 | (save_infcall_suspend_state, restore_infcall_suspend_state): Comment | |
2432 | out its assignment. | |
2433 | ||
50af5481 JK |
2434 | 2012-06-13 Jan Kratochvil <[email protected]> |
2435 | ||
2436 | PR c++/14177 - Fix parsing TYPENAME:: in parentheses. | |
2437 | * c-exp.y (classify_inner_name): Remove caller assumptions in the | |
2438 | function comment. Return ERROR for unresolved cases. Implement | |
2439 | returning proper NAME. | |
2440 | (yylex): Accept also NAME from classify_inner_name. | |
2441 | * cp-namespace.c (cp_lookup_nested_type): Rename to ... | |
2442 | (cp_lookup_nested_symbol): ... here. Return any found symbol, not just | |
2443 | LOC_TYPEDEF type. | |
2444 | * cp-support.h (cp_lookup_nested_type): Update its declaration. | |
2445 | ||
d55637df TT |
2446 | 2012-06-13 Tom Tromey <[email protected]> |
2447 | ||
2448 | * breakpoint.c (condition_completer): New function. | |
2449 | (_initialize_breakpoint): Use it. | |
2450 | * value.c (complete_internalvar): New function. | |
2451 | * value.h (complete_internalvar): Declare. | |
2452 | ||
49c4e619 TT |
2453 | 2012-06-13 Tom Tromey <[email protected]> |
2454 | ||
2455 | * ada-lang.c (ada_make_symbol_completion_list): Return a VEC. | |
2456 | * breakpoint.c (catch_syscall_completer): Return a VEC. | |
2457 | * cli/cli-cmds.c (complete_command): Update. | |
2458 | * cli/cli-decode.c (complete_on_cmdlist): Return a VEC. | |
2459 | (complete_on_enum): Likewise. | |
2460 | * command.h: Include gdb_vecs.h. | |
2461 | (completer_ftype): Change return type. | |
2462 | (complete_on_cmdlist, complete_on_enum): Likewise. | |
2463 | * completer.c (noop_completer, filename_completer) | |
2464 | (location_completer): Return a VEC. | |
2465 | (add_struct_fields): Remove 'nextp' argument. Change 'output' | |
2466 | to a VEC. | |
2467 | (expression_completer, complete_line_internal, complete_line) | |
2468 | (command_completer): Return a VEC. | |
2469 | (gdb_completion_word_break_characters, line_completion_function): | |
2470 | Update. | |
2471 | * completer.h: Include gdb_vecs.h. | |
2472 | (complete_line, noop_completer, filename_completer) | |
2473 | (expression_completer, location_completer, command_completer): | |
2474 | Update. | |
2475 | * f-lang.c (f_word_break_characters): Return a VEC. | |
2476 | * interps.c (interpreter_completer): Return a VEC. | |
2477 | * language.h (struct language_defn) | |
2478 | <la_make_symbol_completion_list>: Return a VEC. | |
2479 | * python/py-cmd.c (cmdpy_completer): Return a VEC. | |
2480 | * symtab.c (free_completion_list): Take a VEC. | |
2481 | (return_val_size, return_val_index): Remove. | |
2482 | (return_val): Now a VEC. | |
2483 | (completion_list_add_name): Update. | |
2484 | (default_make_symbol_completion_list_break_on) | |
2485 | (default_make_symbol_completion_list, make_symbol_completion_list) | |
2486 | (make_symbol_completion_list_fn, make_file_symbol_completion_list): | |
2487 | Return a VEC. | |
2488 | (add_filename_to_list): Update. | |
2489 | (struct add_partial_filename_data) <list_used, list_alloced>: Remove. | |
2490 | <list>: Now a VEC. | |
2491 | (maybe_add_partial_symtab_filename): Update. | |
2492 | (make_source_files_completion_list): Return a VEC. | |
2493 | * symtab.h (default_make_symbol_completion_list_break_on) | |
2494 | (default_make_symbol_completion_list, make_symbol_completion_list) | |
2495 | (make_symbol_completion_list_fn, make_file_symbol_completion_list) | |
2496 | (make_source_files_completion_list): Update. | |
2497 | ||
625e8578 TT |
2498 | 2012-06-13 Tom Tromey <[email protected]> |
2499 | ||
2500 | * breakpoint.c (add_catch_command): Use completer_ftype. | |
2501 | * breakpoint.h: Include command.h. | |
2502 | (add_catch_command): Use completer_ftype. | |
2503 | * cli/cli-decode.c (set_cmd_completer): Use completer_ftype. | |
2504 | * cli/cli-decode.h (struct cmd_list_element) <completer>: | |
2505 | Use completer_ftype. | |
2506 | * command.h (completer_ftype): New typedef. | |
2507 | (set_cmd_completer): Use it. | |
2508 | * python/py-cmd.c (struct cmdpy_completer) <completer>: Use | |
2509 | completer_ftype. | |
2510 | ||
5eb3b062 PA |
2511 | 2012-06-13 Pedro Alves <[email protected]> |
2512 | ||
2513 | Partial revert of previous change. | |
2514 | ||
2515 | * serial.c (scb_base): New global. | |
2516 | (serial_for_fd): New. | |
2517 | (serial_open, serial_fdopen_ops): Link new serial in open serials | |
2518 | chain. | |
2519 | (do_serial_close): Unlink serial from the open serials chain. | |
2520 | ||
8b3ee56d PA |
2521 | 2012-06-12 Pedro Alves <[email protected]> |
2522 | ||
2523 | * infrun.c (infrun_thread_stop_requested_callback): Don't switch | |
2524 | threads here. | |
2525 | (prepare_for_detach): No longer context switch here in non-stop | |
2526 | mode. | |
2527 | (fetch_inferior_event): Ditto. | |
2528 | (handle_inferior_event) <STOP_QUIETLY || NO_STOP_QUIETLY>: Switch | |
2529 | to the event thread before removing breakpoints. Switch to the | |
2530 | event thread before inserting breakpoints and resuming. | |
2531 | (handle_inferior_event) <TARGET_WAITKIND_SPURIOUS>: Switch to the | |
2532 | event thread before resuming. | |
2533 | (handle_inferior_event) <stepping_past_singlestep_breakpoint>: | |
2534 | Switch to the event thread before removing breakpoints. | |
2535 | ||
5d60742e EZ |
2536 | 2012-06-12 Eli Zaretskii <[email protected]> |
2537 | ||
2538 | * infcmd.c (construct_inferior_arguments) [__MINGW32__]: Quote | |
2539 | special characters correctly for the Windows shells. See | |
2540 | http://sourceware.org/ml/gdb/2012-06/msg00047.html for the bug | |
2541 | report. | |
2542 | [!__MINGW32__]: Remove extra double quote character from special | |
2543 | characters. | |
2544 | ||
a6feecf7 SS |
2545 | 2012-06-11 Stan Shebs <[email protected]> |
2546 | ||
2547 | * ui-out.h: Remove #if 0 declarations. | |
2548 | * ui-out.c: Remove #if 0 functions. | |
2549 | ||
ddefb60f PA |
2550 | 2012-06-11 Pedro Alves <[email protected]> |
2551 | ||
2552 | * ser-base.c (run_async_handler_and_reschedule): New. | |
2553 | (fd_event, push_event): Use it. | |
2554 | * serial.c (serial_open, serial_fdopen_ops): Set the initial | |
2555 | reference count to 1. | |
2556 | (do_serial_close): Set the bufp field to NULL. Use serial_unref | |
2557 | instead of xfree. | |
2558 | (serial_is_open, serial_ref, serial_unref): New. | |
2559 | * serial.h (serial_open): Adjust comment. | |
2560 | (serial_is_open): Declare. | |
2561 | (serial_close): Adjust comment. | |
2562 | (serial_ref, serial_unref) Declare. | |
2563 | (struct serial): New field 'refcnt'. | |
2564 | ||
d5ad6aa5 PA |
2565 | 2012-06-11 Pedro Alves <[email protected]> |
2566 | ||
2567 | Remove #if 0'd "connect" command, and unnecessary associated | |
2568 | refcounting and serial reuse bits. | |
2569 | ||
2570 | * serial.h (struct serial): Remove fields 'next' and 'refcnt'. | |
2571 | * serial.c (last_serial_opened): Delete. | |
2572 | (scb_base): Delete. | |
2573 | (serial_open): Adjust. | |
2574 | (serial_for_fd): Delete. | |
2575 | (serial_fdopen_ops, do_serial_close): Adjust. | |
2576 | (serial_fdopen_ops): Adjust. | |
2577 | ||
318aa544 PA |
2578 | 2012-06-11 Pedro Alves <[email protected]> |
2579 | ||
2580 | * serial.c (do_serial_close): Remove early return when SCB is | |
2581 | null. | |
2582 | ||
07261596 TT |
2583 | 2012-06-11 Tom Tromey <[email protected]> |
2584 | ||
2585 | * dwarf2read.c (dw2_get_file_names_reader): Ignore partial units. | |
2586 | ||
cc80f267 JK |
2587 | 2012-06-11 Jan Kratochvil <[email protected]> |
2588 | ||
2589 | Fix regression by the "ambiguous linespec" series. | |
2590 | * breakpoint.c (parse_breakpoint_sals): New variable cursal. Use | |
2591 | get_last_displayed_symtab and get_last_displayed_line and depending | |
2592 | on CURSAL. | |
2593 | ||
356d9f9d TT |
2594 | 2012-06-11 Tom Tromey <[email protected]> |
2595 | ||
2596 | * dwarf2read.c (dw2_get_primary_filename_reader): New function. | |
2597 | (dw2_find_symbol_file): Use it. | |
2598 | ||
232b8704 ME |
2599 | 2012-06-11 Michael Eager <[email protected]> |
2600 | ||
2601 | * mips-linux-tdep.c (mips_gdb_signal_from_target): New | |
2602 | * mips-linux-tdep.h (mips_signals): New | |
2603 | ||
e81a37f7 TT |
2604 | 2012-06-11 Tom Tromey <[email protected]> |
2605 | ||
2606 | * infrun.c (handle_inferior_event) | |
2607 | <BPSTAT_WHAT_SET_LONGJMP_RESUME>: Don't delete the step-resume | |
2608 | breakpoint. | |
2609 | <BPSTAT_WHAT_CLEAR_LONGJMP_RESUME>: Remove longjmp logic; use | |
2610 | exception logic in all cases. Update comments. | |
2611 | (insert_longjmp_resume_breakpoint): Set the exception resume | |
2612 | breakpoint. | |
2613 | ||
2e81047f MR |
2614 | 2012-06-11 Maciej W. Rozycki <[email protected]> |
2615 | ||
2616 | * mips-tdep.c (mips_push_dummy_code): Handle microMIPS code. | |
2617 | ||
4e32eda7 SCR |
2618 | 2012-06-09 Siva Chandra Reddy <[email protected]> |
2619 | ||
2620 | * valarith.c (binop_types_user_defined_p): Fix a typo. | |
2621 | ||
18648a37 | 2622 | 2012-06-08 Yao Qi <[email protected]> |
f782ad9b | 2623 | Chung-Lin Tang <[email protected]> |
18648a37 YQ |
2624 | |
2625 | * arch-utils.c (default_return_in_first_hidden_param_p): New. | |
2626 | * arch-utils.h: Declare. | |
2627 | * gdbarch.sh: Add return_in_first_hidden_param_p. | |
2628 | * gdbarch.c, gdbarch.h: Regenerated. | |
2629 | * infcall.c (call_function_by_hand): Call | |
2630 | gdbarch_return_in_first_hidden_param_p instead of | |
2631 | language_pass_by_reference. | |
2632 | ||
2633 | * m68k-tdep.c (m68k_return_in_first_hidden_param_p): New. | |
2634 | (m68k_gdbarch_init): Install m68k_return_in_first_hidden_param_p. | |
2635 | * sh-tdep.c (sh_return_in_first_hidden_param_p): New. | |
2636 | (sh_gdbarch_init): Install sh_return_in_first_hidden_param_p. | |
2637 | * tic6x-tdep.c (tic6x_push_dummy_call): Remove local variable | |
2638 | `cplus_return_struct_by_reference'. | |
2639 | (tic6x_return_value): Handle language cplusplus. | |
2640 | (tic6x_return_in_first_hidden_param_p): New. | |
2641 | (tic6x_gdbarch_init): Install tic6x_return_in_first_hidden_param_p. | |
2642 | ||
034e5797 DE |
2643 | 2012-06-07 Doug Evans <[email protected]> |
2644 | ||
2645 | * dwarf2read.c (dwarf2_cu): Add comment. | |
2646 | ||
6a00aa1e MR |
2647 | 2012-06-06 Maciej W. Rozycki <[email protected]> |
2648 | ||
2649 | * mips-tdep.c (mips_pseudo_register_type): Remove tdep local | |
2650 | variable. | |
2651 | (mips_eabi_push_dummy_call): Likewise. | |
2652 | (mips_n32n64_push_dummy_call): Likewise. | |
2653 | (mips_o32_push_dummy_call): Likewise. | |
2654 | (mips_o64_push_dummy_call): Likewise. | |
2655 | ||
eaa05d59 MR |
2656 | 2012-06-06 Maciej W. Rozycki <[email protected]> |
2657 | ||
2658 | * mips-tdep.c (mips_convert_register_p): Correct coding style. | |
2659 | ||
de13fcf2 MR |
2660 | 2012-06-06 Maciej W. Rozycki <[email protected]> |
2661 | ||
2662 | * mips-tdep.c (mips_pseudo_register_type): Use | |
2663 | mips_float_register_p. | |
2664 | ||
c3a01a22 PA |
2665 | 2012-06-06 Pedro Alves <[email protected]> |
2666 | ||
2667 | * infrun.c (handle_inferior_event): Remove calls to | |
2668 | reinit_frame_cache that follow a context_switch call. | |
2669 | ||
d25f45d9 PA |
2670 | 2012-06-06 Pedro Alves <[email protected]> |
2671 | ||
2672 | * infrun.c (handle_inferior_event) <deferred_step_ptid>: Use | |
2673 | context_switch and remove stale comment. | |
2674 | ||
359f5fe6 PA |
2675 | 2012-06-06 Pedro Alves <[email protected]> |
2676 | ||
2677 | * infrun.c (struct execution_control_state): Remove | |
2678 | `new_thread_event' field. | |
2679 | (handle_inferior_event): Simplify new threads handling; don't | |
2680 | resume the inferior if we find a new thread. | |
2681 | ||
2d4c29c5 TS |
2682 | 2012-06-06 Thomas Schwinge <[email protected]> |
2683 | ||
2684 | * NEWS: Document the deprecation of SH's 'regs' command. | |
2685 | * inferior.h (all_registers_info): Add function declaration. | |
2686 | * sh-tdep.c (sh_show_regs): Remove variable. | |
2687 | (sh_generic_show_regs, sh3_show_regs, sh2e_show_regs, sh2a_show_regs) | |
2688 | (sh2a_nofpu_show_regs, sh3e_show_regs, sh3_dsp_show_regs) | |
2689 | (sh4_show_regs, sh4_nofpu_show_regs, sh_dsp_show_regs) | |
2690 | (sh_show_regs_command): Remove functions. | |
2691 | (sh_gdbarch_init): Don't set sh_show_regs. | |
2692 | (_initialize_sh_tdep): Make the 'regs' command an deprecated alias to | |
2693 | 'info all-registers'. | |
2694 | * sh64-tdep.c (sh64_show_media_regs, sh64_show_compact_regs) | |
2695 | (sh64_show_regs): Remove functions. | |
2696 | * sh64-tdep.h (sh64_show_regs): Remove function declaration. | |
2697 | ||
f5f1cdb6 JK |
2698 | 2012-06-06 Jan Kratochvil <[email protected]> |
2699 | ||
2700 | * configure.ac: Move development=true below AC_INIT. | |
2701 | * configure: Regenerate. | |
2702 | ||
bf6309af SS |
2703 | 2012-06-05 Stan Shebs <[email protected]> |
2704 | ||
2705 | * mi/mi-interp.c (mi_interpreter_init): Set raw_stdout from | |
2706 | gdb_stdout. | |
2707 | ||
45aa4659 JK |
2708 | 2012-06-05 Siddhesh Poyarekar <[email protected]> |
2709 | ||
2710 | * corefile.c (read_memory, read_stack, write_memory): Accept LEN | |
2711 | argument as ssize_t. | |
2712 | * gdbcore.h (read_memory, read_stack, write_memory): Likewise. | |
2713 | * remote.c (remote_write_bytes_aux, remote_write_bytes): Likewise. | |
2714 | * target.c (target_read_stack, target_write_memory) | |
2715 | (target_write_raw_memory): Likewise. | |
2716 | * target.h (target_read_stack, target_write_memory) | |
2717 | (target_write_raw_memory): Likewise. | |
2718 | ||
1b162304 JK |
2719 | 2012-06-05 Jan Kratochvil <[email protected]> |
2720 | ||
2721 | * symfile-mem.c: Change gdb_static_assert to ssize_t. | |
2722 | (target_read_memory_bfd): Cast gdb_assert LEN to ssize_t. | |
2723 | * target.c (target_read_memory): Change LEN to ssize_t. | |
2724 | * target.h (target_read_memory): Change LEN to ssize_t. | |
2725 | ||
8556afb4 PA |
2726 | 2012-06-05 Pedro Alves <[email protected]> |
2727 | ||
2728 | PR backtrace/13866 | |
2729 | ||
2730 | * breakpoint.c (until_break_command): Only fetch the selected | |
2731 | frame after decode_line_1. | |
2732 | ||
fb139f32 PA |
2733 | 2012-06-05 Joakim Tjernlund <[email protected]> |
2734 | ||
2735 | * solib-svr4.c (enable_break): Don't fallback to setting the solib | |
2736 | event breakpoint at _start, __start or main if a program | |
2737 | interpreter is not found. | |
2738 | ||
a8e1bb34 JB |
2739 | 2012-06-05 Joel Brobecker <[email protected]> |
2740 | ||
2741 | * windows-tdep.h (windows_iterate_over_objfiles_in_search_order): | |
2742 | Add declaration. | |
2743 | * windows-tdep.c: #include "objfiles.h". | |
2744 | (windows_iterate_over_objfiles_in_search_order): New function. | |
2745 | * amd64-windows-tdep.c (amd64_windows_init_abi): Set | |
2746 | iterate_over_objfiles_in_search_order gdbarch method to | |
2747 | windows_iterate_over_objfiles_in_search_order. | |
2748 | * i386-cygwin-tdep.c (i386_cygwin_init_abi): Likewise. | |
2749 | ||
19630284 JB |
2750 | 2012-06-05 Joel Brobecker <[email protected]> |
2751 | ||
2752 | * gdbarch.sh: Add generation of | |
2753 | "iterate_over_objfiles_in_search_order_cb_ftype" typedef in | |
2754 | gdbarch.h. Add include of "objfiles.h" in gdbarch.c. | |
2755 | (iterate_over_objfiles_in_search_order): New gdbarch method. | |
2756 | * gdbarch.h, gdbarch.c: Regenerate. | |
2757 | * objfiles.h (default_iterate_over_objfiles_in_search_order): | |
2758 | Add declaration. | |
2759 | * objfiles.c (default_iterate_over_objfiles_in_search_order): | |
2760 | New function. | |
2761 | * symtab.c (lookup_symbol_aux_objfile): New function, extracted | |
2762 | out of lookup_symbol_aux_symtabs. | |
2763 | (lookup_symbol_aux_symtabs): Replace extracted-out code by | |
2764 | call to lookup_symbol_aux_objfile. | |
2765 | (struct global_sym_lookup_data): New type. | |
2766 | (lookup_symbol_global_iterator_cb): New function. | |
2767 | (lookup_symbol_global): Search for symbol using | |
2768 | gdbarch_iterate_over_objfiles_in_search_order and | |
2769 | lookup_symbol_global_iterator_cb. | |
2770 | * findvar.c (struct minsym_lookup_data): New type. | |
2771 | (minsym_lookup_iterator_cb): New function. | |
2772 | (default_read_var_value) [case LOC_UNRESOLVED]: Resolve the | |
2773 | symbol's address via gdbarch_iterate_over_objfiles_in_search_order | |
2774 | and minsym_lookup_iterator_cb. | |
2775 | ||
67ff19f7 JB |
2776 | 2012-06-05 Joel Brobecker <[email protected]> |
2777 | ||
2778 | Revert the following patch: | |
2779 | * findvar.c (default_read_var_value): For LOC_UNRESOLVED symbols, | |
2780 | try locating the symbol in the symbol's own objfile first, before | |
2781 | extending the search to all objfiles. | |
2782 | * symtab.c (lookup_symbol_aux_objfile): New function, extracted | |
2783 | out of lookup_symbol_aux_symtabs. | |
2784 | (lookup_symbol_aux_symtabs): Add new parameter "exclude_objfile". | |
2785 | Replace extracted-out code by call to lookup_symbol_aux_objfile. | |
2786 | Do not search EXCLUDE_OBJFILE. | |
2787 | (lookup_static_symbol_aux): Update call to lookup_symbol_aux_symtabs. | |
2788 | (lookup_symbol_global): Search for matches in the block's objfile | |
2789 | first, before searching all other objfiles. | |
2790 | ||
ccab2054 JB |
2791 | 2012-06-05 Joel Brobecker <[email protected]> |
2792 | ||
2793 | * breakpoint.c (find_condition_and_thread): Stop parsing | |
2794 | as soon as the first invalid keyword is found. | |
2795 | ||
e23d4a9c JB |
2796 | 2012-06-05 Joel Brobecker <[email protected]> |
2797 | ||
2798 | * copyright.py (EXCLUDE_LIST): Add 'gdb/CONTRIBUTE' to list. | |
2799 | ||
70160166 JB |
2800 | 2012-06-05 Joel Brobecker <[email protected]> |
2801 | ||
2802 | * config/djgpp/djcheck.sh: Add copyright header. | |
2803 | ||
399501a5 JB |
2804 | 2012-06-05 Joel Brobecker <[email protected]> |
2805 | ||
2806 | * copyright.py (update_files, main): Fix path to update-copyright | |
2807 | script. | |
2808 | ||
3770a159 JB |
2809 | 2012-06-05 Joel Brobecker <[email protected]> |
2810 | ||
2811 | * copyright.py (MULTIPLE_COPYRIGHT_HEADERS): New constant. | |
2812 | (main): Add MULTIPLE_COPYRIGHT_HEADERS to the list of files | |
2813 | for which a reminder to update by hand is printed. | |
2814 | ||
4aad0dfc DE |
2815 | 2012-06-04 Doug Evans <[email protected]> |
2816 | ||
2817 | * buildsym.c (make_blockvector): Add comment. | |
2818 | ||
1f8cf220 PA |
2819 | 2012-06-04 Pedro Alves <[email protected]> |
2820 | ||
2821 | * arch-utils.c (default_gdb_signal_from_target): Delete. | |
2822 | * arch-utils.h (default_gdb_signal_from_target): Delete. | |
2823 | * corelow.c (core_open) <signal mapping>: Extended comment. Check | |
2824 | gdbarch_gdb_signal_from_target_p. | |
2825 | * gdbarch.sh (gdb_signal_from_target): Make it an M method (with | |
2826 | predicate). | |
2827 | * gdbarch.h: Regenerate. | |
2828 | * gdbarch.c: Regenerate. | |
2829 | ||
86b49880 PA |
2830 | 2012-06-04 Pedro Alves <[email protected]> |
2831 | ||
2832 | * gdbarch.sh (gdb_signal_from_target): Mention that the | |
2833 | implementation of the method must be host independent. | |
2834 | * gdbarch.h: Regenerate. | |
2835 | ||
fe78531d JK |
2836 | 2012-06-04 Jan Kratochvil <[email protected]> |
2837 | ||
2838 | * symfile-mem.c: 3 new gdb_static_assert for target_read_memory_bfd | |
2839 | parameters. | |
2840 | (target_read_memory_bfd): New function. | |
2841 | (symbol_file_add_from_memory): Use it. | |
2842 | ||
d790cf0a DE |
2843 | 2012-06-03 Doug Evans <[email protected]> |
2844 | ||
78e5175a DE |
2845 | * symtab.c (lookup_global_symbol_from_objfile): Only scan blockvector |
2846 | of primary symtab. | |
2847 | (basic_lookup_transparent_type): Ditto. | |
2848 | ||
d790cf0a DE |
2849 | * objfiles.h (ALL_OBJFILE_PRIMARY_SYMTABS): New macro. |
2850 | (ALL_PRIMARY_SYMTABS): Use it. | |
2851 | (ALL_PSPACE_PRIMARY_SYMTABS): Ditto. | |
2852 | * dwarf2read.c (dw2_find_symbol_file): Ditto. | |
2853 | * linespec.c (iterate_over_all_matching_symtabs): Ditto. | |
2854 | * symtab.c (lookup_symbol_aux_objfile): Ditto. | |
2855 | (basic_lookup_transparent_type): Ditto. | |
2856 | ||
c6e5ee5e SDJ |
2857 | 2012-06-02 Sergio Durigan Junior <[email protected]> |
2858 | ||
2859 | * symtab.c (symbol_demangled_name): New variable `dem_name'. Use | |
2860 | it to optimize resolution of demangled name. | |
2861 | ||
a68ffae9 JK |
2862 | 2012-06-01 Jan Kratochvil <[email protected]> |
2863 | ||
2864 | * configure.ac (development): Define new variable. | |
2865 | Call AC_CHECK_LIB for mcheck if $development. | |
2866 | (ERROR_ON_WARNING): Enable it by default only if $development. | |
2867 | * config.in: Regenerate. | |
2868 | * configure: Regenerate. | |
2869 | ||
5299c1c4 JK |
2870 | 2012-06-01 Siddhesh Poyarekar <[email protected]> |
2871 | ||
2872 | * target.c (target_read_memory): Make LEN argument as size_t. | |
2873 | * target.h (target_read_memory): Likewise. | |
2874 | ||
2875 | 2012-06-01 Jan Kratochvil <[email protected]> | |
7c71816c JK |
2876 | |
2877 | * tilegx-linux-tdep.c (tilegx_l): Use ULL for 64-bit values. | |
2878 | ||
0c56f59b EBM |
2879 | 2012-05-31 Edjunior Machado <[email protected]> |
2880 | ||
2881 | * ppc-linux-nat.c (have_ptrace_booke_interface): Disable ptrace | |
2882 | BookE interface for PowerPC server processors if not available | |
2883 | in the Linux Kernel. | |
2884 | ||
71bdabee KS |
2885 | 2012-05-31 Keith Seitz <[email protected]> |
2886 | ||
2887 | * linespec.c (decode_objc): Add cleanup to free | |
2888 | INFO.FILE_SYMTABS. | |
2889 | (find_linespec_symbols): Add cleanup to free CLASSES. | |
2890 | * symfile.c (find_separate_debug_file_by_debuglink): Add | |
2891 | cleanup to free DEBUGLINK. | |
2892 | * ui-out.c (clear_header_list): No need to check if | |
2893 | HEADER_NEXT.COLHDR is NULL. | |
2894 | Free HEADER_NEXT.COL_NAME. | |
2895 | ||
acbd605d MGD |
2896 | 2012-05-31 Matthew Gretton-Dann <[email protected]> |
2897 | ||
2898 | * ada-lang.c (standard_lookup): Prevent uninitialized variable | |
2899 | warning. | |
2900 | ||
65662cde PA |
2901 | 2012-05-30 Jeff Kenton <[email protected]> |
2902 | ||
2903 | * configure.host (gdb_host_cpu): Handle tilegx*. | |
2904 | (gdb_host): Handle tilegx-*-linux*. | |
2905 | * tilegx-linux-nat.c: New file. | |
2906 | * config/tilegx/linux.mh: New file. | |
2907 | ||
ade64f0e PA |
2908 | 2012-05-30 Jeff Kenton <[email protected]> |
2909 | ||
2910 | * Makefile.in (ALL_TARGET_OBJS): Add tilegx-tdep.o and | |
2911 | tilegx-linux-tdep.o. | |
2912 | (ALLDEPFILES): Add tilegx-linux-nat.c, tilegx-tdep.c and | |
2913 | tilegx-linux-tdep.c. | |
2914 | * configure.tgt: Handle tilegx-*-linux*. | |
2915 | * tilegx-tdep.h: New file. | |
2916 | * tilegx-tdep.c: New file. | |
2917 | * tilegx-linux-tdep.c: New file. | |
2918 | * regformats/reg-tilegx.dat: New file. | |
2919 | ||
bb08bdbd EBM |
2920 | 2012-05-30 Edjunior Machado <[email protected]> |
2921 | ||
2922 | * ppc-linux-nat.c (ppc_linux_can_use_hw_breakpoint): fix | |
2923 | accounting of hw watchpoints on ppc. | |
2924 | ||
ebd86fb5 TJB |
2925 | 2012-05-30 Thiago Jung Bauermann <[email protected]> |
2926 | ||
2927 | * source.c (openp): Expand tilde in path entries. | |
2928 | ||
0a0edcd5 DE |
2929 | 2012-05-29 Doug Evans <[email protected]> |
2930 | ||
98cc87bd DE |
2931 | * buildsym.c (block_compar): Fix comment. |
2932 | (end_symtab): Fix and clarify some comments. | |
2933 | ||
0a0edcd5 DE |
2934 | * stabsread.h (cleanup_undefined_stabs_types): Renamed from |
2935 | cleanup_undefined_types. | |
2936 | * stabsread.c (cleanup_undefined_stabs_types): Ditto. | |
2937 | All callers updated. | |
2938 | ||
6f0c7050 TT |
2939 | 2012-05-29 Tom Tromey <[email protected]> |
2940 | ||
2941 | * symfile.c (symfile_bfd_open): Don't close desc if bfd_fopen | |
2942 | fails. | |
2943 | * solib.c (solib_bfd_fopen): Don't close fd if bfd_fopen fails. | |
2944 | * exec.c (exec_file_attach): Don't close scratch_chan if bfd_fopen | |
2945 | fails. | |
2946 | * dwarf2read.c (try_open_dwo_file): Don't close fd if bfd_fopen | |
2947 | fails. | |
2948 | ||
ec95993c TG |
2949 | 2012-05-29 Tristan Gingold <[email protected]> |
2950 | ||
2951 | * solib-darwin.c (dyld_all_image_addr, dyld_all_image): Move into... | |
2952 | (struct darwin_info): ... New struct. | |
2953 | (solib_darwin_pspace_data): New variable. | |
2954 | (darwin_pspace_data_cleanup): New function. | |
2955 | (get_darwin_info): Likewise. | |
2956 | (darwin_dyld_version_ok, darwin_load_image_infos) | |
2957 | (darwin_solib_get_all_image_info_addr_at_init) | |
2958 | (darwin_solib_read_all_image_info_addr): Add info argument. | |
2959 | Adjust code. | |
2960 | (darwin_current_sos): Use per pspace structure. | |
2961 | (darwin_solib_create_inferior_hook): Likewise. | |
2962 | (darwin_clear_solib): Likewise. | |
2963 | (_initialize_darwin_solib): Initialize solib_darwin_pspace_data. | |
2964 | ||
ae25568b PA |
2965 | 2012-05-28 Pedro Alves <[email protected]> |
2966 | ||
2967 | * infrun.c (wait_for_inferior): Move ecss and ecs locals to the | |
2968 | block that uses them. Clear ecss before handling each event. | |
2969 | ||
0c5bf5a9 JK |
2970 | 2012-05-28 Jan Kratochvil <[email protected]> |
2971 | ||
2972 | * solib-svr4.c (svr4_current_sos): New comment on | |
2973 | svr4_current_sos_via_xfer_libraries fall back. | |
2974 | ||
bfb05775 JK |
2975 | 2012-05-24 Jan Kratochvil <[email protected]> |
2976 | ||
2977 | * psymtab.c (lookup_symbol_aux_psymtabs): New variable stab_best. Use | |
2978 | it as a fallback for TYPE_IS_OPAQUE. | |
2979 | * symfile.h (struct quick_symbol_functions): Mention TYPE_OPAQUE | |
2980 | symbols for lookup_symbol. | |
2981 | ||
685b1105 JK |
2982 | 2012-05-24 John Steele Scott <[email protected]> |
2983 | ||
2984 | PR symtab/13277: Resolving opaque structures in ICC generated binaries. | |
2985 | * dwarf2read.c (struct dwarf2_cu) <producer_is_icc>: New field. | |
2986 | (producer_is_gxx_lt_4_6): Move the checking and caching to... | |
2987 | (check_producer): ... this new function, which also checks for ICC | |
2988 | and caches the result. | |
2989 | (producer_is_icc): New function. | |
2990 | (read_structure_type): Don't set TYPE_STUB_SUPPORTED if the | |
2991 | producer was ICC. | |
2992 | ||
22203bbf PA |
2993 | 2012-05-24 Pedro Alves <[email protected]> |
2994 | ||
2995 | PR gdb/7205 | |
2996 | ||
2997 | * arch-utils.c (default_gdb_signal_to_host): Rename to ... | |
2998 | (default_gdb_signal_to_target): ... this. Add comment. | |
2999 | (default_gdb_signal_from_host): Rename to ... | |
3000 | (default_gdb_signal_from_target): ... this. Add comment. | |
3001 | * arch-utils.h (default_gdb_signal_to_host): Rename to ... | |
3002 | (default_gdb_signal_to_target): ... this. | |
3003 | (default_gdb_signal_from_host): Rename to ... | |
3004 | (default_gdb_signal_from_target): ... this. | |
3005 | * corelow.c (core_open): Adjust to naming change. Replace comment. | |
3006 | * gdbarch.sh (gdb_signal_from_host): Rename to ... | |
3007 | (gdb_signal_from_target): ... this. Adjust to | |
3008 | default_gdb_signal_from_host naming change. Extend comment. | |
3009 | (gdb_signal_to_host): Rename to ... | |
3010 | (gdb_signal_to_target): ... this. Adjust to | |
3011 | default_gdb_signal_to_host naming change. | |
3012 | * gdbarch.h, gdbarch.c: Renegerate. | |
3013 | ||
a493e3e2 PA |
3014 | 2012-05-24 Pedro Alves <[email protected]> |
3015 | ||
3016 | PR gdb/7205 | |
3017 | ||
f782ad9b | 3018 | Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout. |
a493e3e2 | 3019 | |
2ea28649 PA |
3020 | 2012-05-24 Pedro Alves <[email protected]> |
3021 | ||
3022 | PR gdb/7205 | |
3023 | ||
3024 | Replace target_signal with gdb_signal throughout. | |
3025 | ||
b09846a9 PA |
3026 | 2012-05-24 Pedro Alves <[email protected]> |
3027 | ||
3028 | PR tui/14159 | |
3029 | ||
3030 | * tui/tui-hooks.c (tui_query_hook): Pre-compute the question | |
3031 | string, instead of reusing the va_list argument. | |
3032 | ||
e77c107e TT |
3033 | 2012-05-24 Tom Tromey <[email protected]> |
3034 | ||
3035 | * cp-support.h (cp_finalize_namespace, cp_initialize_namespace): | |
3036 | Remove. | |
3037 | ||
9fccedf7 DE |
3038 | 2012-05-23 Doug Evans <[email protected]> |
3039 | ||
d50bd42b DE |
3040 | * symtab.c (search_symbols): Formatting fixes. |
3041 | (print_symbol_info): Formatting fixes. | |
3042 | ||
9fccedf7 DE |
3043 | * dwarf2-frame.c (execute_cfa_program): Update to handle long long -> |
3044 | int64_t change to leb128 API. | |
3045 | (read_encoded_value, decode_frame_entry_1): Ditto. | |
3046 | * dwarf2expr.c (safe_read_uleb128, safe_read_sleb128): Ditto. | |
3047 | (dwarf_block_to_dwarf_reg, dwarf_block_to_dwarf_reg_deref): Ditto. | |
3048 | (dwarf_block_to_fb_offset, dwarf_block_to_sp_offset): Ditto. | |
3049 | (execute_stack_op): Ditto. | |
3050 | * dwarf2expr.h (gdb_read_uleb128, gdb_read_sleb128): Ditto. | |
3051 | (safe_read_uleb128, safe_read_sleb128): Ditto. | |
3052 | * dwarf2loc.c (decode_debug_loc_dwo_addresses): Ditto. | |
3053 | (dwarf2_compile_expr_to_ax): Ditto. | |
3054 | (locexpr_describe_location_piece): Ditto. | |
3055 | (disassemble_dwarf_expression): Ditto. | |
3056 | (locexpr_describe_location_1): Ditto. | |
3057 | ||
f3e0e960 SS |
3058 | 2012-05-23 Stan Shebs <[email protected]> |
3059 | Kwok Cheung Yeung <[email protected]> | |
3060 | ||
3061 | * Makefile.in (SUBDIR_MI_OBS): Add mi-cmd-info.o. | |
3062 | (SUBDIR_MI_SRCS): Add mi-cmd-info.c. | |
3063 | (mi-cmd-info.o): New rule. | |
3064 | * osdata.h (info_osdata_command): New declaration. | |
3065 | * osdata.c (info_osdata_command): Change to non-static. | |
3066 | * mi/mi-cmds.h (mi_cmd_info_os): New declaration. | |
3067 | * mi/mi-cmds.c (mi_cmds): Add -info-os MI command. | |
3068 | * mi/mi-cmd-info.c: New file. | |
3069 | ||
c51fe631 DE |
3070 | 2012-05-23 Doug Evans <[email protected]> |
3071 | ||
71cddcc1 DE |
3072 | * symtab.c (search_symbols): Pass NULL for file_matcher to |
3073 | expand_symtabs_matching if there are no files to match. | |
3074 | ||
c51fe631 DE |
3075 | * gdbtypes.c (lookup_typename): Simplify. |
3076 | ||
a79378d4 PA |
3077 | 2012-05-23 Pedro Alves <[email protected]> |
3078 | ||
3079 | * arch-utils.h (default_target_signal_to_host): Delete. | |
3080 | * arch-utils.c (default_target_signal_to_host): Delete. | |
3081 | * gdbarch.sh (target_signal_to_host): Remove. | |
3082 | * gdbarch.h, gdbarch.c: Regenerate. | |
3083 | ||
f664829e DE |
3084 | 2012-05-22 Doug Evans <[email protected]> |
3085 | ||
3086 | * dwarf2-frame.c (struct dwarf2_cie): Make initial_instructions, end | |
3087 | "const gdb_byte *". | |
3088 | (struct dwarf2_fde): Make instructions, end "const gdb_byte *". | |
3089 | (execute_cfa_program): Update to match API of leb128 functions. | |
3090 | (read_1_byte, read_4_bytes, read_8_bytes): Make buf parameter | |
3091 | "const gdb_byte *". | |
3092 | (read_unsigned_leb128, read_signed_leb128): Delete. | |
3093 | (read_initial_length): Change type of buf argument to | |
3094 | "const gdb_byte *". | |
3095 | (read_encoded_value): Update to match API of leb128 functions. | |
3096 | (decode_frame_entry): Change result to "const gdb_byte *", and | |
3097 | similarly for "start" parameter. | |
3098 | (decode_frame_entry_1): Ditto. Use new leb128 reader functions. | |
3099 | (dwarf2_build_frame_info): Change local frame_ptr to | |
3100 | "const gdb_byte *". | |
3101 | * dwarf2expr.c (safe_read_uleb128, safe_read_sleb128): Replaces | |
3102 | read_uleb128, read_sleb128. All callers updated. | |
3103 | (safe_skip_leb128): New function. | |
3104 | (dwarf_block_to_dwarf_reg): Update to match API of leb128 functions. | |
3105 | Call gdb_read_uleb128, gdb_skip_leb128 instead of read_uleb128. | |
3106 | (dwarf_block_to_dwarf_reg_deref): Update to match API of leb128 | |
3107 | functions. Call gdb_read_uleb128, gdb_read_sleb128 instead of | |
3108 | read_uleb128, read_sleb128. | |
3109 | (dwarf_block_to_fb_offset, dwarf_block_to_sp_offset): Ditto. | |
3110 | (execute_stack_op): Update to match API of leb128 functions. | |
3111 | * dwarf2expr.h: #include "leb128.h". | |
3112 | (read_uleb128, read_sleb128): Delete. | |
3113 | (gdb_read_uleb128, gdb_read_sleb128, gdb_skip_leb128): New functions. | |
3114 | (safe_read_uleb128, safe_read_sleb128, safe_skip_leb128): Declare. | |
3115 | * dwarf2loc.c (debug_loc_kind): New enum. | |
3116 | (decode_debug_loc_addresses): New function. | |
3117 | (decode_debug_loc_dwo_addresses): New function. | |
3118 | (dwarf2_find_location_expression): Rewrite. | |
3119 | (dwarf2_compile_expr_to_ax): Update to match API of leb128 functions. | |
3120 | (locexpr_describe_location_piece): Ditto. | |
3121 | (disassemble_dwarf_expression): Ditto. | |
3122 | (locexpr_describe_location_1): Ditto. | |
3123 | (loclist_describe_location): Rewrite. | |
3124 | * dwarf2loc.h (dwarf2_loclist_baton): New member "from_dwo". | |
3125 | * dwarf2read.c (die_reader_specs): New member "buffer_end". | |
3126 | (dwarf2_section_buffer_overflow_complaint): Renamed from | |
3127 | dwarf2_macros_too_long_complaint. All callers updated. | |
3128 | (skip_leb128): Delete. | |
3129 | (init_cu_die_reader): Initialize reader->buffer_end. | |
3130 | (skip_one_die): Replace call to skip_leb128 with safe_skip_leb128. | |
3131 | (skip_form_bytes): New arg buffer_end. All callers updated. | |
3132 | Replace call to skip_leb128 with gdb_skip_leb128. | |
3133 | (skip_unknown_opcode): New arg mac_end. All callers updated. | |
3134 | (fill_in_loclist_baton): Initialize baton->from_dwo. | |
3135 | ||
837a1b32 MR |
3136 | 2012-05-22 Maciej W. Rozycki <[email protected]> |
3137 | ||
3138 | * mips-linux-nat.c (mips_linux_read_description): Use a more | |
3139 | verbose error message. | |
3140 | ||
d0e64392 MR |
3141 | 2012-05-22 Maciej W. Rozycki <[email protected]> |
3142 | ||
3143 | * NEWS: Add MIPS/Linux DSP support. | |
3144 | * mips-linux-tdep.c: Document post-2.6.12 o32 sigcontext layout. | |
3145 | (SIGCONTEXT_DSPCTL): New macro. | |
3146 | (SIGCONTEXT_HI1, SIGCONTEXT_LO1): Likewise. | |
3147 | (SIGCONTEXT_HI2, SIGCONTEXT_LO2): Likewise. | |
3148 | (SIGCONTEXT_HI3, SIGCONTEXT_LO3): Likewise. | |
3149 | (N64_SIGCONTEXT_HI1, N64_SIGCONTEXT_HI2): Likewise. | |
3150 | (N64_SIGCONTEXT_HI3): Likewise. | |
3151 | (N64_SIGCONTEXT_LO1, N64_SIGCONTEXT_LO2): Likewise. | |
3152 | (N64_SIGCONTEXT_LO3): Likewise. | |
3153 | (N64_SIGCONTEXT_DSPCTL): Likewise. | |
3154 | (N64_SIGCONTEXT_FPCSR): Clarify definition. | |
3155 | (mips_linux_o32_sigframe_init): Handle DSP registers. | |
3156 | (mips_linux_n32n64_sigframe_init): Likewise. | |
3157 | ||
8bea7ed1 PM |
3158 | 2012-05-22 Pierre Muller <[email protected]> |
3159 | ||
3160 | * common/buffer.c (buffer_grow): ARI fix: Remove unneeded | |
3161 | call to abort. | |
3162 | ||
dab06dbe PA |
3163 | 2012-05-22 Pedro Alves <[email protected]> |
3164 | ||
3165 | * target.h (store_waitstatus): Move declaration ... | |
3166 | * inf-child.h (store_waitstatus): ... here. | |
3167 | * target.c: Move inclusion of gdb_wait.h, and ... | |
3168 | (store_waitstatus): ... this ... | |
3169 | * inf-child.c: ... here. | |
3170 | * linux-nat.c: Include inf-child.h. | |
3171 | * rs6000-nat.c: Include inf-child.h. | |
3172 | * spu-linux-nat.c: Include inf-child.h. | |
3173 | ||
43011e52 PM |
3174 | 2012-05-22 Pierre Muller <[email protected]> |
3175 | ||
3176 | * tracepoint.c (start_tracing): Add missing i18n markup. | |
3177 | (stop_tracing, set_trace_user): Ditto. | |
3178 | (set_trace_notes, set_trace_stop_notes): Ditto. | |
3179 | ||
b1af9e97 TT |
3180 | 2012-05-21 Tom Tromey <[email protected]> |
3181 | ||
3182 | PR c++/7173: | |
3183 | * gnu-v3-abi.c (gnuv3_baseclass_offset): Return early for Java | |
3184 | types. | |
3185 | * value.h (value_cast_pointers): Update. | |
3186 | * valops.c (value_cast_pointers): Add 'subclass_check' argument. | |
3187 | (value_cast): Update. | |
3188 | (update_search_result): New function. | |
3189 | (do_search_struct_field): New, from search_struct_field. Check | |
3190 | for ambiguous results. | |
3191 | (search_struct_field): Rewrite. | |
3192 | * infcall.c (value_arg_coerce): Update. | |
3193 | * eval.c (evaluate_subexp_standard) <STRUCTOP_MEMBER>: Use | |
3194 | value_cast_pointers. | |
3195 | * ada-lang.c (ada_convert_actual): Update. | |
3196 | ||
e9e5e6b3 TT |
3197 | 2012-05-21 Tom Tromey <[email protected]> |
3198 | ||
3199 | * macroexp.c (macro_stringify): Terminate the string. | |
3200 | ||
1564a261 JK |
3201 | 2012-05-20 Jan Kratochvil <[email protected]> |
3202 | ||
3203 | * NEWS (--with-auto-load-dir): Prepend $debugdir to the default path. | |
3204 | Describe it. | |
3205 | * auto-load.c (auto_load_expand_dir_vars): New function. | |
3206 | (auto_load_safe_path_vec_update): Use it, remove the | |
3207 | substitute_path_component call thanks to it. | |
3208 | (auto_load_objfile_script): Remove the debug_file_directory processing. | |
3209 | Use auto_load_expand_dir_vars, remove the substitute_path_component | |
3210 | call thanks to it. | |
3211 | * configure: Regenerate. | |
3212 | * configure.ac (--with-auto-load-dir): Prepend $debugdir to the default | |
3213 | path. Escape $ also for $debugdir. | |
3214 | (--with_auto_load_safe_path): Escape $ also for $debugdir. | |
3215 | * utils.c (substitute_path_component): Accept also DIRNAME_SEPARATOR. | |
3216 | ||
a3ec0bb1 DE |
3217 | 2012-05-20 Doug Evans <[email protected]> |
3218 | ||
3219 | * dwarf2read.c (recursively_find_pc_sect_symtab): Initialize "s" | |
3220 | before use. Check for symtab->includes == NULL before scanning it. | |
3221 | ||
d467df4e MR |
3222 | 2012-05-18 Maciej W. Rozycki <[email protected]> |
3223 | ||
3224 | * mips-tdep.c (mips_reg3_to_reg): Optimize storage. | |
3225 | ||
4cc0665f MR |
3226 | 2012-05-18 Maciej W. Rozycki <[email protected]> |
3227 | ||
3228 | * NEWS: Add microMIPS support and "set mips compression", | |
3229 | "show mips compression" commands. | |
3230 | * mips-tdep.h (mips_isa): New enum. | |
3231 | (gdbarch_tdep): Add mips_isa. | |
3232 | (mips_pc_is_mips16): Update prototype. | |
3233 | (mips_pc_is_mips, mips_pc_is_micromips): New prototypes. | |
3234 | * mips-tdep.c (mips_compression_mips16): New variable. | |
3235 | (mips_compression_micromips): Likewise. | |
3236 | (mips_compression_strings): Likewise. | |
3237 | (mips_compression_string): Likewise. | |
3238 | (is_mips16_isa, is_micromips_isa): New functions. | |
3239 | (is_mips16_addr): Rename to... | |
3240 | (is_compact_addr): ... this. | |
3241 | (unmake_mips16_addr): Likewise to... | |
3242 | (unmake_compact_addr): ... this. | |
3243 | (make_mips16_addr): Likewise to... | |
3244 | (make_compact_addr): ... this. | |
3245 | (is_mips_addr, is_mips16_addr, is_micromips_addr): New | |
3246 | functions. | |
3247 | (mips_elf_make_msymbol_special): Handle microMIPS code. | |
3248 | (msymbol_is_special): Rename to... | |
3249 | (msymbol_is_mips16): ... this. | |
3250 | (mips_make_symbol_special, mips_pc_is_mips16): Update | |
3251 | accordingly. | |
3252 | (msymbol_is_mips, msymbol_is_micromips): New functions. | |
3253 | (mips16_to_32_reg): Rename to... | |
3254 | (mips_reg3_to_reg): ... this. | |
3255 | (mips_pc_is_mips, mips_pc_is_micromips): New functions. | |
3256 | (mips_pc_isa): Likewise. | |
3257 | (mips_read_pc, mips_unwind_pc, mips_write_pc): Handle microMIPS | |
3258 | code. | |
3259 | (mips_fetch_instruction): Pass return status instead of printing | |
3260 | an error message if requested. Handle microMIPS code. Bail out | |
3261 | on an invalid ISA. | |
3262 | (micromips_op): New macro. | |
3263 | (b0s4_imm, b0s5_imm, b0s5_reg, b0s7_imm, b0s10_imm): Likewise. | |
3264 | (b1s9_imm, b2s3_cc, b4s2_regl, b5s5_op, b5s5_reg): Likewise. | |
3265 | (b6s4_op, b7s3_reg): Likewise. | |
3266 | (b0s6_op, b0s11_op, b0s12_imm, b0s16_imm, b0s26_imm): Likewise. | |
3267 | (b6s10_ext, b11s5_reg, b12s4_op): Likewise. | |
3268 | (mips_insn_size): New function. | |
3269 | (mips32_next_pc): Update mips_fetch_instruction call. | |
3270 | (micromips_relative_offset7): New function. | |
3271 | (micromips_relative_offset10): Likewise. | |
3272 | (micromips_relative_offset16): Likewise. | |
3273 | (micromips_pc_insn_size): Likewise. | |
3274 | (micromips_bc1_pc): Likewise. | |
3275 | (micromips_next_pc): Likewise. | |
3276 | (unpack_mips16): Update mips_fetch_instruction call. | |
3277 | (extended_mips16_next_pc): Update according to change to | |
3278 | mips16_to_32_reg. | |
3279 | (mips_next_pc): Update mips_pc_is_mips16 call. Handle microMIPS | |
3280 | code. | |
3281 | (mips16_scan_prologue): Update mips_fetch_instruction call. | |
3282 | Update according to change to mips16_to_32_reg. | |
3283 | (mips_insn16_frame_sniffer): Update mips_pc_is_mips16 call. | |
3284 | (mips_insn16_frame_base_sniffer): Likewise. | |
3285 | (micromips_decode_imm9): New function. | |
3286 | (micromips_scan_prologue): Likewise. | |
3287 | (mips_micro_frame_cache): Likewise. | |
3288 | (mips_micro_frame_this_id): Likewise. | |
3289 | (mips_micro_frame_prev_register): Likewise. | |
3290 | (mips_micro_frame_sniffer): Likewise. | |
3291 | (mips_micro_frame_unwind): New variable. | |
3292 | (mips_micro_frame_base_address): New function. | |
3293 | (mips_micro_frame_base): New variable. | |
3294 | (mips_micro_frame_base_sniffer): New function. | |
3295 | (mips32_scan_prologue): Update mips_fetch_instruction call. | |
3296 | (mips_insn32_frame_sniffer): Check for the standard MIPS ISA | |
3297 | rather than for MIPS16. | |
3298 | (mips_insn32_frame_base_sniffer): Likewise. | |
3299 | (mips_addr_bits_remove): Handle microMIPS code. | |
3300 | (deal_with_atomic_sequence): Rename to... | |
3301 | (mips_deal_with_atomic_sequence): ... this. Update the type | |
3302 | of the variable used to hold an instruction. Remove the ISA bit | |
3303 | check. Update mips_fetch_instruction call. | |
3304 | (micromips_deal_with_atomic_sequence): New function. | |
3305 | (deal_with_atomic_sequence): Likewise. | |
3306 | (mips_about_to_return): Handle microMIPS code. Update | |
3307 | mips_fetch_instruction call. | |
3308 | (heuristic_proc_start): Check for the standard MIPS ISA rather | |
3309 | than for MIPS16. Update mips_pc_is_mips16 and | |
3310 | mips_fetch_instruction calls. Handle microMIPS code. | |
3311 | (mips_push_dummy_code): Handle microMIPS code. | |
3312 | (mips_eabi_push_dummy_call): Likewise. | |
3313 | (mips_o32_return_value): Update mips_pc_is_mips16 call. | |
3314 | (mips_o64_push_dummy_call): Handle microMIPS code. | |
3315 | (mips_o64_return_value): Update mips_pc_is_mips16 call. | |
3316 | (is_delayed): Remove function. | |
3317 | (mips_single_step_through_delay): Replace the call to is_delayed | |
3318 | with mips32_instruction_has_delay_slot. Correct MIPS16 handling. | |
3319 | Handle microMIPS code. | |
3320 | (mips_skip_prologue): Update mips_pc_is_mips16 call. Handle | |
3321 | microMIPS code. | |
3322 | (mips32_in_function_epilogue_p): Update mips_fetch_instruction | |
3323 | call. | |
3324 | (micromips_in_function_epilogue_p): New function. | |
3325 | (mips16_in_function_epilogue_p): Update mips_fetch_instruction | |
3326 | call. | |
3327 | (mips_in_function_epilogue_p): Update mips_pc_is_mips16 call. | |
3328 | Handle microMIPS. | |
3329 | (gdb_print_insn_mips): Likewise. | |
3330 | (mips_breakpoint_from_pc): Likewise. | |
3331 | (mips_remote_breakpoint_from_pc): New function. | |
3332 | (mips32_instruction_has_delay_slot): Simplify making use of the | |
3333 | updated mips_fetch_instruction interface. | |
3334 | (micromips_instruction_has_delay_slot): New function. | |
3335 | (mips16_instruction_has_delay_slot): Simplify making use of the | |
3336 | updated mips_fetch_instruction interface. | |
3337 | (mips_adjust_breakpoint_address): Check for the standard MIPS | |
f782ad9b | 3338 | ISA rather than for MIPS16 ISA. Update for unmake_compact_addr |
4cc0665f MR |
3339 | calls. Handle microMIPS code. |
3340 | (mips_get_mips16_fn_stub_pc): Update mips_fetch_instruction call. | |
3341 | (mips_skip_trampoline_code): Handle microMIPS code. | |
3342 | (global_mips_compression): New function. | |
3343 | (mips_gdbarch_init): Handle the compressed ISA setting from ELF | |
3344 | file flags. Register the microMIPS remote breakpoint handler | |
3345 | and heuristic frame unwinder. | |
3346 | (show_mips_compression): New function. | |
3347 | (_initialize_mips_tdep): Add the "set mips compression" and | |
3348 | "show mips compression" commands. | |
3349 | ||
22e048c9 SDJ |
3350 | 2012-05-18 Sergio Durigan Junior <[email protected]> |
3351 | ||
3352 | * ada-lang.c: | |
3353 | * ada-tasks.c: | |
3354 | * ada-varobj.c: | |
3355 | * amd64-darwin-tdep.c: | |
3356 | * arm-symbian-tdep.c: | |
3357 | * arm-tdep.c: | |
3358 | * avr-tdep.c: | |
3359 | * ax-gdb.c: | |
3360 | * bfin-linux-tdep.c: | |
3361 | * breakpoint.c: | |
3362 | * c-valprint.c: | |
3363 | * cli/cli-cmds.c: | |
3364 | * coffread.c: | |
3365 | * cp-support.c: | |
3366 | * cris-tdep.c: | |
3367 | * dwarf2-frame-tailcall.c: | |
3368 | * dwarf2-frame.c: | |
3369 | * dwarf2expr.c: | |
3370 | * dwarf2loc.c: | |
3371 | * dwarf2read.c: | |
3372 | * elfread.c: | |
3373 | * eval.c: | |
3374 | * expprint.c: | |
3375 | * f-valprint.c: | |
3376 | * frv-tdep.c: | |
3377 | * h8300-tdep.c: | |
3378 | * hppa-hpux-tdep.c: | |
3379 | * hppa-tdep.c: | |
3380 | * hppanbsd-tdep.c: | |
3381 | * i386-nto-tdep.c: | |
3382 | * i386-tdep.c: | |
3383 | * i387-tdep.c: | |
3384 | * ia64-tdep.c: | |
3385 | * jit.c: | |
3386 | * linespec.c: | |
3387 | * linux-tdep.c: | |
3388 | * lm32-tdep.c: | |
3389 | * m2-valprint.c: | |
3390 | * m32c-tdep.c: | |
3391 | * m32r-rom.c: | |
3392 | * m32r-tdep.c: | |
3393 | * m68k-tdep.c: | |
3394 | * m68klinux-tdep.c: | |
3395 | * mi/mi-main.c: | |
3396 | * microblaze-tdep.c: | |
3397 | * mips-linux-tdep.c: | |
3398 | * mips-tdep.c: | |
3399 | * mn10300-tdep.c: | |
3400 | * p-valprint.c: | |
3401 | * parse.c: | |
3402 | * ppc-linux-tdep.c: | |
3403 | * ppc-sysv-tdep.c: | |
3404 | * printcmd.c: | |
3405 | * python/py-finishbreakpoint.c: | |
3406 | * python/py-inferior.c: | |
3407 | * python/py-infthread.c: | |
3408 | * python/py-type.c: | |
3409 | * python/python.c: | |
3410 | * remote-fileio.c: | |
3411 | * remote-m32r-sdi.c: | |
3412 | * remote-mips.c: | |
3413 | * reverse.c: | |
3414 | * rl78-tdep.c: | |
3415 | * rs6000-aix-tdep.c: | |
3416 | * rs6000-tdep.c: | |
3417 | * s390-tdep.c: | |
3418 | * score-tdep.c: | |
3419 | * sh64-tdep.c: | |
3420 | * skip.c: | |
3421 | * solib-darwin.c: | |
3422 | * solib-dsbt.c: | |
3423 | * solib-frv.c: | |
3424 | * sparc-tdep.c: | |
3425 | * spu-multiarch.c: | |
3426 | * spu-tdep.c: | |
3427 | * stack.c: | |
3428 | * symfile.c: | |
3429 | * symtab.c: | |
3430 | * tic6x-tdep.c: | |
3431 | * tracepoint.c: | |
3432 | * v850-tdep.c: | |
3433 | * valarith.c: | |
3434 | * valprint.c: | |
3435 | * value.c: | |
3436 | * xcoffread.c: | |
3437 | * xtensa-tdep.c: | |
3438 | * ada-lang.c: | |
3439 | * ada-tasks.c: | |
3440 | * ada-varobj.c: | |
3441 | * amd64-darwin-tdep.c: | |
3442 | * arm-symbian-tdep.c: | |
3443 | * arm-tdep.c: Delete unused variables. | |
3444 | ||
aff139ff JK |
3445 | 2012-05-18 Jan Kratochvil <[email protected]> |
3446 | ||
3447 | Rename $ddir to $datadir. | |
3448 | * NEWS (--with-auto-load-dir): Rename $ddir to $datadir. | |
3449 | * auto-load.c (auto_load_safe_path_vec_update) | |
3450 | (auto_load_gdb_datadir_changed, auto_load_objfile_script): Likewise. | |
3451 | * configure: Regenerate. | |
3452 | * configure.ac (--with-auto-load-dir, --with-auto-load-safe-path): | |
3453 | Likewise. Remove the 'use $ddir' help string. | |
3454 | ||
f7bfa992 JK |
3455 | 2012-05-18 Jan Kratochvil <[email protected]> |
3456 | ||
3457 | * auto-load.c (show_auto_load_safe_path): Accept any combination of | |
3458 | DIRNAME_SEPARATOR and IS_DIR_SEPARATOR for wild-match. | |
3459 | ||
9cb709b6 TT |
3460 | 2012-05-18 Tom Tromey <[email protected]> |
3461 | ||
3462 | PR exp/13907: | |
3463 | * valprint.h (struct value_print_options) <symbol_print>: New | |
3464 | field. | |
3465 | * valprint.c (user_print_options): Add default for symbol_print. | |
3466 | (show_symbol_print): New function. | |
3467 | (generic_val_print): Respect symbol_print. | |
3468 | (_initialize_valprint): Add "print symbol" setting. | |
3469 | * f-valprint.c (f_val_print): Respect symbol_print. | |
3470 | * c-valprint.c (c_val_print): Respect symbol_print. | |
3471 | * NEWS: Update. | |
3472 | * printcmd.c (print_address_symbolic): Return int. Ignore some | |
3473 | zero-size symbols. | |
3474 | (print_address_demangle): Return int. | |
3475 | * defs.h: (print_address_symbolic): Return int. | |
3476 | * value.h (print_address_demangle): Return int. | |
3477 | ||
b012acdd TT |
3478 | 2012-05-18 Tom Tromey <[email protected]> |
3479 | ||
3480 | * valprint.c (val_print_string): Don't print leading space. | |
3481 | * p-valprint.c (pascal_val_print) <TYPE_CODE_PTR>: Optionally | |
3482 | print space before string or vtbl. | |
3483 | * m2-valprint.c (print_unpacked_pointer): Optionally print space | |
3484 | before string. | |
3485 | * jv-valprint.c (java_value_print): Print space before string. | |
3486 | * go-valprint.c (print_go_string): Print space before string. | |
3487 | * f-valprint.c (f_val_print) <TYPE_CODE_PTR>: Optionally print | |
3488 | space before string. | |
3489 | * c-valprint.c (c_val_print) <TYPE_CODE_PTR>: Optionally print | |
3490 | space before string or vtbl. | |
3491 | * auxv.c (fprint_target_auxv): Print space after address. | |
3492 | ||
1d51a733 TT |
3493 | 2012-05-18 Tom Tromey <[email protected]> |
3494 | ||
3495 | * printcmd.c (print_address_demangle): Remove special case for 0. | |
3496 | ||
edf0c1b7 TT |
3497 | 2012-05-18 Tom Tromey <[email protected]> |
3498 | ||
3499 | * printcmd.c (print_address_demangle): Add 'opts' argument. | |
3500 | * p-valprint.c (pascal_val_print): Update. | |
3501 | * jv-valprint.c (java_val_print): Update. | |
3502 | * value.h: Update. | |
3503 | * valprint.c (generic_val_print): Update. | |
3504 | (print_function_pointer_address): Add 'options' argument. Remove | |
3505 | 'addressprint' argument. Update. | |
3506 | * m2-valprint.c (print_unpacked_pointer): Update. | |
3507 | * gnu-v3-abi.c (print_one_vtable): Update. | |
3508 | (gnuv3_print_method_ptr): Update. | |
3509 | * f-valprint.c (f_val_print): Update. | |
3510 | * cp-valprint.c (cp_print_value_fields): Update. | |
3511 | * valprint.h (print_function_pointer_address): Update. | |
3512 | * c-valprint.c (c_val_print): Update. | |
3513 | ||
9703b513 TT |
3514 | 2012-05-18 Tom Tromey <[email protected]> |
3515 | ||
3516 | * psymtab.c (find_pc_sect_symtab_from_partial): Return the symtab | |
3517 | directly corresponding to the found psymtab. | |
3518 | * dwarf2read.c (recursively_find_pc_sect_symtab): New function. | |
3519 | (dw2_find_pc_sect_symtab): Use it. | |
3520 | * block.h (blockvector_contains_pc): Declare. | |
3521 | * block.c (find_block_in_blockvector): New function. | |
3522 | (blockvector_for_pc_sect): Use it. | |
3523 | (blockvector_contains_pc): New function. | |
3524 | ||
5a439849 MR |
3525 | 2012-05-18 Maciej W. Rozycki <[email protected]> |
3526 | ||
3527 | * mips-tdep.h (mips_write_pc): New prototype. | |
3528 | * mips-tdep.c (mips_write_pc): Make external, add description. | |
3529 | * mips-linux-tdep.c (mips_linux_write_pc): Use mips_write_pc, | |
3530 | add description. | |
3531 | ||
8376de04 MR |
3532 | 2012-05-18 Maciej W. Rozycki <[email protected]> |
3533 | ||
3534 | * mips-tdep.c (mips_read_pc): Use gdbarch_pc_regnum instead of | |
3535 | mips_regnum->pc. | |
3536 | (mips_unwind_pc, mips_write_pc): Likewise. | |
3537 | (mips_gdbarch_init): Remove a comment on gdbarch_pc_regnum and | |
3538 | gdbarch_read_pc. | |
3539 | ||
d3581e61 JB |
3540 | 2012-05-17 Joel Brobecker <[email protected]> |
3541 | ||
3542 | * procfs.c (procfs_find_new_threads, procfs_pid_to_str, | |
3543 | proc_warn, proc_error, proc_get_status, proc_flags, | |
3544 | proc_why, proc_what, proc_nsysarg, proc_sysargs, | |
3545 | proc_set_run_on_last_close, proc_unset_run_on_last_close, | |
3546 | proc_unset_inherit_on_fork, proc_set_async, proc_unset_async, | |
3547 | proc_stop_process, proc_wait_for_stop, proc_run_process, | |
3548 | proc_set_traced_signals, proc_set_traced_faults, | |
3549 | proc_set_traced_sysentry, proc_set_traced_sysexit, | |
3550 | proc_set_held_signals, proc_get_held_signals, | |
3551 | proc_get_traced_signals, proc_get_traced_faults, | |
3552 | proc_get_traced_sysentry, proc_get_traced_sysexit, | |
3553 | proc_clear_current_fault, proc_set_current_signal, | |
3554 | proc_clear_current_signal, proc_get_gregs, proc_get_fpregs, | |
3555 | proc_set_gregs, proc_set_fpregs, proc_kill, proc_parent_pid, | |
3556 | proc_get_nthreads, proc_get_nthreads, proc_get_nthreads, | |
3557 | proc_get_current_thread, proc_get_current_thread, | |
3558 | proc_get_current_thread, proc_update_threads, | |
3559 | proc_update_threads, proc_update_threads, proc_update_threads, | |
3560 | proc_iterate_over_threads, procfs_find_new_threads, | |
3561 | procfs_pid_to_str): Make static. Remove advance declaration. | |
3562 | (proc_cursig): Make static. Conditionalized defintion on | |
3563 | PROCFS_DONT_PIOCSSIG_CURSIG being defined. | |
3564 | (proc_syscall, proc_set_kill_on_last_close, | |
3565 | proc_unset_kill_on_last_close, proc_set_inherit_on_fork, | |
3566 | proc_get_pending_signals, proc_get_signal_actions, | |
3567 | proc_trace_signal, proc_ignore_signal): Delete. | |
3568 | ||
81b9b86e SDJ |
3569 | 2012-05-16 Sergio Durigan Junior <[email protected]> |
3570 | ||
3571 | * coffread.c (cs_section_address): Passing proper argument for | |
3572 | `bfd_get_section_vma'. | |
3573 | * dwarf2read.c (dwarf2_locate_sections): Likewise, for | |
3574 | `bfd_get_section_flags'. | |
3575 | * remote.c (remote_trace_set_readonly_regions): Likewise, for | |
3576 | `bfd_get_section_vma'. | |
3577 | ||
abc9d0dc TT |
3578 | 2012-05-16 Tom Tromey <[email protected]> |
3579 | ||
3580 | PR macros/13205: | |
3581 | * macrotab.h: (macro_define_special): Declare. | |
3582 | (enum macro_special_kind): New. | |
3583 | (struct macro_definition) <argc, replacement>: Update comments. | |
3584 | * macrotab.c (new_macro_definition): Unconditionally set 'argc'. | |
3585 | (macro_define_object_internal): New function. | |
3586 | (macro_define_object): Use it. | |
3587 | (macro_define_special): New function. | |
3588 | (fixup_definition): New function. | |
3589 | (macro_lookup_definition, foreach_macro_in_scope) | |
3590 | (foreach_macro): Use fixup_definition. | |
3591 | * macroexp.h (macro_stringify): Declare. | |
3592 | * macroexp.c (free_buffer_return_text): New function. | |
3593 | (stringify): Constify "arg". | |
3594 | (macro_stringify): New function. | |
3595 | * dwarf2read.c (macro_start_file): Call macro_define_special. | |
3596 | ||
6a3a010b | 3597 | 2012-05-16 Maciej W. Rozycki <[email protected]> |
f782ad9b | 3598 | Maciej W. Rozycki <[email protected]> |
6a3a010b MR |
3599 | |
3600 | * breakpoint.h (bp_location): Add related_address member. | |
3601 | * inferior.h (get_return_value): Take a pointer to struct value | |
3602 | instead of struct type for the function requested. | |
3603 | * value.h (using_struct_return): Likewise. | |
3604 | * gdbarch.sh (return_value): Take a pointer to struct value | |
3605 | instead of struct type for the function requested. | |
3606 | * breakpoint.c (set_breakpoint_location_function): Initialize | |
3607 | related_address for bp_gnu_ifunc_resolver breakpoints. | |
3608 | * elfread.c (elf_gnu_ifunc_resolver_return_stop): Pass the | |
3609 | requested function's address to gdbarch_return_value. | |
3610 | * eval.c (evaluate_subexp_standard): Pass the requested | |
3611 | function's address to using_struct_return. | |
3612 | * infcall.c (call_function_by_hand): Pass the requested | |
3613 | function's address to using_struct_return and | |
3614 | gdbarch_return_value. | |
3615 | * infcmd.c (get_return_value): Take a pointer to struct value | |
3616 | instead of struct type for the function requested. | |
3617 | (print_return_value): Update accordingly. | |
3618 | (finish_command_continuation): Likewise. | |
3619 | * stack.c (return_command): Pass the requested function's | |
3620 | address to using_struct_return and gdbarch_return_value. | |
3621 | * value.c (using_struct_return): Take a pointer to struct value | |
3622 | instead of struct type for the function requested. Pass the | |
3623 | requested function's address to gdbarch_return_value. | |
3624 | * python/py-finishbreakpoint.c (finish_breakpoint_object): | |
3625 | New function_value member, replacing function_type. | |
3626 | (bpfinishpy_dealloc): Update accordingly. | |
3627 | (bpfinishpy_pre_stop_hook): Likewise. | |
3628 | (bpfinishpy_init): Likewise. Record the requested function's | |
3629 | address. | |
3630 | * mips-tdep.c (mips_fval_reg): New enum. | |
3631 | (mips_o32_push_dummy_call): For MIPS16 FP doubles do not swap | |
3632 | words put in GP registers. | |
3633 | (mips_o64_push_dummy_call): Update a comment. | |
3634 | (mips_o32_return_value): Take a pointer to struct value instead | |
3635 | of struct type for the function requested and use it to check if | |
3636 | using the MIPS16 calling convention. Return the designated | |
3637 | general purpose registers for floating-point values returned in | |
3638 | MIPS16 mode. | |
3639 | (mips_o64_return_value): Likewise. | |
3640 | * ppc-tdep.h (ppc_sysv_abi_return_value): Update prototype. | |
3641 | (ppc_sysv_abi_broken_return_value): Likewise. | |
3642 | (ppc64_sysv_abi_return_value): Likewise. | |
3643 | * alpha-tdep.c (alpha_return_value): Take a pointer to struct | |
3644 | value instead of struct type for the function requested. | |
3645 | * amd64-tdep.c (amd64_return_value): Likewise. | |
3646 | * amd64-windows-tdep.c (amd64_windows_return_value): Likewise. | |
3647 | * arm-tdep.c (arm_return_value): Likewise. | |
3648 | * avr-tdep.c (avr_return_value): Likewise. | |
3649 | * bfin-tdep.c (bfin_return_value): Likewise. | |
3650 | * cris-tdep.c (cris_return_value): Likewise. | |
3651 | * frv-tdep.c (frv_return_value): Likewise. | |
3652 | * h8300-tdep.c (h8300_return_value): Likewise. | |
3653 | (h8300h_return_value): Likewise. | |
3654 | * hppa-tdep.c (hppa32_return_value): Likewise. | |
3655 | (hppa64_return_value): Likewise. | |
3656 | * i386-tdep.c (i386_return_value): Likewise. | |
3657 | * ia64-tdep.c (ia64_return_value): Likewise. | |
3658 | * iq2000-tdep.c (iq2000_return_value): Likewise. | |
3659 | * lm32-tdep.c (lm32_return_value): Likewise. | |
3660 | * m32c-tdep.c (m32c_return_value): Likewise. | |
3661 | * m32r-tdep.c (m32r_return_value): Likewise. | |
3662 | * m68hc11-tdep.c (m68hc11_return_value): Likewise. | |
3663 | * m68k-tdep.c (m68k_return_value): Likewise. | |
3664 | (m68k_svr4_return_value): Likewise. | |
3665 | * m88k-tdep.c (m88k_return_value): Likewise. | |
3666 | * mep-tdep.c (mep_return_value): Likewise. | |
3667 | * microblaze-tdep.c (microblaze_return_value): Likewise. | |
3668 | * mn10300-tdep.c (mn10300_return_value): Likewise. | |
3669 | * moxie-tdep.c (moxie_return_value): Likewise. | |
3670 | * mt-tdep.c (mt_return_value): Likewise. | |
3671 | * ppc-linux-tdep.c (ppc_linux_return_value): Likewise. | |
3672 | * ppc-sysv-tdep.c (ppc_sysv_abi_return_value): Likewise. | |
3673 | (ppc_sysv_abi_broken_return_value): Likewise. | |
3674 | (ppc64_sysv_abi_return_value): Likewise. | |
3675 | * ppcnbsd-tdep.c (ppcnbsd_return_value): Likewise. | |
3676 | * rl78-tdep.c (rl78_return_value): Likewise. | |
3677 | * rs6000-aix-tdep.c (rs6000_return_value): Likewise. | |
3678 | * rx-tdep.c (rx_return_value): Likewise. | |
3679 | * s390-tdep.c (s390_return_value): Likewise. | |
3680 | * score-tdep.c (score_return_value): Likewise. | |
3681 | * sh-tdep.c (sh_return_value_nofpu): Likewise. | |
3682 | (sh_return_value_fpu): Likewise. | |
3683 | * sh64-tdep.c (sh64_return_value): Likewise. | |
3684 | * sparc-tdep.c (sparc32_return_value): Likewise. | |
3685 | * sparc64-tdep.c (sparc64_return_value): Likewise. | |
3686 | * spu-tdep.c (spu_return_value): Likewise. | |
3687 | * tic6x-tdep.c (tic6x_return_value): Likewise. | |
3688 | * v850-tdep.c (v850_return_value): Likewise. | |
3689 | * vax-tdep.c (vax_return_value): Likewise. | |
3690 | * xstormy16-tdep.c (xstormy16_return_value): Likewise. | |
3691 | * xtensa-tdep.c (xtensa_return_value): Likewise. | |
3692 | * gdbarch.c: Regenerate. | |
3693 | * gdbarch.h: Regenerate. | |
3694 | ||
29ca12b3 TT |
3695 | 2012-05-15 Tom Tromey <[email protected]> |
3696 | ||
3697 | * python/python.c (gdbpy_find_pc_line): Use gdb_py_ulongest. | |
3698 | ||
588ae58c JB |
3699 | 2012-05-15 Joel Brobecker <[email protected]> |
3700 | ||
3701 | * breakpoint.c (init_breakpoint_sal): Add quotes around part | |
3702 | of command in two error message. | |
3703 | ||
855a6e68 JB |
3704 | 2012-05-15 Joel Brobecker <[email protected]> |
3705 | ||
3706 | * breakpoint.c (init_breakpoint_sal): Remove trailing spaces. | |
3707 | ||
d634f2de JB |
3708 | 2012-05-15 Joel Brobecker <[email protected]> |
3709 | ||
3710 | * breakpoint.c (find_condition_and_thread): Minor reformatting. | |
3711 | ||
9cc815f5 JK |
3712 | 2012-05-15 Jan Kratochvil <[email protected]> |
3713 | ||
3714 | * NEWS (show auto-load scripts-directory): Add forgotten command. | |
3715 | ||
6a609e58 JK |
3716 | 2012-05-15 Jan Kratochvil <[email protected]> |
3717 | ||
3718 | * spu-tdep.c (spu_catch_start): Update create_breakpoint caller | |
3719 | parameters. | |
3720 | ||
ac1438b5 L |
3721 | 2012-05-14 H.J. Lu <[email protected]> |
3722 | ||
3723 | * amd64-tdep.c: Include features/i386/x32.c and | |
3724 | features/i386/x32-avx.c. | |
3725 | (_initialize_amd64_tdep): Call initialize_tdesc_x32 and | |
3726 | initialize_tdesc_x32_avx. | |
3727 | ||
e7e0cddf SS |
3728 | 2012-05-14 Stan Shebs <[email protected]> |
3729 | ||
3730 | Add dynamic printf. | |
3731 | * breakpoint.h (enum bptype): New type bp_dprintf. | |
3732 | (struct breakpoint): New field extra_string. | |
3733 | (struct breakpoint_ops): Add arg to create_breakpoints_sal. | |
3734 | (create_breakpoint): Add extra_string arg. | |
3735 | * breakpoint.c (dprintf_breakpoint_ops): New. | |
3736 | (is_breakpoint): Add bp_dprintf. | |
3737 | (bpstat_what): Add dprintf case. | |
3738 | (bptype_string): Ditto. | |
3739 | (print_one_breakpoint_location): Ditto. | |
3740 | (init_bp_location): Ditto. | |
3741 | (bkpt_print_mention): Ditto. | |
3742 | (dprintf_style_enums): New array. | |
3743 | (dprintf_style): New global. | |
3744 | (dprintf_function): New global. | |
3745 | (dprintf_channel): New global. | |
3746 | (update_dprintf_command_list): New function. | |
3747 | (update_dprintf_commands): New function. | |
3748 | (init_breakpoint_sal): Add extra_string argument, handle it. | |
3749 | (create_breakpoint_sal): Add extra_string argument. | |
3750 | (create_breakpoints_sal): Add extra_string argument, update callers. | |
3751 | (find_condition_and_thread): Add extra argument. | |
3752 | (create_breakpoint): Add extra_string argument, record it. | |
3753 | (dprintf_command): New function. | |
3754 | (break_command_1): Add arg to create_breakpoint call. | |
3755 | (handle_gnu_v3_exceptions): Ditto. | |
3756 | (trace_command): Ditto. | |
3757 | (ftrace_command): Ditto. | |
3758 | (strace_command): Ditto. | |
3759 | (bkpt_print_mention): Add dprintf case. | |
3760 | (create_breakpoint_sal_default): Add extra_string argument. | |
3761 | (_initialize_breakpoint): Add new commands. | |
3762 | * mi/mi-cmd-break.c (mi_cmd_break_insert): Add arg to call. | |
3763 | * python/py-breakpoint.c (bppy_init): Ditto. | |
3764 | * python/py-finishbreakpoint.c (bpfinishpy_init): Ditto. | |
3765 | ||
8ae38c14 MR |
3766 | 2012-05-14 Maciej W. Rozycki <[email protected]> |
3767 | ||
3768 | * mips-tdep.c (mips_push_dummy_code): Correct description typo. | |
3769 | ||
9f676e66 SCR |
3770 | 2012-05-14 Siva Chandra Reddy <[email protected]> |
3771 | ||
3772 | * python/python.c (gdbpy_find_pc_line): Use ULONGEST instead of | |
3773 | unsigned long long. | |
3774 | ||
7efc75aa SCR |
3775 | 2012-05-13 Siva Chandra Reddy <[email protected]> |
3776 | ||
3777 | Add a new function gdb.find_pc_line to the Python API. | |
3778 | * NEWS (Python Scripting): Add entry about the new function. | |
3779 | * python/python.c (gdbpy_find_pc_line): New function which | |
3780 | implements gdb.find_pc_line. | |
3781 | (GdbMethods): Add entry for the new function. | |
3782 | ||
70af3797 PA |
3783 | 2012-05-12 Pedro Alves <[email protected]> |
3784 | ||
3785 | * amd64-linux-tdep.c (_initialize_amd64_linux_tdep): Call | |
3786 | initialize_tdesc_x32_linux and initialize_tdesc_x32_avx_linux. | |
3787 | ||
06da564e EZ |
3788 | 2012-05-12 Eli Zaretskii <[email protected]> |
3789 | ||
3790 | * inferior.c: Include completer.h | |
3791 | (initialize_inferiors): Set completer of add-inferior to | |
3792 | filename_completer. | |
3793 | ||
0288cee2 L |
3794 | 2012-05-11 H.J. Lu <[email protected]> |
3795 | ||
3796 | * amd64-linux-tdep.c (amd64_linux_core_read_description): Check | |
3797 | gdbarch_ptr_bit for x32 core dump. | |
3798 | ||
f6537a2c L |
3799 | 2012-05-11 H.J. Lu <[email protected]> |
3800 | ||
3801 | * amd64-linux-tdep.c: Include features/i386/x32-linux.c | |
3802 | and features/i386/x32-avx-linux.c. | |
3803 | ||
85d4a676 SS |
3804 | 2012-05-11 Stan Shebs <[email protected]> |
3805 | Kwok Cheung Yeung <[email protected]> | |
3806 | ||
3807 | * NEWS: Describe new info os commands. | |
3808 | * common/linux-osdata.c (PID_T, TIME_T): Define. | |
3809 | (MAX_PID_T_STRLEN): New. | |
3810 | (linux_common_core_of_thread): Add comment. Change to use PID_T and | |
3811 | MAX_PID_T_STRLEN. | |
3812 | (command_from_pid): Add comment. Change to use PID_T. | |
3813 | (commandline_from_pid): Change to use PID_T. | |
3814 | (user_from_pid): Add comment. | |
3815 | (get_process_owner): Add comment. Change to use PID_T and | |
3816 | MAX_PID_T_STRLEN. | |
3817 | (get_number_of_cpu_cores): Add comment. | |
3818 | (get_cores_used_by_process): Add comment. Change to use PID_T and | |
3819 | MAX_PID_T_STRLEN. | |
3820 | (linux_xfer_osdata_processes): Change to use PID_T and | |
3821 | MAX_PID_T_STRLEN. | |
3822 | (compare_processes): New function. | |
3823 | (linux_xfer_osdata_processgroups): New function. | |
3824 | (linux_xfer_osdata_threads): Change to use PID_T. | |
3825 | (linux_xfer_osdata_fds): New function. | |
3826 | (format_socket_state, print_sockets): New functions. | |
3827 | (union socket_addr): New union. | |
3828 | (linux_xfer_osdata_isockets): New function. | |
3829 | (time_from_time_t, group_from_gid): New functions. | |
3830 | (linux_xfer_osdata_shm): New function. | |
3831 | (linux_xfer_osdata_sem): New function. | |
3832 | (linux_xfer_osdata_msg): New function. | |
3833 | (linux_xfer_osdata_modules): New function. | |
3834 | (osdata_table): Add new entries. | |
3835 | * common/buffer.c (buffer_xml_printf): Add support for long and | |
3836 | long long format specifiers. | |
3837 | ||
f24afd6d L |
3838 | 2012-05-11 H.J. Lu <[email protected]> |
3839 | ||
3840 | * amd64-linux-tdep.h (tdesc_x32_linux): New. | |
3841 | (tdesc_x32_avx_linux): Likewise. | |
3842 | ||
7349ff92 JK |
3843 | 2012-05-11 Jan Kratochvil <[email protected]> |
3844 | ||
3845 | Implement multi-component --with-auto-load-dir. | |
3846 | * NEWS (set auto-load scripts-directory, --with-auto-load-dir): New | |
3847 | entries. | |
3848 | (--with-auto-load-safe-path): Update the default value description. | |
3849 | * auto-load.c (auto_load_dir, set_auto_load_dir, show_auto_load_dir): | |
3850 | New. | |
3851 | (auto_load_objfile_script): Add DEBUG_AUTO_LOAD output. Remove | |
3852 | GDB_DATADIR NULL check. Replace GDB_DATADIR/auto-load by | |
3853 | AUTO_LOAD_DIR. Support $ddir and multiple components in it. | |
3854 | (_initialize_auto_load): Initialize also auto_load_dir. Install new | |
3855 | "set auto-load scripts-directory". | |
3856 | * config.in: Regenerate. | |
3857 | * configure: Regenerate. | |
3858 | * configure.ac (--with-auto-load-dir): New configure option. | |
3859 | (--auto-load-safe-path): Change the default to --with-auto-load-dir. | |
3860 | ||
6dea1fbd JK |
3861 | 2012-05-11 Jan Kratochvil <[email protected]> |
3862 | ||
3863 | Provide $ddir substitution for --with-auto-load-safe-path. | |
3864 | * NEWS (--with-auto-load-safe-path, --without-auto-load-safe-path): New | |
3865 | entries. | |
3866 | * auto-load.c: Include observer.h. | |
3867 | (auto_load_safe_path_vec_update): Call substitute_path_component for | |
3868 | each component. New variable ddir_subst. | |
3869 | (auto_load_gdb_datadir_changed): New function. | |
3870 | (set_auto_load_safe_path): Rename DEFAULT_AUTO_LOAD_SAFE_PATH to | |
3871 | AUTO_LOAD_SAFE_PATH. New comment. | |
3872 | (_initialize_auto_load): Rename DEFAULT_AUTO_LOAD_SAFE_PATH to | |
3873 | AUTO_LOAD_SAFE_PATH. Install auto_load_gdb_datadir_changed. | |
3874 | * config.in: Regenerate. | |
3875 | * configure: Regenerate. | |
3876 | * configure.ac (--auto-load-safe-path): Rename | |
3877 | DEFAULT_AUTO_LOAD_SAFE_PATH to AUTO_LOAD_SAFE_PATH. Default to | |
3878 | GDB_DATADIR/auto-load. | |
3879 | * defs.h (substitute_path_component): New declaration. | |
3880 | * top.c: Include observer.h. | |
3881 | (set_gdb_datadir): New function. | |
3882 | (init_main): Install it for "set data-directory". | |
3883 | * utils.c (substitute_path_component): New function. | |
3884 | ||
b09aca3a JK |
3885 | 2012-05-11 Jan Kratochvil <[email protected]> |
3886 | ||
3887 | Make auto-load handle multiple components of DEBUG_FILE_DIRECTORY. | |
3888 | * auto-load.c (auto_load_objfile_script): Remove check for NULL | |
3889 | DEBUG_FILE_DIRECTORY. Handle multiple components of | |
3890 | DEBUG_FILE_DIRECTORY. | |
3891 | ||
95554aad TT |
3892 | 2012-05-10 Tom Tromey <[email protected]> |
3893 | ||
3894 | * dwarf2read.c (recursively_write_psymbols): New function. | |
3895 | (write_psymtabs_to_index): Use it. | |
3896 | ||
3897 | * dwarf2read.c (struct dwarf2_queue_item) <pretend_language>: New | |
3898 | field. | |
3899 | (load_cu, dw2_do_instantiate_symtab, process_psymtab_comp_unit) | |
3900 | (load_partial_comp_unit): Update. | |
3901 | (queue_comp_unit): Add argument 'pretend_language'. | |
3902 | (process_queue): Update. | |
3903 | (psymtab_to_symtab_1): Skip dependencies that have a user. | |
3904 | (load_partial_comp_unit_reader): Give meaning to the 'data' | |
3905 | argument. | |
3906 | (load_full_comp_unit): Add 'pretend_language' argument. | |
3907 | (process_full_comp_unit): Add 'pretend_language' argument. Set | |
3908 | language on CU. | |
3909 | (process_imported_unit_die, read_file_scope, read_type_unit_scope): | |
3910 | Update. | |
3911 | (maybe_queue_comp_unit): Add 'pretend_language' argument. | |
3912 | (follow_die_offset, follow_die_sig, read_signatured_type_reader): | |
3913 | Update. | |
3914 | (prepare_one_comp_unit): Add 'pretend_language' argument. | |
3915 | ||
3916 | * dwarf2read.c: (dwarf2_per_cu_ptr): New typedef. | |
3917 | (struct dwarf2_per_objfile) <just_read_cus>: New field. | |
3918 | (struct dwarf2_per_cu_data) <imported_symtabs>: New field. | |
3919 | (dw2_do_instantiate_symtab): Check whether symtab was read in | |
3920 | before queueing. | |
3921 | (dw2_instantiate_symtab): Add assertion. Call | |
3922 | process_cu_includes. | |
3923 | (process_psymtab_comp_unit): Compute 'dependencies' for psymtab. | |
3924 | (partial_symtab_p): New typedef. | |
3925 | (set_partial_user): New function. | |
3926 | (dwarf2_build_psymtabs_hard): Use set_partial_user. | |
3927 | (scan_partial_symbols): Add imported CU to imported_symtabs. | |
3928 | (dwarf2_psymtab_to_symtab): Call process_cu_includes. | |
3929 | (psymtab_to_symtab_1): Do nothing if psymtab is readin. | |
3930 | (get_symtab, recursively_compute_inclusions) | |
3931 | (compute_symtab_includes, process_cu_includes) | |
3932 | (process_imported_unit_die): New functions. | |
3933 | (process_die) <DW_TAG_imported_unit>: New case. | |
3934 | (dwarf2_per_objfile_free): Free 'imported_symtabs'. | |
3935 | ||
3936 | * dwarf2read.c (struct dwarf2_per_cu_data) <psymtab>: Update | |
3937 | comment. | |
3938 | (struct partial_die_info) <locdesc>: Remove. | |
3939 | <d>: New field. | |
3940 | (process_psymtab_comp_unit): Add 'read_partial' argument. | |
3941 | Update. | |
3942 | (process_type_comp_unit, dwarf2_build_psymtabs_hard): Update. | |
3943 | (scan_partial_symbols): Handle DW_TAG_imported_unit. | |
3944 | (add_partial_symbol): Update. | |
3945 | (process_die): Handle DW_TAG_partial_unit. | |
3946 | (read_file_scope): Update comment. | |
3947 | (load_partial_dies): Handle DW_TAG_imported_unit. | |
3948 | (read_partial_die): Handle DW_TAG_partial_unit, DW_AT_import. | |
3949 | (determine_prefix, dwarf2_name): Handle DW_TAG_partial_unit. | |
3950 | ||
e871fbb9 TT |
3951 | 2012-05-10 Tom Tromey <[email protected]> |
3952 | ||
3953 | * cc-with-dwz.sh: New file. | |
3954 | ||
b5b04b5b TT |
3955 | 2012-05-10 Tom Tromey <[email protected]> |
3956 | ||
3957 | * symtab.h (struct symtab) <includes, user>: New fields. | |
3958 | * block.h (struct block_iterator) <d, idx, which>: New fields. | |
3959 | * block.c (initialize_block_iterator, find_iterator_symtab) | |
3960 | (block_iterator_step, block_iter_name_step) | |
3961 | (block_iter_match_step): New functions. | |
3962 | (block_iterator_first, block_iterator_next) | |
3963 | (block_iter_name_first, block_iter_name_next) | |
3964 | (block_iter_match_first, block_iter_match_next): Rewrite. | |
3965 | (get_block_symtab): New function. | |
3966 | ||
84a146c9 TT |
3967 | 2012-05-10 Tom Tromey <[email protected]> |
3968 | ||
3969 | * jv-lang.c (get_java_class_symtab): Use allocate_global_block, | |
3970 | set_block_symtab. | |
3971 | * jit.c (finalize_symtab): Use allocate_global_block, | |
3972 | set_block_symtab. | |
3973 | * buildsym.c (finish_block_internal): New function, from old | |
3974 | finish_block. | |
3975 | (finish_block): Rewrite. | |
3976 | (end_symtab): Use finish_block_internal, set_block_symtab. | |
3977 | * block.h (struct global_block): New. | |
3978 | (allocate_global_block, set_block_symtab): Declare. | |
3979 | * block.c (allocate_global_block, set_block_symtab): New | |
3980 | functions. | |
3981 | ||
9439a077 TT |
3982 | 2012-05-10 Tom Tromey <[email protected]> |
3983 | ||
3984 | * psymtab.c (partial_map_expand_apply): Add assertion. | |
3985 | (partial_map_symtabs_matching_filename): Skip included psymtabs. | |
3986 | (psymtab_to_symtab): Find unshared psymtab. | |
3987 | (dump_psymtab): Print including psymtabs. | |
3988 | (recursively_search_psymtabs): New function. | |
3989 | (expand_symtabs_matching_via_partial): Use it. | |
3990 | * psympriv.h (struct partial_symtab) <user, searched_flag>: New | |
3991 | fields. | |
3992 | (enum psymtab_search_status): New. | |
3993 | ||
8157b174 TT |
3994 | 2012-05-10 Tom Tromey <[email protected]> |
3995 | ||
3996 | * tracepoint.c (scope_info): Update. | |
3997 | * symtab.c (lookup_block_symbol, iterate_over_symbols) | |
3998 | (find_pc_sect_symtab, search_symbols) | |
3999 | (default_make_symbol_completion_list_break_on) | |
4000 | (make_file_symbol_completion_list): Update. | |
4001 | * symmisc.c (dump_symtab_1): Update. | |
4002 | * stack.c (print_frame_args, iterate_over_block_locals) | |
4003 | (print_frame_labels, iterate_over_block_arg_vars): Update. | |
4004 | * python/py-block.c (block_object) <dict>: Remove. | |
4005 | <block>: New field. | |
4006 | <iter>: Change type. | |
4007 | (blpy_iter): Update. | |
4008 | (blpy_block_syms_iternext): Update. | |
4009 | * psymtab.c (map_block): Use block iterators. | |
4010 | * objfiles.c (objfile_relocate1): Use ALL_DICT_SYMBOLS. | |
4011 | * mi/mi-cmd-stack.c (list_args_or_locals): Update. | |
4012 | * mdebugread.c (parse_symbol, mylookup_symbol): Update. | |
4013 | * infrun.c (check_exception_resume): Update. | |
4014 | * cp-support.c (make_symbol_overload_list_block): Update. | |
4015 | * coffread.c (patch_opaque_types): Update. | |
4016 | * buildsym.c (finish_block, end_symtab): Use ALL_DICT_SYMBOLS. | |
4017 | * block.h (struct block_iterator): New. | |
4018 | (block_iterator_first, block_iterator_next, block_iter_name_first) | |
4019 | (block_iter_name_next, block_iter_match_first) | |
4020 | (block_iter_match_next): Declare. | |
4021 | (ALL_BLOCK_SYMBOLS): Redefine. | |
4022 | * block.c (block_iterator_first, block_iterator_next) | |
4023 | (block_iter_name_first, block_iter_name_next) | |
4024 | (block_iter_match_first, block_iter_match_next): New functions. | |
4025 | * ada-lang.c (ada_add_block_symbols) | |
4026 | (ada_make_symbol_completion_list): Use block iterator. | |
4027 | ||
a2ca7a52 TT |
4028 | 2012-05-10 Tom Tromey <[email protected]> |
4029 | ||
4030 | * psymtab.c (PSYMTAB_TO_SYMTAB): Remove. | |
4031 | (find_pc_sect_symtab_from_partial, lookup_symbol_aux_psymtabs) | |
4032 | (lookup_partial_symbol, find_last_source_symtab_from_partial) | |
4033 | (read_psymtabs_with_filename, map_matching_symbols_psymtab) | |
4034 | (expand_symtabs_matching_via_partial, maintenance_check_symtabs): | |
4035 | Update. | |
4036 | ||
64ea88dc JB |
4037 | 2012-05-10 Joel Brobecker <[email protected]> |
4038 | ||
4039 | * config/djgpp/fnchange.lst: Add entries for print-file-var-lib1.c, | |
4040 | print-file-var-lib2.c, print-file-var-main.c and | |
4041 | print-file-var.exp (located in gdb/testsuite/gdb.base). | |
4042 | ||
99a547d6 JB |
4043 | 2012-05-10 Joel Brobecker <[email protected]> |
4044 | ||
4045 | * findvar.c (default_read_var_value): For LOC_UNRESOLVED symbols, | |
4046 | try locating the symbol in the symbol's own objfile first, before | |
4047 | extending the search to all objfiles. | |
4048 | * symtab.c (lookup_symbol_aux_objfile): New function, extracted | |
4049 | out of lookup_symbol_aux_symtabs. | |
4050 | (lookup_symbol_aux_symtabs): Add new parameter "exclude_objfile". | |
4051 | Replace extracted-out code by call to lookup_symbol_aux_objfile. | |
4052 | Do not search EXCLUDE_OBJFILE. | |
4053 | (lookup_static_symbol_aux): Update call to lookup_symbol_aux_symtabs. | |
4054 | (lookup_symbol_global): Search for matches in the block's objfile | |
4055 | first, before searching all other objfiles. | |
4056 | ||
0ece64fd TG |
4057 | 2012-05-10 Tristan Gingold <[email protected]> |
4058 | ||
4059 | * printcmd.c (set_command): Add pre/post inc/dec. | |
4060 | ||
3d16a105 FCE |
4061 | 2012-05-09 Frank Ch. Eigler <[email protected]> |
4062 | ||
4063 | * gdb.1: Document -ex option. | |
4064 | ||
2efbc0f7 JB |
4065 | 2012-05-09 Joel Brobecker <[email protected]> |
4066 | ||
4067 | * infcall.c (call_function_by_hand): Remove AT_SYMBOL handling. | |
4068 | * inferior.h (AT_SYMBOL): Delete. | |
4069 | ||
2c76a0c7 JB |
4070 | 2012-05-09 Joel Brobecker <[email protected]> |
4071 | ||
4072 | * mips-tdep.c (mips_push_dummy_code): New function. | |
4073 | (mips_gdbarch_init): Set the gdbarch call_dummy_location to | |
4074 | ON_STACK and install mips_push_dummy_code as our gdbarch | |
4075 | push_dummy_code routine. | |
4076 | ||
9401a810 PA |
4077 | 2012-05-09 Pedro Alves <[email protected]> |
4078 | ||
4079 | * target.c (set_maintenance_target_async_permitted): Rename to ... | |
4080 | (set_target_async_command): ... this. | |
4081 | (show_maintenance_target_async_permitted): Rename to ... | |
4082 | (show_target_async_command): ... this. | |
4083 | (initialize_targets): Adjust. | |
4084 | ||
3929b321 DE |
4085 | 2012-05-08 Doug Evans <[email protected]> |
4086 | ||
4087 | * go-exp.y (classify_name): Add missing assignment of fields of | |
4088 | yylval.ssym. | |
4089 | ||
c41535fd EZ |
4090 | 2012-05-08 Eli Zaretskii <[email protected]> |
4091 | ||
4092 | Display the ">" prompt in interactive mode while reading canned | |
4093 | commands, even when the current interpreter is MI. | |
4094 | ||
4095 | * interps.c (interp_set_temp): New function. | |
4096 | ||
4097 | * interps.h (interp_set_temp): Add prototype. | |
4098 | ||
4099 | * cli/cli-script.c (restore_interp): New cleanup function. | |
4100 | (read_command_lines): Temporarily override the current interpreter | |
4101 | with CLI and arrange for restoring the original one. | |
4102 | ||
c0749c4d JS |
4103 | 2012-05-12 Joel Sherrill <[email protected]> |
4104 | ||
4105 | * microblaze-rom.c (_initialize_picobug_rom): Add prototype. | |
4106 | ||
d7333987 SDJ |
4107 | 2012-05-07 Sergio Durigan Junior <[email protected]> |
4108 | ||
4109 | * probe.c (parse_probes): Move conditional to check for | |
4110 | debuginfo files from here... | |
4111 | * stap-probe.c (stap_get_probes): ... to here. | |
4112 | ||
649e6d92 MK |
4113 | 2012-05-07 Mark Kettenis <[email protected]> |
4114 | H.J. Lu <[email protected]> | |
4115 | ||
4116 | * amd64-tdep.c (amd64_analyze_prologue): Additionally check for | |
4117 | `movl %esp, %ebp' for the X32 ABI. | |
4118 | ||
f39c6ffd TT |
4119 | 2012-05-07 Tom Tromey <[email protected]> |
4120 | ||
4121 | * dwarf2read.c (dwarf_tag_name): Return const char *. Use | |
4122 | get_DW_TAG_name. | |
4123 | (dwarf_attr_name): Return const char *. Use get_DW_AT_name. | |
4124 | (dwarf_form_name): Return const char *. Use get_DW_FORM_name. | |
4125 | (dwarf_stack_op_name): Remove. | |
4126 | (dwarf_cfi_name): Return const char *. Use get_DW_ATE_name. | |
4127 | (decode_locdesc): Use get_DW_OP_name. | |
4128 | * dwarf2loc.c (unimplemented): Use get_DW_OP_name. | |
4129 | (dwarf2_compile_expr_to_ax): Likewise. | |
4130 | (disassemble_dwarf_expression): Likewise. | |
4131 | * dwarf2expr.h: (dwarf_stack_op_name): Remove. | |
4132 | ||
1e1f6591 CLT |
4133 | 2012-05-07 Chung-Lin Tang <[email protected]> |
4134 | ||
4135 | * sh-linux-tdep.c: Include trad-frame.h and tramp-frame.h. | |
4136 | (sh_linux_sigtramp_cache): New function. | |
4137 | (sh_linux_sigreturn_init): New function. | |
4138 | (sh_linux_rt_sigreturn_init): New function. | |
4139 | (SH_MOVW,SH_TRAP,SH_OR_R0_R0): New symbols for instruction | |
4140 | patterns. | |
4141 | (SH_NR_SIGRETURN,SH_NR_RT_SIGRETURN): New symbols for sigreturn | |
4142 | syscall codes. | |
4143 | (sh_linux_sigreturn_tramp_frame): New tramp_frame definition. | |
4144 | (sh_linux_rt_sigreturn_tramp_frame): Likewise. | |
4145 | (sh_linux_init_abi): Add init calls to register new tramp_frame | |
4146 | definitions under 32-bit SH, update comments. | |
4147 | ||
545c08b4 PA |
4148 | 2012-05-07 Pedro Alves <[email protected]> |
4149 | ||
daac165e PA |
4150 | PR gdb/10952 |
4151 | ||
545c08b4 PA |
4152 | * amd64-linux-tdep.c: Include glibc-tdep.h. |
4153 | (amd64_linux_init_abi): Install glibc_skip_solib_resolver as | |
4154 | gdbarch_skip_solib_resolver callback. | |
4155 | ||
af2c1515 JK |
4156 | 2012-05-06 Jan Kratochvil <[email protected]> |
4157 | ||
4158 | * auto-load.c (set_auto_load_safe_path): Reset AUTO_LOAD_SAFE_PATH | |
4159 | back to DEFAULT_AUTO_LOAD_SAFE_PATH if it is being set to "". | |
4160 | (show_auto_load_safe_path): Check any-directory by comparison with "/". | |
4161 | (add_auto_load_safe_path): Change the error message. | |
4162 | (_initialize_auto_load): Change the "safe-path" help text. | |
4163 | * configure: Regenerate | |
4164 | * configure.ac (--without-auto-load-safe-path): Set | |
4165 | WITH_AUTO_LOAD_SAFE_PATH to /. | |
4166 | ||
1067f998 SDJ |
4167 | 2012-05-05 Sergio Durigan Junior <[email protected]> |
4168 | ||
4169 | * stap-probe.h: Do not include unecessary `probe.h'. | |
4170 | ||
45dfa85a AM |
4171 | 2012-05-05 Alan Modra <[email protected]> |
4172 | ||
4173 | * elfread.c (elf_symtab_read): Use bfd_abs_section_ptr and | |
4174 | bfd_und_section_ptr. | |
4175 | * machoread.c (macho_symtab_add_minsym): Use bfd_abs_section_ptr | |
4176 | and bfd_com_section_ptr. | |
4177 | ||
cf093994 JB |
4178 | 2012-05-04 Joel Brobecker <[email protected]> |
4179 | ||
762ebb75 | 4180 | * MAINTAINERS (Past Maintainers): Add Chris Faylor. |
cf093994 | 4181 | |
d40dc7a8 JB |
4182 | 2012-05-04 Joel Brobecker <[email protected]> |
4183 | ||
4184 | * windows-nat.h (segment_register_p_ftype): New typedef. | |
4185 | (windows_set_segment_register_p): Add declaration. | |
4186 | * windows-nat.c (segment_register_p): New static global. | |
4187 | (windows_set_segment_register_p): New function. | |
4188 | (do_windows_fetch_inferior_registers): Add special handling | |
4189 | for segment registers. | |
4190 | * amd64-windows-nat.c: #include "amd64-tdep.h". | |
4191 | (amd64_windows_segment_register_p): New function. | |
4192 | (_initialize_amd64_windows_nat): Call windows_set_segment_register_p. | |
4193 | * i386-windows-nat.c: #include "i386-tdep.h". | |
4194 | (i386_windows_segment_register_p): New function. | |
4195 | (_initialize_i386_windows_nat): Call windows_set_segment_register_p. | |
4196 | ||
52b3699b TG |
4197 | 2012-05-04 Tristan Gingold <[email protected]> |
4198 | ||
4199 | * printcmd.c (set_command): Emit a warning if the expression is not | |
4200 | an assignment. | |
4201 | ||
94c74239 JB |
4202 | 2012-05-03 Joel Brobecker <[email protected]> |
4203 | ||
4204 | * nto-procfs.c (procfs_find_new_threads, procfs_pid_to_str): | |
4205 | Make static. | |
4206 | ||
fcf57f19 SDJ |
4207 | 2012-05-03 Sergio Durigan Junior <[email protected]> |
4208 | ||
4209 | * stap-probe.c (stap_is_operator): Change declaration. | |
4210 | (stap_get_opcode): Change return value. | |
4211 | (stap_parse_argument_1): Update calls to `stap_get_opcode' and | |
4212 | `stap_parse_argument_1'. | |
4213 | ||
27d2932e PA |
4214 | 2012-05-03 Pedro Alves <[email protected]> |
4215 | ||
4216 | * infrun.c (displaced_step_fixup): Add "displaced:" prefix to | |
4217 | debug log. | |
4218 | ||
a20ee7a4 SCR |
4219 | 2012-05-03 Siva Chandra Reddy <[email protected]> |
4220 | ||
4221 | Add two new methods global_block and static_block to gdb.Symtab | |
4222 | objects. | |
4223 | * NEWS (Python scripting): Add entry about the new methods. | |
4224 | * python/py-symtab.c (stpy_global_block): New function which | |
4225 | implements the gdb.Symtab.global_block() method. | |
4226 | (stpy_static_block): New function which implements the | |
4227 | gdb.Symtab.static_block() method. | |
4228 | (symtab_object_methods): Add entries for the two new methods. | |
4229 | ||
943cb756 DE |
4230 | 2012-05-03 Doug Evans <[email protected]> |
4231 | ||
4232 | * dwarf2read.c (dw2_find_symbol_file): Don't crash if there are no | |
4233 | files. | |
4234 | ||
f4644a3f YQ |
4235 | 2012-05-03 Yao Qi <[email protected]> |
4236 | ||
4237 | * i386-tdep.c (i386_fetch_pointer_argument): Remove extra | |
4238 | space. | |
4239 | (i386_process_record): Ditto. | |
4240 | ||
ef61f180 JB |
4241 | 2012-05-02 Joel Brobecker <[email protected]> |
4242 | ||
4243 | * infcall.c (unwind_on_signal_p): Make static. | |
4244 | ||
02f1df11 JB |
4245 | 2012-05-02 Joel Brobecker <[email protected]> |
4246 | ||
4247 | * sol-thread.c (solaris_pid_to_str): Make static. | |
4248 | (_initialize_sol_thread): Add prototype. | |
4249 | ||
39023530 JB |
4250 | 2012-05-02 Joel Brobecker <[email protected]> |
4251 | ||
4252 | * sol-thread.c (procfs_pid_to_str): Delete extern declaration. | |
4253 | ||
c6b0c501 CF |
4254 | 2012-05-02 Christopher Faylor <[email protected]> |
4255 | ||
4256 | * MAINTAINERS: Remove myself. | |
4257 | ||
1ef71717 JK |
4258 | 2012-05-02 Jan Kratochvil <[email protected]> |
4259 | ||
4260 | Fix --without-auto-load-safe-path for MS-Windows host platform. | |
4261 | * auto-load.c (filename_is_in_dir): Return 1 for DIR_LEN 0. | |
4262 | ||
b31b86a7 EZ |
4263 | 2012-05-02 Eli Zaretskii <[email protected]> |
4264 | ||
4265 | * gdb_curses.h: Undefine KEY_EVENT before including curses | |
4266 | headers. Move "#undef MOUSE_MOVED" before any curses header | |
4267 | inclusion. | |
4268 | ||
777532fc SDJ |
4269 | 2012-05-02 Sergio Durigan Junior <[email protected]> |
4270 | ||
4271 | * features/i386/i386-mmx-linux.c: Regenerate. | |
4272 | * features/rs6000/powerpc-32.c: Likewise. | |
4273 | * features/rs6000/powerpc-32l.c: Likewise. | |
4274 | * features/rs6000/powerpc-403.c: Likewise. | |
4275 | * features/rs6000/powerpc-403gc.c: Likewise. | |
4276 | * features/rs6000/powerpc-405.c: Likewise. | |
4277 | * features/rs6000/powerpc-505.c: Likewise. | |
4278 | * features/rs6000/powerpc-601.c: Likewise. | |
4279 | * features/rs6000/powerpc-602.c: Likewise. | |
4280 | * features/rs6000/powerpc-603.c: Likewise. | |
4281 | * features/rs6000/powerpc-604.c: Likewise. | |
4282 | * features/rs6000/powerpc-64.c: Likewise. | |
4283 | * features/rs6000/powerpc-64l.c: Likewise. | |
4284 | * features/rs6000/powerpc-750.c: Likewise. | |
4285 | * features/rs6000/powerpc-860.c: Likewise. | |
4286 | * features/rs6000/powerpc-e500.c: Likewise. | |
4287 | * features/rs6000/powerpc-e500l.c: Likewise. | |
4288 | * features/rs6000/powerpc-isa205-32l.c: Likewise. | |
4289 | * features/rs6000/powerpc-isa205-64l.c: Likewise. | |
4290 | * features/rs6000/rs6000.c: Likewise. | |
4291 | ||
d71871bc SDJ |
4292 | 2012-05-02 Sergio Durigan Junior <[email protected]> |
4293 | ||
4294 | * i386-tdep.c (i386_stap_parse_special_token) <s>: Remove unused | |
4295 | variable. | |
4296 | * stap-probe.c (stap_parse_single_operand) <reg_suffix, | |
4297 | reg_ind_suffix, reg_suffix_len, reg_ind_suffix_len>: Likewise. | |
4298 | (stap_parse_argument) <e>: Likewise. | |
4299 | (handle_stap_probe) <byte_order>: Likewise. | |
4300 | ||
fd820528 DE |
4301 | 2012-04-30 Doug Evans <[email protected]> |
4302 | ||
4303 | * dwarf2read.c (init_cutu_and_read_dies): Renamed from | |
4304 | init_and_read_dies_worker. All callers updated. | |
4305 | (init_cu_and_read_dies, init_tu_and_read_dies): Delete. All calls | |
4306 | replaced with init_cutu_and_read_dies. | |
4307 | (load_partial_comp_unit): Pass 1 for use_existing_cu. | |
4308 | (find_partial_die): Remove FIXME. Don't free current CU. | |
4309 | ||
ec3f619d | 4310 | 2012-04-30 Sterling Augustine <[email protected]> |
be36f02d SA |
4311 | |
4312 | * contrib: New directory. | |
4313 | * contrib/test_pubnames_and_indexes.py: New file. | |
4314 | ||
fceca515 DE |
4315 | 2012-04-30 Doug Evans <[email protected]> |
4316 | ||
4317 | * dwarf2read.c (dwarf_decode_macros): New arg section_name. | |
4318 | All callers updated. | |
4319 | (init_cu_die_reader): Verify the section is non-empty. | |
4320 | (dwarf_decode_line_header): Don't dereference section->asection | |
4321 | until we know the section is present. | |
4322 | ||
311fe7e1 SDJ |
4323 | 2012-04-29 Sergio Durigan Junior <[email protected]> |
4324 | ||
4325 | * tracepoint.c (start_tracing, stop_tracing): Checking for NULL | |
4326 | probes. | |
4327 | ||
5977971a YQ |
4328 | 2012-04-29 Yao Qi <[email protected]> |
4329 | ||
4330 | * gdb-code-style.el: New hook gdb-markup-hook | |
4331 | and gdb-comment-hook. | |
4332 | ||
dee91e82 DE |
4333 | 2012-04-28 Doug Evans <[email protected]> |
4334 | ||
3019eac3 DE |
4335 | Initial support for Fission. http://gcc.gnu.org/wiki/DebugFission |
4336 | * symfile.c (default_symfile_relocate): Use sectp->owner instead of | |
4337 | objfile->obfd. | |
4338 | * symfile.h (dwarf2_debug_sections): New member addr. | |
4339 | * dwarf2expr.c (execute_stack_op): New case DW_OP_GNU_addr_index. | |
4340 | (ctx_no_get_addr_index): New function. | |
4341 | * dwarf2expr.h (dwarf_expr_context_funcs): New member get_addr_index. | |
4342 | (ctx_no_get_addr_index): Declare. | |
4343 | * dwarf2-frame.c (dwarf2_frame_ctx_funcs): Update. | |
4344 | * dwarf2loc.c (dwarf_expr_get_addr_index): New function. | |
4345 | (dwarf_expr_ctx_funcs): Update. | |
4346 | (needs_get_addr_index): New function. | |
4347 | (needs_frame_ctx_funcs): Update. | |
4348 | * dwarf2loc.h (dwarf2_read_addr_index): Declare. | |
4349 | * dwarf2read.c: #include "gdbcore.h". | |
4350 | (dwarf2_per_objfile): New members addr, dwo_files. | |
4351 | (dwarf2_elf_names): Add entry for addr. | |
4352 | (struct dwo_section_names): New type. | |
4353 | (dwo_section_names): New static global. | |
4354 | (dwarf2_cu): New members dwo_unit, addr_base, have_addr_base. | |
4355 | (dwarf2_per_cu_data): New member is_debug_types, all boolean uses of | |
4356 | old debug_types_section member updated to use this. | |
4357 | Rename member debug_types_section to info_or_types_section, | |
4358 | all uses updated. | |
4359 | (signatured_type): Rename member type_offset to type_offset_in_tu, | |
4360 | all uses updated. New member type_offset_in_section. | |
4361 | (struct dwo_sections): New type. | |
4362 | (struct dwo_unit): New type. | |
4363 | (struct dwo_file): New type. | |
4364 | (die_reader_specs): New member dwo_file. | |
4365 | (dwarf2_locate_sections): Watch for .debug_addr. | |
4366 | (zlib_decompress_section): Use sectp->owner instead of objfile->obfd. | |
4367 | (dwarf2_read_section): Get bfd of section from bfd's asection, | |
4368 | instead of objfile. | |
4369 | (create_cus_from_index): Initialize the_cu->info_or_types_section. | |
4370 | (create_signatured_type_table_from_index): Initialize | |
4371 | sig_type->info_or_types_section. | |
4372 | (dw2_get_file_names): Statement lists for type units with DWO files | |
4373 | live in the DWO file. | |
4374 | (create_debug_types_hash_table): New function. | |
4375 | (create_all_type_units): Rewrite. | |
4376 | (init_cu_die_reader): New arg dwo_file, all callers updated. | |
4377 | (init_and_read_dies_worker): Get section from | |
4378 | this_cu->info_or_types_section. Set sig_type->type_offset_in_section. | |
4379 | Watch for DW_AT_GNU_dwo_name and if present lookup the file and | |
4380 | continue reading the CU/TU from there. | |
4381 | (init_cutu_and_read_dies_no_follow): New arg dwo_file, all callers | |
4382 | updated. Get section from this_cu->info_or_types_section. | |
4383 | (create_all_comp_units): Initialize this_cu->info_or_types_section. | |
4384 | (skip_one_die): New cases DW_FORM_GNU_addr_index, | |
4385 | DW_FORM_GNU_str_index. | |
4386 | (hash_dwo_file, eq_dwo_file): New functions. | |
4387 | (allocate_dwo_file_hash_table): New function. | |
4388 | (hash_dwo_unit, eq_dwo_unit): New functions. | |
4389 | (allocate_dwo_unit_table): New function. | |
4390 | (dwarf2_locate_dwo_sections): New function. | |
4391 | (struct create_dwo_info_table_data): New type. | |
4392 | (create_debug_info_hash_table_reader): New function. | |
4393 | (create_debug_info_hash_table): New function. | |
4394 | (try_open_dwo_file, open_dwo_file, init_dwo_file): New function. | |
4395 | (lookup_dwo_file): New function. | |
4396 | (lookup_dwo_comp_unit, lookup_dwo_type_unit): New functions. | |
4397 | (free_dwo_file, free_dwo_file_cleanup): New functions. | |
4398 | (free_dwo_file_from_slot, free_dwo_files): New functions. | |
4399 | (dwarf2_get_pc_bounds): Handle DW_FORM_GNU_addr_index. | |
4400 | (dwarf2_record_block_ranges): Ditto. | |
4401 | (read_partial_die): Ditto. | |
4402 | (process_enumeration_scope): Update to use type_offset_in_section. | |
4403 | (read_full_die_1): New function. | |
4404 | (read_full_die): Rewrite. | |
4405 | (read_attribute_value): New cases DW_FORM_GNU_addr_index, | |
4406 | DW_FORM_GNU_str_index. | |
4407 | (read_addr_index_1, read_addr_index): New functions. | |
4408 | (read_addr_index_from_leb128): New function. | |
4409 | (struct dwarf2_read_addr_index_data): New type. | |
4410 | (dwarf2_read_addr_index_reader): New function. | |
4411 | (dwarf2_read_addr_index): New function. | |
4412 | (read_str_index): New function. | |
4413 | (leb128_size): New function. | |
4414 | (dwarf_decode_line_header): Delete arg abfd, all callers updated. | |
4415 | If processing a type unit from a DWO file, get the line section | |
4416 | from the DWO file. | |
4417 | (var_decode_location): Watch for DW_OP_GNU_addr_index. | |
4418 | (dwarf2_const_value_attr): New cases DW_FORM_GNU_addr_index, | |
4419 | DW_FORM_GNU_str_index. | |
4420 | (lookup_die_type): Check whether section offset of type's die is | |
4421 | known before looking it up. Remove assert. Condition can | |
4422 | legimately happen for inter-cu type references. | |
4423 | (dwarf_attr_name): Handle Fission attributes. | |
4424 | (dwarf_form_name): Handle Fission forms. | |
4425 | (dump_die_shallow): New cases DW_FORM_GNU_addr_index, | |
4426 | DW_FORM_GNU_str_index. | |
4427 | (follow_die_sig): Update to use type_offset_in_section. | |
4428 | (decode_locdesc): New case DW_OP_GNU_addr_index. | |
4429 | (skip_form_bytes): New cases DW_FORM_GNU_addr_index, | |
4430 | DW_FORM_GNU_str_index. | |
4431 | (cu_debug_loc_section): New function. | |
4432 | (fill_in_loclist_baton, dwarf2_symbol_mark_computed): Call it. | |
4433 | (dwarf2_per_objfile_free): Unmap .debug_addr section. | |
4434 | Free DWO files if present. | |
4435 | * xcoffread.c (dwarf2_xcoff_names): Add .debug_addr. | |
4436 | ||
dee91e82 DE |
4437 | Refactor DIE reading. |
4438 | * dwarf2read.c (dwarf2_per_objfile): Replace members | |
4439 | debug_info_type_hash and debug_types_type_hash with die_type_hash. | |
4440 | (die_reader_specs): New member "die_section". Temporarily make | |
4441 | member "buffer" non-const, pending constifying all info_ptr uses. | |
4442 | (die_reader_func_ftype): New typedef. | |
4443 | (dw2_get_file_names_reader): New function. | |
4444 | (dw2_get_file_names): Rewrite. | |
4445 | (read_and_check_type_unit_head): Rename arg type_offset to | |
4446 | type_offset_in_tu. | |
4447 | (create_all_type_units): Improve debugging message. | |
4448 | Improve dummy type unit check. | |
4449 | (init_cu_die_reader): New arg "section". All callers updated. | |
4450 | (init_and_read_dies_worker): New function. | |
4451 | (init_cu_and_read_dies, init_tu_and_read_dies): New functions. | |
4452 | (init_cutu_and_read_dies_no_follow): New function. | |
4453 | (init_cutu_and_read_dies_simple): New function. | |
4454 | (process_psymtab_comp_unit_reader): New function. | |
4455 | (process_psymtab_comp_unit): Delete args section, | |
4456 | is_debug_types_section. Rewrite. All callers updated. | |
4457 | (process_psymtab_type_unit): Renamed from process_type_comp_unit. | |
4458 | All callers updated. Rewrite. | |
4459 | (load_partial_comp_unit_reader): New function. | |
4460 | (load_partial_comp_unit): Rewrite. | |
4461 | (skip_children): New arg reader. Delete args buffer, cu. | |
4462 | All callers updated. | |
4463 | (skip_one_die): New arg reader. Delete args buffer, cu. | |
4464 | All callers updated. | |
4465 | (locate_pdi_sibling): New arg reader. Delete args buffer, abfd, cu. | |
4466 | All callers updated. | |
4467 | (load_full_comp_unit_reader): New function. | |
4468 | (load_full_comp_unit): Rewrite. | |
4469 | (read_comp_unit): Delete. | |
4470 | (read_die_and_children_1): Delete, contents moved ... | |
4471 | (read_die_and_children): ... here. | |
4472 | (dwarf2_read_abbrevs): New arg abbrev_section. All callers updated. | |
4473 | (load_partial_dies): New arg reader. Delete args abfd, buffer, cu. | |
4474 | All callers updated. | |
4475 | (read_partial_die): New arg reader. Delete args abfd, buffer, cu. | |
4476 | All callers updated. | |
4477 | (find_partial_die): Rewrite load_all_dies support. | |
4478 | (read_attribute_value): New arg reader. Delete args abfd, cu. | |
4479 | All callers updated. | |
4480 | (read_attribute): New arg reader. Delete args abfd, cu. | |
4481 | All callers updated. | |
4482 | (load_full_type_unit): Add assert. | |
4483 | (read_signatured_type_reader): New function. | |
4484 | (read_signatured_type): Rewrite. | |
4485 | (free_stack_comp_unit): Remove call to age_cached_comp_units. | |
4486 | (free_one_cached_comp_unit): Change target_cu arg to target_per_cu. | |
4487 | All callers updated. Set per_cu->cu = NULL after freeing it. | |
4488 | (dwarf2_per_cu_offset_and_type): Renamed from dwarf2_offset_and_type. | |
4489 | (per_cu_offset_and_type_hash): Renamed from offset_and_type_hash. | |
4490 | (per_cu_offset_and_type_eq): Renamed from offset_and_type_eq. | |
4491 | (set_die_type): Update. | |
4492 | (get_die_type_at_offset): Update. | |
4493 | (read_file_scope): Call prepare_one_comp_unit. | |
4494 | (read_type_unit_scope): Ditto. | |
4495 | (prepare_one_comp_unit): Set producer if present. | |
4496 | ||
72d59e0d SDJ |
4497 | 2012-04-28 Sergio Durigan Junior <[email protected]> |
4498 | ||
4499 | * probe.c (compile_rx_or_error): Silence ARI warning about missing | |
4500 | gettext function on `error'. | |
4501 | ||
0fefef59 DE |
4502 | 2012-04-27 Doug Evans <[email protected]> |
4503 | ||
4504 | * dwarf2read.c (dwarf2_read_index): Don't use index if symbol table | |
4505 | is empty. | |
4506 | ||
28106bc2 SDJ |
4507 | 2012-04-27 Sergio Durigan Junior <[email protected]> |
4508 | Tom Tromey <[email protected]> | |
4509 | ||
4510 | * breakpoint.c (struct breakpoint_objfile_data) | |
4511 | <longjmp_searched>,<longjmp_probes>,<exception_searched>, | |
4512 | <exception_probes>: New fields. | |
4513 | (free_breakpoint_probes): New function. | |
4514 | (create_longjmp_master_breakpoint): Prefer SystemTap probe over | |
4515 | `_Unwind_DebugHook'. | |
4516 | (create_exception_master_breakpoint): Likewise. | |
4517 | (_initialize_breakpoint): Registering cleanup for SystemTap probes. | |
4518 | * infrun.c: Including necessary header files for handling SystemTap | |
4519 | probes. | |
4520 | (handle_inferior_event): Handling longjmp breakpoint and exceptions | |
4521 | via SystemTap probes. | |
4522 | (check_exception_resume): Remove `func' argument. Handle exception | |
4523 | unwinding breakpoint set via a SystemTap probe. | |
4524 | (insert_exception_resume_from_probe): New function. | |
4525 | ||
55aa24fb SDJ |
4526 | 2012-04-27 Sergio Durigan Junior <[email protected]> |
4527 | Tom Tromey <[email protected]> | |
4528 | Jan Kratochvil <[email protected]> | |
4529 | ||
4530 | * Makefile.in (SFILES): Add `probe' and `stap-probe'. | |
4531 | (COMMON_OBS): Likewise. | |
4532 | (HFILES_NO_SRCDIR): Add `probe'. | |
4533 | * NEWS: Mention support for static and SystemTap probes. | |
4534 | * amd64-tdep.c (amd64_init_abi): Initializing proper fields used by | |
4535 | SystemTap probes' arguments parser. | |
4536 | * arm-linux-tdep.c: Including headers needed to perform the parsing | |
4537 | of SystemTap probes' arguments. | |
4538 | (arm_stap_is_single_operand): New function. | |
4539 | (arm_stap_parse_special_token): Likewise. | |
4540 | (arm_linux_init_abi): Initializing proper fields used by SystemTap | |
4541 | probes' arguments parser. | |
4542 | * ax-gdb.c (require_rvalue): Removing static declaration. | |
4543 | (gen_expr): Likewise. | |
4544 | * ax-gdb.h (gen_expr): Declaring function. | |
4545 | (require_rvalue): Likewise. | |
4546 | * breakpoint.c: Include `gdb_regex.h' and `probe.h'. | |
4547 | (bkpt_probe_breakpoint_ops): New variable. | |
4548 | (momentary_breakpoint_from_master): Set the `probe' value. | |
4549 | (add_location_to_breakpoint): Likewise. | |
4550 | (break_command_1): Using proper breakpoint_ops according to the | |
4551 | argument passed by the user in the command line. | |
4552 | (bkpt_probe_insert_location): New function. | |
4553 | (bkpt_probe_remove_location): Likewise. | |
4554 | (bkpt_probe_create_sals_from_address): Likewise. | |
4555 | (bkpt_probe_decode_linespec): Likewise. | |
4556 | (tracepoint_probe_create_sals_from_address): Likewise. | |
4557 | (tracepoint_probe_decode_linespec): Likewise. | |
4558 | (tracepoint_probe_breakpoint_ops): New variable. | |
4559 | (trace_command): Using proper breakpoint_ops according to the | |
4560 | argument passed by the user in the command line. | |
4561 | (initialize_breakpoint_ops): Initializing breakpoint_ops for | |
4562 | static probes on breakpoints and tracepoints. | |
4563 | * breakpoint.h (struct bp_location) <probe>: New field. | |
4564 | * cli-utils.c (skip_spaces_const): New function. | |
4565 | (extract_arg): Likewise. | |
4566 | * cli-utils.h (skip_spaces_const): Likewise. | |
4567 | (extract_arg): Likewise. | |
4568 | * coffread.c (coff_sym_fns): Add `sym_probe_fns' value. | |
4569 | * configure.ac: Append `stap-probe.o' to be generated when ELF | |
4570 | support is present. | |
4571 | * configure: Regenerate. | |
4572 | * dbxread.c (aout_sym_fns): Add `sym_probe_fns' value. | |
4573 | * elfread.c: Include `probe.h' and `arch-utils.h'. | |
4574 | (probe_key): New variable. | |
4575 | (elf_get_probes): New function. | |
4576 | (elf_get_probe_argument_count): Likewise. | |
4577 | (elf_evaluate_probe_argument): Likewise. | |
4578 | (elf_compile_to_ax): Likewise. | |
4579 | (elf_symfile_relocate_probe): Likewise. | |
4580 | (stap_probe_key_free): Likewise. | |
4581 | (elf_probe_fns): New variable. | |
4582 | (elf_sym_fns): Add `sym_probe_fns' value. | |
4583 | (elf_sym_fns_lazy_psyms): Likewise. | |
4584 | (elf_sym_fns_gdb_index): Likewise. | |
4585 | (_initialize_elfread): Initialize objfile cache for static | |
4586 | probes. | |
4587 | * gdb_vecs.h (struct probe): New forward declaration. | |
4588 | (probe_p): New VEC declaration. | |
4589 | * gdbarch.c: Regenerate. | |
4590 | * gdbarch.h: Regenerate. | |
4591 | * gdbarch.sh (stap_integer_prefix): New variable. | |
4592 | (stap_integer_suffix): Likewise. | |
4593 | (stap_register_prefix): Likewise. | |
4594 | (stap_register_suffix): Likewise. | |
4595 | (stap_register_indirection_prefix): Likewise. | |
4596 | (stap_register_indirection_suffix): Likewise. | |
4597 | (stap_gdb_register_prefix): Likewise. | |
4598 | (stap_gdb_register_suffix): Likewise. | |
4599 | (stap_is_single_operand): New function. | |
4600 | (stap_parse_special_token): Likewise. | |
4601 | (struct stap_parse_info): Forward declaration. | |
4602 | * i386-tdep.c: Including headers needed to perform the parsing | |
4603 | of SystemTap probes' arguments. | |
4604 | (i386_stap_is_single_operand): New function. | |
4605 | (i386_stap_parse_special_token): Likewise. | |
4606 | (i386_elf_init_abi): Initializing proper fields used by SystemTap | |
4607 | probes' arguments parser. | |
4608 | * i386-tdep.h (i386_stap_is_single_operand): New function. | |
4609 | (i386_stap_parse_special_token): Likewise. | |
4610 | * machoread.c (macho_sym_fns): Add `sym_probe_fns' value. | |
4611 | * mipsread.c (ecoff_sym_fns): Likewise. | |
4612 | * objfiles.c (objfile_relocate1): Support relocation for static | |
4613 | probes. | |
4614 | * parse.c (prefixify_expression): Remove static declaration. | |
4615 | (initialize_expout): Likewise. | |
4616 | (reallocate_expout): Likewise. | |
4617 | * parser-defs.h (initialize_expout): Declare function. | |
4618 | (reallocate_expout): Likewise. | |
4619 | (prefixify_expression): Likewise. | |
4620 | * ppc-linux-tdep.c: Including headers needed to perform the parsing | |
4621 | of SystemTap probes' arguments. | |
4622 | (ppc_stap_is_single_operand): New function. | |
4623 | (ppc_stap_parse_special_token): Likewise. | |
4624 | (ppc_linux_init_abi): Initializing proper fields used by SystemTap | |
4625 | probes' arguments parser. | |
4626 | * probe.c: New file, for generic statically defined probe support. | |
4627 | * probe.h: Likewise. | |
4628 | * s390-tdep.c: Including headers needed to perform the parsing of | |
4629 | SystemTap probes' arguments. | |
4630 | (s390_stap_is_single_operand): New function. | |
4631 | (s390_gdbarch_init): Initializing proper fields used by SystemTap | |
4632 | probes' arguments parser. | |
4633 | * somread.c (som_sym_fns): Add `sym_probe_fns' value. | |
4634 | * stap-probe.c: New file, for SystemTap probe support. | |
4635 | * stap-probe.h: Likewise. | |
4636 | * symfile.h: Include `gdb_vecs.h'. | |
4637 | (struct sym_probe_fns): New struct. | |
4638 | (struct sym_fns) <sym_probe_fns>: New field. | |
4639 | * symtab.c (init_sal): Initialize `probe' field. | |
4640 | * symtab.h (struct probe): Forward declaration. | |
4641 | (struct symtab_and_line) <probe>: New field. | |
4642 | * tracepoint.c (start_tracing): Adjust semaphore on breakpoints | |
4643 | locations. | |
4644 | (stop_tracing): Likewise. | |
4645 | * xcoffread.c (xcoff_sym_fns): Add `sym_probe_fns' value. | |
4646 | ||
22d2b532 SDJ |
4647 | 2012-04-27 Sergio Durigan Junior <[email protected]> |
4648 | Tom Tromey <[email protected]> | |
4649 | ||
4650 | * ax-gdb.c (gen_expr): Clean up code to handle internal variables | |
4651 | and to compile agent expressions. | |
4652 | * infrun.c (siginfo_make_value): New argument `ignore'. | |
4653 | (siginfo_funcs): New struct. | |
4654 | (_initialize_infrun): New argument when calling | |
4655 | `create_internalvar_type_lazy'. | |
4656 | * thread.c (thread_id_make_value): New argument `ignore'. | |
4657 | (thread_funcs): New struct. | |
4658 | (_initialize_thread): New argument when calling | |
4659 | `create_internalvar_type_lazy'. | |
4660 | * tracepoint.c (sdata_make_value): New argument `ignore'. | |
4661 | (sdata_funcs): New struct. | |
4662 | (_initialize_tracepoint): New argument when calling | |
4663 | `create_internalvar_type_lazy'. | |
4664 | * value.c (make_value): New struct. | |
4665 | (create_internalvar_type_lazy): New argument `data'. | |
4666 | (compile_internalvar_to_ax): New function. | |
4667 | (value_of_internalvar): Properly handling `make_value' case. | |
4668 | (clear_internalvar): Likewise. | |
4669 | (show_convenience): Adding `TRY_CATCH' block. | |
4670 | * value.h (internalvar_make_value): Delete, replace by... | |
4671 | (struct internalvar_funcs): ... this. | |
4672 | (create_internalvar_type_lazy) <fun>: Delete argument. | |
4673 | (create_internalvar_type_lazy) <funcs>, <data>: New arguments. | |
4674 | (compile_internalvar_to_ax): New function. | |
4675 | * windows-tdep.c (tlb_make_value): New argument `ignore'. | |
4676 | (tlb_funcs): New struct. | |
4677 | (_initialize_windows_tdep): New argument when calling | |
4678 | `create_internalvar_type_lazy'. | |
4679 | ||
91da1414 MW |
4680 | 2012-04-27 Mark Wielaard <[email protected]> |
4681 | ||
4682 | * dwarf2read.c (dwarf2_get_pc_bounds): Check DW_AT_high_pc form to | |
4683 | see whether it is an address or a constant offset from DW_AT_low_pc. | |
4684 | (dwarf2_record_block_ranges): Likewise. | |
4685 | (read_partial_die): Likewise. | |
4686 | ||
4ab9d8ec MW |
4687 | 2012-04-26 Mark Wielaard <[email protected]> |
4688 | ||
4689 | * MAINTAINERS (Write After Approval): Add myself to the list. | |
4690 | ||
a0911fd0 MR |
4691 | 2012-04-26 Maciej W. Rozycki <[email protected]> |
4692 | ||
4693 | * proc-utils.h (proc_prettyprint_signalset): New prototype. | |
4694 | (proc_prettyprint_signal): Likewise. | |
4695 | (proc_prettyprint_faultset): Likewise. | |
4696 | (proc_prettyprint_fault): Likewise. | |
4697 | (proc_prettyprint_actionset): Likewise. | |
4698 | (proc_prettyprint_flags): Move to new proc-flags.c section. | |
4699 | (proc_prettyfprint_flags): New prototype. | |
4700 | * procfs.c (proc_nsysarg, proc_sysargs): Add prototypes. | |
4701 | (proc_syscall, proc_cursig): Likewise. | |
4702 | (proc_set_kill_on_last_close): Likewise. | |
4703 | (proc_unset_kill_on_last_close): Likewise. | |
4704 | (proc_set_watchpoint): Make static. | |
4705 | (proc_delete_dead_threads): Likewise. | |
4706 | (procfs_set_watchpoint): Likewise. | |
4707 | (_initialize_procfs): Add prototype. | |
4708 | * proc-events.c: Include proc-utils.h. | |
4709 | (init_syscall_table): Make static. | |
4710 | * proc-api.c (_initialize_proc_api): Add prototype. | |
4711 | * proc-flags.c: Include proc-utils.h. | |
4712 | ||
9009e1ae MR |
4713 | 2012-04-26 Maciej W. Rozycki <[email protected]> |
4714 | ||
4715 | * configure.ac: Add AC_ARG_PROGRAM. | |
4716 | * configure: Regenerate. | |
4717 | ||
4fae6e18 JK |
4718 | 2012-04-26 Jan Kratochvil <[email protected]> |
4719 | ||
4720 | Fix DW_AT_lower_bound defaults for DWARF-4+. | |
4721 | * dwarf2read.c (read_subrange_type): Remove initialization of low and | |
4722 | high. New variable low_default_is_valid. Implement DWARF-4+ | |
4723 | DW_AT_lower_bound defaults. Print complaint for DW_AT_lower_bound with | |
4724 | no default by the DWARF standard. | |
4725 | ||
14132e89 | 4726 | 2012-04-26 Maciej W. Rozycki <[email protected]> |
f782ad9b | 4727 | Maciej W. Rozycki <[email protected]> |
14132e89 MR |
4728 | |
4729 | * infrun.c (handle_inferior_event): Move the check for return | |
4730 | trampolines ahead of the check for function trampolines. | |
4731 | * mips-tdep.h (MIPS_S2_REGNUM, MIPS_GP_REGNUM): New macros. | |
4732 | * mips-tdep.c (mips_str_mips16_call_stub): New variable. | |
4733 | (mips_str_mips16_ret_stub): Likewise. | |
4734 | (mips_str_call_fp_stub): Likewise. | |
4735 | (mips_str_call_stub): Likewise. | |
4736 | (mips_str_fn_stub): Likewise. | |
4737 | (mips_str_pic): Likewise. | |
4738 | (mips_in_frame_stub): New function. | |
4739 | (mips_unwind_pc): Return the return address rather than the PC | |
4740 | if the PC of an intermediate frame is inside a call thunk. | |
4741 | (mips_is_stub_suffix): New function. | |
4742 | (mips_is_stub_mode): Likewise. | |
4743 | (mips_get_mips16_fn_stub_pc): Likewise. | |
4744 | (mips_skip_mips16_trampoline_code): Update to handle all the | |
4745 | currently generated stub types. Don't recurse into __fn_stub | |
4746 | thunks. Remove heuristics to handle stubs beyond etext/_etext. | |
4747 | Use cooked register accesses. | |
4748 | (mips_in_return_stub): Reintroduce function. | |
4749 | (mips_skip_trampoline_code): Traverse trampolines recursively. | |
4750 | (mips_gdbarch_init): Handle MIPS16 return trampolines. | |
4751 | ||
518f0db5 | 4752 | 2012-04-26 Joel Brobecker <[email protected]> |
4753 | ||
4754 | GDB 7.4.1 released. | |
4755 | ||
3184d3f9 JL |
4756 | 2012-04-26 Jonathan Larmour <[email protected]> |
4757 | ||
4758 | * arm-tdep.h (VFP_REGISTER_SIZE): Define. | |
4759 | * features/arm-with-m-vfp-d16.xml: New file. Describes | |
4760 | Cortex-M with VFPv4-sp-d16 FPU register layout. | |
4761 | * features/Makefile (WHICH): Add arm-with-m-vfp-d16. | |
4762 | * features/arm-with-m-vfp-d16.c: New. Generated from above. | |
4763 | * arm-tdep.c: Include arm-with-m-vfp-d16.c. | |
4764 | (arm-register_g_packet_guesses): Add vfp-d16 guess. | |
4765 | (_initialise_arm_tdep): Initialize arm-with-m-vfp-d16 tdesc. | |
4766 | ||
b6201d44 DE |
4767 | 2012-04-25 Doug Evans <[email protected]> |
4768 | ||
4769 | * cli/cli-decode.c (print_doc_line): Use stream instead of | |
4770 | current_uiout. | |
4771 | ||
4e2f8df6 SDJ |
4772 | 2012-04-25 Sergio Durigan Junior <[email protected]> |
4773 | ||
4774 | * features/arm-with-iwmmxt.c: Regenerate. | |
4775 | * features/arm-with-m-fpa-layout.c: Likewise. | |
4776 | * features/arm-with-m.c: Likewise. | |
4777 | * features/arm-with-neon.c: Likewise. | |
4778 | * features/arm-with-vfpv2.c: Likewise. | |
4779 | * features/arm-with-vfpv3.c: Likewise. | |
4780 | * features/mips-dsp-linux.c: Likewise. | |
4781 | * features/mips-linux.c: Likewise. | |
4782 | * features/mips64-dsp-linux.c: Likewise. | |
4783 | * features/mips64-linux.c: Likewise. | |
4784 | * features/s390-linux32.c: Likewise. | |
4785 | * features/s390-linux32v1.c: Likewise. | |
4786 | * features/s390-linux32v2.c: Likewise. | |
4787 | * features/s390-linux64.c: Likewise. | |
4788 | * features/s390-linux64v1.c: Likewise. | |
4789 | * features/s390-linux64v2.c: Likewise. | |
4790 | * features/s390x-linux64.c: Likewise. | |
4791 | * features/s390x-linux64v1.c: Likewise. | |
4792 | * features/s390x-linux64v2.c: Likewise. | |
4793 | * features/tic6x-c62x-linux.c: Likewise. | |
4794 | * features/tic6x-c62x.c: Likewise. | |
4795 | * features/tic6x-c64x-linux.c: Likewise. | |
4796 | * features/tic6x-c64x.c: Likewise. | |
4797 | * features/tic6x-c64xp-linux.c: Likewise. | |
4798 | * features/tic6x-c64xp.c: Likewise. | |
4799 | * target-descriptions.c: Only generate `field_type' and `type' | |
4800 | variables when needed. | |
4801 | ||
2def3e66 JB |
4802 | 2012-04-25 Fredrik Hederstierna <[email protected]> |
4803 | ||
4804 | * cli/cli-cmds.c (cd_command): Use memmove instead of strcpy. | |
4805 | ||
a766d390 DE |
4806 | 2012-04-25 Doug Evans <[email protected]> |
4807 | ||
4808 | Initial pass at Go language support. | |
4809 | * NEWS: Mention Go. | |
4810 | * Makefile.in (SFILES): Add go-exp.y, go-lang.c, go-typeprint.c, | |
4811 | go-valprint.c. | |
4812 | (COMMON_OBS): Add go-lang.o, go-val.print.o, go-typeprint.o. | |
4813 | (YYFILES): Add go-exp.c. | |
4814 | (YYOBJ): Add go-exp.o. | |
4815 | (local-maintainer-clean): Delete go-exp.c. | |
4816 | * defs.h (enum language): Add language_go. | |
4817 | * dwarf2read.c: #include "go-lang.h". | |
4818 | (fixup_go_packaging): New function. | |
4819 | (process_full_comp_unit): Call it when processing Go CUs. | |
4820 | (dwarf2_physname): Add Go support. | |
4821 | (read_file_scope): Handle missing language spec for GNU Go. | |
4822 | (set_cu_language): Handle DW_LANG_Go. | |
4823 | * go-exp.y: New file. | |
4824 | * go-lang.h: New file. | |
4825 | * go-lang.c: New file. | |
4826 | * go-typeprint.c: New file. | |
4827 | * go-valprint.c: New file. | |
4828 | * symtab.c: #include "go-lang.h". | |
4829 | (symbol_set_language): Handle language_go. | |
4830 | (symbol_find_demangled_name, symbol_set_names): Ditto. | |
4831 | (symbol_natural_name, demangle_for_lookup, find_main_name): Ditto. | |
4832 | ||
4e2af517 JM |
4833 | 2012-04-24 Jim Meyering <[email protected]> |
4834 | ||
4835 | avoid a few strncpy-induced buffer overruns | |
4836 | * procfs.c (procfs_make_note_section): Be sure to NUL-terminate | |
4837 | fname and psargs before trying to concatenate. | |
4838 | * tui/tui-stack.c (tui_get_function_from_frame): NUL-terminate | |
4839 | "name" before applying strchr. | |
4840 | ||
b77b7f52 SCR |
4841 | 2012-04-25 Siva Chandra Reddy <[email protected]> |
4842 | ||
4843 | * CONTRIBUTE: Use unified diff instead of context diff when | |
4844 | generating patches. | |
4845 | ||
6321c22a MR |
4846 | 2012-04-24 Maciej W. Rozycki <[email protected]> |
4847 | ||
4848 | * mips-tdep.c (mips_about_to_return): Remove dead MIPS16 support | |
4849 | code. Handle JR.HB correctly. | |
4850 | ||
742c84f6 MR |
4851 | 2012-04-24 Maciej W. Rozycki <[email protected]> |
4852 | ||
4853 | * mips-tdep.c | |
4854 | (is_mips16_addr, unmake_mips16_addr, make_mips16_addr): Group | |
4855 | with the other MIPS16 helpers. | |
4856 | ||
7fc7e0c3 SDJ |
4857 | 2012-04-24 Sergio Durigan Junior <[email protected]> |
4858 | ||
4859 | * observer.sh: Conditionally declare `args', thus cleaning up | |
4860 | unused instances of this variable. | |
4861 | ||
20388dd6 YQ |
4862 | 2012-04-24 Yao Qi <[email protected]> |
4863 | ||
4864 | Revert this patch to allow breakpoint always-inserted | |
4865 | in record target. | |
4866 | 2011-12-05 Pedro Alves <[email protected]> | |
f782ad9b AS |
4867 | * breakpoint.c: Include record.h. |
4868 | (breakpoints_always_inserted_mode): Return false when the record | |
4869 | target is in use. | |
20388dd6 YQ |
4870 | |
4871 | * breakpoint.c (iterate_over_bp_locations): New. | |
4872 | * breakpoint.h: Declare. | |
4873 | New typedef walk_bp_location_callback. | |
4874 | * record.c (record_open): Call record_init_record_breakpoints. | |
4875 | (record_sync_record_breakpoints): New. | |
4876 | (record_init_record_breakpoints): New. | |
4877 | * NEWS: Mention supporting breakpoint always-inserted mode in | |
4878 | record target. | |
4879 | ||
4734f50e MK |
4880 | 2012-04-24 Marc Khouzam <[email protected]> |
4881 | ||
4882 | * mi/mi-main.c (mi_cmd_execute): Choose a live thread not just | |
4883 | any thread. | |
4884 | ||
c326b90e YQ |
4885 | 2012-04-24 Yao Qi <[email protected]> |
4886 | ||
4887 | * breakpoint.c (ep_is_catchpoint): Renamed to ... | |
4888 | (is_catchpoint): ... it. | |
4889 | (print_one_breakpoint_location): Caller update. | |
4890 | * breakpoint.h: Update declaration. | |
4891 | ||
d8fb5a1e DM |
4892 | 2012-04-23 David S. Miller <[email protected]> |
4893 | ||
4894 | * configure.tgt (sparc-*-linux*): Set build_gdbserver to yes. | |
4895 | ||
34431a2a TT |
4896 | 2012-04-23 Tom Tromey <[email protected]> |
4897 | ||
4898 | * buildsym.c (add_free_pendings): Remove. | |
4899 | * buildsym.h (add_free_pendings): Remove. | |
4900 | ||
4568ecf9 DE |
4901 | 2012-04-23 Doug Evans <[email protected]> |
4902 | ||
4903 | * dwarf2read.c (partial_die_full_name): Record DW_FORM_ref_addr in | |
4904 | attr.u.unsnd instead of attr.u.addr. | |
4905 | (read_attribute_value) Ditto for cases DW_FORM_ref_addr, | |
4906 | DW_FORM_ref1, DW_FORM_ref2, DW_FORM_ref4, DW_FORM_reg8, | |
4907 | DW_FORM_ref_udata. | |
4908 | (dump_die_shallow): Update cases DW_FORM_ref_addr, | |
4909 | DW_FORM_ref1, DW_FORM_ref2, DW_FORM_ref4. Add cases DW_FORM_ref8, | |
4910 | DW_FORM_ref_udata. | |
4911 | (dwarf2_get_ref_die_offset): Use DW_UNSND for reference attributes. | |
4912 | ||
dca9aa3a MR |
4913 | 2012-04-23 Maciej W. Rozycki <[email protected]> |
4914 | ||
4915 | * mips-tdep.c (mips_n32n64_return_value): Fix coding style. | |
4916 | (mips_o32_return_value): Likewise. | |
4917 | (mips_o64_return_value): Likewise. | |
4918 | ||
c8ea1972 PH |
4919 | 2012-04-21 Paul Hilfinger <[email protected]> |
4920 | ||
4921 | * ada-lang.c (ada_evaluate_subexp): Add cases for | |
f782ad9b AS |
4922 | TYPE_CODE_INTERNAL_FUNCTION and for TYPE_GNU_IFUNC, following |
4923 | their treatment in eval.c. | |
c8ea1972 | 4924 | |
8d1b3521 DM |
4925 | 2012-04-21 David S. Miller <[email protected]> |
4926 | ||
4927 | * sparc-tdep.c (X_DISP10): Define. | |
4928 | (sparc_analyze_control_transfer): Handle compare-and-branch. | |
4929 | ||
03145bf4 JL |
4930 | 2012-04-21 Jonathan Larmour <[email protected]> |
4931 | ||
4932 | * features/Makefile (WHICH): Add arm-with-m and arm-with-m-fpa-layout. | |
4933 | * arm-tdep.c (arm_register_g_packet_guesses): Fix comment. | |
4934 | ||
004159a2 | 4935 | 2012-04-20 Nigel Stephens <[email protected]> |
f782ad9b | 4936 | Maciej W. Rozycki <[email protected]> |
004159a2 MR |
4937 | |
4938 | * mips-tdep.c (mips_float_register_p): New function. | |
4939 | (mips_convert_register_float_case_p): Use mips_float_register_p. | |
4940 | (mips_register_type): Likewise. | |
4941 | (mips_print_register): Likewise. | |
4942 | (print_gp_register_row): Likewise. | |
4943 | (mips_print_registers_info): Likewise. | |
4944 | ||
7f0e6aae MR |
4945 | 2012-04-20 Shun-Yen Lu <[email protected]> |
4946 | ||
4947 | * mips-tdep.c (mips_elf_make_msymbol_special): Fix identification | |
4948 | of mips16 symbols. | |
4949 | ||
bc17beea AP |
4950 | 2012-04-20 Andrew Pinski <[email protected]> |
4951 | ||
4952 | * MAINTAINERS (Write After Approval): Add myself to the list. | |
4953 | ||
1730a5a5 SDJ |
4954 | 2012-04-20 Sergio Durigan Junior <[email protected]> |
4955 | ||
4956 | * MAINTAINERS: Update my e-mail address. | |
4957 | ||
38ea300a PA |
4958 | 2012-04-20 Pedro Alves <[email protected]> |
4959 | ||
4960 | * acx_configure_dir.m4 (ACX_CONFIGURE_DIR): Handle absolute | |
4961 | $srcdir. | |
4962 | * configure: Regenerate. | |
4963 | ||
111dfaae SDJ |
4964 | 2012-04-20 Sergio Durigan Junior <[email protected]> |
4965 | ||
4966 | * cp-support.h: Include `gdb_vecs.h'. Delete `const_char_ptr' VEC | |
4967 | declaration. | |
4968 | * gdb_vecs.h: Declare `const_char_ptr' VEC. | |
4969 | ||
4fb2c64a JK |
4970 | 2012-04-20 Jan Kratochvil <[email protected]> |
4971 | ||
4972 | Fix compilation compatibility with python-2.4 | |
4973 | * python/py-type.c (convert_field): Cast ADDRSTRING for | |
4974 | PyObject_SetAttrString as non-const. New comment. | |
4975 | ||
6328eb38 TT |
4976 | 2012-04-19 Tom Tromey <[email protected]> |
4977 | ||
4978 | * top.c (quit_target): Use all_cleanups. | |
4979 | * main.c (captured_command_loop): Use all_cleanups. | |
4980 | * exceptions.c (throw_exception): Use all_cleanups. | |
4981 | ||
c971b7fa PA |
4982 | 2012-04-19 Pedro Alves <[email protected]> |
4983 | ||
4984 | * Makefile.in (GNULIB_BUILDDIR): New. | |
4985 | (LIBGNU, INCGNU, GNULIB_H): Adjust. | |
4986 | (SUBDIRS): Add $(GNULIB_BUILDDIR). | |
4987 | (CLEANDIRS). Remove gnulib/import. | |
4988 | (REQUIRED_SUBDIRS): Replace gnulib/import with $(GNULIB_BUILDDIR). | |
4989 | (all-lib): Ditto. | |
4990 | (distclean): Remove the $(GNULIB_BUILDDIR) directory. | |
4991 | (gnulib/import/Makefile): Replace gnulib/import with | |
4992 | $(GNULIB_BUILDDIR). Set CONFIG_FILES to just Makefile. | |
4993 | (ACLOCAL_AMFLAGS): Remove '-I gnulib/import/m4'. | |
4994 | (aclocal_m4_deps): Remove the gnulib dependencies. Add | |
4995 | acx_configure_dir.m4. | |
4996 | * acinclude.m4: Include acx_configure_dir.m4. | |
4997 | * acx_configure_dir.m4: New file. | |
4998 | * aclocal.m4: Regenerate. | |
a09130f9 PA |
4999 | * configure.ac: Remove gl_EARLY, gl_INIT and AM_INIT_AUTOMAKE |
5000 | calls. Configure gnulib using ACX_CONFIGURE_DIR. | |
5001 | (GNULIB): New variable. | |
5002 | (GNULIB_STDINT_H): Adjust. | |
5003 | (AC_OUTPUT): Don't output gnulib/Makefile. | |
5004 | * gdb/defs.h: Include build-gnulib/config.h. | |
5005 | * aclocal.m4: Regenerate. | |
5006 | * config.in: Regenerate. | |
5007 | * configure: Regenerate. | |
5008 | ||
5009 | * gnulib/Makefile.in: New file. | |
5010 | * gnulib/configure.ac: New file. | |
5011 | * gnulib/aclocal.m4: New file. | |
5012 | * gnulib/config.in: New file. | |
5013 | * gnulib/configure: New file. | |
c971b7fa PA |
5014 | * gnulib/: Re-run gnulib-tool to adjust. |
5015 | ||
b10faa68 DE |
5016 | 2012-04-19 Doug Evans <[email protected]> |
5017 | ||
5018 | * cleanups.h (struct cleanup): Move to cleanups.c. | |
5019 | (make_cleanup_dtor_ftype): New typedef. | |
5020 | (make_cleanup_dtor): Use it. | |
5021 | (ALL_CLEANUPS): Replace with ... | |
5022 | (all_cleanups): ... this. Declare. All uses updated. | |
5023 | * cleanups.c: #include "gdb_assert.h". | |
5024 | (sentinel_cleanup): New static global. | |
5025 | (SENTINEL_CLEANUP): Define. | |
5026 | (cleanup_chain, final_cleanup_chain): Initialize to SENTINEL_CLEANUP. | |
5027 | (make_my_cleanup2): Assert result is non-NULL. | |
5028 | (all_cleanups): New function. | |
5029 | (save_my_cleanups): Initialize new chain to SENTINEL_CLEANUP instead | |
5030 | of NULL. | |
5031 | ||
d8c267cc PA |
5032 | 2012-04-19 Pedro Alves <[email protected]> |
5033 | ||
5034 | * Makefile.in (HFILES_NO_SRCDIR): Remove gnulib/wchar.in.h. | |
5035 | Adjust paths to gnulib imported files. | |
5036 | ||
809277f8 PA |
5037 | 2012-04-19 Pedro Alves <[email protected]> |
5038 | ||
5039 | * gnulib/: Move whole directory ... | |
5040 | * gnulib/import/: ... here, and re-rerun gnulib-tool to adjust. | |
5041 | * Makefile.in (LIBGNU, INCGNU, GNULIB_H, CLEANDIRS) | |
5042 | (REQUIRED_SUBDIRS, all-lib, gnulib/Makefile, ACLOCAL_AMFLAGS) | |
5043 | (aclocal_m4_deps): Adjust. | |
5044 | * aclocal.m4: Regenerate. | |
5045 | * configure: Regenerate. | |
5046 | * configure.ac: Adjust AC_OUTPUT output. | |
5047 | ||
aad9eab9 YQ |
5048 | 2012-04-19 Yao Qi <[email protected]> |
5049 | ||
5050 | * Makefile.in (SFILES): Add common/vec.c and remove vec.c. | |
5051 | (vec.o): New rule. | |
5052 | * vec.c: Move it ... | |
5053 | * common/vec.c: ... here. | |
5054 | * vec.h: Move it ... | |
5055 | * common/vec.h: ... here. | |
5056 | ||
48fe4669 YQ |
5057 | 2012-04-19 Yao Qi <[email protected]> |
5058 | ||
5059 | * gdb-code-style.el: New. | |
5060 | ||
770d76d7 PA |
5061 | 2012-04-18 Pedro Alves <[email protected]> |
5062 | ||
5063 | Update gnulib from latest git. | |
5064 | (639ea5ae15e39fe48d43e04864b2997301e4b969) | |
5065 | ||
5066 | * gnulib/Makefile.am: Update. | |
5067 | * gnulib/dummy.c: Update. | |
5068 | * gnulib/extra/arg-nonnull.h: Update. | |
5069 | * gnulib/extra/c++defs.h: Update. | |
5070 | * gnulib/extra/update-copyright: Update. | |
5071 | * gnulib/extra/warn-on-use.h: Update. | |
5072 | * gnulib/inttypes.in.h: Update. | |
5073 | * gnulib/m4/00gnulib.m4: Update. | |
5074 | * gnulib/m4/extensions.m4: Update. | |
5075 | * gnulib/m4/gnulib-cache.m4: Update. | |
5076 | * gnulib/m4/gnulib-common.m4: Update. | |
5077 | * gnulib/m4/gnulib-comp.m4: Update. | |
5078 | * gnulib/m4/gnulib-tool.m4: Update. | |
5079 | * gnulib/m4/include_next.m4: Update. | |
5080 | * gnulib/m4/inttypes-pri.m4: Update. | |
5081 | * gnulib/m4/inttypes.m4: Update. | |
5082 | * gnulib/m4/longlong.m4: Update. | |
5083 | * gnulib/m4/memchr.m4: Update. | |
5084 | * gnulib/m4/memmem.m4: Update. | |
5085 | * gnulib/m4/mmap-anon.m4: Update. | |
5086 | * gnulib/m4/multiarch.m4: Update. | |
5087 | * gnulib/m4/onceonly.m4: Update. | |
5088 | * gnulib/m4/stddef_h.m4: Update. | |
5089 | * gnulib/m4/stdint.m4: Update. | |
5090 | * gnulib/m4/string_h.m4: Update. | |
5091 | * gnulib/m4/warn-on-use.m4: Update. | |
5092 | * gnulib/m4/wchar_h.m4: Update. | |
5093 | * gnulib/m4/wchar_t.m4: Update. | |
5094 | * gnulib/m4/wint_t.m4: Update. | |
5095 | * gnulib/memchr.c: Update. | |
5096 | * gnulib/memmem.c: Update. | |
5097 | * gnulib/stddef.in.h: Update. | |
5098 | * gnulib/stdint.in.h: Update. | |
5099 | * gnulib/str-two-way.h: Update. | |
5100 | * gnulib/string.in.h: Update. | |
5101 | * gnulib/wchar.in.h: Update. | |
5102 | ||
5103 | * gnulib/extra/arg-nonnull.h: Delete. | |
5104 | * gnulib/extra/c++defs.h: Delete. | |
5105 | * gnulib/extra/warn-on-use.h: Delete. | |
5106 | * gnulib/m4/wchar_h.m4: Delete. | |
5107 | * gnulib/m4/wint_t.m4: Delete. | |
5108 | * gnulib/wchar.in.h: Delete. | |
5109 | ||
5110 | * gnulib/extra/snippets/arg-nonnull.h: New. | |
5111 | * gnulib/extra/snippets/c++defs.h: New. | |
5112 | * gnulib/extra/snippets/warn-on-use.h: New. | |
5113 | ||
5114 | * aclocal.m4: Regenerate. | |
5115 | * config.in: Regenerate. | |
5116 | * configure: Regenerate. | |
5117 | * gnulib/Makefile.in: Regenerate. | |
5118 | ||
174e088e PA |
5119 | 2012-04-18 Pedro Alves <[email protected]> |
5120 | ||
5121 | Reimport the update-copyright module from gnulib | |
5122 | (250b80067c1e1d8faa0c42fb572f721975b929c5). | |
5123 | ||
5124 | * configure: Regenerate. | |
5125 | * gnulib/Makefile.am: Update. | |
5126 | * gnulib/Makefile.in: Regenerate. | |
5127 | * gnulib/extra/update-copyright: Update. | |
5128 | * gnulib/m4/gnulib-cache.m4: Update. | |
5129 | * gnulib/m4/gnulib-comp.m4: Update. | |
5130 | ||
7f533142 JB |
5131 | 2012-04-18 Tristan Gingold <[email protected]> |
5132 | ||
5133 | * configure.ac (aix): Put -lpthread into libs. | |
5134 | * configure: Regenerate. | |
5135 | ||
001822aa TT |
5136 | 2012-04-18 Tom Tromey <[email protected]> |
5137 | ||
5138 | * linespec.c (convert_linespec_to_sals): Don't use | |
5139 | SYMBOL_OBJ_SECTION. | |
5140 | (compare_msymbols): Arguments are minsym_and_objfile, not | |
5141 | minimal_symbol*. Don't use SYMBOL_OBJ_SECTION. | |
5142 | ||
db026a31 PA |
5143 | 2012-04-18 Pedro Alves <[email protected]> |
5144 | ||
5145 | Revert gnulib/ part of: | |
5146 | 2011-01-01 Joel Brobecker <[email protected]> | |
5147 | Copyright year update in most files (performed by copyright.sh). | |
5148 | ||
12df843f JK |
5149 | 2012-04-18 Jan Kratochvil <[email protected]> |
5150 | ||
5151 | Fix 64-bit constants on 32-bit hosts. | |
5152 | * dwarf2read.c (read_unsigned_leb128): Change declaration return type | |
5153 | from unsigned long to ULONGEST. | |
5154 | (read_signed_leb128): Change declaration return type from long to | |
5155 | LONGEST. | |
5156 | (dwarf2_const_value_attr): Change declaration parameter value from long | |
5157 | to LONGEST. | |
5158 | (dwarf2_compute_name): Change variable value from long to LONGEST. | |
5159 | (read_unsigned_leb128): Change return type, variable result and some | |
5160 | casts from unsigned long to ULONGEST. | |
5161 | (read_signed_leb128): Change return type, variable result and some | |
5162 | casts from long to LONGEST. | |
5163 | (dwarf2_const_value_data, dwarf2_const_value_attr): Change parameter | |
5164 | value from long to LONGEST. | |
5165 | (dwarf2_const_value): Change variable value from long to LONGEST. | |
5166 | * symmisc.c (print_symbol): Change SYMBOL_VALUE format strings to use | |
5167 | plongest and hex_string. | |
5168 | * symtab.h (struct general_symbol_info): Change ivalue from long to | |
5169 | LONGEST, remove the comment. | |
5170 | * tracepoint.c (validate_actionline, collect_symbol, scope_info): | |
5171 | Change SYMBOL_VALUE format strings to use plongest and hex_string. | |
5172 | ||
14e75d8e JK |
5173 | 2012-04-18 Siddhesh Poyarekar <[email protected]> |
5174 | ||
5175 | PR symtab/7259: | |
5176 | * ada-exp.y (convert_char_literal): Use TYPE_FIELD_ENUMVAL. | |
5177 | * ada-lang.c (ada_discrete_type_high_bound) | |
ac4ea3c2 JK |
5178 | (ada_discrete_type_low_bound): Fix function comment. Use |
5179 | TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM. | |
14e75d8e JK |
5180 | (ada_identical_enum_types_p): Use TYPE_FIELD_ENUMVAL. |
5181 | (pos_atr, value_val_atr): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM. | |
5182 | * ada-typeprint.c (print_enum_type): Change variable lastval to LONGEST. | |
5183 | Use TYPE_FIELD_ENUMVAL. | |
5184 | * ada-valprint.c (print_optional_low_bound, ada_print_scalar) | |
5185 | (ada_val_print_1): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM. | |
5186 | * c-typeprint.c (c_type_print_base): Move variable lastval to inner | |
5187 | block, change it to LONGEST. Use TYPE_FIELD_ENUMVAL for | |
5188 | TYPE_CODE_ENUM. | |
5189 | * coffread.c (coff_read_enum_type): Use SET_FIELD_ENUMVAL. | |
5190 | * dwarf2read.c (process_enumeration_scope): Likewise. | |
5191 | * gdb-gdb.py (TypeFlagsPrinter): Use field.enumval instead of | |
5192 | field.bitpos. | |
5193 | (class StructMainTypePrettyPrinter): Support also | |
5194 | FIELD_LOC_KIND_ENUMVAL. | |
5195 | * gdbtypes.c (get_discrete_bounds): Use TYPE_FIELD_ENUMVAL for | |
5196 | TYPE_CODE_ENUM. | |
5197 | (recursive_dump_type): Use TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM. | |
5198 | (copy_type_recursive): Support also FIELD_LOC_KIND_ENUMVAL. | |
5199 | * gdbtypes.h (enum field_loc_kind): New FIELD_LOC_KIND_ENUMVAL. | |
5200 | (struct main_type.flds_bnds.fields.loc): Adjust bitpos comment. New | |
5201 | field enumval. | |
5202 | (struct main_type.flds_bnds.bields): Adjust loc_kind and bitsize to | |
5203 | accommodate enumval. | |
5204 | (struct call_site): Adjust loc_kind to accommodate enumval. | |
5205 | (FIELD_ENUMVAL, FIELD_ENUMVAL_LVAL, SET_FIELD_ENUMVAL) | |
5206 | (TYPE_FIELD_ENUMVAL): New macros. | |
5207 | * m2-typeprint.c (m2_enum): Use TYPE_FIELD_ENUMVAL. | |
5208 | * mdebugread.c (parse_symbol): Use TYPE_FIELD_ENUMVAL for | |
5209 | TYPE_CODE_ENUM. | |
5210 | * p-typeprint.c (pascal_type_print_base): Likewise. | |
5211 | * python/lib/gdb/printing.py (class FlagEnumerationPrinter): Use | |
5212 | enumval. | |
5213 | * python/lib/gdb/types.py (make_enum_dict): Likewise. | |
5214 | * python/py-type.c (convert_field): New variable addrstring. Use | |
5215 | TYPE_FIELD_ENUMVAL for TYPE_CODE_ENUM. | |
5216 | (check_types_equal): Support also FIELD_LOC_KIND_ENUMVAL. | |
5217 | * stabsread.c (read_enum_type): Use SET_FIELD_ENUMVAL. | |
5218 | * typepint.c (print_type_scalar): Use TYPE_FIELD_ENUMVAL for | |
5219 | TYPE_CODE_ENUM. | |
5220 | * valprint.c (generic_val_print): Likewise. | |
5221 | ||
380bca97 DE |
5222 | 2012-04-17 Doug Evans <[email protected]> |
5223 | ||
dcc07052 DE |
5224 | * dwarf2read.c (lookup_signatured_type): Return NULL instead of 0. |
5225 | ||
380bca97 DE |
5226 | * dwarf2read.c: Whitespace fixes. |
5227 | (lookup_signatured_type): Tweak comment. | |
5228 | (get_die_type_at_offset): Fix comment. | |
5229 | ||
ec92004f JB |
5230 | 2012-04-17 Joel Brobecker <[email protected]> |
5231 | ||
5232 | * xcoffread.c (xcoff_secnum_to_sections): New function. | |
5233 | (secnum_to_section, secnum_to_bfd_section): Reimplement | |
5234 | using xcoff_secnum_to_sections. Rename "secnum" parameter | |
5235 | into "n_scnum". | |
5236 | (RECORD_MINIMAL_SYMBOL): Delete. | |
5237 | (record_minimal_symbol): New function. | |
5238 | (scan_xcoff_symtab): Replace uses of RECORD_MINIMAL_SYMBOL | |
5239 | by call to record_minimal_symbol and set misc_func_recorded | |
5240 | to 1. Set last_csect_sec to the XCOFF section index instead | |
5241 | of GDB's section_offset index. Update calls to | |
5242 | prim_record_minimal_symbol_and_info to pass the BFD section | |
5243 | as well. | |
5244 | ||
40301fb7 JB |
5245 | 2012-04-17 Joel Brobecker <[email protected]> |
5246 | ||
5247 | * xcoffread.c (read_xcoff_symtab): Delete variables | |
5248 | last_csect_val and last_csect_sec and associated code. | |
5249 | ||
e0088cfd DE |
5250 | 2012-04-17 Doug Evans <[email protected]> |
5251 | ||
58d5e2c3 DE |
5252 | * cleanups.c (make_my_cleanup,make_my_cleanup2): Make static. |
5253 | (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto. | |
5254 | * cleanups.h (make_my_cleanup,make_my_cleanup2): Delete | |
5255 | (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Delete. | |
5256 | ||
c27f5738 DE |
5257 | * cleanups.h: New file. |
5258 | * cleanups.c: New file. | |
5259 | * Makefile.in (SFILES): Add cleanups.c. | |
5260 | (HFILES_NO_SRCDIR): Add cleanups.h. | |
5261 | (COMMON_OBS): Add cleanups.o. | |
5262 | * defs.h (struct cleanup): Moved to cleanups.h. | |
5263 | (do_cleanups,do_final_cleanups): Ditto. | |
5264 | (discard_cleanups,discard_final_cleanups): Ditto | |
5265 | (make_cleanup,make_cleanup_dtor,make_final_cleanup): Ditto. | |
5266 | (save_cleanups,save_final_cleanups): Ditto. | |
5267 | (restore_cleanups,restore_final_cleanups): Ditto. | |
5268 | (null_cleanup): Ditto. | |
5269 | (make_my_cleanup,make_my_cleanup2): Ditto. | |
5270 | (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto. | |
5271 | * utils.c (cleanup_chain,final_cleanup_chain): Moved to cleanups.c. | |
5272 | (do_cleanups,do_final_cleanups): Ditto. | |
5273 | (discard_cleanups,discard_final_cleanups): Ditto | |
5274 | (make_cleanup,make_cleanup_dtor,make_final_cleanup): Ditto. | |
5275 | (save_cleanups,save_final_cleanups): Ditto. | |
5276 | (restore_cleanups,restore_final_cleanups): Ditto. | |
5277 | (null_cleanup): Ditto. | |
5278 | (make_my_cleanup,make_my_cleanup2): Ditto. | |
5279 | (discard_my_cleanups,save_my_cleanups,restore_my_cleanups): Ditto. | |
5280 | ||
e0088cfd DE |
5281 | * utils.c (make_cleanup_freeargv): Use make_cleanup instead of |
5282 | make_my_cleanup. | |
5283 | (make_cleanup_dyn_string_delete): Ditto. | |
5284 | (make_cleanup_ui_file_delete): Ditto. | |
5285 | (make_cleanup_ui_out_redirect_pop): Ditto. | |
5286 | (make_cleanup_free_section_addr_info): Ditto. | |
5287 | (make_cleanup_restore_integer): Ditto. | |
5288 | (make_cleanup_unpush_target): Ditto. | |
5289 | (make_cleanup_value_free_to_mark): Ditto. | |
5290 | (make_cleanup_value_free): Ditto. | |
5291 | (make_cleanup_free_so): Ditto. | |
5292 | ||
4dc84fd1 JK |
5293 | 2012-04-17 Jan Kratochvil <[email protected]> |
5294 | ||
5295 | New option "set debug auto-load". | |
5296 | * NEWS: New commands "set debug auto-load" and "show debug auto-load". | |
5297 | * auto-load.c (debug_auto_load, show_debug_auto_load: New. | |
5298 | (auto_load_safe_path_vec_update) | |
5299 | (filename_is_in_auto_load_safe_path_vec): Call fprintf_unfiltered | |
5300 | if DEBUG_AUTO_LOAD. | |
5301 | (file_is_auto_load_safe): New parameters debug_fmt and .... | |
5302 | Call fprintf_unfiltered if DEBUG_AUTO_LOAD. | |
5303 | (source_gdb_script_for_objfile): Extend the file_is_auto_load_safe | |
5304 | caller by explanatory string. | |
5305 | (_initialize_auto_load): Register "set debug auto-load". | |
5306 | * auto-load.h (file_is_auto_load_safe): New parameters debug_fmt | |
5307 | and .... | |
5308 | * linux-thread-db.c (try_thread_db_load_from_pdir_1) | |
5309 | (try_thread_db_load_from_dir): Extend the file_is_auto_load_safe caller | |
5310 | by explanatory string. | |
5311 | * main.c (captured_main): Likewise. | |
5312 | * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile) | |
5313 | (source_section_scripts): Likewise. | |
5314 | ||
bccbefd2 JK |
5315 | 2012-04-17 Jan Kratochvil <[email protected]> |
5316 | ||
5317 | New option "set auto-load safe-path". | |
5318 | * NEWS: New commands "set auto-load safe-path" | |
5319 | and "show auto-load safe-path". | |
5320 | * auto-load.c: Include gdb_vecs.h, readline/tilde.h and completer.h. | |
5321 | (auto_load_safe_path, auto_load_safe_path_vec) | |
5322 | (auto_load_safe_path_vec_update, set_auto_load_safe_path) | |
5323 | (show_auto_load_safe_path, add_auto_load_safe_path, filename_is_in_dir) | |
5324 | (filename_is_in_auto_load_safe_path_vec, file_is_auto_load_safe): New. | |
5325 | (source_gdb_script_for_objfile): New variable is_safe. Call | |
5326 | file_is_auto_load_safe. Return if it is not. | |
5327 | (struct loaded_script): New field loaded. | |
5328 | (maybe_add_script): Add parameter loaded. Initialize SLOT with it. | |
5329 | (print_script): Use LOADED indicator instead of FULL_PATH. Change | |
5330 | output "Missing" to "No". | |
5331 | (_initialize_auto_load): New variable cmd. Initialize | |
5332 | auto_load_safe_path. Register "set auto-load safe-path", | |
5333 | "show auto-load safe-path" and "add-auto-load-safe-path". | |
5334 | * auto-load.h (maybe_add_script): Add parameter loaded. | |
5335 | (file_is_auto_load_safe): New declaration. | |
5336 | * config.in: Regenerate. | |
5337 | * configure: Regenerate. | |
5338 | * configure.ac: New parameters --with-auto-load-safe-path | |
5339 | and --without-auto-load-safe-path. | |
5340 | * linux-thread-db.c (try_thread_db_load_from_pdir_1) | |
5341 | (try_thread_db_load_from_dir): Check file_is_auto_load_safe first. | |
5342 | * main.c (captured_main): Check file_is_auto_load_safe for | |
5343 | LOCAL_GDBINIT. | |
5344 | * python/py-auto-load.c (gdbpy_load_auto_script_for_objfile): New | |
5345 | variable is_safe. Call file_is_auto_load_safe. Return if it is not. | |
5346 | (source_section_scripts): Call file_is_auto_load_safe. Return if it is | |
5347 | not. | |
5348 | ||
bf88dd68 JK |
5349 | 2012-04-17 Jan Kratochvil <[email protected]> |
5350 | ||
5351 | auto-load: Implementation. | |
5352 | * NEWS: New descriptions for "info auto-load", | |
5353 | "info auto-load gdb-scripts", "info auto-load python-scripts", | |
5354 | "info auto-load local-gdbinit" and "info auto-load libthread-db". | |
5355 | Deprecate "info auto-load-scripts", "set auto-load-scripts on|off" | |
5356 | and "show auto-load-scripts". New description for "set auto-load", | |
5357 | "show auto-load", "set auto-load gdb-scripts", | |
5358 | "show auto-load gdb-scripts", "set auto-load python-scripts", | |
5359 | "show auto-load python-scripts", "set auto-load local-gdbinit", | |
5360 | "show auto-load local-gdbinit", "set auto-load libthread-db" and | |
5361 | "show auto-load libthread-db". | |
5362 | * auto-load.c: Remove include python/python-internal.h. Add includes | |
5363 | exceptions.h, cli/cli-script.h, gdbcmd.h, cli/cli-decode.h and | |
5364 | cli/cli-setshow.h. | |
5365 | (GDB_AUTO_FILE_NAME, source_gdb_script_for_objfile) | |
5366 | (auto_load_gdb_scripts, show_auto_load_gdb_scripts): New. | |
5367 | (gdbpy_global_auto_load): Rename to ... | |
5368 | (global_auto_load): ... here. | |
5369 | (auto_load_local_gdbinit, auto_load_local_gdbinit_pathname) | |
5370 | (auto_load_local_gdbinit_loaded, show_auto_load_local_gdbinit) | |
5371 | (script_language_gdb, source_gdb_script_for_objfile): New. | |
5372 | (struct loaded_script): New field language. | |
5373 | (hash_loaded_script_entry, eq_loaded_script_entry): Calculate also | |
5374 | LANGUAGE. | |
5375 | (maybe_add_script): Add parameter language. Drop redundant | |
5376 | entry.full_path initialization. Initialize entry.language and | |
5377 | (*slot)->language. | |
5378 | (auto_load_objfile_script): Change parameter suffix to language. | |
5379 | Remove the call of maybe_add_script. | |
5380 | Call language->source_script_for_objfile. | |
5381 | (load_auto_scripts_for_objfile, struct collect_matching_scripts_data): | |
5382 | New. | |
5383 | (collect_matching_scripts): Adjust it for | |
5384 | struct collect_matching_scripts_data. | |
5385 | (auto_load_info_scripts_pattern_nl): New variable. | |
5386 | (info_auto_load_scripts): Rename to ... | |
5387 | (auto_load_info_scripts): ... here, add parameter language. Adjust it | |
5388 | for struct collect_matching_scripts_data. | |
5389 | (info_auto_load_gdb_scripts, info_auto_load_local_gdbinit) | |
5390 | (set_auto_load_cmd, auto_load_set_cmdlist_get, show_auto_load_cmd) | |
5391 | (auto_load_show_cmdlist_get, info_auto_load_cmd) | |
5392 | (auto_load_info_cmdlist_get): New. | |
5393 | (_initialize_auto_load): Move add_info of "auto-load-scripts" to | |
5394 | python/py-auto-load.c. New installment for "set auto-load gdb-scripts", | |
5395 | "info auto-load gdb-scripts", "set auto-load local-gdbinit" and | |
5396 | "info auto-load local-gdbinit". | |
5397 | * auto-load.h (struct script_language): New. | |
5398 | (gdbpy_global_auto_load): Rename to ... | |
5399 | (global_auto_load): ... here. | |
5400 | (auto_load_local_gdbinit, auto_load_local_gdbinit_pathname) | |
5401 | (auto_load_local_gdbinit_loaded): New declarations. | |
5402 | (maybe_add_script): New parameter language. | |
5403 | (auto_load_objfile_script): Change parameter suffix to language. | |
5404 | (load_auto_scripts_for_objfile, auto_load_info_scripts_pattern_nl) | |
5405 | (auto_load_info_scripts, auto_load_set_cmdlist_get) | |
5406 | (auto_load_show_cmdlist_get, auto_load_info_cmdlist_get): New | |
5407 | declarations. | |
5408 | * linux-thread-db.c: Include auto-load.h and ctype.h. | |
5409 | (auto_load_thread_db, show_auto_load_thread_db): New. | |
5410 | (struct thread_db_info): New field filename. | |
5411 | (delete_thread_db_info): Call xfree for FILENAME. | |
5412 | (try_thread_db_load): Initialize FILENAME. | |
5413 | (try_thread_db_load_from_pdir, try_thread_db_load_from_dir): Return | |
5414 | if !AUTO_LOAD_THREAD_DB. | |
5415 | (info_auto_load_libthread_db_compare, info_auto_load_libthread_db): New. | |
5416 | (_initialize_thread_db): Install auto_load_thread_db | |
5417 | as "set auto-load libthread-db" and install info_auto_load_libthread_db | |
5418 | as "info auto-load libthread-db". | |
5419 | * main.c (captured_main): Rename gdbpy_global_auto_load to | |
5420 | global_auto_load. Initialize AUTO_LOAD_LOCAL_GDBINIT_PATHNAME and | |
5421 | AUTO_LOAD_LOCAL_GDBINIT_LOADED. | |
5422 | (print_gdb_help): Extend the help for 'local init file'. | |
5423 | * python/py-auto-load.c: Remove a comment about gdb scripts extension. | |
5424 | (GDBPY_AUTO_SECTION_NAME): Extend the comment it is Python specific. | |
5425 | (auto_load_scripts): Rename to ... | |
5426 | (auto_load_python_scripts): ... here, update the comment. | |
5427 | (gdbpy_load_auto_script_for_objfile): New declaration. | |
5428 | (show_auto_load_python_scripts, script_language_python) | |
5429 | (gdbpy_load_auto_script_for_objfile): New. | |
5430 | (source_section_scripts): Refactor the code. | |
5431 | (load_auto_scripts_for_objfile): Rename to ... | |
5432 | (gdbpy_load_auto_scripts_for_objfile): ... here, update the | |
5433 | auto_load_objfile_script caller, drop GDBPY_GLOBAL_AUTO_LOAD checking. | |
5434 | (info_auto_load_python_scripts): New. | |
5435 | (gdbpy_initialize_auto_load): New variables cmd and cmd_name. | |
5436 | Rename "set auto-load-scripts" to "set auto-load python-scripts". | |
5437 | Register "set auto-load-scripts" as its deprecated alias. Register | |
5438 | "info auto-load python-scripts". Register "info auto-load-scripts" as | |
5439 | its deprecated alias. | |
5440 | (load_auto_scripts_for_objfile): Rename to ... | |
5441 | (gdbpy_load_auto_scripts_for_objfile): ... here. | |
5442 | * python/python.h (load_auto_scripts_for_objfile): Rename to ... | |
5443 | (gdbpy_load_auto_scripts_for_objfile): ... here. | |
5444 | ||
e2207b9a JK |
5445 | 2012-04-17 Jan Kratochvil <[email protected]> |
5446 | ||
5447 | auto-load: Move files. | |
5448 | * Makefile.in (SFILES): Add auto-load.c. | |
5449 | (HFILES_NO_SRCDIR): Add auto-load.h. | |
5450 | (COMMON_OBS): Add auto-load.o. | |
5451 | (distclean): Change .gdbinit for gdb-gdb.gdb. | |
5452 | * auto-load.c: New file, with parts from python/py-auto-load.c. | |
5453 | * auto-load.h: New file, with parts from python/python.h. | |
5454 | * configure: Regenerate. | |
5455 | * configure.ac (AC_OUTPUT): Change .gdbinit for gdb-gdb.gdb. | |
5456 | * gdb-gdb.gdb.in: New file, renamed from gdbinit.in. | |
5457 | * gdbinit.in: Remove file, rename it to gdb-gdb.gdb.in. | |
5458 | * main.c: Include auto-load.h. | |
5459 | * python/py-auto-load.c: Move include filenames.h, gdb_regex.h, | |
5460 | command.h, observer.h and progspace.h to auto-load.c. Add include | |
5461 | auto-load.h. | |
5462 | (gdbpy_global_auto_load, struct auto_load_pspace_info) | |
5463 | (struct loaded_script, auto_load_pspace_data) | |
5464 | (auto_load_pspace_data_cleanup, get_auto_load_pspace_data) | |
5465 | (hash_loaded_script_entry, eq_loaded_script_entry) | |
5466 | (init_loaded_scripts_info, get_auto_load_pspace_data_for_loading) | |
5467 | (maybe_add_script): Move to auto-load.c. | |
5468 | (source_section_scripts): Change maybe_add_script parameters passing, | |
5469 | use script_not_found_warning_print. | |
5470 | (clear_section_scripts, auto_load_objfile_script) | |
5471 | (auto_load_new_objfile, loaded_script_ptr) | |
5472 | (DEF_VEC_P (loaded_script_ptr), collect_matching_scripts, print_script) | |
5473 | (sort_scripts_by_name, info_auto_load_scripts): Move to auto-load.c. | |
5474 | (gdbpy_initialize_auto_load): Move auto_load_pspace_data, | |
5475 | auto_load_new_objfile and info_auto_load_scripts initizations to | |
5476 | auto-load.c. | |
5477 | * python/python.h (gdbpy_global_auto_load): Move to auto-load.h. | |
5478 | ||
e4ab2fad JK |
5479 | 2012-04-17 Jan Kratochvil <[email protected]> |
5480 | ||
5481 | Code cleanup. | |
5482 | * charset.c (find_charset_names): Remove variables ix and elt. | |
5483 | Use free_char_ptr_vec. | |
5484 | * elfread.c (build_id_to_debug_filename): New variables debugdir_vec, | |
5485 | back_to and ix. Use dirnames_to_char_ptr_vec. Remove variable | |
5486 | debugdir_end. New variable debugdir_len. | |
5487 | * gdb_vecs.h (free_char_ptr_vec, make_cleanup_free_char_ptr_vec) | |
5488 | (dirnames_to_char_ptr_vec_append, dirnames_to_char_ptr_vec): New | |
5489 | declarations. | |
5490 | * progspace.c (clear_program_space_solib_cache): Remove variables ix | |
5491 | and elt. Use free_char_ptr_vec. | |
5492 | * source.c (add_path): Remove variables argv, arg and argv_index. | |
5493 | New variables dir_vec, back_to, ix and name. | |
5494 | Use dirnames_to_char_ptr_vec_append. Use freeargv instead of | |
5495 | make_cleanup_freeargv. Remove variable separator. Simplify the code | |
5496 | no longer expecting DIRNAME_SEPARATOR. | |
5497 | (openp): Remove variable p, p1 and len. New variables dir_vec, | |
5498 | back_to, ix and dir. Use dirnames_to_char_ptr_vec. Simplify the code | |
5499 | no longer expecting DIRNAME_SEPARATOR. | |
5500 | * symfile.c (find_separate_debug_file): New variables debugdir_vec, | |
5501 | back_to and ix. Use dirnames_to_char_ptr_vec. Remove variable | |
5502 | debugdir_end. | |
5503 | * utils.c (free_char_ptr_vec, do_free_char_ptr_vec) | |
5504 | (make_cleanup_free_char_ptr_vec, dirnames_to_char_ptr_vec_append) | |
5505 | (dirnames_to_char_ptr_vec): New functions. | |
5506 | ||
5ee4ed9f JK |
5507 | 2012-04-17 Jan Kratochvil <[email protected]> |
5508 | ||
5509 | Code cleanup. | |
5510 | * source.c (add_path): Remove always true conditional 'p == 0' and | |
5511 | unindent its code block. | |
5512 | ||
f41f5e61 PA |
5513 | 2012-04-17 Pedro Alves <[email protected]> |
5514 | ||
5515 | * gdbtypes.h (FIELD_BITPOS): Rename to ... | |
5516 | (FIELD_BITPOS_LVAL): ... this. | |
5517 | (FIELD_BITPOS): New. | |
5518 | (SET_FIELD_BITPOS): Adjust to use FIELD_BITPOS_LVAL. | |
5519 | * dwarf2read.c (dwarf2_add_field): Use SET_FIELD_BITPOS. | |
5520 | * gdbtypes.c (append_composite_type_field_aligned): Adjust to use | |
5521 | SET_FIELD_BITPOS. | |
5522 | * gnu-v3-abi.c (build_gdb_vtable_type): Adjust to use | |
5523 | SET_FIELD_BITPOS. | |
5524 | * stabsread.c (read_cpp_abbrev, read_one_struct_field) | |
5525 | (read_baseclasses): Adjust to use SET_FIELD_BITPOS. | |
5526 | * target-descriptions.c (tdesc_gdb_type): Adjust to use | |
5527 | SET_FIELD_BITPOS. | |
5528 | ||
945b3a32 JK |
5529 | 2012-04-17 Jan Kratochvil <[email protected]> |
5530 | ||
5531 | Do not rely on FIELD_LOC_KIND_BITPOS being zero. | |
5532 | * ada-lang.c (ada_template_to_fixed_record_type_1): Replace | |
5533 | TYPE_FIELD_BITPOS used as lvalue by SET_FIELD_BITPOS. | |
5534 | * gdbtypes.c (append_flags_type_flag): Likewise, twice. | |
5535 | * jv-lang.c (java_link_class_type): Likewise, once. | |
5536 | * stabsread.c (read_enum_type): Likewise. | |
5537 | ||
42476b70 YQ |
5538 | 2012-04-16 Yao Qi <[email protected]> |
5539 | ||
5540 | * common/agent.c (agent_run_command): Add one more parameter `len'. | |
5541 | Update callers. | |
5542 | * common/agent.h: Update declaration. | |
5543 | * linux-nat.c (linux_child_static_tracepoint_markers_by_strid): | |
5544 | Update. | |
5545 | (linux_child_static_tracepoint_markers_by_strid): Ditto. | |
5546 | ||
8264ba82 AG |
5547 | 2012-04-14 Anton Gorenkov <[email protected]> |
5548 | ||
5549 | PR mi/13393 | |
5550 | * value.c (value_actual_type): New function. | |
5551 | * value.h (value_actual_type): New declaration. | |
5552 | * varobj.c (update_type_if_necessary): New function. | |
5553 | (varobj_create): Call value_actual_type instead of | |
5554 | value_type. | |
5555 | (install_dynamic_child): distinct changed and type changed MI variable | |
5556 | objects. | |
5557 | (update_dynamic_varobj_children): Updated for install_dynamic_child | |
5558 | change. All callers updated. | |
a09130f9 | 5559 | (varobj_update): Support for MI variable object type change if |
8264ba82 AG |
5560 | the value changed and RTTI is used to determine the type. |
5561 | (create_child_with_value): Call value_actual_type instead of | |
5562 | value_type. | |
a09130f9 | 5563 | (adjust_value_for_child_access): Extended with a new parameter which |
8264ba82 AG |
5564 | specify whether the given value should be casted to enclosing type. |
5565 | All callers updated. | |
5566 | ||
55a8c076 YQ |
5567 | 2012-04-14 Yao Qi <[email protected]> |
5568 | ||
5569 | Import gnulib module inttypes from git | |
5570 | (250b80067c1e1d8faa0c42fb572f721975b929c5) | |
5571 | * Makefile.in (HFILES_NO_SRCDIR): Add gnulib/inttypes.in.h. | |
a09130f9 PA |
5572 | (aclocal_m4_deps): Add gnulib/m4/inttypes.m4 and |
5573 | gnulib/m4/inttypes-pri.m4 | |
55a8c076 YQ |
5574 | * aclocal.m4, config.in, configure: Regenerated. |
5575 | * gnulib/Makefile.am: Update. | |
5576 | * gnulib/Makefile.in: Update. | |
5577 | * gnulib/m4/gnulib-cache.m4: Update. | |
5578 | * gnulib/m4/gnulib-comp.m4: Update. | |
5579 | * gnulib/inttypes.in.h: New. | |
5580 | * gnulib/m4/inttypes-pri.m4: New. | |
a09130f9 | 5581 | * gnulib/m4/inttypes.m4: New. |
55a8c076 | 5582 | |
ca7781d2 LM |
5583 | 2012-04-13 Luis Machado <[email protected]> |
5584 | ||
5585 | * infrun.c (resume): Update PC address to the real PC after | |
5586 | preparing to do displaced stepping. | |
5587 | ||
e319fa28 DE |
5588 | 2012-04-12 Doug Evans <[email protected]> |
5589 | ||
5590 | * dwarf2read.c (lookup_signatured_type): Remove arg "objfile", unused. | |
5591 | All callers updated. | |
5592 | ||
15add3f5 MK |
5593 | 2012-04-12 Mark Kettenis <[email protected]> |
5594 | ||
5595 | * i386bsd-nat.c (_initialize_i386bsd_nat): Add missing prototype. | |
5596 | ||
52dc124a DE |
5597 | 2012-04-12 Doug Evans <[email protected]> |
5598 | ||
0e50663e DE |
5599 | * dwarf2read.c (create_all_type_units): Renamed from |
5600 | create_debug_types_hash_table. All callers updated. | |
5601 | ||
52dc124a DE |
5602 | * dwarf2read.c (create_signatured_type_table_from_index): Rename |
5603 | local type_sig to sig_type, type_offset to type_offset_in_tu. | |
5604 | (hash_signatured_type): Renamed from hash_type_signature, | |
5605 | all callers updated. | |
5606 | (eq_signatured_type): Renamed from eq_type_signature, | |
5607 | all callers updated. | |
5608 | (create_debug_types_hash_table): Rename local type_sig to sig_type. | |
5609 | (process_enumeration_scope): Ditto. | |
5610 | (lookup_signatured_type_at_offset): Ditto. | |
5611 | (load_full_type_unit, read_signatured_type): Ditto. | |
5612 | ||
248fd3bf YQ |
5613 | 2012-04-12 Yao Qi <[email protected]> |
5614 | ||
5615 | * remote.c (async_remote_interrupt): Correct function name in | |
5616 | debug message. | |
5617 | (async_remote_interrupt_twice): Ditto. | |
5618 | ||
bc3aa6c3 DE |
5619 | 2012-04-11 Yuanhui Zhang <[email protected]> |
5620 | ||
5621 | * source.c (find_and_open_source): Consistently pass resulting | |
5622 | full path through xfullpath. | |
5623 | ||
9e529e1d JK |
5624 | 2012-04-11 Jan Kratochvil <[email protected]> |
5625 | ||
5626 | Provide more specific displaced-stepping memory error message. | |
5627 | * infrun.c (displaced_step_prepare): New variable status. Call | |
5628 | target_read_memory instead of read_memory, provide more specific | |
5629 | error message. | |
5630 | ||
82e0cec1 TG |
5631 | 2012-04-11 Tristan Gingold <[email protected]> |
5632 | ||
5633 | PR gdb/13901 | |
5634 | * darwin-nat.c (darwin_execvp): Revert previous patch. | |
5635 | ||
d987a266 TG |
5636 | 2012-04-11 Tristan Gingold <[email protected]> |
5637 | ||
5638 | PR gdb/13901 | |
5639 | * darwin-nat.c (darwin_resume_thread): Call darwin_set_sstep only | |
5640 | in case of change. | |
5641 | ||
016b7430 TG |
5642 | 2012-04-11 Tristan Gingold <[email protected]> |
5643 | ||
5644 | * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Fix | |
5645 | warning. | |
5646 | ||
06fc020f SCR |
5647 | 2012-04-11 Siva Chandra Reddy <[email protected]> |
5648 | ||
5649 | New command 'explore' which helps explore values and types in | |
5650 | scope. | |
5651 | * NEWS: Add an entry about the new 'explore' command. | |
5652 | * data-directory/Makefile.in: Add gdb/command/explore.py | |
5653 | * python/lib/gdb/command/explore.py: Implemention of the 'explore' | |
a09130f9 | 5654 | command using the GDB Python API. |
06fc020f | 5655 | |
de0919f8 | 5656 | 2012-04-10 Maciej W. Rozycki <[email protected]> |
34b192ce MR |
5657 | |
5658 | * mips-tdep.c (mips_skip_pic_trampoline_code): Correct sign | |
5659 | extension in jump target calculation. | |
5660 | ||
de0919f8 | 5661 | 2012-04-10 Maciej W. Rozycki <[email protected]> |
9e8da49c MR |
5662 | |
5663 | * mips-tdep.c (mips32_next_pc): Handle JALX. | |
5664 | ||
2f26ef89 YQ |
5665 | 2012-04-10 Yao Qi <[email protected]> |
5666 | ||
5667 | * Makefile.in (gnulib/Makefile): Remove duplicated dependency. | |
5668 | ||
2e505b66 YQ |
5669 | 2012-04-10 Yao Qi <[email protected]> |
5670 | ||
5671 | * Makefile.in (aclocal_m4_deps): Add gnulib/m4/gnulib-cache.m4 | |
5672 | and gnulib/m4/gnulib-tool.m4. | |
5673 | ||
0d99eb77 DE |
5674 | 2012-04-10 Doug Evans <[email protected]> |
5675 | ||
5676 | * dwarf2read.c (dwarf2_per_cu_data). Clarify comment. | |
5677 | (load_partial_dies): Clarify comment. | |
5678 | (find_partial_die): Support rereading type units. | |
5679 | Clarify CU handling, if we know offset is in CU, don't search for the | |
5680 | containing CU. Add comment regarding memory waste. | |
5681 | ||
9a82b8ff L |
5682 | 2012-04-10 H.J. Lu <[email protected]> |
5683 | ||
5684 | * features/Makefile (WHICH): Add i386/x32, i386/x32-linux, | |
5685 | i386/x32-avx and i386/x32-avx-linux. | |
5686 | (i386/x32-expedite): New. | |
5687 | (i386/x32-linux-expedite): Likewise. | |
5688 | (i386/x32-avx-expedite): Likewise. | |
5689 | (i386/x32-avx-linux-expedite): Likewise. | |
5690 | ($(outdir)/i386/x32.dat): Likewise. | |
5691 | ($(outdir)/i386/x32-linux.dat): Likewise. | |
5692 | ($(outdir)/i386/x32-avx.dat): Likewise. | |
5693 | ($(outdir)/i386/x32-avx-linux.dat): Likewise. | |
5694 | ||
5695 | * features/i386/x32-avx-linux.xml: New file. | |
5696 | * features/i386/x32-avx.xml: Likewise. | |
5697 | * features/i386/x32-core.xml: Likewise. | |
5698 | * features/i386/x32-linux.xml: Likewise. | |
5699 | * features/i386/x32.xml: Likewise. | |
5700 | ||
5701 | * features/i386/x32-avx-linux.c: New. Generated. | |
5702 | * features/i386/x32-avx.c: Likewise. | |
5703 | * features/i386/x32-linux.c: Likewise. | |
5704 | * features/i386/x32.c: Likewise. | |
5705 | * regformats/i386/x32-avx-linux.dat: Likewise. | |
5706 | * regformats/i386/x32-avx.dat: Likewise. | |
5707 | * regformats/i386/x32-linux.dat: Likewise. | |
5708 | * regformats/i386/x32.dat: Likewise. | |
5709 | ||
ee41036f TG |
5710 | 2012-04-10 Tristan Gingold <[email protected]> |
5711 | ||
5712 | * darwin-nat.c (darwin_kill_inferior): Always use the no ptrace | |
5713 | code to kill the inferior. | |
5714 | ||
a7aa5b8a MK |
5715 | 2012-04-09 Mark Kettenis <[email protected]> |
5716 | ||
5717 | * ada-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New | |
5718 | defines. | |
5719 | * c-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New | |
5720 | defines. | |
a09130f9 | 5721 | * cp-name-parser.y (yyss, yysslim, yyssp, yystacksize, yyvs) |
a7aa5b8a MK |
5722 | (yyvsp): New defines. |
5723 | * f-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New | |
5724 | defines. | |
5725 | * jv-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New | |
5726 | defines. | |
5727 | * m2-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New | |
5728 | defines. | |
5729 | * objc-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New | |
5730 | defines. | |
5731 | * p-exp.y (yyss, yysslim, yyssp, yystacksize, yyvs, yyvsp): New | |
5732 | defines. | |
5733 | ||
fb57d452 MK |
5734 | 2012-04-09 Mark Kettenis <[email protected]> |
5735 | ||
a09130f9 | 5736 | * sparc64-tdep.c (sparc64_store_arguments) |
fb57d452 MK |
5737 | (sparc64_store_arguments): Fix coding style. |
5738 | ||
cdc7b32f MK |
5739 | 2012-04-07 Mark Kettenis <[email protected]> |
5740 | ||
5741 | * sparc64-tdep.c (sparc64_store_arguments): Fix handling of | |
5742 | complex floats, adjust some related comments and tighten a related | |
5743 | assertion. | |
5744 | (sparc64_extract_return_value): Handle complex floats. | |
5745 | ||
7adf1e79 DE |
5746 | 2012-04-07 Doug Evans <[email protected]> |
5747 | ||
5748 | * dwarf2read.c (load_partial_dies): Change condition to assert. | |
5749 | ||
50f1ae7b DE |
5750 | 2012-04-06 Doug Evans <[email protected]> |
5751 | ||
5752 | * amd64-tdep.c (amd64_analyze_prologue): Recognize both variations of | |
5753 | "mov %rsp,%rbp". | |
5754 | ||
55fa75c3 KB |
5755 | 2012-04-05 Kevin Buettner <[email protected]> |
5756 | ||
5757 | * v850-tdep.c (E_NUM_OF_V850_REGS, E_NUM_OF_V850E_REGS): Fix | |
5758 | fencepost error. | |
5759 | (v850_frame_cache): Use gdbarch_num_regs() instead of E_NUM_REGS. | |
5760 | (v850_gdbarch_init): Set `num_regs' as appropriate for the | |
5761 | architecture. | |
5762 | ||
40e084e1 KS |
5763 | 2012-04-05 Keith Seitz <[email protected]> |
5764 | ||
5765 | * linespec.c (decode_compound): Remove. | |
5766 | (enum offset_relative_sign): New enum. | |
5767 | (struct line_offset): New struct. | |
5768 | (struct linespec): New struct. | |
5769 | (struct linespec_state): Move file_symtabs, | |
5770 | user_filename, and user_function into struct linespec. | |
5771 | Make result an anonymous struct holding vectors of | |
5772 | symbolp and minsym_and_objfile_d. | |
5773 | Add language member. | |
5774 | (enum ls_token_type): New enum. | |
5775 | (linespec_keywords): New array. | |
5776 | (struct ls_token): New struct. | |
5777 | (struct ls_parser): New struct. | |
5778 | (linespec_lexer_lex_number): New function. | |
5779 | (linespec_lexer_lex_keyword): New function. | |
5780 | (is_ada_operator): New function. | |
5781 | (skip_quote_char): New function. | |
5782 | (copy_token_string): New function. | |
5783 | (is_closing_quote_enclosed): New function. | |
5784 | (find_parameter_list_end): New function. | |
5785 | (linespec_lexer_lex_string): New function. | |
5786 | (linespec_lexer_lex_one): New function. | |
5787 | (linespec_lexer_consume_token): New function. | |
5788 | (linespec_lexer_peek_token): New function. | |
5789 | (cplusplus_error): Remove unused function. | |
5790 | (find_methods): Update comment. | |
5791 | (find_toplevel_char): Return const. | |
5792 | (is_objc_method_format): Remove unused function. | |
5793 | (find_toplevel_string): New function. | |
5794 | (is_linespec_boundary): Remove. | |
5795 | (symbol_not_found_error): New function. | |
5796 | (find_method_overload_end): Remove function. | |
5797 | (unexpected_linespec_error): New function. | |
5798 | (keep_name_info): Remove. | |
5799 | (linespec_parse_line_offset): New function. | |
5800 | (linespec_parse_basic): New function. | |
5801 | (canonicalize_linespec): New function. | |
5802 | (decode_line_internal): Remove. | |
5803 | (create_sals_line_offset): New function adapted from | |
5804 | decode_all_digits. | |
5805 | (convert_linespec_to_sals): New function. | |
5806 | (parse_linespec): New function. | |
5807 | (linespec_parser_new): New function. | |
5808 | (linespec_state_destructor): Change parameter type to | |
5809 | struct linespec_state *. | |
5810 | Add language parameter. | |
5811 | Remove freeing of moved members. | |
5812 | (linespec_parser_delete): New function. | |
5813 | (decode_line_full): Use parse_linespec and linespec_parser_new. | |
5814 | (decode_line_1): Likewise. | |
5815 | (decode_indirect): Rename to ... | |
5816 | (linespec_expression_to_pc): ... this and rewrite | |
5817 | to simply find CORE_ADDR, storing this result for later | |
5818 | conversion to SALs. | |
5819 | (locate_first_half): Remove. | |
5820 | (deocde_objc): Add parameter LS. | |
5821 | Initialize new struct collect_info members. | |
5822 | Handle minimal symbols, too. | |
5823 | (decode_compound): Delete. | |
5824 | (lookup_prefix_sym): Rewrite. | |
5825 | (compare_msymbols): New function. | |
5826 | (find_method): Rewrite. | |
5827 | Do not call cplusplus_error. | |
5828 | (symtabs_from_filename): Rewrite. | |
5829 | (collect_function_symbols): Delete. | |
5830 | (find_function_symbols): Rewrite without ARGPTR-style | |
5831 | processing. | |
5832 | (decode_all_digits): Delete. (Rewritten as create_sals_line_offset.) | |
5833 | (decode_dollar): Adapted and renamed to ... | |
5834 | (linespec_parse_variable): ... this. | |
5835 | (find_linespec_symbols): New function. | |
5836 | (decode_label): Adapted and renamed to ... | |
5837 | (find_label_symbols): ... this. | |
5838 | (decode_digits_list_mode): Add and use LS argument. | |
5839 | (decode_digits_ordinary): Likewise. | |
5840 | (collect_symbols): Do not collect SALs, just symbols and msymbols. | |
5841 | If in list mode, allow any symbol class. Otherwise, only | |
5842 | permit LOC_BLOCK symbols. | |
5843 | (minsym_found): Update comments. | |
5844 | (search_minsyms_for_name): Do not convert the matching symbol | |
5845 | into a SAL. Simply push the symbol and objfile into the | |
5846 | result vector. | |
5847 | (decode_variable): Delete. Contents adapted into | |
5848 | find_linespec_symbols. | |
5849 | ||
5850 | * cp-support.c (SKIP_SPACE): Remove. | |
5851 | (operator_tokens): Remove unused global. | |
5852 | (cp_validate_operator): Remove. | |
5853 | * cp-support.h (cp_validate_operator): Remove declaration. | |
5854 | ||
a72c8f6a JK |
5855 | 2012-04-03 Jan Kratochvil <[email protected]> |
5856 | ||
5857 | * cp-valprint.c (cp_print_value_fields): Check valprint_check_validity | |
5858 | for TYPE_VPTR_FIELDNO. | |
5859 | * valprint.c (valprint_check_validity): Make it global, move the | |
5860 | function comment ... | |
5861 | * value.h (valprint_check_validity): ... to this new declaration. | |
5862 | ||
cf9bb588 TG |
5863 | 2012-04-02 Tristan Gingold <[email protected]> |
5864 | ||
5865 | * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Use | |
5866 | the STATE32 api for i386 state. | |
5867 | (i386_darwin_store_inferior_registers): Likewise. | |
5868 | ||
17092398 TG |
5869 | 2012-04-02 Tristan Gingold <[email protected]> |
5870 | ||
5871 | * i386-darwin-tdep.c (i386_darwin_thread_state_reg_offset): Fix | |
5872 | SS offset. | |
5873 | * i386-darwin-nat.c (i386_darwin_fetch_inferior_registers): Fix | |
5874 | format_string. | |
5875 | ||
ece0061f TG |
5876 | 2012-04-02 Tristan Gingold <[email protected]> |
5877 | ||
5878 | PR gdb/13901 | |
d987a266 | 5879 | * darwin-nat.c (darwin_execvp): Set binary preference. |
ece0061f | 5880 | |
cf65ecd3 JK |
5881 | 2012-04-02 Jan Kratochvil <[email protected]> |
5882 | ||
5883 | * NEWS (set breakpoint condition-evaluation): Use imperative mood. | |
5884 | ||
9bc3523d TT |
5885 | 2012-03-30 Tom Tromey <[email protected]> |
5886 | ||
5887 | * python/python.c (gdbpy_decode_line): Move cleanup creation out | |
5888 | of TRY_CATCH. Fix error handling. | |
5889 | * python/py-value.c (convert_value_from_python): Move 'old' | |
5890 | declaration to innermost scope. | |
5891 | ||
b1ed564a JB |
5892 | 2012-03-29 Joel Brobecker <[email protected]> |
5893 | Andrey Smirnov <[email protected]> | |
5894 | ||
5895 | -Wshadow warning fix. | |
5896 | * ada-lang.c (ada_make_symbol_completion_list): Rename parameters | |
5897 | "wild_match" and "encoded" into "wild_match_p" and "encoded_p". | |
5898 | Adjust code accordingly. | |
5899 | ||
cb8e9b97 JB |
5900 | 2012-03-29 Joel Brobecker <[email protected]> |
5901 | ||
5902 | * ada-lang.c (symbol_completion_add): Rename parameter | |
5903 | "encoded" into "encoded_p". Ajust code and documentation | |
5904 | accordingly. | |
5905 | ||
c0af1706 JB |
5906 | 2012-03-29 Joel Brobecker <[email protected]> |
5907 | Andrey Smirnov <[email protected]> | |
5908 | ||
5909 | -Wshadow warning fix. | |
5910 | * ada-lang.c (symbol_completion_add): Rename parameter | |
5911 | "wild_match" into wild_match_p. Update code and documentation | |
5912 | accordingly. | |
5913 | ||
6ea35997 JB |
5914 | 2012-03-29 Joel Brobecker <[email protected]> |
5915 | ||
5916 | * ada-lang.c (symbol_completion_match): Rename parameter | |
5917 | "encoded" into "encoded_p". Ajust code and documentation | |
5918 | accordingly. | |
5919 | ||
e701b3c0 JB |
5920 | 2012-03-29 Joel Brobecker <[email protected]> |
5921 | Andrey Smirnov <[email protected]> | |
5922 | ||
5923 | -Wshadow warning fix. | |
5924 | * ada-lang.c (symbol_completion_match): Rename parameter | |
5925 | "wild_match" into "wild_match_p". Adjust code and function | |
5926 | documentation accordingly. | |
5927 | ||
5e2336be JB |
5928 | 2012-03-29 Joel Brobecker <[email protected]> |
5929 | Andrey Smirnov <[email protected]> | |
5930 | ||
5931 | -Wshadow warning fix. | |
5932 | * ada-lang.c (ada_lookup_encoded_symbol): Rename parameter | |
5933 | "symbol_info" into "info". Adjust code accordingly. | |
5934 | (ada_lookup_symbol): Likewise. | |
5935 | ||
9f88c959 JB |
5936 | 2012-03-29 Joel Brobecker <[email protected]> |
5937 | ||
5938 | * ada-lang.c (ada_lookup_symbol_list): Minor reformatting | |
5939 | of this function's documentation. | |
5940 | ||
82ccd55e JB |
5941 | 2012-03-29 Joel Brobecker <[email protected]> |
5942 | Andrey Smirnov <[email protected]> | |
5943 | ||
5944 | -Wshadow warning fix. | |
5945 | * ada-lang.c (ada_lookup_symbol_list): Rename "wild_match" | |
5946 | variable into "wild_match_p". Adjust code accordingly. | |
5947 | ||
d0a8ab18 JB |
5948 | 2012-03-29 Joel Brobecker <[email protected]> |
5949 | Andrey Smirnov <[email protected]> | |
5950 | ||
5951 | -Wshadow warning fix. | |
5952 | * ada-lang.c (ada_add_local_symbols): Rename "wild_match" | |
5953 | parameter into "wild_match_p". Adjust code accordingly. | |
5954 | Document this parameter in the function description. | |
5955 | ||
48b78332 JB |
5956 | 2012-03-29 Joel Brobecker <[email protected]> |
5957 | Andrey Smirnov <[email protected]> | |
5958 | ||
5959 | -Wshadow warning fix. | |
5960 | * ada-lang.c (add_symbols_from_enclosing_procs): Rename | |
5961 | "wild_match" parameter to "wild_match_p" (-Wshadow). | |
5962 | ||
2e6e0353 JB |
5963 | 2012-03-29 Joel Brobecker <[email protected]> |
5964 | ||
5965 | * ada-lang.c (ada_lookup_simple_minsym): Remove trailing spaces | |
5966 | in function documentation. | |
5967 | ||
dc4024cd JB |
5968 | 2012-03-29 Joel Brobecker <[email protected]> |
5969 | Andrey Smirnov <[email protected]> | |
5970 | ||
5971 | -Wshadow warning fix. | |
5972 | * ada-lang.c (ada_lookup_simple_minsym): Rename wild_match local | |
5973 | variable into wild_match_p. Adjust code accordingly. | |
5974 | ||
6c88661c JB |
5975 | 2012-03-29 Joel Brobecker <[email protected]> |
5976 | Andrey Smirnov <[email protected]> | |
5977 | ||
5978 | * ada-valprint.c (ada_val_print_1): Move the code handling | |
5979 | TYPE_CODE_ENUM inside its own lexical block. Declare | |
5980 | variables len and val there, instead of in the function's | |
5981 | top level block. Avoid declaring deref_val again in a way | |
5982 | that shadows another variable of the same name declared | |
5983 | in one of the up-level blocks. Just re-use the up-level | |
5984 | variable instead. | |
5985 | ||
4e5c77fe JB |
5986 | 2012-03-29 Joel Brobecker <[email protected]> |
5987 | ||
5988 | * ada-lang.c (ada_lookup_encoded_symbol): Now returns void. | |
5989 | Replace block_found argument by symbol_info. Adjust | |
5990 | implementation accordingly. Add function documentation. | |
5991 | (ada_lookup_symbol): Adjust to new ada_lookup_encoded_symbol. | |
5992 | Fix documentation. | |
5993 | * ada-lang.h (ada_lookup_encoded_symbol): Update declaration. | |
5994 | * ada-exp.y (write_object_renaming): Adjust to new | |
5995 | ada_lookup_encoded_symbol API. | |
5996 | ||
1c0ac8c7 JB |
5997 | 2012-03-29 Joel Brobecker <[email protected]> |
5998 | ||
5999 | * ada-lang.h (struct ada_symbol_info): Reformat. Improve | |
6000 | documentation. | |
6001 | ||
2aaed979 KB |
6002 | 2012-03-28 Rathish C <[email protected]> |
6003 | ||
6004 | * v850-tdep.c: Add the enum values for mpu and fpu registers. | |
6005 | (v850_register_name): Add the mpu and fpu register names. | |
6006 | (v850e_register_name): Add the mpu and fpu register names. | |
6007 | (v850e2_register_name): New function. | |
a09130f9 | 6008 | (v850_gdbarch_init): Add case for bfd_mach_v850e2 and |
2aaed979 KB |
6009 | bfd_mach_v850e2v3. |
6010 | ||
927fbba6 JB |
6011 | 2012-03-28 Joel Brobecker <[email protected]> |
6012 | ||
6013 | * NEWS: Add entry for Ada varobj support. | |
6014 | ||
d32cafc7 JB |
6015 | 2012-03-28 Joel Brobecker <[email protected]> |
6016 | ||
6017 | * varobj.c (default_value_is_changeable_p): New function, | |
6018 | extracted from varobj_value_is_changeable_p. Add declaration. | |
6019 | (ada_value_is_changeable_p): New function, extracted from | |
6020 | varobj_value_is_changeable_p. Add declaration. | |
6021 | (struct language_specific): New field "value_is_changeable_p". | |
6022 | (languages): Add entries for new field. | |
6023 | (varobj_create): Set language before calling install_new_value. | |
6024 | (varobj_value_is_changeable_p): Reimplement to call the varobj's | |
6025 | "value_is_changeable_p" language callback. | |
6026 | ||
181875a4 JB |
6027 | 2012-03-28 Joel Brobecker <[email protected]> |
6028 | ||
6029 | * ada-varobj.h, ada-varobj.c: New files. | |
6030 | * Makefile.in (SFILES): Add ada-varobj.c. | |
6031 | (HFILES_NO_SRCDIR): Add ada-varobj.h. | |
6032 | (COMMON_OBS): Add ada-varobj.o. | |
6033 | ||
7a290c40 JB |
6034 | 2012-03-28 Joel Brobecker <[email protected]> |
6035 | ||
6036 | * varobj.c (ada_value_has_mutated): Add declaration. New function. | |
6037 | (struct language_specific): New field "value_has_mutated". | |
6038 | (languages): Set field "value_has_mutated" in each entry of array. | |
6039 | (varobj_value_has_mutated): New function. | |
6040 | (varobj_udpdate): Add handling of type mutation. | |
6041 | (value_of_root): Add handling of type mutation. | |
6042 | (ada_value_has_mutated): New function. | |
6043 | ||
ca9b8b9c PA |
6044 | 2012-03-28 Pedro Alves <[email protected]> |
6045 | ||
6046 | * ia64-linux-nat.c (supply_fpregset, ia64_linux_fetch_register): | |
6047 | Always supply $fr0 as 0.0 and $fr1 as 1.0. | |
6048 | ||
cc0265cd TT |
6049 | 2012-03-28 Tom Tromey <[email protected]> |
6050 | ||
6051 | * python/py-inferior.c (infpy_read_memory): Remove cleanups and | |
6052 | explicitly free 'buffer' on exit paths. Decref 'membuf_object' | |
6053 | before returning. | |
6054 | ||
3ad2ec6f TT |
6055 | 2012-03-28 Tom Tromey <[email protected]> |
6056 | ||
6057 | * .dir-locals.el: New file. | |
6058 | ||
4a6510ba PA |
6059 | 2012-03-28 Pedro Alves <[email protected]> |
6060 | ||
6061 | * ia64-linux-nat.c (u_offsets): Map IA64_EC_REGNUM to PT_AR_EC. | |
6062 | ||
5a75128f JB |
6063 | 2012-03-28 Joel Brobecker <[email protected]> |
6064 | ||
6065 | * ia64-linux-nat.c (ia64_linux_fetch_register): Add special | |
6066 | handling for r0. | |
6067 | ||
f99d8bf4 PA |
6068 | 2012-03-27 Pedro Alves <[email protected]> |
6069 | ||
6070 | Eliminate struct ui_stream. | |
6071 | ||
6072 | * ui-out.h (struct ui_stream): Delete. | |
6073 | (ui_out_field_stream): Adjust prototype. | |
6074 | (ui_out_stream_new, ui_out_stream_delete) | |
6075 | (make_cleanup_ui_out_stream_delete): Delete declarations. | |
6076 | * ui-out.c (ui_out_field_stream): Change prototype to take a | |
6077 | ui_file instead of a ui_stream. Adjust. | |
6078 | (ui_out_stream_new, ui_out_stream_delete, do_stream_delete) | |
6079 | (make_cleanup_ui_out_stream_delete): Delete. | |
6080 | * breakpoint.c (print_breakpoint_location) | |
6081 | (print_one_detail_ranged_breakpoint, print_it_watchpoint): Use | |
6082 | ui_file/mem_fileopen instead of ui_stream/ui_out_stream_new. | |
6083 | * disasm.c (dump_insns): Ditto. | |
6084 | (do_mixed_source_and_assembly, do_assembly_only): Adjust | |
6085 | prototype. | |
6086 | (gdb_disassembly): Use ui_file/mem_fileopen instead of | |
6087 | ui_stream/ui_out_stream_new. | |
6088 | * infcmd.c (print_return_value): Ditto. | |
6089 | * osdata.c (info_osdata_command): Don't allocate a local | |
6090 | ui_stream. | |
6091 | * stack.c (print_frame_arg, print_frame_args, print_frame): Use | |
6092 | ui_file/mem_fileopen instead of ui_stream/ui_out_stream_new. | |
6093 | * tracepoint.c (print_one_static_tracepoint_marker): Don't | |
6094 | allocate a local ui_stream. | |
6095 | * mi/mi-cmd-stack.c (list_arg_or_local): Use ui_file/mem_fileopen | |
6096 | instead of ui_stream/ui_out_stream_new. | |
6097 | (list_args_or_locals): Don't allocate a local ui_stream. | |
6098 | * mi/mi-main.c (get_register, mi_cmd_data_evaluate_expression) | |
6099 | (mi_cmd_data_read_memory): Use ui_file/mem_fileopen instead of | |
6100 | ui_stream/ui_out_stream_new. | |
6101 | * cli/cli-setshow.c (do_setshow_command): Ditto. | |
6102 | ||
6350a066 | 6103 | 2012-03-27 Oza Pawandeep <[email protected]> |
72508ac0 | 6104 | |
6350a066 PA |
6105 | * arm-linux-tdep.c (arm_linux_init_abi): Call |
6106 | set_gdbarch_process_record. Initialize `arm_swi_record' field. | |
6107 | * arm-tdep.c (arm_process_record): New function. | |
6108 | (deallocate_reg_mem): New function. | |
6109 | (decode_insn): New function. | |
6110 | (thumb_record_branch): New function. | |
6111 | (thumb_record_ldm_stm_swi(): New function. | |
6112 | (thumb_record_misc): New function. | |
6113 | (thumb_record_ld_st_stack): New function. | |
6114 | (thumb_record_ld_st_imm_offset): New function. | |
6115 | (thumb_record_ld_st_reg_offset(): New function. | |
6116 | (thumb_record_add_sub_cmp_mov): New function. | |
6117 | (thumb_record_shift_add_sub): New function. | |
6118 | (arm_record_coproc_data_proc): New function. | |
6119 | (arm_record_coproc): New function. | |
6120 | (arm_record_b_bl): New function. | |
6121 | (arm_record_ld_st_multiple): New function. | |
6122 | (arm_record_ld_st_reg_offset): New function. | |
6123 | (arm_record_ld_st_imm_offset): New function. | |
6124 | (arm_record_data_proc_imm): New function. | |
6125 | (arm_record_data_proc_misc_ld_str): New function. | |
6126 | (arm_record_extension_space): New function. | |
6127 | (arm_record_strx): New function. | |
6128 | (sbo_sbz): New function. | |
6129 | (struct insn_decode_record): New structure for arm insn record. | |
6130 | (REG_ALLOC): New macro for reg allocations. | |
6131 | (MEM_ALLOC): New macro for memory allocations. | |
6132 | * arm-tdep.h (struct gdbarch_tdep): New field 'arm_swi_record'. | |
72508ac0 | 6133 | |
89e028e2 AS |
6134 | 2012-03-27 Andreas Schwab <[email protected]> |
6135 | ||
6136 | * m68klinux-nat.c (fetch_register): Fix strict-aliasing violation. | |
6137 | (store_register): Likewise. | |
6138 | ||
6350a066 | 6139 | 2012-03-26 Oza Pawandeep <[email protected]> |
3d9a9eb0 | 6140 | |
6350a066 | 6141 | * MAINTAINERS (Write After Approval): Add myself to the list. |
3d9a9eb0 | 6142 | |
5b43fab2 JK |
6143 | 2012-03-25 Jan Kratochvil <[email protected]> |
6144 | ||
6145 | * NEWS (set breakpoint condition-evaluation): Change "gdb" to "host". | |
6146 | Describe also the option "auto". | |
6147 | ||
b5453b95 RH |
6148 | 2012-03-22 Richard Henderson <[email protected]> |
6149 | ||
6150 | * sparc-linux-nat.c (_initialize_sparc_linux_nat): Fix prototype. | |
6151 | * sparc-nat.c (sparc_xfer_wcookie): Make static. | |
6152 | ||
227ee7fc RH |
6153 | 2012-03-22 Richard Henderson <[email protected]> |
6154 | ||
6155 | * jit.c (jit_read_code_entry): Compute alignment and offset of | |
6156 | int64_t member before computing entry_size. | |
6157 | ||
7b282c5a SCR |
6158 | 2012-03-22 Siva Chandra Reddy <[email protected]> |
6159 | ||
6160 | Python scripting: Add new method Value.referenced_value to | |
6161 | gdb.Value which can dereference pointer as well as reference | |
6162 | values. | |
6163 | * NEWS: Add entry under 'Python scripting' about the new method | |
6164 | Value.referenced_value on gdb.Value objects. | |
6165 | * python/py-value.c (valpy_referenced_value): New function | |
6166 | defining a new method on gdb.Value objects which can dereference | |
6167 | pointer and reference values. | |
6168 | ||
0c83539f SCR |
6169 | 2012-03-22 Siva Chandra Reddy <[email protected]> |
6170 | ||
6171 | * MAINTAINERS (Write After Approval): Add myself to the list. | |
6172 | ||
7ccffd7c KB |
6173 | 2012-03-21 Kevin Buettner <[email protected]> |
6174 | ||
6175 | * symtab.c (skip_prologue_sal): Change test to check for "main()" | |
6176 | in addition to "main". | |
6177 | ||
bd0b9f9e JB |
6178 | 2012-03-21 Joel Brobecker <[email protected]> |
6179 | ||
6180 | * expression.h (op_name): Add declaration. | |
6181 | * expprint.c (op_name): Remove declaration. Make non-static. | |
6182 | * ax-gdb.c (gen_expr): Use op_name instead of op_string. | |
6183 | ||
a5362b9a TS |
6184 | 2012-03-21 Thomas Schwinge <[email protected]> |
6185 | ||
6186 | * amd64-linux-nat.c (amd64_linux_siginfo_fixup): Use siginfo_t instead | |
6187 | of struct siginfo. | |
6188 | * arm-linux-nat.c (arm_linux_stopped_data_address): Likewise. | |
6189 | * ia64-linux-nat.c (ia64_linux_stopped_data_address): Likewise. | |
6190 | * linux-nat.c (linux_nat_siginfo_fixup, siginfo_fixup) | |
6191 | (linux_xfer_siginfo, linux_nat_set_siginfo_fixup) | |
6192 | (linux_nat_get_siginfo): Likewise. | |
6193 | * linux-nat.h (struct lwp_info, linux_nat_set_siginfo_fixup) | |
6194 | (linux_nat_get_siginfo): Likewise. | |
6195 | * linux-tdep.c (linux_get_siginfo_type): Likewise. | |
6196 | * ppc-linux-nat.c (ppc_linux_stopped_data_address): Likewise. | |
6197 | * procfs.c (gdb_siginfo_t): Likewise. | |
6198 | ||
adcadaab MF |
6199 | 2012-03-21 Mike Frysinger <[email protected]> |
6200 | ||
6201 | * .gitignore: Ignore more files. | |
6202 | ||
e278ad5b PA |
6203 | 2012-03-20 Pedro Alves <[email protected]> |
6204 | ||
6205 | * remote.c (remote_start_remote): Clear `rs->starting_up' on early | |
6206 | returns. | |
6207 | ||
741e63d7 YQ |
6208 | 2012-03-20 Yao Qi <[email protected]> |
6209 | ||
6210 | * amd64-tdep.c (amd64_displaced_step_copy_insn): Complete missing "}" in | |
6211 | comment. | |
6212 | ||
b64f50a1 JK |
6213 | 2012-03-19 Jan Kratochvil <[email protected]> |
6214 | ||
6215 | Code cleanupp: Use cu_offset and sect_offset compile time type checking. | |
6216 | * dwarf2expr.c (add_piece, dwarf_get_base_type, execute_stack_op) | |
6217 | (ctx_no_dwarf_call, ctx_no_get_base_type): Use cu_offset and | |
6218 | sect_offset. | |
6219 | * dwarf2expr.h (cu_offset, sect_offset): New types. | |
6220 | (struct dwarf_expr_context_funcs) <dwarf_call> | |
6221 | (struct dwarf_expr_context_funcs) <get_base_type>: Use cu_offset and | |
6222 | sect_offset. | |
6223 | (struct dwarf_expr_context) <len>: Improve the comment. | |
6224 | (struct dwarf_expr_piece, ctx_no_dwarf_call, ctx_no_get_base_type): Use | |
6225 | cu_offset and sect_offset. | |
6226 | * dwarf2loc.c (per_cu_dwarf_call, dwarf_expr_dwarf_call) | |
6227 | (dwarf_expr_get_base_type, needs_frame_dwarf_call) | |
6228 | (dwarf2_compile_expr_to_ax, disassemble_dwarf_expression): Likewise. | |
6229 | * dwarf2loc.h: Include dwarf2expr.h. | |
6230 | (dwarf2_fetch_die_location_block, dwarf2_get_die_type): Use cu_offset | |
6231 | and sect_offset. | |
6232 | * dwarf2read.c (struct dwarf2_per_objfile) <debug_types_type_hash>: | |
6233 | Improve the comment. | |
6234 | (struct comp_unit_head, struct dwarf2_cu, struct dwarf2_per_cu_data) | |
6235 | (struct signatured_type, struct line_header, struct partial_die_info) | |
6236 | (struct die_info, find_partial_die, dwarf2_get_ref_die_offset) | |
6237 | (lookup_signatured_type_at_offset, dwarf2_find_containing_comp_unit) | |
6238 | (get_die_type_at_offset, create_cus_from_index) | |
6239 | (create_signatured_type_table_from_index, dw2_get_file_names) | |
6240 | (offset_in_cu_p, read_comp_unit_head, error_check_comp_unit_head) | |
6241 | (read_and_check_comp_unit_head, read_and_check_type_unit_head) | |
6242 | (create_debug_types_hash_table, process_psymtab_comp_unit) | |
6243 | (load_partial_comp_unit, create_all_comp_units) | |
6244 | (partial_die_parent_scope, partial_die_full_name, skip_one_die) | |
6245 | (load_full_comp_unit, dwarf2_physname, read_import_statement) | |
6246 | (inherit_abstract_dies, read_func_scope, read_call_site_scope) | |
6247 | (dwarf2_add_member_fn, process_enumeration_scope, read_module_type) | |
6248 | (read_typedef, die_hash, die_eq, read_full_die, dwarf2_read_abbrevs) | |
6249 | (load_partial_dies, read_partial_die, find_partial_die_in_comp_unit) | |
6250 | (find_partial_die, read_attribute_value, lookup_die_type) | |
6251 | (dump_die_shallow, store_in_ref_table): Use cu_offset and sect_offset. | |
6252 | (is_ref_attr): New function comment. | |
6253 | (dwarf2_get_ref_die_offset): New function comment, new variable retval. | |
6254 | Use cu_offset and sect_offset. | |
6255 | (follow_die_offset, follow_die_ref, dwarf2_fetch_die_location_block) | |
6256 | (dwarf2_get_die_type, follow_die_sig, lookup_signatured_type_at_offset) | |
6257 | (load_full_type_unit, read_signatured_type, per_cu_header_read_in) | |
6258 | (dwarf2_find_containing_comp_unit, struct dwarf2_offset_and_type) | |
6259 | (offset_and_type_hash, offset_and_type_eq, set_die_type) | |
6260 | (get_die_type_at_offset, partial_die_hash, partial_die_eq) | |
6261 | (write_one_signatured_type, write_psymtabs_to_index): Use cu_offset and | |
6262 | sect_offset. | |
6263 | ||
e97a38f7 JK |
6264 | 2012-03-19 Jan Kratochvil <[email protected]> |
6265 | ||
6266 | Code cleanup. | |
6267 | * python/py-auto-load.c (source_section_scripts): New variable back_to. | |
6268 | Turn fclose and xfree calls into make_cleanup_fclose and make_cleanup | |
6269 | with xfree. | |
6270 | (auto_load_objfile_script): Turn fclose into make_cleanup_fclose. | |
6271 | ||
8320cc4f JK |
6272 | 2012-03-19 Jan Kratochvil <[email protected]> |
6273 | ||
6274 | * NEWS: Describe new options --init-command=FILE, -ix and | |
6275 | --init-eval-command=COMMAND, -iex. | |
6276 | * main.c (struct cmdarg): New enum items CMDARG_INIT_FILE and | |
6277 | CMDARG_INIT_COMMAND. | |
6278 | (captured_main): New enum items OPT_IX and OPT_IEX. Add | |
6279 | "init-command", "init-eval-command", "ix" and "iex" to the variable | |
6280 | long_options. Handle OPT_IX and OPT_IEX. Process them from CMDARG_VEC. | |
6281 | New comment for CMDARG_FILE and CMDARG_COMMAND processing. | |
6282 | (print_gdb_help): Describe --init-command=FILE, -ix and | |
6283 | --init-eval-command=COMMAND, -iex. | |
6284 | ||
26743505 JK |
6285 | 2012-03-19 Jan Kratochvil <[email protected]> |
6286 | ||
6287 | Code cleanup. | |
6288 | * main.c (struct cmdarg): Move it here from main. Add more comments. | |
6289 | (cmdarg_s, VEC (cmdarg_s)): New. | |
6290 | (main): Move struct cmdarg from here. New variables cmdarg_vec and | |
6291 | cmdarg_p. Remove variables cmdsize and ncmd and their initialization. | |
6292 | Install cleanup for cmdarg_vec. Update filling for options 'x' and | |
6293 | 'X'. Replace cmdarg processing by cmdarg_vec processing. Remove xfree | |
6294 | of CMDARG. | |
6295 | ||
5ff5c7b4 TT |
6296 | 2012-03-19 Tom Tromey <[email protected]> |
6297 | ||
6298 | * gnu-v3-abi.c (gnuv3_print_vtable): Initialize 'result_vec'. | |
6299 | ||
ab260dad JK |
6300 | 2012-03-16 Jan Kratochvil <[email protected]> |
6301 | ||
6302 | PR symtab/13777 | |
6303 | * dwarf2read.c (process_full_comp_unit): Set LOCATIONS_VALID only for | |
6304 | GCC >=4.5. | |
6305 | ||
c366c1f0 TT |
6306 | 2012-03-16 Chris January <[email protected]> |
6307 | ||
6308 | * tui-tui.win.c (tui_resize_all): Use erase and clearok instead | |
6309 | of clear. | |
6310 | ||
e16edb45 TT |
6311 | 2012-03-16 Chris January <[email protected]> |
6312 | ||
6313 | * source.c (add_path): Use memmove instead of strcpy because the | |
6314 | strings overlap. | |
6315 | ||
53ba8333 JB |
6316 | 2012-03-16 Joel Brobecker <[email protected]> |
6317 | ||
6318 | * value.h (set_value_parent): Add declaration. | |
6319 | * value.c (set_value_parent): New function. | |
6320 | (value_address): If VALUE->PARENT is not NULL, then use it as | |
6321 | the base address instead of VALUE->LOCATION.address. | |
6322 | * ada-lang.c (ada_value_primitive_packed_val): Keep V's address | |
6323 | the same as OBJ's address. Adjust V's offset accordingly. | |
6324 | Set V's parent. | |
6325 | ||
481860b3 GB |
6326 | 2012-03-16 Gary Benson <[email protected]> |
6327 | ||
6328 | PR breakpoints/10738 | |
6329 | * dwarf2read.c (use_deprecated_index_sections): New global. | |
6330 | (struct partial_die_info): New member may_be_inlined. | |
6331 | (read_partial_die): Set may_be_inlined where appropriate. | |
6332 | (add_partial_subprogram): Add partial symbols for partial | |
6333 | DIEs that may be inlined. | |
6334 | (new_symbol_full): Add inlined subroutines to the current | |
6335 | scope. | |
6336 | (write_psymtabs_to_index): Bump version number. | |
6337 | (dwarf2_read_index): Read only version 6 indices unless | |
6338 | use_deprecated_index_sections is set. | |
6339 | * linespec.c (symbol_and_data_callback): New structure. | |
6340 | (iterate_inline_only): New function. | |
6341 | (iterate_over_all_matching_symtabs): New argument | |
6342 | "include_inline". If nonzero, also call the callback for | |
6343 | symbols representing inlined subroutines. | |
6344 | (lookup_prefix_sym): Pass extra argument to the above. | |
6345 | (find_function_symbols): Likewise. | |
6346 | (add_matching_symbols_to_info): Likewise. | |
6347 | * NEWS: Mention that GDB can now set breakpoints on inlined | |
6348 | functions. | |
6349 | ||
d0e7e15a PM |
6350 | 2012-03-16 Pierre Muller <[email protected]> |
6351 | ||
6352 | * p-typeprint.c (pascal_type_print_method_args): | |
6353 | Fix display of parameter of methods. | |
6354 | ||
3d354654 PM |
6355 | 2012-03-16 Pierre Muller <[email protected]> |
6356 | ||
6357 | * amd64-windows-nat.c (_initialize_amd64_windows_nat): | |
6358 | Add missing prototype. | |
6359 | ||
cafe75b0 JK |
6360 | 2012-03-16 Yao Qi <[email protected]> |
6361 | Jan Kratochvil <[email protected]> | |
6362 | ||
6363 | Fix false compilation warning. | |
6364 | * gnu-v3-abi.c (print_one_vtable): Initialize ADDR. | |
6365 | ||
25f8c692 JL |
6366 | 2012-03-15 Jonathan Larmour <[email protected]> |
6367 | Pedro Alves <[email protected]> | |
6368 | ||
6369 | * arm-tdep.c: Include "remote.h" and "features/arm-with-m-fpa-layout.c". | |
6370 | (arm_register_g_packet_guesses): New function. | |
6371 | (arm_gdbarch_init): Don't force a target description with | |
6372 | registers when the executable is detected as M-profile. Instead | |
6373 | set gdbarch->tdep->is_m. Register `g' packet guesses. | |
6374 | (_initialize_arm_tdep): Initialize the new target description. | |
6375 | * features/arm-with-m-fpa-layout.xml: New description. | |
6376 | * features/arm-with-m-fpa-layout.c: New, generated. | |
6377 | ||
35c63cd8 JB |
6378 | 2012-03-15 Joel Brobecker <[email protected]> |
6379 | ||
6380 | * breakpoint.c (breakpoint_xfer_memory): Add assertion. | |
6381 | Update function description. | |
6382 | (insert_bp_location): Do not wipe bl->target_info out. | |
6383 | * mem-break.c: #include "gdb_string.h". | |
6384 | (default_memory_insert_breakpoint): Do not call target_read_memory | |
6385 | with a pointer to the breakpoint's shadow_contents buffer. Use | |
6386 | a local buffer instead. | |
6387 | * m32r-tdep.c (m32r_memory_insert_breakpoint): Ditto. | |
6388 | ||
57651221 TT |
6389 | 2012-03-15 Tom Tromey <[email protected]> |
6390 | ||
6391 | * NEWS: Mention "info vtbl", not "info vtable". | |
6392 | * cp-support.c (info_vtbl_command): Fix comment. | |
6393 | (_initialize_cp_support): Fix text. | |
6394 | ||
410528f0 TT |
6395 | 2012-03-15 Tom Tromey <[email protected]> |
6396 | ||
6397 | * cp-valprint.c (cp_print_value_fields): Use | |
6398 | print_function_pointer_address for vtable slot. | |
6399 | ||
c4aeac85 TT |
6400 | 2012-03-15 Tom Tromey <[email protected]> |
6401 | ||
6402 | * gnu-v3-abi.c (struct value_and_voffset): New. | |
6403 | (hash_value_and_voffset, eq_value_and_voffset) | |
6404 | (compare_value_and_voffset, compute_vtable_size) | |
6405 | (print_one_vtable, gnuv3_print_vtable): New functions. | |
6406 | (init_gnuv3_ops): Initialize 'print_vtable' field. | |
6407 | * cp-support.c (info_vtbl_command): New function. | |
6408 | (_initialize_cp_support): Add "info vtbl". | |
6409 | * cp-abi.h (cplus_print_vtable): Declare. | |
6410 | (struct cp_abi_ops) <print_vtable>: New field. | |
6411 | * cp-abi.c (cplus_print_vtable): New function. | |
6412 | * NEWS: Update. | |
6413 | ||
95cbceff TT |
6414 | 2012-03-15 Tom Tromey <[email protected]> |
6415 | ||
6416 | * d-lang.c (d_language_defn) <la_iterate_over_symbols>: Set to | |
6417 | iterate_over_symbols. | |
6418 | ||
589b4a32 DE |
6419 | 2012-03-14 Doug Evans <[email protected]> |
6420 | ||
6421 | * dwarf2read.c (dwarf_stack_op_name): Add DW_OP_GNU_encoded_addr, | |
6422 | DW_OP_GNU_parameter_ref. | |
6423 | ||
e837f12a JK |
6424 | 2012-03-14 Jan Kratochvil <[email protected]> |
6425 | ||
6426 | Fix double prompt of 'interpreter-exec mi'. | |
6427 | * mi/mi-interp.c (mi_execute_command_input_handler): New prototype. | |
6428 | (mi_interpreter_resume): use it. | |
6429 | (mi_execute_command_input_handler): New function. | |
6430 | * mi/mi-main.c (mi_execute_command): Move prompt printing to | |
6431 | mi_execute_command_input_handler. | |
6432 | ||
ff1e4526 | 6433 | 2012-03-13 Josh Matthews <[email protected]> (tiny change) |
c381a3f6 JB |
6434 | |
6435 | * darwin-nat-info.c (_initialize_darwin_info_commands): Add | |
6436 | prototype. | |
6437 | (darwin_debug_port_info): Make static. | |
6438 | * darwin-nat.c (_initialize_darwin_inferior): Add prototype. | |
6439 | * machoread.c (_initialize_machoread): Add prototype. | |
6440 | * i386-darwin-nat.c (i386_darwin_dr_set, i386_darwin_dr_get) | |
6441 | (i386_darwin_set_control, i386_darwin_get_control) | |
6442 | i386_darwin_dr_set_addr, i386_darwin_get_addr) | |
6443 | i386_darwin_get_status, i386_darwin_get_control): | |
6444 | Comment out with HW_WATCHPOINT_NOT_YET_ENABLED macro. | |
6445 | ||
d8a5d6ee JB |
6446 | 2012-03-13 Joel Brobecker <[email protected]> |
6447 | ||
6448 | * ax-gdb.c (gen_usual_unary): Remove special handling of | |
6449 | enum and bool types. | |
6450 | ||
af381b8c JB |
6451 | 2012-03-13 Joel Brobecker <[email protected]> |
6452 | ||
6453 | * ax-gdb.c (gen_fetch): Add handling for TYPE_CODE_RANGE types. | |
6454 | ||
786c562f JB |
6455 | 2012-03-13 Joel Brobecker <[email protected]> |
6456 | ||
6457 | * aix-thread.c (supply_fprs): Make more consistent with fill_fprs. | |
6458 | ||
e3ebf1bb JB |
6459 | 2012-03-13 Chris January <[email protected]> |
6460 | ||
6461 | * aix-thread.c (fill_sprs): Store the floating point registers | |
6462 | at the correct offsets into vals. | |
6463 | ||
c5b7e1cb DE |
6464 | 2012-03-13 Doug Evans <[email protected]> |
6465 | ||
16899756 DE |
6466 | * NEWS: Mention symbol-reloading has been deleted. |
6467 | * symfile.c (symbol_reloading): Delete. | |
6468 | (show_symbol_reloading): Delete. | |
6469 | (_initialize_symfile): Delete set/show symbol-reloading. | |
6470 | ||
c5b7e1cb DE |
6471 | * dwarf2read.c (load_partial_comp_unit): Defer adding cu to |
6472 | read_in_chain until we have successfully read it in. | |
6473 | (load_full_comp_unit): Ditto. | |
6474 | (read_signatured_type): Add comment. | |
6475 | ||
46cb6474 JB |
6476 | 2012-03-13 Chris January <[email protected]> |
6477 | ||
6478 | * stabsread.c (fix_common_block): Change type of valu argument | |
6479 | to CORE_ADDR. | |
6480 | ||
76219d77 JB |
6481 | 2012-03-13 Chris January <[email protected]> |
6482 | ||
6483 | * rs6000-tdep.c (skip_prologue): Support the oril r29, r1, 0x0 | |
6484 | instruction. | |
6485 | ||
87b0bb13 JK |
6486 | 2012-03-13 Jan Kratochvil <[email protected]> |
6487 | ||
6488 | * common/linux-procfs.c (linux_proc_get_int): New, from | |
6489 | linux_proc_get_tgid, change its LWPID type to pid_t, add parameter | |
6490 | field. | |
6491 | (linux_proc_get_tgid): Only call linux_proc_get_int. | |
6492 | (linux_proc_get_tracerpid): New. | |
6493 | (linux_proc_pid_has_state): New, from linux_proc_pid_is_zombie. | |
6494 | (linux_proc_pid_is_stopped, linux_proc_pid_is_zombie): Only call | |
6495 | linux_proc_pid_has_state. | |
6496 | * common/linux-procfs.h (linux_proc_get_tracerpid): New declaration. | |
6497 | * common/linux-ptrace.c: Include linux-procfs.h and buffer.h. | |
6498 | (linux_ptrace_attach_warnings): New. | |
6499 | * common/linux-ptrace.h (struct buffer, linux_ptrace_attach_warnings): | |
6500 | New declaration. | |
6501 | * linux-nat.c: Include exceptions.h, linux-ptrace.h and buffer.h. | |
6502 | (linux_nat_attach): New variables ex, buffer, message and message_s. | |
6503 | Wrap to_attach by TRY_CATCH and call linux_ptrace_attach_warnings. | |
6504 | ||
5f572dec JK |
6505 | 2012-03-13 Jan Kratochvil <[email protected]> |
6506 | ||
6507 | * Makefile.in (linux-ptrace.o): New. | |
6508 | * common/linux-procfs.c (linux_proc_pid_is_zombie): New, | |
6509 | from linux-nat.c. | |
6510 | * common/linux-procfs.h (linux_proc_pid_is_zombie): New declaration. | |
6511 | * common/linux-ptrace.c: New file. | |
6512 | * config/alpha/alpha-linux.mh (NATDEPFILES): Add linux-ptrace.o. | |
6513 | * config/arm/linux.mh: Likewise. | |
6514 | * config/i386/linux.mh: Likewise. | |
6515 | * config/i386/linux64.mh: Likewise. | |
6516 | * config/ia64/linux.mh: Likewise. | |
6517 | * config/m32r/linux.mh: Likewise. | |
6518 | * config/m68k/linux.mh: Likewise. | |
6519 | * config/mips/linux.mh: Likewise. | |
6520 | * config/pa/linux.mh: Likewise. | |
6521 | * config/powerpc/linux.mh: Likewise. | |
6522 | * config/powerpc/ppc64-linux.mh: Likewise. | |
6523 | * config/powerpc/spu-linux.mh: Likewise. | |
6524 | * config/s390/s390.mh: Likewise. | |
6525 | * config/sparc/linux.mh: Likewise. | |
6526 | * config/sparc/linux64.mh: Likewise. | |
6527 | * config/xtensa/linux.mh: Likewise. | |
6528 | * linux-nat.c (linux_lwp_is_zombie): Remove, move it to | |
6529 | common/linux-procfs.c. | |
6530 | (wait_lwp): Rename linux_lwp_is_zombie to linux_proc_pid_is_zombie. | |
6531 | ||
44f238bb PA |
6532 | 2012-03-13 Hui Zhu <[email protected]> |
6533 | Pedro Alves <[email protected]> | |
6534 | ||
6535 | * breakpoint.c (init_breakpoint_sal): New flags parameter. Handle | |
6536 | CREATE_BREAKPOINT_FLAGS_INSERTED. | |
6537 | (create_breakpoint_sal, create_breakpoints_sal) | |
6538 | (base_breakpoint_create_breakpoints_sal) | |
6539 | (tracepoint_create_breakpoints_sal) | |
6540 | (strace_marker_create_breakpoints_sal): New flags parameter. Pass | |
6541 | down. | |
6542 | (break_command_1, handle_gnu_v3_exceptions, trace_command) | |
6543 | (ftrace_command, strace_command): Adjust. | |
6544 | (create_tracepoint_from_upload): Pass | |
6545 | CREATE_BREAKPOINT_FLAGS_INSERTED. | |
6546 | * breakpoint.h (enum breakpoint_create_flags): New. | |
6547 | (create_breakpoint): New flags parameter. | |
6548 | * mi/mi-cmd-break.c (mi_cmd_break_insert): Adjust. | |
6549 | * python/py-breakpoint.c (bppy_init): Adjust. | |
6550 | * python/py-finishbreakpoint.c (bpfinishpy_init): Adjust. | |
6551 | * spu-tdep.c (spu_catch_start): Adjust. | |
6552 | ||
1e51243a PA |
6553 | 2012-03-13 Pedro Alves <[email protected]> |
6554 | Hui Zhu <[email protected]> | |
6555 | Yao Qi <[email protected]> | |
6556 | ||
6557 | * remote.c (struct remote_state): New field `starting_up'. | |
6558 | (remote_start_remote): Set and clear it. | |
6559 | (remote_can_download_tracepoint): If starting up, return false. | |
6560 | ||
fa3064dd YQ |
6561 | 2012-03-13 Yao Qi <[email protected]> |
6562 | ||
6563 | * inferior.h (struct inferior): Remove fields any_syscall_count, | |
6564 | syscalls_counts and total_syscalls_count. Move them to new | |
6565 | struct catch_syscall_inferior_data in breakpoint.c. | |
6566 | * breakpoint.c: Call DEF_VEC_I(int). | |
6567 | (struct catch_syscall_inferior_data): New. | |
6568 | (get_catch_syscall_inferior_data): New. | |
6569 | (catch_syscall_inferior_data_cleanup): New. | |
6570 | (insert_catch_syscall): Update to access data in | |
6571 | struct catch_syscall_inferior_data. | |
6572 | (insert_catch_syscall): Likewise. | |
6573 | (remove_catch_syscall): Likewise. | |
6574 | (remove_catch_syscall): Likewise. | |
6575 | (is_syscall_catchpoint_enabled): Likewise. | |
6576 | (add_catch_command): Likewise. | |
6577 | (_initialize_breakpoint): Register cleanup. | |
6578 | * breakpoint.h: Removed DEF_VEC_I(int). | |
6579 | * dwarf2loc.c: Call DEF_VEC_I(int). | |
6580 | * mi/mi-main.c: Likewise. | |
6581 | ||
460fac3c MK |
6582 | 2012-03-12 Mark Kettenis <[email protected]> |
6583 | ||
6584 | * inf-ptrace.c (inf_ptrace_post_attach): Make static. | |
6585 | ||
e1aca11e JB |
6586 | 2012-03-12 Chris January <[email protected]> |
6587 | ||
6588 | * aix-thread.c (_initialize_aix_thread): Add prototype. | |
6589 | * rs6000-nat.c (_initialize_rs6000_nat): Ditto. | |
6590 | * xcoffsolib.c (_initialize_xcoffsolib): Ditto. | |
6591 | ||
649c7061 JB |
6592 | 2012-03-12 Joel Brobecker <[email protected]> |
6593 | ||
6594 | * amd64bsd-nat.c: Move #include of "amd64bsd-nat.h" after | |
6595 | include of "amd64-nat.h". | |
6596 | ||
0b49e518 TT |
6597 | 2012-03-12 Tom Tromey <[email protected]> |
6598 | ||
6599 | * buildsym.c (record_pending_block): Now static. | |
6600 | * buildsym.h: (record_pending_block): Remove. | |
6601 | ||
fd24fa94 AT |
6602 | 2012-03-12 Andreas Tobler <[email protected]> |
6603 | ||
6604 | * amd64bsd-nat.c: Include amd64bsd-nat.h. | |
6605 | ||
ba919b58 TT |
6606 | 2012-03-09 Tom Tromey <[email protected]> |
6607 | ||
6608 | * dwarf2read.c (struct dwarf2_cu) <checked_producer, | |
6609 | producer_is_gxx_lt_4_6>: New fields. | |
6610 | (producer_is_gxx_lt_4_6): Use and update producer cache fields. | |
6611 | ||
a48e046c TT |
6612 | 2012-03-09 Tom Tromey <[email protected]> |
6613 | ||
6614 | * dwarf2read.c (dwarf2_attr): Avoid tail-recursive call. | |
6615 | ||
6f5e9362 JB |
6616 | 2012-03-08 Joel Brobecker <[email protected]> |
6617 | ||
6618 | * ravenscar-sparc-thread.c (_initialize_ravenscar_sparc): Add | |
6619 | prototype. | |
6620 | ||
8d037db9 JB |
6621 | 2012-03-08 Joel Brobecker <[email protected]> |
6622 | ||
6623 | * ravenscar-thread.c (_initialize_ravenscar): Add prototype. | |
6624 | ||
4e841acf JK |
6625 | 2012-03-08 Jan Kratochvil <[email protected]> |
6626 | ||
6627 | Fix -Wmissing-prototypes build. | |
6628 | * arm-linux-nat.c (get_thread_id): Make it static. | |
6629 | * xtensa-linux-nat.c (get_thread_id): Likewise. | |
6630 | ||
c6030312 JB |
6631 | 2012-03-08 Joel Brobecker <[email protected]> |
6632 | ||
6633 | * server.c (process_point_options): If a conditional expression | |
6634 | is found, only print a message if remote_debug is nonzero. | |
6635 | ||
52323be9 LM |
6636 | 2012-03-08 Luis Machado <[email protected]> |
6637 | ||
6638 | * ax-gdb.c (gen_fetch): Fail gracefully and use error instead | |
6639 | of internal error for unknown/unsupported types. | |
6640 | ||
7fe25d9b JK |
6641 | 2012-03-08 Jan Kratochvil <[email protected]> |
6642 | ||
6643 | Fix CU relative vs. absolute DIE offsets. | |
6644 | * dwarf2loc.h (dwarf2_fetch_die_location_block): Rename parameter | |
6645 | offset to offset_in_cu. | |
6646 | * dwarf2read.c (process_enumeration_scope): Add CU offset to | |
6647 | TYPE_OFFSET. | |
6648 | (dwarf2_fetch_die_location_block): Rename parameter offset to | |
6649 | offset_in_cu. New variable offset, add CU offset to OFFSET_IN_CU. | |
6650 | ||
05e7c244 JK |
6651 | 2012-03-08 Jan Kratochvil <[email protected]> |
6652 | ||
6653 | * libunwind-frame.c: Rename to ... | |
6654 | * ia64-libunwind-tdep.c: ... here. | |
6655 | * libunwind-frame.h: Rename to ... | |
6656 | * ia64-libunwind-tdep.h: ... here. | |
6657 | * Makefile.in (HFILES_NO_SRCDIR): Rename libunwind-frame.h to | |
6658 | ia64-libunwind-tdep.h. | |
6659 | (ALLDEPFILES): Rename libunwind-frame.c to ia64-libunwind-tdep.c. | |
6660 | * README (--with-libunwind): Rename to ... | |
6661 | (--with-libunwind-ia64): ... here, note it is ia64 specific now. | |
6662 | * config.in: Regenerate. | |
6663 | * configure: Regenerate. | |
6664 | * configure.ac: New option --with-libunwind-ia64, make the | |
6665 | AS_HELP_STRING ia64 specific. Deprecate option --with-libunwind. | |
6666 | Remove AC_DEFINE for HAVE_LIBUNWIND. | |
6667 | * ia64-libunwind-tdep.c: Make the file top comment ia64 specific. | |
6668 | Rename libunwind-frame.h #include to ia64-libunwind-tdep.h. | |
6669 | Rename libunwind-frame in the general comment. | |
6670 | * ia64-libunwind-tdep.h: Make the file top comment ia64 specific. | |
6671 | Rename symbol LIBUNWIND_FRAME_H to IA64_TDEP_LIBUNWIND_FRAME_H. | |
6672 | Move forward declarations inside #ifndef. Rename libunwind-frame in | |
6673 | the general comment. | |
6674 | * ia64-tdep.c: Rename libunwind-frame.h #include to | |
6675 | ia64-libunwind-tdep.h. | |
6676 | (ia64_gdb2uw_regnum, ia64_uw2gdb_regnum, ia64_is_fpreg) | |
6677 | (ia64_libunwind_descr): Rename libunwind-frame to | |
6678 | ia64-libunwind-tdep in these function comments. | |
6679 | * ia64-tdep.h: Rename libunwind-frame.h #include to | |
6680 | ia64-libunwind-tdep.h. | |
6681 | * ia64-vms-tdep.c (ia64_vms_libunwind_descr): Rename libunwind-frame to | |
6682 | ia64-libunwind-tdep in that data comment. | |
6683 | ||
3755cbfd JK |
6684 | 2012-03-08 Jan Kratochvil <[email protected]> |
6685 | ||
6686 | * libunwind-frame.h (struct frame_unwind): New declaration. | |
6687 | ||
d1cda5d9 JB |
6688 | 2012-03-08 Joel Brobecker <[email protected]> |
6689 | ||
6690 | * breakpoint.c (_initialize_breakpoint): Fix error in help of | |
6691 | "set breakpoint condition-evaluation" command. | |
6692 | ||
a0ba0aa2 TG |
6693 | 2012-03-08 Tristan Gingold <[email protected]> |
6694 | ||
6695 | * sparc-stub.c: Move to stubs/ | |
6696 | * sh-stub.c: Likewise. | |
6697 | * m68k-stub.c: Likewise. | |
6698 | * m32r-stub.c: Likewise. | |
6699 | * i386-stub.c: Likewise. | |
6700 | ||
7b8b6d6d AS |
6701 | 2012-03-08 Andreas Schwab <[email protected]> |
6702 | ||
007cafee AS |
6703 | * m68klinux-tdep.c (m68k_linux_init_abi): Register |
6704 | linux_get_siginfo_type. | |
6705 | ||
7b8b6d6d AS |
6706 | * m68klinux-nat.c: Include "gdb_proc_service.h". |
6707 | (PTRACE_GET_THREAD_AREA): Define. | |
6708 | (ps_get_thread_area): New function. | |
6709 | ||
bba74b36 YQ |
6710 | 2012-03-08 Yao Qi <[email protected]> |
6711 | ||
6712 | * remote.c (remote_get_noisy_reply): Replace `sprintf' with | |
6713 | `xsnprintf'. | |
6714 | (remote_query_attached): Likewise. | |
6715 | (remote_static_tracepoint_marker_at): Likewise. | |
6716 | (remote_set_permissions): Likewise. | |
6717 | (remote_detach_1, extended_remote_attach_1): Likewise. | |
6718 | (send_g_packet, remote_vkill): Likewise. | |
6719 | (extended_remote_disable_randomization): Likewise. | |
6720 | (remote_add_target_side_condition): Likewise. | |
6721 | (remote_insert_breakpoint): Likewise. | |
6722 | (remote_remove_breakpoint): Likewise. | |
6723 | (remote_insert_watchpoint): Likewise. | |
6724 | (remote_remove_watchpoint): Likewise. | |
6725 | (remote_insert_hw_breakpoint): Likewise. | |
6726 | (remote_insert_hw_breakpoint): Likewise. | |
6727 | (remote_remove_hw_breakpoint): Likewise. | |
6728 | (remote_download_command_source): Likewise. | |
6729 | (remote_download_tracepoint): Likewise. | |
6730 | (remote_download_trace_state_variable): Likewise. | |
6731 | (remote_disable_tracepoint): Likewise. | |
6732 | (remote_trace_set_readonly_regions): Likewise. | |
6733 | (remote_get_tracepoint_status): Likewise. | |
6734 | (remote_trace_find): Likewise. | |
6735 | (remote_get_trace_state_variable_value): Likewise. | |
6736 | (remote_set_disconnected_tracing): Likewise. | |
6737 | (remote_set_circular_trace_buffer): Likewise. | |
6738 | (remote_get_min_fast_tracepoint_insn_len): Likewise. | |
6739 | (remote_use_agent): Likewise. | |
6740 | (remote_add_target_side_condition): Add one parameter BUF_SIZE. | |
6741 | Update callers. | |
6742 | ||
9b224c5e PA |
6743 | 2012-03-07 Pedro Alves <[email protected]> |
6744 | ||
6745 | * NEWS: Mention QProgramSignals. | |
6746 | * inferior.h (update_signals_program_target): Declare. | |
6747 | * infrun.c: (update_signals_program_target): New. | |
6748 | (handle_command): Update the target of the new program signals | |
6749 | array changes. | |
6750 | * remote.c (PACKET_QProgramSignals): New enum. | |
6751 | (last_program_signals_packet): New global. | |
6752 | (remote_program_signals): New. | |
6753 | (remote_start_remote): Update the target with the program signals | |
6754 | list. | |
6755 | (remote_protocol_features): Add entry for QPassSignals. | |
6756 | (remote_open_1): Free anc clear last_program_signals_packet. | |
6757 | (init_remote_ops): Install remote_program_signals. | |
6758 | * target.c (update_current_target): Adjust. | |
6759 | (target_program_signals): New. | |
6760 | * target.h (struct target_ops) <to_program_signals>: New field. | |
6761 | (target_program_signals): Declare. | |
6762 | ||
74c48cbb PA |
6763 | 2012-03-07 Pedro Alves <[email protected]> |
6764 | ||
6765 | * NEWS: Add subtitle for new z0/z1 conditional breakpoint | |
6766 | extensions. | |
6767 | ||
0c13fc49 AS |
6768 | 2012-03-07 Andreas Schwab <[email protected]> |
6769 | ||
6770 | * m68klinux-nat.c (getregs_supplies): Make static. | |
6771 | (getfpregs_supplies): Likewise. | |
6772 | (have_ptrace_getregs): Likewise. | |
6773 | ||
1281d2a3 JB |
6774 | 2012-03-06 Joel Brobecker <[email protected]> |
6775 | ||
6776 | * dwarf2read.c (dwarf2_get_die_type): Pass absolute offset | |
6777 | in call to get_die_type_at_offset. | |
6778 | ||
2b03b41d SS |
6779 | 2012-03-06 Stan Shebs <[email protected]> |
6780 | ||
6781 | * mi/mi-cmd-break.c: Enforce coding standards, fix comments. | |
6782 | * mi/mi-cmd-disas.c: Ditto. | |
6783 | * mi/mi-cmd-env.c: Ditto. | |
6784 | * mi/mi-cmd-file.c: Ditto. | |
6785 | * mi/mi-cmd-stack.c: Ditto. | |
6786 | * mi/mi-cmd-target.c: Ditto. | |
6787 | * mi/mi-cmd-var.c: Ditto. | |
6788 | * mi/mi-cmds.c: Ditto. | |
6789 | * mi/mi-cmds.h: Ditto. | |
6790 | * mi/mi-console.c: Ditto. | |
6791 | * mi/mi-getopt.c: Ditto. | |
6792 | * mi/mi-getopt.h: Ditto. | |
6793 | * mi/mi-interp.c: Ditto. | |
6794 | * mi/mi-main.c: Ditto. | |
6795 | * mi/mi-out.c: Ditto. | |
6796 | * mi/mi-parse.c: Ditto. | |
6797 | * mi/mi-parse.h: Ditto. | |
6798 | * mi/mi-symbol-cmds.c: Ditto. | |
6799 | ||
6800 | * mi/mi-getopt.h: Move mi_opt struct up. | |
6801 | * mi/mi-main.c (captured_mi_execute_command): Remove redundant | |
6802 | return. | |
6803 | * mi/mi-out.c (_initialize_mi_out): Remove empty initialize. | |
6804 | ||
c988ad87 TT |
6805 | 2012-03-06 Tom Tromey <[email protected]> |
6806 | ||
6807 | * proc-service.c (ps_pglobal_lookup): Set the current program | |
6808 | space. | |
6809 | ||
1b7c1b10 PA |
6810 | 2012-03-06 Pedro Alves <[email protected]> |
6811 | ||
6812 | * gregset.h [HAVE_SYS_PROCFS_H]: Include <sys/procfs.h>. | |
6813 | ||
3c182069 JB |
6814 | 2012-03-05 Joel Brobecker <[email protected]> |
6815 | ||
6816 | * MAINTAINERS: List Maciej W. Rozycki as the mips maintainer. | |
6817 | ||
2e794194 JK |
6818 | 2012-03-05 Jan Kratochvil <[email protected]> |
6819 | ||
6820 | Code cleanup. | |
6821 | * common/linux-osdata.c (linux_common_core_of_thread): New function | |
6822 | comment. | |
6823 | * linux-nat.c (linux_nat_wait_1): Replace linux_nat_core_of_thread_1 | |
6824 | call by linux_common_core_of_thread. | |
6825 | (linux_nat_core_of_thread_1): Remove. | |
6826 | * linux-nat.h (linux_nat_core_of_thread_1): Remove declaration. | |
6827 | * linux-thread-db.c: Include linux-osdata.h. | |
6828 | (update_thread_core): Replace linux_nat_core_of_thread_1 call by | |
6829 | linux_common_core_of_thread. | |
6830 | ||
9f9f1f31 TT |
6831 | 2012-03-05 Tom Tromey <[email protected]> |
6832 | ||
6833 | * value.c (value_primitive_field): Don't fetch contents for | |
6834 | non-virtual bases. | |
6835 | ||
b7b189f3 TT |
6836 | 2012-03-05 Tom Tromey <[email protected]> |
6837 | ||
6838 | * jv-valprint.c (java_value_print): Correctly compute 'obj_addr'. | |
6839 | ||
05b8a789 | 6840 | 2012-03-05 Andreas Arnez <[email protected]> |
5538f557 | 6841 | |
5538f557 JB |
6842 | * s390-nat.c: Include "gregset.h". |
6843 | ||
75528772 JK |
6844 | 2012-03-05 Jan Kratochvil <[email protected]> |
6845 | ||
6846 | * libunwind-frame.c (LIBUNWIND_SO): Change .7 to .8. | |
6847 | [!LIBUNWIND_SO] (LIBUNWIND_SO_7): New #define. | |
6848 | (libunwind_load): New variable so_error, use it for dlerror. Try to | |
6849 | load also LIBUNWIND_SO_7. | |
6850 | ||
275418ae PA |
6851 | 2012-03-05 Pedro Alves <[email protected]> |
6852 | ||
6853 | * i387-tdep.c (i387_supply_xsave): Assert the xsave section buffer | |
6854 | is not NULL, and remove resulting dead code. | |
6855 | ||
5cbb9812 TS |
6856 | 2012-03-05 Thomas Schwinge <[email protected]> |
6857 | ||
6858 | * sh-tdep.c (sh_skip_prologue): Provide an upper limit on the function | |
6859 | prologue to sh_analyze_prologue. | |
6860 | (sh_analyze_prologue): Make better use of such an upper limit, and | |
6861 | generally be more cautious about accessing memory. | |
6862 | ||
541515ad TT |
6863 | 2012-03-05 Tom Tromey <[email protected]> |
6864 | ||
6865 | * ia64-vms-tdep.c (_initialize_ia64_vms_tdep): Rename from | |
6866 | _initialize_ia64_hpux_tdep. | |
6867 | ||
b4d36fb8 PA |
6868 | 2012-03-05 Pedro Alves <[email protected]> |
6869 | ||
24490249 PA |
6870 | PR gdb/13766 |
6871 | ||
b4d36fb8 PA |
6872 | * i387-tdep.c (i387_supply_xsave): If we have an xsave buffer, and |
6873 | the register state is clear, supply explicit zero, instead of | |
6874 | marking the register unavailable. | |
6875 | ||
60c9a3c0 TG |
6876 | 2012-03-05 Tristan Gingold <[email protected]> |
6877 | ||
6878 | * NEWS: Mention OpenVMS ia64 new target. | |
6879 | ||
696759ad TG |
6880 | 2012-03-05 Tristan Gingold <[email protected]> |
6881 | ||
6882 | * ia64-tdep.h: Include libunwind-frame.h and libunwind-ia64.h. | |
6883 | (ia64_unw_accessors, ia64_unw_rse_accessors) | |
6884 | (ia64_libunwind_descr): Declare. | |
6885 | * ia64-vms-tdep.c: New file. | |
6886 | * ia64-tdep.c (ia64_unw_accessors, ia64_unw_rse_accessors) | |
6887 | (ia64_libunwind_descr): Make them public. | |
6888 | * configure.tgt: Add ia64-*-*vms*. | |
6889 | * Makefile.in (ALL_64_TARGET_OBS): Add ia64-vms-tdep.o | |
6890 | (ALLDEPFILES): Add ia64-vms-tdep.c | |
6891 | ||
34864976 TG |
6892 | 2012-03-05 Tristan Gingold <[email protected]> |
6893 | ||
169081d0 TG |
6894 | * target.h (target_object): Add TARGET_OBJECT_OPENVMS_UIB. |
6895 | * remote.c (PACKET_qXfer_uib): New enum value. | |
6896 | (remote_protocol_features): Add entry for PACKET_qXfer_uib. | |
6897 | (remote_xfer_partial): Handle TARGET_OBJECT_OPENVMS_UIB. | |
6898 | (_initialize_remote): Call add_packet_config_cmd for | |
6899 | xfer:uib packet. | |
6900 | ||
6901 | 2012-03-05 Tristan Gingold <[email protected]> | |
6902 | ||
6903 | * osabi.c (gdb_osabi_names): Add OpenVMS. | |
6904 | (generic_elf_osabi_sniffer): Likewise. | |
6905 | * defs.h (gdb_osabi): Add GDB_OSABI_OPENVMS. | |
34864976 | 6906 | |
6597b100 JK |
6907 | 2012-03-04 Jan Kratochvil <[email protected]> |
6908 | ||
6909 | Removed unused code. | |
6910 | * libunwind-frame.c (libunwind_frame_unwind) | |
6911 | (libunwind_frame_base_address): Remove. | |
6912 | * libunwind-frame.h (libunwind_frame_base_address): Remove declaration. | |
6913 | ||
87399aa1 YQ |
6914 | 2012-03-04 Yao Qi <[email protected]> |
6915 | ||
6916 | * common/agent.c (gdb_connect_sync_socket): Add _ markup and | |
6917 | remove trailing new line. | |
6918 | (agent_run_command, agent_run_command): Add _ markup. | |
6919 | (agent_capability_check): Likewise. | |
6920 | ||
abf1152a JK |
6921 | 2012-03-03 Jan Kratochvil <[email protected]> |
6922 | ||
6923 | * breakpoint.c (set_condition_evaluation_mode): Set | |
6924 | CONDITION_EVALUATION_MODE unconditionally. | |
6925 | ||
5808517f YQ |
6926 | 2012-03-03 Yao Qi <[email protected]> |
6927 | ||
6928 | * common/agent.c (agent_look_up_symbols): Add one parameter 'arg'. | |
6929 | * common/agent.h: Update declaration. | |
6930 | * inf-child.c (inf_child_use_agent): New. | |
6931 | (inf_child_can_use_agent): New. | |
6932 | (inf_child_target): Initialize fields `to_use_agent' | |
6933 | and `to_can_use_agent'. | |
6934 | * agent.c (agent_new_objfile): New. | |
89b7509a | 6935 | (_initialize_agent): Add agent_new_objfile to new_objfile |
5808517f YQ |
6936 | observer. |
6937 | ||
6938 | * linux-nat.c (linux_child_static_tracepoint_markers_by_strid): | |
6939 | New. | |
89b7509a | 6940 | (linux_target_install_ops): Initialize field |
5808517f YQ |
6941 | `to_static_tracepoint_markers_by_strid'. |
6942 | * remote.c (free_current_marker): Move it to ... | |
6943 | * tracepoint.c (free_current_marker): ... here. New. | |
6944 | (cleanup_target_stop): New. | |
6945 | * tracepoint.h: Declare free_current_marker. | |
6946 | * NEWS: Add one entry about `info static-tracepoint-marker'. | |
6947 | ||
58b4daa5 YQ |
6948 | 2012-03-03 Yao Qi <[email protected]> |
6949 | ||
6950 | * common/agent.c (agent_loaded_p): New. | |
89b7509a | 6951 | (agent_look_up_symbols): New global. |
58b4daa5 YQ |
6952 | * common/agent.h: Declare agent_loaded_p. |
6953 | ||
8ffcbaaf YQ |
6954 | 2012-03-03 Yao Qi <[email protected]> |
6955 | ||
6956 | * common/agent.c (struct ipa_sym_addresses) <addr_capability>: New. | |
6957 | (agent_capability_check, agent_capability_invalidate): New. | |
6958 | (symbol_list): New array element. | |
6959 | * common/agent.h (enum agent_capa): New. | |
6960 | * target.c (target_pre_inferior): Call agent_capability_invalidate. | |
6961 | ||
d1feda86 YQ |
6962 | 2012-03-03 Yao Qi <[email protected]> |
6963 | ||
6964 | * target.h (struct target_ops) <to_use_agent>: New field. | |
6965 | (struct target_ops) <to_can_use_agent>: New field. | |
6966 | (target_use_agent, target_can_use_agent): New macro. | |
6967 | * target.c (update_current_target): Update. | |
6968 | * remote.c: New enum `PACKET_QAgent'. | |
6969 | (remote_protocol_features): Add a new element. | |
6970 | (remote_use_agent, remote_can_use_agent): New. | |
6971 | (init_remote_ops): Initialize field `can_use_agent' with | |
6972 | remote_can_use_agent. Intiailize field `use_agent' with | |
6973 | remote_use_agent. | |
6974 | * common/agent.c (use_agent): New global. | |
6975 | * common/agent.h: Declare it. | |
6976 | * tracepoint.c (info_static_tracepoint_markers_command): Add | |
6977 | comment. | |
6978 | * Makefile.in (SFILES): Add common/agent.c and agent.c. | |
6979 | (COMMON_OBS): Add common/agent.o and agent.o | |
6980 | (common-agent.o): New rule. | |
6981 | * agent.c: New. | |
6982 | ||
2fa291ac YQ |
6983 | 2012-03-03 Yao Qi <[email protected]> |
6984 | ||
6985 | * common/agent.c: New. | |
6986 | * common/agent.h: New. | |
6987 | * configure.ac: Add `sys/socket.h' and `sys/un.h' to | |
6988 | AC_CHECK_HEADERS. | |
6989 | * configure, configh.in: Regenerated. | |
6990 | ||
9fc05685 KB |
6991 | 2012-03-02 Kevin Buettner <[email protected]> |
6992 | ||
6993 | * sh-tdep.c (sh_frame_cache): Don't fetch the FPSCR register | |
6994 | unless it exists for this architecture. | |
6995 | ||
a5ee536b JB |
6996 | 2012-03-02 Joel Brobecker <[email protected]> |
6997 | ||
6998 | * language.h (struct language_defn): New "method" la_read_var_value. | |
6999 | * findvar.c: #include "language.h". | |
7000 | (default_read_var_value): Renames read_var_value. Rewrite | |
7001 | function description. | |
7002 | (read_var_value): New function. | |
7003 | * value.h (default_read_var_value): Add prototype. | |
7004 | * ada-lang.c (ada_read_renaming_var_value, ada_read_var_value): | |
7005 | New functions. | |
7006 | (ada_language_defn): Add entry for la_read_var_value. | |
7007 | * c-lang.c, d-lang.c, f-lang.c, jv-lang.c, language.c, | |
7008 | * m2-lang.c, objc-lang.c, opencl-lang.c, p-lang.c: Update | |
7009 | language_defn structures to add entry for new la_read_var_value | |
7010 | field. | |
7011 | ||
f59f708a PA |
7012 | 2012-03-02 Tom Tromey <[email protected]> |
7013 | Pedro Alves <[email protected]> | |
7014 | ||
7015 | PR breakpoints/13776: | |
7016 | * breakpoint.c (breakpoint_init_inferior): Delete step-resume | |
7017 | breakpoints. | |
7018 | (delete_longjmp_breakpoint_at_next_stop): New. | |
7019 | * breakpoint.h (delete_longjmp_breakpoint_at_next_stop): Declare. | |
7020 | * target.c (generic_mourn_inferior): Call mark_breakpoints_out | |
7021 | before deleting the inferior. Add comments. | |
7022 | * thread.c (clear_thread_inferior_resources): Don't delete lonjmp | |
7023 | breakpoints immediately, but only on next stop. Move that code | |
7024 | next to where we mark other breakpoints for deletion. | |
7025 | ||
44099a67 JB |
7026 | 2012-03-02 Joel Brobecker <[email protected]> |
7027 | ||
7028 | * mips-linux-nat.c (mips_linux_read_description): Add missing i18n | |
7029 | marker. | |
7030 | * mips-tdep.c (mips_linux_reg_names): Improve comment to avoid ARI | |
7031 | violation. | |
7032 | ||
2a2ef594 PA |
7033 | 2012-03-02 Pedro Alves <[email protected]> |
7034 | ||
7035 | * linux-thread-db.c (attach_thread): Avoid in_thread_list call. | |
7036 | ||
b261e0c5 UW |
7037 | 2012-03-02 Ulrich Weigand <[email protected]> |
7038 | ||
7039 | Fix -Wmissing-prototypes build. | |
7040 | * ppc-linux-nat.c (ppc_linux_get_hwcap): Make static. | |
7041 | * remote-sim.c (gdbsim_has_all_memory): Likewise. | |
7042 | (gdbsim_has_memory): Likewise. | |
7043 | ||
a95babbf YQ |
7044 | 2012-03-02 Yao Qi <[email protected]> |
7045 | ||
7046 | Fix -Wmissing-prototypes build. | |
7047 | * charset.c (phony_iconv_open): Make static. | |
7048 | (phony_iconv_close, phony_iconv): Likewise. | |
7049 | * i386-linux-nat.c (_initialize_i386_linux_nat): New prototype. | |
7050 | * i386-windows-nat.c (_initialize_i386_windows_nat): New | |
7051 | prototype. | |
7052 | * mingw-hdep.c (_initialize_mingw_hdep): New prototype. | |
7053 | * ser-mingw.c (create_select_thread): Make static. | |
7054 | * windows-termcap.c (tgetent): New prototype. | |
7055 | (tgetnum, tgetflag, tgetstr, tputs, tgoto): Likewise. | |
7056 | ||
d603d4b3 JK |
7057 | 2012-03-02 Zhang Yuanhui <[email protected]> |
7058 | ||
7059 | Fix -Wmissing-prototypes build. | |
7060 | * windows-nat.c (dll_symbol_command, ctrl_c_handler): Make them static. | |
7061 | (_initialize_windows_nat, _initialize_check_for_gdb_ini) | |
7062 | (_initialize_loadable): New prototypes. | |
7063 | ||
7fb3ad1f DE |
7064 | 2012-03-02 Doug Evans <[email protected]> |
7065 | ||
7066 | * dwarf2read.c (load_full_comp_unit): Remove unnecessary reading of | |
7067 | abbrev table, read_comp_unit will do it. | |
7068 | ||
693be288 JK |
7069 | 2012-03-02 Jan Kratochvil <[email protected]> |
7070 | ||
7071 | Fix -Wmissing-prototypes build. | |
7072 | * alpha-tdep.c (alpha_deal_with_atomic_sequence): Make it static. | |
7073 | * amd64-darwin-tdep.c (_initialize_amd64_darwin_tdep): New prototype. | |
7074 | * amd64-windows-tdep.c (_initialize_amd64_windows_tdep): Likewise. | |
7075 | * arm-symbian-tdep.c (arm_symbian_skip_trampoline_code): Make it static. | |
7076 | (_initialize_arm_symbian_tdep): New prototype. | |
7077 | * arm-wince-tdep.c (arm_wince_skip_main_prologue): Make it static. | |
7078 | * i386-darwin-tdep.c (_initialize_i386_darwin_tdep): New prototype. | |
7079 | * i386-linux-tdep.c (i386_linux_displaced_step_copy_insn): Make it | |
7080 | static. | |
7081 | * lm32-tdep.c (_initialize_lm32_tdep): New prototype. | |
7082 | * microblaze-linux-tdep.c (_initialize_microblaze_linux_tdep): New | |
7083 | prototype. | |
7084 | * microblaze-tdep.c (microblaze_debug, microblaze_fetch_instruction) | |
7085 | (microblaze_skip_prologue, microblaze_frame_cache): Make them static. | |
7086 | * mips-linux-tdep.c (mips_linux_regset_from_core_section): Make it | |
7087 | static. | |
7088 | * moxie-tdep.c (moxie_process_record): Likewise. | |
7089 | * remote-mips.c (mips_can_use_watchpoint, mips_insert_watchpoint) | |
7090 | (mips_remove_watchpoint, mips_stopped_by_watchpoint): Make them static. | |
7091 | * rl78-tdep.c (rl78_breakpoint_from_pc): Make it static. | |
7092 | (_initialize_rl78_tdep): New prototype. | |
7093 | * rx-tdep.c (rx_breakpoint_from_pc): Make it static. | |
7094 | (_initialize_rx_tdep): New prototype. | |
7095 | * solib-darwin.c (darwin_in_dynsym_resolve_code): Make it static. | |
7096 | (_initialize_darwin_solib): New prototype. | |
7097 | * solib-spu.c: Include solib-spu.h. | |
7098 | (_initialize_spu_solib): New prototype. | |
7099 | * spu-multiarch.c (_initialize_spu_multiarch): New prototype. | |
7100 | * tic6x-tdep.c (tic6x_analyze_prologue, tic6x_skip_prologue) | |
7101 | (tic6x_breakpoint_from_pc, tic6x_frame_unwind_cache) | |
7102 | (tic6x_software_single_step): Make it static. | |
7103 | (_initialize_tic6x_tdep): New prototype. | |
7104 | ||
638234e5 JK |
7105 | 2012-03-02 Jan Kratochvil <[email protected]> |
7106 | ||
7107 | Fix -Wmissing-prototypes build. | |
7108 | * cris-tdep.c (cris_can_use_hardware_watchpoint) | |
7109 | (cris_region_ok_for_watchpoint, cris_stopped_data_address): Remove. | |
7110 | ||
f4a6f16d JK |
7111 | 2012-03-01 Jan Kratochvil <[email protected]> |
7112 | ||
7113 | Fix -Wmissing-prototypes build. | |
7114 | * frv-tdep.c (frv_check_watch_resources, frv_stopped_data_address) | |
7115 | (frv_have_stopped_data_address): Remove. | |
7116 | ||
04dcf5fa JK |
7117 | 2012-03-01 Jan Kratochvil <[email protected]> |
7118 | ||
7119 | Fix -Wmissing-prototypes build. | |
7120 | * Makefile.in (HFILES_NO_SRCDIR): Add sh64-tdep.h. | |
7121 | * sh-tdep.c: Include sh64-tdep.h. | |
7122 | * sh-tdep.h (sh64_gdbarch_init, sh64_show_regs): Remove declarations. | |
7123 | * sh64-tdep.c: Include sh64-tdep.h. | |
7124 | * sh64-tdep.h: New file. | |
7125 | ||
19080931 MR |
7126 | 2012-03-01 Maciej W. Rozycki <[email protected]> |
7127 | ||
7128 | * mips-tdep.c (mips32_scan_prologue): Correct indentation. | |
7129 | ||
9aac7884 MR |
7130 | 2012-03-01 Maciej W. Rozycki <[email protected]> |
7131 | ||
7132 | * mips-tdep.c (mips_gdbarch_init): Only set pc_regnum and | |
7133 | sp_regnum once the gdbarch_init_osabi hook has been called. | |
7134 | ||
a385295e MR |
7135 | 2012-03-01 Maciej W. Rozycki <[email protected]> |
7136 | ||
7137 | * mips-tdep.c (mips32_bc1_pc): New function. | |
7138 | (mips32_next_pc): Handle BC1ANY2F, BC1ANY2T, BC1ANY4F, BC1ANY4T, | |
7139 | BPOSGE32 and BPOSGE64 instructions. | |
7140 | (deal_with_atomic_sequence): Likewise. | |
7141 | (mips32_instruction_has_delay_slot): Likewise. | |
7142 | ||
1faeff08 | 7143 | 2012-03-01 Maciej W. Rozycki <[email protected]> |
a09130f9 PA |
7144 | Chris Dearman <[email protected]> |
7145 | Maciej W. Rozycki <[email protected]> | |
7146 | Joseph Myers <[email protected]> | |
1faeff08 MR |
7147 | |
7148 | * features/mips-dsp.xml: New file. | |
7149 | * features/mips64-dsp.xml: New file. | |
7150 | * features/mips-dsp-linux.xml: New file. | |
7151 | * features/mips64-dsp-linux.xml: New file. | |
7152 | * features/Makefile (WHICH): Add mips-dsp-linux and | |
7153 | mips64-dsp-linux. | |
7154 | (mips-dsp-expedite, mips64-dsp-expedite): New variables. | |
7155 | * features/mips-dsp-linux.c: New file. | |
7156 | * features/mips64-dsp-linux.c: New file. | |
7157 | * regformats/mips-dsp-linux.dat: New file. | |
7158 | * regformats/mips64-dsp-linux.dat: New file. | |
7159 | * mips-linux-nat.c (mips_linux_register_addr): Handle DSP | |
7160 | registers. | |
7161 | (mips64_linux_register_addr): Likewise. | |
7162 | (mips64_linux_regsets_fetch_registers): Likewise. | |
7163 | (mips64_linux_regsets_store_registers): Likewise. | |
7164 | (mips64_linux_fetch_registers): Update call to | |
7165 | mips64_linux_regsets_fetch_registers. | |
7166 | (mips64_linux_store_registers): Update call to | |
7167 | mips64_linux_regsets_store_registers. | |
7168 | (mips_linux_read_description): Probe for DSP registers. | |
7169 | (_initialize_mips_linux_nat): Call initialize_tdesc_mips_dsp_linux | |
7170 | and initialize_tdesc_mips64_dsp_linux. | |
7171 | * mips-linux-tdep.c (supply_gregset, mips64_supply_gregset): | |
7172 | Remove padding of no longer used embedded register slots. | |
7173 | * mips-linux-tdep.h (DSP_BASE, DSP_CONTROL): New macros. | |
7174 | (MIPS_RESTART_REGNUM): Redefine enum value. | |
7175 | * mips-tdep.c (mips_generic_reg_names): Remove trailing null | |
7176 | strings. | |
7177 | (mips_tx39_reg_names): Likewise. | |
7178 | (mips_linux_reg_names): New array of register names for Linux | |
7179 | targets. | |
7180 | (mips_register_name): Check for a null pointer in | |
7181 | mips_processor_reg_names and return an empty string. | |
7182 | (mips_register_type): Exclude embedded registers for the IRIX | |
7183 | and Linux ABIs. | |
7184 | (mips_pseudo_register_type): Likewise. Use dynamic numbers to | |
7185 | refer to FP registers, LO, HI, BadVAddr, Cause and PC. Handle | |
7186 | DSP registers. | |
7187 | (mips_stab_reg_to_regnum): Handle DSP accumulators. | |
7188 | (mips_dwarf_dwarf2_ecoff_reg_to_regnum): Likewise. | |
7189 | (mips_gdbarch_init): Likewise. Initialize internal register | |
7190 | indices for the Linux ABI. Use dynamic numbers to refer to | |
7191 | registers, as applicable, while parsing the target description. | |
7192 | * mips-tdep.h (struct mips_regnum): Add dspacc/dspctl offsets. | |
7193 | ||
263689d8 JB |
7194 | 2012-03-01 Joel Brobecker <[email protected]> |
7195 | ||
7196 | * frame.h (read_frame_register_unsigned): Fix typo in function | |
7197 | description. | |
7198 | ||
f3b4f45c PA |
7199 | 2012-03-01 Pedro Alves <[email protected]> |
7200 | ||
7201 | * jit-reader.in [!__cplusplus] | |
7202 | (GDB_DECLARE_GPL_COMPATIBLE_READER): Add missing backslash. | |
7203 | ||
b03a2011 PA |
7204 | 2012-03-01 Pedro Alves <[email protected]> |
7205 | ||
7206 | * configure.ac (build_warnings): Add -Wmissing-prototypes. | |
7207 | * configure: Regenerate. | |
7208 | ||
70221824 PA |
7209 | 2012-03-01 Pedro Alves <[email protected]> |
7210 | ||
7211 | * amd64-linux-tdep.c (amd64_linux_record_signal): Make static. | |
7212 | * breakpoint.c (create_exception_master_breakpoint, trace_command) | |
7213 | (ftrace_command, strace_command): Make static. | |
7214 | * d-lang.c (_initialize_d_language): Declare. | |
7215 | * dwarf2expr.c (_initialize_dwarf2expr): Declare. | |
7216 | * dwarf2loc.c (_initialize_dwarf2loc): | |
7217 | * dwarf2read.c (process_psymtab_comp_unit): Make static. | |
7218 | * exec.c (exec_get_section_table): Make static. | |
7219 | * i386-linux-tdep.c (i386_linux_record_signal): Make static. | |
7220 | * infcmd.c (ensure_valid_thread, ensure_not_tfind_mode): Make static. | |
7221 | * inferior.c (remove_inferior_command, add_inferior_command) | |
7222 | (clone_inferior_command): Make static. | |
7223 | * linux-nat.c (linux_nat_thread_address_space) | |
7224 | (linux_nat_core_of_thread): Make static. | |
7225 | * linux-tdep.c (_initialize_linux_tdep): Declare. | |
7226 | * objc-lang.c (_initialize_objc_lang): Declare. | |
7227 | * opencl-lang.c (builtin_opencl_type, opencl_language_arch_info): | |
7228 | Make static. | |
7229 | (_initialize_opencl_language): Declare. | |
7230 | * record.c (_initialize_record): Declare. | |
7231 | * remote.c (demand_private_info, remote_get_tib_address) | |
7232 | (remote_supports_cond_tracepoints) | |
7233 | (remote_supports_fast_tracepoints, remote_get_tracepoint_status): | |
7234 | Make static. | |
7235 | * skip.c (_initialize_step_skip): Declare. | |
7236 | * symtab.c (skip_prologue_using_lineinfo): Make static. | |
7237 | * tracepoint.c (delete_trace_state_variable) | |
7238 | (trace_variable_command, delete_trace_variable_command) | |
7239 | (get_uploaded_tsv, find_matching_tracepoint_location) | |
7240 | (find_matching_tsv, create_tsv_from_upload, get_traceframe_info): | |
7241 | Make static. | |
7242 | * value.c (pack_unsigned_long): Make static. | |
7243 | * varobj.c (varobj_ensure_python_env): Make static. | |
7244 | * windows-tdep.c (_initialize_windows_tdep): Declare. | |
7245 | * xml-syscall.c (make_cleanup_free_syscalls_info): Make static. | |
7246 | ||
33fbcbee PA |
7247 | 2012-03-01 Pedro Alves <[email protected]> |
7248 | ||
7249 | * linux-tdep.c (linux_has_shared_address_space): Make static. Add | |
7250 | gdbarch parameter. | |
7251 | (linux_init_abi): Install it as has_shared_address_space gdbarch | |
7252 | callback. | |
7253 | ||
44d0cd3b PA |
7254 | 2012-03-01 Pedro Alves <[email protected]> |
7255 | ||
7256 | * observer.c (observer_test_first_notification_function) | |
7257 | (observer_test_second_notification_function) | |
7258 | (observer_test_third_notification_function): Add declarations. | |
7259 | ||
ed01b82c PA |
7260 | 2012-03-01 Pedro Alves <[email protected]> |
7261 | ||
7262 | * common/signals.c (default_target_signal_to_host) | |
7263 | (default_target_signal_from_host): Move ... | |
7264 | * arch-utils.c: ... here. | |
7265 | * arch-utils.h (default_target_signal_to_host) | |
7266 | (default_target_signal_from_host): Declare. | |
7267 | ||
7268 | * common/signals.c (target_signal_from_command): Move ... | |
7269 | * infrun.c: ... here. | |
7270 | * inferior.h (target_signal_from_command): Declare. | |
7271 | * target.h (target_signal_from_command) | |
7272 | (default_target_signal_from_host, default_target_signal_to_host): | |
7273 | Delete declarations. | |
7274 | ||
7275 | * common/signals.c (_initialize_signals): Delete. | |
7276 | ||
c9b87335 PA |
7277 | 2012-03-01 Pedro Alves <[email protected]> |
7278 | ||
7279 | * jit-reader.in (plugin_is_GPL_compatible): Add declarations for | |
7280 | both __cplusplus and !__cplusplus. | |
7281 | ||
9340a6c0 PA |
7282 | 2012-03-01 Pedro Alves <[email protected]> |
7283 | ||
7284 | * psymtab.c (find_and_open_source): Delete declaration. | |
7285 | * source.c (find_and_open_source): Move comment ... | |
7286 | * source.h (find_and_open_source): ... to this new declaration. | |
7287 | ||
e451c4a1 PA |
7288 | 2012-03-01 Pedro Alves <[email protected]> |
7289 | ||
7290 | * inline-frame.c: Include inline-frame.h. | |
7291 | ||
983fb104 PA |
7292 | 2012-03-01 Pedro Alves <[email protected]> |
7293 | ||
7294 | * tui/tui-data.c (set_gen_win_origin): Delete. | |
7295 | * tui/tui-data.h (tui_set_gen_win_origin): Delete declaration. | |
7296 | * tui/tui-regs.c (tui_last_reg_element_no_in_line): Delete. | |
7297 | ||
5fbce5df PA |
7298 | 2012-03-01 Pedro Alves <[email protected]> |
7299 | ||
7300 | * remote.c (encode_actions): Delete declaration. | |
7301 | * tracepoint.c (encode_actions): Make extern. | |
7302 | * tracepoint.h (encode_actions): Declare. | |
7303 | ||
49a8461d PA |
7304 | 2012-03-01 Pedro Alves <[email protected]> |
7305 | ||
7306 | * python/py-breakpoint.c: Include python.h. | |
7307 | * python/py-continueevent.c (create_continue_event_object): Make | |
7308 | static. | |
7309 | * python/py-lazy-string.c (stpy_get_type): Make static. | |
7310 | * python/py-newobjfileevent.c (create_new_objfile_event_object): | |
7311 | Make static. | |
7312 | * python/py-utils.c (unicode_to_target_python_string): Make | |
7313 | static. | |
7314 | * python/py-value.c: Include python.h. | |
7315 | ||
9079102f PA |
7316 | 2012-03-01 Pedro Alves <[email protected]> |
7317 | ||
7318 | * inferior.c (delete_threads_of_inferior): Delete. | |
7319 | ||
a298c5e8 PA |
7320 | 2012-03-01 Pedro Alves <[email protected]> |
7321 | ||
7322 | Import fallback definitions from glibc. | |
7323 | ||
7324 | * gdb_proc_service.h [!HAVE_PROC_SERVICE_H] (struct | |
7325 | ps_prochandle): Forward declare. | |
7326 | (ps_err_e): Use glibc's comments. | |
7327 | [!HAVE_PROC_SERVICE_H] (ps_pdread, ps_pdwrite, ps_ptread) | |
7328 | (ps_ptwrite, ps_lgetregs, ps_lsetregs, ps_lgetfpregs) | |
7329 | (ps_lsetfpregs, ps_getpid, ps_get_thread_area, ps_pglobal_lookup) | |
7330 | (ps_pstop, ps_pcontinue, ps_lstop, ps_lcontinue, ps_lgetxregsize) | |
7331 | (ps_lgetxregs, ps_lsetxregs, ps_plog): Declare. | |
7332 | (struct ps_prochandle): Adjust comment. | |
7333 | ||
e3084549 PA |
7334 | 2012-03-01 Pedro Alves <[email protected]> |
7335 | ||
7336 | * ada-lang.c (ada_modulus_from_name): Delete. | |
7337 | * ada-lex.l (lexer_init): Make static. | |
7338 | ||
ad5f7d6e PA |
7339 | 2012-03-01 Pedro Alves <[email protected]> |
7340 | ||
7341 | PR gdb/13767 | |
7342 | ||
7343 | * frame.c (read_frame_register_unsigned): New. | |
7344 | * frame.h (read_frame_register_unsigned): Declare. | |
7345 | * i387-tdep.c (print_i387_status_word): New parameter `status_p'. | |
7346 | Handle it. | |
7347 | (print_i387_control_word): New parameter `control_p'. Handle it. | |
7348 | (i387_print_float_info): Handle unavailable float registers. | |
7349 | ||
e0a4d108 KS |
7350 | 2012-03-01 Keith Seitz <[email protected]> |
7351 | ||
7352 | * linespec.c (decode_line_2): Sort the list of methods | |
7353 | alphabetically before presenting the user with a selection | |
7354 | menu. | |
7355 | ||
122d1940 DE |
7356 | 2012-03-01 Doug Evans <[email protected]> |
7357 | ||
7358 | * dwarf2read.c (dwarf2_cu): Remove unused members has_form_ref_addr, | |
7359 | has_namespace_info. | |
7360 | (dwarf2_read_abbrevs): Remove corresponding initialization. | |
7361 | ||
7d74f244 DE |
7362 | 2012-03-01 Scott J. Goldman <[email protected]> |
7363 | ||
7364 | * NEWS: Mention new python command class gdb.COMMAND_USER. | |
7365 | * cli/cli-cmds.c (show_user): Print error when used on a python | |
7366 | command. | |
7367 | (init_cli_cmds): Update documentation strings for "show user" and | |
7368 | "set/show max-user-call-depth" to clarify that it does not apply to | |
7369 | python commands. | |
7370 | * python/py-cmd.c (cmdpy_init): Treat class_user as a valid class in | |
7371 | error check. | |
7372 | (gdbpy_initialize_commands): Add COMMAND_USER as a constant in | |
7373 | gdb python api. | |
7374 | * top.c (execute_command): Only execute a user-defined command as a | |
7375 | legacy macro if c->user_commands is set. | |
7376 | ||
e88acd96 TT |
7377 | 2012-03-01 Tom Tromey <[email protected]> |
7378 | ||
7379 | * valprint.h (struct generic_val_print_decorations): New. | |
7380 | (generic_val_print): Declare. | |
7381 | * valprint.c (generic_val_print): New function. | |
7382 | * p-valprint.c (p_decorations): New global. | |
7383 | (pascal_val_print) <TYPE_CODE_REF, TYPE_CODE_ENUM, | |
7384 | TYPE_CODE_FLAGS, TYPE_CODE_FUNC, TYPE_CODE_RANGE, TYPE_CODE_INT, | |
7385 | TYPE_CODE_FLT, TYPE_CODE_VOID, TYPE_CODE_ERROR, TYPE_CODE_UNDEF, | |
7386 | TYPE_CODE_BOOL, TYPE_CODE_CHAR>: Call generic_val_print. | |
7387 | * m2-valprint.c (m2_decorations): New global. | |
7388 | (m2_val_print) <TYPE_CODE_REF, TYPE_CODE_ENUM, TYPE_CODE_FUNC, | |
7389 | TYPE_CODE_BOOL, TYPE_CODE_RANGE, TYPE_CODE_INT, TYPE_CODE_CHAR, | |
7390 | TYPE_CODE_FLT, TYPE_CODE_METHOD, TYPE_CODE_VOID, TYPE_CODE_UNDEF, | |
7391 | TYPE_CODE_ERROR>: Call generic_val_print. | |
7392 | * f-valprint.c (f_decorations): New global. | |
7393 | (f_val_print): Use print_function_pointer_address. | |
7394 | <TYPE_CODE_REF, TYPE_CODE_FUNC, TYPE_CODE_CHAR, TYPE_CODE_FLAGS, | |
7395 | TYPE_CODE_FLT, TYPE_CODE_VOID, TYPE_CODE_ENUM, TYPE_CODE_RANGE, | |
7396 | TYPE_CODE_BOOL, TYPE_CODE_COMPLEX, TYPE_CODE_UNDEF>: Call | |
7397 | generic_val_print. | |
7398 | * c-valprint.c (c_decorations): New global. | |
7399 | (c_val_print) <TYPE_CODE_MEMBERPTR, TYPE_CODE_REF, TYPE_CODE_ENUM, | |
7400 | TYPE_CODE_FLAGS, TYPE_CODE_FUNC, TYPE_CODE_METHOD, TYPE_CODE_BOOL, | |
7401 | TYPE_CODE_RANGE, TYPE_CODE_CHAR, TYPE_CODE_FLT, | |
7402 | TYPE_CODE_DECFLOAT, TYPE_CODE_VOID, TYPE_CODE_ERROR, | |
7403 | TYPE_CODE_UNDEF, TYPE_CODE_COMPLEX>: Call generic_val_print. | |
7404 | * ada-valprint.c (ada_val_print_1) <TYPE_CODE_FLAGS>: Remove | |
7405 | case. | |
7406 | ||
d3eab38a TT |
7407 | 2012-03-01 Tom Tromey <[email protected]> |
7408 | ||
7409 | * valprint.c (val_print): Update. | |
7410 | * p-valprint (pascal_val_print): Return void. | |
7411 | * p-lang.h (pascal_val_print): Return void. | |
7412 | * m2-valprint.c (m2_val_print): Return void. | |
7413 | * m2-lang.h (m2_val_print): Return void. | |
7414 | * language.h (struct language_defn) <la_val_print>: Return void. | |
7415 | * language.c (unk_lang_val_print): Return void. | |
7416 | * jv-valprint.c (java_val_print): Return void. | |
7417 | * jv-lang.h (java_val_print): Return void. | |
7418 | * f-valprint.c (f_val_print): Return void. | |
7419 | * f-lang.h (f_val_print): Return void. | |
7420 | * d-valprint.c (d_val_print): Return void. | |
7421 | (dynamic_array_type): Update. | |
7422 | * d-lang.h (d_val_print): Return void. | |
7423 | * c-valprint.c (c_val_print): Return void. | |
7424 | * c-lang.h (c_val_print): Return void. | |
7425 | * ada-valprint.c (ada_vada_val_print, ada_val_print_1): Return | |
7426 | void. | |
7427 | * ada-lang.h (ada_val_print): Return void. | |
7428 | ||
35c0084b TT |
7429 | 2012-03-01 Tom Tromey <[email protected]> |
7430 | ||
7431 | * value.h (val_print): Return void. | |
7432 | * valprint.c (val_print): Return void. | |
7433 | ||
a1f5dd1b TT |
7434 | 2012-03-01 Tom Tromey <[email protected]> |
7435 | ||
7436 | * value.h (common_val_print): Return void. | |
7437 | * valprint.c (common_val_print): Return void. | |
7438 | ||
8e069a98 TT |
7439 | 2012-03-01 Tom Tromey <[email protected]> |
7440 | ||
7441 | * value.h (value_print): Return void. | |
7442 | * valprint.c (value_print): Return void. | |
7443 | * p-valprint.c (pascal_value_print): Return void. | |
7444 | * p-lang.h (pascal_value_print): Return void. | |
7445 | * language.h (struct language_defn) <la_value_print>: Return | |
7446 | void. | |
7447 | * language.c (unk_lang_value_print): Return void. | |
7448 | * jv-valprint.c (java_value_print): Return void. | |
7449 | * jv-lang.h (java_value_print): Return void. | |
7450 | * f-valprint.c (c_value_print): Don't declare. | |
7451 | Include c-lang.h. | |
7452 | * c-valprint.c (c_value_print): Return void. | |
7453 | * c-lang.h (c_value_print): Return void. | |
7454 | * ada-valprint.c (ada_value_print): Return void. | |
7455 | * ada-lang.h (ada_value_print): Return void. | |
7456 | ||
be335936 TT |
7457 | 2012-03-01 Tom Tromey <[email protected]> |
7458 | ||
7459 | * value.c (value_primitive_field): Handle virtual base classes. | |
7460 | ||
b0db66a7 TT |
7461 | 2012-03-01 Tom Tromey <[email protected]> |
7462 | ||
7463 | * gdbtypes.h (struct vbase): Remove. | |
7464 | ||
132c57b4 TT |
7465 | 2012-03-01 Tom Tromey <[email protected]> |
7466 | ||
7467 | * c-valprint.c (print_function_pointer_address): Move... | |
7468 | * valprint.c: ... here. Make non-static. | |
7469 | * m2-valprint.c (print_function_pointer_address): Remove. | |
7470 | * valprint.h (print_function_pointer_address): Declare. | |
7471 | ||
e41eec66 JB |
7472 | 2012-03-01 Joel Brobecker <[email protected]> |
7473 | ||
7474 | * NEWS: Document the fact that one can provide a condition when | |
7475 | creating an Ada exception catchpoint. | |
7476 | ||
19c37f24 TT |
7477 | 2012-03-01 Tom Tromey <[email protected]> |
7478 | ||
7479 | * valprint.c (val_print_type_code_flags): Fix placement of | |
7480 | trailing brace. | |
7481 | ||
f0fed3a3 JB |
7482 | 2012-03-01 Joel Brobecker <[email protected]> |
7483 | ||
7484 | * copyright.py (MULTILINE_COMMENT_PREFIXES): Delete. | |
7485 | (update_files): Do not set MULTILINE_COMMENT_PREFIXES | |
7486 | environment variable before calling update-copyright. | |
7487 | ||
8ba85d85 JB |
7488 | 2012-03-01 Joel Brobecker <[email protected]> |
7489 | ||
7490 | * gnulib/extra/update-copyright: Update to the latest from | |
7491 | gnulib's git repository. | |
7492 | * copyright.py: Set UPDATE_COPYRIGHT_USE_INTERVALS environment | |
7493 | variable to 2 instead of 1. | |
7494 | ||
8219b1e8 JB |
7495 | 2012-02-29 Joel Brobecker <[email protected]> |
7496 | ||
7497 | * varobj.c (c_value_of_variable): Remove dead code. | |
7498 | ||
718cb7da JB |
7499 | 2012-02-29 Joel Brobecker <[email protected]> |
7500 | ||
7501 | * ada-lex.p (processId): Do not modify already encoded IDs. | |
7502 | Update function documentation. | |
7503 | ||
739593e0 JB |
7504 | 2012-02-29 Joel Brobecker <[email protected]> |
7505 | ||
7506 | * ada-lang.h (ada_find_renaming_symbol): Replace parameter | |
7507 | "name" with "struct symbol *name_sym". | |
7508 | * ada-exp.y (write_var_or_type): Update call to | |
7509 | ada_find_renaming_symbol. | |
7510 | "name" with "struct symbol *name_sym". Adjust Implementation | |
7511 | accordingly. Adjust the function documentation. | |
7512 | ||
852dff6c JB |
7513 | 2012-02-29 Joel Brobecker <[email protected]> |
7514 | ||
7515 | * ada-lang.h (ada_find_any_symbol, ada_find_any_type): Delete. | |
7516 | * ada-lang.c (ada_find_any_type): Add advance declaration. | |
7517 | Make static. Replace ada_find_any_symbol by | |
7518 | ada_find_any_type_symbol. | |
7519 | (ada_find_any_type_symbol): Renames ada_find_any_symbol. | |
7520 | Improve function description. Make static. | |
7521 | (ada_find_renaming_symbol, find_old_style_renaming_symbol): | |
7522 | Replace ada_find_any_symbol by ada_find_any_type_symbol. | |
7523 | ||
1b611343 JB |
7524 | 2012-02-29 Joel Brobecker <[email protected]> |
7525 | ||
7526 | * ada-lang.c (struct tag_args): Delete. | |
7527 | (ada_get_tsd_type): Function body moved up in source file. | |
7528 | (ada_tag_name_1, ada_tag_name_2): Delete. | |
7529 | (ada_get_tsd_from_tag): New function. | |
7530 | (ada_tag_name_from_tsd): New function. | |
7531 | (ada_tag_name): Use a TRY_CATCH block instead of catch_errors | |
7532 | to determine the tag name. | |
7533 | ||
41246937 JB |
7534 | 2012-02-29 Joel Brobecker <[email protected]> |
7535 | ||
7536 | * ada-lang.h (ada_get_decoded_value, ada_get_decoded_type): Add | |
7537 | declaration. | |
7538 | * ada-lang.c (ada_get_decoded_value, ada_get_decoded_type): New | |
7539 | function. | |
7540 | ||
ffde82bf JB |
7541 | 2012-02-29 Joel Brobecker <[email protected]> |
7542 | ||
7543 | * ada-lang.c (ada_is_ignored_field): Rewrite wrong comment. | |
7544 | ||
2ad01556 JB |
7545 | 2012-02-29 Joel Brobecker <[email protected]> |
7546 | ||
7547 | * ada-lang.c (ada_lookup_symbol_list): Only cache the result of | |
7548 | full searches. | |
7549 | ||
99b1c762 JB |
7550 | 2012-02-29 Joel Brobecker <[email protected]> |
7551 | ||
7552 | * ada-lang.c (constrained_packed_array_type): If there is a | |
7553 | parallel XA type, use it to determine the array index type. | |
7554 | ||
2d4a02ee JB |
7555 | 2012-02-29 Joel Brobecker <[email protected]> |
7556 | ||
7557 | * ada-valprint.c (ada_val_print_1): If our value is a reference | |
7558 | to an array descriptor, dereference it before converting it | |
7559 | to a simple array. | |
7560 | ||
c48db5ca JB |
7561 | 2012-02-29 Joel Brobecker <[email protected]> |
7562 | ||
7563 | * ada-lang.c (ada_to_fixed_value): Call unwrap_value before | |
7564 | creating fixed value. | |
7565 | (ada_value_ind, ada_coerce_ref, assign_component) | |
7566 | (ada_evaluate_subexp): Remove call to unwrap_value before | |
7567 | call to ada_to_fixed_value. | |
7568 | ||
2e6fda7d JB |
7569 | 2012-02-29 Joel Brobecker <[email protected]> |
7570 | ||
7571 | * ada-lang.c (to_fixed_array_type): Set result's type name. | |
7572 | ||
5845583d JB |
7573 | 2012-02-29 Joel Brobecker <[email protected]> |
7574 | ||
7575 | * ada-lang.c (catch_ada_exception_command_split): Add new | |
7576 | argument cond_string. Add support for condition at end of | |
7577 | "catch exception" commands. | |
7578 | (ada_decode_exception_location): Add new argument cond_string. | |
7579 | Update call to catch_ada_exception_command_split. | |
7580 | (create_ada_exception_catchpoint): Add new argument cond_string. | |
7581 | Set the breakpoint condition if needed. | |
7582 | (catch_ada_exception_command): Update call to | |
7583 | ada_decode_exception_location. | |
7584 | (ada_decode_assert_location): Add function documentation. | |
7585 | Add support for condition at end of "catch assert" command. | |
7586 | (catch_assert_command): Update calls to ada_decode_assert_location | |
7587 | and create_ada_exception_catchpoint. | |
7588 | ||
9a7f938f JK |
7589 | 2012-02-29 Jan Kratochvil <[email protected]> |
7590 | ||
7591 | Fix disp-step-syscall.exp: fork: single step over fork. | |
7592 | * i386-linux-tdep.c (-i386_linux_get_syscall_number): Rename to ... | |
7593 | (i386_linux_get_syscall_number_from_regcache): ... here, new function | |
7594 | comment, change parameters gdbarch and ptid to regcache. Remove | |
7595 | parameter regcache, initialize gdbarch from regcache here. | |
7596 | (i386_linux_get_syscall_number, i386_linux_displaced_step_copy_insn): | |
7597 | New functions. | |
7598 | (i386_linux_init_abi): Install i386_linux_displaced_step_copy_insn | |
7599 | instead. | |
7600 | * i386-tdep.c (i386_syscall_p): Check also for 'sysenter' and | |
7601 | 'syscall'. Make the 'int' check more strict. | |
7602 | ||
ffdf6de5 JK |
7603 | 2012-02-29 Jan Kratochvil <[email protected]> |
7604 | ||
7605 | Fix reverse mode for syscall on AMD CPUs in 32-bit mode. | |
7606 | * i386-linux-tdep.c (i386_linux_intx80_sysenter_record): Rename to ... | |
7607 | (i386_linux_intx80_sysenter_syscall_record): ... here. | |
7608 | (i386_linux_init_abi): Initialize also I386_SYSCALL_RECORD. | |
7609 | Use the renamed function name. | |
7610 | ||
c70a6932 JK |
7611 | 2012-02-29 Jan Kratochvil <[email protected]> |
7612 | ||
7613 | * arm-linux-tdep.c (arm_linux_copy_svc): Reset stale FRAME. | |
7614 | * breakpoint.c (until_break_command): Likewise. | |
7615 | * elfread.c (elf_gnu_ifunc_resolver_stop): Likewise. | |
7616 | * infcall.c (call_function_by_hand): Likewise. | |
7617 | * infcmd.c (finish_forward): Likewise. | |
7618 | * infrun.c (insert_exception_resume_breakpoint): Likewise. | |
7619 | ||
05b8a789 | 7620 | 2012-02-28 Tristan Gingold <[email protected]> |
d4cd3da9 | 7621 | |
d4cd3da9 JB |
7622 | * ada-tasks.c (ada_tasks_inferior_data_sniffer): Rework code to |
7623 | avoid variable assignments inside condition. | |
7624 | ||
6425366c JK |
7625 | 2012-02-28 Jan Kratochvil <[email protected]> |
7626 | ||
7627 | Fix static analysis issue found by cppcheck. | |
7628 | * microblaze-tdep.c (microblaze_extract_return_value): Fix | |
7629 | uninitialized BUF for size 2. | |
7630 | ||
c8cef75f | 7631 | 2012-02-27 Chris Dearman <[email protected]> |
a09130f9 PA |
7632 | Nathan Froyd <[email protected]> |
7633 | Maciej W. Rozycki <[email protected]> | |
c8cef75f MR |
7634 | |
7635 | * mips-tdep.c (mips32_instruction_has_delay_slot): New function. | |
7636 | (mips16_instruction_has_delay_slot): Likewise. | |
7637 | (mips_segment_boundary): Likewise. | |
7638 | (mips_adjust_breakpoint_address): Likewise. | |
7639 | (mips_gdbarch_init): Use mips_adjust_breakpoint_address. | |
7640 | ||
473347ad | 7641 | 2012-02-27 Maciej W. Rozycki <[email protected]> |
a09130f9 | 7642 | Maciej W. Rozycki <[email protected]> |
473347ad MR |
7643 | |
7644 | * infrun.c (handle_inferior_event): Don't proceed through | |
7645 | shared library trampolines if stepping at the machine | |
7646 | instruction level. | |
7647 | ||
cf233303 MR |
7648 | 2012-02-27 Maciej W. Rozycki <[email protected]> |
7649 | ||
7650 | * mips-linux-tdep.c (mips_linux_init_abi): Set num_pseudo_regs | |
7651 | too. | |
7652 | ||
cb2cf4ce TS |
7653 | 2012-02-27 Thomas Schwinge <[email protected]> |
7654 | ||
7655 | * sh-tdep.c (sh_make_stub_cache, sh_stub_this_id) | |
7656 | (sh_stub_unwind_sniffer): New functions. | |
7657 | (sh_stub_unwind): New variable. | |
7658 | (sh_gdbarch_init): Wire everything. | |
7659 | ||
644cebc9 PA |
7660 | 2012-02-27 Pedro Alves <[email protected]> |
7661 | ||
7662 | * linux-nat.c (pid_is_stopped): Delete, moved to common/. | |
7663 | (linux_nat_post_attach_wait): Adjust to use | |
7664 | linux_proc_pid_is_stopped. | |
7665 | * common/linux-procfs.h (linux_proc_pid_is_stopped): Declare. | |
7666 | * common/linux-procfs.c (linux_proc_pid_is_stopped): New function, | |
7667 | based on pid_is_stopped from both linux-nat.c and | |
7668 | gdbserver/linux-low.c, and renamed. | |
7669 | ||
283002cf MR |
7670 | 2012-02-24 Maciej W. Rozycki <[email protected]> |
7671 | ||
7672 | * remote.c (remote_watchpoint_addr_within_range): New function. | |
7673 | (init_remote_ops): Use it. | |
7674 | ||
9b3e86b1 MR |
7675 | 2012-02-24 Maciej W. Rozycki <[email protected]> |
7676 | ||
7677 | * target.h (target_watchpoint_addr_within_range): Document macro. | |
7678 | ||
e36930bb PA |
7679 | 2012-02-24 Pedro Alves <[email protected]> |
7680 | ||
7681 | * stack.c (set_last_displayed_sal): Issue internal_error instead | |
7682 | of warning, and issue it after clearing the last displayed sal. | |
7683 | ||
883bc8d1 PA |
7684 | 2012-02-24 Jan Kratochvil <[email protected]> |
7685 | Pedro Alves <[email protected]> | |
7686 | ||
7687 | * breakpoint.c (until_break_command): Install breakpoints after | |
7688 | all frame manipulations. | |
7689 | ||
b775012e LM |
7690 | 2012-02-24 Luis Machado <[email protected]> |
7691 | ||
7692 | * remote.c (remote_supports_cond_breakpoints): New forward | |
7693 | declaration. | |
7694 | (remote_add_target_side_condition): New function. | |
7695 | (remote_insert_breakpoint): Add target-side breakpoint | |
7696 | conditional if supported. | |
7697 | (remote_insert_hw_breakpoint): Likewise. | |
7698 | (init_remote_ops): Set to_supports_evaluation_of_breakpoint_conditions | |
7699 | hook. | |
7700 | ||
7701 | * target.c (update_current_target): Inherit | |
7702 | to_supports_evaluation_of_breakpoint_conditions. | |
7703 | Default to_supports_evaluation_of_breakpoint_conditions to return_zero. | |
7704 | ||
7705 | * target.h (struct target_ops) | |
7706 | <to_supports_evaluation_of_breakpoint_conditions>: New field. | |
7707 | (target_supports_evaluation_of_breakpoint_conditions): New #define. | |
7708 | ||
7709 | * breakpoint.c (get_first_locp_gte_addr): New forward declaration. | |
7710 | (condition_evaluation_both, condition_evaluation_auto, | |
7711 | condition_evaluation_host, condition_evaluation_target, | |
7712 | condition_evaluation_enums, condition_evaluation_mode_1, | |
7713 | condition_evaluation_mode): New static globals. | |
7714 | (translate_condition_evaluation_mode): New function. | |
7715 | (breakpoint_condition_evaluation_mode): New function. | |
7716 | (gdb_evaluates_breakpoint_condition_p): New function. | |
7717 | (ALL_BP_LOCATIONS_AT_ADDR): New helper macro. | |
7718 | (mark_breakpoint_modified): New function. | |
7719 | (mark_breakpoint_location_modified): New function. | |
7720 | (set_condition_evaluation_mode): New function. | |
7721 | (show_condition_evaluation_mode): New function. | |
7722 | (bp_location_compare_addrs): New function. | |
7723 | (get_first_location_gte_addr): New helper function. | |
7724 | (set_breakpoint_condition): Free condition bytecode if locations | |
7725 | has become unconditional. Call mark_breakpoint_modified (...). | |
7726 | (condition_command): Call update_global_location_list (1) for | |
7727 | breakpoints. | |
7728 | (breakpoint_xfer_memory): Use is_breakpoint (...). | |
7729 | (is_breakpoint): New function. | |
7730 | (parse_cond_to_aexpr): New function. | |
7731 | (build_target_condition_list): New function. | |
7732 | (insert_bp_location): Handle target-side conditional | |
7733 | breakpoints and call build_target_condition_list (...). | |
7734 | (update_inserted_breakpoint_locations): New function. | |
7735 | (insert_breakpoint_locations): Handle target-side conditional | |
7736 | breakpoints. | |
7737 | (bpstat_check_breakpoint_conditions): Add comment. | |
7738 | (bp_condition_evaluator): New function. | |
7739 | (bp_location_condition_evaluator): New function. | |
7740 | (print_breakpoint_location): Print information on where the condition | |
7741 | will be evaluated. | |
7742 | (print_one_breakpoint_location): Likewise. | |
7743 | (init_bp_location): Call mark_breakpoint_location_modified (...) for | |
7744 | breakpoint location. | |
7745 | (force_breakpoint_reinsertion): New functions. | |
7746 | (update_global_location_list): Handle target-side breakpoint | |
7747 | conditions. | |
7748 | Reinsert locations that are already inserted if conditions have | |
7749 | changed. | |
7750 | (bp_location_dtor): Free agent expression bytecode. | |
7751 | (disable_breakpoint): Call mark_breakpoint_modified (...). | |
7752 | Call update_global_location_list (...) with parameter 1 for breakpoints. | |
7753 | (disable_command): Call mark_breakpoint_location_modified (...). | |
7754 | Call update_global_location_list (...) with parameter 1 for breakpoints. | |
7755 | (enable_breakpoint_disp): Call mark_breakpoint_modified (...). | |
7756 | (enable_command): mark_breakpoint_location_modified (...). | |
7757 | (_initialize_breakpoint): Update documentation and add | |
7758 | condition-evaluation breakpoint subcommand. | |
7759 | ||
7760 | * breakpoint.h: Include ax.h. | |
7761 | (condition_list): New data structure. | |
7762 | (condition_status): New enum. | |
7763 | (bp_target_info) <cond_list>: New field. | |
7764 | (bp_location) <condition_changed, cond_bytecode>: New fields. | |
7765 | (is_breakpoint): New prototype. | |
7766 | ||
3788aec7 LM |
7767 | 2012-02-24 Luis Machado <[email protected]> |
7768 | ||
7769 | * remote.c (remote_state) <cond_breakpoints>: New field. | |
7770 | (PACKET_ConditionalBreakpoints): New enum. | |
7771 | (remote_cond_breakpoint_feature): New function. | |
7772 | (remote_protocol_features): Add new ConditionalBreakpoints entry. | |
7773 | (remote_supports_cond_breakpoints): New function. | |
7774 | (_initialize_remote): Add new packet configuration for | |
7775 | target-side conditional breakpoints. | |
7776 | ||
72895ff6 LM |
7777 | 2012-02-24 Luis Machado <[email protected]> |
7778 | ||
7779 | * NEWS: Mention target-side conditional breakpoint support, | |
7780 | new condition-evaluation breakpoint subcommand and remote | |
7781 | packet extensions. | |
7782 | ||
dea2aa5f LM |
7783 | 2012-02-24 Luis Machado <[email protected]> |
7784 | ||
7785 | * breakpoint.c (bp_location_compare): Sort by pspace before sorting by | |
7786 | number. | |
7787 | ||
8a8bc27f TS |
7788 | 2012-02-24 Thomas Schwinge <[email protected]> |
7789 | ||
7790 | * sh-tdep.c (sh_skip_prologue): Use skip_prologue_using_sal. | |
7791 | (after_prologue): Remove. | |
7792 | ||
6b446fdf TT |
7793 | 2012-02-23 Tom Tromey <[email protected]> |
7794 | ||
7795 | * jv-valprint.c (java_val_print): Remove dead code. | |
7796 | ||
ef59abfb TG |
7797 | 2012-02-23 Tristan Gingold <[email protected]> |
7798 | ||
a09130f9 PA |
7799 | * ada-tasks.c (struct ada_tasks_inferior_data): Add |
7800 | known_tasks_element and known_tasks_length fields. | |
7801 | (read_known_tasks_array): Change argument type. Use pointer type | |
7802 | and number of elements from DATA. Adjust. | |
7803 | (read_known_tasks_list): Likewise. | |
7804 | (get_known_tasks_addr): Remove. | |
7805 | (ada_set_current_inferior_known_tasks_addr): Renamed to ... | |
7806 | (ada_tasks_inferior_data_sniffer): ... this. Use symtab for element | |
7807 | type and array length. Merge former get_known_tasks_addr code. | |
ef59abfb | 7808 | |
def166f6 JK |
7809 | 2012-02-23 Jan Kratochvil <[email protected]> |
7810 | ||
7811 | PR backtrace/13716 | |
7812 | * infcmd.c (finish_forward): New variable frame_id, initialize it, use | |
7813 | it after set_momentary_breakpoint. | |
7814 | ||
aeaa2474 SA |
7815 | 2012-02-22 Sterling Augustine <[email protected]> |
7816 | ||
7817 | PR 13689: | |
7818 | * breakpoint.c (watchpoint_exp_is_constant): Add UNOP_CAST to switch. | |
7819 | ||
feea76c2 GB |
7820 | 2012-02-22 Gary Benson <[email protected]> |
7821 | ||
7822 | * dwarf2read.c (dwarf2_read_index): Correct misspelling. | |
7823 | (find_slot_in_mapped_hash): Likewise. | |
7824 | ||
f06e05e0 JK |
7825 | 2012-02-21 Jan Kratochvil <[email protected]> |
7826 | ||
7827 | PR build/13638 | |
7828 | * configure.ac (MAKEINFO): Replace AC_CHECK_PROG by AC_ARG_VAR. | |
7829 | (MAKEINFOFLAGS): Replace static string by AC_ARG_VAR. | |
7830 | * configure: Regenerate. | |
7831 | ||
b54a8fd7 PA |
7832 | 2012-02-21 Tristan Gingold <[email protected]> |
7833 | Pedro Alves <[email protected]> | |
7834 | ||
7835 | * ia64-tdep.c: Do not include libunwind-ia64.h. | |
7836 | * libunwind-frame.h: Remove #ifdef HAVE_LIBUNWIND_H guard. | |
7837 | Include libunwind-ia64.h instead of libunwind.h. | |
7838 | * configure.ac (--with-libunwind, $enable_libunwind): Don't check | |
7839 | for libunwind.h existence. | |
7840 | * configure, config.in: Regenerate. | |
7841 | ||
dfcee124 AG |
7842 | 2012-02-21 Anton Gorenkov <[email protected]> |
7843 | ||
7844 | * c-valprint.c (c_value_print): Use value_rtti_indirect_type | |
7845 | instead of value_rtti_target_type. | |
7846 | * eval.c (evaluate_subexp_standard): Use value_rtti_indirect_type | |
7847 | instead of value_rtti_target_type. | |
7848 | * typeprint.c (whatis_exp): Use value_rtti_indirect_type instead of | |
7849 | value_rtti_target_type. | |
7850 | * valops.c (value_ind): Extract function readjust_indirect_value_type. | |
7851 | (value_rtti_target_type): Rename to ... | |
7852 | (value_rtti_indirect_type): ... here and make it indirect. Update | |
7853 | function comment. | |
7854 | * value.c (readjust_indirect_value_type): New function. | |
7855 | (coerce_ref): Support for enclosing type setting for references | |
7856 | with readjust_indirect_value_type. | |
7857 | * value.h (readjust_value_type): New declaration. | |
7858 | (value_rtti_target_type): Rename to ... | |
7859 | (value_rtti_indirect_type): ... here. | |
7860 | ||
02568277 AG |
7861 | 2012-02-21 Anton Gorenkov <[email protected]> |
7862 | ||
7863 | * MAINTAINERS (Write After Approval): Add myself to the list. | |
7864 | ||
10c07b7e | 7865 | 2012-02-20 Doug Evans <[email protected]> |
28ee876a | 7866 | |
d82ea6a8 DE |
7867 | * objfiles.c (add_to_objfile_sections): Remove outdated comments. |
7868 | Rename objfile_p_char parameter to objfilep. | |
7869 | (build_objfile_section_table): Result is now void. All callers | |
7870 | updated. | |
7871 | * objfiles.h (struct objfile): Tweak comments, whitespace. | |
7872 | (build_objfile_section_table): Update. | |
7873 | ||
28ee876a DE |
7874 | * elfread.c (elf_symfile_segments): Fix warning text. |
7875 | ||
24c79950 TT |
7876 | 2012-02-20 Tom Tromey <[email protected]> |
7877 | ||
7878 | PR gdb/13498: | |
7879 | * dwarf2read.c (dw2_expand_symtabs_matching): Only visit a | |
7880 | particular set of file names once. | |
7881 | (dw2_map_symbol_filenames): Likewise. | |
7882 | ||
3a9b40b6 JK |
7883 | 2012-02-20 Jan Kratochvil <[email protected]> |
7884 | ||
7885 | Code cleanup. | |
7886 | * main.c (write_files): Remove the declaration. | |
7887 | (external_editor_command): Move the declaration ... | |
7888 | [GDBTK] (external_editor_command): ... here. Fix the comment. | |
7889 | ||
4d0795ca TT |
7890 | 2012-02-20 Tom Tromey <[email protected]> |
7891 | ||
7892 | * dwarf2read.c (dw2_map_symtabs_matching_filename): Remove | |
7893 | extraneous block. | |
7894 | ||
637fd620 TG |
7895 | 2012-02-20 Tristan Gingold <[email protected]> |
7896 | ||
7897 | * darwin-nat.h (enum darwin_msg_state): Add comments. | |
7898 | ||
6f124894 TG |
7899 | 2012-02-20 Tristan Gingold <[email protected]> |
7900 | ||
7901 | * amd64-darwin-tdep.c (x86_darwin_init_abi_64): Fix jb_pc_offset | |
7902 | value. | |
7903 | ||
2e6e3d9c JB |
7904 | 2012-20-18 Joel Brobecker <[email protected]> |
7905 | ||
7906 | * breakpoint.c (watchpoint_exp_is_const): Add missing empty line | |
7907 | between function description and implementation. | |
7908 | ||
2e8265fd TT |
7909 | 2012-02-17 Tom Tromey <[email protected]> |
7910 | ||
7911 | PR python/12070: | |
7912 | * python/py-event.c (event_object_getset): New global. | |
7913 | (event_object_type): Reference it. | |
7914 | * python/py-type.c (field_object_getset): New global. | |
7915 | (field_object_type): Reference it. | |
7916 | * python/python-internal.h (gdb_py_generic_dict): Declare. | |
7917 | * python/py-utils.c (gdb_py_generic_dict): New function. | |
7918 | ||
8544a150 | 7919 | 2012-02-17 Tristan Gingold <[email protected]> |
6f124894 | 7920 | |
8544a150 | 7921 | * solib-darwin.c (darwin_current_sos): Check magic and filetype |
6f124894 | 7922 | |
ca193e27 TS |
7923 | 2012-02-17 Thomas Schwinge <[email protected]> |
7924 | ||
7925 | * sh-tdep.c (sh_is_renesas_calling_convention): Fix handling of | |
7926 | TYPE_CALLING_CONVENTION annotation. | |
7927 | ||
e5586183 KB |
7928 | 2012-02-16 Kevin Buettner <[email protected]> |
7929 | ||
7930 | * MAINTAINERS: Add rx to target ISA section. | |
7931 | * Makefile.in (ALL_TARGET_OBS): Add rx-tdep.o. | |
7932 | (ALLDEPFILES): Add rx-tdep.c. | |
7933 | ||
7dcd53a0 TT |
7934 | 2012-02-16 Tom Tromey <[email protected]> |
7935 | ||
7936 | * symfile.c (symbol_file_add_main_1): Use inferior's | |
7937 | symfile_flags. | |
7938 | * solib.c (solib_read_symbols): Use inferior's symfile_flags. | |
7939 | * linux-nat.c (linux_child_follow_fork): Set symfile_flags on | |
7940 | inferior. | |
7941 | * infrun.c (handle_vfork_child_exec_or_exit): Set symfile_flags on | |
7942 | inferior. | |
7943 | (follow_exec): Use inferior's symfile_flags. | |
7944 | * inferior.h (struct inferior) <symfile_flags>: New field. | |
7945 | ||
ddd60447 MF |
7946 | 2012-02-16 Mike Frysinger <[email protected]> |
7947 | ||
7948 | PR gdb/9734: | |
7949 | * remote-sim.c (gdbsim_create_inferior): Call error() when | |
7950 | sim_create_inferior() fails. | |
7951 | ||
b0d32fb6 TG |
7952 | 2012-02-16 Josh Matthews <[email protected]> |
7953 | ||
7954 | * machoread.c: Initialize nbr_syms to avoid warnings-as-errors failure. | |
7955 | ||
9addecb9 TT |
7956 | 2012-02-16 Tom Tromey <[email protected]> |
7957 | ||
7958 | PR c++/13653: | |
7959 | * thread.c (struct current_thread_cleanup) <was_removable>: New | |
7960 | field. | |
7961 | (restore_current_thread_cleanup_dtor): Restore 'removable' field. | |
7962 | (make_cleanup_restore_current_thread): Initialize new field. | |
7963 | ||
a58b110a KB |
7964 | 2012-02-15 Kevin Buettner <[email protected]> |
7965 | ||
7966 | * MAINTAINERS: Add rl78 to target ISA section. | |
7967 | * Makefile.in (ALL_TARGET_OBS): Add rl78-tdep.o. | |
7968 | (ALLDEPFILES): Add rl78-tdep.c. | |
7969 | * NEWS: Mention rl78 as a new target. | |
7970 | ||
4cb6da1c AR |
7971 | 2012-02-15 Aleksandar Ristovski <[email protected]> |
7972 | ||
7973 | * frame.c (find_frame_sal): Initialize sal->pspace field from frame | |
7974 | data. | |
7975 | * stack.c (set_last_displayed_sal): Validate that PSPACE is not NULL. | |
7976 | ||
3af2590d TT |
7977 | 2012-02-15 Tom Tromey <[email protected]> |
7978 | ||
7979 | PR gdb/12659: | |
7980 | * infcmd.c (registers_info): Print just the current register's | |
7981 | name. | |
7982 | ||
c6910659 TT |
7983 | 2012-02-15 Tom Tromey <[email protected]> |
7984 | ||
7985 | * python/py-symbol.c (sympy_value): Use _(). | |
7986 | ||
7cee1e54 PA |
7987 | 2012-02-15 Pedro Alves <[email protected]> |
7988 | ||
7989 | * remote.c (remote_detach_1, extended_remote_attach_1): Tweak | |
7990 | output to be like native targets'. | |
7991 | (remote_pid_to_str): Special case the null ptid. | |
7992 | ||
816338b5 SS |
7993 | 2012-02-14 Stan Shebs <[email protected]> |
7994 | ||
7995 | * NEWS: Mention enable count command. | |
7996 | * breakpoint.h (struct breakpoint): New field enable_count. | |
7997 | * breakpoint.c (enable_breakpoint_disp): Add count argument. | |
7998 | (enable_breakpoint): Add arg to call. | |
7999 | (struct disp_data): New struct. | |
8000 | (do_enable_breakpoint_disp): Interp arg as disp_data and unpack. | |
8001 | (do_map_enable_once_breakpoint): Create a struct and pass it. | |
8002 | (do_map_enable_delete_breakpoint): Ditto. | |
8003 | (do_map_enable_count_breakpoint): New function. | |
8004 | (enable_count_command): New function. | |
8005 | (bpstat_stop_status): Decrement enable_count. | |
8006 | (print_one_breakpoint_location): Report enable count. | |
8007 | (_initialize_breakpoint): Add enable count command. | |
8008 | ||
c47a44f4 KB |
8009 | 2012-02-14 Kevin Buettner <[email protected]> |
8010 | ||
8011 | * rl78-tdep.c (reggroups.h): Include. | |
8012 | (RL78_RAW_BANK0_R0_REGNUM, RL78_RAW_BANK0_R1_REGNUM) | |
8013 | (RL78_RAW_BANK0_R2_REGNUM, RL78_RAW_BANK0_R3_REGNUM) | |
8014 | (RL78_RAW_BANK0_R4_REGNUM, RL78_RAW_BANK0_R5_REGNUM) | |
8015 | (RL78_RAW_BANK0_R6_REGNUM, RL78_RAW_BANK0_R7_REGNUM) | |
8016 | (RL78_RAW_BANK1_R0_REGNUM, RL78_RAW_BANK1_R1_REGNUM) | |
8017 | (RL78_RAW_BANK1_R2_REGNUM, RL78_RAW_BANK1_R3_REGNUM) | |
8018 | (RL78_RAW_BANK1_R4_REGNUM, RL78_RAW_BANK1_R5_REGNUM) | |
8019 | (RL78_RAW_BANK1_R6_REGNUM, RL78_RAW_BANK1_R7_REGNUM) | |
8020 | (RL78_RAW_BANK2_R0_REGNUM, RL78_RAW_BANK2_R1_REGNUM) | |
8021 | (RL78_RAW_BANK2_R2_REGNUM, RL78_RAW_BANK2_R3_REGNUM) | |
8022 | (RL78_RAW_BANK2_R4_REGNUM, RL78_RAW_BANK2_R5_REGNUM) | |
8023 | (RL78_RAW_BANK2_R6_REGNUM, RL78_RAW_BANK2_R7_REGNUM) | |
8024 | (RL78_RAW_BANK3_R0_REGNUM, RL78_RAW_BANK3_R1_REGNUM) | |
8025 | (RL78_RAW_BANK3_R2_REGNUM, RL78_RAW_BANK3_R3_REGNUM) | |
8026 | (RL78_RAW_BANK3_R4_REGNUM, RL78_RAW_BANK3_R5_REGNUM) | |
8027 | (RL78_RAW_BANK3_R6_REGNUM, RL78_RAW_BANK3_R7_REGNUM): Add to | |
8028 | beginning of register list. | |
8029 | (RL78_BANK0_R0_REGNUM, RL78_BANK0_R1_REGNUM, RL78_BANK0_R2_REGNUM) | |
8030 | (RL78_BANK0_R3_REGNUM, RL78_BANK0_R4_REGNUM, RL78_BANK0_R5_REGNUM) | |
8031 | (RL78_BANK0_R6_REGNUM, RL78_BANK0_R7_REGNUM, RL78_BANK1_R0_REGNUM) | |
8032 | (RL78_BANK1_R1_REGNUM, RL78_BANK1_R2_REGNUM, RL78_BANK1_R3_REGNUM) | |
8033 | (RL78_BANK1_R4_REGNUM, RL78_BANK1_R5_REGNUM, RL78_BANK1_R6_REGNUM) | |
8034 | (RL78_BANK1_R7_REGNUM, RL78_BANK2_R0_REGNUM, RL78_BANK2_R1_REGNUM) | |
8035 | (RL78_BANK2_R2_REGNUM, RL78_BANK2_R3_REGNUM, RL78_BANK2_R4_REGNUM) | |
8036 | (RL78_BANK2_R5_REGNUM, RL78_BANK2_R6_REGNUM, RL78_BANK2_R7_REGNUM) | |
8037 | (RL78_BANK3_R0_REGNUM, RL78_BANK3_R1_REGNUM, RL78_BANK3_R2_REGNUM) | |
8038 | (RL78_BANK3_R3_REGNUM, RL78_BANK3_R4_REGNUM, RL78_BANK3_R5_REGNUM) | |
8039 | (RL78_BANK3_R6_REGNUM, RL78_BANK3_R7_REGNUM): Move these into | |
8040 | the pseudo registers. Rearrange other pseudo registers too so | |
8041 | that the bank registers appear at the end. | |
8042 | (rl78_register_type): Account for the fact that the byte sized | |
8043 | bank registers are now pseudo-registers. | |
8044 | (rl78_register_name): Rearrange the register name array. Make | |
8045 | initial set of raw banked registers inaccessible. | |
8046 | (rl78_register_reggroup_p, rl78_register_sim_regno): New functions. | |
8047 | (rl78_pseudo_register_read, rl78_pseudo_register_write): Add | |
8048 | case for copying bytes back and forth between raw and pseudo | |
8049 | versions of the banked registers. Update other cases to reflect | |
8050 | the changed names. | |
8051 | (rl78_return_value): Update to account for changed names of | |
8052 | raw registers. | |
8053 | (rl78_gdbarch_init): Register rl78_register_reggroup_p() and | |
8054 | rl78_register_sim_regno(). | |
8055 | ||
e4569f1e KB |
8056 | 2012-02-14 Kevin Buettner <[email protected]> |
8057 | ||
8058 | * rl78-tdep.c (rl78_skip_prologue): Make `const' the type of | |
8059 | the name parameter being passed to find_pc_partial_function(). | |
8060 | ||
7a05aae7 JK |
8061 | 2012-02-14 Jan Kratochvil <[email protected]> |
8062 | ||
8063 | * MAINTAINERS: Step down from being ia64 target maintainer. | |
8064 | ||
11fde611 JK |
8065 | 2012-02-12 Jan Kratochvil <[email protected]> |
8066 | ||
8067 | * ppc-linux-nat.c (fetch_register, store_register): Fix GCC aliasing | |
8068 | compilation warning. | |
8069 | ||
57008375 JK |
8070 | 2012-02-12 Jan Kratochvil <[email protected]> |
8071 | ||
8072 | Fix crash on loaded shlibs without loaded exec_bfd. | |
8073 | * exec.c (exec_files_info): Do not crash on NULL EXEC_BFD. | |
8074 | (set_section_command): Replace exec_bfd by p->bfd. | |
8075 | ||
ff3c9849 TT |
8076 | 2012-02-10 Tom Tromey <[email protected]> |
8077 | ||
8078 | * linespec.c (decode_line_internal): Skip symtabs_from_filename | |
8079 | when we have a C++ qualified name. | |
8080 | ||
db2b9fdd PA |
8081 | 2012-02-10 Pedro Alves <[email protected]> |
8082 | ||
8083 | * inferior.c (inferior_pid_to_str): New. | |
8084 | (print_inferior, inferior_command): Use it. | |
8085 | ||
12cd34f3 PA |
8086 | 2012-02-10 Pedro Alves <[email protected]> |
8087 | ||
8088 | * configure.ac (HAVE_ELF test): Put the old CFLAGS at the end of | |
8089 | the test CFLAGS. | |
8090 | * configure: Regenerate. | |
8091 | ||
e871429d JK |
8092 | 2012-02-10 Jan Kratochvil <[email protected]> |
8093 | ||
8094 | * linespec.c (decode_line_internal): Fix comment correctness. | |
8095 | ||
1916efaf PA |
8096 | 2012-02-09 Valery Khromov <[email protected]> |
8097 | ||
8098 | PR gdb/12953 | |
8099 | * Makefile.in (HFILES_NO_SRCDIR): Add amd64bsd-nat.h. | |
8100 | * amd64bsd-nat.c: Add support for debug registers (adapted from | |
8101 | i386bsd-nat.c). | |
8102 | [HAVE_PT_GETDBREGS] (amd64bsd_dr_get, amd64bsd_dr_set) | |
8103 | (amd64bsd_dr_set_control, amd64bsd_dr_set_addr) | |
8104 | (amd64bsd_dr_get_addr, amd64bsd_dr_get_status) | |
8105 | (amd64bsd_dr_get_control): New functions. | |
8106 | * amd64bsd-nat.h: New file (adapted from i386bsd-nat.h). | |
8107 | * amd64fbsd-nat.c: Include "amd64bsd-nat.h", "i386-nat.h". | |
8108 | [HAVE_PT_GETDBREGS] (_initialize_amd64fbsd_nat): Add hardware | |
8109 | watchpoints initialization. | |
8110 | * config/i386/fbsd64.mh (NATDEPFILES): Add i386-nat.o. | |
8111 | ||
f4859d94 JK |
8112 | 2012-02-09 Jan Kratochvil <[email protected]> |
8113 | ||
8114 | * gdb-gdb.py (StructMainTypePrettyPrinter) <struct_field_img>: Print | |
8115 | flds_bnds.fields. | |
8116 | (StructMainTypePrettyPrinter) <bounds_img>: Print flds_bnds.bounds. | |
8117 | ||
c56a97f9 JK |
8118 | 2012-02-09 Jan Kratochvil <[email protected]> |
8119 | ||
8120 | * breakpoint.c (bp_location_compare): Fix comment. Reindent the code. | |
8121 | ||
1a119f36 JB |
8122 | 2012-02-08 Joel Brobecker <[email protected]> |
8123 | ||
8124 | * language.h (symbol_name_cmp_ftype): Renames | |
8125 | symbol_name_match_p_ftype. | |
8126 | (struct language_defn)[la_get_symbol_name_cmp]: Renames | |
8127 | la_get_symbol_name_match_p. | |
8128 | * ada-lang.c (ada_get_symbol_name_cmp): Renames | |
8129 | ada_get_symbol_name_match_p. Update comment. | |
8130 | (ada_language_defn)[la_get_symbol_name_cmp]: Update value. | |
8131 | * linespec.c (struct symbol_matcher_data)[symbol_name_cmp]: | |
8132 | Renames symbol_name_match_p. Update field type. | |
8133 | (iterate_name_matcher, iterate_over_all_matching_symtabs): Adjust. | |
8134 | * c-lang.c, d-lang.c, f-lang.c, jv-lang.c, m2-lang.c, objc-lang.c, | |
8135 | opencl-lang.c, p-lang.c: Replace "la_get_symbol_name_match_p" by | |
8136 | "la_get_symbol_name_cmp" in comments. | |
8137 | * language.c: Likewise. | |
8138 | ||
c71bb1cf RO |
8139 | 2012-02-08 Rainer Orth <[email protected]> |
8140 | ||
8141 | * amd64-sol2-tdep.c (amd64_sol2_gregset_reg_offset): Correct | |
8142 | %eflags offset. | |
8143 | * i386-sol2-nat.c (amd64_sol2_gregset64_reg_offs) | |
8144 | (amd64_sol2_gregset32_reg_offs): Likewise. | |
8145 | ||
4b2d20a5 TG |
8146 | 2012-02-08 Joel Brobecker <[email protected]> |
8147 | ||
8148 | * solib-darwin.c (darwin_bfd_open): Make sure that the filename | |
8149 | of the returned BFD is allocated by GDB. | |
8150 | ||
f0823d2c TT |
8151 | 2012-02-07 Tom Tromey <[email protected]> |
8152 | ||
8153 | PR python/12027: | |
8154 | * python/python-internal.h (frame_object_type): Declare. | |
8155 | * python/py-symbol.c (sympy_needs_frame): New function. | |
8156 | (sympy_value): New function. | |
8157 | (symbol_object_getset): Add "needs_frame". | |
8158 | (symbol_object_methods): Add "value". | |
8159 | * python/py-frame.c (frame_object_type): No longer static. | |
8160 | ||
64e7d9dd TT |
8161 | 2012-02-07 Tom Tromey <[email protected]> |
8162 | ||
8163 | PR python/13599: | |
8164 | * python/py-symbol.c (sympy_line): New function. | |
8165 | (symbol_object_getset): Add "line". | |
8166 | ||
1d6b2d2b TT |
8167 | 2012-02-07 Tom Tromey <[email protected]> |
8168 | ||
8169 | * charset.c (find_charset_names): Check 'in' against NULL. | |
8170 | ||
0d5cff50 DE |
8171 | 2012-02-06 Doug Evans <[email protected]> |
8172 | ||
8173 | * gdbtypes.h (struct main_type): Change type of name,tag_name, | |
8174 | and fields.name members from char * to const char *. All uses updated. | |
8175 | (struct cplus_struct_type): Change type of fn_fieldlists.name member | |
8176 | from char * to const char *. All uses updated. | |
8177 | (type_name_no_tag): Update. | |
8178 | (lookup_unsigned_typename, lookup_signed_typename): Update. | |
8179 | * gdbtypes.c (type_name_no_tag): Change result type | |
8180 | from char * to const char *. All callers updated. | |
8181 | (lookup_unsigned_typename, lookup_signed_typename): Change type of | |
8182 | name parameter from char * to const char *. | |
8183 | * symtab.h (struct cplus_specific): Change type of demangled_name | |
8184 | member from char * to const char *. All uses updated. | |
8185 | (struct general_symbol_info): Change type of name and | |
8186 | mangled_lang.demangled_name members from char * to const char *. | |
8187 | All uses updated. | |
8188 | (symbol_get_demangled_name, symbol_natural_name): Update. | |
8189 | (symbol_demangled_name, symbol_search_name): Update. | |
8190 | * symtab.c (symbol_get_demangled_name): Change result type | |
8191 | from char * to const char *. All callers updated. | |
8192 | (symbol_natural_name, symbol_demangled_name): Ditto. | |
8193 | (symbol_search_name): Ditto. | |
8194 | (completion_list_add_name): Change type of symname,sym_text, | |
8195 | text,word parameters from char * to const char *. | |
8196 | (completion_list_objc_symbol): Change type of sym_text, | |
8197 | text,word parameters from char * to const char *. | |
8198 | * ada-lang.c (find_struct_field): Change type of name parameter | |
8199 | from char * to const char *. | |
8200 | (encoded_ordered_before): Similarly for N0,N1 parameters. | |
8201 | (old_renaming_is_invisible): Similarly for function_name parameter. | |
8202 | (ada_type_name): Change result type from char * to const char *. | |
8203 | All callers updated. | |
8204 | * ada-lang.h (ada_type_name): Update. | |
8205 | * buildsym.c (hashname): Change type of name parameter | |
8206 | from char * to const char *. | |
8207 | * buildsym.h (hashname): Update. | |
8208 | * dbxread.c (end_psymtab): Change type of include_list parameter | |
8209 | from char ** to const char **. | |
8210 | * dwarf2read.c (determine_prefix): Change result type | |
8211 | from char * to const char *. All callers updated. | |
8212 | * f-lang.c (find_common_for_function): Change type of name, funcname | |
8213 | parameters from char * to const char *. | |
8214 | * f-lang.c (find_common_for_function): Update. | |
8215 | * f-valprint.c (list_all_visible_commons): Change type of funcname | |
8216 | parameters from char * to const char *. | |
8217 | * gdbarch.sh (static_transform_name): Change type of name parameter | |
8218 | and result from char * to const char *. | |
8219 | * gdbarch.c: Regenerate. | |
8220 | * gdbarch.h: Regenerate. | |
8221 | * i386-sol2-tdep.c (i386_sol2_static_transform_name): Change type | |
8222 | of name parameter from char * to const char *. | |
8223 | * jv-lang.c (java_primitive_type_from_name): Ditto. | |
8224 | (java_demangled_signature_length): Similarly for signature parameter. | |
8225 | (java_demangled_signature_copy): Ditto. | |
8226 | (java_demangle_type_signature): Ditto. | |
8227 | * jv-lang.h (java_primitive_type_from_name): Update. | |
8228 | (java_demangle_type_signature): Update. | |
8229 | * objc-lang.c (specialcmp): Change type of a,b parameters | |
8230 | from char * to const char *. | |
8231 | * p-lang.c (is_pascal_string_type): Change type of arrayname parameter | |
8232 | from char * to const char *. All callers updated. | |
8233 | * p-lang.h (is_pascal_string_type): Update. | |
8234 | * solib-frv.c (find_canonical_descriptor_in_load_object): Change type | |
8235 | of name parameter from char * to const char *. | |
8236 | * sparc-sol2-tdep.c (sparc_sol2_static_transform_name): Ditto. | |
8237 | * utils.c (fprintf_symbol_filtered): Ditto. | |
8238 | * defs.h (fprintf_symbol_filtered): Update. | |
8239 | * sparc-tdep.h (sparc_sol2_static_transform_name): Update. | |
8240 | * stabsread.h (end_psymtab): Update. | |
8241 | * stack.c (find_frame_funname): Change type of funname parameter | |
8242 | from char ** to const char **. | |
8243 | * stack.h (find_frame_funname): Update. | |
8244 | * typeprint.c (type_print): Change type of varstring parameter | |
8245 | from char * to const char *. | |
8246 | * value.h (type_print): Update. | |
8247 | * xcoffread.c (xcoff_start_psymtab): Change type of filename parameter | |
8248 | from char * to const char *. All callers updated. | |
8249 | (xcoff_end_psymtab): Change type of include_list parameter | |
8250 | from char ** to const char **. All callers updated. | |
8251 | (swap_sym): Similarly for name parameter. All callers updated. | |
8252 | * coffread.c (patch_type): Add (char*) cast to xfree parameter. | |
8253 | Use xstrdup. | |
8254 | (process_coff_symbol): Use xstrdup. | |
8255 | * stabsread.c (stabs_method_name_from_physname): Renamed from | |
8256 | update_method_name_from_physname. Change result type from void | |
8257 | to char *. All callers updated. | |
8258 | (read_member_functions): In has_destructor case, store name in objfile | |
8259 | obstack instead of malloc space. In !has_stub case, fix mem leak. | |
8260 | ||
5579a92e TT |
8261 | 2012-02-06 Luca Pizzamiglio <[email protected]> |
8262 | ||
8263 | * configure: Rebuild. | |
8264 | * configure.ac: Put -L../bfd and -L../libiberty at the front of | |
8265 | LDFLAGS. | |
8266 | ||
9058f767 KB |
8267 | 2012-02-03 Kevin Buettner <[email protected]> |
8268 | ||
8269 | * configure.tgt (rl78-*-elf): New target. | |
8270 | * rl78-tdep.c: New file. | |
8271 | ||
5b37825d PW |
8272 | 2012-02-03 Philippe Waroquiers <[email protected]> |
8273 | ||
8274 | * remote.c (remote_rcmd): Use getpkt_sane to detect timeout | |
8275 | and continue the loop. Add QUIT statement. | |
8276 | ||
e009ee71 TT |
8277 | 2012-02-03 Tom Tromey <[email protected]> |
8278 | ||
8279 | PR gdb/13596: | |
8280 | * solib.h (gdb_bfd_lookup_symbol_from_symtab): Rename from | |
8281 | bfd_lookup_symbol_from_symtab. | |
8282 | * solib-pa64.c (pa64_solib_create_inferior_hook): Use | |
8283 | gdb_bfd_lookup_symbol_from_symtab. | |
8284 | ||
f7e44f65 JB |
8285 | 2012-02-03 Joel Brobecker <[email protected]> |
8286 | ||
8287 | * mi/mi-cmd-stack.c (list_args_or_locals): For argument symbols, | |
8288 | use SYMBOL_LINKAGE_NAME to find the corresponding non-argument | |
8289 | symbol. Add assertion that sym2 is never NULL. | |
8290 | ||
2c02bd72 DE |
8291 | 2012-02-02 Doug Evans <[email protected]> |
8292 | ||
8293 | * blockframe.c (find_pc_partial_function_gnu_ifunc): Change type of | |
8294 | "name" parameter to const char ** from char **. All callers updated. | |
8295 | (find_pc_partial_function): Ditto. | |
8296 | (cache_pc_function_name): Change type to const char * from char *. | |
8297 | * symtab.h ((find_pc_partial_function_gnu_ifunc): Update. | |
8298 | (find_pc_partial_function): Update. | |
8299 | * alpha-tdep.h (struct gdbarch_tdep, member pc_in_sigtramp): Change | |
8300 | type of "name" parameter to const char * from char *. | |
8301 | All uses updated. | |
8302 | * arch-utils.c (generic_in_solib_return_trampoline): Change | |
8303 | type of "name" parameter to const char * from char *. | |
8304 | * arch-utils.h (generic_in_solib_return_trampoline): Update. | |
8305 | * frv-linux-tdep.c (frv_linux_pc_in_sigtramp): Change | |
8306 | type of "name" parameter to const char * from char *. | |
8307 | * gdbarch.sh (in_solib_return_trampoline): Ditto. | |
8308 | * gdbarch.c: Regenerate. | |
8309 | * gdbarch.h: Regenerate. | |
8310 | * hppa-hpux-tdep.c (hppa_hpux_in_solib_return_trampoline): Update. | |
8311 | * rs6000-tdep.c (rs6000_in_solib_return_trampoline): Update. | |
8312 | * m32r-linux-tdep.c (m32r_linux_pc_in_sigtramp): Change | |
8313 | type of "name" parameter to const char * from char *. | |
8314 | * skip.c (skip_function_pc): Ditto. | |
8315 | * sparc-sol2-tdep.c (sparc_sol2_pc_in_sigtramp): Ditto. | |
8316 | * sparc-tdep.h (sparc_sol2_pc_in_sigtramp): Update. | |
8317 | * sparc64fbsd-tdep.c (sparc64fbsd_pc_in_sigtramp): Ditto. | |
8318 | * sparc64nbsd-tdep.c (sparc64nbsd_pc_in_sigtramp): Ditto. | |
8319 | * sparc64obsd-tdep.c (sparc64obsd_pc_in_sigtramp): Ditto. | |
8320 | * sparcnbsd-tdep.c (sparc32nbsd_pc_in_sigtramp): Ditto. | |
8321 | * sparcobsd-tdep.c (sparc32obsd_pc_in_sigtramp): Ditto. | |
8322 | * nbsd-tdep.c (nbsd_pc_in_sigtramp): Similary for "func_name". | |
8323 | * nbsd-tdep.h (nbsd_pc_in_sigtramp): Update. | |
8324 | ||
e886a173 PA |
8325 | 2012-02-02 Pedro Alves <[email protected]> |
8326 | ||
8327 | * remote.c (remote_get_min_fast_tracepoint_insn_len): Return 0 if | |
8328 | the current inferior has no execution. Make sure the current | |
8329 | remote process matches gdb's current inferior. | |
8330 | ||
c709a7c2 TT |
8331 | 2012-02-02 Tom Tromey <[email protected]> |
8332 | ||
8333 | PR gdb/13405: | |
8334 | * tui/tui-win.c (parse_scrolling_args): Don't write to possibly | |
8335 | read-only memory. | |
8336 | ||
f149aabd TT |
8337 | 2012-02-02 Tom Tromey <[email protected]> |
8338 | ||
8339 | PR gdb/9307: | |
8340 | * symtab.c (lookup_language_this): Set block_found. | |
8341 | ||
03bef283 TT |
8342 | 2012-02-01 Tom Tromey <[email protected]> |
8343 | ||
8344 | PR gdb/13431: | |
8345 | * jit.c (struct jit_inferior_data): Rewrite. | |
8346 | (struct jit_objfile_data): New. | |
8347 | (get_jit_objfile_data): New function. | |
8348 | (add_objfile_entry): Update. | |
8349 | (jit_read_descriptor): Return int. Replace descriptor_addr | |
8350 | argument with inf_data. Update. Don't call error. | |
8351 | (jit_breakpoint_re_set_internal): Reorder logic. Update. Look up | |
8352 | descriptor here. | |
8353 | (jit_inferior_init): Don't look up descriptor. Don't call error. | |
8354 | (jit_reset_inferior_data_and_breakpoints) | |
8355 | (jit_inferior_created_observer): Remove. | |
8356 | (jit_inferior_exit_hook): Update. | |
8357 | (jit_executable_changed_observer): Remove. | |
8358 | (jit_event_handler): Update. | |
8359 | (free_objfile_data): Reset inferior data if needed. | |
8360 | (_initialize_jit): Update. | |
8361 | ||
f0bbc364 TT |
8362 | 2012-02-01 Tom Tromey <[email protected]> |
8363 | ||
8364 | * jit.c (bfd_open_from_target_memory): Move higher in file. | |
8365 | ||
47c1316c TG |
8366 | 2012-02-01 Tristan Gingold <[email protected]> |
8367 | ||
8368 | * libunwind-frame.c (libunwind_load): Display message if dlopen | |
8369 | failed. | |
8370 | ||
8e704927 GB |
8371 | 2012-02-01 Gary Benson <[email protected]> |
8372 | ||
09c7a31f | 8373 | * symtab.h (symbol_found_callback_ftype): New typedef. |
8e704927 GB |
8374 | (iterate_over_symbols): Use the above. |
8375 | * symtab.c (iterate_over_symbols): Likewise. | |
8376 | * language.h (language_defn->la_iterate_over_symbols): Likewise. | |
8377 | * ada-lang.c (ada_iterate_over_symbols): Likewise. | |
8378 | * linespec.c (iterate_over_all_matching_symtabs): Likewise. | |
8379 | (iterate_name_matcher): Document return values. | |
8380 | (collect_one_symbol): Likewise. | |
8381 | (collect_function_symbols): Likewise. | |
8382 | (collect_symbols): Likewise. | |
8383 | ||
d9680e73 TT |
8384 | 2012-02-01 Tom Tromey <[email protected]> |
8385 | ||
8386 | * ada-lang.c (resolve_subexp): Update. | |
8387 | (ada_lookup_symbol_list): Add 'full_search' argument. | |
8388 | (ada_iterate_over_symbols): Pass 0 as full_search argument to | |
8389 | ada_lookup_symbol_list. | |
8390 | (ada_lookup_encoded_symbol): Update. | |
8391 | (get_var_value): Update. | |
8392 | * ada-exp.y (block_lookup): Update. | |
8393 | (write_var_or_type): Update. | |
8394 | (write_name_assoc): Update. | |
8395 | * ada-lang.h (ada_lookup_symbol_list): Update. | |
8396 | ||
72e1143f TT |
8397 | 2012-01-31 Tom Tromey <[email protected]> |
8398 | ||
8399 | * language.h (struct language_defn) <la_iterate_over_symbols>: Fix | |
8400 | comment. | |
8401 | ||
ab2d2ad3 DE |
8402 | 2012-01-31 Doug Evans <[email protected]> |
8403 | ||
8404 | * symtab.h: Remove outdated comment. | |
e9111bf7 | 8405 | (SYMBOL_MATCHES_NATURAL_NAME): Delete. |
ab2d2ad3 | 8406 | |
bc884eba JB |
8407 | 2012-02-01 Josh Matthews <[email protected]> (tiny change) |
8408 | ||
8409 | Fix build error in Darwin port. | |
8410 | * i386-darwin-nat.c: Include i386-nat.h. | |
8411 | ||
8fc3fc34 TT |
8412 | 2012-01-30 Tom Tromey <[email protected]> |
8413 | ||
8414 | PR breakpoints/13568: | |
8415 | * dwarf2read.c (dwarf_decode_macro_bytes): Add 'include_hash' | |
8416 | argument. Check for recursive includes. | |
8417 | (dwarf_decode_macros): Create an include hash. | |
8418 | ||
5d853008 ME |
8419 | 2012-01-30 Michael Eager <[email protected]> |
8420 | ||
8421 | * configure.tgt (powerpc-*-linux*): Add glibc-tdep.o. | |
8422 | * ppc-linux-tdep.c: Include glibc-tdep.h. | |
ab2d2ad3 | 8423 | (powerpc32_plt_stub, powerpc32_plt_stub_so): Add PLT stub templates. |
5d853008 ME |
8424 | (powerpc_linux_in_plt_stub): New function. |
8425 | (powerpc_linux_in_dynsym_resolve_code): New function. | |
8426 | (ppc_skip_trampoline_code): New function. | |
8427 | (ppc_linux_init_abi): Use PPC specific functions rather than generic. | |
8428 | Use glibc_skip_solib_resolver. | |
8429 | ||
40478521 JK |
8430 | 2012-01-28 Jan Kratochvil <[email protected]> |
8431 | ||
8432 | Code cleanup: Make 1440 bytes of data segment read-only. | |
8433 | * arch-utils.c (endian_enum): Make it const char *const []. | |
8434 | * arm-tdep.c (fp_model_strings, arm_abi_strings, arm_mode_strings): | |
8435 | Likewise. | |
8436 | * breakpoint.c (always_inserted_enums): Likewise. | |
8437 | * cli/cli-cmds.c (script_ext_enums): Likewise. | |
8438 | * cli/cli-decode.c (add_setshow_enum_cmd, complete_on_enum): Make the | |
8439 | enumlist parameter const char *const *. | |
8440 | * cli/cli-decode.h (struct cmd_list_element): Make the enums field | |
8441 | const char *const *. | |
8442 | * command.h (complete_on_enum, add_setshow_enum_cmd): Make the enumlist | |
8443 | parameter const char *const *. | |
8444 | * cris-tdep.c (cris_modes): Make it const char *const []. | |
8445 | * filesystem.c (target_file_system_kinds): Likewise. | |
8446 | * i386-tdep.c (valid_flavors, valid_conventions): Likewise. | |
8447 | * infrun.c (follow_fork_mode_kind_names, follow_exec_mode_names) | |
8448 | (can_use_displaced_stepping_enum, scheduler_enums) | |
8449 | (exec_direction_names): Likewise. | |
8450 | * language.c (_initialize_language): Make the type_or_range_names and | |
8451 | case_sensitive_names variables const char *const []. | |
8452 | * mips-tdep.c (mips_abi_strings): Make it const char *const []. | |
8453 | * python/python.c (python_excp_enums): Likewise. | |
8454 | * remote.c (interrupt_sequence_modes): Likewise. | |
8455 | * rs6000-tdep.c (powerpc_vector_strings): Likewise. | |
8456 | * serial.c (logbase_enums): Likewise. | |
8457 | * sh-tdep.c (sh_cc_enum): Likewise. | |
8458 | * stack.c (print_frame_arguments_choices, print_entry_values_choices): | |
8459 | Likewise. | |
8460 | * symtab.c (multiple_symbols_modes): Likewise. | |
8461 | * tui/tui-win.c (tui_border_kind_enums, tui_border_mode_enums): | |
8462 | Likewise. | |
8463 | * utils.c (internal_problem_modes): Likewise. | |
8464 | ||
b3b8b934 JK |
8465 | 2012-01-27 Jan Kratochvil <[email protected]> |
8466 | ||
8467 | Fix the 2012-01-26 regression by la_get_symbol_name_match_p. | |
8468 | * linespec.c (iterate_name_matcher): Negate the SYMBOL_NAME_MATCH_P | |
8469 | result. | |
8470 | ||
8c85a4e2 DE |
8471 | 2012-01-27 Doug Evans <[email protected]> |
8472 | ||
8473 | * configure.ac (with_python): Fix absolute path handling for win32. | |
8474 | * configure: Regenerate. | |
8475 | ||
78d8b4d7 DE |
8476 | 2012-01-26 Doug Evans <[email protected]> |
8477 | ||
eca864fe DE |
8478 | * symtab.c: Whitespace cleanup, no code changes. |
8479 | ||
7e082072 DE |
8480 | * symtab.c (lookup_symbol_in_language): Improve comment. |
8481 | (lookup_symbol_aux): Fix comment. | |
8482 | ||
7dc25483 DE |
8483 | * psymtab.c (add_psymbol_to_list): Result is now "void". |
8484 | * psympriv.h (add_psymbol_to_list): Update. | |
8485 | ||
78d8b4d7 DE |
8486 | * dwarf2read.c (add_partial_symbol): Delete local psym, unused. |
8487 | ||
4c63965b JK |
8488 | 2012-01-26 Jan Kratochvil <[email protected]> |
8489 | ||
8490 | Do not open script filenames twice. | |
8491 | * cli/cli-cmds.c (source_script_from_stream): Pass to | |
8492 | source_python_script also STREAM. | |
8493 | * python/py-auto-load.c (source_section_scripts): Pass to | |
8494 | source_python_script_for_objfile also STREAM. | |
8495 | (auto_load_objfile_script): Pass to source_python_script_for_objfile | |
8496 | also INPUT. | |
8497 | * python/python-internal.h (source_python_script_for_objfile): New | |
8498 | parameter file, rename parameter file to filename. | |
8499 | * python/python.c (python_run_simple_file): Call PyRun_SimpleFile | |
8500 | instead if !_WIN32. Update the function comment. | |
8501 | (source_python_script, source_python_script_for_objfile) | |
8502 | (source_python_script): New parameter file, rename parameter file to | |
8503 | filename. Pass FILENAME to python_run_simple_file. | |
8504 | * python/python.h (source_python_script): New parameter file, rename | |
8505 | parameter file to filename. | |
8506 | ||
88f38a04 PA |
8507 | 2012-01-26 Pedro Alves <[email protected]> |
8508 | ||
8509 | * corelow.c (core_has_fake_pid): Delete. | |
8510 | (core_close): Delete references to `core_has_fake_pid'. | |
8511 | (add_to_thread_list): Adjust to mark the inferior's pid as fake. | |
8512 | (core_open): Delete references to `core_has_fake_pid'. | |
8513 | (core_pid_to_str): Adjust to check inferior->fake_pid_p instead of | |
8514 | the removed global. | |
8515 | ||
e078317b JB |
8516 | 2012-01-26 Joel Brobecker <[email protected]> |
8517 | ||
8518 | * symfile.h (struct quick_symbol_functions) [expand_symtabs_matching]: | |
8519 | Remove language parameter from name_matcher. Adjust the comment. | |
8520 | * symtab.c (search_symbols_name_matches, expand_partial_symbol_name): | |
8521 | Remove language parameter. | |
8522 | * ada-lang.c (ada_expand_partial_symbol_name): Likewise. | |
8523 | * linespec.c (iterate_name_matcher): Likewise. | |
8524 | * dwarf2read.c (dw2_expand_symtabs_matching): Adjust type of | |
8525 | name_matcher. Adjust call accordingly. | |
8526 | * psymtab.c (expand_symtabs_matching_via_partial): Likewise. | |
8527 | (maintenance_check_symtabs): Adjust type of parameter "fun". | |
8528 | * psymtab.h (maintenance_check_symtabs): Likewise. | |
8529 | ||
74ccd7f5 JB |
8530 | 2012-01-26 Joel Brobecker <[email protected]> |
8531 | ||
8532 | * language.h (symbol_name_match_p_ftype): New typedef. | |
8533 | (struct language_defn): Replace field la_symbol_name_compare | |
8534 | by la_get_symbol_name_match_p. | |
8535 | * ada-lang.c (ada_get_symbol_name_match_p): New function. | |
8536 | (ada_language_defn): Use it. | |
8537 | * linespec.c (struct symbol_matcher_data): New type. | |
8538 | (iterate_name_matcher): Rewrite. | |
8539 | (iterate_over_all_matching_symtabs): Pass a pointer to | |
8540 | a symbol_matcher_data struct to expand_symtabs_matching | |
8541 | instead of just the lookup name. | |
8542 | * c-lang.c, d-lang.c, jv-lang.c, m2-lang.c, objc-lang.c, | |
8543 | opencl-lang.c, p-lang.c, language.c: Delete field | |
8544 | la_symbol_name_compare, and replace by NULL for new field | |
8545 | la_get_symbol_name_match_p. | |
8546 | * symfile.h (struct quick_symbol_functions): Update comment. | |
8547 | ||
5d268276 TT |
8548 | 2012-01-25 Tom Tromey <[email protected]> |
8549 | ||
8550 | * breakpoint.c (bpstat_stop_status): Check 'breakpoint_at' before | |
8551 | dereferencing. | |
8552 | ||
edcc5120 TT |
8553 | 2012-01-24 Tom Tromey <[email protected]> |
8554 | ||
8555 | PR symtab/12406: | |
8556 | * solib.c (update_solib_list): Update the program space's | |
8557 | added_solibs and deleted_solibs fields. | |
8558 | * progspace.h (struct program_space) <added_solibs, | |
8559 | deleted_solibs>: New fields. | |
8560 | (clear_program_space_solib_cache): Declare. | |
8561 | * progspace.c (release_program_space): Call | |
8562 | clear_program_space_solib_cache. | |
8563 | (clear_program_space_solib_cache): New function. | |
8564 | * infrun.c (handle_inferior_event) <TARGET_WAITKIND_LOADED>: Call | |
8565 | bpstat_stop_status. Use handle_solib_event. | |
8566 | * breakpoint.c: Include gdb_regex.h. | |
8567 | (print_solib_event): New function. | |
8568 | (bpstat_print): Use print_solib_event. | |
8569 | (bpstat_stop_status): Add special case for bp_shlib_event. | |
8570 | (handle_solib_event): New function. | |
8571 | (bpstat_what): Use handle_solib_event. | |
8572 | (struct solib_catchpoint): New. | |
8573 | (dtor_catch_solib, insert_catch_solib, remove_catch_solib) | |
8574 | (breakpoint_hit_catch_solib, check_status_catch_solib) | |
8575 | (print_it_catch_solib, print_one_catch_solib) | |
8576 | (print_mention_catch_solib, print_recreate_catch_solib): New | |
8577 | functions. | |
8578 | (catch_solib_breakpoint_ops): New global. | |
8579 | (catch_load_or_unload, catch_load_command_1) | |
8580 | (catch_unload_command_1): New functions. | |
8581 | (internal_bkpt_check_status): Add special case for | |
8582 | bp_shlib_event. | |
8583 | (internal_bkpt_print_it): Use print_solib_event. | |
8584 | (initialize_breakpoint_ops): Initialize | |
8585 | catch_solib_breakpoint_ops. | |
8586 | (_initialize_breakpoint): Register "catch load" and "catch | |
8587 | unload". | |
8588 | * breakpoint.h (handle_solib_event): Declare. | |
8589 | * NEWS: Add entry for "catch load" and "catch unload". | |
8590 | ||
fa864999 TT |
8591 | 2012-01-24 Tom Tromey <[email protected]> |
8592 | ||
8593 | * ada-lang.c: Include gdb_vecs.h. | |
8594 | * charset.c: Include gdb_vecs.h. | |
8595 | * tracepoint.h: Include gdb_vecs.h. | |
8596 | * gdb_vecs.h: New file. | |
8597 | ||
f90263c1 TT |
8598 | 2012-01-24 Pedro Alves <[email protected]> |
8599 | ||
8600 | * breakpoint.c (breakpoint_hit_catch_fork) | |
8601 | (breakpoint_hit_catch_vfork, breakpoint_hit_catch_syscall) | |
8602 | (breakpoint_hit_catch_exec): Make use of the `ws' argument. | |
8603 | * infrun.c (inferior_has_forked, inferior_has_vforked) | |
8604 | (inferior_has_execd, inferior_has_called_syscall): Delete. | |
8605 | (handle_syscall_event): Get syscall_number from the execution | |
8606 | control state's wait status. | |
8607 | (wait_for_inferior): Don't clear syscall_number. | |
8608 | ||
09ac7c10 TT |
8609 | 2012-01-24 Pedro Alves <[email protected]> |
8610 | ||
8611 | * breakpoint.c (bpstat_check_location, bpstat_stop_status, | |
8612 | pc_at_non_inline_function): Add `ws' parameter, and pass it down. | |
8613 | (breakpoint_hit_catch_fork, breakpoint_hit_catch_vfork) | |
8614 | (breakpoint_hit_catch_syscall, breakpoint_hit_catch_exec): Add | |
8615 | `ws' parameter. | |
8616 | (breakpoint_hit_ranged_breakpoint): Add `ws' parameter. Return | |
8617 | false for events other than TARGET_SIGNAL_TRAP. | |
8618 | (breakpoint_hit_watchpoint, base_breakpoint_breakpoint_hit): | |
8619 | Add `ws' parameter. | |
8620 | (bkpt_breakpoint_hit): Add `ws' parameter. Return false for | |
8621 | events other than TARGET_SIGNAL_TRAP. | |
8622 | (tracepoint_breakpoint_hit): Add `ws' parameter. | |
8623 | * breakpoint.h (struct breakpoint_ops) <breakpoint_hit>: Add `ws' | |
8624 | parameter. | |
8625 | (bpstat_stop_status): Same. | |
8626 | (pc_at_non_inline_function): Same. | |
8627 | * infrun.c (handle_syscall_event, handle_inferior_event): Adjust | |
8628 | to pass the current event's waitstatus to bpstat_stop_status | |
8629 | and pc_at_non_inline_function. | |
8630 | ||
86eb7e95 JK |
8631 | 2012-01-24 Jan Kratochvil <[email protected]> |
8632 | ||
8633 | Code cleanup. | |
8634 | * cli/cli-cmds.c (source_script_from_stream): Never fclose STREAM. | |
8635 | Update the function comment for it. | |
8636 | (source_script_with_search): Call make_cleanup_fclose for STREAM. | |
8637 | * cli/cli-script.c (script_from_file): Do not call make_cleanup_fclose | |
8638 | for STREAM. | |
8639 | ||
a9b3a50f PA |
8640 | 2012-01-24 Pedro Alves <[email protected]> |
8641 | ||
8642 | * breakpoint.c (bpstat_stop_status): Moving clearing print_it | |
8643 | outside `bs->stop' block. | |
8644 | (bpstat_what): Rework bp_shlib_event handling. | |
8645 | (internal_bkpt_check_status): If the breakpoint is a | |
8646 | bp_shlib_event, then set bs->stop and bs->print if | |
8647 | stop_on_solib_events is set. | |
8648 | ||
53fe1783 GB |
8649 | 2012-01-24 Gary Benson <[email protected]> |
8650 | ||
8651 | Delete #if 0'd out code. | |
8652 | * stack.c (print_frame_label_vars): Remove. | |
8653 | (catch_info): Likewise. | |
8654 | (_initialize_stack): Remove "info catch" command. | |
8655 | * NEWS: Mention the above. | |
8656 | ||
49c62f2e PA |
8657 | 2012-01-24 Pedro Alves <[email protected]> |
8658 | ||
8659 | * remote.c (remote_add_inferior): New `fake_pid_p' parameter. Use | |
8660 | it. | |
8661 | (remote_notice_new_inferior): If the remote end doesn't support | |
8662 | the multiprocess extensions, then the PID is fake. | |
8663 | (add_current_inferior_and_thread): New. | |
8664 | (remote_start_remote): Use it. | |
8665 | (extended_remote_attach_1): Adjust. | |
8666 | (extended_remote_create_inferior_1): Use | |
8667 | add_current_inferior_and_thread. | |
8668 | ||
d0d8b0c6 JK |
8669 | 2012-01-24 Jan Kratochvil <[email protected]> |
8670 | ||
8671 | Fix watchpoints to be specific for each inferior. | |
8672 | * breakpoint.c (watchpoint_in_thread_scope): Verify also | |
8673 | current_program_space. | |
8674 | * i386-nat.c (i386_inferior_data_cleanup): New. | |
8675 | (i386_inferior_data_get): Replace variable inf_data_local by an | |
8676 | inferior_data call. | |
8677 | (i386_use_watchpoints): Initialize i386_inferior_data. | |
8678 | * linux-nat.c (linux_nat_iterate_watchpoint_lwps): Use INFERIOR_PTID | |
8679 | specific iterate_over_lwps. | |
8680 | ||
4403d8e9 JK |
8681 | 2012-01-24 Jan Kratochvil <[email protected]> |
8682 | ||
8683 | Fix watchpoints across inferior fork. | |
8684 | * amd64-linux-nat.c (update_debug_registers_callback): Update the | |
8685 | comment for linux_nat_iterate_watchpoint_lwps. | |
8686 | (amd64_linux_dr_set_control, amd64_linux_dr_set_addr): Use | |
8687 | linux_nat_iterate_watchpoint_lwps. | |
8688 | (amd64_linux_prepare_to_resume): New comment on Linux kernel. | |
8689 | * i386-linux-nat.c (update_debug_registers_callback): Update the | |
8690 | comment for linux_nat_iterate_watchpoint_lwps. | |
8691 | (i386_linux_dr_set_control, i386_linux_dr_set_addr): Use | |
8692 | linux_nat_iterate_watchpoint_lwps. | |
8693 | (i386_linux_prepare_to_resume): New comment on Linux kernel. | |
8694 | * i386-nat.c: Include inferior.h. | |
8695 | (dr_mirror): Remove. | |
8696 | (i386_inferior_data, struct i386_inferior_data) | |
8697 | (i386_inferior_data_get): New. | |
8698 | (i386_debug_reg_state): Use i386_inferior_data_get. | |
8699 | (i386_cleanup_dregs, i386_update_inferior_debug_regs) | |
8700 | (i386_insert_watchpoint, i386_remove_watchpoint) | |
8701 | (i386_stopped_data_address, i386_insert_hw_breakpoint) | |
8702 | (i386_remove_hw_breakpoint): New variable state, use | |
8703 | i386_debug_reg_state instead of DR_MIRROR. | |
8704 | * linux-nat.c (delete_lwp): New declaration. | |
8705 | (num_lwps): Move here from downwards. | |
8706 | (delete_lwp_cleanup): New. | |
8707 | (linux_child_follow_fork): Create new child_lp, call | |
8708 | linux_nat_new_thread and linux_nat_prepare_to_resume before calling | |
8709 | PTRACE_DETACH. | |
8710 | (num_lwps): Move upwards. | |
8711 | (linux_nat_iterate_watchpoint_lwps): New. | |
8712 | * linux-nat.h (linux_nat_iterate_watchpoint_lwps_ftype): New. | |
8713 | (linux_nat_iterate_watchpoint_lwps_ftype): New declaration. | |
8714 | ||
2992c9a7 | 8715 | 2012-01-24 Joel Brobecker <[email protected]> |
8716 | ||
8717 | GDB 7.4 released. | |
8718 | ||
e360902b PA |
8719 | 2012-01-23 Pedro Alves <[email protected]> |
8720 | ||
8721 | * top.c (caution): Rename to ... | |
8722 | (confirm): ... this. | |
8723 | (show_caution): Rename to ... | |
8724 | (show_confirm): ... this. | |
8725 | (quit_cover): Adjust. | |
8726 | (init_main): Adjust. | |
8727 | * top.h (caution): Rename to ... | |
8728 | (confirm): ... this. | |
8729 | * utils.c (internal_vproblem, defaulted_query): Adjust. | |
8730 | ||
050a2e1d PA |
8731 | 2012-01-23 Pedro Alves <[email protected]> |
8732 | ||
8733 | * top.c (caution): Update comment. | |
8734 | (execute_command): Don't consider the current value of `caution'. | |
8735 | ||
77a35dd8 JK |
8736 | 2012-01-23 Jan Kratochvil <[email protected]> |
8737 | ||
8738 | * cli/cli-cmds.c (find_and_open_script): Handle failure of fdopen. | |
8739 | ||
a71b5a38 UW |
8740 | 2012-01-23 Ulrich Weigand <[email protected]> |
8741 | ||
8742 | * inf-child.c: Include "gdb_stat.h" instead of <sys/stat.h>. | |
8743 | * linux-tdep.c (linux_info_proc): Avoid ARI coding style warning. | |
8744 | * target.c (target_fileio_pwrite): Remove buffer address from | |
8745 | debug output. | |
8746 | (target_fileio_pread): Likewise. | |
8747 | ||
d99bd577 UW |
8748 | 2012-01-20 Ulrich Weigand <[email protected]> |
8749 | ||
8750 | * NEWS: Document remote "info proc" and "generate-core-file". | |
8751 | ||
35c2fab7 UW |
8752 | 2012-01-20 Ulrich Weigand <[email protected]> |
8753 | ||
8754 | * gdbarch.sh (find_memory_regions): New callback. | |
8755 | * gdbarch.c, gdbarch.h: Regenerate. | |
8756 | ||
8757 | * gcore.c (gcore_memory_sections): Try gdbarch find_memory_regions | |
8758 | callback before falling back to target method. | |
8759 | ||
8760 | * linux-nat.c (read_mapping, linux_nat_find_memory_regions): Remove. | |
8761 | (linux_target_install_ops): No longer install it. | |
8762 | ||
8763 | * linux-tdep.c (linux_find_memory_regions): New function. | |
8764 | (linux_init_abi): Install it. | |
8765 | ||
6432734d UW |
8766 | 2012-01-20 Ulrich Weigand <[email protected]> |
8767 | ||
8768 | * gdbarch.sh (make_corefile_notes): New architecture callback. | |
8769 | * gdbarch.c: Regenerate. | |
8770 | * gdbarch.h: Likewise. | |
8771 | ||
8772 | * gcore.c (write_gcore_file): Try gdbarch_make_corefile_notes | |
8773 | before target_make_corefile_notes. If NULL is returned, the | |
8774 | target does not support core file generation. | |
8775 | ||
8776 | * linux-nat.c: Include "linux-tdep.h". | |
8777 | (find_signalled_thread, find_stop_signal): Remove. | |
8778 | (linux_nat_do_thread_registers): Likewise. | |
8779 | (struct linux_nat_corefile_thread_data): Likewise. | |
8780 | (linux_nat_corefile_thread_callback): Likewise. | |
8781 | (iterate_over_spus): Likewise. | |
8782 | (struct linux_spu_corefile_data): Likewise. | |
8783 | (linux_spu_corefile_callback): Likewise. | |
8784 | (linux_spu_make_corefile_notes): Likewise. | |
8785 | (linux_nat_collect_thread_registers): New function. | |
8786 | (linux_nat_make_corefile_notes): Replace contents by call to | |
8787 | linux_make_corefile_notes passing linux_nat_collect_thread_registers | |
8788 | as native-only callback. | |
8789 | ||
8790 | * linux-tdep.h: Include "bfd.h". | |
8791 | (struct regcache): Add forward declaration. | |
8792 | (linux_collect_thread_registers_ftype): New typedef. | |
8793 | (linux_make_corefile_notes): Add prototype. | |
8794 | * linux-tdep.c: Include "gdbthread.h", "gdbcore.h", "regcache.h", | |
8795 | "regset.h", and "elf-bfd.h". | |
8796 | (find_signalled_thread, find_stop_signal): New functions. | |
8797 | (linux_spu_make_corefile_notes): Likewise. | |
8798 | (linux_collect_thread_registers): Likewise. | |
8799 | (struct linux_corefile_thread_data): New data structure. | |
8800 | (linux_corefile_thread_callback): New funcion. | |
8801 | (linux_make_corefile_notes): Likewise. | |
8802 | (linux_make_corefile_notes_1): Likewise. | |
8803 | (linux_init_abi): Install it. | |
8804 | ||
3030c96e UW |
8805 | 2012-01-20 Ulrich Weigand <[email protected]> |
8806 | ||
8807 | * gdbarch.sh (info_proc): New callback. | |
8808 | * gdbarch.c, gdbarch.h: Regenerate. | |
8809 | ||
8810 | * infcmd.c (info_proc_cmd_1): Try gdbarch info_proc callback | |
8811 | before falling back to the target info_proc callback. | |
8812 | ||
8813 | * linux-nat.c: Do not include "cli/cli-utils.h". | |
8814 | (linux_nat_info_proc): Remove. | |
8815 | (linux_target_install_ops): No longer install it. | |
8816 | ||
8817 | * linux-tdep.c: Include "cli/cli-utils.h" and <ctype.h>. | |
8818 | (read_mapping): New function. | |
8819 | (linux_info_proc): Likewise. | |
8820 | (linux_init_abi): Install it. | |
8821 | ||
145b16a9 UW |
8822 | 2012-01-20 Ulrich Weigand <[email protected]> |
8823 | ||
8824 | * defs.h (enum info_proc_what): Moved here from linux-nat.c | |
8825 | * infcmd.c: (info_proc_cmd_1): New function. | |
8826 | (info_proc_cmd): New function, moved here from equivalent routine | |
8827 | orignally in linux-nat.c. | |
8828 | (info_proc_cmd_mappings): Likewise. | |
8829 | (info_proc_cmd_stat): Likewise. | |
8830 | (info_proc_cmd_status): Likewise. | |
8831 | (info_proc_cmd_cwd): Likewise. | |
8832 | (info_proc_cmd_cmdline): Likewise. | |
8833 | (info_proc_cmd_exe): Likewise. | |
8834 | (info_proc_cmd_all): Likewise. | |
8835 | (_initialize_infcmd): Install "info proc" command and subcommands. | |
8836 | ||
8837 | * target.h (struct target_ops): Add to_info_proc. | |
8838 | (target_info_proc): Add prototype. | |
8839 | * target.c (target_info_proc): New function. | |
8840 | ||
8841 | * procfs.c (procfs_info_proc): Add prototype. | |
8842 | (info_proc_cmd): Rename into ... | |
8843 | (procfs_info_proc): ... this. Update argument types as appropriate | |
8844 | for a to_info_proc implementation. Handle "what" argument. | |
8845 | (procfs_target): Install procfs_info_proc. | |
8846 | (_initialize_procfs): No longer install "info proc" command. | |
8847 | ||
8848 | * linux-nat.c: (enum info_proc_what): Remove. | |
8849 | (linux_nat_info_proc_cmd_1): Rename into ... | |
8850 | (linux_nat_info_proc): ... this. Update argument types as appropriate | |
8851 | for a to_info_proc implementation. | |
8852 | (linux_nat_info_proc_cmd): Remove. | |
8853 | (linux_nat_info_proc_cmd_mappings): Likewise. | |
8854 | (linux_nat_info_proc_cmd_stat): Likewise. | |
8855 | (linux_nat_info_proc_cmd_status): Likewise. | |
8856 | (linux_nat_info_proc_cmd_cwd): Likewise. | |
8857 | (linux_nat_info_proc_cmd_cmdline): Likewise. | |
8858 | (linux_nat_info_proc_cmd_exe): Likewise. | |
8859 | (linux_nat_info_proc_cmd_all): Likewise. | |
8860 | (linux_target_install_ops): Install linux_nat_info_proc. | |
8861 | (_initialize_linux_nat): No longer install "info proc" command | |
8862 | and subcommands. | |
8863 | ||
b9e7b9c3 UW |
8864 | 2012-01-20 Ulrich Weigand <[email protected]> |
8865 | ||
8866 | * configure.ac [AC_CHECK_FUNCS]: Check for readlink. | |
8867 | * config.in, configure: Regenerate. | |
8868 | ||
8869 | * target.h (struct target_ops): Add to_fileio_readlink. | |
8870 | (target_fileio_readlink): Add prototype. | |
8871 | * target.c (target_fileio_readlink): New function. | |
8872 | ||
8873 | * inf-child.c: Conditionally include <sys/param.h>. | |
8874 | (inf_child_fileio_readlink): New function. | |
8875 | (inf_child_target): Install it. | |
8876 | ||
8877 | * remote.c (PACKET_vFile_readlink): New enum value. | |
8878 | (remote_hostio_readlink): New function. | |
8879 | (init_remote_ops): Install it. | |
8880 | (_initialize_remote): Handle vFile:readlink packet type. | |
8881 | ||
7313baad UW |
8882 | 2012-01-20 Pedro Alves <[email protected]> |
8883 | Ulrich Weigand <[email protected]> | |
8884 | ||
8885 | * configure.ac [AC_CHECK_FUNCS]: Check for pread and pwrite. | |
8886 | * config.in, configure: Regenerate. | |
8887 | ||
8888 | * target.h (struct target_ops): Add to_fileio_open, to_fileio_pwrite, | |
8889 | to_fileio_pread, to_fileio_close, to_fileio_unlink. | |
8890 | (target_fileio_open): Add prototype. | |
8891 | (target_fileio_pwrite): Likewise. | |
8892 | (target_fileio_pread): Likewise. | |
8893 | (target_fileio_close): Likewise. | |
8894 | (target_fileio_unlink): Likewise. | |
8895 | (target_fileio_read_alloc): Likewise. | |
8896 | (target_fileio_read_stralloc): Likewise. | |
8897 | ||
8898 | * target.c: Include "gdb/fileio.h". | |
8899 | (target_read_stralloc): Accept trailing, but not embedded NUL bytes. | |
8900 | (default_fileio_target): New function. | |
8901 | (target_fileio_open): Likewise. | |
8902 | (target_fileio_pwrite): Likewise. | |
8903 | (target_fileio_pread): Likewise. | |
8904 | (target_fileio_close): Likewise. | |
8905 | (target_fileio_unlink): Likewise. | |
8906 | (target_fileio_close_cleanup): Likewise. | |
8907 | (target_fileio_read_alloc_1): Likewise. | |
8908 | (target_fileio_read_alloc): Likewise. | |
8909 | (target_fileio_read_stralloc): Likewise. | |
8910 | ||
8911 | * inf-child.c: Include "gdb/fileio.h", <sys/types.h>, <sys/stat.h>, | |
8912 | <fcntl.h>, and <unistd.h>. | |
8913 | (inf_child_fileio_open_flags_to_host): New function. | |
8914 | (inf_child_errno_to_fileio_error): Likewise. | |
8915 | (inf_child_fileio_open): Likewise. | |
8916 | (inf_child_fileio_pwrite): Likewise. | |
8917 | (inf_child_fileio_pread): Likewise. | |
8918 | (inf_child_fileio_close): Likewise. | |
8919 | (inf_child_fileio_unlink): Likewise. | |
8920 | (inf_child_target): Install to_fileio routines. | |
8921 | ||
8922 | * remote.c (init_remote_ops): Install to_fileio routines. | |
8923 | ||
901f9912 UW |
8924 | 2012-01-20 Pedro Alves <[email protected]> |
8925 | Ulrich Weigand <[email protected]> | |
8926 | ||
8927 | * remote.c (remote_multi_process_p): Only check for multi-process | |
8928 | protocol feature, do not check for extended protocol. | |
8929 | (remote_supports_multi_process): Check for extended protocol here. | |
8930 | (set_general_process): Likewise. | |
8931 | (extended_remote_kill): Likewise. | |
8932 | (remote_pid_to_str): Likewise. | |
8933 | (remote_query_supported): Always query multiprocess mode. | |
8934 | ||
e714e1bf UW |
8935 | 2012-01-20 Pedro Alves <[email protected]> |
8936 | Ulrich Weigand <[email protected]> | |
8937 | ||
8938 | * inferior.h (struct inferior): Add fake_pid_p. | |
8939 | * inferior.c (exit_inferior_1): Clear fake_pid_p. | |
8940 | * remote.c (remote_start_remote): Set fake_pid_p if we have to use | |
8941 | magic_null_ptid since the remote side doesn't provide a real PID. | |
8942 | ||
50897289 TT |
8943 | 2012-01-19 Tom Tromey <[email protected]> |
8944 | ||
8945 | * NEWS: Combine the two Python sections. | |
8946 | ||
1afc2033 JK |
8947 | 2012-01-19 Jan Kratochvil <[email protected]> |
8948 | ||
8949 | * target.h (target_close): Update comment on the target's unpush state. | |
8950 | ||
305436e0 PA |
8951 | 2012-01-19 Pedro Alves <[email protected]> |
8952 | ||
8953 | * linux-nat.c (linux_nat_close): Call linux_nat_is_async_p and | |
8954 | linux_nat_async directly instead of going through the target | |
8955 | vector. | |
8956 | * target.c (unpush_target): Close target after unpushing it, not | |
8957 | before. | |
8958 | ||
49323895 GB |
8959 | 2012-01-19 Gary Benson <[email protected]> |
8960 | ||
8961 | * mdebugread.c (sort_blocks): Replace integer constants with ones | |
8962 | derived from FIRST_LOCAL_BLOCK. | |
8963 | ||
1db33378 PP |
8964 | 2012-01-18 Paul Pluzhnikov <[email protected]> |
8965 | Jan Kratochvil <[email protected]> | |
8966 | ||
8967 | PR gdb/9538 | |
8968 | * symfile.c (find_separate_debug_file): New function. | |
8969 | (terminate_after_last_dir_separator): Likewise. | |
8970 | (find_separate_debug_file_by_debuglink): Also try realpath. | |
8971 | * configure.ac (AC_CHECK_FUNCS): Add lstat. | |
8972 | * configure: Regenerate. | |
8973 | * config.in: Regenerate. | |
8974 | ||
f83d8a90 DE |
8975 | 2012-01-18 Doug Evans <[email protected]> |
8976 | ||
8977 | * Makefile.in (TARGET_SYSTEM_ROOT, TARGET_SYSTEM_ROOT_DEFINE): Delete. | |
8978 | (main.o): Remove rule. | |
8979 | * configure.ac (BINDIR): Define with AC_DEFINE_DIR. | |
8980 | (--with-sysroot): Rewrite. | |
8981 | * configure: Regenerate. | |
8982 | * config.in: Regenerate. | |
8983 | ||
2dbca4d6 SDJ |
8984 | 2012-01-18 Sergio Durigan Junior <[email protected]> |
8985 | ||
8986 | * parse.c (initialize_expout): New function. | |
8987 | (reallocate_expout): Likewise. | |
8988 | (parse_exp_in_context): Use `initialize_expout' and | |
8989 | `reallocate_expout' when appropriate. | |
8990 | ||
0695b514 PA |
8991 | 2012-01-18 Pedro Alves <[email protected]> |
8992 | ||
8993 | * record.c (struct record_breakpoint, record_breakpoint_p) | |
8994 | (record_breakpoints): New. | |
8995 | (record_insert_breakpoint, record_remove_breakpoint): Manage | |
8996 | record breakpoints list. Only remove breakpoints from the | |
8997 | inferior if they had been inserted there in the first place. | |
8998 | ||
136e1c30 DE |
8999 | 2012-01-17 Doug Evans <[email protected]> |
9000 | ||
9001 | * linespec.c (decode_line_internal): Don't call symtabs_from_filename | |
9002 | if we know we don't have a file name to look for. | |
9003 | ||
c0bf857d PA |
9004 | 2012-01-17 Pedro Alves <[email protected]> |
9005 | ||
9006 | * dwarf2-frame.c (dwarf2_frame_cfa): Throw NOT_AVAILABLE_ERROR, if | |
9007 | the frame's stop reason is UNWIND_UNAVAILABLE. | |
9008 | ||
b486de60 JK |
9009 | 2012-01-17 Jan Kratochvil <[email protected]> |
9010 | ||
9011 | Fix compilation error. | |
9012 | * m2-exp.y (yyerror): Use ANSI C prototype. | |
9013 | ||
d04550a6 SDJ |
9014 | 2012-01-16 Sergio Durigan Junior <[email protected]> |
9015 | ||
9016 | * f-exp.y (parse_number): Convert prototype from K&R to ANSI C. | |
9017 | (growbuf_by_size): Likewise. | |
9018 | (yyerror): Likewise. | |
9019 | * m2-exp.y (make_qualname): Remove function (was #if 0'ed). | |
9020 | (modblock): Remove variable (was #if 0'ed). | |
9021 | (parse_number): Convert prototype from K&R to ANSI C. | |
9022 | (yyerror): Likewise. | |
9023 | * objc-exp.y (parse_number): Likewise. | |
9024 | (yyerror): Likewise. | |
9025 | (yylex): Remove #if 0'ed code. | |
9026 | * p-exp.y (uptok): Convert prototype from K&R to ANSI C. | |
9027 | (yyerror): Likewise. | |
9028 | ||
4aac40c8 TT |
9029 | 2012-01-16 Tom Tromey <[email protected]> |
9030 | ||
9031 | * NEWS: Add item. | |
9032 | * symtab.h (compare_filenames_for_search): Declare. | |
9033 | * symtab.c (compare_filenames_for_search): New function. | |
9034 | (iterate_over_some_symtabs): Use it. | |
9035 | * symfile.h (struct quick_symbol_functions) | |
9036 | <map_symtabs_matching_filename>: Change spec. | |
9037 | * psymtab.c (partial_map_symtabs_matching_filename): Use | |
9038 | compare_filenames_for_search. Update for new spec. | |
9039 | * dwarf2read.c (dw2_map_symtabs_matching_filename): Use | |
9040 | compare_filenames_for_search. Update for new spec. | |
9041 | * breakpoint.c (clear_command): Use compare_filenames_for_search. | |
9042 | ||
cafec441 TT |
9043 | 2012-01-16 Tom Tromey <[email protected]> |
9044 | ||
9045 | PR python/13281: | |
9046 | * gdbtypes.h (TYPE_FLAG_ENUM): New macro. | |
9047 | (struct main_type) <flag_flag_enum>: New field. | |
9048 | * dwarf2read.c (process_enumeration_scope): Detect "flag" enums. | |
9049 | * NEWS: Add entries. | |
9050 | * c-valprint.c (c_val_print) <TYPE_CODE_ENUM>: Handle "flag" | |
9051 | enums. | |
9052 | * python/lib/gdb/printing.py (_EnumInstance): New class. | |
9053 | (FlagEnumerationPrinter): Likewise. | |
9054 | ||
983af33b SDJ |
9055 | 2012-01-16 Sergio Durigan Junior <[email protected]> |
9056 | ||
9057 | * breakpoint.c (create_sals_from_address_default): New function. | |
9058 | (create_breakpoints_sal_default): Likewise. | |
9059 | (decode_linespec_default): Likewise. | |
9060 | (is_marker_spec): Removed. | |
9061 | (strace_marker_p): New function. | |
9062 | (init_breakpoint_sal): Using `strace_marker_p' instead of | |
9063 | `is_marker_spec'. | |
9064 | (create_breakpoint): Call method `create_sals_from_address' from | |
9065 | breakpoint_ops, replacing code that created SALs conditionally | |
9066 | on the type of the breakpoint. Call method `create_breakpoints_sal', | |
9067 | replacing code that created breakpoints conditionally on the type | |
9068 | wanted. | |
9069 | (base_breakpoint_create_sals_from_address): New function. | |
9070 | (base_breakpoint_create_breakpoints_sal): Likewise. | |
9071 | (base_breakpoint_decode_linespec): Likewise. | |
9072 | (base_breakpoint_ops): Add methods | |
9073 | `base_breakpoint_create_sals_from_address', | |
9074 | `base_breakpoint_create_breakpoints_sal' and | |
9075 | `base_breakpoint_decode_linespec'. | |
9076 | (bkpt_create_sals_from_address): New function. | |
9077 | (bkpt_create_breakpoints_sal): Likewise. | |
9078 | (bkpt_decode_linespec): Likewise. | |
9079 | (tracepoint_create_sals_from_address): Likewise. | |
9080 | (tracepoint_create_breakpoints_sal): Likewise. | |
9081 | (tracepoint_decode_linespec): Likewise. | |
9082 | (strace_marker_create_sals_from_address): Likewise. | |
9083 | (strace_marker_create_breakpoints_sal): Likewise. | |
9084 | (strace_marker_decode_linespec): Likewise. | |
9085 | (strace_marker_breakpoint_ops): New variable. | |
9086 | (addr_string_to_sals): Remove `marker_spec'. Call method | |
9087 | `decode_linespec' from breakpoint_ops, replacing code that decoded | |
9088 | an address string into a SAL. Use `strace_marker_p' instead of | |
9089 | `marker_spec'. | |
9090 | (strace_command): Decide whether we are dealing with a static | |
9091 | tracepoint with marker or not. Use the appropriate breakpoint_ops. | |
9092 | (initialize_breakpoint_ops): Initialize new fields of breakpoint_ops. | |
9093 | * breakpoint.h (linespec_result, linespec_sals): New forward | |
9094 | declarations. | |
9095 | (breakpoint_ops) <create_sals_from_address>, | |
9096 | <create_breakpoints_sal>, <decode_linespec>: New methods. | |
9097 | ||
4795f398 DE |
9098 | 2012-01-14 Doug Evans <[email protected]> |
9099 | ||
9100 | * NEWS: Update text for "maint set python print-stack". | |
9101 | It is deprecated in gdb 7.4 and deleted in 7.5. | |
9102 | ||
ee5106fe EZ |
9103 | 2012-01-13 Eli Zaretskii <[email protected]> |
9104 | ||
9105 | * gdb_curses.h (MOUSE_MOVED) [__MINGW32__]: Undefine before | |
9106 | including curses.h. | |
9107 | ||
b161e06f JK |
9108 | 2012-01-12 Jan Kratochvil <[email protected]> |
9109 | ||
9110 | * configure: Regenerate. | |
9111 | * config.in: Regenerate. | |
9112 | ||
85254831 KS |
9113 | 2012-01-12 Keith Seitz <[email protected]> |
9114 | ||
9115 | PR mi/10586 | |
9116 | * varobj.c (ANONYMOUS_STRUCT_NAME): Define. | |
9117 | (ANONYMOUS_UNION_NAME): Define. | |
9118 | (is_path_expr_parent): New function. | |
9119 | (get_path_expr_parent): New function. | |
9120 | (is_anonymous_child): New function. | |
9121 | (create_child_with_value): If the child is anonymous and without | |
9122 | a name, assign an object name to it. | |
9123 | (c_describe_child): Use get_path_expr_parent to determine | |
9124 | the parent expression. | |
9125 | If there field represents an anonymous struct or union and | |
9126 | has no name, set an appropriate display name and expression. | |
9127 | (cplus_describe_child): Likewise. | |
9128 | ||
620fa63a PA |
9129 | 2012-01-12 Pedro Alves <[email protected]> |
9130 | ||
9131 | * i386-tdep.c (i386_frame_cache_1): Also mark the frame base as | |
9132 | available when %ebp is found to be zero (outermost). | |
9133 | ||
2efa2c79 AT |
9134 | 2012-01-11 Andreas Tobler <[email protected]> |
9135 | ||
9136 | * common/gdb_assert.h (gdb_static_assert): Rename static_assert to | |
9137 | an internal gdb_static_assert. | |
9138 | * mi/mi-common.c: Rename static_assert to gdb_static_assert. | |
9139 | ||
88e7d25d TT |
9140 | 2012-01-11 Tom Tromey <[email protected]> |
9141 | ||
9142 | PR gdb/9598: | |
9143 | * breakpoint.c (_initialize_breakpoint): Fix help for "catch | |
9144 | catch" and "catch throw". | |
9145 | ||
72384ba3 PH |
9146 | 2012-01-11 Paul Hilfinger <[email protected]> |
9147 | ||
9148 | * blockframe.c (block_innermost_frame): Start search from selected | |
9149 | frame, if present, or otherwise the current frame. | |
9150 | ||
9151 | * c-exp.y (variable): Update innermost_block for | |
9152 | 'block COLONCOLON NAME' clause. | |
9153 | * m2-exp.y (variable): Ditto. | |
9154 | * objc-exp.y (variable): Ditto. | |
9155 | ||
065a711f TT |
9156 | 2012-01-10 Tom Tromey <[email protected]> |
9157 | ||
9158 | PR python/13199: | |
9159 | * python/python.c (finish_python_initialization): Set sys.argv. | |
9160 | ||
f3f5162e DE |
9161 | 2012-01-10 Doug Evans <[email protected]> |
9162 | ||
9163 | * dwarf2read.c (dwarf_decode_lines): Remove arg "abfd". New arg | |
9164 | "want_line_info". All callers updated. | |
9165 | (dwarf_decode_lines_1): New function. | |
9166 | (handle_DW_AT_stmt_list): Add function comment. | |
9167 | New arg "want_line_info". All callers updated. | |
9168 | (read_file_scope,read_type_unit_scope): Move comment from | |
9169 | handle_DW_AT_stmt_list to here. | |
9170 | ||
9934703b JK |
9171 | 2012-01-10 Jan Kratochvil <[email protected]> |
9172 | ||
9173 | Fix regression after libiberty/ update for GCC PR 6057 and others. | |
9174 | * c-exp.y (operator) <OPERATOR DELETE> | |
9175 | (operator) <OPERATOR DELETE '[' ']'>: Add trailing space. | |
9176 | * cp-name-parser.y (fill_comp, make_operator, make_dtor) | |
9177 | (make_builtin_type, make_name): New variable i, add gdb_assert. | |
9178 | (operator) <OPERATOR NEW>: Update ARGS to 3. | |
9179 | (operator) <OPERATOR DELETE>: Add trailing space. | |
9180 | (operator) <OPERATOR NEW '[' ']'>: Update ARGS to 3. | |
9181 | (operator) <OPERATOR DELETE '[' ']'>: Add trailing space. | |
9182 | * cp-support.c (cp_canonicalize_string): Check NULL from | |
9183 | cp_comp_to_string, call warning and return. | |
9184 | ||
06b9f45f JK |
9185 | 2012-01-10 Jan Kratochvil <[email protected]> |
9186 | ||
9187 | Fix duplicate .o files after omitting libbfd.a. | |
9188 | * Makefile.in (ALL_TARGET_OBS): Remove corelow.o. | |
9189 | (SFILES): Add corelow.c. | |
9190 | (COMMON_OBS): Add corelow.o. | |
9191 | (ALLDEPFILES): Remove corelow.c. | |
9192 | * config/alpha/alpha-linux.mh (NATDEPFILES): Remove corelow.o. | |
9193 | * config/alpha/alpha-osf3.mh: Likewise. | |
9194 | * config/alpha/fbsd.mh: Likewise. | |
9195 | * config/arm/nbsdaout.mh: Likewise. | |
9196 | * config/arm/nbsdelf.mh: Likewise. | |
9197 | * config/i386/i386gnu.mh: Likewise. | |
9198 | * config/ia64/hpux.mh: Likewise. | |
9199 | * config/ia64/linux.mh: Likewise. | |
9200 | * config/m32r/linux.mh: Likewise. | |
9201 | * config/m68k/linux.mh: Likewise. | |
9202 | * config/mips/irix5.mh: Likewise. | |
9203 | * config/mips/irix6.mh: Likewise. | |
9204 | * config/pa/hpux.mh: Likewise. | |
9205 | * config/pa/linux.mh: Likewise. | |
9206 | * config/powerpc/aix.mh: Likewise. | |
9207 | * config/sparc/linux.mh: Likewise. | |
9208 | * config/sparc/linux64.mh: Likewise. | |
9209 | * config/sparc/sol2.mh: Likewise. | |
9210 | * config/vax/vax.mh: Likewise. | |
9211 | * configure.tgt (alpha*-*-freebsd* alpha*-*-kfreebsd*-gnu) | |
9212 | (alpha*-*-netbsd*, alpha*-*-knetbsd*-gnu, alpha*-*-openbsd*) | |
9213 | (am33_2.0*-*-linux*, arm*-wince-pe, arm*-*-mingw32ce*, arm*-*-linux*) | |
9214 | (arm*-*-openbsd*, cris*, frv-*-*, hppa*-*-hpux*, hppa*-*-netbsd*) | |
9215 | (hppa*-*-openbsd*, i[34567]86-*-dicos*, i[34567]86-*-freebsd*) | |
9216 | (i[34567]86-*-kfreebsd*-gnu, i[34567]86-*-netbsd*) | |
9217 | (i[34567]86-*-knetbsd*-gnu, i[34567]86-*-openbsd*, i[34567]86-*-nto*) | |
9218 | (i[34567]86-*-solaris2.1[0-9]*, x86_64-*-solaris2.1[0-9]*) | |
9219 | (i[34567]86-*-solaris*, i[34567]86-*-linux*, i[34567]86-*-cygwin*) | |
9220 | (i[34567]86-*-mingw32*, m68*-*-netbsd*, m68*-*-knetbsd*-gnu) | |
9221 | (m68*-*-openbsd*, m88*-*-openbsd*, microblaze*-linux-*) | |
9222 | (microblaze*-*-linux*, mips*-*-linux*, mips*-*-netbsd*) | |
9223 | (mips*-*-knetbsd*-gnu, mips64*-*-openbsd*, powerpc-*-netbsd*) | |
9224 | (powerpc-*-knetbsd*-gnu, powerpc-*-openbsd*, powerpc-*-linux*) | |
9225 | (powerpc64-*-linux*, s390*-*-*, score-*-*, sh*-*-linux*) | |
9226 | (sh*-*-netbsdelf*, sh*-*-knetbsd*-gnu, sh*-*-openbsd*) | |
9227 | (sparc*-*-freebsd*, sparc*-*-kfreebsd*-gnu, sparc-*-netbsd*) | |
9228 | (sparc-*-knetbsd*-gnu, sparc64-*-netbsd*, sparc64-*-knetbsd*-gnu) | |
9229 | (sparc-*-openbsd*, sparc64-*-openbsd*, tic6x-*-*linux, vax-*-netbsd*) | |
9230 | (vax-*-knetbsd*-gnu, vax-*-openbsd*, x86_64-*-dicos*, x86_64-*-linux*) | |
9231 | (x86_64-*-freebsd*, x86_64-*-kfreebsd*-gnu, x86_64-*-netbsd*) | |
9232 | (x86_64-*-knetbsd*-gnu, x86_64-*-openbsd*, xtensa*-*-linux*): Remove | |
9233 | corelow.o from gdb_target_obs. | |
9234 | * corefile.c (core_target): Update the comment on NULL value. | |
9235 | (core_file_command): Replace error by gdb_assert on CORE_TARGET. | |
9236 | * corelow.c (sniff_core_bfd): Call error instead of warning on zero | |
9237 | MATCHES. Drop YUMMY set on NULL. | |
9238 | (core_close): Do not call exit_inferior_silent on zero PID. Do not | |
9239 | reclaim CORE_DATA if it is already NULL. | |
9240 | ||
34365054 DE |
9241 | 2012-01-09 Doug Evans <[email protected]> |
9242 | ||
9243 | * gdbtypes.c (safe_parse_type): Initialize type to keep gcc happy. | |
9244 | * varobj.c (varobj_set_value): Initialize val,value to keep gcc happy. | |
9245 | ||
696166a3 KS |
9246 | 2012-01-09 Keith Seitz <[email protected]> |
9247 | ||
9248 | * breakpoint.c (wrapper.h): Don't include. | |
9249 | ||
8e7b59a5 KS |
9250 | 2012-01-09 Keith Seitz <[email protected]> |
9251 | ||
9252 | * Makefile.in (SFILES): Remove wrapper.c. | |
9253 | (HFILES_NO_SRCDIR): Remove wrapper.h. | |
9254 | (COMMON_OBS): Remove wrapper.o. | |
9255 | * cli/cli-interp.c: Don't inlude wrapper.h. | |
9256 | * corelow.c: Likewise. | |
9257 | (core_open): Replace gdb_target_find_new_threads with | |
9258 | TRY_CATCH around target_find_new_threads. | |
9259 | * eval.c (fetch_subexp_value): Likewise for value_fetch_lazy. | |
9260 | * gdbtypes.c (safe_parse_type): Likewise for parse_and_eval_type. | |
9261 | * varobj.c (varobj_create): Likewise for parse_exp_1 and | |
9262 | evaluate_expression. | |
9263 | (varobj_set_value): Likewise for evaluate_expression and | |
9264 | value_assign. | |
9265 | (install_new_variable): Likewise for value_fetch_lazy. | |
9266 | (adjust_value_for_child_access): Likewise for value_ind. | |
9267 | (c_describe_child): Likewise for value_subscript and | |
9268 | value_ind. | |
9269 | (c_value_of_root): Likewise for evaluate_expression. | |
9270 | * wrapper.c: Remove. | |
9271 | * wrapper.h: Remove. | |
9272 | ||
1a4eeb98 DE |
9273 | 2012-01-09 Doug Evans <[email protected]> |
9274 | ||
9ff913ba DE |
9275 | * dwarf2read.c (read_and_check_comp_unit_head): Renamed from |
9276 | partial_read_comp_unit_head. Replace "buffer", "buffer_size" and | |
9277 | "abfd" args with "section". All callers updated. | |
9278 | Error checking code moved ... | |
9279 | (error_check_comp_unit_head): ... here. New function. | |
9280 | (read_and_check_type_unit_head): Renamed from read_type_unit_head. | |
9281 | Delete arg "abfd". New arg "type_offset". All callers updated. | |
9282 | (create_debug_types_hash_table): Simplify by using | |
9283 | read_and_check_type_unit_head. | |
9284 | ||
1a4eeb98 DE |
9285 | * parser-defs.h (namecopy): Delete. |
9286 | * parse.c (namecopy, namecopy_size): Move into copy_name. | |
9287 | ||
2e6af8c0 JK |
9288 | 2012-01-09 Jan Kratochvil <[email protected]> |
9289 | ||
9290 | Partially fix duplicate .o files after omitting libbfd.a. | |
9291 | * config/alpha/alpha-osf3.mh (NATDEPFILES): Remove solib.o. | |
9292 | * config/i386/nbsdaout.mh (NATDEPFILES): Remove solib.o. | |
9293 | * config/i386/obsdaout.mh (NATDEPFILES): Remove solib.o. | |
9294 | * config/m68k/nbsdaout.mh (NATDEPFILES): Remove solib.o. | |
9295 | * config/m68k/obsd.mh (NATDEPFILES): Remove solib.o. | |
9296 | * config/powerpc/aix.mh (NATDEPFILES): Remove xcoffread.o. | |
9297 | * config/vax/nbsdaout.mh (NATDEPFILES): Remove solib.o. | |
9298 | ||
9f2f828a PA |
9299 | 2012-01-09 Pedro Alves <[email protected]> |
9300 | ||
9301 | * MAINTAINERS: Update my email address. | |
9302 | ||
4d72c0bc DE |
9303 | 2012-01-08 Doug Evans <[email protected]> |
9304 | ||
d467dd73 DE |
9305 | * dwarf2read.c (dwarf2_per_objfile): Rename n_type_comp_units to |
9306 | n_type_units. Rename type_comp_units to all_type_units. | |
9307 | All uses updated. | |
9308 | (add_signatured_type_cu_to_table): Renamed from | |
9309 | add_signatured_type_cu_to_list. All callers updated. | |
9310 | ||
4d72c0bc DE |
9311 | * gdbtypes.h (struct cplus_struct_type): Delete member |
9312 | nfn_fields_total. All uses removed. | |
9313 | ||
21b2bd31 DE |
9314 | 2012-01-06 Doug Evans <[email protected]> |
9315 | ||
9316 | * dwarf2read.c: Move FIXME from dwarf2_build_psymtabs_hard | |
9317 | to top of file. | |
9318 | (dwarf2_find_comp_unit): Delete. | |
9319 | (process_psymtab_comp_unit): Make result "void". | |
9320 | Delete args buffer, info_ptr, buffer_size, and replace with | |
9321 | "section". All callers updated. | |
9322 | (dwarf2_build_psymtabs_hard): Simplify. | |
9323 | ||
bfd189b1 SDJ |
9324 | 2012-01-06 Sergio Durigan Junior <[email protected]> |
9325 | Thiago Jung Bauermann <[email protected]> | |
9326 | ||
9327 | * ada-lang.c (ada_exception_name_addr): Add `volatile' keyword | |
9328 | before `struct gdb_exception'. | |
9329 | * breakpoint.c (update_global_location_list_nothrow) | |
9330 | (update_breakpoint_locations, enable_breakpoint_disp): Likewise. | |
9331 | * cp-abi.c (value_rtti_type): Likewise. | |
9332 | * cp-support.c (cp_validate_operator): Likewise. | |
9333 | * infrun.c (insert_exception_resume_breakpoint) | |
9334 | (check_exception_resume, keep_going): Likewise. | |
9335 | * mi-interp.c (mi_breakpoint_created) | |
9336 | (mi_breakpoint_modified): Likewise. | |
9337 | * rs6000-aix-tdep.c (rs6000_convert_from_func_ptr_addr): Likewise. | |
9338 | * solib-ia64-hpux.c (ia64_hpux_at_dld_breakpoint_p) | |
9339 | (ia64_hpux_handle_dld_breakpoint_1): Likewise. | |
9340 | ||
6b07635f DE |
9341 | 2012-01-05 Doug Evans <[email protected]> |
9342 | ||
0b30b85c DE |
9343 | * dwarf2read.c (statement_prologue): Delete, unused. |
9344 | ||
98714339 DE |
9345 | * dwarf2read.c (dwarf2_per_cu_addr_size): Make result type an int. |
9346 | * dwarf2loc.h (dwarf2_per_cu_addr_size): Update. | |
9347 | ||
6b07635f DE |
9348 | * dwarf2read.c (comp_unit_header): Delete, unused. |
9349 | ||
761f4555 UW |
9350 | 2012-01-05 Ulrich Weigand <[email protected]> |
9351 | ||
9352 | * configure.tgt [s390*-*-*] (gdb_target_obs): Add corelow.o. | |
9353 | * config/s390/s390.mh (NATDEPFILES): Remove corelow.o. | |
9354 | ||
2ca0b532 PA |
9355 | 2012-01-05 Khoo Yit Phang <[email protected]> |
9356 | ||
9357 | * infrun.c (normal_stop): Don't skip calling the normal_stop | |
9358 | observers if the thread was doing a multi-step, but stopped for | |
9359 | some reason other than stepping. | |
9360 | ||
50aeff07 PA |
9361 | 2012-01-05 Pedro Alves <[email protected]> |
9362 | ||
9363 | * cli/cli-decode.h: Add comments. | |
9364 | (CMD_LIST_AMBIGUOUS): Moved to command.h | |
9365 | (add_cmd, add_alias_cmd, add_prefix_cmd, add_abbrev_prefix_cmd) | |
9366 | (set_cmd_cfunc, set_cmd_sfunc, set_cmd_completer, cmd_cfunc_eq) | |
9367 | (set_cmd_context, get_cmd_context, lookup_cmd, lookup_cmd_1) | |
9368 | (deprecate_cmd, deprecated_cmd_warning, lookup_cmd_composition) | |
9369 | (add_com, add_com_alias, add_info, add_info_alias) | |
9370 | (complete_on_cmdlist, complete_on_enum, help_list): Remove | |
9371 | declarations. | |
9372 | * command.h: Add and adjust comments. | |
9373 | (CMD_LIST_AMBIGUOUS): Moved here. | |
9374 | (help_cmd, help_cmd_list): Delete declarations. | |
9375 | ||
5953832c DE |
9376 | 2012-01-04 Doug Evans <[email protected]> |
9377 | ||
e5fe5e75 DE |
9378 | * dwarf2read.c (dwarf2_read_abbrevs): Delete arg "abfd". |
9379 | All callers updated. | |
9380 | (load_full_type_unit): Renamed from read_signatured_type_at_offset. | |
9381 | Replace all arguments with "per_cu". All callers updated. | |
9382 | ||
28dee7f5 DE |
9383 | * dwarf2read.c (dwarf2_per_cu_data): Remove outdated comment. |
9384 | ||
23745b47 DE |
9385 | * dwarf2read.c (init_one_comp_unit): Delete arg "objfile". |
9386 | New arg "per_cu". All callers updated. | |
9387 | ||
5953832c DE |
9388 | Delete #if 0'd out code. |
9389 | * language.c (binop_result_type): Delete. | |
9390 | (simple_type, ordered_type, same_type, integral_type): Delete. | |
9391 | (numeric_type, character_type, string_type, boolean_type): Delete. | |
9392 | (float_type, structured_type): Delete. | |
9393 | * language.h: Update. | |
9394 | ||
0f5b7562 TT |
9395 | 2012-01-04 Tom Tromey <[email protected]> |
9396 | ||
9397 | * python/py-value.c (valpy_binop): Initialize 'res_val'. | |
9398 | ||
78218f56 JB |
9399 | 2012-01-04 Joel Brobecker <[email protected]> |
9400 | ||
9401 | * corefile.c (close_exec_file): Delete. | |
9402 | (reopen_exec_file): Remove commented out code that seems related | |
9403 | to close_exec_file, which is being deleted here. | |
9404 | * inferior.h (close_exec_file): Delete. | |
9405 | * fork-child.c (fork_inferior): Remove call to fork_inferior. | |
9406 | ||
0fcd72ba JB |
9407 | 2012-01-04 Joel Brobecker <[email protected]> |
9408 | ||
9409 | * ada-lang.c: #include "cli/cli-utils.h". | |
9410 | (get_selections): Use skip_spaces. | |
9411 | (ada_get_next_arg): Use skip_spaces and skip_to_space. | |
9412 | (catch_ada_exception_command_split): Use skip_spaces. | |
9413 | (ada_decode_assert_location): Likewise. | |
9414 | ||
1dabb4c4 JB |
9415 | 2012-01-04 Joel Brobecker <[email protected]> |
9416 | ||
9417 | * linespec.c (decode_line_internal): Check for C++ or Java | |
9418 | compound constructs only if the current language is C, C++ | |
9419 | or Java. | |
9420 | ||
5931a2fa JK |
9421 | 2012-01-04 Jan Kratochvil <[email protected]> |
9422 | ||
9423 | Revert: | |
9424 | 2012-01-02 Jan Kratochvil <[email protected]> | |
9425 | Joel Brobecker <[email protected]> | |
9426 | Fix regression for gdb.cp/gdb2495.exp with gcc-4.7. | |
9427 | * arch-utils.c (displaced_step_at_entry_point): Incrase BP_LEN skip to | |
9428 | 3 times. | |
9429 | * infcall.c (call_function_by_hand) <AT_SYMBOL>: Move it upwards and | |
9430 | fall through into AT_ENTRY_POINT. | |
9431 | (call_function_by_hand) <AT_ENTRY_POINT>: New variable bp_len. Adjust | |
9432 | DUMMY_ADDR with it. | |
9433 | * ppc-linux-tdep.c (ppc_linux_displaced_step_location): Increase | |
9434 | PPC_INSN_SIZE skip to 3 times. | |
9435 | ||
1a2da5ee JB |
9436 | 2012-01-04 Joel Brobecker <[email protected]> |
9437 | ||
9438 | * linespec.c (add_minsym): Preserve function descriptors. | |
9439 | ||
8645ff69 UW |
9440 | 2012-01-04 Ulrich Weigand <[email protected]> |
9441 | ||
9442 | * breakpoint.c (all_locations_are_pending): Consider locations | |
9443 | in program spaces executing during startup pending as well. | |
9444 | ||
0b302171 JB |
9445 | 2012-01-04 Joel Brobecker <[email protected]> |
9446 | ||
9447 | Copyright year update in most files of the GDB Project. | |
9448 | ||
8ba098ad JB |
9449 | 2012-01-04 Joel Brobecker <[email protected]> |
9450 | ||
9451 | * copyright.sh: Delete. | |
9452 | * copyright.py: Rewrite. | |
9453 | ||
09c01c30 JB |
9454 | 2012-01-04 Joel Brobecker <[email protected]> |
9455 | ||
9456 | * gnulib/extra/update-copyright: New file, imported from gnulib. | |
9457 | ||
3c36c0af JB |
9458 | 2012-01-04 Joel Brobecker <[email protected]> |
9459 | ||
9460 | * README (Copyright and License Notices): New section. | |
9461 | ||
888fe1e1 TT |
9462 | 2012-01-03 Tom Tromey <[email protected]> |
9463 | ||
9464 | PR python/12533: | |
9465 | * python/py-value.c (valpy_dereference, valpy_get_address | |
9466 | valpy_get_dynamic_type, valpy_lazy_string, valpy_do_cast) | |
9467 | (valpy_getitem, valpy_call, valpy_binop, valpy_negative) | |
9468 | (valpy_absolute, valpy_richcompare): Free intermediate values. | |
9469 | ||
6e681866 JB |
9470 | 2011-01-03 Joel Brobecker <[email protected]> |
9471 | ||
9472 | * ada-lang.c: Reformat the copyright notice. | |
9473 | ||
0cd09acb JK |
9474 | 2012-01-02 Jan Kratochvil <[email protected]> |
9475 | ||
9476 | * Makefile.in (ALL_TARGET_OBS): Remove solib-target.o. | |
9477 | * configure.tgt (arm*-wince-pe, arm*-*-mingw32ce*, arm*-*-symbianelf*) | |
9478 | (i[34567]86-*-dicos*, i[34567]86-*-cygwin*, i[34567]86-*-mingw32*) | |
9479 | (x86_64-*-dicos*, x86_64-*-mingw*): Remove solib-target.o. | |
9480 | Revert this part of: | |
9481 | 2012-01-02 Jan Kratochvil <[email protected]> | |
9482 | Build gdb directly from *.o files not using libgdb.a. | |
9483 | * Makefile.in (COMMON_OBS): Remove solib-target.o. | |
9484 | ||
12c3e59c JB |
9485 | 2012-01-02 Joel Brobecker <[email protected]> |
9486 | ||
9487 | * gdb/common/gdb_thread_db.h, gdb/dbxread.c, gdb/environ.c, | |
9488 | gdb/gcore.h, gdb/rs6000-tdep.h, gdb/s390-nat.c, gdb/tic6x-tdep.c: | |
9489 | Reformat the copyright header. | |
9490 | ||
11bf1490 JK |
9491 | 2012-01-02 Jan Kratochvil <[email protected]> |
9492 | ||
9493 | Revert this part of: | |
9494 | 2012-01-02 Jan Kratochvil <[email protected]> | |
9495 | Remove the gdbtui binary. | |
9496 | * gdb.c (main): Remove args.interpreter_p initialization. | |
9497 | * main.c (captured_main): Set INTERPRETER_P directly by INTERP_CONSOLE. | |
9498 | * main.h (struct captured_main_args): Remove interpreter_p. | |
9499 | ||
1fef196f JB |
9500 | 2012-01-02 Joel Brobecker <[email protected]> |
9501 | ||
9502 | * config/djgpp/fnchange.lst: Add entry for ChangeLog-2011. | |
9503 | ||
67827812 JB |
9504 | 2012-01-02 Joel Brobecker <[email protected]> |
9505 | ||
9506 | * top.c (print_gdb_version): Update copyright year. | |
9507 | ||
a4d0b831 YQ |
9508 | 2012-01-02 Yao Qi <[email protected]> |
9509 | ||
9510 | * inf-ptrace.c (inf_ptrace_xfer_partial): Reindent. | |
9511 | ||
b5914469 JK |
9512 | 2012-01-02 Jan Kratochvil <[email protected]> |
9513 | Joel Brobecker <[email protected]> | |
9514 | ||
9515 | Fix regression for gdb.cp/gdb2495.exp with gcc-4.7. | |
9516 | * arch-utils.c (displaced_step_at_entry_point): Incrase BP_LEN skip to | |
9517 | 3 times. | |
9518 | * infcall.c (call_function_by_hand) <AT_SYMBOL>: Move it upwards and | |
9519 | fall through into AT_ENTRY_POINT. | |
9520 | (call_function_by_hand) <AT_ENTRY_POINT>: New variable bp_len. Adjust | |
9521 | DUMMY_ADDR with it. | |
9522 | * ppc-linux-tdep.c (ppc_linux_displaced_step_location): Increase | |
9523 | PPC_INSN_SIZE skip to 3 times. | |
9524 | ||
8da828f7 JK |
9525 | 2012-01-02 Jan Kratochvil <[email protected]> |
9526 | ||
9527 | * amd64-linux-nat.c (update_debug_registers_callback): New comment on | |
9528 | the return value. | |
9529 | * i386-linux-nat.c (update_debug_registers_callback): Likewise. | |
9530 | ||
8574e74b JK |
9531 | 2012-01-02 Jan Kratochvil <[email protected]> |
9532 | ||
9533 | Build gdb directly from *.o files not using libgdb.a. | |
9534 | * Makefile.in (SUBDIR_TUI_OBS): Remove duplicate tui.o. | |
9535 | (COMMON_OBS): Remove solib-target.o. | |
9536 | (LIBGDB_OBS, libgdb.a): Move it before the gdb$(EXEEXT) rule. | |
9537 | (gdb$(EXEEXT)): Replace libgdb.a with $(LIBGDB_OBS). | |
9538 | (LIBGDB_OBS, libgdb.a): Move it above. | |
9539 | * configure.tgt (alpha*-*-linux*, alpha*-*-freebsd*) | |
9540 | (alpha*-*-kfreebsd*-gnu, alpha*-*-netbsd*, alpha*-*-knetbsd*-gnu) | |
9541 | (alpha*-*-openbsd*, am33_2.0*-*-linux*, arm*-wince-pe) | |
9542 | (arm*-*-mingw32ce*, arm*-*-linux*, arm*-*-netbsd*, arm*-*-knetbsd*-gnu) | |
9543 | (arm*-*-openbsd*, cris*, frv-*-*, hppa*-*-hpux*, hppa*-*-linux*) | |
9544 | (hppa*-*-netbsd*, hppa*-*-openbsd*, i[34567]86-*-darwin*) | |
9545 | (i[34567]86-*-dicos*, i[34567]86-*-freebsd*, i[34567]86-*-kfreebsd*-gnu) | |
9546 | (i[34567]86-*-netbsd*, i[34567]86-*-knetbsd*-gnu, i[34567]86-*-openbsd*) | |
9547 | (i[34567]86-*-nto*, i[34567]86-*-solaris2.1[0-9]*) | |
9548 | (x86_64-*-solaris2.1[0-9]*, i[34567]86-*-solaris*, i[34567]86-*-linux*) | |
9549 | (i[34567]86-*-gnu*, ia64-*-linux*, m32r*-*-linux*, m68*-*-linux*) | |
9550 | (m68*-*-netbsd*, m68*-*-knetbsd*-gnu, m68*-*-openbsd*) | |
9551 | (microblaze*-linux-*, microblaze*-*-linux*, mips*-sgi-irix5*) | |
9552 | (mips*-sgi-irix6*, mips*-*-linux*, mips*-*-netbsd*) | |
9553 | (mips*-*-knetbsd*-gnu, mips64*-*-openbsd*, powerpc-*-netbsd*) | |
9554 | (powerpc-*-knetbsd*-gnu, powerpc-*-openbsd*, powerpc-*-aix*, rs6000-*-*) | |
9555 | (powerpc-*-linux*, powerpc64-*-linux*, powerpc*-*-*, s390*-*-*) | |
9556 | (sh*-*-linux*, sh*-*-netbsdelf*, sh*-*-knetbsd*-gnu, sh*-*-openbsd*) | |
9557 | (sparc-*-linux*, sparc64-*-linux*, sparc*-*-freebsd*) | |
9558 | (sparc*-*-kfreebsd*-gnu, sparc-*-netbsd*, sparc-*-knetbsd*-gnu) | |
9559 | (sparc64-*-netbsd*, sparc64-*-knetbsd*-gnu, sparc-*-openbsd*) | |
9560 | (sparc64-*-openbsd*, sparc-*-solaris2.[0-6], sparc-*-solaris2.[0-6].*) | |
9561 | (sparc-*-solaris2*, sparcv9-*-solaris2*, sparc64-*-solaris2*) | |
9562 | (vax-*-netbsd*, vax-*-knetbsd*-gnu, x86_64-*-darwin*, x86_64-*-dicos*) | |
9563 | (x86_64-*-linux*, x86_64-*-freebsd*, x86_64-*-kfreebsd*-gnu) | |
9564 | (x86_64-*-netbsd*, x86_64-*-knetbsd*-gnu, x86_64-*-openbsd*) | |
9565 | (xtensa*-*-linux*, xtensa*): Remove solib.o from gdb_target_obs. | |
9566 | ||
217bff3e JK |
9567 | 2012-01-02 Jan Kratochvil <[email protected]> |
9568 | ||
9569 | Remove the gdbtui binary. | |
9570 | * .gitignore (/gdbtui): Remove. | |
9571 | * Makefile.in (TUI): Remove. | |
9572 | (SUBDIR_TUI_OBS): Remove tui-main.o. | |
9573 | (SUBDIR_TUI_SRCS): Remove tui/tui-main.c. | |
9574 | (all-tui, install-tui, uninstall-tui, $(TUI)$(EXEEXT), clean-tui) | |
9575 | (tui-main.o): Remove. | |
9576 | (all_object_files): Remove tui-main.o. | |
9577 | * NEWS: New note for the gdbtui removal. | |
9578 | * configure: Rebuilt. | |
9579 | * configure.ac: No longer add all-tui, clean-tui, install-tui and | |
9580 | uninstall-tui to CONFIG_ALL, CONFIG_CLEAN, CONFIG_INSTALL and | |
9581 | CONFIG_UNINSTALL respectively. | |
9582 | * gdb.c (main): Remove args.interpreter_p initialization. | |
9583 | * main.c (captured_main): Set INTERPRETER_P directly by INTERP_CONSOLE. | |
9584 | * main.h (struct captured_main_args): Remove interpreter_p. | |
9585 | * tui/tui-main.c: Remove. | |
9586 | ||
9cdd5dbd DE |
9587 | 2012-01-01 Doug Evans <[email protected]> |
9588 | ||
bb5ed363 DE |
9589 | * dwarf2read.c (dwarf2_compute_name): Simplify objfile references. |
9590 | (dwarf2_physname, read_import_statement): Ditto. | |
9591 | (read_call_site_scope, dwarf2_record_block_ranges): Ditto. | |
9592 | (process_structure_scope read_subroutine_type): Ditto. | |
9593 | (read_typedef, load_partial_dies, read_partial_die): Ditto. | |
9594 | (find_partial_die, dwarf_decode_lines, lookup_die_type): Ditto. | |
9595 | (dwarf2_fetch_die_location_block): Ditto. | |
9596 | (dwarf_decode_macros, dwarf2_symbol_mark_computed): Ditto. | |
9597 | ||
a0f42c21 DE |
9598 | * dwarf2read.c (read_signatured_type): Delete `objfile' arg. |
9599 | All callers updated. | |
9600 | (load_full_comp_unit, queue_comp_unit, process_queue): Ditto. | |
9601 | (dw2_do_instantiate_symtab, dw2_instantiate_symtab): Ditto. | |
9602 | (process_psymtab_comp_unit, load_partial_comp_unit): Ditto. | |
9603 | ||
2dc860c0 DE |
9604 | * dwarf2read.c (load_cu): Move assert to more useful location. |
9605 | ||
68dc6402 DE |
9606 | * dwarf2read.c (free_heap_comp_unit): Renamed from free_one_comp_unit. |
9607 | All callers updated. | |
9608 | ||
9cdd5dbd DE |
9609 | * dwarf2read.c (dwarf2_per_objfile): Add comment. |
9610 | (dwarf2_elf_names): Minor reformat. | |
9611 | (dwarf2_per_cu_data): Tweak comment. | |
9612 | (dwarf2_read_section): Fix comment. | |
9613 | (create_all_comp_units): Fix comment. | |
9614 | (load_full_comp_unit): Fix comment. | |
9615 | (process_full_comp_unit): Fix comment. | |
9616 | (read_signatured_type): Fix comment. | |
9617 | ||
0c10e53e | 9618 | For older changes see ChangeLog-2011. |
c906108c SS |
9619 | \f |
9620 | Local Variables: | |
9621 | mode: change-log | |
9622 | left-margin: 8 | |
9623 | fill-column: 74 | |
9624 | version-control: never | |
57da7796 | 9625 | coding: utf-8 |
c906108c | 9626 | End: |