]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/ChangeLog
2011-03-22 Phil Muldoon <pmuldoon@redhat.com>
[thirdparty/binutils-gdb.git] / gdb / ChangeLog
CommitLineData
da5d4055
PM
12011-03-22 Phil Muldoon <pmuldoon@redhat.com>
2
3 * NEWS: Document gdb.Write stream keyword.
4
29e0eb9c
JK
52011-03-22 Jan Kratochvil <jan.kratochvil@redhat.com>
6
7 Revert:
8 2011-03-21 Jan Kratochvil <jan.kratochvil@redhat.com>
9 * dwarf2read.c (producer_is_gxx_lt_4_6): New function.
10 (dwarf2_add_field): Fix new_field->accessibility for
11 cu->header.version >= 3 while verifying also producer_is_gxx_lt_4_6.
12
05775840
PM
132011-03-22 Phil Muldoon <pmuldoon@redhat.com>
14
15 PR python/12183
16
17 * python/py-function.c (fnpy_call): Treat GdbErrors differently to
18 other error classes. Do not print stack trace.
19
a0cb7835
JK
202011-03-21 Jan Kratochvil <jan.kratochvil@redhat.com>
21
22 * dwarf2read.c (producer_is_gxx_lt_4_6): New function.
23 (dwarf2_add_field): Fix new_field->accessibility for
24 cu->header.version >= 3 while verifying also producer_is_gxx_lt_4_6.
25
d19f7eee
UW
262011-03-21 Ulrich Weigand <ulrich.weigand@linaro.org>
27
28 * arm-tdep.c (arm_analyze_prologue): Do not abort parsing when
29 encountering a load via a non-SP register.
30
4a2fbb50
UW
312011-03-21 Ulrich Weigand <uweigand@de.ibm.com>
32
33 * tramp-frame.c (tramp_frame_prepend_unwinder): Set stop_reason
34 field in returned unwinder.
35
3489610d
JB
362012-03-21 Jan Kratochvil <jan.kratochvil@redhat.com>
37
38 * ada-lang.c (replace_operator_with_call): Copy also GDBARCH.
39
8c1a34e7
JB
402012-03-21 Joel Brobecker <brobecker@adacore.com>
41
42 * ada-lang.c (replace_operator_with_call): Use xzalloc instead
43 of xmalloc.
44
8fbca658
PA
452012-03-18 Pedro Alves <pedro@codesourcery.com>
46
47 * frame.c (frame_unwind_register): Throw an error if unwinding the
48 register failed.
49 * get_prev_frame_1 (get_prev_frame_1): Ask the unwinder if there's
50 an unwind stop reason.
51 (frame_stop_reason_string): Handle UNWIND_UNAVAILABLE.
52 * frame.h (enum unwind_stop_reason) <UNWIND_OUTERMOST,
53 UNWIND_UNAVAILABLE>: New.
54 * inline-frame.c (inline_frame_unwind): Install
55 default_frame_unwind_stop_reason.
56 * frame-unwind.c: Include "exceptions.h".
57 (frame_unwind_find_by_frame): Swallow NOT_AVAILABLE_ERROR errors.
58 (default_frame_unwind_stop_reason): New.
59 * frame-unwind.h (frame_unwind_stop_reason_ftype): New typedef.
60 (default_frame_unwind_stop_reason): Declare.
61 (struct frame_unwind) <stop_reason>: New function pointer.
62
63 * dummy-frame.c: Install default_frame_unwind_stop_reason.
64 * dwarf2-frame.c: Include exceptions.h.
65 (struct dwarf2_frame_cache) <unavailable_retaddr>: New field.
66 (dwarf2_frame_cache): Swallow NOT_AVAILABLE_ERROR errors when
67 computing the CFA. If such an error was thrown, set
68 unavailable_retaddr.
69 (dwarf2_frame_unwind_stop_reason): New.
70 (dwarf2_frame_this_id): Don't build a frame id if the CFA was
71 unavailable.
72 (dwarf2_frame_unwind): Install dwarf2_frame_unwind_stop_reason.
73 (dwarf2_signal_frame_unwind): Ditto.
74
75 * amd64-tdep.c: Include "exceptions.h".
76 (struct amd64_frame_cache): New field "base_p".
77 (amd64_init_frame_cache): Clear it.
78 (amd64_frame_cache_1): New, factored out from amd64_frame_cache.
79 Avoid reading registers with functions that throw if the register
80 is not necessary to compute the frame base.
81 (amd64_frame_cache): Reimplement wrapping amd64_frame_cache_1, and
82 swallowing NOT_AVAILABLE_ERROR.
83 (amd64_frame_unwind_stop_reason): New.
84 (amd64_frame_this_id): Don't build a frame id if the frame base
85 was unavailable.
86 (amd64_frame_unwind): Install amd64_frame_unwind_stop_reason.
87 (amd64_sigtramp_frame_cache): Swallow NOT_AVAILABLE_ERROR, and set
88 base_p if the frame base was computable.
89 (amd64_sigtramp_frame_unwind_stop_reason): New.
90 (amd64_sigtramp_frame_this_id): Don't build a frame id if the
91 frame base was unavailable.
92 (amd64_sigtramp_frame_unwind): Install
93 amd64_sigtramp_frame_unwind_stop_reason.
94 (amd64_epilogue_frame_cache): Swallow NOT_AVAILABLE_ERROR, and set
95 base_p if the frame base was computable.
96 (amd64_epilogue_frame_unwind_stop_reason): New.
97 (amd64_epilogue_frame_this_id): Don't build a frame id if the
98 frame base was unavailable.
99 (amd64_epilogue_frame_unwind): Install
100 amd64_epilogue_frame_unwind_stop_reason.
101 * i386-tdep.c: Include "exceptions.h".
102 (struct i386_frame_cache): New field "base_p".
103 (i386_init_frame_cache): Clear it.
104 (i386_frame_cache_1): New, factored out from amd64_frame_cache.
105 Avoid reading registers with functions that throw if the register
106 is not necessary to compute the frame base.
107 (i386_frame_cache): Reimplement wrapping amd64_frame_cache_1, and
108 swallowing NOT_AVAILABLE_ERROR.
109 (i386_frame_unwind_stop_reason): New.
110 (i386_frame_this_id): Don't build a frame id if the frame base was
111 unavailable.
112 (i386_frame_prev_register): Handle unavailable SP.
113 (i386_frame_unwind): Install i386_frame_unwind_stop_reason.
114 (i386_epilogue_frame_cache): Swallow NOT_AVAILABLE_ERROR, and set
115 base_p if the frame base was computable.
116 (i386_epilogue_frame_unwind_stop_reason): New.
117 (i386_epilogue_frame_this_id): Don't build a frame id if the frame
118 base was unavailable.
119 (i386_epilogue_frame_unwind): Install
120 i386_epilogue_frame_unwind_stop_reason.
121 (i386_sigtramp_frame_cache): Swallow NOT_AVAILABLE_ERROR, and set
122 base_p if the frame base was computable.
123 (i386_sigtramp_frame_unwind_stop_reason): New.
124 (i386_sigtramp_frame_this_id): Don't build a frame id if the frame
125 base was unavailable.
126 (i386_sigtramp_frame_unwind): Install
127 i386_sigtramp_frame_unwind_stop_reason.
128 * sentinel-frame.c (sentinel_frame_prev_register): Use the value
129 type's size, not the register's.
130 (sentinel_frame_unwind): Install default_frame_unwind_stop_reason.
131
132 * alpha-mdebug-tdep.c (alpha_mdebug_frame_unwind): Install
133 default_frame_unwind_stop_reason.
134 * alpha-tdep.c (alpha_sigtramp_frame_unwind)
135 (alpha_heuristic_frame_unwind): Ditto.
136 * amd64obsd-tdep.c (amd64obsd_trapframe_unwind): Ditto.
137 * arm-tdep.c (arm_prologue_unwind, arm_stub_unwind): Ditto.
138 * avr-tdep.c (avr_frame_unwind): Ditto.
139 * cris-tdep.c (cris_sigtramp_frame_unwind, cris_frame_unwind):
140 Ditto.
141 * frv-linux-tdep.c (frv_linux_sigtramp_frame_unwind): Ditto.
142 * frv-tdep.c (frv_frame_unwind): Ditto.
143 * h8300-tdep.c (h8300_frame_unwind): Ditto.
144 * hppa-hpux-tdep.c (hppa_hpux_sigtramp_frame_unwind): Ditto.
145 * hppa-linux-tdep.c (hppa_linux_sigtramp_frame_unwind): Ditto.
146 * hppa-tdep.c (hppa_frame_unwind, hppa_fallback_frame_unwind)
147 (hppa_stub_frame_unwind): Ditto.
148 * i386obsd-tdep.c (i386obsd_trapframe_unwind): Ditto.
149 * ia64-tdep.c (ia64_frame_unwind, ia64_sigtramp_frame_unwind)
150 (ia64_libunwind_frame_unwind)
151 (ia64_libunwind_sigtramp_frame_unwind): Ditto.
152 * iq2000-tdep.c (iq2000_frame_unwind): Ditto.
153 * lm32-tdep.c (lm32_frame_unwind): Ditto.
154 * m32c-tdep.c (m32c_unwind): Ditto.
155 * m32r-linux-tdep.c (m32r_linux_sigtramp_frame_unwind): Ditto.
156 * m32r-tdep.c (m32r_frame_unwind): Ditto.
157 * m68hc11-tdep.c (m68hc11_frame_unwind): Ditto.
158 * m68k-tdep.c (m68k_frame_unwind): Ditto.
159 * m68klinux-tdep.c (m68k_linux_sigtramp_frame_unwind): Ditto.
160 * m88k-tdep.c (m88k_frame_unwind): Ditto.
161 * mep-tdep.c (mep_frame_unwind): Ditto.
162 * microblaze-tdep.c (microblaze_frame_unwind): Ditto.
163 * mips-tdep.c (mips_insn16_frame_unwind, mips_insn32_frame_unwind)
164 (mips_stub_frame_unwind): Ditto.
165 * mn10300-tdep.c (mn10300_frame_unwind): Ditto.
166 * moxie-tdep.c (moxie_frame_unwind): Ditto.
167 * mt-tdep.c (mt_frame_unwind): Ditto.
168 * ppc-linux-tdep.c (ppu2spu_unwind): Ditto.
169 * ppcobsd-tdep.c (ppcobsd_sigtramp_frame_unwind): Ditto.
170 * rs6000-tdep.c (rs6000_frame_unwind): Ditto.
171 * s390-tdep.c (s390_frame_unwind, s390_stub_frame_unwind)
172 (s390_sigtramp_frame_unwind): Ditto.
173 * score-tdep.c (score_prologue_unwind): Ditto.
174 * sh-tdep.c (sh_frame_unwind): Ditto.
175 * sh64-tdep.c (sh64_frame_unwind): Ditto.
176 * sparc-sol2-tdep.c (sparc32_sol2_sigtramp_frame_unwind): Ditto.
177 * sparc-tdep.c (sparc32_frame_unwind): Ditto.
178 * sparc64-sol2-tdep.c (sparc64_sol2_sigtramp_frame_unwind): Ditto.
179 * sparc64-tdep.c (sparc64_frame_unwind): Ditto.
180 * sparc64fbsd-tdep.c (sparc64fbsd_sigtramp_frame_unwind): Ditto.
181 * sparc64nbsd-tdep.c (sparc64nbsd_sigcontext_frame_unwind): Ditto.
182 * sparc64obsd-tdep.c (sparc64obsd_frame_unwind)
183 (sparc64obsd_trapframe_unwind): Ditto.
184 * sparcnbsd-tdep.c (sparc32nbsd_sigcontext_frame_unwind): Ditto.
185 * sparcobsd-tdep.c (sparc32obsd_sigtramp_frame_unwind): Ditto.
186 * spu-tdep.c (spu_frame_unwind, spu2ppu_unwind): Ditto.
187 * v850-tdep.c (v850_frame_unwind): Ditto.
188 * vax-tdep.c (vax_frame_unwind): Ditto.
189 * vaxobsd-tdep.c (vaxobsd_sigtramp_frame_unwind): Ditto.
190 * xstormy16-tdep.c (frame_unwind xstormy16_frame_unwind): Ditto.
191 * xtensa-tdep.c (xtensa_unwind): Ditto.
192
f23d1b92
PA
1932011-03-18 Pedro Alves <pedro@codesourcery.com>
194
195 * tui/tui-hooks.c (tui_selected_frame_level_changed_hook): Assume
196 there's always a frame. Use get_frame_pc_if_available instead of
197 get_frame_pc, and if there's no PC available, don't look up a
198 symtab.
199
1d4f5741
PA
2002011-03-18 Pedro Alves <pedro@codesourcery.com>
201
202 * stack.c (print_frame_local_vars, print_frame_arg_vars): Handle
203 unavailable PC.
204
dba09041
PA
2052011-03-18 Pedro Alves <pedro@codesourcery.com>
206
207 * tracepoint.c (set_traceframe_context): Handle unavailable PC
208 gracefully.
209
9a26e44c
PA
2102011-03-18 Pedro Alves <pedro@codesourcery.com>
211
212 * frame.h (frame_unwind_caller_pc_if_available): Declare.
213 * frame.c (frame_unwind_caller_pc_if_available): New.
214 * stack.c (frame_info): Handle unavailable PC.
215
2162011-03-18 Pedro Alves <pedro@codesourcery.com>
217
218 * frame.c (frame_unwind_pc): Rename to ...
219 (frame_unwind_pc_if_available): ... this. New `pc' output
220 parameter. Change return type to int. Gracefully handle
221 gdbarch_unwind_pc throwing NOT_AVAILABLE_ERROR. Return 0 if that
222 happened, or 1 otherwise.
223 (frame_unwind_pc): Reimplement on top of
224 frame_unwind_pc_if_available.
225 (get_frame_func): Rename to ...
226 (get_frame_func_if_available): New `pc' output parameter. Change
227 return type to int. Gracefully handle the PC not being available.
228 (get_frame_func): Reimplement on top of
229 get_frame_func_if_available.
230 (select_frame): Handle the PC being unavailable.
231 (get_prev_frame): Handle the PC being unavailable.
232 (get_frame_pc_if_available): New.
233 (get_frame_address_in_block_if_available): New.
234 (find_frame_sal): Handle the frame PC not being available.
235 * frame.h (get_frame_pc_if_available): Declare.
236 (get_frame_address_in_block_if_available): Declare.
237 (get_frame_func_if_available): Declare.
238 * stack.c (print_frame_info): Handle the PC being unavailable.
239 (find_frame_funname): Ditto.
240 (print_frame): Handle the PC being unavailable.
241 (get_frame_language): Ditto.
242 * blockframe.c (get_frame_block): Ditto.
243 * macroscope.c (default_macro_scope): Ditto.
244 * tui/tui-stack.c (tui_show_frame_info): Ditto.
245
2462011-03-18 Pedro Alves <pedro@codesourcery.com>
247
248 * dwarf2loc.c (dwarf2_evaluate_loc_desc): Catch
249 NOT_AVAILABLE_ERROR when evaluating the location expression.
250
2512011-03-18 Pedro Alves <pedro@codesourcery.com>
252
253 * dwarf2loc.c (read_pieced_value): Handle get_frame_register_bytes
254 returning that the register piece is unavailable/optimized out.
255 (write_pieced_value): Handle get_frame_register_bytes returning
256 that the register piece is unavailable/optimized out when doing a
257 read-modify write of a bitfield.
258 * findvar.c (value_from_register): Handle get_frame_register_bytes
259 returning that the register piece is unavailable/optimized out.
260 * frame.c (get_frame_register_bytes): New parameters `optimizedp'
261 and `unavailablep'. Throw error on bad debug info. Use
262 frame_register instead of frame_register_read, to fill in the new
263 arguments.
264 * frame.h (get_frame_register_bytes): New parameters `optimizedp'
265 and `unavailablep'.
266 * valops.c: (value_assign): Adjust, and handle
267 get_frame_register_bytes failing.
268 * spu-tdep.c: Include exceptions.h.
269 (spu_software_single_step): Adjust, and handle
270 get_frame_register_bytes failing.
271 (spu_get_longjmp_target): Ditto.
272 * gdbarch.sh (register_to_value): Change to return int. New
273 parameters `optimizedp' and `unavailablep'.
274 * gdbarch.h, gdbarch.c: Regenerate.
275 * i386-tdep.c (i386_register_to_value): Adjust to new
276 gdbarch_register_to_value interface.
277 * i387-tdep.c (i387_register_to_value): Ditto.
278 * i387-tdep.h (i387_register_to_value): Ditto.
279 * alpha-tdep.c (alpha_register_to_value): Ditto.
280 * ia64-tdep.c (ia64_register_to_value): Ditto.
281 * m68k-tdep.c (m68k_register_to_value): Ditto.
282 * mips-tdep.c (mips_register_to_value): Ditto.
283 * rs6000-tdep.c (rs6000_register_to_value): Ditto.
284
0fdb4f18
PA
2852011-03-18 Pedro Alves <pedro@codesourcery.com>
286
287 * findvar.c (value_of_register): Mark the value as unavailable, if
288 the register is unavailable.
289 * frame.h (frame_register_unwind): New `unavailablep' parameter.
290 (frame_register): New `unavailablep' parameter.
291 (frame_register_read): Update comment.
292 * frame.c (frame_register_unwind): New `unavailablep' parameter.
293 Set it if the register is unavailable. If the register is
294 unavailable, clear the output buffer.
295 (frame_register): New `unavailablep' parameter. Pass it down.
296 (frame_unwind_register): Adjust.
297 (put_frame_register): Adjust.
298 (frame_register_read): Adjust. Also return false if the register
299 is not available.
300 (frame_register_unwind_location): Adjust.
301 * sentinel-frame.c (sentinel_frame_prev_register): If the register
302 is unavailable, mark the value accordingly.
303 * stack.c (frame_info): Handle unavailable registers.
304
e69aa73e
PA
3052011-03-18 Pedro Alves <pedro@codesourcery.com>
306
307 * mi/mi-main.c (register_changed_p): Handle REG_UNAVAILABLE, and
308 simplify, using regcache_cooked_read.
309
05d1431c
PA
3102011-03-18 Pedro Alves <pedro@codesourcery.com>
311
312 * regcache.h (regcache_raw_read, regcache_raw_read_signed)
313 (regcache_raw_read_unsigned, regcache_raw_read_signed)
314 (regcache_raw_read_unsigned, regcache_raw_read_part)
315 (regcache_cooked_read, regcache_cooked_read_signed)
316 (regcache_cooked_read_unsigned, regcache_cooked_read_part)
317 (regcache_cooked_read_ftype): Change return to enum
318 register_status.
319 * regcache.c: Include exceptions.h
320 (regcache_save): Adjust to handle REG_UNAVAILABLE registers.
321 (do_cooked_read): Change return to enum register_status. Always
322 forward to regcache_cooked_read.
323 (regcache_raw_read): Change return to enum register_status. If
324 the register is not REG_VALID, memset the buffer. Return the
325 register's status.
326 (regcache_raw_read_signed): Handle non-REG_VALID registers and
327 return the register's status.
328 (regcache_raw_read_unsigned): Ditto.
329 (regcache_cooked_read): Change return to enum register_status.
330 Assert that with read-only regcaches, the register's status must
331 be known. If the regcache is read-only, and the register is not
332 REG_VALID, memset the buffer. Return the register's status.
333 (regcache_cooked_read_signed): Change return to enum
334 register_status. Handle non-REG_VALID registers and return the
335 register's status.
336 (regcache_cooked_read_unsigned): Change return to enum
337 register_status. Handle non-REG_VALID registers and return the
338 register's status.
339 (regcache_xfer_part, regcache_raw_read_part)
340 (regcache_cooked_read_part): Change return to enum
341 register_status. Return the register's status.
342 (regcache_read_pc): Throw NOT_AVAILABLE_ERROR if the register is
343 unavailable.
344 (regcache_dump): Handle unavailable cooked registers.
345 * frame.c (do_frame_register_read): Adjust interface to match
346 regcache_cooked_read_ftype.
347 * gdbarch.sh (pseudo_register_read): Change return to enum
348 register_status.
349 * gdbarch.h, gdbarch.c: Regenerate.
350
351 * i386-tdep.h (i386_pseudo_register_read): Change return to enum
352 register_status.
353 * i386-tdep.c (i386_pseudo_register_read): Change return to enum
354 register_status. If reading a raw register indicates the raw
355 register is not valid, return the raw register's status,
356 otherwise, return REG_VALID.
357 * amd64-tdep.c (amd64_pseudo_register_read): Change return to enum
358 register_status. Handle non-REG_VALID raw registers and return
359 the register's status.
360 * arm-tdep.c (arm_neon_quad_read)
361 (arm_pseudo_read): Change return to enum register_status. Handle
362 non-REG_VALID raw registers and return the register's status.
363 * avr-tdep.c (avr_pseudo_register_read): Ditto.
364 * frv-tdep.c (frv_pseudo_register_read): Ditto.
365 * h8300-tdep.c (h8300_pseudo_register_read): Ditto.
366 * hppa-tdep.c (hppa_pseudo_register_read): Ditto.
367 * m32c-tdep.c (m32c_move_reg_t): Change return to enum
368 register_status.
369 (m32c_raw_read, m32c_raw_write, m32c_banked_read)
370 (m32c_banked_write, m32c_sb_read, m32c_sb_write, m32c_part_read)
371 (m32c_part_write, m32c_cat_read, m32c_cat_write)
372 (m32c_r3r2r1r0_read, m32c_r3r2r1r0_write)
373 (m32c_pseudo_register_read): Change return to enum
374 register_status. Adjust.
375 * m68hc11-tdep.c (m68hc11_pseudo_register_read): Change return to
376 enum register_status. Return the register's status.
377 * mep-tdep.c (mep_pseudo_cr32_read): Change return to enum
378 register_status. Return the register's status.
379 (mep_pseudo_cr64_read, mep_pseudo_register_read): Ditto.
380 * mips-tdep.c (mips_pseudo_register_read): Ditto.
381 * mt-tdep.c (mt_pseudo_register_read): Ditto.
382 * rs6000-tdep.c (move_ev_register_func): New typedef.
383 (e500_move_ev_register): Use it. Change return to enum
384 register_status. Return the register's status.
385 (do_regcache_raw_read): New function.
386 (do_regcache_raw_write): New function.
387 (e500_pseudo_register_read): Change return to enum
388 register_status. Return the register's status. Use
389 do_regcache_raw_read.
390 (e500_pseudo_register_write): Adjust. Use do_regcache_raw_write.
391 (dfp_pseudo_register_read): Change return to enum register_status.
392 Return the register's status.
393 (vsx_pseudo_register_read): Ditto.
394 (efpr_pseudo_register_read): Ditto.
395 (rs6000_pseudo_register_read): Ditto.
396 * s390-tdep.c (s390_pseudo_register_read): Change return to enum
397 register_status. Return the register's status.
398 * sh64-tdep.c (pseudo_register_read_portions): New function.
399 (sh64_pseudo_register_read): Change return to enum
400 register_status. Use pseudo_register_read_portions. Return the
401 register's status.
402 * ia64-tdep.c (ia64_pseudo_register_read): Change return to enum
403 register_status. Return the register's status.
404 * sh-tdep.c (pseudo_register_read_portions): New function.
405 (sh_pseudo_register_read): Change return to enum register_status.
406 Use pseudo_register_read_portions. Return the register's status.
407 * sparc-tdep.c (sparc32_pseudo_register_read): Change return to
408 enum register_status. Return the register's status.
409 * sparc64-tdep.c (sparc64_pseudo_register_read): Ditto.
410 * spu-tdep.c (spu_pseudo_register_read_spu)
411 (spu_pseudo_register_read): Ditto.
412 * xtensa-tdep.c (xtensa_register_read_masked)
413 (xtensa_pseudo_register_read): Ditto.
414 * bfin-tdep.c (bfin_pseudo_register_read): Ditto.
415
e10abd8f
PM
4162011-03-18 Pierre Muller <muller@ics.u-strasbg.fr>
417
418 * python/py-value.c (valpy_getitem): Fix formatting of error function
419 call.
420
7ea6d463
PM
4212011-03-18 Pierre Muller <muller@ics.u-strasbg.fr>
422
423 ARI fixes: Add missing internationalization markups throughout
424 C source files.
425 * darwin-nat-info.c: Ditto.
426 * record.c: Ditto.
427 * remote.c: Ditto.
428 * mi/mi-main.c: Ditto.
429
001083c6
PM
4302011-03-18 Pierre Muller <muller@ics.u-strasbg.fr>
431
432 ARI fixes: Add missing internationalization markups throughout
433 yacc files.
434 * c-exp.y: Ditto.
435 * cp-name-parser.y: Ditto.
436 * f-exp.y: Ditto.
437 * m2-exp.y: Ditto.
438 * objc-exp.y: Ditto.
439 * p-exp.y: Ditto.
440
4f1cdeec
PM
4412011-03-18 Pierre Muller <muller@ics.u-strasbg.fr>
442
443 ARI fixes: Messages should have no trailing new lines.
444 * darwin-nat.c (mach_check_error): Remove trailing new line from
445 warning function call message.
446 * record.c (bfdcore_read): Idem for error call.
447
28e698f1
PM
4482011-03-18 Pierre Muller <muller@ics.u-strasbg.fr>
449
450 * common/signals.c (target_signal_from_host): Add _ markup to error
451 function call message.
452 (target_signal_to_host): Add _ markup and remove trailing new line
453 from warning call message.
454 (target_signal_from_command): Add _ markup to error function call
455 message.
456
99c3dc11
PM
4572011-03-18 Phil Muldoon <pmuldoon@redhat.com>
458
459 PR python/12149
460
461 * python/python.c (gdbpy_write): Accept a stream argument and
462 operate to the appropriate stream.
463 (gdbpy_flush): Likewise.
464 (_initialize_python): Add stream constants.
465 (finish_python_initialization): Add GdbOutputErrorFile class.
466
c20800be
KY
4672011-03-18 Kwok Cheung Yeung <kcy@codesourcery.com>
468
469 * MAINTAINERS: Add myself as a write-after-approval maintainer.
470
f4a1794a
KY
4712011-03-18 Kwok Cheung Yeung <kcy@codesourcery.com>
472
473 * amd64-tdep.c (amd64_relocate_instruction): Fix ordering of arguments
474 to store_signed_integer. Add debug message when relocating CALL
475 instructions. Fix formatting of debug message.
476 * i386-tdep.c (i386_relocate_instruction): Ditto.
477
d4862372
JB
4782011-03-17 Joel Brobecker <brobecker@gnat.com>
479
480 * target.h (struct target_ops): Remove to_lookup_symbol field.
481 (target_lookup_symbol): Delete macro.
482 * target.c (nosymbol, debug_to_lookup_symbol): Delete.
483 (update_current_target, setup_target_debug): Remove handling
484 of to_lookup_symbol target_ops field.
485 * ada-tasks.c (get_known_tasks_addr): Remove use of
486 target_lookup_symbol.
487 * coffread.c (coff_symtab_read): Likewise.
488 * dbxread.c (read_dbx_symtab): Ditto.
489
d645e32e
JB
4902011-03-17 Joel Brobecker <brobecker@gnat.com>
491
492 PR gdb/12116:
493 * configure.ac: Add getthrds declaration check.
494 * configure, config.in: Regenerate.
495 * aix-thread.c (getthrds): Declare only if not already declared
496 in procinfo.h. More declaration out of get_signaled_thread to
497 global scope.
498
29703da4
PM
4992011-03-17 Phil Muldoon <pmuldoon@redhat.com>
500
501 * python/py-symtab.c: Populate symtab_object_methods,
502 sal_object_methods.
503 (stpy_is_valid): New function.
504 (salpy_is_valid): Ditto.
505 * python/py-symbol.c: Declare symbol_object_methods. Populate.
506 (sympy_is_valid): New function.
507 * python/py-objfile.c: Declare objfile_object_methods. Populate.
508 (objfpy_is_valid): New function.
509 * python/py-inferior.c: Populate inferior_object_methods.
510 (infpy_is_valid): New function.
511 * python/py-infthread.c: Populate thread_object_methods.
512 (thpy_is_valid): New function.
513 * python/py-block.c: Declare block_object_methods. Populate. Declare
514 block_iterator_object_methods. Populate.
515 (blpy_is_valid): New function.
516 (blpy_iter_is_valid): Ditto.
517
c00f8484
KS
5182011-03-16 Keith Seitz <keiths@redhat.com>
519
520 * linespec.c (find_methods): Canonicalize NAME before looking
521 up the symbol.
522 (name_end): New function.
523 (keep_name_info): New function.
524 (decode_line_1): Use keep_name_info.
525 (decode_compound): Likewise.
526 * cli/cli-utils.h (remove_trailing_whitespace): New function.
527 * cli/cli-utils.c (remove_trailing_whitespace): Likewise.
528
529 PR c++/12273
530 * linespec.c (locate_first_half): Keep overload information, too.
531 (decode_compound): Use a string to represent break characters
532 to escape the loop.
533 If P points to a break character, do not increment it.
534 For C++ and Java, keep overload information and relevant keywords.
535 If we cannot find a symbol, search the minimal symbols.
536
537 PR c++/11734
538 * linespec.c (decode_compound): Rename SAVED_ARG to
539 THE_REAL_SAVED_ARG.
540 Make a copy of THE_REAL_SAVED_ARG in SAVED_ARG and strip
541 single-quotes.
542 Pass a valid block to lookup_symbol.
543 (lookup_prefix_sym): Likewise.
544 (find_method): Construct search name based on SYM_CLASS instead
545 of SAVED_ARG.
546 * psymtab.c (lookup_partial_symbol): Add language parameter.
547 (lookup_symbol_aux_psymtabs): Likewise.
548 Don't assume that the psymtab we found was the right one. Search
549 for the desired symbol in the symtab to be certain.
550 (psymtab_search_name): New function.
551 (lookup_partial_symbol): Use psymtab_search_name.
552 Add language parameter.
553 (read_symtabs_for_function): Add language parameter and pass to
554 lookup_partial_symbol.
555 (find_symbol_file_from_partial): Likewise.
556
c91513d8
PP
5572011-03-16 Paul Pluzhnikov <ppluzhnikov@google.com>
558
559 PR gdb/12528
560 * dwarf2read.c (noop_record_line): New function.
561 (dwarf_decode_lines): Ignore line tables for GCd functions.
562
b37520b6
PM
5632011-03-16 Pierre Muller <muller@ics.u-strasbg.fr>
564
565 Fix ARI warnings about new lines at the end of messages, which
566 are unneeded as there is a new line added at the end of the message
567 automatically.
568 * darwin-nat.c (darwin_stop_inferior): Ditto.
569 * dec-thread.c (dec_thread_get_ada_task_ptid): Ditto.
570 * dfp.c (decimal_to_number): Ditto.
571 * exec.c (print_section_info): Ditto.
572 * i386-darwin-nat.c (darwin_set_sstep): Ditto.
573 * osdata.c (get_osdata): Ditto.
574 * record.c (bfdcore_write): Ditto.
575 * remote-mips.c (mips_readchar): Ditto.
576 * remote.c (read_ptid): Ditto.
577 * ser-mingw.c (ser_windows_raw): Ditto.
578 * tracepoint.c (add_local_symbols): Ditto.
579 * windows-nat.c (fake_create_process): Ditto.
580
b08ee6a2
TT
5812011-03-16 Tom Tromey <tromey@redhat.com>
582
583 * tracepoint.c (stop_tracing): Don't declare.
584 * event-top.c (after_char_processing_hook): Add `(void)'.
585
9a6f1302
PM
5862011-03-16 Phil Muldoon <pmuldoon@redhat.com>
587
588 * NEWS: Add Parameter sub-classing description.
589
7ceb86b1
KT
5902011-03-16 Kai Tietz <ktietz@redhat.com>
591
592 * MAINTAINERS: Update my e-mail address.
593
efeff6cf
AT
5942011-03-15 Andreas Tobler <andreast@fgznet.ch>
595
596 * MAINTAINERS: Add myself for write after approval privileges.
597
681c238c
MS
5982011-03-15 Michael Snyder <msnyder@vmware.com>
599
f3df5b08
MS
600 * frame.c (find_frame_sal): Assert sym is not null.
601
13f6513c
MS
602 * dbxread.c (process_one_symbol): Assert 'name' is not null.
603
50412521
MS
604 * objc-lang.c (selectors_info): Check strchr for null result.
605
681c238c
MS
606 * stabsread.c (define_symbol): Guard against bad stabstring input.
607
6ced1581
PM
6082011-03-15 Pierre Muller <muller@ics.u-strasbg.fr>
609
610 Remove trailing spaces and tabulations from pascal language
611 support sources.
612 p-exp.y: Ditto.
613 p-lang.c: Ditto.
614 p-lang.h: Ditto.
615 p-valprint.c: Ditto.
616
9373cf26
JK
6172011-03-15 Jan Kratochvil <jan.kratochvil@redhat.com>
618
619 * dwarf2read.c (dwarf2_get_pc_bounds): Require HIGH strictly higher
620 than LOW. Comment it.
621 (read_partial_die): Call complaint for inappropriate zero LOWPC or
622 HIGHPC not strictly higher than LOWPC.
623
9a1edae6
PM
6242011-03-15 Pierre Muller <muller@ics.u-strasbg.fr>
625
626 Fix formatting of function declarations returning a pointer in
627 previous commit.
628 * varobj.c (varobj_add_child): Ditto.
629 * hppa-tdep.h (hppa_init_objfile_priv_data): Ditto.
630 * inferior.h (get_displaced_step_closure_by_addr): Ditto.
631
24e9cda0
UW
6322011-03-15 Ulrich Weigand <uweigand@de.ibm.com>
633
634 * ppc-sysv-tdep.c (ppc64_sysv_abi_push_dummy_call): Add support
635 for the "generic" vector ABI used with GCC 4.3 and later.
636 (ppc64_sysv_abi_return_value): Likewise.
637
6382011-03-15 Ulrich Weigand <uweigand@de.ibm.com>
81b4675a
UW
639
640 * infcall.c (call_function_by_hand): Function return value is
641 always a non_lval, even when using struct_return.
642
c9174737
PA
6432011-03-15 Pedro Alves <pedro@codesourcery.com>
644
645 * printcmd.c (ALL_DISPLAYS_SAFE): New.
646 (map_display_numbers): New.
647 (do_delete_display): New.
648 (undisplay_command): Use map_display_numbers.
649 (do_enable_disable_display): New.
650 (enable_disable_display_command): New function.
651 (enable_display): Delete.
652 (enable_display_command): New.
653 (disable_display_command): Reimplement.
654 (_initialize_printcmd): Adjust "enable display" command to use
655 `enable_display_command' as callback.
656
350c6c65
PM
6572011-03-14 Phil Muldoon <pmuldoon@redhat.com>
658
659 * NEWS: Add Python breakpoint 'stop' operation.
660
824446ad
PM
6612011-03-14 Phil Muldoon <pmuldoon@redhat.com>
662
663 * NEWS: Delete duplicate entry. Fix typo.
664
2021ad3a
PM
6652011-03-14 Pierre Muller <muller@ics.u-strasbg.fr>
666
667 Fix ARI warning about function names in first column.
668 Put prototype declaration on same line as return type.
669 * objc-exp.y: Ditto.
670 * p-exp.y: Ditto.
671 * python/py-stopevent.h: Ditto.
672 For long function names, split parameters to
673 allow function name on same line as return type.
674 * solib-pa64.c: Ditto.
675 * varobj.c: Ditto.
676 * varobj.h: Ditto.
677 For long function declaration, use single line.
678 * hppa-tdep.h: Ditto.
679 * inferior.h: Ditto.
680
7371cf6d
PM
6812011-03-14 Phil Muldoon <pmuldoon@redhat.com>
682
683 * python/python.h: Declare gdbpy_should_stop and
684 gdbpy_breakpoint_has_py_cond.
685 * python/python.c: Add python.h to includes. Remove python.h from
686 HAVE_PYTHON definition
687 (gdbpy_should_stop): New dummy function.
688 (gdbpy_breakpoint_has_py_cond): New dummy function.
689 * python/py-breakpoint.c (bppy_init): Rewrite to allow
690 sub-classing capabilities.
691 (gdbpy_should_stop): New function.
692 (gdbpy_breakpoint_has_py_cond): New function.
693 (local_setattro): New function.
694 * breakpoint.c (condition_command): Add check for Python 'stop'
695 operation.
696 (bpstat_check_breakpoint_conditions): Execute Python 'stop'
697 operation function as part of stop/continue tests.
698
37b50a69
TT
6992011-03-14 Tom Tromey <tromey@redhat.com>
700
701 PR gdb/12576:
702 * dwarf2loc.c (dwarf_expr_dwarf_call): Remove 'return'.
703 (needs_frame_dwarf_call): Likewise.
704
eeae04df
PM
7052011-03-14 Pierre Muller <muller@ics.u-strasbg.fr>
706
707 Fix ARI warning about functions without parameters that do not
708 use (void).
709 * breakpoint.c (all_tracepoints): Replace () by (void).
710 * f-exp.y (match_string_literal): Ditto.
711 (yylex): Ditto.
712 * m2-exp.y (yylex): Ditto.
713 * mep-tdep.c (current_me_module): Ditto.
714 (current_options): Ditto.
715 (current_cop_data_bus_width): Ditto.
716 (current_cr_names): Ditto.
717 (current_cr_is_float): Ditto.
718 (current_ccr_names): Ditto.
719 * objc-exp.y (yylex): Ditto.
720 * p-exp.y (yylex): Ditto.
721 * remote.c (send_interrupt_sequence): Ditto.
722 * tracepoint.c (current_trace_status): Ditto.
723 * python/py-evts.c (gdbpy_initialize_py_events): Ditto.
724 * python/py-prettyprint.c (push_dummy_python_frame): Ditto.
725
6dc3565d
MS
7262011-03-11 Michael Snyder <msnyder@vmware.com>
727
1427fe5e
MS
728 * cli/cli-decode.h (CMD_LIST_AMBIGUOUS): Define.
729 * cli/cli-decode.c (lookup_cmd_1): Use CMD_LIST_AMBIGUOUS.
730 (lookup_cmd): Test for CMD_LIST_AMBIGUOUS.
731 * completer.c (complete_line_internal): Use CMD_LIST_AMBIGUOUS.
732 * top.c (set_verbose): Use CMD_LIST_AMBIGUOUS.
733
60bc018f
MS
734 * event-loop-c (delete_async_signal_handler): Assert prev_ptr.
735 (delete_async_event_handler): Ditto.
736
f3be5b64
MS
737 * python/py-breakpoint.c (bppy_set_condition): Stop memory leak.
738
4c2d5724
MS
739 * python/py-breakpoint.c (bppy_get_commands): Fix memory leak.
740
6dc3565d
MS
741 * top.c (set_verbose): Assert showcmd was found.
742
4e6ca6d5
MG
7432011-03-11 Maxim Grigoriev <maxim2405@gmail.com>
744
745 * xtensa-tdep.c (warning_once): Correct style issues.
746
815a83e4
YQ
7472011-03-11 Yao Qi <yao@codesourcery.com>
748
749 * arm-tdep.c (copy_ldr_str_ldrb_strb): Remove redundant statements.
750
f2eb0bc8
AS
7512011-03-11 Andreas Schwab <schwab@redhat.com>
752
753 * common/aclocal.m4: Remove.
754
b801de47
MG
7552011-03-10 Maxim Grigoriev <maxim2405@gmail.com>
756
757 * xtensa-tdep.c (windowing_enabled): Remove inline attribute.
758 (xtensa_write_register, xtensa_read_register): Likewise.
759 (xtensa_hextochar): Removed.
760 (xtensa_init_reggroups): Replace xtensa_hextochar () by explicit code.
761
dbab50de
MG
7622011-03-10 Maxim Grigoriev <maxim2405@gmail.com>
763
764 * xtensa-tdep.c (xtensa_c0reg_t): Update comments.
c2a6b390 765 (xtensa_call0_frame_cache_t): Update comments. New fields added.
dbab50de
MG
766 (xtensa_alloc_frame_cache): Add initialization for new fields.
767 (xtensa_frame_cache): Change the way how call0_frame_cache () is called.
768 (warning_once): New function.
769 (xtensa_insn_kind): New item c0opc_and.
770 (call0_classify_opcode): Add the case for AND instruction.
c2a6b390
MG
771 (call0_track_op): Change arguments. New local variable litbase.
772 Add the case to handle c0opc_and. Update algorithms for c0opc_mov,
773 c0opc_l32r, c0opc_s32i to take into account dynamic stack adjustments
774 in the prologue.
dbab50de 775 Add cases for c0opc_l32e, c0opc_s32e, c0opc_rfwo, c0opc_rfwu.
c2a6b390 776 (call0_analyze_prologue): Update the comments. Change arguments.
dbab50de
MG
777 Add the variety of updates to handle extended prologues, which now can
778 conduct dynamic stack adjustments.
779 (call0_frame_cache): Likewise.
780 (xtensa_skip_prologue): Update call0_analyze_prologue () function call.
781 (xtensa_gdbarch_init): Initialize xtensa_session_once_reported.
782
b2c04452
MS
7832011-03-10 Michael Snyder <msnyder@vmware.com>
784
f8f67713
MS
785 * tracepoint.c (cmd_qtv): Discard unused value 'packet'.
786 (cmd_qtframe): Ditto.
787 (cmd_qtbuffer): Ditto.
788 (cmd_bigqtbuffer): Ditto.
789
197f0a60
TT
7902011-03-10 Tom Tromey <tromey@redhat.com>
791
792 * tracepoint.c (trace_actions_command): Update.
793 * thread.c (thread_apply_command): Update.
794 * reverse.c (delete_bookmark_command): Update.
795 (bookmarks_info): Update.
796 * printcmd.c (undisplay_command): Update.
797 * memattr.c (mem_enable_command): Update.
798 (mem_disable_command): Update.
799 (mem_delete_command): Update.
800 * inferior.c (detach_inferior_command): Update.
801 (kill_inferior_command): Update.
802 (remove_inferior_command): Update.
803 * cli/cli-utils.h (struct get_number_or_range_state): New.
804 (init_number_or_range): Declare.
805 (get_number_or_range): Update.
806 * cli/cli-utils.c (init_number_or_range): New function.
807 (get_number_or_range): Change 'pp' parameter to 'state'. Remove
808 static variables.
809 (number_is_in_list): Update.
810 * breakpoint.h (get_tracepoint_by_number): Update.
811 * breakpoint.c (map_breakpoint_numbers): Update for change to
812 get_number_or_range.
813 (find_location_by_number): Use get_number, not
814 get_number_or_range.
815 (trace_pass_set_count): New function.
816 (trace_pass_command): Update for change to get_number_or_range.
817 Rework loop logic.
818 (get_tracepoint_by_number): Remove 'multi_p' parameter; add
819 'state' parameter.
820
ecec24e6
PM
8212011-03-10 Phil Muldoon <pmuldoon@redhat.com>
822
823 * python/py-param.c (add_setshow_generic): Add set/show callback
824 parameters. Register Python object context.
825 (get_show_value): New function.
826 (get_set_value): New function.
827 (call_doc_function): New function.
828 (get_doc_string): Move behind get_show_value/get_set_value.
829
6d6c6b1f
JK
8302011-03-10 Andreas Tobler <andreast-list@fgznet.ch>
831
832 * fbsd-nat.c (fbsd_make_corefile_notes): Constify local `fname'.
833
68d6df83
MG
8342011-03-09 Maxim Grigoriev <maxim2405@gmail.com>
835
dbab50de 836 * xtensa-tdep.c (xtensa_read_register): Add comment.
68d6df83
MG
837 (xtensa_write_register): Likewise.
838 (xtensa_hextochar): Add comment and update to match coding conventions.
839 (xtensa_frame_cache, xtensa_return_value): Follow coding conventions.
840 (execute_l32e, execute_s32e, execute_code): Update comments.
841 (xtensa_exception_handler_t): Update to match coding conventions.
842 (xtensa_insn_kind): Likewise.
843
85c9d6a6
MS
8442011-03-09 Michael Snyder <msnyder@vmware.com>
845
846 * mi-cmd-disas.c (mi_cmd_disassemble): Fix memory leak.
847
91495617
PA
8482011-03-09 Pedro Alves <pedro@codesourcery.com>
849
850 * nto-tdep.c (nto_find_and_open_solib): Constify local `base'.
851
eb8c0621
TT
8522011-03-09 Tom Tromey <tromey@redhat.com>
853
854 * thread.c (restore_selected_frame): Handle frame_level == -1.
855 (make_cleanup_restore_current_thread): Use
856 get_selected_frame_if_set.
857 * frame.h (get_selected_frame_if_set): Declare.
858 * frame.c (get_selected_frame_if_set): New function.
859
9f37bbcc
PA
8602011-03-09 Pedro Alves <pedro@codesourcery.com>
861
862 * cli/cli-cmds.c (shell_escape): Use lbasename.
863 * coffread.c (coff_start_symtab): Constify parameter.
864 (complete_symtab): Constify `name' parameter.
865 (coff_symtab_read): Constify `filestring' local.
866 (coff_getfilename): Constify return and `result' local.
867 Use lbasename.
868 * fbsd-nat.c (fbsd_make_corefile_notes): Use lbasename.
869 * linux-fork.c (info_checkpoints_command): Use lbasename.
870 * linux-nat.c (linux_nat_make_corefile_notes): Use lbasename.
871 * minsyms.c (lookup_minimal_symbol): Use lbasename.
872 * nto-tdep.c (nto_find_and_open_solib): Use lbasename.
873 * procfs.c (procfs_make_note_section): Use lbasename.
874 * tui/tui-io.c (printable_part): Constity return and parameter.
875 Use lbasename.
876 (print_filename): Constify parameters, and local `s'.
877 (tui_rl_display_match_list): Constify local `temp'.
878
f8de3c55
JK
8792011-03-09 Jan Kratochvil <jan.kratochvil@redhat.com>
880
881 Revert:
882 2011-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
883 Fix DWARF-3+ DW_AT_accessibility default assumption.
884 * dwarf2read.c (dwarf2_add_field): Fix new_field->accessibility for
885 cu->header.version >= 3.
886
d9837b00
YQ
8872011-03-09 Yao Qi <yao@codesourcery.com>
888
889 * common/Makefile.in: Remove.
890 * common/configure: Remove.
891 * common/configure.ac: Remove.
892
e637a4f5
YQ
8932011-03-09 Yao Qi <yao@codesourcery.com>
894
895 Revert:
896 2011-02-11 Yao Qi <yao@codesourcery.com>
897
898 * common/Makefile.in: Add copyright header.
899
900 2011-02-11 Yao Qi <yao@codesourcery.com>
901
902 * Makefile.in: Remove signals.o from COMMON_OBS. Link
903 libcommon.a.
904 * configure.ac: Add common to sub dir.
905 * configure: Regenerate.
906
f976a05d
MG
9072011-03-08 Maxim Grigoriev <maxim2405@gmail.com>
908
909 * xtensa-tdep.c (call0_ret): New function.
910 (xtensa_skip_prologue): Speed up analysis.
911
57041825
MG
9122011-03-08 Maxim Grigoriev <maxim2405@gmail.com>
913
914 * xtensa-tdep.c (xtensa_register_reggroup_p): Count in all registers
915 while executing MI command -data-list-changed-registers.
916
08b9c608
MG
9172011-03-08 Maxim Grigoriev <maxim2405@gmail.com>
918
919 * xtensa-tdep.c (xtensa_read_register): New function.
920 (xtensa_write_register): New function.
921 (xtensa_find_register_by_name): New function.
922 (xtensa_windowed_frame_cache): Update comments in type description.
923 (xtensa_frame_cache): Likewise.
924 (xtensa_window_interrupt_insn): New function.
925 (xtensa_frame_cache): Add analysis for Xtensa Window Exception frames.
926 (xtensa_insn_kind): Add new instructions.
927 (rwx_special_register): New function.
928 (call0_classify_opcode): Add new instructions to the analysis.
929 (a0_saved, a7_saved, a11_saved): New variables.
930 (a0_was_saved, a7_was_saved, a11_was_saved): New variables.
931 (execute_l32e): New function.
932 (execute_s32e): New function.
933 (xtensa_exception_handler_t): New type.
934 (execute_code): New function.
935 (xtensa_window_interrupt_frame_cache): New function to conduct frame
936 analysis for Xtensa Window Exception handlers.
937
4d1acb11
MG
9382011-03-08 Maxim Grigoriev <maxim2405@gmail.com>
939
98689b25
MG
940 * xtensa-tdep.c (TX_PS): New.
941 (windowing_enabled): Update to count for Call0 ABI.
942 (xtensa_hextochar): New.
943 (xtensa_init_reggroups): Make algorithm generic.
944 (xtensa_frame_cache): Use TX_PS on Tiny Xtensa.
945
9462011-03-08 Maxim Grigoriev <maxim2405@gmail.com>
947
948 * xtensa-tdep.h (XTENSA_MAX_COPROCESSOR): Update.
4d1acb11 949
d3f323f3
MS
9502011-03-08 Michael Snyder <msnyder@vmware.com>
951
3dcabaa8
MS
952 * i386-tdep.c (i386_follow_jump): Check return value of
953 target_read_memory.
954 (i386_analyze_struct_return): Ditto.
955 (i386_skip_probe): Ditto.
956 (i386_match_insn): Ditto.
957 (i386_skip_noop): Ditto.
958 (i386_analyze_frame_setup): Ditto.
959 (i386_analyze_register_saves): Ditto.
960 (i386_skip_prologue): Ditto.
961 (i386_skip_main_prologue): Ditto.
962
13b3fd9b
MS
963 * target.c (read_whatever_is_readable): Fix memory leak.
964
d3f323f3
MS
965 * i386-tdep.c (i386_process_record): Document fall through.
966
421d5c74
JK
9672011-03-08 Jan Kratochvil <jan.kratochvil@redhat.com>
968
969 Fix DWARF-3+ DW_AT_accessibility default assumption.
970 * dwarf2read.c (dwarf2_add_field): Fix new_field->accessibility for
971 cu->header.version >= 3.
972
63154eca
PA
9732011-03-08 Pedro Alves <pedro@codesourcery.com>
974
975 * remote.c (remote_check_symbols): Skip if the target has no
976 execution.
977
f1a507a1
JB
9782011-03-08 Joel Brobecker <brobecker@adacore.com>
979
980 * target.c (read_whatever_is_readable): Reformat comment,
981 with a minor typo fix. Minor reformatting of the code.
982
36073a92
YQ
9832011-03-08 Yao Qi <yao@codesourcery.com>
984
985 * arm-tdep.c: Remove prototype declaration displaced_in_arm_mode.
986 (displaced_read_reg): Add `dsc' parameter, remove `from' parameter.
987 Use cached result instead of calling displaced_in_arm_mode again.
988 (branch_write_pc, alu_write_pc, load_write_pc): Add `dsc' parameter.
989 (displaced_write_reg, copy_preload, copy_preload_reg): Callers update.
990 (cleanup_copro_load_store, copy_copro_load_store): Likewise.
991 (cleanup_branch, copy_bx_blx_reg, copy_alu_imm): Likewise.
992 (cleanup_alu_reg, copy_alu_reg, cleanup_alu_shifted_reg): Likewise.
993 (copy_alu_shifted_reg, cleanup_load, cleanup_store): Likewise.
994 (copy_extra_ld_st, copy_ldr_str_ldrb_strb): Likewise.
995 (cleanup_block_load_all, cleanup_block_store_pc): Likewise.
996 (cleanup_block_load_pc, copy_block_xfer): Likewise.
997 * arm-linux-tdep.c (arm_linux_copy_svc): Callers update.
998 (arm_catch_kernel_helper_return): Likewise.
999 * gdb/arm-tdep.h : Update function declarations.
1000
d3f323f3 10012011-03-07 Michael Snyder <msnyder@vmware.com>
e6040cbd 1002
e0e40094
MS
1003 * dwarf2loc.c (indirect_pieced_value): Assert 'piece' not null.
1004
0b2381f5
MS
1005 * ser-unix.c (hardwire_get_tty_state): Stop memory leak.
1006
0350914a
MS
1007 * mi/mi-cmd-env.c (_initialize_mi_cmd_env): Free environment.
1008
69feea6f
MS
1009 * elfread.c (elf_symtab_read): Stop memory leak.
1010
e6040cbd
MS
1011 * main.c (captured_main): Fix memory leak.
1012
052874e8
AS
10132011-03-07 Andreas Schwab <schwab@linux-m68k.org>
1014
1015 * ada-lang.c (compare_names): Call is_name_suffix with string1
1016 instead of string2.
1017
b11896a5
TT
10182011-03-07 Tom Tromey <tromey@redhat.com>
1019
1020 * xcoffread.c (xcoff_sym_fns): Update.
1021 * symfile.h (struct sym_fns) <sym_read_psymbols>: New field.
1022 (enum symfile_add_flags) <SYMFILE_NO_READ>: New constant.
1023 * symfile.c (syms_from_objfile): Handle SYMFILE_NO_READ.
1024 (symbol_file_add_with_addrs_or_offsets): Likewise.
1025 (reread_symbols): Handle OBJF_PSYMTABS_READ.
1026 * somread.c (som_sym_fns): Update.
1027 * psymtab.h (require_partial_symbols): Declare.
1028 * psymtab.c (require_partial_symbols): New function.
1029 (ALL_OBJFILE_PSYMTABS_REQUIRED): New macro.
1030 (ALL_OBJFILE_PSYMTABS): Undef.
1031 (ALL_PSYMTABS): Move from psympriv.h.
1032 (lookup_partial_symtab, find_pc_sect_psymtab)
1033 (lookup_symbol_aux_psymtabs, relocate_psymtabs)
1034 (find_last_source_symtab_from_partial)
1035 (forget_cached_source_info_partial)
1036 (print_psymtab_stats_for_objfile, read_symtabs_for_function)
1037 (expand_partial_symbol_tables, read_psymtabs_with_filename)
1038 (map_symbol_names_psymtab, map_symbol_filenames_psymtab)
1039 (find_symbol_file_from_partial, map_matching_symbols_psymtab)
1040 (expand_symtabs_matching_via_partial, maintenance_info_psymtabs):
1041 Use ALL_OBJFILE_PSYMTABS_REQUIRED.
1042 * psympriv.h (ALL_PSYMTABS): Move to psymtab.c.
1043 * objfiles.h (OBJF_PSYMTABS_READ): New macro.
1044 * objfiles.c (objfile_has_partial_symbols): Handle lazily-read
1045 psymtabs.
1046 * mipsread.c (ecoff_sym_fns): Update.
1047 * machoread.c (macho_sym_fns): Update.
1048 * elfread.c (elf_symfile_read): Set up for lazy psymtab reading.
1049 (read_psyms): New function.
1050 (elf_sym_fns, elf_sym_fns_gdb_index): Update.
1051 (elf_sym_fns_lazy_psyms): New global.
1052 * dwarf2read.c (dwarf2_initialize_objfile): Don't call
1053 dwarf2_build_psymtabs.
1054 * dbxread.c (aout_sym_fns): Update.
1055 * coffread.c (coff_sym_fns): Update.
1056
fda326dd
TT
10572011-03-07 Tom Tromey <tromey@redhat.com>
1058
1059 * infrun.c (print_exited_reason): Include inferior id and pid in
1060 message.
1061
aeaec162
TT
10622011-03-07 Tom Tromey <tromey@redhat.com>
1063
1064 * target.h (struct target_ops) <to_has_execution>: Add ptid_t
1065 parameter.
1066 (target_has_execution_1): Update.
1067 (target_has_execution_current): Declare.
1068 (target_has_execution): Call target_has_execution_current.
1069 (default_child_has_execution): Update.
1070 * target.c (default_child_has_execution): Add 'the_ptid'
1071 parameter.
1072 (target_has_execution_1): Likewise.
1073 (target_has_execution_current): New function.
1074 (add_target): Update.
1075 (init_dummy_target): Update.
1076 * remote-m32r-sdi.c (m32r_has_execution): New function.
1077 (init_m32r_ops): Use it.
1078 * record.c (record_core_has_execution): Now static. Add
1079 'the_ptid' parameter.
1080 * inferior.c (have_live_inferiors): Don't save current thread.
1081 Use target_has_execution_1.
1082
08e14083
YQ
10832011-03-07 Yao Qi <yao@codesourcery.com>
1084
1085 * Makefile.in (aclocal_m4_deps): Remove gnulib/m4/memcmp.m4.
1086
c05d19c5
JB
10872011-03-07 Joel Brobecker <brobecker@adacore.com>
1088
1089 * elfread.c (elf_symtab_read): Minor reformatting.
1090
3e6ef9e4
JB
10912011-03-07 Joel Brobecker <brobecker@adacore.com>
1092
1093 * objc-lang.c (selectors_info): Minor reformatting.
1094
dbb8534f
JB
10952011-03-07 Joel Brobecker <brobecker@adacore.com>
1096
1097 * ada-lang.c (compare_names): Add FALLTHROUGH comment.
1098
dd70cc93
JB
10992011-03-07 Joel Brobecker <brobecker@adacore.com>
1100 Michael Snyder <msnyder@vmware.com>
1101
1102 * ada-valprint.c (ada_val_print_array): Move the declaration of
1103 "byte_order" and "elttype" inside the block where these variables
1104 are actually used. Remove some special handling for the case
1105 where "elttype" and "eltlen" are null. Replace by a comment
1106 and a couple of assertion checks.
1107
b27cf2b3
MS
11082011-03-05 Michael Snyder <msnyder@vmware.com>
1109
1110 * source.c (add_path): Replace semicolon at end of block.
1111 * dwarf2expr.c (execute_stack_op): Ditto.
1112
5387a0c6
MF
11132011-03-05 Mike Frysinger <vapier@gentoo.org>
1114
1115 * bfin-tdep.c: Include sim-regno.h and gdb/sim-bfin.h.
1116 * configure.tgt (bfin-*-*linux*): Define gdb_sim.
1117 (bfin-*-*): Likewise.
1118
e3aa49af
MS
11192011-03-05 Michael Snyder <msnyder@vmware.com>
1120
82ae4854
MS
1121 * dwarf2expr.c (execute_stack_op): Delete superfluous semicolon.
1122 * mdebugread.c (parse_symbol): Ditto.
1123 * parse.c (parse_exp_in_context): Ditto.
1124 * source.c (add_path): Ditto.
1125 * utils.c (gnu_debuglink_crc32): Ditto.
1126 * varobj.c (variable_language): Ditto.
1127
e3aa49af
MS
1128 * linux-tdep.c (linux_get_siginfo_type): Stop memory leak.
1129
154f592e
MS
11302011-03-04 Michael Snyder <msnyder@vmware.com>
1131
da3ecdc6
MS
1132 * linux-fork.c (inferior_call_waitptid): Fix copy/paste error.
1133
9cc89665
MS
1134 * symfile.c (simple_overlay_update): Check for null return value
1135 from lookup_minimal_symbol.
1136
154f592e
MS
1137 * xml-syscall.c (syscall_start_syscall): Assert name is non null.
1138
63ffa6ee
TJB
11392011-03-04 Thiago Jung Bauermann <bauerman@br.ibm.com>
1140
1141 * eval.c (parse_and_eval_address_1): Remove function.
1142 * linespec.c (decode_indirect): Call parse_to_comma_and_eval
1143 instead of parse_and_eval_address_1.
1144 * value.h (parse_and_eval_address_1): Remove prototype.
1145
a17d146e
MS
11462011-03-04 Michael Snyder <msnyder@vmware.com>
1147
1148 * remote.c (putpkt_binary): Document that case stmt falls through.
1149
1a6a67de
TJB
11502011-03-04 Thiago Jung Bauermann <bauerman@br.ibm.com>
1151
1152 * breakpointc (print_it_typical): Move NULL check from here...
1153 (print_bp_stop_message): ... to here.
1154
488919c4
MS
11552011-03-04 Michael Snyder <msnyder@msnyder-server.eng.vmware.com>
1156
1157 * breakpoint.c (enable_command): Use break instead of continue,
1158 and fill in a missing break.
1159 (disable_command): Ditto.
1160
1e182ce8
UW
11612011-03-04 Ulrich Weigand <ulrich.weigand@linaro.org>
1162
1163 * inflow.c (terminal_init_inferior_with_pgrp): Copy ttystate.
1164 (terminal_save_ours): Remove misleading comment.
1165 (inflow_inferior_data_cleanup): Free ttystate.
1166 (inflow_inferior_exit): Likewise.
1167 (copy_terminal_info): Copy ttystate.
1168
1169 * serial.c (serial_copy_tty_state): New function.
1170 * serial.h (serial_copy_tty_state): Add prototype.
1171 (struct serial_ops): Add copy_tty_state callback.
1172 * ser-base.c (ser_base_copy_tty_state): New function.
1173 * ser-base.h (ser_base_copy_tty_state): Add prototype.
1174 * ser-go32.c (dos_copy_tty_state): New function.
1175 (dos_ops): Install copy_tty_state callback.
1176 * ser-mingw.c (_initialize_ser_windows): Likewise.
1177 * ser-pipe.c (_initialize_ser_pipe): Likewise.
1178 * ser-unix.c (hardwire_copy_tty_state): New function.
1179 (_initialize_ser_hardwire): Install it.
1180
b2c5f112
MS
11812011-03-04 Michael Snyder <msnyder@vmware.com>
1182
2abae994
MS
1183 * breakpoint.c (create_breakpoint): Add missing break statement.
1184
7f5936f9
MS
1185 Reverting this patch:
1186 * infcall.c (call_function_by_hand): Add break statements for lint.
1187
b2c5f112
MS
1188 Reverting this patch:
1189 * cli/cli-script.c (script_from_file): Add break for lint.
1190
42b1321c
MS
11912011-03-04 Michael Snyder <msnyder@vmware.com>
1192
1193 * solib.c (reload_shared_libraries_1): Close memory leak.
1194
3e2a0cee
TT
11952011-03-03 Tom Tromey <tromey@redhat.com>
1196
1197 PR gdb/12538:
1198 * dwarf2read.c (process_psymtab_comp_unit): Handle case where
1199 DW_STRING is NULL.
1200
58397cb7
MS
12012011-03-03 Michael Snyder <msnyder@vmware.com>
1202
2e3fd767
MS
1203 * remote-fileio.c (remote_fileio_func_fstat): Initialize all
1204 fields of struct 'st' to zero.
1205
58397cb7
MS
1206 * tui/tui-winsource.c (tui_update_source_window_as_is): Initialize
1207 sal.pspace before calling set_current_source_symtab_and_line.
1208
ced54c8f
YQ
12092011-03-03 Yao Qi <yao@codesourcery.com>
1210
1211 * Makefile.in (configure-common): Remove. Let Makefile
1212 in dir common to rebuild itself.
1213 (common/Makefile): Likewise.
1214
3351ea09
JB
12152011-03-03 Joel Brobecker <brobecker@adacore.com>
1216
1217 * utils.c (parse_escape): Add i18n markup in error message.
1218
bf9f652a
YQ
12192011-03-03 Yao Qi <yao@codesourcery.com>
1220
1221 * gdb/arm-tdep.c (shifted_reg_val): Replace magic number 15 with
1222 ARM_PC_REGNUM.
1223 (thumb_get_next_pc_raw, arm_get_next_pc_raw): Likewise.
1224 (displaced_write_reg, displaced_read_reg): Likewise.
1225 (copy_ldr_str_ldrb_strb, cleanup_block_load_all): Likewise.
1226 (cleanup_block_load_pc, copy_block_xfer): Likewise.
1227 (cleanup_branch): Replace magic number 14 and 15 with
1228 ARM_LR_REGNUM and ARM_PC_REGNUM respectively.
1229
d42de051
MS
12302011-03-02 Michael Snyder <msnyder@vmware.com>
1231
240f9570
MS
1232 * maint.c (maintenance_do_deprecate): No need to check for NULL.
1233
10dd8b54
MS
1234 * cli/cli-script.c (script_from_file): Add break for lint.
1235
b98bd911
MS
1236 * mdebugread.c (parse_partial_symbols): Fix indent.
1237
3494b66d
MS
1238 * target-descriptions.c (tdesc_gdb_type): No need to call
1239 xstrdup, callee saves a copy.
1240
daac021a
MS
1241 * printcmd.c (print_scalar_formatted): Use strncpy for safety.
1242
c38d16a7
MS
1243 * infcall.c (call_function_by_hand): Add break statements for lint.
1244
905b671b
MS
1245 * utils.c (parse_escape): Escape the escape char.
1246
f2eb0bc8 1247 * python/py-inferior.c (build_inferior_list): Error out if
2d565757
MS
1248 PyList_Append fails.
1249 (gdbpy_inferiors): Error out if build_inferior_list fails.
1250
8c6a60d1
MS
1251 * linux-nat.c (linux_nat_xfer_partial): Preserve errno around
1252 a function call.
1253
d42de051
MS
1254 * record.c (record_restore): Move printf to before error return.
1255
4db71c0b
YQ
12562011-03-02 Yao Qi <yao@codesourcery.com>
1257
1258 * arm-tdep.h (struct displaced_step_closure): Add two new fields
1259 is_thumb and insn_size.
1260 * arm-tdep.c (displaced_read_reg): Adjust correct pipeline offset
1261 on both ARM and Thumb mode.
1262 (arm_process_displaced_insn): Set is_thumb and insn_size.
1263 (arm_displaced_init_closure): Handle both 16-bit and 32-bit.
1264 (arm_displaced_step_fixup): Likewise.
1265
a9dc8dcc
MS
12662011-03-01 Michael Snyder <msnyder@vmware.com>
1267
53624a93
MS
1268 * cli/cli-dump.c (dump_bfd_file): Check error return and warn.
1269
77766669
MS
1270 * jv-lang.c (evaluate_subexp_java): Conditional can't be true.
1271
62d5b8da
MS
1272 * dwarf2read.c (dwarf2_compute_name): NAME cannot be null here.
1273
5e9e105f
MS
1274 * cli/cli-dump.c (restore_binary_file): Validate ftell return value.
1275
dc19db01
MS
1276 * ada-lang.c (ada_make_symbol_completion_list): Replace malloc
1277 with xmalloc.
1278
5ce64950
MS
1279 * ada-lang.c (aggregate_assign_others): Rename inner scope variable
1280 which shadows function parameter.
1281
a0aa2878
MS
1282 * tracepoint.c (create_tsv_from_upload): Superfluous call
1283 to xstrdup. Callee already calls xstrdup.
1284
e325fb69
MS
1285 * linespec.c (decode_line_1): Remove unnecessary null check.
1286
21cbba77
MS
1287 * tracepoint.c (scope_info): Fix mem leak, remove underused
1288 variable.
1289
63360adc
MS
1290 * python/py-prettyprint.c (apply_val_pretty_printer): Remove
1291 superfluous null check.
1292
18ea20ac 1293 * std-regs.c (value_of_builtin_frame_pc_reg): Frame can't be null.
23ce9890 1294 (value_of_builtin_frame_fp_reg): Ditto.
18ea20ac 1295
d014929c
MS
1296 * event-top.c (display_gdb_prompt): Remove superfluous null check.
1297
6e9130cf
MS
1298 * python/py-prettyprint.c (apply_val_pretty_printer): VAL may
1299 be null.
1300
5f01dbc0
MS
1301 * linespec.c (decode_line_1): Check for null before dereference.
1302
d684ab85
MS
1303 * reverse.c (record_restore): Move null-check to before pointer
1304 dereference.
1305
bfffb7e3
MS
1306 * python/py-utils.c (gdbpy_obj_to_string): Delete unused variable.
1307
a9dc8dcc
MS
1308 * objc-lang.c (selectors_info): Add explanitory comment.
1309 (classes_info): Ditto.
1310
478fd957
UW
13112011-03-01 Ulrich Weigand <ulrich.weigand@linaro.org>
1312
1313 * arm-linux-tdep.c (ARM_LDR_PC_SP_4): Add define.
1314 (arm_linux_restart_syscall_init): Handle both on-stack and in-kernel
1315 versions of the trampoline. Handle Thumb vs. ARM addresses.
1316 (arm_kernel_linux_restart_syscall_tramp_frame): New global.
1317 (arm_linux_init_abi): Install it.
1318 * arm-tdep.c (arm_psr_thumb_bit): Make global.
1319 * arm-tdep.c (arm_psr_thumb_bit): Add prototype.
1320
0480cefa
MS
13212011-02-28 Michael Snyder <msnyder@vmware.com>
1322
ac50ab3b
MS
1323 * ui-out.c (ui_out_field_core_addr): Make local char buffer
1324 a little bigger, to avoid possibility of an overflow.
1325
f63fbe86
MS
1326 * breakpoint.c (breakpoint_adjustment_warning): Make local char
1327 buffers a little bigger, to avoid possibility of an overflow.
1328
9e91a352
MS
1329 * coffread.c (coff_getfilename): Add check to avoid overflow.
1330
f2eb0bc8 1331 * objc-lang.c (selectors_info): Add a small safety margin to
28288541
MS
1332 avoid overflow.
1333 (classes_info): Error out on too long REGEXP.
1334
098ab512
MS
1335 * infrun.c (handle_inferior_event): Remove unused function call.
1336
bcbd1de9
MS
1337 * fork-child.c (fork_inferior): Remove ifdef'd code and
1338 unused variable.
1339
2e456570
MS
1340 * linux-thread-db.c (attach_thread): Discard unused value.
1341
14571dad
MS
1342 * linux-nat.c (linux_handle_extended_wait): Delete unused variable.
1343
a9cbf802
MS
1344 * remote.c (remote_get_noisy_reply): Discard unused value.
1345 (remote_vcont_resume): Ditto.
1346 (remote_stop_ns): Ditto.
1347
5715d26e
MS
1348 * linespec.c (decode_objc): Delete unused variable.
1349
4a9bca80
MS
1350 * tui/tui-regs.c (tui_register_format): Delete unused variable.
1351
f47fb265
MS
1352 * dwarf2read.c (add_partial_symbol): Discard unused values.
1353 (read_base_type): Delete unused variable.
1354
e81cff30
MS
1355 * dbxread.c (read_dbx_symtab): Discard unused value.
1356
262acaeb
MS
1357 * eval.c (evaluate_subexp_standard): Delete unused variable,
1358 and discard unused values.
1359
df983543
MS
1360 * infcmd.c (_initialize_infcmd): Discard unused values.
1361
89acf84d
MS
1362 * stabsread.c (rs6000_builtin_type): Missing break statement.
1363
ab8b8aca
MS
1364 * dbxread.c (process_one_symbol): Discard unused value.
1365
6b4511ab
MS
1366 * coffread.c (coff_end_symtab): Delete unused variable.
1367
e8e80198
MS
1368 * dwarf2read.c (dw2_get_file_names): Discard unused value.
1369 (dwarf2_add_typedef): Delete unused variable.
1370 (read_namespace): Ditto.
1371 (dwarf_decode_macros): Ditto.
1372
976aa66e
MS
1373 * m2-lang.c (evaluate_subexp_modula2): Discard unused variable.
1374
5b92b49f
MS
1375 * opencl-lang.c (evaluate_subexp_opencl): Discard unused value.
1376
91e8df85
MS
1377 * p-valprint.c (pascal_val_print): Discard unused value.
1378
899500d6
MS
1379 * utils.c (nquery): Call va_end before return;
1380 (yquery): Ditto.
1381 (query): Ditto.
1382
0480cefa
MS
1383 * proc-service.c (ps_plog): Call va_end before return.
1384
fb6a3ed3
TT
13852011-02-28 Tom Tromey <tromey@redhat.com>
1386
1387 * python/python.c (gdbpy_value_cst): New global.
1388 (_initialize_python): Initialize it.
1389 * python/python-internal.h (gdbpy_value_cst): Declare.
1390 * python/py-value.c (convert_value_from_python): Use
1391 gdbpy_value_cst.
1392
c05202a1
MS
13932011-02-28 Michael Snyder <msnyder@vmware.com>
1394
e463f587
MS
1395 * python/py-cmd.c (cmdpy_init): Fix memory leak.
1396
c38eea1a
MS
1397 * breakpoint.c (catch_syscall_completer): Free malloced list.
1398
3ef09ab5
MS
1399 * jv-lang.c (java_primitive_type_from_name): Add missing break.
1400
8f9a01ee
MS
1401 * opencl-lang.c (lval_func_check_validity): Rename inner variables.
1402 (lval_func_check_synthetic_pointer): Ditto.
1403 (lval_func_free_closure): Fix use-after-free.
c05202a1 1404
477d0d57
TT
14052011-02-28 Tom Tromey <tromey@redhat.com>
1406
1407 * psymtab.c (expand_partial_symbol_tables): Use
1408 ALL_OBJFILE_PSYMTABS.
1409
20937029
JK
14102011-02-28 Jan Kratochvil <jan.kratochvil@redhat.com>
1411
1412 * objc-lang.c (selectors_info): Error on too long REGEXP.
1413
907b7f4f
MS
14142011-02-28 Michael Snyder <msnyder@vmware.com>
1415
92e96192
MS
1416 * python/py-param.c (set_parameter_value): Add missing
1417 break statement.
1418
907b7f4f
MS
1419 * linux-record.c (record_linux_system_call): Add missing
1420 break statement.
1421
12c5a436
UW
14222011-02-28 Ulrich Weigand <uweigand@de.ibm.com>
1423
1424 * breakpoint.c (print_one_breakpoint_location): Remove unused
1425 argument PRINT_ADDRESS_BITS. Update callers.
1426 (print_one_breakpoint): Likewise.
1427
170b53b2
UW
14282011-02-28 Ulrich Weigand <uweigand@de.ibm.com>
1429
1430 * breakpoint.c (wrap_indent_at_field): New function.
1431 (print_breakpoint_location): Use it instead of WRAP_INDENT argument.
1432 Allocate ui_stream locally instead of using STB argument.
1433 (print_one_breakpoint_location): Update call.
1434 * ui-out.c (ui_out_query_field): New function.
1435 * ui-out.h (ui_out_query_field): Add prototype.
1436
8ab1f94d
JB
14372011-02-28 Joel Brobecker <brobecker@adacore.com>
1438
1439 From Michael Snyder <msnyder@vmware.com>
1440 * ada-exp.y (write_object_renaming): Add FALLTHROUGH comment.
1441
7d488639
MS
14422011-02-27 Michael Snyder <msnyder@vmware.com>
1443
ae179fba
MS
1444 * objc-lang.c (selectors_info): Prevent string overrun.
1445
086dbf66
MS
1446 * tui/tui-stack.c (tui_get_function_from_frame): Fix off by one
1447 error in strncpy.
1448
f2eb0bc8 1449 * symtab.c (rbreak_command): Move variable 'file_name' to
9c1e305a
MS
1450 outer scope.
1451
7d488639
MS
1452 * d-valprint.c (dynamic_array_type): Avoid shadowing a function
1453 param with a local variable of the same name.
1454
3bd0f5ef
MS
14552011-02-27 Michael Snyder <msnyder@vmware.com>
1456
1457 * value.c (value_from_history_ref): New function.
1458 * value.h (value_from_history_ref): Export.
1459 * cli/cli-utils.c (get_number_trailer): Use value_from_history_ref
1460 to parse value history references.
1461 * cli/cli-utils.h (get_number_trailer): Update comment.
1462
14632011-02-27 Michael Snyder <msnyder@vmware.com>
1464
1465 * inferior.c (detach_inferior_command): Use get_number_or_range.
1466 (kill_inferior_command): Ditto.
1467 (remove_inferior_command): Ditto.
1468 (initialize_inferiors): Make command names plural.
1469 Update help strings.
1470
766062f6
MS
14712011-02-27 Michael Snyder <msnyder@vmware.com>
1472
1473 * darwin-nat-info.c: Fix comment typo.
1474 * dwarf2expr.h: Ditto.
1475 * fbsd-nat.c: Ditto.
1476 * fbsd-nat.h: Ditto.
1477 * frame-unwind.h: Ditto.
1478 * frame.h: Ditto.
1479 * hppa-hpux-tdep.c: Ditto.
1480 * i386-linux-nat.c: Ditto.
1481 * linux-nat.c: Ditto.
1482 * nbsd-nat.c: Ditto.
1483 * nbsd-nat.h: Ditto.
1484 * ppc-linux-tdep.c: Ditto.
1485 * serial.c: Ditto.
1486 * ui-file.h: Ditto.
1487 * tui/tui-winsource.c: Ditto.
1488
f2c4ead5
MS
14892011-02-26 Michael Snyder <msnyder@vmware.com>
1490
86b887df
MS
1491 * breakpoint.c (reattach_breakpoints): Avoid resource leak (ui_file).
1492
66fd3b1e
MS
1493 * maint.c (maintenance_do_deprecate): Plug a memory leak.
1494
8c814cdd
MS
1495 * dwarf2loc.c (insert_bits): Avoid shadowing a function param
1496 with a local variable of the same name.
1497
6d5e094a 1498 * i387-tdep.c (i387_supply_fxsave): Avoid shadowing a function
e5b3d7d6 1499 param with a local variable of the same name.
6d5e094a 1500 (i387_supply_xsave): Ditto.
e5b3d7d6 1501
5eee517d
MS
1502 * linux-low.c (linux_nat_xfer_osdata): Rename local variable so
1503 that it does not shadow a function parameter.
1504
8fbf6b93
MS
1505 * i386-nat.c (i386_length_and_rw_bits): Document that case
1506 statement is meant to fall through.
1507
cb969d61
MS
1508 * expprint.c (dump_subexp_body_standard): Document that case
1509 statement is meant to fall through.
1510
f2c4ead5
MS
1511 * amd64-linux-tdep.c (amd64_linux_syscall_record): Delete
1512 dead if statement. Condition can't be false.
1513
b021a221
MS
15142011-02-25 Michael Snyder <msnyder@vmware.com>
1515
1516 * arm-tdep.c: Fix typos in comments.
1517 * bsd-uthread.c: Ditto.
1518 * completer.c: Ditto.
1519 * corelow.c: Ditto.
1520 * cp-namespace.c: Ditto.
1521 * cp-support.c: Ditto.
1522 * cris-tdep.c: Ditto.
1523 * dbxread.c: Ditto.
1524 * dwarf2read.c: Ditto.
1525 * frame.h: Ditto.
1526 * gdbtypes.h: Ditto.
1527 * inferior.h: Ditto.
1528 * mdebugread.c: Ditto.
1529 * mips-tdep.c: Ditto.
1530 * ppc-linux-nat.c: Ditto.
1531 * ppc-linux-tdep.c: Ditto.
1532 * printcmd.c: Ditto.
1533 * sol-thread.c: Ditto.
1534 * solib-frv.c: Ditto.
1535 * solist.h: Ditto.
1536 * sparc64-tdep.c: Ditto.
1537 * spu-tdep.c: Ditto.
1538 * stabsread.c: Ditto.
1539 * symfile.c: Ditto.
1540 * valops.c: Ditto.
1541 * varobj.c: Ditto.
1542 * vax-nat.c: Ditto.
1543 * python/py-block.c: Ditto.
1544 * python/py-symbol.c: Ditto.
1545 * python/py-symtab.c: Ditto.
1546 * python/py-value.c: Ditto.
1547 * tui/tui-win.c: Ditto.
1548
c82c0b55
MS
15492011-02-25 Michael Snyder <msnyder@vmware.com>
1550
1551 * inferior.c (print_inferior): Accept a string instead of an int
1552 for requested_inferiors, and use get_number_or_range to parse it.
1553 (info_inferiors_command): Pass args string to print_inferior.
1554 (initialize_inferiors): Change help string for info inferiors.
1555 * inferior.h (print_inferior): Export prototype change.
1556
ee00cd23
TT
15572011-02-25 Tom Tromey <tromey@redhat.com>
1558
1559 * common/ax.def (invalid2): Set to 0x31.
1560
0502ed8c
JK
15612011-02-25 Jan Kratochvil <jan.kratochvil@redhat.com>
1562
1563 * dwarf2loc.c (disassemble_dwarf_expression) <DW_OP_breg[0-9]+>: Use
1564 L and plongest.
1565 (disassemble_dwarf_expression) <DW_OP_bregx>: Drop variable offset,
1566 use L and plongest.
1567 (disassemble_dwarf_expression) <DW_OP_fbreg>: Use L and plongest.
1568
2c9de912
MS
15692011-02-24 Michael Snyder <msnyder@vmware.com>
1570
1571 * Makefile.in (clean): Make clean should remove generated files
1572 observer.h and observer.inc.
1573
a04b0428
JB
15742011-02-24 Joel Brobecker <brobecker@adacore.com>
1575
1576 Revert the following patch (not approved yet):
1577 2011-02-21 Hui Zhu <teawater@gmail.com>
1578 * Makefile.in (HFILES_NO_SRCDIR): Add printcmd.h.
1579 * ax-gdb.c (gen_printf_expr_callback): New function.
1580 * ax-gdb.h (gen_printf_expr_callback): Forward declare.
1581 * ax-general.c (ax_memcpy): New function.
1582 (ax_print): Handle "printf".
1583 (ax_reqs): Ditto.
1584 * ax.h (ax_memcpy): Forward declare.
1585 * common/ax.def (invalid2): Removed.
1586 (printf): New entry.
1587 * printcmd.c (printcmd.h): New include.
1588 (string_printf): New function.
1589 (ui_printf): Removed.
1590 (printf_command): Remove static. Call string_printf.
1591 (eval_command): Call string_printf.
1592 * printcmd.h: New file.
1593 * tracepoint.c (validate_actionline,
1594 encode_actions_1): handle printf_command.
1595
2b52013f
TT
15962011-02-23 Tom Tromey <tromey@redhat.com>
1597
1598 * ax-general.c (ax_pick): Add missing newline.
1599
e5a67952
MS
16002011-02-23 Michael Snyder <msnyder@vmware.com>
1601
1602 * breakpoint.c (breakpoint_1): Change first argument from an int
1603 to a char pointer, so that the function now accepts a list of
f2eb0bc8 1604 breakpoints rather than just one. Use new function
e5a67952
MS
1605 'number_is_in_list' to implement.
1606 (breakpoints_info): Pass char * instead of int to breakpoint_1.
1607 (watchpoints_info): Ditto.
1608 (tracepoints_info): Ditto.
1609 (maintenance_info_breakpoints): Ditto.
1610 (_initialize_breakpoint): Update help strings to reflect the fact
1611 that these functions can now take more than one argument.
1612 * cli/cli-utils.c (number_is_in_list): New function.
1613 * cli/cli-utils.h (number_is_in_list): Export.
1614
16152011-02-23 Michael Snyder <msnyder@vmware.com>
fbcb778d
MS
1616
1617 * memattr.c (mem_enable_command): Use get_number_or_range.
1618 (mem_disable_command): Ditto.
1619 (mem_delete_command): Ditto.
1620 (_initialize_mem): Tweak usage message to reflect multiple
1621 arguments.
1622
6e6fbe60
DE
16232011-02-22 Doug Evans <dje@google.com>
1624
1625 Add gdb.lookup_global_symbol python function.
1626 * NEWS: Add entry.
1627 * python/py-symbol.c (gdbpy_lookup_global_symbol): New function.
1628 * python/python-internal.h (gdbpy_lookup_global_symbol): Declare it.
1629 * python/python.c (GdbMethods): Add entry for lookup_global_symbol.
1630
79b97fa8
TT
16312011-02-22 Tom Tromey <tromey@redhat.com>
1632
1633 * language.c (language_class_name_from_physname): Rename
1634 'curr_language' argument to 'lang'; use in body.
1635
298f437a
MS
16362011-02-22 Michael Snyder <msnyder@vmware.com>
1637
1638 * cli/cli-utils.c (number_is_in_list): Check for zero return.
1639
b7ea3126
PA
16402011-02-22 Pedro Alves <pedro@codesourcery.com>
1641
1642 * frame-unwind.h: Fix comment to mention the this frame, not the
1643 next.
1644
58ee6d60
TT
16452011-02-22 Tom Tromey <tromey@redhat.com>
1646
1647 * symfile.c (auto_solib_limit): Remove.
1648 * symfile.h (auto_solib_limit): Remove.
1649
36238dbc
JB
16502011-02-22 Joel Brobecker <brobecker@adacore.com>
1651
1652 * Makefile.in (INSTALLED_LIBS): Delete. Update comment.
1653
aea5b279
MS
16542011-02-21 Michael Snyder <msnyder@vmware.com>
1655
1656 * gdbthread.h (print_thread_info): Change prototype.
1657 * thread.c (print_thread_info): Accept char* instead of int for
1658 requested_threads argument. Use new function number_is_in_list
1659 to determine which threads to list.
1660 (info_threads_command): Pass char* to print_thread_info.
1661 * cli/cli-utils.c (number_is_in_list): New function.
1662 * cli/cli-utils.h (number_is_in_list): Export.
f2eb0bc8 1663 * mi/mi-main.c (mi_cmd_thread_info): Pass char* to
aea5b279
MS
1664 print_thread_info.
1665 (print_one_inferior): Ditto.
1666 (mi_cmd_list_thread_groups): Ditto.
1667
8caa75ee
JK
16682011-02-21 Jan Kratochvil <jan.kratochvil@redhat.com>
1669
1670 * common/Makefile.in (CFLAGS): New.
1671 (COMPILE): Add $(CFLAGS).
1672
ea666128
TT
16732011-02-21 Tom Tromey <tromey@redhat.com>
1674
1675 * breakpoint.c (catch_syscall_command_1): Fix typo.
1676
e9cafbcc
TT
16772011-02-21 Tom Tromey <tromey@redhat.com>
1678
1679 * reverse.c: Include cli-utils.h.
1680 * printcmd.c: Include cli-utils.h.
1681 (string_printf): Use skip_spaces.
1682 * cli/cli-utils.h: New file.
1683 * cli/cli-utils.c: New file.
1684 * cli/cli-dump.h (skip_spaces): Move to cli-utils.h.
1685 * cli/cli-dump.c (skip_spaces): Move to cli-utils.c.
1686 * breakpoint.h (get_number, get_number_or_range): Move to
1687 cli-utils.h.
1688 * breakpoint.c: Include cli-utils.h.
1689 (get_number_trailer, get_number, get_number_or_range)
1690 (ep_skip_leading_whitespace): Move to cli-utils.c.
1691 (create_breakpoint_sal, find_condition_and_thread)
1692 (decode_static_tracepoint_spec, watch_command_1)
1693 (watch_maybe_just_location, ep_parse_optional_if_clause)
1694 (catch_fork_command_1, catch_exec_command_1)
1695 (catch_syscall_command_1): Use skip_spaces, skip_to_space.
1696 * Makefile.in (SUBDIR_CLI_OBS): Add cli-utils.o.
1697 (SUBDIR_CLI_SRCS): Add cli-utils.c.
1698 (HFILES_NO_SRCDIR): Add cli-utils.h.
1699 (cli-utils.o): New target.
1700
f67fd822
PM
17012011-02-18 Pierre Muller <muller@ics.u-strasbg.fr>
1702
1703 * remote.c (remote_close): Reset INFERIOR_PTID to NULL_PTID
1704 before calling discard_all_inferiors.
1705
c9def01d
UW
17062011-02-21 Ulrich Weigand <uweigand@de.ibm.com>
1707
1708 * opencl-lang.c (STRUCT_OCL_TYPE): Remove.
1709 (struct builtin_opencl_type): Remove.
1710 (builtin_opencl_type): Change return type to "struct type **".
1711 (lookup_opencl_vector_type): Update caller.
1712 (opencl_language_arch_info): Copy primitive type vector from gdbarch.
1713 (build_opencl_types): Install plain array of "struct type *"
1714 instead of "struct builtin_opencl_type".
1715
e3039479
UW
17162011-02-21 Matthew Gretton-Dann <matthew.gretton-dann@arm.com>
1717 Ulrich Weigand <uweigand@de.ibm.com>
1718
1719 * arm-linux-nat.c: Include "observer.h" and "gdbthread.h".
1720 (PTRACE_GETHBPREGS, PTRACE_SETHBPREGS): Define.
1721 (struct arm_linux_hwbp_cap): New type.
1722 (arm_linux_get_hwbp_cap): New function.
1723 (arm_linux_get_hw_breakpoint_count): Likewise.
1724 (arm_linux_get_hw_watchpoint_count): Likewise.
1725 (arm_linux_can_use_hw_breakpoint): Likewise.
1726 (arm_hwbp_type): New type.
1727 (arm_hwbp_control_t): Likewise.
1728 (struct arm_linux_hw_breakpoint): Likewise.
1729 (struct arm_linux_thread_points): Likewise.
1730 (arm_threads): New global variable.
1731 (arm_linux_find_breakpoints_by_tid): New function.
1732 (arm_hwbp_control_initialize): Likewise.
1733 (arm_hwbp_control_is_enabled): Likewise.
1734 (arm_hwbp_control_disable): Likewise.
1735 (arm_linux_hw_breakpoint_initialize): Likewise.
1736 (arm_linux_get_hwbp_type): Likewise.
1737 (arm_linux_hw_watchpoint_initialize): Likewise.
1738 (arm_linux_hw_breakpoint_equal): Likewise.
1739 (arm_linux_insert_hw_breakpoint1): Likewise.
1740 (arm_linux_remove_hw_breakpoint1): Likewise.
1741 (arm_linux_insert_hw_breakpoint): Likewise.
1742 (arm_linux_remove_hw_breakpoint): Likewise.
1743 (arm_linux_region_ok_for_hw_watchpoint): Likewise.
1744 (arm_linux_insert_watchpoint): Likewise.
1745 (arm_linux_remove_watchpoint): Likewise.
1746 (arm_linux_stopped_data_address): Likewise.
1747 (arm_linux_stopped_by_watchpoint): Likewise.
1748 (arm_linux_watchpoint_addr_within_range): Likewise.
1749 (arm_linux_new_thread): Likewise.
1750 (arm_linux_thread_exit): Likewise.
1751 (_initialize_arm_linux_nat): Install hardware breakpoint/watchpoint
1752 related target callbacks. Register arm_linux_new_thread and
1753 arm_linux_thread_exit.
1754 * arm-tdep.h (arm_pc_is_thumb): Add prototype.
1755 * arm-tdep.c (arm_pc_is_thumb): Make global.
1756 (arm_gdbarch_init): Call set_gdbarch_have_nonsteppable_watchpoint.
1757
b5db5dfc
UW
17582011-02-21 Ulrich Weigand <uweigand@de.ibm.com>
1759
1760 * breakpoint.c (update_watchpoint): Do not attempt to recreate
1761 per-frame locations while within a function epilogue.
1762
e25b2cfa
PM
17632011-02-21 Pierre Muller <muller@ics.u-strasbg.fr>
1764
1765 * ser-mingw.c (ser_windows_close): Reformat comment to better conform
1766 to GNU coding standards.
1767
4af53f97
PM
17682011-02-21 Pierre Muller <muller@ics.u-strasbg.fr>
1769
1770 Allow use of mingw native on Windows 95 OS.
e25b2cfa 1771 * ser-mingw.c (CancelIo): New macro for dynamically loaded DLL entry.
4af53f97
PM
1772 (ser_windows_close): Only call CancelIo if function exists.
1773 (_initialize_ser_windows): Use LoadLirary/GetProcAddress
1774 to check for existence of CancelIo function in kernel32 DLL.
1775
d0e92d82
HZ
17762011-02-21 Hui Zhu <teawater@gmail.com>
1777
1778 * Makefile.in (HFILES_NO_SRCDIR): Add printcmd.h.
1779 * ax-gdb.c (gen_printf_expr_callback): New function.
1780 * ax-gdb.h (gen_printf_expr_callback): Forward declare.
1781 * ax-general.c (ax_memcpy): New function.
1782 (ax_print): Handle "printf".
1783 (ax_reqs): Ditto.
1784 * ax.h (ax_memcpy): Forward declare.
1785 * common/ax.def (invalid2): Removed.
1786 (printf): New entry.
1787 * printcmd.c (printcmd.h): New include.
1788 (string_printf): New function.
1789 (ui_printf): Removed.
1790 (printf_command): Remove static. Call string_printf.
1791 (eval_command): Call string_printf.
1792 * printcmd.h: New file.
1793 * tracepoint.c (validate_actionline,
1794 encode_actions_1): handle printf_command.
1795
7d357efd
MS
17962011-02-19 Michael Snyder <msnyder@vmware.com>
1797
1798 * reverse.c (delete_one_bookmark): Argument is now bookmark
1799 id rather than pointer to bookmark struct.
1800 (delete_bookmark_command): Use get_number_or_range.
1801 (goto_bookmark_command): Parse with get_number instead of strtoul.
1802 (bookmark_1): New function. Print info for one bookmark.
1803 (bookmarks_info): Use get_number_or_range and bookmark_1.
1804
7a45ebd7
MS
18052011-02-18 Michael Snyder <msnyder@vmware.com>
1806
f2eb0bc8 1807 * thread.c (info_threads_command): Re-implement using
7a45ebd7 1808 get_number_or_range.
65ebfb52 1809 (thread_apply_command): Ditto.
7a45ebd7 1810
94d5e490
TT
18112011-02-18 Tom Tromey <tromey@redhat.com>
1812
1813 * common/ax.def: New file.
1814 * ax.h (enum agent_op): Use ax.def.
1815 * ax-general.c (aop_map): Use ax.def.
1816
c7f96d2b
TT
18172011-02-18 Tom Tromey <tromey@redhat.com>
1818
1819 * ax-general.c (aop_map): Add pick and rot.
1820 * dwarf2loc.c (compile_dwarf_to_ax) <DW_OP_over>: Reimplement.
1821 <DW_OP_rot>: Implement.
1822 * ax.h (enum agent_op) <aop_pick, aop_rot>: New constants.
1823 (ax_pick): Declare.
1824 * ax-general.c (ax_pick): New function.
1825
66694b75
TT
18262011-02-18 Tom Tromey <tromey@redhat.com>
1827
1828 * Makefile.in (HFILES_NO_SRCDIR): Don't mention ada-operator.inc.
1829
eeaafae2
JK
18302011-02-18 Jan Kratochvil <jan.kratochvil@redhat.com>
1831 Tom Tromey <tromey@redhat.com>
1832
1833 * cp-support.c (make_symbol_overload_list_namespace): Do not call
1834 make_symbol_overload_list_block with NULL BLOCK.
1835 * valarith.c (unop_user_defined_p): Resolve also TYPE_CODE_TYPEDEF.
1836
3c3fe74c
PA
18372011-02-18 Pedro Alves <pedro@codesourcery.com>
1838
1839 * breakpoint.c (get_number_trailer): No longer accept a NULL PP.
1840 * breakpoint.h (get_number_or_range): Declare.
1841 * printcmd.c (ALL_DISPLAYS): Declare.
1842 (delete_display): Reimplement taking a display pointer.
1843 (undisplay_command): Accept a range of displays to delete, using
1844 get_number_or_range.
1845
13163d80
PM
18462011-02-18 Pierre Muller <muller@ics.u-strasbg.fr>
1847
1848 * c-valprint.c (c_val_print): Add embedded_offset to address
1849 for arrays of unspecified length.
1850 * p-valprint.c (pascal_val_print): Likewise.
1851
b434a28f
YQ
18522011-02-18 Yao Qi <yao@codesourcery.com>
1853
1854 * gdb/arm-tdep.c (arm_displaced_step_copy_insn): Move code to ...
1855 (arm_process_displaced_insn): .. here. Remove parameter INSN.
1856 (thumb_process_displaced_insn): New.
1857 * gdb/arm-linux-tdep.c (arm_linux_displaced_step_copy_insn): Update
1858 call to arm_process_displaced_insn.
1859 * gdb/arm-tdep.h : Update declaration of arm_process_displaced_insn.
1860
9f6f94ff
TT
18612011-02-17 Tom Tromey <tromey@redhat.com>
1862
1863 * dwarf2loc.h (dwarf2_compile_expr_to_ax): Declare.
1864 * dwarf2loc.c (dwarf2_compile_expr_to_ax): Rename from
1865 compile_dwarf_to_ax. No longer static. Call
1866 dwarf2_compile_cfa_to_ax.
1867 (locexpr_tracepoint_var_ref): Update.
1868 (loclist_tracepoint_var_ref): Update.
1869 * dwarf2-frame.h (dwarf2_compile_cfa_to_ax): Declare.
1870 * dwarf2-frame.c (execute_cfa_program): Remove 'this_frame'
1871 argument; add 'gdbarch' and 'pc'.
1872 (dwarf2_compile_cfa_to_ax): New function.
1873 (dwarf2_frame_cache): Update.
1874
e67ad678
JB
18752011-02-17 Joel Brobecker <brobecker@adacore.com>
1876
1877 * ada-lang.c (ada_type_of_array): Fix the size of the array
1878 in the case of an unconstrained packed array.
1879
946ebb0d
YQ
18802011-02-17 Yao Qi <yao@codesourcery.com>
1881
1882 * common/Makefile.in: Add more targets for make.
1883
1ba1b353
TT
18842011-02-16 Tom Tromey <tromey@redhat.com>
1885
1886 * dwarf2loc.c (unimplemented): Fix typo.
1887
b1bfef65
TT
18882011-02-16 Tom Tromey <tromey@redhat.com>
1889
1890 * dwarf2loc.c (unimplemented): Handle unnamed opcodes.
1891 (compile_dwarf_to_ax) <default>: Use unimplemented.
1892 <DW_OP_deref>: Update.
1893 (disassemble_dwarf_expression): Update.
1894 * dwarf2read.c (dwarf_stack_op_name): Remove 'def' argument.
1895 (decode_locdesc): Update.
1896 * dwarf2expr.h (dwarf_stack_op_name): Update.
1897
5f1e6f19
TT
18982011-02-16 Tom Tromey <tromey@redhat.com>
1899
1900 * ax.h (struct aop_map) <name>: Now const.
1901
a0c78a73
PA
19022011-02-16 Tom Tromey <tromey@redhat.com>
1903
1904 * ax-gdb.c.c (gen_expr) <UNOP_MEMVAL>: Handle value kinds other
1905 than axs_rvalue.
1906
946ebb0d 19072011-02-16 Yao Qi <yao@codesourcery.com>
a42244db
YQ
1908
1909 * infrun.c (get_displaced_step_closure_by_addr): New.
1910 * inferior.h: Declare it.
1911 * arm-tdep.c: (arm_pc_is_thumb): Call
1912 get_displaced_step_closure_by_addr. Adjust MEMADDR if it
1913 returns non-NULL.
1914
08807d5a
PA
19152011-02-16 Pedro Alves <pedro@codesourcery.com>
1916 Jan Kratochvil <jan.kratochvil@redhat.com>
1917
1918 gdb/
1919 * tracepoint.c (memrange_sortmerge): Fix list A's end calculation.
1920
29976f3f
PA
19212011-02-16 Pedro Alves <pedro@codesourcery.com>
1922 Jan Kratochvil <jan.kratochvil@redhat.com>
1923
1924 * value.c (value_contents_copy_raw): Extend describing comment.
1925 Assert that the destination contents we're overwriting are wholly
1926 available.
fb68ae73 1927 (value_contents_copy): Extend describing comment.
29976f3f 1928
cd24cfaa
PA
19292011-02-16 Pedro Alves <pedro@codesourcery.com>
1930 Jan Kratochvil <jan.kratochvil@redhat.com>
1931
1932 * value.c (value_available_contents_eq): Remove redundant local
1933 variables. Fix available contents comparision.
1934 * value.h (value_available_contents_eq): Extend describing
1935 comment.
1936
60bbf338
YQ
19372011-02-16 Yao Qi <yao@codesourcery.com>
1938
1939 * thread.c (info_threads_command): Add missing i18n markup and remove
1940 trailing newline.
1941
17450429
PP
19422011-02-15 Paul Pluzhnikov <ppluzhnikov@google.com>
1943
1944 * breakpoint.c (longjmp_names): New variable.
1945 (struct breakpoint_objfile_data): New type.
1946 (breakpoint_objfile_key): New variable.
1947 (msym_not_found): New variable.
1948 (msym_not_found_p): New predicate.
1949 (get_breakpoint_objfile_data): New function.
1950 (create_overlay_event_breakpoint): Check per-objfile cache for
1951 symbols first.
1952 (create_longjmp_master_breakpoint): Likewise.
1953 (create_std_terminate_master_breakpoint): Likewise.
1954 (create_exception_master_breakpoint): Likewise.
1955 (_initialize_breakpoint): Register per-objfile data key.
1956
af02033e
PP
19572011-02-15 Paul Pluzhnikov <ppluzhnikov@google.com>
1958
1959 * breakpoint.c ((create_overlay_event_breakpoint): Const-propagate
1960 parameter value.
1961 (create_longjmp_master_breakpoint): Loop over longjmp names.
1962 (create_std_terminate_master_breakpoint): Const-propagate parameter
1963 value.
1964 (update_breakpoints_after_exec): Adjust.
1965 (breakpoint_re_set): Adjust.
1966
60f98dde
MS
19672011-02-15 Michael Snyder <msnyder@vmware.com>
1968
cdf99611
MS
1969 * thread.c (info_threads_command): Process arg as thread id,
1970 or list of thread ids.
1971 (thread_find_command): New command.
1972 (_initialize_thread): Document argument for info threads.
1973 Document 'thread find' command.
1974 * NEWS: Document new command "thread find".
60f98dde 1975
0feedb2c
JK
19762011-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
1977
1978 * Makefile.in (ACLOCAL_AMFLAGS): Add `-I ../config'.
1979 * aclocal.m4: Regenerated with aclocal-1.11.1.
1980 * common/configure: Regenerate with autoconf-2.64.
1981
648cd113
KW
19822011-02-15 Ken Werner <ken.werner@de.ibm.com>
1983
1984 * opencl-lang.c (build_opencl_types): Set the size of the built-in
1985 bool data type to a size of one byte.
1986
5657161f
PA
19872011-02-15 Pedro Alves <pedro@codesourcery.com>
1988 Jan Kratochvil <jan.kratochvil@redhat.com>
1989
1990 * target.c (memory_xfer_live_readonly_partial): Document where to
1991 look for interface description.
1992
494e194e
YQ
19932011-02-15 Yao Qi <yao@codesourcery.com>
1994
1995 PR tdep/12352
1996 * arm-tdep.c (copy_ldr_str_ldrb_strb): Replace PC with SP in
1997 order to store PC value on stack instead of text section.
1998
d9492458
TJB
19992011-02-15 Thiago Jung Bauermann <bauerman@br.ibm.com>
2000
2001 * rs6000-tdep.c (IS_EFP_PSEUDOREG): Use correct constant for
2002 the EFP register set size.
2003 (efpr_pseudo_register_read): Use regcache_raw_read_part to read
2004 data from the VMX register.
2005 (efpr_pseudo_register_write): Use regcache_raw_write_part to read
2006 and write data from/to the VMX register.
2007
cdf99611
MS
20082011-02-14 Michael Snyder <msnyder@vmware.com>
2009
2010 * command.h (enum command_class): New class 'no_set_class', for
2011 "show" commands without a corresponding "set" command.
2012 * value.c (_initialize_values): Use 'no_set_class' for "show values".
2013 * copying.c (_initialize_copying): Ditto for "show copying" and
2014 "show warranty".
2015 * cli/cli-cmds.c (init_cli_cmds): Ditto for "show commands" and
2016 "show version".
2017 * cli/cli-setshow.c (cmd_show_list): Skip "show" commands for
2018 which there is no corresponding "set" command (eg. "show copying").
2019
424447ee
PA
20202011-02-14 Pedro Alves <pedro@codesourcery.com>
2021 Jan Kratochvil <jan.kratochvil@redhat.com>
2022
2023 * exec.c (section_table_available_memory): Change `len' parameter
2024 type to ULONGEST.
2025 * exec.h (section_table_available_memory): Ditto.
2026 * value.h (read_value_memory): Rename the `offset' parameter to
2027 `embedded_offset'.
2028
c0f61f9c 20292011-02-14 Pedro Alves <pedro@codesourcery.com>
e0ccc0c7 2030 Jan Kratochvil <jan.kratochvil@redhat.com>
c0f61f9c
PA
2031
2032 * memrange.c (compare_mem_ranges): Mention sort order in
2033 describing comment.
2034 (normalize_mem_ranges): Add comment. Fix ra->length calculation.
2035 * tracepoint.c (traceframe_available_memory): Extend comment to
2036 mention what happens to RESULT when the target does not support
2037 the query.
2038
6bfc80c7
PA
20392011-02-14 Pedro Alves <pedro@codesourcery.com>
2040 Jan Kratochvil <jan.kratochvil@redhat.com>
2041
2042 * value.c (mark_value_bytes_unavailable): Fix indexing the `bef'
2043 range.
2044
e7303042
PA
20452011-02-14 Pedro Alves <pedro@codesourcery.com>
2046
2047 * value.c (value_bits_valid, value_bits_synthetic_pointer):
2048 No longer handle NULL values.
2049
8af8e3bc
PA
20502011-02-14 Pedro Alves <pedro@codesourcery.com>
2051
2052 * exceptions.h (NOT_AVAILABLE_ERROR): New error.
2053 * value.c: Include "exceptions.h".
2054 (require_available): Throw NOT_AVAILABLE_ERROR instead of a
2055 generic error.
2056 * cp-abi.c: Include gdb_assert.h.
2057 (baseclass_offset): Add `embedded_offset' and `val' parameters.
2058 Assert the method is implemented. Wrap NOT_AVAILABLE_ERROR
2059 errors.
2060 * cp-abi.h (baseclass_offset): Add `embedded_offset' and `val'
2061 parameters. No longer returns -1 on error.
2062 (struct cp_abi_ops) <baseclass_offset>: Add `embedded_offset' and
2063 `val' parameters.
2064 * cp-valprint.c: Include exceptions.h.
2065 (cp_print_value): Handle NOT_AVAILABLE_ERROR errors when fetching
2066 the baseclass_offset. Handle unavailable base classes. Use
2067 val_print_invalid_address.
2068 * p-valprint.c: Include exceptions.h.
2069 (pascal_object_print_value): Handle NOT_AVAILABLE_ERROR errors
2070 when fetching the baseclass_offset. No longer expect
2071 baseclass_offset returning -1. Handle unavailable base classes.
2072 Use val_print_invalid_address.
2073 * valops.c (dynamic_cast_check_1): Rename `contents' parameter to
2074 `valaddr' parameter, and change its type to gdb_byte pointer. Add
2075 `embedded_offset' and `val' parameters. Adjust.
2076 (dynamic_cast_check_2): Rename `contents' parameter to `valaddr'
2077 parameter, and change its type to gdb_byte pointer. Add
2078 `embedded_offset' and `val' parameters. Adjust. No longer expect
2079 baseclass_offset returning -1.
2080 (value_dynamic_cast): Use value_contents_for_printing rather than
2081 value_contents. Adjust.
2082 (search_struct_field): No longer expect baseclass_offset returning
2083 -1.
2084 (search_struct_method): If reading memory from the target is
2085 necessary, wrap it in a new value to pass to baseclass_offset. No
2086 longer expect baseclass_offset returning -1.
2087 (find_method_list): No longer expect baseclass_offset returning
2088 -1. Use value_contents_for_printing rather than value_contents.
2089 * valprint.c (val_print_invalid_address): New function.
2090 * valprint.h (val_print_invalid_address): Declare.
2091 * gdbtypes.c (is_unique_ancestor_worker): New `embedded_offset'
2092 and `val' parameters. No longer expect baseclass_offset returning
2093 -1. Adjust.
2094 * gnu-v2-abi.c: Include "exceptions.h".
2095 (gnuv2_baseclass_offset): Add `embedded_offset' and `val'
2096 parameters. Handle unavailable memory. Recurse through
2097 gnuv2_baseclass_offset directly, rather than through
2098 baseclass_offset. No longer returns -1 on not found, instead
2099 throw an error.
2100 * gnu-v3-abi.c (gnuv3_baseclass_offset): Add `embedded_offset' and
2101 `val' parameters. Adjust.
2102
1b28d0b3
PA
21032011-02-14 Pedro Alves <pedro@codesourcery.com>
2104
2105 * tracepoint.c (memrange_sortmerge): Don't merge ranges that are
2106 almost but not quite adjacent.
2107
ec0a52e1
PA
21082011-02-14 Pedro Alves <pedro@codesourcery.com>
2109
2110 * value.h (value_entirely_available): Declare.
2111 * value.c (value_entirely_available): New function.
2112 * c-valprint.c (c_value_print): Don't try fetching the pointer's
2113 real type if the pointer is unavailable.
2114
24e6bcee
PA
21152011-02-14 Pedro Alves <pedro@codesourcery.com>
2116
2117 * valops.c (value_repeat): Use read_value_memory instead of
2118 read_memory.
2119
39d37385
PA
21202011-02-14 Pedro Alves <pedro@codesourcery.com>
2121
2122 * value.h (value_contents_copy, value_contents_copy_raw): Declare.
2123 * value.c (value_contents_copy_raw, value_contents_copy): New
2124 functions.
2125 (value_primitive_field): Use value_contents_copy_raw instead of
2126 memcpy.
2127 * valops.c (value_fetch_lazy): Use value_contents_copy instead of
2128 memcpy.
2129 (value_array, value_slice): Ditto.
2130 * valarith.c (value_subscripted_rvalue): Use
2131 value_contents_copy_raw instead of memcpy.
2132
a3d34bf4
PA
21332011-02-14 Pedro Alves <pedro@codesourcery.com>
2134
2135 <unavailable> references.
2136
2137 * valops.c (get_value_at): Use value_from_contents_and_address,
2138 avoiding read_memory.
2139
9fc6d940
PA
21402011-02-14 Pedro Alves <pedro@codesourcery.com>
2141
2142 * c-valprint.c (c_val_print): Print a string with unavailable
2143 contents as an array.
2144
5467c6c8
PA
21452011-02-14 Pedro Alves <pedro@codesourcery.com>
2146
2147 * value.h (unpack_bits_as_long): Delete declaration.
2148 (unpack_value_bits_as_long): Declare.
2149 (unpack_value_field_as_long): Declare.
2150 (value_field_bitfield): Declare.
2151 * value.c (unpack_bits_as_long): Rename to...
2152 (unpack_value_bits_as_long_1): ... this. Add embedded_offset and
2153 value parameters. Return the extracted result in a new output
2154 parameter. If the value contents are unavailable, return false,
2155 otherwise return true.
2156 (unpack_value_bits_as_long): New.
2157 (unpack_field_as_long): Rename to...
2158 (unpack_value_field_as_long_1): ... this. Add embedded_offset and
2159 Add embedded_offset and value parameters. Return the extracted
2160 result in a new output parameter. If the value contents are
2161 unavailable, return false, otherwise return true.
2162 (unpack_value_field_as_long): New.
2163 (unpack_field_as_long_1): New.
2164 (unpack_field_as_long): Reimplement as wrapper around
2165 unpack_value_field_as_long_1.
2166 (value_field_bitfield): New function.
2167 * valops.c (value_fetch_lazy): When fetching a bitfield, use
2168 unpack_value_bits_as_long. Mark the value as unavailable, if it
2169 is unavailable.
2170 * jv-valprint.c (java_print_value_fields): Use
2171 value_field_bitfield.
2172 * p-valprint.c (pascal_object_print_value_fields): Use
2173 value_field_bitfield.
2174 * cp-valprint.c (cp_print_value_fields): Use value_field_bitfield.
2175
3158c6ed
PA
21762011-02-14 Pedro Alves <pedro@codesourcery.com>
2177
2178 * value.c (get_internalvar_integer): Also return the int value of
2179 TYPE_CODE_INT INTERNALVAR_VALUE values.
2180 (set_internalvar): Don't special case TYPE_CODE_INT.
2181
9fbdca0d
PA
21822011-02-14 Pedro Alves <pedro@codesourcery.com>
2183
2184 * value.c (struct internalvar) <enum internalvar_kind>: Remove
2185 INTERNALVAR_POINTER.
2186 <pointer>: Delete.
2187 (value_of_internalvar): Remove INTERNALVAR_POINTER handling.
2188 (set_internalvar): Remove special TYPE_CODE_PTR handling.
2189 (preserve_one_internalvar): Remove INTERNALVAR_POINTER handling.
2190
c8c1c22f
PA
21912011-02-14 Pedro Alves <pedro@codesourcery.com>
2192
2193 * value.h (value_available_contents_eq): Declare.
2194 * value.c (find_first_range_overlap): New function.
2195 (value_available_contents_eq): New function.
2196 * valprint.c (val_print_array_elements): Use
2197 value_available_contents_eq.
2198 * ada-valprint.c (val_print_packed_array_elements): Use
2199 value_available_contents_eq.
2200 * jv-valprint.c (java_value_print): Use
2201 value_available_contents_eq.
2202
e6e4e701
PA
22032011-02-14 Pedro Alves <pedro@codesourcery.com>
2204
2205 * target.c (target_read_live_memory): New function.
2206 (memory_xfer_live_readonly_partial): New.
2207 (memory_xfer_partial): If reading from a traceframe, fallback to
2208 reading unavailable read-only memory from read-only regions of
2209 live target memory.
2210 * tracepoint.c (disconnect_tracing): Adjust.
2211 (set_current_traceframe): New, factored out from
2212 set_traceframe_number.
2213 (set_traceframe_number): Reimplement to only change the traceframe
2214 number on the GDB side.
2215 (do_restore_current_traceframe_cleanup): Adjust.
2216 (make_cleanup_restore_traceframe_number): New.
2217 (cur_traceframe_number): New global.
2218 (tfile_open): Set cur_traceframe_number to no traceframe.
2219 (set_tfile_traceframe): New function.
2220 (tfile_trace_find): If looking up a traceframe using any method
2221 other than by number, make sure the current tfile traceframe
2222 matches gdb's current traceframe. Update the current tfile
2223 traceframe if the lookup succeeded.
2224 (tfile_fetch_registers, tfile_xfer_partial)
2225 (tfile_get_trace_state_variable_value): Make sure the remote
2226 traceframe matches gdb's current traceframe.
2227 * remote.c (remote_traceframe_number): New global.
2228 (remote_open_1): Set it to -1.
2229 (set_remote_traceframe): New function.
2230 (remote_fetch_registers, remote_store_registers)
2231 (remote_xfer_memory, remote_xfer_partial)
2232 (remote_get_trace_state_variable_value): Make sure the remote
2233 traceframe matches gdb's current traceframe.
2234 (remote_trace_find): If looking up a traceframe using any method
2235 other than by number, make sure the current remote traceframe
2236 matches gdb's current traceframe. Update the current remote
2237 traceframe if the lookup succeeded.
2238 * infrun.c (fetch_inferior_event): Adjust.
2239 * tracepoint.h (set_current_traceframe): Declare.
2240 (get_traceframe_number, set_traceframe_number): Add describing
2241 comments.
2242
e6ca34fc
PA
22432011-02-14 Pedro Alves <pedro@codesourcery.com>
2244
2245 Mark pieces of values as unavailable if the corresponding memory
2246 is unavailable.
2247
2248 * valops.c: Include tracepoint.h.
2249 (value_fetch_lazy): Use read_value_memory.
2250 (read_value_memory): New.
2251 * value.h (read_value_memory): Declare.
2252 * dwarf2loc.c (read_pieced_value): Use read_value_memory.
2253 * exec.c (section_table_available_memory): New function.
2254 * exec.h (section_table_available_memory): Declare.
2255
2a7498d8
PA
22562011-02-14 Pedro Alves <pedro@codesourcery.com>
2257
2258 * Makefile.in (SFILES): Add memrange.c.
2259 (HFILES_NO_SRCDIR): Add memrange.h.
2260 (COMMON_OBS): Add memrange.o.
2261 * memrange.c: New file.
2262 * memrange.h: New file.
2263 * tracepoint.c: Include memrange.h.
2264 (struct mem_range): Delete.
2265 (mem_range_s): Delete.
2266 (traceframe_available_memory): New function.
2267 * tracepoint.h (traceframe_available_memory): Declare.
2268
b3b9301e
PA
22692011-02-14 Pedro Alves <pedro@codesourcery.com>
2270
2271 * target.h (struct traceframe_info): Forward declare.
2272 (enum target_object): Add TARGET_OBJECT_TRACEFRAME_INFO.
2273 (struct target_ops) <to_traceframe_info>: New field.
2274 (target_traceframe_info): New.
2275 * target.c (update_current_target): Inherit and default
2276 to_traceframe_info.
2277 * remote.c (PACKET_qXfer_traceframe_info): New.
2278 (remote_protocol_features): Register qXfer:traceframe-info:read.
2279 (remote_xfer_partial): Handle TARGET_OBJECT_TRACEFRAME_INFO.
2280 (remote_traceframe_info): New.
2281 (init_remote_ops): Install it.
2282 (_initialize_remote): Install "set/show remote traceframe-info"
2283 commands.
2284 * tracepoint.h (parse_traceframe_info): Declare.
2285 * tracepoint.c (struct mem_range): New.
2286 (mem_range_s): New typedef.
2287 (struct traceframe_info): New.
2288 (traceframe_info): New global.
2289 (free_traceframe_info): New function.
2290 (clear_traceframe_info): New function.
2291 (start_tracing, tfind_1, set_traceframe_number): Clear traceframe
2292 info.
2293 (build_traceframe_info): New function.
2294 (tfile_traceframe_info): New function.
2295 (init_tfile_ops): Install tfile_traceframe_info.
2296 (traceframe_info_start_memory, free_result): New functions.
2297 (memory_attributes, traceframe_info_elements): New globals.
2298 (parse_traceframe_info, get_traceframe_info): New functions.
2299 * features/traceframe-info.dtd: New file.
2300 * Makefile.in (XMLFILES): Add traceframe-info.dtd.
2301
4e07d55f
PA
23022011-02-14 Pedro Alves <pedro@codesourcery.com>
2303
2304 Base support for <unavailable> value contents.
2305
4e07d55f
PA
2306 * value.h (value_bytes_available): Declare.
2307 (mark_value_bytes_unavailable): Declare.
2308 * value.c (struct range): New struct.
2309 (range_s): New typedef.
2310 (ranges_overlap): New function.
2311 (range_lessthan): New function.
2312 (ranges_contain_p): New function.
2313 (struct value) <unavailable>: New field.
2314 (value_bytes_available): New function.
2315 (mark_value_bytes_unavailable): New function.
2316 (require_not_optimized_out): Constify parameter.
2317 (require_available): New function.
2318 (value_contents_all, value_contents): Require all bytes be
2319 available.
2320 (value_free): Free `unavailable'.
2321 (value_copy): Copy `unavailable'.
2322 * valprint.h (val_print_unavailable): Declare.
2323 * valprint.c (valprint_check_validity): Rename `offset' parameter
2324 to `embedded_offset'. If printing a scalar, check whether the
2325 value chunk is available.
2326 (val_print_unavailable): New.
2327 (val_print_scalar_formatted): Check whether the value is
2328 available.
2329 * python/py-prettyprint.c (apply_val_pretty_printer): Refuse
2330 pretty-printing unavailable values.
2331
bc9a5551
JK
23322011-02-13 Jan Kratochvil <jan.kratochvil@redhat.com>
2333
2334 Fix const/volatile qualifiers of C++ types, PR c++/12328.
2335 * c-typeprint.c (c_type_print_args): Update the function comment. New
2336 variable param_type, initialize it. Remove const/volatile qualifiers
2337 for language_cplus and !show_artificial. Use param_type.
2338
93b55aa1
JK
23392011-02-13 Jan Kratochvil <jan.kratochvil@redhat.com>
2340
2341 * symtab.c (find_pc_sect_line): New variable objfile, initialize it
2342 from S. Iterate S using ALL_OBJFILE_SYMTABS. Verify BV for each S.
2343 * symtab.h (struct symtab) <next>: Comment extension.
2344
181d9476
YQ
23452011-02-12 Yao Qi <yao@codesourcery.com>
2346
2347 * Makefile.in (CLEANDIRS): Remove duplicated common dir.
2348
b708a5c7
JK
23492011-02-11 Yao Qi <yao@codesourcery.com>
2350
2351 * common/Makefile.in: Add copyright header.
2352
c5187ac6
PA
23532011-02-11 Pedro Alves <pedro@codesourcery.com>
2354
2355 * infrun.c (proceed): Move switching out and in of tfind mode from
2356 here ...
2357 (fetch_inferior_event): ... to here.
2358
4f3e6fb7
YQ
23592011-02-11 Yao Qi <yao@codesourcery.com>
2360
2361 * Makefile.in: Remove signals.o from COMMON_OBS. Link
2362 libcommon.a.
2363 * configure.ac: Add common to sub dir.
2364 * configure: Regenerate.
2365
b708a5c7
JK
23662011-02-11 Yao Qi <yao@codesourcery.com>
2367
2368 Build libcommon.a.
2369
2370 * common/Makefile.in: New.
2371 * common/configure.ac: New.
2372 * common/aclocal.m4: New.
2373 * common/configure: Generate.
2374
2287cc7e
PA
23752011-02-10 Pedro Alves <pedro@codesourcery.com>
2376
2377 * vec.h (VEC_block_remove): Place VEC_ASSERT_INFO on the right
2378 side of the parenthesis.
2379
2380 Merge from GCC:
2381 2010-07-13 Jakub Jelinek <jakub@redhat.com>
fc013618 2382 * vec.h (VEC_block_remove): Fix comment.
2287cc7e 2383
fd62cb89
MS
23842011-02-08 Michael Snyder <msnyder@vmware.com>
2385
2386 * linux-nat.c (linux_nat_filter_event): Fix typo in comment.
2387
56d2815c
JK
23882011-02-08 Jan Kratochvil <jan.kratochvil@redhat.com>
2389
2390 * i386-tdep.c (i386_process_record): Rename l suffixes to d suffixes
2391 in comments for pcmpgtd, pcmpeqd, psubd, paddd, pcmpgtd, pcmpeqd,
2392 psubd and paddd.
2393
4f7d61a8
JK
23942011-02-08 Jan Kratochvil <jan.kratochvil@redhat.com>
2395
2396 PR 12361.
2397 * i386-tdep.c (i386_process_record) <0x660f3807>: Fix the comment to
2398 phsubsw.
2399 (i386_process_record) <lddqu>: Fix the opcode to 0xf20ff0.
2400 (i386_process_record) <0x0f3807>: Fix the comment to phsubsw.
2401
54fcddd0
UW
24022011-02-08 Ulrich Weigand <uweigand@de.ibm.com>
2403
2404 * dwarf2read.c (read_subroutine_type): Set special calling
2405 convention flag for functions compiled by IBM XL C for OpenCL.
2406 * ppc-sysv-tdep.c: Include "dwarf2.h"
2407 (ppc_sysv_abi_push_dummy_call): Implement IBM OpenCL vector types
2408 calling convention.
2409 (do_ppc_sysv_return_value): Add FUNC_TYPE argument. Implement
2410 IBM OpenCL vector types calling convention.
2411 (ppc_sysv_abi_return_value): Pass through FUNC_TYPE.
2412 (ppc_sysv_abi_broken_return_value): Likewise.
2413 (ppc64_sysv_abi_push_dummy_call): Implement IBM OpenCL vector
2414 types calling convention.
2415 (ppc64_sysv_abi_return_value): Likewise.
2416 * spu-tdep.c: Include "dwarf2.h"
2417 (spu_return_value): Implement IBM OpenCL vector types calling
2418 convention.
2419
d6dafb7c
UW
24202011-02-08 Ulrich Weigand <uweigand@de.ibm.com>
2421
2422 * ppc-sysv-tdep.c (ppc64_sysv_abi_push_dummy_call): Implement
2423 correct ABI for AltiVec vector arguments.
2424
32b72a42
PA
24252011-02-07 Pedro Alves <pedro@codesourcery.com>
2426
2427 * valprint.c (val_print): Extend comment.
2428 * ada-valprint.c (ada_valprint): Rewrite comment deferring
2429 interface explanation to val_print.
2430 (ada_val_print_array): Adjust comment to current interface.
2431 (print_field_values): Adjust comment to current interface.
2432 * c-valprint.c (c_val_print): Rewrite comment deferring interface
2433 explanation to val_print.
2434 * f-valprint.c (f_val_print): Ditto.
2435 * jv-valprint.c (java_val_print): Ditto.
2436 * m2-valprint.c (m2_val_print): Ditto.
2437 * p-valprint.c (pascal_val_print): Ditto.
2438
9998af43
TJB
24392011-02-07 Thiago Jung Bauermann <bauerman@br.ibm.com>
2440
2441 * breakpoint.c (parse_breakpoint_sals): Fix description.
2442
505500db 24432011-02-04 Sami Wagiaalla <swagiaal@redhat.com>
9998af43 2444 Oguz Kayral <oguzkayral@gmail.com>
505500db
SW
2445
2446 * python/py-inferior.c (python_on_normal_stop): New function.
2447 (python_on_resume): New function.
2448 (python_inferior_exit): New function.
2449 (gdbpy_initialize_inferior): Add normal_stop, target_resumed, and
2450 inferior_exit observers.
2451 * python/py-evtregistry.c: New file.
2452 * python/py-threadevent.c : New file.
2453 * python/py-event.c: New file.
2454 * python/py-evts.c: New file.
2455 * python/py-continueevent.c: New file.
2456 * python/py-bpevent.c: New file.
2457 * python/py-signalevent.c: New file.
2458 * python/py-exetiedevent.c: New file.
2459 * python/py-breakpoint.c (gdbpy_breakpoint_from_bpstats): New function.
2460 Move struct breakpoint_object from here...
2461 * python/python-internal.h: ... to here.
2462 * python/py-event.h: New file.
2463 * python/py-events.h: New file.
2464 * Makefile.in (SUBDIR_PYTHON_OBS): Add py-breakpointstopevent.o,
2465 py-continueevent.o, py-event.o, py-eventregistry.o, py-events.o,
2466 py-exitedevent.o, py-signalstopevent.o, and py-stopevent.o.
2467 (SUBDIR_PYTHON_SRCS): Add py-breakpointstopevent.c,
2468 py-continueevent.c, py-event.c, py-eventregistry.c, py-events.c,
2469 py-exitedevent.c, py-signalstopevent.c, and py-stopevent.c.
2470 Add build rules for all the above.
2471
9e0ac564
TT
24722011-02-04 Tom Tromey <tromey@redhat.com>
2473
2474 * dwarf2read.c (dwarf2_section_empty_p): New function.
2475 (dwarf2_read_section): Use dwarf2_section_empty_p.
2476 (dwarf2_section_size): New function.
2477 (dwarf2_get_section_info): Unconditionally read section.
2478 (dwarf2_read_index): Use dwarf2_section_empty_p.
2479 (partial_read_comp_unit_head): Use dwarf2_section_size.
2480 (dwarf2_symbol_mark_computed): Likewise.
2481
eee5b35e
DD
24822011-02-04 David Daney <ddaney@caviumnetworks.com>
2483
2484 * NEWS: Add item for "catch syscall" on mips*-linux* targets.
2485
385203ed
DD
24862011-02-04 David Daney <ddaney@caviumnetworks.com>
2487
2488 * mips-linux-tdep.c: Include xml-syscall.h.
2489 (mips_linux_get_syscall_number): New function.
2490 (mips_linux_init_abi): Add calls to
2491 mips_linux_get_syscall_number() and set_xml_syscall_file_name().
2492 * data-directory/Makefile.in (SYSCALLS_FILES): Add
2493 mips-o32-linux.xml, mips-n32-linux.xml and mips-n64-linux.xml
2494 * syscalls/mips-n32-linux.xml: New file.
2495 * syscalls/mips-n64-linux.xml: New file.
2496 * syscalls/mips-o32-linux.xml: New file.
2497
9277c30c
UW
24982011-02-04 Ulrich Weigand <ulrich.weigand@linaro.org>
2499
2500 * dwarf2read.c (dwarf2_ranges_read): Skip empty range entries.
2501 Complain about inverted range entries.
2502 (dwarf2_record_block_ranges): Likewise.
2503
a3be7890
TJB
25042011-02-04 Thiago Jung Bauermann <bauerman@br.ibm.com>
2505
2506 Fix some typos.
2507 * breakpoint.c (update_watchpoint): Fix name of the
2508 update_global_location_list function.
2509 (print_one_breakpoint): Fix typo.
2510 (_initialize_breakpoint): Remove extra space in hbreak help
2511 string.
2512 * breakpoint.h (struct bp_location) <length>: Fix field
2513 description.
2514
041274d8
PA
25152011-02-04 Pedro Alves <pedro@codesourcery.com>
2516
2517 * regcache.c (registers_changed_ptid): Don't explictly always
2518 clear `current_regcache'. Only clear current_thread_ptid and
2519 current_thread_arch when PTID matches. Only reinit the frame
2520 cache if PTID matches the current inferior_ptid. Move alloca(0)
2521 call to ...
2522 (registers_changed): ... here.
2523
c1c2ab58
UW
25242011-02-03 Ulrich Weigand <ulrich.weigand@linaro.org>
2525
2526 * arm-tdep.c (arm_skip_stack_protector): Accept any symbol that
2527 starts with __stack_chk_guard as stack guard symbol.
2528
9011945e
AB
25292011-02-03 Andrew Burgess <aburgess@broadcom.com>
2530
2531 * disasm.c (compare_lines): Handle the end of sequence markers
2532 within the line table to better support disassembling over
2533 compilation unit boundaries.
2534
e0634ccf
UW
25352011-02-02 Ulrich Weigand <ulrich.weigand@linaro.org>
2536
2537 * arm-tdep.c (skip_prologue_function): Add GDBARCH and IS_THUMB
2538 arguments. Skip in-prologue calls to glibc __aeabi_read_tp
2539 implementation even if no symbols are available.
2540 (thumb_analyze_prologue): Update call to skip_prologue_function.
2541 (arm_analyze_prologue): Likewise.
2542
0e9e9abd
UW
25432011-02-02 Ulrich Weigand <ulrich.weigand@linaro.org>
2544
2545 * arm-tdep.c: Include "observer.h".
2546 (arm_prologue_this_id): Use frame PC if get_frame_func returns 0.
2547 (arm_exidx_data_key): New static variable.
2548 (struct arm_exidx_entry, arm_exidx_entry_s): New data types.
2549 (struct arm_exidx_data): Likewise.
2550 (arm_exidx_data_free): New function.
2551 (arm_compare_exidx_entries): Likewise.
2552 (arm_obj_section_from_vma): Likewise.
2553 (arm_exidx_new_objfile): Likewise.
2554 (arm_find_exidx_entry): Likewise.
2555 (arm_exidx_fill_cache): Likewise.
2556 (arm_exidx_unwind_sniffer): Likewise.
2557 (arm_exidx_unwind): New global variable.
2558 (arm_gdbarch_init): Append unwinder arm_exidx_unwind.
2559 (_initialize_arm_tdep): Attach arm_exidx_new_objfile to new_objfile
2560 observer. Register arm_exidx_data_key as objfile data.
2561
2e9e421f
UW
25622011-02-02 Ulrich Weigand <ulrich.weigand@linaro.org>
2563
2564 * arm-tdep.c (arm_analyze_load_stack_chk_guard): Avoid build break
2565 due to accessing uninitialized variable. Fix indentation.
2566
580688f3
PA
25672011-02-02 Pedro Alves <pedro@codesourcery.com>
2568
2569 * c-valprint.c (c_value_print): When doing virtual base pointer
2570 adjustment, create a new value with adjusted contents rather than
2571 changing the contents of the value being printed (and getting it
2572 wrong).
2573
3d2c1d41
PA
25742011-02-02 Pedro Alves <pedro@codesourcery.com>
2575
2576 * xml-support.c (xml_find_attribute): New.
2577 (xinclude_start_include): Use it.
2578 * xml-support.h (xml_find_attribute): Declare.
2579 * memory-map.c (memory_map_start_memory)
2580 (memory_map_start_property): Use xml_find_attribute.
2581 * osdata.c (osdata_start_osdata, osdata_start_column): Use
2582 xml_find_attribute.
2583 * remote.c (start_thread): Use xml_find_attribute.
2584 * solib-target.c (library_list_start_segment)
2585 (library_list_start_section, library_list_start_library)
2586 (library_list_start_list): Use xml_find_attribute.
2587 * xml-tdesc.c (tdesc_start_target, tdesc_start_feature)
2588 (tdesc_start_union, tdesc_start_struct, tdesc_start_flags)
2589 (tdesc_start_field): Use xml_find_attribute.
2590
0af3e2db
UW
25912011-02-02 Ulrich Weigand <uweigand@de.ibm.com>
2592
2593 * opencl-lang.c (STRINGIFY): Rename to OCL_STRING.
2594 (BUILD_OCL_VTYPES): Update.
2595
c1039e3c
JB
25962011-02-02 Joel Brobecker <brobecker@adacore.com>
2597
2598 * configure.ac: Work around non-GNU sed limitation when computing
2599 python version number.
2600 * configure: Regenerate.
2601
600ea1be
JK
26022011-02-01 Jan Kratochvil <jan.kratochvil@redhat.com>
2603
2604 Fix debug printing of TYPE_INSTANCE.
2605 * expprint.c (print_subexp_standard) <TYPE_INSTANCE>: New.
2606 (dump_subexp_body_standard) <TYPE_INSTANCE>: New.
2607
56c12414
JK
26082011-02-01 Jan Kratochvil <jan.kratochvil@redhat.com>
2609
2610 Fix debug printing of BINOP_IN, OP_OBJC_MSGCALL,
2611 OP_F77_UNDETERMINED_ARGLIST, OP_COMPLEX, OP_OBJC_SELECTOR, OP_NAME,
2612 OP_OBJC_NSSTRING, OP_F90_RANGE and OP_DECFLOAT.
2613 * ada-operator.inc: Rename the file to ...
2614 * ada-operator.def: ... here, wrap all the entries by macro OP.
2615 * expprint.c (op_name_standard): Remove all the entries. Include
2616 "std-operator.def" instead.
2617 * expression.h (enum exp_opcode): Include "std-operator.def" and
2618 "ada-operator.def". Move all the entries ...
2619 * std-operator.def: ... here, wrap all the entries by macro OP.
2620
c52b559d
PP
26212011-01-31 Paul Pluzhnikov <ppluzhnikov@google.com>
2622
2623 * breakpoint.h (remove_jit_event_breakpoints): New prototype.
2624 * breakpoint.c (remove_jit_event_breakpoints): New function.
2625 * jit.c (jit_descriptor_addr): Delete.
2626 (registering_code): Delete.
2627 (clear_int): Delete.
2628 (jit_inferior_data): New variable.
2629 (struct jit_inferior_data): New type.
2630 (get_jit_inferior_data): New function.
2631 (jit_inferior_data_cleanup): New function.
2632 (jit_read_descriptor): Adjust.
2633 (jit_register_code): Adjust.
2634 (jit_breakpoint_re_set_internal): New function; move code here ...
2635 (jit_inferior_init): ... from here.
2636 (jit_breakpoint_re_set): Adjust.
2637 (jit_reset_inferior_data_and_breakpoints): New function.
2638 (jit_inferior_created_observer): Adjust.
2639 (jit_inferior_exit_hook): Adjust.
2640 (jit_executable_changed_observer): New function.
2641 (jit_event_handler): Adjust.
2642 (_initialize_jit): Adjust.
2643
e839132d
MS
26442011-01-31 Michael Snyder <msnyder@vmware.com>
2645
2646 * m32r-tdep.c (m32r_gdbarch_init): Replace accidentally deleted
2647 line.
2648
47a80e90
TT
26492011-01-31 Tom Tromey <tromey@redhat.com>
2650
2651 PR python/12216:
2652 * python/python.c (execute_gdb_command): Call
2653 prevent_dont_repeat.
2654 * top.c (suppress_dont_repeat): New global.
2655 (dont_repeat): Use it.
2656 (prevent_dont_repeat): New function.
2657 * command.h (prevent_dont_repeat): Declare.
2658
45a43567
TT
26592011-01-31 Tom Tromey <tromey@redhat.com>
2660
2661 * infcmd.c (finish_backward): Use breakpoint_set_silent.
2662 * python/py-breakpoint.c (bppy_set_silent): Use
2663 breakpoint_set_silent.
2664 (bppy_set_thread): Use breakpoint_set_thread.
2665 (bppy_set_task): Use breakpoint_set_task.
2666 * breakpoint.h (breakpoint_set_silent, breakpoint_set_thread)
2667 (breakpoint_set_task): Declare.
2668 (make_breakpoint_silent): Remove.
2669 * breakpoint.c (breakpoint_set_silent): New function.
2670 (breakpoint_set_thread): Likewise.
2671 (breakpoint_set_task): Likewise.
2672 (make_breakpoint_silent): Remove.
2673
09d682a4
TT
26742011-01-31 Tom Tromey <tromey@redhat.com>
2675
2676 * breakpoint.h (user_breakpoint_p): Declare.
2677 * breakpoint.c (user_breakpoint_p): New function.
2678 (breakpoint_1): Use it.
2679 (save_breakpoints): Likewise.
2680
9c4ea6c5
JB
26812011-01-31 Joel Brobecker <brobecker@adacore.com>
2682
2683 * configure.ac: Add handling of Python distribution on Windows.
2684 * python-config.py: If the LIBS, SYSLIBS, LIBPL and/or LINKFORSHARED
2685 sysconfig variables are not defined, then do not use them.
2686 On Windows, if LIBPL is not defined, then use prefix + '/libs'
2687 instead. On Windows, return all paths using forward-slashes
2688 rather than backslashes.
2689
ac534cba
JB
26902011-01-31 Joel Brobecker <brobecker@adacore.com>
2691
2692 * configure.ac: Remove fallback behavior for building
2693 against Python. Remove tweaking of Python include path.
2694 Add PYTHON_CPPFLAGS and PYTHON_LIBS substitution.
2695 (AC_TRY_LIBPYTHON): Adjust program used in linking test.
2696 If link is successful, set PYTHON_CPPFLAGS and PYTHON_LIBS.
2697 Always restore CPPFLAGS and LIBS after linking test.
2698 * configure: Regenerated.
2699 * Makefile.in (INTERNAL_CPPFLAGS): Add @PYTHON_CPPFLAGS@.
2700 (INSTALLED_LIBS, CLIBS): Add @PYTHON_LIBS@.
2701 * python/python-internal.h: Adjust includes of Python .h files.
2702
c2f0d045
JB
27032011-01-31 Joel Brobecker <brobecker@adacore.com>
2704
2705 * tracepoint.c (traceframe_walk_blocks): Add missing i18n markup
2706 in error message.
2707
6b0c4c1f
JB
27082011-01-31 Joel Brobecker <brobecker@adacore.com>
2709
2710 * inflow.c (gdb_has_a_terminal): Fix typo in interactive_mode
2711 value test.
2712
672c9795
YQ
27132011-01-31 Yao Qi <yao@codesourcery.com>
2714
2715 * arm-linux-nat.c: Update calls to regcache_register_status
2716 instead of regcache_valid_p.
2717 * aix-thread.c: Likewise.
2718 * i386gnu-nat.c: Likewise.
2719
80b23b6a
JK
27202011-01-29 Jan Kratochvil <jan.kratochvil@redhat.com>
2721
2722 Fix crash.
2723 * valops.c (compare_parameters): Verify TYPE_NFIELDS before
2724 touching TYPE_FIELD_ARTIFICIAL.
2725
4cd712bd
RE
27262011-01-28 Richard Earnshaw <rearnsha@arm.com>
2727
2728 * MAINTAINERS: Move myself from Responsible Maintainers to Authorized
2729 Committers.
2730
ffd5ec24
PA
27312011-01-28 Pedro Alves <pedro@codesourcery.com>
2732
2733 * tracepoint.c (tfile_xfer_partial): If there's no traceframe
2734 selected, don't try iterating over the traceframe's blocks.
2735 (tfile_has_stack): If there's no traceframe selected, then there's
2736 no stack.
2737 (tfile_has_registers): If there's no traceframe selected, then
2738 there's no registers.
2739
e8c9e0a1
PA
27402011-01-28 Pedro Alves <pedro@codesourcery.com>
2741
2742 * target.c (memory_xfer_partial): No need to restore shadows if we
2743 haven't read anything.
2744
de15c4ab
PA
27452011-01-28 Pedro Alves <pedro@codesourcery.com>
2746
2747 * mips-tdep.c (mips_print_register): Use get_frame_register_value
2748 and val_print_scalar_formatted.
2749
9f41c731
PA
27502011-01-27 Pedro Alves <pedro@codesourcery.com>
2751
2752 * tracepoint.c (tfile_read): New.
2753 (tfile_open): Use it.
2754 (tfile_get_traceframe_address): Use it.
2755 (tfile_trace_find): Use it.
2756 (walk_blocks_callback_func): New typedef.
2757 (match_blocktype): New function.
2758 (traceframe_walk_blocks): New function.
2759 (traceframe_find_block_type): New function.
2760 (tfile_fetch_registers, tfile_xfer_partial)
2761 (tfile_get_trace_state_variable_value): Use
2762 traceframe_find_block_type and tfile_read.
2763
cdefc55d
KB
27642011-01-26 Kevin Buettner <kevinb@redhat.com>
2765
2766 * remote-mips.c: Add internationalization mark ups. Remove
2767 trailing \n from already marked up strings.
2768
a81766d8
TT
27692011-01-26 Tom Tromey <tromey@redhat.com>
2770
2771 * python/py-prettyprint.c (print_string_repr): Clear
2772 'addressprint' option when calling val_print_string.
2773 (print_children): Handle Val_pretty_default. Clear 'addressprint'
2774 option when calling val_print_string.
2775
74aedc46
TT
27762011-01-26 Tom Tromey <tromey@redhat.com>
2777
2778 * python/python.c (gdbpy_solib_name): Use gdb_py_longest and
2779 GDB_PY_LL_ARG.
2780 * python/python-internal.h (GDB_PY_LL_ARG, GDB_PY_LLU_ARG): New
2781 macros.
2782 (gdb_py_longest, gdb_py_ulongest): New typedefs.
2783 (gdb_py_long_from_longest, gdb_py_long_from_ulongest)
2784 (gdb_py_long_as_ulongest): New defines.
2785 (gdb_py_object_from_longest, gdb_py_object_from_ulongest)
2786 (gdb_py_int_as_long): Declare.
2787 * python/py-value.c (valpy_lazy_string): Use gdb_py_longest,
2788 GDB_PY_LL_ARG, gdb_py_object_from_longest.
2789 (valpy_long): Add comment.
2790 * python/py-utils.c (get_addr_from_python): Use
2791 gdb_py_long_as_ulongest. Handle overflow properly.
2792 (gdb_py_object_from_longest): New function.
2793 (gdb_py_object_from_ulongest): Likewise.
2794 (gdb_py_int_as_long): Likewise.
2795 * python/py-type.c (typy_array): Use gdb_py_int_as_long.
2796 * python/py-symtab.c (salpy_get_pc): Use
2797 gdb_py_long_from_ulongest.
2798 (salpy_get_line): Use PyInt_FromLong.
2799 * python/py-param.c (set_parameter_value): Use
2800 gdb_py_int_as_long.
2801 * python/py-lazy-string.c (stpy_get_address): Use
2802 gdb_py_long_from_ulongest.
2803 * python/py-frame.c (frapy_pc): Use gdb_py_long_from_ulongest.
2804 * python/py-cmd.c (cmdpy_completer): Use gdb_py_int_as_long.
2805 * python/py-breakpoint.c (bppy_set_thread): Use
2806 gdb_py_int_as_long.
2807 (bppy_set_task): Likewise.
2808 (bppy_set_ignore_count): Likewise.
2809 (bppy_set_hit_count): Likewise.
2810 * python/py-block.c (blpy_get_start): Use
2811 gdb_py_object_from_ulongest.
2812 (blpy_get_end): Likewise.
2813 (gdbpy_block_for_pc): Use gdb_py_ulongest and GDB_PY_LLU_ARG.
2814
e4f6d2ec
TJB
28152011-01-25 Mathieu Lacage <mathieu.lacage@inria.fr>
2816
2817 PR/symtab 11766:
2818 * gdb/objfiles.h (struct objfile) <addr_low>: New field.
2819 * gdb/solib.c (solib_read_symbols): Check for addr_low in
2820 equality test for objfile, initialize addr_low if needed.
2821
b30aa278
PA
28222011-01-25 Pedro Alves <pedro@codesourcery.com>
2823
2824 * tui/tui-regs.c (tui_register_format): Remove dead code.
2825
ab2188aa
PA
28262011-01-25 Pedro Alves <pedro@codesourcery.com>
2827
2828 * printcmd.c (print_formatted): Use val_print_scalar_formatted
2829 instead of print_scalar_formatted.
2830 (print_scalar_formatted): Don't handle 's' format strings here,
2831 and add an assertion that we never see such format here.
2832 * valprint.h (val_print_scalar_formatted): Declare.
2833 * valprint.c (val_print_scalar_formatted): New.
2834 * c-valprint.c (c_val_print): Use val_print_scalar_formatted
2835 instead of print_scalar_formatted.
2836 * jv-valprint.c (java_val_print): Ditto.
2837 * p-valprint.c (pascal_val_print): Ditto.
2838 * ada-valprint.c (ada_val_print_1): Ditto.
2839 * f-valprint.c (f_val_print): Ditto.
2840 * infcmd.c (registers_info): Ditto.
2841 * m2-valprint.c (m2_val_print): Ditto.
2842
66d61a4c
PA
28432011-01-25 Pedro Alves <pedro@codesourcery.com>
2844
2845 * m2-valprint.c (print_unbounded_array): Pass
2846 value_contents_for_printing rather than value_contents, to
2847 m2_print_array_contents. Also pass in the value.
2848
831adc1f
JK
28492011-01-25 Jan Kratochvil <jan.kratochvil@redhat.com>
2850
2851 * dwarf2read.c (dwarf2_read_index, write_psymtabs_to_index)
2852 (save_gdb_index_command): Switch to .gdb_index version 4.
2853
20622269
PA
28542011-01-25 Pedro Alves <pedro@codesourcery.com>
2855
2856 * mi/mi-main.c (get_register): Use get_frame_register_value rather
2857 than frame_register, and always pass a valid value to val_print.
2858
585fdaa1
PA
28592011-01-25 Pedro Alves <pedro@codesourcery.com>
2860
2861 Centralize printing "<optimized out>".
2862
2863 * valprint.h (val_print_optimized_out): Declare.
2864 * cp-valprint.c (cp_print_value_fields): Use
2865 val_print_optimized_out.
2866 * jv-valprint.c (java_print_value_fields): Ditto.
2867 * p-valprint.c (pascal_object_print_value_fields): Ditto.
2868 * printcmd.c (print_formatted): Ditto.
2869 * valprint.c (valprint_check_validity): Ditto.
2870 (value_check_printable): Ditto.
2871 (val_print_optimized_out): New.
2872
29ec5263
PA
28732011-01-25 Pedro Alves <pedro@codesourcery.com>
2874
2875 * infcmd.c (default_print_registers_info): Allocate values so to
2876 never pass a NULL value to val_print.
2877
de4127a3
PA
28782011-01-25 Pedro Alves <pedro@codesourcery.com>
2879
2880 * cp-valprint.c (cp_print_value): Treat the 'skip' local as
2881 boolean. Make sure to always pass a value that matches the
2882 contents buffer to callees. Preserve `address' for following
2883 iterations.
2884 * value.c (value_contents_for_printing_const): New.
2885 (value_address): Constify value argument.
2886 * value.h (value_contents_for_printing_const): Declare.
2887 (value_address): Constify value argument.
2888
ee99023e
PA
28892011-01-25 Pedro Alves <pedro@codesourcery.com>
2890
2891 * regcache.c (struct regcache_descr): Rename
2892 sizeof_raw_register_valid_p field to sizeof_raw_register_status,
2893 and sizeof_cooked_register_valid_p to
2894 sizeof_cooked_register_status.
2895 (init_regcache_descr): Adjust.
2896 (struct regcache): Rename register_valid_p field to
2897 register_status.
2898 (regcache_xmalloc_1, regcache_xfree, regcache_save)
2899 (do_cooked_read): Adjust.
2900 (regcache_valid_p): Rename to ...
2901 (regcache_register_status): ... this. Adjust.
2902 (regcache_invalidate): Adjust.
2903 (regcache_raw_read, regcache_cooked_read, regcache_raw_write):
2904 Adjust.
2905 (regcache_raw_supply): Adjust. If buf i NULL, mark the register
2906 as unavailable, not valid.
2907 (regcache_dump): Adjust.
2908 * regcache.h (enum register_status): New.
2909 (regcache_register_status): Declare.
2910 (regcache_invalidate): Delete declaration.
2911 * corelow.c (get_core_registers): Adjust.
2912 * tracepoint.c (tfile_fetch_registers): Adjust.
2913 * trad-frame.c (REG_VALUE): Rename to ...
2914 (TF_REG_VALUE): ... this.
2915 (REG_UNKNOWN): Rename to ...
2916 (TF_REG_UNKNOWN): ... this.
2917 (trad_frame_set_value, trad_frame_set_unknown): Adjust.
2918 * mi/mi-main.c (register_changed_p): Adjust.
2919
99e42fd8
PA
29202011-01-25 Pedro Alves <pedro@codesourcery.com>
2921
2922 * regcache.c (struct regcache_descr): Remove outdated comment.
2923 (init_regcache_descr): Remove sizeof_raw_register_valid_p
2924 overallocate hack.
2925 (regcache_xmalloc): Rename to ...
2926 (regcache_xmalloc_1): ... this. Add `readonly_p' parameter.
2927 Allocate the regcache type accordingly.
2928 (regcache_xmalloc): New as wrapper around regcache_xmalloc_1.
2929 (regcache_xfree): Asser the source is also readonly. Copy sizeof
2930 cooked registers, not raw.
2931 (regcache_dup_no_passthrough): Delete.
2932 (get_thread_arch_regcache): Use regcache_xmalloc_1.
2933 * h8300-tdep.c (h8300_push_dummy_call): Tweak comment to not
2934 mention obsolete write_register_bytes.
2935 * regcache.h (regcache_dup_no_passthrough): Delete declaration.
2936
f7605bc2
PA
29372011-01-25 Pedro Alves <pedro@codesourcery.com>
2938
2939 Stop remote_read_bytes from handling partial reads itself.
2940
2941 * remote-fileio.c: Include target.h.
2942 (remote_fileio_write_bytes): Delete.
2943 (remote_fileio_func_open, remote_fileio_func_write)
2944 (remote_fileio_func_rename, remote_fileio_func_unlink): Use
2945 target_read_memory.
2946 (remote_fileio_func_stat): Use target_read_memory and
2947 target_write_memory.
2948 (remote_fileio_func_gettimeofday): Use target_write_memory.
2949 (remote_fileio_func_system): Use target_read_memory.
2950 * remote.c (remote_write_bytes): Make it static.
2951 (remote_read_bytes): Don't handle partial reads here.
2952 * remote.h (remote_read_bytes): Delete declaration.
2953
efc0eabd
PA
29542011-01-25 Pedro Alves <pedro@codesourcery.com>
2955
2956 Simplify XML parsing a bit.
2957
2958 * xml-support.h (gdb_xml_parse_quick): Declare.
2959 * xml-support.c (gdb_xml_create_parser_and_cleanup_1): Renamed
2960 from gdb_xml_create_parser_and_cleanup, and added `old_chain'
2961 parameter.
2962 (gdb_xml_create_parser_and_cleanup): Reimplement on top of
2963 gdb_xml_create_parser_and_cleanup_1.
2964 (gdb_xml_parse_quick): New.
2965 * memory-map.c (parse_memory_map): Use gdb_xml_parse_quick.
2966 * osdata.c (osdata_parse): Ditto.
2967 * remote.c (remote_threads_info): Ditto.
2968 * solib-target.c (solib_target_parse_libraries): Ditto.
2969 * xml-syscall.c (syscall_parse_xml): Ditto.
2970 * xml-tdesc.c (tdesc_parse_xml): Ditto.
2971
314d366a
KB
29722011-01-24 Kevin Buettner <kevinb@redhat.com>
2973
2974 * configure.tgt (mips*-*-elf): New; just like mips*-*-*, but
2975 with remote-mips.o added to gdb_target_obs.
2976 * Makefile.in (ALL_TARGET_OBS): Add remote-mips.o.
2977
a491d753
PA
29782011-01-24 Pedro Alves <pedro@codesourcery.com>
2979
2980 * ada-valprint.c (val_print_packed_array_elements): Pass the
2981 correct struct value to val_print.
2982 (ada_val_print_1): Ditto.
2983
490f124f
PA
29842011-01-24 Pedro Alves <pedro@codesourcery.com>
2985
2986 Don't lose embedded_offset in printing routines throughout.
2987
2988 * valprint.h (val_print_array_elements): Change prototype.
2989 * valprint.c (val_print_array_elements): Add `embedded_offset'
2990 parameter, and adjust to pass it down to val_print, while passing
2991 `valaddr' or `address' unmodified. Take embedded_offset into
2992 account when checking repetitions.
2993 * c-valprint.c (c_val_print): Pass embedded_offset to
2994 val_print_array_elements instead of adjusting `valaddr' and
2995 `address'.
2996 * m2-valprint.c (m2_print_array_contents, m2_val_print): Pass
2997 embedded_offset to val_print_array_elements instead of adjusting
2998 `valaddr'.
2999 * p-lang.h (pascal_object_print_value_fields): Adjust prototype.
3000 * p-valprint.c (pascal_val_print): Pass embedded_offset to
3001 val_print_array_elements and pascal_object_print_value_fields
3002 instead of adjusting `valaddr'.
3003 (pascal_object_print_value_fields): Add `offset' parameter, and
3004 adjust to use it.
3005 (pascal_object_print_value): Add `offset' parameter, and adjust to
3006 use it.
3007 (pascal_object_print_static_field): Use
3008 value_contents_for_printing/value_embedded_offset, rather than
3009 value_contents.
3010 * ada-valprint.c (val_print_packed_array_elements): Add `offset'
3011 parameter, and adjust to use it. Use
3012 value_contents_for_printing/value_embedded_offset, rather than
3013 value_contents.
3014 (ada_val_print): Rename `valaddr0' parameter to `valaddr'.
3015 (ada_val_print_array): Add `offset' parameter, and adjust to use
3016 it.
3017 (ada_val_print_1): Rename `valaddr0' parameter to `valaddr', and
3018 `embedded_offset' to `offset'. Don't re-adjust `valaddr'.
3019 Instead work with offsets. Use
3020 value_contents_for_printing/value_embedded_offset, rather than
3021 value_contents. Change `defer_val_int' local type to CORE_ADDR,
3022 and use value_from_pointer to extract a target pointer, rather
3023 than value_from_longest.
3024 (print_variant_part): Add `offset' parameter. Replace
3025 `outer_valaddr' parameter by a new `outer_offset' parameter.
3026 Don't re-adjust `valaddr'. Instead pass down adjusted offsets.
3027 (ada_value_print): Use
3028 value_contents_for_printing/value_embedded_offset, rather than
3029 value_contents.
3030 (print_record): Add `offset' parameter, and adjust to pass it
3031 down.
3032 (print_field_values): Add `offset' parameter. Replace
3033 `outer_valaddr' parameter by a new `outer_offset' parameter.
3034 Don't re-adjust `valaddr'. Instead pass down adjusted offsets.
3035 Use value_contents_for_printing/value_embedded_offset, rather than
3036 value_contents.
3037 * d-valprint.c (dynamic_array_type): Use
3038 value_contents_for_printing/value_embedded_offset, rather than
3039 value_contents.
3040 * jv-valprint.c (java_print_value_fields): Add `offset' parameter.
3041 Don't re-adjust `valaddr'. Instead pass down adjusted offsets.
3042 (java_print_value_fields): Take `offset' into account. Don't
3043 re-adjust `valaddr'. Instead pass down adjusted offsets.
3044 (java_val_print): Take `embedded_offset' into account. Pass it to
3045 java_print_value_fields.
3046 * f-valprint.c (f77_print_array_1): Add `embedded_offset'
3047 parameter. Don't re-adjust `valaddr' or `address'. Instead pass
3048 down adjusted offsets.
3049 (f77_print_array): Add `embedded_offset' parameter. Pass it down.
3050 (f_val_print): Take `embedded_offset' into account.
3051
7bfc9434
JB
30522011-01-21 Joel Brobecker <brobecker@adacore.com>
3053
3054 * inflow.c: Include "gdbcmd.h".
3055 (interactive_mode): New static global, moved here from top.c.
3056 (show_interactive_mode): New function, moved here from top.c.
3057 use gdb_has_a_terminal instead of input_from_terminal_p to
3058 determine the current mode.
3059 (gdb_has_a_terminal): Add handling of the "iteractive-mode"
3060 setting.
3061 (_initialize_inflow): Add the "set/show interactive-mode"
3062 commands. Moved here from top.c, after having adjusted slightly
3063 the help text.
3064 * top.c (interactive_mode, show_interactive_mode): Delete, moved
3065 to inflow.c.
3066 (input_from_terminal_p): Remove handling of "interactive-mode"
3067 setting, moved to infow.c.
3068 (init_main): Remove creation of the "set/show interactive-mode"
3069 commands, moved to inflow.c.
3070
44603653
JB
30712011-01-19 Joel Brobecker <brobecker@adacore.com>
3072
3073 * NEWS: Add entry for native ia64-hpux support.
3074
4694da01
TT
30752011-01-19 Tom Tromey <tromey@redhat.com>
3076
3077 PR mi/8618:
3078 * thread.c (free_thread): Free 'name'.
3079 (print_thread_info): Emit thread name. Change CLI output.
3080 (thread_name_command): New function.
3081 (do_captured_thread_select): Emit newline.
3082 (_initialize_thread): Register 'thread name' command.
3083 * target.h (struct target_ops) <to_thread_name>: New field.
3084 (target_thread_name): New macro.
3085 * target.c (update_current_target): Handle to_thread_name.
3086 * python/py-infthread.c (thpy_get_name): New function.
3087 (thpy_set_name): Likewise.
3088 (thread_object_getset): Add "name".
3089 * linux-nat.c (linux_nat_thread_name): New function.
3090 (linux_nat_add_target): Set to_thread_name.
3091 * gdbthread.h (struct thread_info) <name>: New field.
3092
10d44370
JB
30932011-01-18 Joel Brobecker <brobecker@adacore.com>
3094
3095 * ada-valprint.c (ada_print_scalar): Remove unsigned char downcast.
3096 (ada_val_print_1): Likewise.
3097
e3acb115
JB
30982011-01-18 Joel Brobecker <brobecker@adacore.com>
3099
3100 * rs6000-tdep.c (rs6000_skip_prologue): Make sure that the prologue
3101 upper limit address is not greater than the function end address
3102 when the upper limit could not be computed using the debugging
3103 info.
3104
dc92e161
TT
31052011-01-17 Tom Tromey <tromey@redhat.com>
3106
3107 * cli/cli-cmds.c (apropos_command): Free the compiled regex. Use
3108 get_regcomp_error.
3109 * utils.c: Include gdb_regex.h.
3110 (do_regfree_cleanup): New function.
3111 (make_regfree_cleanup): Likewise.
3112 (get_regcomp_error): Likewise.
3113 * gdb_regex.h (make_regfree_cleanup, get_regcomp_error): Declare.
3114
f55af66d
TT
31152011-01-17 Tom Tromey <tromey@redhat.com>
3116
3117 * cli/cli-cmds.c (apropos_command): Fix formatting. Don't call
3118 re_compile_fastmap.
3119
a5a44b53
PM
31202011-01-17 Pierre Muller <muller@ics.u-strasbg.fr>
3121
3122 * p-exp.y (intvar): New static variable, used to set CURRENT_TYPE
3123 for internal variables.
3124 (last_was_structop): New static variable.
3125 (COMPLETE): New token.
3126 (field_exp): New rule to group all '.' suffix handling.
3127 Add mark_struct_expression calls when approriate to be able
3128 to correctly find fields for completion.
3129 (yylex): Adapt to handle field completion and set INTVAR when
3130 required.
3131
2c291032
YQ
31322011-01-14 Yao Qi <yao@codesourcery.com>
3133
3134 * arm-tdep.c (arm_register_reggroup_p): FPS register is in
3135 save_reggroup, restore_reggroup and all_reggroup.
3136
447b483c
JB
31372011-01-14 Joel Brobecker <brobecker@adacore.com>
3138
3139 * ada-valprint. (ada_printchar): Use the correct type length
3140 in call to ada_emit_char.
3141 * c-valprint.c (c_val_print): Remove cast in call to LA_PRINT_CHAR.
3142
7b64a93b
PM
31432011-01-14 Pierre Muller <muller@ics.u-strasbg.fr>
3144
3145 * solib-som.h (hpux_major_release): Declare variable here.
3146 * solib-som.c: Remove <sys/utsname.h> header.
3147 (DEFAULT_HPUX_MAJOR_RELEASE): New macro.
3148 (hpux_major_release): Make global, change default value to
3149 DEFAULT_HPUX_MAJOR_RELEASE.
f2eb0bc8 3150 (get_hpux_major_release): Simply return HPUX_MAJOR_RELEASE.
7b64a93b
PM
3151 * hppa-hpux-nat.c: Add <sys/utsname.h> include.
3152 Add "solib-som.h" header.
3153 (set_hpux_major_release): New function.
3154 (_initialize_hppa_hpux_nat): Call set_hpux_major_release.
3155
4e18c053
MF
31562011-01-14 Mike Frysinger <vapier@gentoo.org>
3157
3158 * configure.tgt (*-*-uclinux*): Match more Linux os targets
3159
a9df6b22
JB
31602011-01-14 Joel Brobecker <brobecker@adacore.com>
3161
3162 * ia64-hpux-nat.c (ia64_hpux_fetch_register): Remove trailing
3163 new-line at end of warning message.
3164 (ia64_hpux_store_register): Remove trailing new-line at end of
3165 error message.
3166 * ia64-hpux-tdep.c: Rephrase comment.
3167 * solib-ia64-hpux.c (struct dld_info): Change type of field
3168 dld_flags from "long long" to ULONGEST.
3169
ecb956dd
PA
31702011-01-14 Pedro Alves <pedro@codesourcery.com>
3171
3172 * target.h (deprecated_child_ops): Delete declaration.
3173 * target.c (deprecated_child_ops): Delete definition.
3174
76adfcae
PA
31752011-01-14 Pedro Alves <pedro@codesourcery.com>
3176
3177 * Makefile.in (hpux-thread.o): Delete rule.
3178 * configure.ac: Don't check for HPUX DCE threads support.
3179 * configure, config.in: Regenerate.
3180 * hppa-hpux-nat.c (child_suppress_run): Delete.
3181 (hppa_hpux_child_can_run): Delete.
3182 (_initialize_hppa_hpux_nat): Don't override to_can_run.
3183 * hpux-thread.c: Delete.
3184
042e866e
JB
31852011-01-13 Joel Brobecker <brobecker@adacore.com>
3186
3187 * hpux-thread.c (hpux_pid_to_str): Delete.
3188
4ffa5a33
JB
31892011-01-13 Joel Brobecker <brobecker@adacore.com>
3190
3191 * ada-valprint.c (ada_emit_char): Remove strange code.
3192 Check that c is <= UCHAR_MAX before passing it to isascii.
3193 (char_at): Do not assume that TYPE_LEN is either 1 or 2.
3194
de8fa76c
JB
31952011-01-13 Joel Brobecker <brobecker@adacore.com>
3196
3197 * top.c (input_from_terminal_p): Restrict the use of interactive_mode
3198 to the case where instream is stdin.
3199
c4de7027
JB
32002011-01-13 Joel Brobecker <brobecker@adacore.com>
3201
3202 * ia64-tdep.h (struct regcache): Forward declare.
3203 (struct ia64_infcall_ops): New struct type.
3204 (struct gdbarch_tdep): New fields "find_global_pointer_from_solib"
3205 and "infcall_ops".
3206 * ia64-tdep.c (ia64_find_global_pointer_from_dynamic_section):
3207 Renames ia64_find_global_pointer.
3208 (ia64_find_global_pointer, ia64_allocate_new_rse_frame)
3209 (ia64_store_argument_in_slot, ia64_set_function_addr: New function.
3210 (ia64_push_dummy_call): Adjust to use the new tdep ia64_infocall_ops
3211 methods.
3212 (ia64_infcall_ops): New static global constant.
3213 (ia64_gdbarch_init): Set tdep->infcall_ops.
3214 * ia64-hpux-nat.c (ia64_hpux_xfer_solib_got): New function.
3215 (ia64_hpux_xfer_partial): Add TARGET_OBJECT_HPUX_SOLIB_GOT handing.
3216 * ia64-hpux-tdep.c: Include "regcache.h", "gdbcore.h" and "inferior.h".
3217 (ia64_hpux_dummy_code): New static global constant.
3218 (ia64_hpux_push_dummy_code, ia64_hpux_allocate_new_rse_frame)
3219 (ia64_hpux_store_argument_in_slot, ia64_hpux_set_function_addr)
3220 (ia64_hpux_dummy_id, ia64_hpux_find_global_pointer_from_solib):
3221 New function.
3222 (ia64_hpux_infcall_ops): New static global constant.
3223 (ia64_hpux_init_abi): Install gdbarch and tdep methods needed
3224 for inferior function calls to work properly on ia64-hpux.
3225
77ca787b
JB
32262011-01-13 Joel Brobecker <brobecker@adacore.com>
3227
3228 * target.h (enum target_object): Add TARGET_OBJECT_HPUX_UREGS.
3229 * ia64-tdep.h (struct frame_info): forward declaration.
3230 (struct gdbarch_tdep): Add field size_of_register_frame.
3231 * ia64-tdep.c (ia64_access_reg): Use tdep->size_of_register_frame
3232 to determine the size of the register frame.
3233 (ia64_size_of_register_frame): New function.
3234 (ia64_gdbarch_init): Set tdep->size_of_register_frame.
3235 * ia64-hpux-tdep.c: Include "target.h" and "frame.h".
3236 (IA64_HPUX_UREG_REASON): New macro.
3237 (ia64_hpux_stopped_in_syscall, ia64_hpux_size_of_register_frame):
3238 New functions.
3239 (ia64_hpux_init_abi): Set tdep->size_of_register_frame.
3240 * ia64-hpux-nat.c (ia64_hpux_xfer_uregs): New function.
3241 (ia64_hpux_xfer_partial): Add handling of TARGET_OBJECT_HPUX_UREGS
3242 objects.
3243
92c9a463
JB
32442011-01-13 Joel Brobecker <brobecker@adacore.com>
3245
3246 Add support for ia64-hpux.
3247 * config/ia64/hpux.mh, ia64-hpux-nat.c, ia64-hpux-tdep.c,
3248 ia64-hpux-tdep.h, solib-ia64-hpux.c, solib-ia64-hpux.h: New files.
3249
3250 * configure.host: Add handling for ia64-hpux hosts. Add associated
3251 floatformats.
3252 * configure.tgt: Add handling for ia64-hpux targets.
3253 * Makefile.in (ALL_64_TARGET_OBS): Add ia64-hpux-tdep.o.
3254 (HFILES_NO_SRCDIR): Add ia64-hpux-tdep.h.
3255 (ALLDEPFILES): Add ia64-hpux-nat.c ia64-hpux-tdep.c.
3256
f688d93f
JB
32572011-01-13 Joel Brobecker <brobecker@adacore.com>
3258
3259 [ttrace] Compute thread list immediately after attach.
3260 * inf_ttrace_attach (inf_ttrace_create_threads_after_attach):
3261 New subprogram.
3262 (inf_ttrace_attach): Use it.
3263
1b89e62f
JB
32642011-01-13 Joel Brobecker <brobecker@adacore.com>
3265
3266 * libunwind-frame.c (libunwind_frame_cache): Do not return NULL
3267 if we could not determine the frame's function address. Instead,
3268 use the frame's PC, and then continue.
3269
3e5e6e2a
JB
32702011-01-13 Joel Brobecker <brobecker@adacore.com>
3271
3272 * libunwind-frame.c (__LITTLE_ENDIAN, __BIG_ENDIAN): Define if
3273 not already defined.
3274
825d6d8a
JB
32752011-01-13 Joel Brobecker <brobecker@adacore.com>
3276
3277 * ia64-tdep.c (ia64_struct_type_p): New function.
3278 (ia64_extract_return_value): Handle integral values that are
3279 less than 8 bytes long.
3280 (ia64_push_dummy_call): Likewise.
3281
7458e667
JB
32822011-01-13 Joel Brobecker <brobecker@adacore.com>
3283
3284 * ia64-tdep.c (floatformat_ia64_ext_little): Renames
3285 floatformat_ia64_ext.
3286 (floatformat_ia64_ext_big): New static const.
3287 (floatformats_ia64_ext): Set first entry to &floatformat_ia64_ext_big.
3288
1b05df00
TT
32892011-01-12 Tom Tromey <tromey@redhat.com>
3290
3291 * mi/mi-symbol-cmds.c (mi_cmd_symbol_list_lines): Fix error
3292 messages.
3293 * mi/mi-main.c (mi_cmd_thread_select): Fix error messages.
3294 (mi_cmd_thread_list_ids): Likewise.
3295 (mi_cmd_data_list_changed_registers): Likewise.
3296 (mi_cmd_data_list_register_values): Likewise.
3297 (mi_cmd_data_write_register_values): Likewise.
3298 (mi_cmd_data_evaluate_expression): Likewise.
3299 (mi_cmd_data_read_memory): Likewise.
3300 (mi_cmd_data_read_memory_bytes): Likewise.
3301 (mi_cmd_data_write_memory): Likewise.
3302 (mi_cmd_enable_timings): Likewise.
3303 * mi/mi-interp.c (mi_cmd_interpreter_exec): Fix error messages.
3304 * mi/mi-cmd-var.c (mi_cmd_var_create): Fix error messages.
3305 (mi_cmd_var_delete): Likewise.
3306 (mi_cmd_var_set_format): Likewise.
3307 (mi_cmd_var_show_format): Likewise.
3308 (mi_cmd_var_info_num_children): Likewise.
3309 (mi_cmd_var_list_children): Likewise.
3310 (mi_cmd_var_info_type): Likewise.
3311 (mi_cmd_var_info_expression): Likewise.
3312 (mi_cmd_var_show_attributes): Likewise.
3313 (mi_cmd_var_assign): Likewise.
3314 (mi_cmd_var_update): Likewise.
3315 (mi_cmd_enable_pretty_printing): Likewise.
3316 (mi_cmd_var_set_update_range): Likewise.
3317 * mi/mi-cmd-target.c (mi_cmd_target_file_get): Fix error
3318 messages.
3319 (mi_cmd_target_file_put): Likewise.
3320 (mi_cmd_target_file_delete): Likewise.
3321 * mi/mi-cmd-stack.c (mi_cmd_stack_list_frames): Fix error
3322 messages.
3323 (mi_cmd_stack_info_depth): Likewise.
3324 (mi_cmd_stack_list_locals): Likewise.
3325 (mi_cmd_stack_list_args): Likewise.
3326 (mi_cmd_stack_select_frame): Likewise.
3327 (mi_cmd_stack_select_frame): Likewise.
3328 (mi_cmd_stack_info_frame): Likewise.
3329 * mi/mi-cmd-file.c (mi_cmd_file_list_exec_source_file): Fix error
3330 messages.
3331 (mi_cmd_file_list_exec_source_files): Likewise.
3332 * mi/mi-cmd-env.c (mi_cmd_env_pwd): Fix error messages.
3333 (mi_cmd_env_cd): Likewise.
3334 (mi_cmd_env_path): Likewise.
3335 (mi_cmd_env_dir): Likewise.
3336 (mi_cmd_inferior_tty_show): Likewise.
3337 * mi/mi-cmd-disas.c (mi_cmd_disassemble): Fix error messages.
3338 * mi/mi-cmd-break.c (mi_cmd_break_insert): Fix error messages.
3339 (mi_cmd_break_watch): Likewise.
3340
ad422571
TJB
33412011-01-12 Thiago Jung Bauermann <bauerman@br.ibm.com>
3342
3343 * ppc-linux-nat.c (booke_cmp_hw_point): Fix whitespace.
3344 (ppc_linux_insert_hw_breakpoint): Likewise.
3345 (ppc_linux_remove_hw_breakpoint): Likewise.
3346 (ppc_linux_insert_watchpoint): Likewise.
3347
c2ff108b
JK
33482011-01-12 Andrew Burgess <aburgess@broadcom.com>
3349 Jan Kratochvil <jan.kratochvil@redhat.com>
3350
3351 PR fortran/11104 and DWARF unbound arrays detection.
3352 * dwarf2read.c (read_subrange_type): Set zero length on unspecified
3353 upper bound. Set TYPE_HIGH_BOUND_UNDEFINED if not language_ada on
3354 unspecified upper bound.
3355 * eval.c (evaluate_subexp_standard) <multi_f77_subscript>: Remove
3356 variables array_size_array, tmp_type and offset_item. New variable
3357 array. Remove call to f77_get_upperbound. New variables array_type
3358 and index. Call value_subscripted_rvalue for each dimenasion. Remove
3359 the final call to deprecated_set_value_type.
3360
41e8491f
JK
33612011-01-12 Jan Kratochvil <jan.kratochvil@redhat.com>
3362
3363 Make value allocations more lazy.
3364 * ada-lang.c (coerce_unspec_val_to_type): Use allocate_value_lazy
3365 instead of allocate_value and set_value_lazy when possible.
f2eb0bc8 3366 * dwarf2loc.c (dwarf2_evaluate_loc_desc_full): Use allocate_value_lazy
41e8491f
JK
3367 instead of allocate_value and set_value_lazy.
3368 * findvar.c (value_of_register_lazy): Likewise.
3369 (read_var_value): Remove V preallocation, call just check_typedef in
f2eb0bc8 3370 advance. Move allocate_value to LOC_CONST, LOC_LABEL,
41e8491f
JK
3371 LOC_CONST_BYTES. Use allocate_value_lazy in LOC_STATIC, LOC_ARG,
3372 LOC_REF_ARG, LOC_LOCAL, LOC_BLOCK. Set ADDR instead of
3373 set_value_address and break in LOC_BLOCK. Use allocate_value_lazy and
3374 remove lval_memory set in LOC_REGPARM_ADDR. Use allocate_value_lazy
3375 in LOC_UNRESOLVED and LOC_OPTIMIZED_OUT. Add setting lval_memory at
3376 the end, remove set_value_lazy there.
3377 * valarith.c (value_subscripted_rvalue): Use allocate_value_lazy
3378 instead of allocate_value and set_value_lazy when possible.
3379 * valops.c (value_fetch_lazy): Do nop for value_optimized_out VAL.
3380 * value.c (allocate_computed_value): Use allocate_value_lazy instead
3381 of allocate_value and set_value_lazy.
3382 (value_from_contents_and_address): Use allocate_value_lazy instead of
3383 allocate_value and set_value_lazy when possible.
3384
b716877b
AB
33852011-01-12 Andrew Burgess <aburgess@broadcom.com>
3386
3387 * disasm.c (dump_insns): Support dumping opcodes for MI.
3388 * mi/mi-cmd-disas.c (mi_cmd_disassemble): Allow mode to control
3389 dumping of instruction opcodes.
3390
d5ae309f
JB
33912011-01-09 Robert Millan <rmh@gnu.org> (tiny patch)
3392
3393 * configure.tgt: Detect GNU/kFreeBSD and set `gdb_osabi'
3394 appropiately.
3395
98871305
TT
33962011-01-11 Tom Tromey <tromey@redhat.com>
3397
3398 * thread.c (do_captured_thread_select): Emit newline before
3399 printing frame.
3400
c378eb4e
MS
34012011-01-11 Michael Snyder <msnyder@vmware.com>
3402
3403 * s390-tdep.c: Comment cleanup, mostly periods and spaces.
3404 * score-tdep.c: Ditto.
3405 * score-tdep.h: Ditto.
3406 * ser-base.c: Ditto.
3407 * ser-go32.c: Ditto.
3408 * serial.c: Ditto.
3409 * serial.h: Ditto.
3410 * ser-mingw.c: Ditto.
3411 * ser-pipe.c: Ditto.
3412 * ser-tcp.c: Ditto.
3413 * ser-unix.c: Ditto.
3414 * sh64-tdep.c: Ditto.
3415 * shnbsd-nat.c: Ditto.
3416 * sh-tdep.c: Ditto.
3417 * sh-tdep.h: Ditto.
3418 * solib.c: Ditto.
3419 * solib-darwin.c: Ditto.
3420 * solib-frv.c: Ditto.
3421 * solib.h: Ditto.
3422 * solib-irix.c: Ditto.
3423 * solib-osf.c: Ditto.
3424 * solib-pa64.c: Ditto.
3425 * solib-som.c: Ditto.
3426 * solib-spu.c: Ditto.
3427 * solib-sunos.c: Ditto.
3428 * solib-svr4.c: Ditto.
3429 * solist.h: Ditto.
3430 * sol-thread.c: Ditto.
3431 * somread.c: Ditto.
3432 * source.c: Ditto.
3433 * source.h: Ditto.
3434 * sparc64-linux-tdep.c: Ditto.
3435 * sparc64-tdep.c: Ditto.
3436 * sparc-linux-nat.c: Ditto.
3437 * sparc-linux-tdep.c: Ditto.
3438 * sparc-sol2-nat.c: Ditto.
3439 * sparc-sol2-tdep.c: Ditto.
3440 * sparc-tdep.c: Ditto.
3441 * sparc-tdep.h: Ditto.
3442 * spu-tdep.c: Ditto.
3443 * stabsread.c: Ditto.
3444 * stabsread.h: Ditto.
3445 * stack.c: Ditto.
3446 * symfile.c: Ditto.
3447 * symfile.h: Ditto.
3448 * symmisc.c: Ditto.
3449 * symtab.c: Ditto.
3450 * symtab.h: Ditto.
3451 * target.c: Ditto.
3452 * target-descriptions.c: Ditto.
3453 * target-descriptions.h: Ditto.
3454 * target.h: Ditto.
3455 * target-memory.c: Ditto.
3456 * terminal.h: Ditto.
3457 * thread.c: Ditto.
3458 * top.c: Ditto.
3459 * tracepoint.c: Ditto.
3460 * tracepoint.h: Ditto.
3461 * trad-frame.h: Ditto.
3462 * typeprint.c: Ditto.
3463
581e13c1
MS
34642011-01-11 Michael Snyder <msnyder@vmware.com>
3465
3466 * ui-file.c: Comment cleanup, mostly periods and spaces.
3467 * ui-file.h: Ditto.
3468 * ui-out.c: Ditto.
3469 * ui-out.h: Ditto.
3470 * utils.c: Ditto.
3471 * v850-tdep.c: Ditto.
3472 * valarith.c: Ditto.
3473 * valops.c: Ditto.
3474 * valprint.c: Ditto.
3475 * valprint.h: Ditto.
3476 * value.c: Ditto.
3477 * value.h: Ditto.
3478 * varobj.c: Ditto.
3479 * varobj.h: Ditto.
3480 * vax-tdep.c: Ditto.
3481 * vec.c: Ditto.
3482 * vec.h: Ditto.
3483 * version.h: Ditto.
3484 * windows-nat.c: Ditto.
3485 * windows-tdep.c: Ditto.
3486 * xcoffread.c: Ditto.
3487 * xcoffsolib.c: Ditto.
3488 * xml-support.c: Ditto.
3489 * xstormy16-tdep.c: Ditto.
3490 * xtensa-tdep.c: Ditto.
3491 * xtensa-tdep.h: Ditto.
3492
90e4670f
TJB
34932011-01-11 Thiago Jung Bauermann <bauerman@br.ibm.com>
3494
3495 * breakpoint.c (resources_needed_watchpoint): Fix indentation.
3496 * gdbtypes.c (is_scalar_type_recursive): Fix formatting.
3497
e09342b5
TJB
34982011-01-11 Sergio Durigan Junior <sergiodj@linux.vnet.ibm.com>
3499 Thiago Jung Bauermann <bauerman@br.ibm.com>
3500
3501 Implement support for PowerPC BookE ranged watchpoints.
f2eb0bc8 3502 * breakpoint.h
e09342b5
TJB
3503 (struct breakpoint_ops) <resources_needed>: New method.
3504 Initialize to NULL in all existing breakpoint_ops instances.
3505 (struct breakpoint) <exact>: New field.
3506 (target_exact_watchpoints): Declare external global.
3507 * breakpoint.c (target_exact_watchpoints): New global flag.
3508 (update_watchpoint): Set b->type to bp_hardware_watchpoint and
3509 b->enable_state to bp_enabled before calling
3510 hw_watchpoint_used_count.
3511 (hw_watchpoint_used_count): Iterate over all bp_locations in a
3512 watchpoint. Call breakpoint's breakpoint_ops.resources_needed
3513 if available.
3514 (insert_watchpoint, remove_watchpoint): Use fixed length of 1 byte
3515 if the watchpoint is exact.
3516 (resources_needed_watchpoint): New function.
3517 (watchpoint_breakpoint_ops): Add resources_needed_watchpoint.
3518 (watch_command_1): Set b->exact if the user asked for an exact
3519 watchpoint and one can be set.
3520 (can_use_hardware_watchpoint): Add exact_watchpoints argument.
3521 Pass fixed length of 1 to target_region_ok_for_hw_watchpoint if
3522 the user asks for an exact watchpoint and one can be set. Return
3523 number of needed debug registers to watch the expression.
3524 * gdbtypes.c (is_scalar_type): New function, based on
3525 valprint.c:scalar_type_p.
3526 (is_scalar_type_recursive): New function.
3527 * gdbtypes.h (is_scalar_type_recursive): Declare.
3528 * ppc-linux-nat.c (ppc_linux_region_ok_for_hw_watchpoint): Always
3529 handle regions when ranged watchpoints are available.
3530 (create_watchpoint_request): New function.
3531 (ppc_linux_insert_watchpoint, ppc_linux_remove_watchpoint): Use
3532 create_watchpoint_request.
3533 * rs6000-tdep.c (show_powerpc_exact_watchpoints): New function.
3534 (_initialize_rs6000_tdep): Add `exact-watchpoints' boolean to the
3535 `set powerpc' and `show powerpc' commands.
3536 * target.h (struct target_ops) <to_region_ok_for_hw_watchpoint>:
3537 Mention documentation comment in the target macro.
3538 (target_region_ok_for_hw_watchpoint): Document return value.
3539
9fa40276
TJB
35402011-01-11 Thiago Jung Bauermann <bauerman@br.ibm.com>
3541
3542 * breakpoint.c (update_watchpoint): Decide on using a software or
3543 hardware watchpoint after the bp_locations are created.
3544
77b06cd7
TJB
35452010-01-11 Thiago Jung Bauermann <bauerman@br.ibm.com>
3546
3547 Convert hardware watchpoints to use breakpoint_ops.
3548 * breakpoint.h (breakpoint_ops) <insert>: Rename to...
3549 <insert_location>: ... this. Return int instead of void.
3550 Accept pointer to struct bp_location instead of pointer to
3551 struct breakpoint. Adapt all implementations.
f2eb0bc8 3552 (breakpoint_ops) <remove>: Rename to...
77b06cd7
TJB
3553 <remove_location>: ... this. Accept pointer to struct bp_location
3554 instead of pointer to struct breakpoint. Adapt all implementations.
3555 * breakpoint.c (insert_catchpoint): Delete function.
3556 (insert_bp_location): Call the watchpoint or catchpoint's
3557 breakpoint_ops.insert method.
3558 (remove_breakpoint_1): Call the watchpoint or catchpoint's
3559 breakpoint_ops.remove method.
3560 (insert_watchpoint, remove_watchpoint): New functions.
3561 (watchpoint_breakpoint_ops): New structure.
3562 (watch_command_1): Initialize the OPS field.
3563 * inf-child.c (inf_child_insert_fork_catchpoint)
3564 (inf_child_remove_fork_catchpoint, inf_child_insert_vfork_catchpoint)
3565 (inf_child_remove_vfork_catchpoint, inf_child_insert_exec_catchpoint)
3566 (inf_child_remove_exec_catchpoint, inf_child_set_syscall_catchpoint):
3567 Delete functions.
3568 (inf_child_target): Remove initialization of to_insert_fork_catchpoint,
3569 to_remove_fork_catchpoint, to_insert_vfork_catchpoint,
3570 to_remove_vfork_catchpoint, to_insert_exec_catchpoint,
3571 to_remove_exec_catchpoint and to_set_syscall_catchpoint.
3572 * target.c (update_current_target): Change default implementation of
3573 to_insert_fork_catchpoint, to_remove_fork_catchpoint,
3574 to_insert_vfork_catchpoint, to_remove_vfork_catchpoint,
3575 to_insert_exec_catchpoint, to_remove_exec_catchpoint and
3576 to_set_syscall_catchpoint to return_one.
3577 (debug_to_insert_fork_catchpoint, debug_to_insert_vfork_catchpoint)
3578 (debug_to_insert_exec_catchpoint): Report return value.
3579 * target.h (to_insert_fork_catchpoint, to_insert_vfork_catchpoint)
3580 (to_insert_exec_catchpoint): Change declaration to return int instead
3581 of void.
3582
9b20d036
MS
35832011-01-11 Michael Snyder <msnyder@vmware.com>
3584
3585 * arm-tdep.c: Internationalization.
3586 * c-lang.c: Ditto.
3587 * charset.c: Ditto.
3588 * fork-child.c: Ditto.
3589 * nto-procfs.c: Ditto.
3590 * ppc-sysv-tdep.c: Ditto.
3591 * procfs.c: Ditto.
3592 * remote-mips.c: Ditto.
3593 * remote.c: Ditto.
3594 * rs6000-nat.c: Ditto.
3595 * rs6000-tdep.c: Ditto.
3596 * target.c: Ditto.
3597 * valops.c: Ditto.
3598 * value.c: Ditto.
3599 * xml-support.c: Ditto.
3600 * mi/mi-cmd-break.c: Ditto.
3601 * mi/mi-cmd-var.c: Ditto.
3602 * mi/mi-interp.c: Ditto.
3603 * mi/mi-main.c: Ditto.
3604
dae477fe
AB
36052011-01-11 Andrew Burgess <aburgess@broadcom.com>
3606
3607 * remote-sim.c (gdbsim_store_register): Update API to
3608 sim_store_register to check more error conditions.
3609
0df8b418
MS
36102011-01-10 Michael Snyder <msnyder@vmware.com>
3611
3612 * nto-procfs.c: Comment cleanup, mostly periods and spaces.
3613 * nto-tdep.c: Ditto.
3614 * nto-tdep.h: Ditto.
3615 * objc-exp.y: Ditto.
3616 * objc-lang.c: Ditto.
3617 * objfiles.c: Ditto.
3618 * objfiles.h: Ditto.
3619 * observer.c: Ditto.
3620 * opencl-lang.c: Ditto.
3621 * osabi.c: Ditto.
3622 * parse.c: Ditto.
3623 * parser-defs.h: Ditto.
3624 * p-exp.y: Ditto.
3625 * p-lang.c: Ditto.
3626 * posix-hdep.c: Ditto.
3627 * ppcbug-rom.c: Ditto.
3628 * ppc-linux-nat.c: Ditto.
3629 * ppc-linux-tdep.c: Ditto.
3630 * ppc-linux-tdep.h: Ditto.
3631 * ppcnbsd-tdep.c: Ditto.
3632 * ppcobsd-tdep.c: Ditto.
3633 * ppcobsd-tdep.h: Ditto.
3634 * ppc-sysv-tdep.c: Ditto.
3635 * ppc-tdep.h: Ditto.
3636 * printcmd.c: Ditto.
3637 * proc-abi.c: Ditto.
3638 * proc-flags.c: Ditto.
3639 * procfs.c: Ditto.
3640 * proc-utils.h: Ditto.
3641 * progspace.h: Ditto.
3642 * prologue-value.c: Ditto.
3643 * prologue-value.h: Ditto.
3644 * psympriv.h: Ditto.
3645 * psymtab.c: Ditto.
3646 * p-typeprint.c: Ditto.
3647 * p-valprint.c: Ditto.
3648 * ravenscar-sparc-thread.c: Ditto.
3649 * ravenscar-thread.c: Ditto.
3650 * ravenscar-thread.h: Ditto.
3651 * record.c: Ditto.
3652 * regcache.c: Ditto.
3653 * regcache.h: Ditto.
3654 * remote.c: Ditto.
3655 * remote-fileio.c: Ditto.
3656 * remote-fileio.h: Ditto.
3657 * remote.h: Ditto.
3658 * remote-m32r-sdi.c: Ditto.
3659 * remote-mips.c: Ditto.
3660 * remote-sim.c: Ditto.
3661 * rs6000-aix-tdep.c: Ditto.
3662 * rs6000-nat.c: Ditto.
3663 * rs6000-tdep.c: Ditto.
3664
0d7a18f7
MS
36652011-01-10 Michael Snyder <msnyder@vmware.com>
3666
3667 * charset.c (validate): Internationalization.
3668 * coffread.c (read_one_sym): Ditto.
3669 * dwarf2read.c (dwarf2_attach_fields_to_type): Ditto.
3670 * h8300-tdep.c (H8300_extract_return_value): Ditto.
3671 * inflow.c (new_tty): Ditto.
3672 * iq2000-tdep.c (iq2000_breakpoint_from_pc): Ditto.
3673 * m32c-tdep.c (m32c_return_value): Ditto.
3674 * mep-tdep.c (mep_store_return_value): Ditto.
3675 * score-tdep.c (score7_fetch_insn): Ditto.
3676 * ser-mingw.c (pipe_windows_open): Ditto.
3677 * sh64-tdep.c (sh64_extract_return_value): Ditto.
3678 * spu-tdep.c (spu_register_type): Ditto.
3679 * tracepoint.c (trace_find_command): Ditto.
3680 * valarith.c (value_pos): Ditto.
3681
9a153e0b
JB
36822011-01-10 Joel Brobecker <brobecker@adacore.com>
3683
3684 * ada-valprint.c (printstr): Minor comment reformatting.
3685
35ecd2d6
MS
36862011-01-08 Michael Snyder <msnyder@vmware.com>
3687
3688 * m32r-rom.c (m32r_upload_command): Fix up ARI warnings for _
3689 markup.
3690
1777feb0
MS
36912011-01-08 Michael Snyder <msnyder@vmware.com>
3692
3693 * h8300-tdep.c: Comment cleanup, mostly periods and spaces.
3694 * hppa-hpux-tdep.c: Ditto.
3695 * hppa-linux-nat.c: Ditto.
3696 * hppa-linux-tdep.c: Ditto.
3697 * hppanbsd-tdep.c: Ditto.
3698 * hppa-tdep.c: Ditto.
3699 * hppa-tdep.h: Ditto.
3700 * hpux-thread.c: Ditto.
3701 * i386-cygwin-tdep.c: Ditto.
3702 * i386-darwin-nat.c: Ditto.
3703 * i386gnu-nat.c: Ditto.
3704 * i386-linux-nat.c: Ditto.
3705 * i386-linux-tdep.c: Ditto.
3706 * i386-nat.c: Ditto.
3707 * i386-nat.h: Ditto.
3708 * i386nbsd-tdep.c: Ditto.
3709 * i386-sol2-nat.c: Ditto.
3710 * i386-stub.c: Ditto.
3711 * i386-tdep.c: Ditto.
3712 * i386-tdep.h: Ditto.
3713 * i387-tdep.c: Ditto.
3714 * ia64-linux-nat.c: Ditto.
3715 * ia64-linux-tdep.c: Ditto.
3716 * ia64-tdep.c: Ditto.
3717 * infcall.c: Ditto.
3718 * infcall.h: Ditto.
3719 * infcmd.c: Ditto.
3720 * inferior.c: Ditto.
3721 * inferior.h: Ditto.
3722 * infloop.c: Ditto.
3723 * inflow.c: Ditto.
3724 * infrun.c: Ditto.
3725 * interps.c: Ditto.
3726 * interps.h: Ditto.
3727 * iq2000-tdep.c: Ditto.
3728 * irix5-nat.c: Ditto.
3729 * jit.c: Ditto.
3730 * jit.h: Ditto.
3731 * jv-exp.y: Ditto.
3732 * jv-lang.c: Ditto.
3733 * jv-lang.h: Ditto.
3734 * jv-typeprint.c: Ditto.
3735 * jv-valprint.c: Ditto.
3736 * language.c: Ditto.
3737 * language.h: Ditto.
3738 * linespec.c: Ditto.
3739 * linux-fork.c: Ditto.
3740 * linux-nat.c: Ditto.
3741 * linux-thread-db.c: Ditto.
3742 * lm32-tdep.c: Ditto.
3743
025bb325
MS
37442011-01-08 Michael Snyder <msnyder@vmware.com>
3745
3746 * m2-exp.y: Comment cleanup, mostly periods and spaces.
3747 * m2-lang.c: Ditto.
3748 * m2-typeprint.c: Ditto.
3749 * m2-valprint.c: Ditto.
3750 * m32c-tdep.c: Ditto.
3751 * m32r-linux-nat.c: Ditto.
3752 * m32r-rom.c: Ditto.
3753 * m32r-tdep.c: Ditto.
3754 * m32r-tdep.h: Ditto.
3755 * m68hc11-tdep.c: Ditto.
3756 * m58klinux-nat.c: Ditto.
3757 * m68k-tdep.c: Ditto.
3758 * m88k-tdep.c: Ditto.
3759 * m88k-tdep.h: Ditto.
3760 * machoread.c: Ditto.
3761 * macrocmd.c: Ditto.
3762 * macroexp.c: Ditto.
3763 * macrotab.c: Ditto.
3764 * main.c: Ditto.
3765 * maint.c: Ditto.
3766 * mdebugread.c: Ditto.
3767 * mdebugread.h: Ditto.
3768 * memattr.c: Ditto.
3769 * memattr.h: Ditto.
3770 * memory-map.h: Ditto.
3771 * mep-tdep.c: Ditto.
3772 * microblaze-rom.c: Ditto.
3773 * microblaze-tdep.c: Ditto.
3774 * minsyms.c: Ditto.
3775 * mips-irix-tdep.c: Ditto.
3776 * mips-linux-nat.c: Ditto.
3777 * mips-linux-tdep.c: Ditto.
3778 * mips-linux-tdep.h: Ditto.
3779 * mipsnbsd-nat.c: Ditto.
3780 * mipsnbsd-tdep.c: Ditto.
3781 * mipsread.c: Ditto.
3782 * mips-tdep.c: Ditto.
3783 * mips-tdep.h: Ditto.
3784 * mn10300-linux-tdep.c: Ditto.
3785 * mn10300-tdep.c: Ditto.
3786 * mn10300-tdep.h: Ditto.
3787 * monitor.c: Ditto.
3788 * monitor.h: Ditto.
3789 * moxie-tdep.c: Ditto.
3790 * moxie-tdep.h: Ditto.
3791 * mt-tdep.c: Ditto.
3792
1642781b
MF
37932011-01-08 Mike Frysinger <vapier@gentoo.org>
3794
3795 * bfin-tdep.h (BFIN_A0_DOT_W_REGNUM): Fix typo in name.
3796
394b0adb
JB
37972011-01-08 Robert Millan <rmh@gnu.org>
3798
3799 * fbsd-nat.c (fbsd_find_memory_regions): Fix typo.
3800
b670013c
MS
38012011-01-07 Michael Snyder <msnyder@vmware.com>
3802
3803 * charset.c (_initialize_charset): Fix typo in string.
3804
a743e542
MS
38052011-01-07 Michael Snyder <msnyder@vmware.com>
3806
3807 * mi/mi-cmd-disas.c (mi_cmd_disassemble): Mark up error message
3808 for i18n.
f2eb0bc8 3809 * tui/tui-layout.c (tui_set_layout_for_display_command):
a743e542
MS
3810 Split line so that operator goes to beginning of line.
3811 * tui/tui-winsource.c (tui_horizontal_source_scroll): Move
3812 assignment out of if statement.
3813
0963b4bd
MS
38142011-01-07 Michael Snyder <msnyder@vmware.com>
3815
3816 * ada-lang.c: Comment cleanup, mostly periods and spaces.
3817 * ada-lang.h: Ditto.
3818 * ada-tasks.c: Ditto.
3819 * ada-valprint.c: Ditto.
3820 * aix-threads.c: Ditto.
3821 * alpha-linux-nat.c: Ditto.
3822 * alpha-linux-tdep.c: Ditto.
3823 * alpha-mdebug-tdep.c: Ditto.
3824 * alpha-nat.c: Ditto.
3825 * alpha-osf1-tdep.c: Ditto.
3826 * alpha-tdep.c: Ditto.
3827 * alphabsd-nat.c: Ditto.
3828 * alphabsd-tdep.c: Ditto.
3829 * amd64-darwin-tdep.c: Ditto.
3830 * amd64-linux-nat.c: Ditto.
3831 * amd64-linux-tdep.c: Ditto.
3832 * amd64-sol2-tdep.c: Ditto.
3833 * amd64-tdep.c: Ditto.
3834 * amd64-fbsd-tdep.c: Ditto.
3835 * amd64-nbsd-tdep.c: Ditto.
3836 * amd64-obsd-tdep.c: Ditto.
3837 * amd64-linux-nat.c: Ditto.
3838 * amd64-linux-tdep.c: Ditto.
3839 * arm-tdep.c: Ditto.
3840 * arm-tdep.h: Ditto.
3841 * armnbsd-nat.c: Ditto.
3842 * avr-tdep.c: Ditto.
3843 * bfin-tdep.c: Ditto.
3844 * bsd-kvm.c: Ditto.
3845 * c-typeprintc: Ditto.
3846 * c-valprint.c: Ditto.
3847 * coff-pe-read.h: Ditto.
3848 * coffreead.c: Ditto.
3849 * cris-tdep.c: Ditto.
3850 * d-lang.c: Ditto.
3851 * darwin-nat-info.c: Ditto.
3852 * darwin-nat.c: Ditto.
3853 * dbug-rom.c: Ditto.
3854 * dbxread.c: Ditto.
3855 * dcache.c: Ditto.
3856 * dcache.h: Ditto.
3857 * dec-thread.c: Ditto.
3858 * defs.h: Ditto.
3859 * demangle.c: Ditto.
3860 * dicos-tdep.c: Ditto.
3861 * dictionary.c: Ditto.
3862 * dictionary.h: Ditto.
3863 * dink32-rom.c: Ditto.
3864 * disasm.c: Ditto.
3865 * doublest.c: Ditto.
3866 * dsrec.c: Ditto.
3867 * dummy-frame.c: Ditto.
3868 * dwarf2-frame.c: Ditto.
3869 * dwarf2expr.c: Ditto.
3870 * dwarf2loc.c: Ditto.
3871 * dwarf2read.c: Ditto.
3872 * elfread.c: Ditto.
3873 * environ.c: Ditto.
3874 * eval.c: Ditto.
3875 * event-top.h: Ditto.
3876 * exceptions.c: Ditto.
3877 * exceptions.h: Ditto.
3878 * exec.c: Ditto.
3879 * expprint.c: Ditto.
3880 * expression.h: Ditto.
3881 * f-exp.y: Ditto.
3882 * f-lang.c: Ditto.
3883 * f-lang.h: Ditto.
3884 * f-typeprint.c: Ditto.
3885 * f-valprint.c: Ditto.
3886 * fbsd-nat.c: Ditto.
3887 * findvar.c: Ditto.
3888 * fork-child.c: Ditto.
3889 * frame.c: Ditto.
3890 * frame.h: Ditto.
3891 * frv-linux-tdep.c: Ditto.
3892 * frv-tdep.c: Ditto.
3893 * gcore.c: Ditto.
3894 * gdb-stabs.h: Ditto.
3895 * gdb_assert.h: Ditto.
3896 * gdb_string.h: Ditto.
3897 * gdb_thread_db.h: Ditto.
3898 * gdb_wait.h: Ditto.
3899 * gdbarch.sh: Ditto.
3900 * gdbcore.h: Ditto.
3901 * gdbthread.h: Ditto.
3902 * gdbtypes.c: Ditto.
3903 * gdbtypes.h: Ditto.
3904 * gnu-nat.c: Ditto.
3905 * gnu-nat.h: Ditto.
3906 * gnu-v2-abi.c: Ditto.
3907 * gnu-v3-abi.c: Ditto.
3908 * go32-nat.c: Ditto.
3909 * gdbarch.c: Regenerate.
3910 * gdbarch.h: Regenerate.
3911
ac74f770
MS
39122011-01-07 Michael Snyder <msnyder@vmware.com>
3913
3914 * ax-gdb.c: Adjust some long output strings.
3915 * breakpoint.c: Ditto.
3916 * charset.c: Ditto.
3917 * cp-abi.c: Ditto.
3918 * infcall.c: Ditto.
3919 * infrun.c: Ditto.
3920 * linux-nat.c: Ditto.
3921 * solib-pa64.c: Ditto.
3922 * solib-som.c: Ditto.
3923
d8e22779
TT
39242011-01-06 Tom Tromey <tromey@redhat.com>
3925
3926 PR python/12367:
3927 * NEWS: Add item.
3928 * python/python.c (GdbMethods): Add "newest_frame" method.
3929 * python/python-internal.h (gdbpy_newest_frame): Declare.
3930 * python/py-frame.c (gdbpy_newest_frame): New function.
3931
a255712f
PP
39322010-01-06 Paul Pluzhnikov <ppluzhnikov@google.com>
3933
3934 * jit.h (struct jit_code_entry): use ULONGEST for symfile_size.
3935 * jit.c (jit_debug): New variable.
3936 (show_jit_debug): New function.
3937 (struct target_buffer): Use ULONGEST.
3938 (bfd_open_from_target_memory): Likewise.
3939 (jit_register_code, jit_inferior_init): Add debug output.
3940 (_initialize_jit): Register "debug jit" command.
3941
ccfc3d6e
TT
39422011-01-06 Tom Tromey <tromey@redhat.com>
3943
3944 * frame.h (enum frame_type) <INLINE_FRAME>: Fix comment.
3945 * python/py-frame.c (gdbpy_initialize_frames): Add INLINE_FRAME
3946 and ARCH_FRAME.
3947
57126e4a
TT
39482011-01-06 Tom Tromey <tromey@redhat.com>
3949
3950 * python/py-frame.c (frapy_block): Use get_frame_block.
3951
16dfc9ce
JB
39522011-01-06 Joel Brobecker <brobecker@adacore.com>
3953
3954 Do not stop on SIGPRIO signals by default
3955 * infrun.c (_initialize_infrun): Unset signal_stop and
3956 signal_print for TARGET_SIGNAL_PRIO.
3957
b1ce2347
JB
39582011-01-06 Joel Brobecker <brobecker@adacore.com>
3959
3960 * ada-tasks.c: Fix style violation in comment.
3961
8f7e195f
JB
39622011-01-06 Joel Brobecker <brobecker@adacore.com>
3963
3964 * linespec.c (decode_compound, find_method): Remove trailing \n
3965 at end of error string.
3966 * solib-irix.c (irix_current_sos): Likewise.
3967 * varobj.c (uninstall_variable): Likewise.
3968
e9bdf92c
JB
39692011-01-06 Joel Brobecker <brobecker@adacore.com>
3970
3971 * copyright.py: New script.
3972 * copyright.sh (byhand): Add *.ads, *.adb, *.gpr and *.inc.
3973 Launch emacs without exec'ing. Call copyright.py afterwards.
3974
3e43a32a
MS
39752011-01-05 Michael Snyder <msnyder@vmware.com>
3976
3977 * addrmap.c: Shorten lines of >= 80 columns.
3978 * arch-utils.c: Ditto.
3979 * arch-utils.h: Ditto.
3980 * ax-gdb.c: Ditto.
3981 * ax-general.c: Ditto.
3982 * bcache.c: Ditto.
3983 * blockframe.c: Ditto.
3984 * breakpoint.c: Ditto.
3985 * buildsym.c: Ditto.
3986 * c-lang.c: Ditto.
3987 * c-typeprint.c: Ditto.
3988 * charset.c: Ditto.
3989 * coffread.c: Ditto.
3990 * command.h: Ditto.
3991 * corelow.c: Ditto.
3992 * cp-abi.c: Ditto.
3993 * cp-namespace.c: Ditto.
3994 * cp-support.c: Ditto.
3995 * dbug-rom.c: Ditto.
3996 * dbxread.c: Ditto.
3997 * defs.h: Ditto.
3998 * dfp.c: Ditto.
3999 * dfp.h: Ditto.
4000 * dictionary.c: Ditto.
4001 * disasm.c: Ditto.
4002 * doublest.c: Ditto.
4003 * dwarf2-frame.c: Ditto.
4004 * dwarf2expr.c: Ditto.
4005 * dwarf2loc.c: Ditto.
4006 * dwarf2read.c: Ditto.
4007 * elfread.c: Ditto.
4008 * eval.c: Ditto.
4009 * event-loop.c: Ditto.
4010 * event-loop.h: Ditto.
4011 * exceptions.h: Ditto.
4012 * exec.c: Ditto.
4013 * expprint.c: Ditto.
4014 * expression.h: Ditto.
4015 * f-lang.c: Ditto.
4016 * f-valprint.c: Ditto.
4017 * findcmd.c: Ditto.
4018 * frame-base.c: Ditto.
4019 * frame-unwind.c: Ditto.
4020 * frame-unwind.h: Ditto.
4021 * frame.c: Ditto.
4022 * frame.h: Ditto.
4023 * gcore.c: Ditto.
4024 * gdb-stabs.h: Ditto.
4025 * gdb_assert.h: Ditto.
4026 * gdb_dirent.h: Ditto.
4027 * gdb_obstack.h: Ditto.
4028 * gdbcore.h: Ditto.
4029 * gdbtypes.c: Ditto.
4030 * gdbtypes.h: Ditto.
4031 * inf-ttrace.c: Ditto.
4032 * infcall.c: Ditto.
4033 * infcmd.c: Ditto.
4034 * inflow.c: Ditto.
4035 * infrun.c: Ditto.
4036 * inline-frame.h: Ditto.
4037 * language.c: Ditto.
4038 * language.h: Ditto.
4039 * libunwind-frame.c: Ditto.
4040 * libunwind-frame.h: Ditto.
4041 * linespec.c: Ditto.
4042 * linux-nat.c: Ditto.
4043 * linux-nat.h: Ditto.
4044 * linux-thread-db.c: Ditto.
4045 * machoread.c: Ditto.
4046 * macroexp.c: Ditto.
4047 * macrotab.c: Ditto.
4048 * main.c: Ditto.
4049 * maint.c: Ditto.
4050 * mdebugread.c: Ditto.
4051 * memattr.c: Ditto.
4052 * minsyms.c: Ditto.
4053 * monitor.c: Ditto.
4054 * monitor.h: Ditto.
4055 * objfiles.c: Ditto.
4056 * objfiles.h: Ditto.
4057 * osabi.c: Ditto.
4058 * p-typeprint.c: Ditto.
4059 * p-valprint.c: Ditto.
4060 * parse.c: Ditto.
4061 * printcmd.c: Ditto.
4062 * proc-events.c: Ditto.
4063 * procfs.c: Ditto.
4064 * progspace.c: Ditto.
4065 * progspace.h: Ditto.
4066 * psympriv.h: Ditto.
4067 * psymtab.c: Ditto.
4068 * record.c: Ditto.
4069 * regcache.c: Ditto.
4070 * regcache.h: Ditto.
4071 * remote-fileio.c: Ditto.
4072 * remote.c: Ditto.
4073 * ser-mingw.c: Ditto.
4074 * ser-tcp.c: Ditto.
4075 * ser-unix.c: Ditto.
4076 * serial.c: Ditto.
4077 * serial.h: Ditto.
4078 * solib-frv.c: Ditto.
4079 * solib-irix.c: Ditto.
4080 * solib-osf.c: Ditto.
4081 * solib-pa64.c: Ditto.
4082 * solib-som.c: Ditto.
4083 * solib-sunos.c: Ditto.
4084 * solib-svr4.c: Ditto.
4085 * solib-target.c: Ditto.
4086 * solib.c: Ditto.
4087 * somread.c: Ditto.
4088 * source.c: Ditto.
4089 * stabsread.c: Ditto.
4090 * stabsread.c: Ditto.
4091 * stack.c: Ditto.
4092 * stack.h: Ditto.
4093 * symfile-mem.c: Ditto.
4094 * symfile.c: Ditto.
4095 * symfile.h: Ditto.
4096 * symmisc.c: Ditto.
4097 * symtab.c: Ditto.
4098 * symtab.h: Ditto.
4099 * target-descriptions.c: Ditto.
4100 * target-memory.c: Ditto.
4101 * target.c: Ditto.
4102 * target.h: Ditto.
4103 * terminal.h: Ditto.
4104 * thread.c: Ditto.
4105 * top.c: Ditto.
4106 * tracepoint.c: Ditto.
4107 * tracepoint.h: Ditto.
4108 * ui-file.c: Ditto.
4109 * ui-file.h: Ditto.
4110 * ui-out.h: Ditto.
4111 * user-regs.c: Ditto.
4112 * user-regs.h: Ditto.
4113 * utils.c: Ditto.
4114 * valarith.c: Ditto.
4115 * valops.c: Ditto.
4116 * valprint.c: Ditto.
4117 * valprint.h: Ditto.
4118 * value.c: Ditto.
4119 * varobj.c: Ditto.
4120 * varobj.h: Ditto.
4121 * vec.h: Ditto.
4122 * xcoffread.c: Ditto.
4123 * xcoffsolib.c: Ditto.
4124 * xcoffsolib.h: Ditto.
4125 * xml-syscall.c: Ditto.
4126 * xml-tdesc.c: Ditto.
4127
9a2b4c1b
MS
41282011-01-05 Michael Snyder <msnyder@vmware.com>
4129
4130 * cli/cli-cmds.c: Shorten lines of >= 80 columns.
4131 * cli/cli-decode.c: Ditto.
4132 * cli/cli-dump.c: Ditto.
4133 * cli/cli-logging.c: Ditto.
4134 * cli/cli-script.c: Ditto.
4135 * cli/cli-setshow.c: Ditto.
4136 * common/signals.c: Ditto.
4137 * mi/mi-cmd-break.c: Ditto.
4138 * mi/mi-cmd-disas.c: Ditto.
4139 * mi/mi-cmd-stack.c: Ditto.
4140 * mi/mi-cmd-var.c: Ditto.
4141 * mi/mi-cmds.c: Ditto.
4142 * mi/mi-common.h: Ditto.
4143 * mi/mi-console.c: Ditto.
4144 * mi/mi-interp.c: Ditto.
4145 * mi/mi-main.c: Ditto.
4146 * osf-share/cma_attr.c: Ditto.
4147 * osf-share/cma_deb_core.h: Ditto.
4148 * osf-share/cma_debug_client.h: Ditto.
4149 * osf-share/cma_handle.h: Ditto.
4150 * osf-share/cma_mutex.h: Ditto.
4151 * osf-share/cma_stack_int.h: Ditto.
4152 * osf-share/cma_tcb_defs.h: Ditto.
4153 * python/py-auto-load.c: Ditto.
4154 * python/py-breakpoint.c: Ditto.
4155 * python/py-cmd.c: Ditto.
4156 * python/py-frame.c: Ditto.
4157 * python/py-objfile.c: Ditto.
4158 * python/py-param.c: Ditto.
4159 * python/py-progspace.c: Ditto.
4160 * python/py-symbol.c: Ditto.
4161 * python/py-value.c: Ditto.
4162 * python/python-internal.h: Ditto.
4163 * python/python.c: Ditto.
4164 * tui/tui-data.c: Ditto.
4165 * tui/tui-disasm.c: Ditto.
4166 * tui/tui-hooks.c: Ditto.
4167 * tui/tui-io.c: Ditto.
4168 * tui/tui-layout.c: Ditto.
4169 * tui/tui-regs.c: Ditto.
4170 * tui/tui-source.c: Ditto.
4171 * tui/tui-stack.c: Ditto.
4172 * tui/tui-win.c: Ditto.
4173 * tui/tui-windata.c: Ditto.
4174 * tui/tui-winsource.c: Ditto.
4175
44944448
JB
41762011-01-05 Joel Brobecker <brobecker@adacore.com>
4177
4178 * configure.ac, gdb.1: Copyright year update.
4179
ebedcab5
JK
41802011-01-03 Jan Kratochvil <jan.kratochvil@redhat.com>
4181
4182 * frame.c (get_prev_frame_1) <UNWIND_INNER_ID>: New variables
4183 this_pc_in_block, morestack_msym and morestack_name. Check for
4184 "__morestack" minimal symbol there.
4185
e5cc9f32
JB
41862011-01-03 Joel Brobecker <brobecker@adacore.com>
4187
4188 * symfile.c (find_sym_fns): Add call to dont_repeat.
4189
7b6bb8da
JB
41902011-01-01 Joel Brobecker <brobecker@adacore.com>
4191
4192 Copyright year update in most files (performed by copyright.sh).
4193
71ce852c
JB
41942011-01-01 Joel Brobecker <brobecker@adacore.com>
4195
4196 * top.c (print_gdb_version): Update copyright year in version output.
0e2de366 4197
c3c1ebe8 4198For older changes see ChangeLog-2010.
c906108c
SS
4199\f
4200Local Variables:
4201mode: change-log
4202left-margin: 8
4203fill-column: 74
4204version-control: never
57da7796 4205coding: utf-8
c906108c 4206End: