Commit | Line | Data |
---|---|---|
4ab31498 SM |
1 | 2015-07-08 Simon Marchi <simon.marchi@ericsson.com> |
2 | ||
3 | * progspace.c (delete_program_space): Add missing spaces. | |
4 | ||
7a41607e SM |
5 | 2015-07-08 Simon Marchi <simon.marchi@ericsson.com> |
6 | ||
7 | * inferior.c (delete_inferior_1): Rename to ... | |
8 | (delete_inferior): ..., remove 'silent' parameter, delete | |
9 | program space when unused and remove call to prune_program_spaces. | |
10 | Remove the old, unused, delete_inferior. | |
11 | (delete_inferior_silent): Remove. | |
12 | (prune_inferiors): Change call from delete_inferior_1 to | |
13 | delete_inferior and remove 'silent' parameter. Remove call to | |
14 | prune_program_spaces. | |
15 | (remove_inferior_command): Idem. | |
16 | * inferior.h (delete_inferior_1): Rename to... | |
17 | (delete_inferior): ..., remove 'silent' parameter and remove the | |
18 | original delete_inferior. | |
19 | (delete_inferior_silent): Remove. | |
20 | * mi/mi-main.c (mi_cmd_remove_inferior): Change call from | |
21 | delete_inferior_1 to delete_inferior and remove 'silent' | |
22 | parameter. | |
23 | * progspace.c (prune_program_spaces): Remove. | |
24 | (pspace_empty_p): Rename to... | |
25 | (program_space_empty_p): ... and make non-static. | |
26 | (delete_program_space): New. | |
27 | * progspace.h (prune_program_spaces): Remove declaration. | |
28 | (program_space_empty_p): New declaration. | |
29 | (delete_program_space): New declaration. | |
30 | * monitor.c (monitor_close): Replace call to | |
31 | delete_thread_silent and delete_inferior_silent with | |
32 | discard_all_inferiors. | |
33 | ||
a9bd710f PP |
34 | 2015-07-08 Patrick Palka <patrick@parcs.ath.cx> |
35 | ||
36 | * defs.h (deprecated_register_changed_hook): Remove prototype. | |
37 | * interps.c (clear_iterpreter_hooks): Remove reference to | |
38 | deprecated_register_changed_hook. | |
39 | * top.c (deprecated_register_changed_hook): Remove prototype. | |
40 | * valops.c (value_assign): Remove reference to | |
41 | deprecated_register_changed_hook. | |
42 | * tui/tui-hooks.c (tui_register_changed): Add parameter "frame". | |
43 | Add comment documenting the function. | |
44 | (tui_register_changed_observer): Define. | |
45 | (tui_install_hooks): Remove reference to | |
46 | deprecated_register_changed_hook. Set | |
47 | tui_register_changed_observer. | |
48 | (tui_remove_hooks): Remove reference to | |
49 | deprecated_register_changed_hook. Unset | |
50 | tui_register_changed_observer. | |
51 | ||
08464196 JK |
52 | 2015-07-08 Jan Kratochvil <jan.kratochvil@redhat.com> |
53 | ||
54 | PR compile/18484 | |
55 | * compile/compile-c-types.c (insert_type): Change gdb_assert to error. | |
56 | ||
bcf5c1d9 RC |
57 | 2015-07-08 Robert O'Callahan <robert@ocallahan.org> |
58 | ||
59 | PR exp/18617 | |
60 | * ax-gdb.c (gen_conversion): Extend to 'to' bits, not 'from'. | |
61 | ||
e8643a45 MM |
62 | 2015-07-08 Markus Metzger <markus.t.metzger@intel.com> |
63 | ||
64 | * MAINTAINERS (Write After Approval): Add Markus T. Metzger. | |
65 | ||
76fb6829 MM |
66 | 2015-07-08 Markus Metzger <markus.t.metzger@intel.com> |
67 | ||
68 | * nat/linux-btrace.c (kernel_supports_bts, kernel_supports_pt): | |
69 | Use safe_strerror() instead of strerror(). | |
70 | ||
82c40d4b YQ |
71 | 2015-07-07 Yao Qi <yao.qi@linaro.org> |
72 | ||
73 | * features/arm-with-m-fpa-layout.xml: Set architecture to arm. | |
74 | * features/arm-with-m-fpa-layout.c: Regenerated. | |
75 | * features/arm-with-m-vfp-d16.xml: Likewise. | |
76 | * features/arm-with-m-vfp-d16.c: Regenerated. | |
77 | * features/arm-with-m.xml: Likewise. | |
78 | * features/arm-with-m.c: Regenerated. | |
79 | * features/arm-with-neon.xml: Likewise. | |
80 | * features/arm-with-neon.c: Regenerated. | |
81 | * features/arm-with-vfpv2.xml: Likewise. | |
82 | * features/arm-with-vfpv2.c: Regenerated. | |
83 | * features/arm-with-vfpv3.xml: Likewise. | |
84 | * features/arm-with-vfpv3.c: Regenerated. | |
85 | ||
607685ec YQ |
86 | 2015-07-07 Yao Qi <yao.qi@linaro.org> |
87 | ||
88 | * aarch32-linux-nat.h (VFP_REGS_SIZE): New macro, moved from | |
89 | arm-linux-nat.c. | |
90 | * aarch64-linux-nat.c: Include aarch32-linux-nat.h and | |
91 | elf/external.h. | |
92 | (fetch_gregs_from_thread): Call aarch32_gp_regcache_supply | |
93 | if target is 32-bit. | |
94 | (store_gregs_to_thread): Call aarch32_gp_regcache_collect | |
95 | if target is 32-bit. | |
96 | (fetch_fpregs_from_thread): Call aarch32_vfp_regcache_supply | |
97 | if target is 32-bit. | |
98 | (store_fpregs_to_thread): Call aarch32_vfp_regcache_collect | |
99 | if target is 32-bit. | |
100 | (tdesc_arm_with_vfpv3, tdesc_arm_with_neon): Declare. | |
101 | (aarch64_linux_read_description): Return the right target | |
102 | description. | |
103 | * arm-linux-nat.c (VFP_REGS_SIZE): Moved to aarch32-linux-nat.h. | |
104 | * config/aarch64/linux.mh (NATDEPFILES): Add aarch32-linux-nat.o. | |
105 | * configure.tgt (aarch64*-*-linux*): Add arm-tdep.o and | |
106 | arm-linux-tdep.o. | |
107 | ||
f1b67888 YQ |
108 | 2015-07-07 Yao Qi <yao.qi@linaro.org> |
109 | ||
110 | * aarch32-linux-nat.c: New file. | |
111 | * aarch32-linux-nat.h: New file. | |
112 | * arm-linux-nat.c: Include aarch32-linux-nat.h. | |
113 | (fetch_regs): Move code to aarch32-linux-nat.c. Call | |
114 | aarch32_gp_regcache_supply. | |
115 | (store_regs): Move code to aarch32-linux-nat.c. Call | |
116 | aarch32_gp_regcache_collect. | |
117 | (fetch_vfp_regs): Move code to aarch32-linux-nat.c. Call | |
118 | aarch32_vfp_regcache_supply. | |
119 | (store_vfp_regs): Move code to aarch32-linux-nat.c. Call | |
120 | aarch32_vfp_regcache_collect. | |
121 | * config/arm/linux.mh (NATDEPFILES): Add aarch32-linux-nat.o. | |
122 | ||
179bfe82 YQ |
123 | 2015-07-07 Yao Qi <yao.qi@linaro.org> |
124 | ||
125 | * arm-linux-nat.c (store_fpregister): Remove. | |
126 | (store_register): Likewise. | |
127 | (fetch_fpregister): Likewise. | |
128 | (fetch_register): Likewise. | |
129 | (arm_linux_store_inferior_registers): Call store_regs and | |
130 | store_fpregs instead. | |
131 | (arm_linux_fetch_inferior_registers): Call fetch_fpregs and | |
132 | fetch_regs instead. | |
133 | ||
6008fc5f AB |
134 | 2015-07-06 Andrew Burgess <andrew.burgess@embecosm.com> |
135 | ||
136 | * doc/gdb.texinfo (TUI): Restructure documentation on TUI layout | |
137 | and focus commands. | |
138 | ||
7c79d316 JB |
139 | 2015-07-06 Joel Brobecker <brobecker@adacore.com> |
140 | ||
141 | * NEWS: Create a new section for the next release branch. | |
142 | Rename the section of the current branch, now that it has | |
143 | been cut. | |
144 | ||
f2232bea JB |
145 | 2015-07-06 Joel Brobecker <brobecker@adacore.com> |
146 | ||
147 | GDB 7.10 branch created (66c4b3e8a628a207bc6aafef6af0c4128195f56e): | |
148 | * version.in: Bump version to 7.10.50.DATE-cvs. | |
149 | ||
66c4b3e8 LM |
150 | 2015-07-06 Luis Machado <lgustavo@codesourcery.com> |
151 | ||
152 | * breakpoint.c (remove_breakpoint_1): Don't handle permanent | |
153 | breakpoints in a special way. | |
154 | (remove_breakpoint): Likewise. | |
155 | (mark_breakpoints_out): Likewise. | |
156 | ||
bcd8537c AB |
157 | 2015-07-06 Andrew Burgess <andrew.burgess@embecosm.com> |
158 | ||
159 | * doc/gdb.texinfo (TUI): Add comma after @xref. | |
160 | ||
10e9aaa3 AB |
161 | 2015-07-06 Andrew Burgess <andrew.burgess@embecosm.com> |
162 | ||
163 | * tui/tui-win.c (tui_set_focus): Use structure member 'generic' | |
164 | instead of casting the structure type. | |
165 | ||
8a13d42d SM |
166 | 2015-07-06 Simon Marchi <simon.marchi@ericsson.com> |
167 | ||
168 | * valops.c (search_struct_field): Remove OFFSET parameter. | |
169 | (value_cast_structs): Adjust calls to search_struct_field. | |
170 | (value_struct_elt): Same. | |
171 | (find_overload_match): Same. | |
172 | ||
a844296a SM |
173 | 2015-07-06 Simon Marchi <simon.marchi@ericsson.com> |
174 | ||
175 | * value.c (value_fetch_lazy): Update comment, change return | |
176 | value to void. | |
177 | * value.h (value_fetch_lazy): Change return value to void. | |
178 | ||
f41cbf58 AB |
179 | 2015-07-06 Andrew Burgess <andrew.burgess@embecosm.com> |
180 | ||
181 | * tui/tui-data.c (tui_partial_win_by_name): Window name is const. | |
182 | (tui_win_name): Make parameter and result const. | |
183 | * tui/tui-data.h (tui_win_name): Make parameter and result const. | |
184 | ||
118ca224 PP |
185 | 2015-07-06 Patrick Palka <patrick@parcs.ath.cx> |
186 | ||
187 | * i386-tdep.c (i386_mpx_info_bounds): Don't call error, instead | |
188 | use printf_unfiltered. | |
189 | (set_mpx_cmd): Add missing trailing space to command string | |
190 | literal. | |
191 | (_initialize_i386_tdep): Give the "mpx" prefix command its | |
192 | correct name. | |
193 | ||
1b485e67 KB |
194 | 2015-07-02 Kevin Buettner <kevinb@redhat.com> |
195 | ||
196 | * rx-tdep.c (RX_USP_REGNUM, RX_BPC_REGNUM): New constants. | |
197 | (enum rx_frame_type): New. | |
198 | (struct rx_prologue): Add new field `frame_type'. | |
199 | (rx_analyze_prologue): Add `frame_type' parameter. Cache this | |
200 | parameter in the prologue struct. Add code for recording | |
201 | locations of PC and PSW for fast interrupt and exception frames. | |
202 | (rx_skip_prologue): Adjust call to rx_analyze_prologue. | |
203 | (rx_analyze_frame_prologue): Add `frame_type' parameter. | |
204 | (rx_frame_type): New function. | |
205 | (rx_frame_base): Fetch frame type and pass it to rx_analyze_prologue. | |
206 | (rx_frame_this_id): Rename parameter `this_prologue_cache' to | |
207 | `this_cache'. | |
208 | (rx_frame_prev_register): Rename parameter `this_prologue_cache' to | |
209 | `this_cache'. Add cases for RX_FRAME_TYPE_EXCEPTION and | |
210 | RX_FRAME_TYPE_FAST_INTERRUPT. | |
211 | (normal_frame_p, exception_frame_p, rx_frame_sniffer_common) | |
212 | (rx_frame_sniffer, rx_exception_sniffer): New functions. | |
213 | (rx_frame_unwind): Use rx_frame_sniffer instead of | |
214 | default_frame_sniffer. | |
215 | (rx_frame_unwind): New unwinder. | |
216 | (rx_gdbarch_init): Register new unwinder. | |
217 | ||
0561fea4 KB |
218 | 2015-07-02 Kevin Buettner <kevinb@redhat.com> |
219 | ||
220 | * rx-tdep.c (RX_BPSW_REGNUM, RX_FPSW_REGNUM): New constants. | |
221 | (struct gdbarch_tdep): Add fields rx_psw_type and rx_fpsw_type. | |
222 | (rx_register_type): Add cases for RX_PSW_REGNUM, RX_BPSW_REGNUM, | |
223 | and RX_FPSW_REGNUM. | |
224 | (rx_gdbarch_init): Initialize PSW, BPSW, and FPSW flags types. | |
225 | ||
decf8d9a JK |
226 | 2015-07-02 Jan Kratochvil <jan.kratochvil@redhat.com> |
227 | ||
228 | Fix GCC false warning. | |
229 | * s390-linux-tdep.c (s390_handle_arg): Initialize VAL. | |
230 | ||
2fd0f80d YQ |
231 | 2015-07-02 Yao Qi <yao.qi@linaro.org> |
232 | ||
233 | * aarch64-linux-nat.c (aarch64_linux_insert_hw_breakpoint): Fix | |
234 | typo in the debugging message. | |
235 | ||
b0627500 MM |
236 | 2015-07-02 Markus Metzger <markus.t.metzger@intel.com> |
237 | ||
238 | * btrace.c: Include gdbcmd.h, cli/cli-utils.h, and ctype.h. | |
239 | (maint_btrace_cmdlist, maint_btrace_set_cmdlist) | |
240 | (maint_btrace_show_cmdlist, maint_btrace_pt_set_cmdlist) | |
241 | (maint_btrace_pt_show_cmdlist, maint_btrace_pt_skip_pad) | |
242 | (btrace_maint_clear): New. | |
243 | (btrace_fetch, btrace_clear): Call btrace_maint_clear. | |
244 | (pt_print_packet, btrace_maint_decode_pt) | |
245 | (btrace_maint_update_pt_packets, btrace_maint_update_packets) | |
246 | (btrace_maint_print_packets, get_uint, get_context_size, no_chunk) | |
247 | (maint_btrace_packet_history_cmd) | |
248 | (maint_btrace_clear_packet_history_cmd, maint_btrace_clear_cmd) | |
249 | (maint_btrace_cmd, maint_btrace_set_cmd, maint_btrace_show_cmd) | |
250 | (maint_btrace_pt_set_cmd, maint_btrace_pt_show_cmd) | |
251 | (maint_info_btrace_cmd, _initialize_btrace): New. | |
252 | * btrace.h (btrace_pt_packet, btrace_pt_packet_s) | |
253 | (btrace_maint_packet_history, btrace_maint_info): New. | |
254 | (btrace_thread_info) <maint>: New. | |
255 | * NEWS: Announce it. | |
256 | ||
9be54cae MM |
257 | 2015-07-02 Markus Metzger <markus.t.metzger@intel.com> |
258 | ||
259 | * btrace.c (btrace_fetch): Append the new trace data. | |
260 | (btrace_clear): Clear the stored trace data. | |
261 | * btrace.h (btrace_thread_info) <data>: New. | |
262 | * common/btrace-common.h (btrace_data_clear) | |
263 | (btrace_data_append): New. | |
264 | * common/btrace-common.c (btrace_data_clear) | |
265 | (btrace_data_append): New. | |
266 | ||
010a18a1 MM |
267 | 2015-07-02 Markus Metzger <markus.t.metzger@intel.com> |
268 | ||
269 | * nat/linux-btrace.c (linux_enable_bts): Check for | |
270 | PERF_ATTR_SIZE_VER5. | |
271 | Check for data_offset and data_size fields. Use them. | |
272 | ||
b20a6524 MM |
273 | 2015-07-02 Markus Metzger <markus.t.metzger@intel.com> |
274 | ||
275 | * NEWS: Announce new commands "record btrace pt" and "record pt". | |
276 | Announce new options "set|show record btrace pt buffer-size". | |
277 | * btrace.c: Include "rsp-low.h". | |
278 | Include "inttypes.h". | |
279 | (btrace_add_pc): Add forward declaration. | |
280 | (pt_reclassify_insn, ftrace_add_pt, btrace_pt_readmem_callback) | |
281 | (pt_translate_cpu_vendor, btrace_finalize_ftrace_pt) | |
282 | (btrace_compute_ftrace_pt): New. | |
283 | (btrace_compute_ftrace): Support BTRACE_FORMAT_PT. | |
284 | (check_xml_btrace_version): Update version check. | |
285 | (parse_xml_raw, parse_xml_btrace_pt_config_cpu) | |
286 | (parse_xml_btrace_pt_raw, parse_xml_btrace_pt) | |
287 | (btrace_pt_config_cpu_attributes, btrace_pt_config_children) | |
288 | (btrace_pt_children): New. | |
289 | (btrace_children): Add support for "pt". | |
290 | (parse_xml_btrace_conf_pt, btrace_conf_pt_attributes): New. | |
291 | (btrace_conf_children): Add support for "pt". | |
292 | * btrace.h: Include "intel-pt.h". | |
293 | (btrace_pt_error): New. | |
294 | * common/btrace-common.c (btrace_format_string, btrace_data_fini) | |
295 | (btrace_data_empty): Support BTRACE_FORMAT_PT. | |
296 | * common/btrace-common.h (btrace_format): Add BTRACE_FORMAT_PT. | |
297 | (struct btrace_config_pt): New. | |
298 | (struct btrace_config)<pt>: New. | |
299 | (struct btrace_data_pt_config, struct btrace_data_pt): New. | |
300 | (struct btrace_data)<pt>: New. | |
301 | * features/btrace-conf.dtd (btrace-conf)<pt>: New. | |
302 | (pt): New. | |
303 | * features/btrace.dtd (btrace)<pt>: New. | |
304 | (pt, pt-config, cpu): New. | |
305 | * nat/linux-btrace.c (perf_event_read, perf_event_read_all) | |
306 | (perf_event_pt_event_type, kernel_supports_pt) | |
307 | (linux_supports_pt): New. | |
308 | (linux_supports_btrace): Support BTRACE_FORMAT_PT. | |
309 | (linux_enable_bts): Free tinfo on error. | |
310 | (linux_enable_pt): New. | |
311 | (linux_enable_btrace): Support BTRACE_FORMAT_PT. | |
312 | (linux_disable_pt): New. | |
313 | (linux_disable_btrace): Support BTRACE_FORMAT_PT. | |
314 | (linux_fill_btrace_pt_config, linux_read_pt): New. | |
315 | (linux_read_btrace): Support BTRACE_FORMAT_PT. | |
316 | * nat/linux-btrace.h (struct btrace_tinfo_pt): New. | |
317 | (struct btrace_target_info)<pt>: New. | |
318 | * record-btrace.c (set_record_btrace_pt_cmdlist) | |
319 | (show_record_btrace_pt_cmdlist): New. | |
320 | (record_btrace_print_pt_conf): New. | |
321 | (record_btrace_print_conf): Support BTRACE_FORMAT_PT. | |
322 | (btrace_ui_out_decode_error): Support BTRACE_FORMAT_PT. | |
323 | (cmd_record_btrace_pt_start): New. | |
324 | (cmd_record_btrace_start): Support BTRACE_FORMAT_PT. | |
325 | (cmd_set_record_btrace_pt, cmd_show_record_btrace_pt): New. | |
326 | (_initialize_record_btrace): Add new commands. | |
327 | * remote.c (PACKET_Qbtrace_pt, PACKET_Qbtrace_conf_pt_size): New. | |
328 | (remote_protocol_features): Add "Qbtrace:pt". | |
329 | Add "Qbtrace-conf:pt:size". | |
330 | (remote_supports_btrace): Support BTRACE_FORMAT_PT. | |
331 | (btrace_sync_conf): Support PACKET_Qbtrace_conf_pt_size. | |
332 | (remote_enable_btrace): Support BTRACE_FORMAT_PT. | |
333 | (_initialize_remote): Add new commands. | |
334 | ||
58bfce93 MM |
335 | 2015-07-02 Markus Metzger <markus.t.metzger@intel.com> |
336 | ||
337 | * configure.ac: check for libipt | |
338 | * configure: Regenerate. | |
339 | * config.in: Regenerate. | |
340 | * Makefile.in (LIBIPT): New. | |
341 | (CLIBS): Add $LIBIPT. | |
342 | * NEWS: document new configure options | |
343 | ||
b0fd6b30 JK |
344 | 2015-07-02 Jan Kratochvil <jan.kratochvil@redhat.com> |
345 | ||
346 | * compile/compile-object-load.c (compile_object_load): Replace debug | |
347 | message "lookup undefined ELF symbol" by 3 more specific messages. | |
348 | ||
e6280369 KB |
349 | 2015-07-01 Kevin Buettner <kevinb@redhat.com> |
350 | ||
351 | * rl78-tdep.c (struct gdbarch_tdep): Add new field, rl78_psw_type. | |
352 | (rl78_register_type): Add case for RL78_PSW_REGNUM. | |
353 | (rl78_gdbarch_init): Initialize rl78_psw_type. | |
354 | ||
bbcbf914 PP |
355 | 2015-07-01 Patrick Palka <patrick@parcs.ath.cx> |
356 | ||
357 | * tui/tui-hooks.c (tui_refresh_frame_and_register_information): | |
358 | Update commentary. Always refresh the registers when frame | |
359 | information has changed. | |
360 | * tui/tui-stack.c (tui_show_frame_info): Update commentary. | |
361 | Change return type to int. Return 1 if frame information has | |
362 | changed, 0 otherwise. | |
363 | (tui_before_prompt): Update commentary. | |
364 | * tui/tui-stack.h (tui_show_frame_info): Change return type to | |
365 | int. | |
366 | ||
0986c744 PP |
367 | 2015-06-30 Patrick Palka <patrick@parcs.ath.cx> |
368 | ||
369 | PR tui/13378 | |
370 | * frame.c (select_frame): Remove reference to | |
371 | deprecated_selected_frame_level_changed_hook. | |
372 | * frame.h (deprecated_selected_frame_level_changed_hook): Remove | |
373 | declaration. | |
374 | * stack.c (deprecated_selected_frame_level_changed_hook): | |
375 | Likewise. | |
376 | * tui/tui-hooks.c (tui_selected_frame_level_changed_hook): | |
377 | Rename to ... | |
378 | (tui_refresh_frame_and_register_information): ... this. Bail | |
379 | out if there is no stack. Don't update register information | |
380 | unless registers_too_p is true. | |
381 | (tui_print_frame_info_listing_hook): Rename to ... | |
382 | (tui_dummy_print_frame_info_listing_hook): ... this. | |
383 | (tui_before_prompt): New function. | |
384 | (tui_normal_stop): New function. | |
385 | (tui_before_prompt_observer): New observer. | |
386 | (tui_normal_stop_observer): New observer. | |
387 | (tui_install_hooks): Set | |
388 | deprecated_print_frame_info_listing_hook to | |
389 | tui_dummy_print_frame_info_listing_hook. Register | |
390 | tui_before_prompt_observer to call tui_before_prompt and | |
391 | tui_normal_stop_observer to call tui_normal_stop. Remove | |
392 | reference to deprecated_selected_frame_level_changed_hook. | |
393 | (tui_remove_hooks): Detach and unset tui_before_prompt_observer | |
394 | and tui_normal_stop_observer. Remove reference to | |
395 | deprecated_selected_frame_level_changed_hook. | |
396 | ||
b5fca6d7 PP |
397 | 2015-06-30 Patrick Palka <patrick@parcs.ath.cx> |
398 | ||
399 | PR tui/13378 | |
400 | * tui/tui-stack.c (tui_set_locator_info): Change prototype to | |
401 | return an int instead of void. Return whether the locator | |
402 | window has changed. | |
403 | (tui_show_frame_info): If the locator info has not changed, then | |
404 | bail out early to avoid refreshing the windows. | |
405 | ||
c45613e3 PP |
406 | 2015-06-30 Patrick Palka <patrick@parcs.ath.cx> |
407 | ||
408 | * tui/tui-stack.c (tui_set_locator_info): Explicitly pass | |
409 | LOCATOR_WIN to tui_alloc_content. | |
410 | ||
7b9be803 YQ |
411 | 2015-06-30 Yao Qi <yao.qi@linaro.org> |
412 | ||
413 | PR tdep/18605 | |
414 | * arm-tdep.c (arm_get_next_pc_raw): Break for media | |
415 | instructions. | |
416 | ||
fd6e021d KB |
417 | 2015-06-29 Kevin Buettner <kevinb@redhat.com> |
418 | ||
78ab7e9d KB |
419 | * rx-tdep.c (RX_PSW_REGNUM): New enum constant. |
420 | (rx_dwarf_reg_to_regnum): New function. | |
421 | (rx_gdbarch_init): Register rx_dwarf_reg_to_regnum. Use dwarf2 | |
422 | unwinding. | |
fd6e021d | 423 | |
28bf096c PA |
424 | 2015-06-29 Pedro Alves <palves@redhat.com> |
425 | ||
426 | PR threads/18127 | |
427 | * infcall.c (run_inferior_call): On infcall success, if the thread | |
428 | was marked stopped before, reset it back to stopped. | |
429 | * infrun.c (resume): Don't suppress the set_running calls when | |
430 | doing an infcall. | |
431 | (normal_stop): Only discard the finish_thread_state cleanup if the | |
432 | infcall succeeded. | |
433 | ||
2880b51c | 434 | 2015-06-29 Pierre Langlois <pierre.langlois@arm.com> |
1451ea7d PL |
435 | |
436 | * MAINTAINERS (Write After Approval): Update my email address. | |
437 | ||
ee93cd5e KS |
438 | 2015-06-26 Keith Seitz <keiths@redhat.com> |
439 | Doug Evans <dje@google.com> | |
440 | ||
441 | PR 16253 | |
442 | * block.c (block_lookup_symbol): For non-function blocks, | |
443 | continue to search for a symbol with an exact domain match | |
444 | Otherwise, return any previously found "best domain" symbol. | |
445 | (block_lookup_symbol_primary): Likewise. | |
446 | ||
fc637f04 PP |
447 | 2015-06-26 Patrick Palka <patrick@parcs.ath.cx> |
448 | ||
449 | * NEWS: Mention the new option "history remove-duplicates". | |
450 | * top.c (history_remove_duplicates): New static variable. | |
451 | (show_history_remove_duplicates): New static function. | |
452 | (gdb_add_history): Conditionally remove duplicate history | |
453 | entries. | |
454 | (init_main): Add "history remove-duplicates" option. | |
455 | ||
2e52ae68 PP |
456 | 2015-06-26 Patrick Palka <patrick@parcs.ath.cx> |
457 | ||
458 | * tui/tui-win.c (focus_completer): New static function. | |
459 | (_initialize_tui_win): Set the completion function of the | |
460 | "focus" command to focus_completer. | |
461 | ||
6e22494e JK |
462 | 2015-06-26 Jan Kratochvil <jan.kratochvil@redhat.com> |
463 | ||
464 | * linespec.c (minsym_found): Reset sal.PC for COMPUNIT_LOCATIONS_VALID | |
465 | and language_asm.. | |
466 | * symtab.c (find_function_start_sal): Likewise. | |
467 | ||
f8773be1 GB |
468 | 2015-06-25 Gary Benson <gbenson@redhat.com> |
469 | ||
470 | * solib.c (solib_find_1): Set local variable sysroot to NULL if | |
471 | it is the empty string after trailing slashes have been stripped. | |
472 | ||
a3be80c3 GB |
473 | 2015-06-25 Gary Benson <gbenson@redhat.com> |
474 | ||
475 | * exec.c (exec_file_locate_attach): Remove gdb_sysroot NULL check. | |
476 | * infrun.c (follow_exec): Likewise. | |
477 | * remote.c (remote_filesystem_is_local): Likewise. | |
478 | * solib.c (solib_find_1): Likewise. | |
479 | ||
32fad71f KS |
480 | 2015-06-24 Keith Seitz <keiths@redhat.com> |
481 | ||
482 | * build-id.c (build_id_to_debug_bfd): Add cleanup to free | |
483 | return value from lrealpath. | |
484 | ||
87d1b309 MF |
485 | 2015-06-24 Mike Frysinger <vapier@gentoo.org> |
486 | ||
487 | * remote-sim.c (gdbsim_open): Move sysroot update to the top. | |
488 | ||
23bf70af MF |
489 | 2015-06-24 Mike Frysinger <vapier@gentoo.org> |
490 | ||
491 | * remote-sim.c: Include gdb_bfd.h. | |
492 | (gdbsim_open): Declare new local sysroot pointing to gdb_sysroot. | |
493 | Skip TARGET_SYSROOT_PREFIX in gdb_sysroot when it is active. | |
494 | ||
5cd867b4 YQ |
495 | 2015-06-24 Yao Qi <yao.qi@linaro.org> |
496 | ||
497 | * aarch64-linux-tdep.c (aarch64_linux_init_abi): Don't call | |
498 | set_gdbarch_get_siginfo_type. | |
499 | * amd64-linux-tdep.c (amd64_linux_init_abi_common): Likewise. | |
500 | * arm-linux-tdep.c (arm_linux_init_abi): Likewise. | |
501 | * i386-linux-tdep.c (i386_linux_init_abi): Likewise. | |
502 | * m68klinux-tdep.c (m68k_linux_init_abi): Likewise. | |
503 | * ppc-linux-tdep.c (ppc_linux_init_abi): Likewise. | |
504 | * s390-linux-tdep.c (s390_gdbarch_init): Likewise. | |
505 | * tilegx-linux-tdep.c (tilegx_linux_init_abi): Likewise. | |
506 | * linux-tdep.c (linux_get_siginfo_type): Change it to static. | |
507 | (linux_init_abi): Call set_gdbarch_get_siginfo_type. | |
508 | * linux-tdep.h (linux_get_siginfo_type): Remove the declaration. | |
509 | ||
dc06243f GB |
510 | 2015-06-24 Gary Benson <gbenson@redhat.com> |
511 | ||
512 | * common/buffer.c (stdint.h): Do not include. | |
513 | * common/print-utils.c (stdint.h): Likewise. | |
514 | * compile/compile-c-symbols.c (gdb_assert.h): Likewise. | |
515 | * compile/compile-c-types.c (gdb_assert.h): Likewise. | |
516 | * ft32-tdep.c (gdb_assert.h): Likewise. | |
517 | * guile/scm-utils.c (stdint.h): Likewise. | |
518 | * i386-linux-tdep.c (stdint.h): Likewise. | |
519 | * i386-tdep.c (stdint.h): Likewise. | |
520 | * nat/linux-btrace.c (stdint.h): Likewise. | |
521 | * nat/linux-btrace.h (stdint.h): Likewise. | |
522 | * nat/linux-ptrace.c (stdint.h): Likewise. | |
523 | * nat/mips-linux-watch.h (stdint.h): Likewise. | |
524 | * ppc-linux-nat.c (stdint.h): Likewise. | |
525 | * python/python-internal.h (stdint.h): Likewise. | |
526 | * stub-termcap.c (stdlib.h): Likewise. | |
527 | * target/target.h (stdint.h): Likewise. | |
528 | * xtensa-linux-nat.c (stdint.h): Likewise. | |
529 | ||
0fc26caf PP |
530 | 2015-06-23 Patrick Palka <patrick@parcs.ath.cx> |
531 | ||
532 | * top.c (init_history): Look at errno after calling strtol to | |
533 | properly map large GDBHISTSIZE values to infinity. | |
534 | ||
a38fe4fe DE |
535 | 2015-06-23 Doug Evans <dje@google.com> |
536 | ||
537 | * inferior.h (struct inferior_suspend_state): Delete, unused. | |
538 | All references deleted. | |
539 | ||
7564fe45 MF |
540 | 2015-06-23 Mike Frysinger <vapier@gentoo.org> |
541 | ||
542 | * microblaze-tdep.c (microblaze_push_dummy_code): Delete. | |
543 | (microblaze_push_dummy_call): Likewise. | |
544 | (microblaze_gdbarch_init): Delete calls to set_gdbarch_push_dummy_code | |
545 | and set_gdbarch_push_dummy_call. | |
546 | ||
0bdb2f78 YQ |
547 | 2015-06-23 Yao Qi <yao.qi@linaro.org> |
548 | ||
549 | * amd64-linux-nat.c (amd64_linux_fetch_inferior_registers): | |
550 | Check whether have_ptrace_getregset is TRIBOOL_TRUE explicitly. | |
551 | (amd64_linux_store_inferior_registers): Likewise. | |
552 | * arm-linux-nat.c (fetch_fpregister): Likewise. | |
553 | (fetch_fpregs, store_fpregister): Likewise. | |
554 | (store_fpregister, store_fpregs): Likewise. | |
555 | (fetch_register, fetch_regs): Likewise. | |
556 | (store_register, store_regs): Likewise. | |
557 | (fetch_vfp_regs, store_vfp_regs): Likewise. | |
558 | (arm_linux_read_description): Check have_ptrace_getregset is | |
559 | TRIBOOL_UNKNOWN. Set have_ptrace_getregset to TRIBOOL_TRUE | |
560 | or TRIBOOL_FALSE. | |
561 | * i386-linux-nat.c (fetch_xstateregs): Check | |
562 | have_ptrace_getregset is not TRIBOOL_TRUE. | |
563 | (store_xstateregs): Likewise. | |
564 | * linux-nat.c (have_ptrace_getregset): Change its type to | |
565 | enum tribool. | |
566 | * linux-nat.h (tribool): New enum. | |
567 | * x86-linux-nat.c (x86_linux_read_description): Use enum tribool. | |
568 | Check whether have_ptrace_getregset is TRIBOOL_TRUE. | |
569 | ||
18a94d75 DE |
570 | 2015-06-19 Doug Evans <dje@google.com> |
571 | ||
572 | * NEWS: Mention Sun's version of stabs is no longer supported. | |
573 | * elfread.c (free_elfinfo): Delete. All uses updated. | |
574 | (elfstab_offset_sections): Delete. All uses updated. | |
575 | * gdb-stabs.h (stab_section_info): Delete. All uses updated. | |
576 | * psympriv.h (partial_symtab) <section_offsets>: Delete. | |
577 | All uses updated. | |
578 | * psymtab.c (start_psymtab_common): Delete arg section_offsets. | |
579 | All callers updated. | |
580 | ||
124e13d9 SM |
581 | 2015-06-18 Simon Marchi <simon.marchi@ericsson.com> |
582 | ||
583 | * common/rsp-low.c (needs_escaping): New. | |
584 | (remote_escape_output): Add unit_size parameter. Refactor to | |
585 | support multi-byte addressable units. Rename parameters. | |
586 | * common/rsp-low.h (remote_escape_output): Add unit_size | |
587 | parameter and rename others. Update doc. | |
588 | * remote.c (align_for_efficient_write): New. | |
589 | (remote_write_bytes_aux): Add unit_size parameter and use it. | |
590 | Rename some variables. Update doc. | |
591 | (remote_xfer_partial): Get unit size and use it. | |
592 | (remote_read_bytes_1): Add unit_size parameter and use it. | |
593 | Rename some variables. Update doc. | |
594 | (remote_write_bytes): Same. | |
595 | (remote_xfer_live_readonly_partial): Same. | |
596 | (remote_read_bytes): Same. | |
597 | (remote_flash_write): Update call to remote_write_bytes_aux. | |
598 | (remote_write_qxfer): Update call to remote_escape_output. | |
599 | (remote_search_memory): Same. | |
600 | (remote_hostio_pwrite): Same. | |
601 | ||
6ae88661 LM |
602 | 2015-06-17 Luis Machado <lgustavo@codesourcery.com> |
603 | ||
604 | * breakpoint.c (add_location_to_breakpoint): Don't mark permanent | |
605 | locations as inserted. | |
606 | Update and expand comment about permanent locations. | |
607 | (bp_loc_is_permanent): Don't return 0 for bp_call_dummy. | |
608 | Move comment to add_location_to_breakpoint. | |
609 | (update_global_location_list): Don't error out if a permanent | |
610 | breakpoint is not marked inserted. | |
611 | Don't error out if a non-permanent breakpoint location is inserted on | |
612 | top of a permanent breakpoint. | |
613 | ||
da4616f6 LM |
614 | 2015-06-17 Luis Machado <lgustavo@codesourcery.com> |
615 | ||
616 | * breakpoint.c (make_breakpoint_permanent): Remove unused | |
617 | function. | |
618 | * breakpoint.h (make_breakpoint_permanent): Remove declaration. | |
619 | ||
bc460514 PP |
620 | 2015-06-17 Patrick Palka <patrick@parcs.ath.cx> |
621 | ||
622 | PR gdb/16999 | |
623 | * NEWS: Mention new GDBHISTSIZE behavior. | |
624 | * top.c (init_history): For null or out-of-range GDBHISTSIZE, | |
625 | set history size to unlimited. Ignore non-numeric GDBHISTSIZE. | |
626 | ||
b58c513b PP |
627 | 2015-06-17 Patrick Palka <patrick@parcs.ath.cx> |
628 | ||
629 | * NEWS: Mention that GDBHISTSIZE is read instead of HISTSIZE. | |
630 | * top.c (init_history): Read from GDBHISTSIZE instead of | |
631 | HISTSIZE. | |
632 | (init_main): Refer to GDBHISTSIZE instead of HISTSIZE. | |
633 | ||
2093d2d3 PP |
634 | 2015-06-17 Patrick Palka <patrick@parcs.ath.cx> |
635 | ||
636 | * top.c (gdb_safe_append_history): Do not call | |
637 | history_truncate_file if the history is not stifled. | |
638 | ||
fc248485 AA |
639 | 2015-06-17 Andreas Arnez <arnez@linux.vnet.ibm.com> |
640 | ||
641 | * syscalls/s390-linux.xml: Add syscalls 344 through 354. | |
642 | * syscalls/s390x-linux.xml: Likewise. | |
643 | ||
4da680ad ME |
644 | 2015-06-16 Michael Eager <eager@eagercon.com> |
645 | ||
646 | * nat/linux-namespaces.c (MSG_CMSG_CLOEXEC): Define if not defined. | |
647 | ||
0a75489f PP |
648 | 2015-06-16 Patrick Palka <patrick@parcs.ath.cx> |
649 | ||
650 | * tui/tui-hooks.c (tui_selected_frame_level_changed_hook): Call | |
651 | target_terminal_ours_for_output() before calling | |
652 | tui_show_frame_info(), and restore the original terminal | |
653 | settings afterwards. | |
654 | ||
95855ca8 MS |
655 | 2015-06-16 Martin Simmons <martin@lispworks.com> (tiny patch) |
656 | ||
657 | * arm-linux-nat.c: Include nat/linux-ptrace.h. | |
658 | ||
cfc32360 SM |
659 | 2015-06-15 Simon Marchi <simon.marchi@ericsson.com> |
660 | ||
661 | * mi/mi-main.c (mi_cmd_data_read_memory_bytes): Consider addressable | |
662 | memory unit size. | |
663 | (mi_cmd_data_write_memory_bytes): Same. | |
664 | ||
cb6f16cf SM |
665 | 2015-06-15 Simon Marchi <simon.marchi@ericsson.com> |
666 | ||
667 | * corefile.c (write_memory): Update doc. | |
668 | * gdbcore.h (write_memory): Same. | |
669 | ||
31b7833d JK |
670 | 2015-06-15 Jan Kratochvil <jan.kratochvil@redhat.com> |
671 | ||
672 | * linux-tdep.c (enum filterflags): Make it from anonymous enum. | |
673 | (dump_mapping_p): Use it for parameter filterflags. | |
674 | (linux_find_memory_regions_full): Use it for variable filterflags. | |
675 | ||
909c2cda JK |
676 | 2015-06-15 Aleksandar Ristovski <aristovski@qnx.com |
677 | Jan Kratochvil <jan.kratochvil@redhat.com> | |
678 | ||
679 | Merge multiple hex conversions. | |
680 | * monitor.c: Include rsp-low.h. | |
681 | (fromhex): Remove definition. | |
682 | ||
03aef70f JK |
683 | 2015-06-15 Aleksandar Ristovski <aristovski@qnx.com |
684 | Jan Kratochvil <jan.kratochvil@redhat.com> | |
685 | ||
686 | Move utility functions to common/. | |
687 | * cli/cli-utils.c (skip_spaces, skip_spaces_const, skip_to_space_const): | |
688 | Move defs to common/common-utils.c. | |
689 | * cli/cli-utils.h (skip_spaces, skip_spaces_const, skip_to_space) | |
690 | (skip_to_space_const): Move decls to common/common-utils.h. | |
691 | * common/common-defs.h: Move include of common-types.h before | |
692 | common-utils.h. | |
693 | * common/common-utils.c: Include host-defs.h and ctype.h. | |
694 | (HIGH_BYTE_POSN, is_digit_in_base, digit_to_int, strtoulst): Move | |
695 | from utils.c. | |
696 | (skip_spaces, skip_spaces_const, skip_to_space_const): Move from | |
697 | cli/cli-utils.c. | |
698 | * common/common-utils.h (strtoulst): Move decl from utils.h. | |
699 | (skip_spaces, skip_spaces_const, skip_to_space, skip_to_space_const): | |
700 | Move from cli/cli-utils.h. | |
701 | * common/host-defs.h: Include limits.h. | |
702 | (TARGET_CHAR_BIT, HOST_CHAR_BIT): Moved from defs.h. | |
703 | (skip_spaces, skip_spaces_const): Move decls from cli/cli-utils.h. | |
704 | * defs.h (TARGET_CHAR_BIT, HOST_CHAR_BIT): Move to | |
705 | common/common-utils.h. | |
706 | * utils.c (HIGH_BYTE_POSN, is_digit_in_base, digit_to_int) | |
707 | (strtoulst): Move to common/common-utils.c. | |
708 | * utils.h (strtoulst): Moved decl to common/common-utils.h. | |
709 | ||
d1168cc1 YQ |
710 | 2015-06-15 Yao Qi <yao.qi@linaro.org> |
711 | ||
712 | * data-directory/Makefile.in (SYSCALLS_FILES): Add aarch64-linux.xml. | |
713 | ||
c74f7d1c JT |
714 | 2015-06-10 Jon Turney <jon.turney@dronecode.org.uk> |
715 | ||
716 | * build-id.c: Don't include elf-bfd.h. | |
717 | (build_id_bfd_get): Use bfd_build_id. | |
718 | (build_id_verify): Ditto. | |
719 | * build-id.h: Ditto. | |
720 | (find_separate_debug_file_by_buildid): Ditto. | |
721 | * python/py-objfile.c: Don't include elf-bfd.h. | |
722 | (objfpy_get_build_id) Use bfd_build_id. | |
723 | (objfpy_build_id_matches, objfpy_lookup_objfile_by_build_id): Ditto. | |
724 | * coffread.c: Include build-id.h. | |
725 | (coff_symfile_read): Try find_separate_debug_file_by_buildid. | |
726 | ||
f20c58f5 JT |
727 | 2015-06-03 Jon Turney <jon.turney@dronecode.org.uk> |
728 | ||
729 | * windows-nat.c (do_windows_fetch_inferior_registers) | |
730 | (handle_output_debug_string): Replace __COPY_CONTEXT_SIZE | |
731 | conditional with __CYGWIN__. | |
732 | ||
51f0e40d AB |
733 | 2015-06-13 Andrew Burgess <andrew.burgess@embecosm.com> |
734 | ||
735 | * completer.c: Add arch-utils.h include. | |
736 | (enum reg_completer_targets): New enum. | |
737 | (reg_or_group_completer_1): New function containing old | |
738 | reg_or_group_completer, add and use new parameter to control what | |
739 | is completed on. Use get_current_arch rather than architecture of | |
740 | currently selected frame. | |
741 | (reg_or_group_completer): Call new reg_or_group_completer_1. | |
742 | (reggroup_completer): Call new reg_or_group_completer_1. | |
743 | * completer.h (reggroup_completer): Add declaration. | |
744 | * tui/tui-regs.c: Add 'completer.h' include. | |
745 | (tui_reg_next_command): Renamed to... | |
746 | (tui_reg_next): ...this. Adjust parameters and return rather than | |
747 | display new group. | |
748 | (tui_reg_prev_command): Renamed to... | |
749 | (tui_reg_prev): ...this. Adjust parameters and return rather than | |
750 | display new group. | |
751 | (tui_reg_float_command): Delete. | |
752 | (tui_reg_general_command): Delete. | |
753 | (tui_reg_system_command): Delete. | |
754 | (tui_reg_command): Rewrite to perform switching of register group. | |
755 | Add header comment. | |
756 | (tuireglist): Remove. | |
757 | (tui_reggroup_completer): New function. | |
758 | (_initialize_tui_regs): Remove 'tui reg' sub-commands, update | |
759 | creation of 'tui reg' command. | |
760 | * NEWS: Add comment about 'tui reg' changes. | |
761 | ||
d309493c SM |
762 | 2015-06-12 Simon Marchi <simon.marchi@ericsson.com> |
763 | ||
764 | * target.c (target_read): Consider addressable unit size when | |
765 | reading from a memory object. | |
766 | (read_memory_robust): Same. | |
767 | (read_whatever_is_readable): Same. | |
768 | (target_write_with_progress): Consider addressable unit size | |
769 | when writing to a memory object. | |
770 | * target.h (target_read): Update documentation. | |
771 | (target_write): Add documentation. | |
772 | ||
3374165f SM |
773 | 2015-06-12 Simon Marchi <simon.marchi@ericsson.com> |
774 | ||
775 | * arch-utils.h (default_addressable_memory_unit_size): New. | |
776 | * arch-utils.c (default_addressable_memory_unit_size): New. | |
777 | * gdbarch.sh (addressable_memory_unit_size): New. | |
778 | * gdbarch.h: Re-generate. | |
779 | * gdbarch.c: Re-generate. | |
780 | ||
279a6fed SM |
781 | 2015-06-12 Simon Marchi <simon.marchi@ericsson.com> |
782 | ||
783 | * target.c (target_read): Rename variables and use | |
784 | TARGET_XFER_E_IO. | |
785 | (target_read_with_progress): Same. | |
786 | (read_memory_robust): Constify parameters and rename | |
787 | variables. | |
788 | (read_whatever_is_readable): Constify parameters, | |
789 | rename variables, adjust formatting. | |
790 | * target.h (read_memory_robust): Constify parameters. | |
791 | ||
1e5338b6 | 792 | 2015-06-12 Ulrich Weigand <uweigand@de.ibm.com> |
a1da2672 UW |
793 | |
794 | * ppc-sysv-tdep.c (ppc64_sysv_abi_return_value_base): Handle short | |
795 | synthetic (non-AltiVec) vector types. | |
796 | (ppc64_sysv_abi_return_value): Likewise. | |
797 | ||
98aa42ee AT |
798 | 2015-06-12 Antoine Tremblay <antoine.tremblay@ericsson.com> |
799 | ||
800 | PR breakpoints/16465 | |
801 | * breakpoint.c (create_breakpoint): Save extra_string for | |
802 | pending breakpoints. | |
803 | ||
966f0aef WT |
804 | 2015-06-10 Walfred Tedeschi <walfred.tedeschi@intel.com> |
805 | ||
806 | * i386-tdep.c (i386_mpx_get_bt_entry): Add a cast for mpx_bd_mask | |
807 | and bt_mask to CORE_ADDR. | |
808 | ||
6449ed0d GB |
809 | 2015-06-11 Gary Benson <gbenson@redhat.com> |
810 | ||
811 | * nat/linux-namespaces.c (mnsh_send_message): Use pulongest. | |
812 | (mnsh_recv_message): Likewise. | |
813 | ||
34f8ac9f WT |
814 | 2015-06-11 Walfred Tedeschi <walfred.tedeschi@intel.com> |
815 | ||
816 | * i386-tdep.c (i386_mpx_print_bounds): use of LONGEST instead of | |
817 | long long int and plongest instead of %ll. | |
818 | ||
198c808c GB |
819 | 2015-06-11 Gary Benson <gbenson@redhat.com> |
820 | ||
821 | * nat/linux-namespaces.c (gdb_wait.h): New include. | |
822 | (sys/wait.h): Do not include. | |
823 | ||
e815d2d2 SM |
824 | 2015-06-10 Simon Marchi <simon.marchi@ericsson.com> |
825 | ||
826 | * dwarf2read.c (dwarf_record_line): Call dwarf_record_line if | |
827 | end_sequence is true. | |
828 | ||
8847cac2 JK |
829 | 2015-06-10 Jan Kratochvil <jan.kratochvil@redhat.com> |
830 | ||
831 | Code cleanup. | |
832 | * solib-target.c (library_list_start_list): Use explicit NULL | |
833 | comparison. | |
834 | ||
24c05f46 JK |
835 | 2015-06-10 Jan Kratochvil <jan.kratochvil@redhat.com> |
836 | ||
837 | * solib-target.c (library_list_start_list): Do not dereference | |
838 | variable version in its initialization. Make the VERSION check handle | |
839 | NULL. | |
840 | (library_list_attributes): Make "version" GDB_XML_AF_OPTIONAL. | |
841 | ||
51aad7cc GB |
842 | 2015-06-10 Gary Benson <gbenson@redhat.com> |
843 | ||
844 | * NEWS: Announce support for direct access of executable and | |
845 | shared library files when attaching to inferiors in containers | |
846 | on GNU/Linux systems. | |
847 | ||
15a201c8 GB |
848 | 2015-06-10 Gary Benson <gbenson@redhat.com> |
849 | ||
850 | * remote.c (struct remote_state) <fs_pid>: New field. | |
851 | (new_remote_state): Initialize the above. | |
852 | (PACKET_vFile_setfs): New enum value. | |
853 | (remote_hostio_set_filesystem): New function. | |
854 | (remote_hostio_open): Call the above. | |
855 | (remote_hostio_unlink): Likewise. | |
856 | (remote_hostio_readlink): Likewise. | |
857 | (_initialize_remote): Register new "set/show remote | |
858 | hostio-setfs-packet" command. | |
859 | * NEWS: Announce new vFile:setfs packet. | |
860 | ||
7a6a1731 GB |
861 | 2015-06-10 Gary Benson <gbenson@redhat.com> |
862 | ||
863 | * linux-nat.c (nat/linux-namespaces.h): New include. | |
864 | (fileio.h): Likewise. | |
865 | (linux_nat_filesystem_is_local): New function. | |
866 | (linux_nat_fileio_pid_of): Likewise. | |
867 | (linux_nat_fileio_open): Likewise. | |
868 | (linux_nat_fileio_readlink): Likewise. | |
869 | (linux_nat_fileio_unlink): Likewise. | |
870 | (linux_nat_add_target): Initialize to_filesystem_is_local, | |
871 | to_fileio_open, to_fileio_readlink and to_fileio_unlink. | |
872 | (_initialize_linux_nat): New "set/show debug linux-namespaces" | |
873 | commands. | |
874 | * NEWS: Mention new "set/show debug linux-namespaces" commands. | |
875 | ||
07c138c8 GB |
876 | 2015-06-10 Gary Benson <gbenson@redhat.com> |
877 | ||
878 | * target.h (struct inferior): New forward declaration. | |
879 | (struct target_ops) <to_filesystem_is_local>: Update comment. | |
880 | (struct target_ops) <to_fileio_open>: New argument inf. | |
881 | Update comment. All implementations updated. | |
882 | (struct target_ops) <to_fileio_unlink>: Likewise. | |
883 | (struct target_ops) <to_fileio_readlink>: Likewise. | |
884 | (target_filesystem_is_local): Update comment. | |
885 | (target_fileio_open): New argument inf. Update comment. | |
886 | (target_fileio_unlink): Likewise. | |
887 | (target_fileio_readlink): Likewise. | |
888 | (target_fileio_read_alloc): Likewise. | |
889 | (target_fileio_read_stralloc): Likewise. | |
890 | * target.c (target_fileio_open): New argument inf. | |
891 | Pass inf to implementation. Update debug printing. | |
892 | (target_fileio_unlink): Likewise. | |
893 | (target_fileio_readlink): Likewise. | |
894 | (target_fileio_read_alloc_1): New argument inf. Pass inf | |
895 | to target_fileio_open. | |
896 | (target_fileio_read_alloc): New argument inf. Pass inf to | |
897 | target_fileio_read_alloc_1. | |
898 | (target_fileio_read_stralloc): Likewise. | |
899 | * gdb_bfd.c (inferior.h): New include. | |
900 | (gdb_bfd_iovec_fileio_open): Replace unused "open_closure" | |
901 | argument with new argument "inferior". Pass inferior to | |
902 | target_fileio_open. | |
903 | (gdb_bfd_open): Supply inferior argument to | |
904 | gdb_bfd_iovec_fileio_open. | |
905 | * linux-tdep.c (linux_info_proc): Supply inf argument to | |
906 | relevant target_fileio calls. | |
907 | (linux_find_memory_regions_full): Likewise. | |
908 | (linux_fill_prpsinfo): Likewise. | |
909 | * remote.c (remote_filesystem_is_local): Supply inf | |
910 | argument to remote_hostio_open. | |
911 | (remote_file_put): Likewise. | |
912 | (remote_file_get): Likewise. | |
913 | (remote_file_delete): Supply inf argument to | |
914 | remote_hostio_unlink. | |
915 | ||
12e2a5fd GB |
916 | 2015-06-10 Gary Benson <gbenson@redhat.com> |
917 | ||
918 | * inf-child.c (inf_child_fileio_open): Replace comment. | |
919 | (inf_child_fileio_pwrite): Likewise. | |
920 | (inf_child_fileio_pread): Likewise. | |
921 | (inf_child_fileio_fstat): Insert blank line before comment. | |
922 | (inf_child_fileio_close): Replace comment. | |
923 | (inf_child_fileio_unlink): Likewise. | |
924 | (inf_child_fileio_readlink): Likewise. | |
925 | * remote.c (remote_hostio_open): Likewise. | |
926 | (remote_hostio_pread): Likewise. | |
927 | (remote_hostio_pwrite): Likewise. | |
928 | (remote_hostio_close): Likewise. | |
929 | (remote_hostio_unlink): Likewise. | |
930 | (remote_hostio_readlink): Likewise. | |
931 | (remote_hostio_fstat): Likewise. | |
932 | (remote_filesystem_is_local): Likewise. | |
933 | * target.c (target_fileio_open): Likewise. | |
934 | (target_fileio_pwrite): Likewise. | |
935 | (target_fileio_pread): Likewise. | |
936 | (target_fileio_fstat): Insert blank line before comment. | |
937 | (target_fileio_close): Replace comment. | |
938 | (target_fileio_unlink): Likewise. | |
939 | (target_fileio_readlink): Likewise. | |
940 | (target_fileio_read_alloc): Likewise. | |
941 | (target_fileio_read_stralloc): Likewise. | |
942 | ||
9bc3a976 GB |
943 | 2015-06-10 Gary Benson <gbenson@redhat.com> |
944 | ||
945 | * linux-thread-db.c (nat/linux-namespaces.h): New include. | |
946 | (check_pid_namespace_match): Use linux_ns_same rather than | |
947 | linux_proc_pid_get_ns to spot PID namespace mismatches. | |
948 | * nat/linux-procfs.h (linux_proc_pid_get_ns): Remove. | |
949 | * nat/linux-procfs.c (linux_proc_pid_get_ns): Likewise. | |
950 | ||
4b8b5e72 GB |
951 | 2015-06-10 Gary Benson <gbenson@redhat.com> |
952 | ||
953 | * configure.ac (AC_CHECK_FUNCS): Add setns. | |
954 | * config.in: Regenerate. | |
955 | * configure: Likewise. | |
956 | * nat/linux-namespaces.h: New file. | |
957 | * nat/linux-namespaces.c: Likewise. | |
958 | * Makefile.in (HFILES_NO_SRCDIR): Add nat/linux-namespaces.h. | |
959 | (linux-namespaces.o): New rule. | |
960 | * config/aarch64/linux.mh (NATDEPFILES): Add linux-namespaces.o. | |
961 | * config/alpha/alpha-linux.mh (NATDEPFILES): Likewise. | |
962 | * config/arm/linux.mh (NATDEPFILES): Likewise. | |
963 | * config/i386/linux.mh (NATDEPFILES): Likewise. | |
964 | * config/i386/linux64.mh (NATDEPFILES): Likewise. | |
965 | * config/ia64/linux.mh (NATDEPFILES): Likewise. | |
966 | * config/m32r/linux.mh (NATDEPFILES): Likewise. | |
967 | * config/m68k/linux.mh (NATDEPFILES): Likewise. | |
968 | * config/mips/linux.mh (NATDEPFILES): Likewise. | |
969 | * config/pa/linux.mh (NATDEPFILES): Likewise. | |
970 | * config/powerpc/linux.mh (NATDEPFILES): Likewise. | |
971 | * config/powerpc/ppc64-linux.mh (NATDEPFILES): Likewise. | |
972 | * config/powerpc/spu-linux.mh (NATDEPFILES): Likewise. | |
973 | * config/s390/linux.mh (NATDEPFILES): Likewise. | |
974 | * config/sparc/linux.mh (NATDEPFILES): Likewise. | |
975 | * config/sparc/linux64.mh (NATDEPFILES): Likewise. | |
976 | * config/tilegx/linux.mh (NATDEPFILES): Likewise. | |
977 | * config/xtensa/linux.mh (NATDEPFILES): Likewise. | |
978 | ||
ca095836 GB |
979 | 2015-06-10 Gary Benson <gbenson@redhat.com> |
980 | ||
981 | * utils.h (make_cleanup_close): Moved to common/filestuff.h. | |
982 | * utils.c (do_close_cleanup): Moved to common/filestuff.c. | |
983 | (make_cleanup_close): Likewise. | |
984 | * common/filestuff.h (make_cleanup_close): Moved from utils.h. | |
985 | * common/filestuff.c (do_close_cleanup): Moved from utils.c. | |
986 | (make_cleanup_close): Likewise. | |
987 | ||
5d9c55d3 JT |
988 | 2015-06-03 Jon Turney <jon.turney@dronecode.org.uk> |
989 | ||
990 | * windows-nat.c (thread_rec): Also ignore ERROR_INVALID_HANDLE | |
991 | from SuspendThread(). | |
992 | ||
040ea00b JT |
993 | 2015-06-03 Jon Turney <jon.turney@dronecode.org.uk> |
994 | ||
995 | * windows-nat.c (handle_output_debug_string): Trim trailing '\n' | |
996 | from OutputDebugString. | |
997 | ||
7d73c23c WT |
998 | 2015-06-10 Walfred Tedeschi <walfred.tedeschi@intel.com> |
999 | Mircea Gherzan <mircea.gherzan@intel.com> | |
1000 | ||
1001 | * i386-tdep.c (MPX_BASE_MASK, MPX_BD_MASK, MPX_BT_MASK, MPX_BD_MASK_32, | |
1002 | MPX_BT_MASK_32): New macros. | |
1003 | (i386_mpx_set_bounds): New function that implements | |
1004 | the command "set-mpx-bound". | |
1005 | (i386_mpx_enabled): Helper function to test MPX availability. | |
1006 | (i386_mpx_bd_base): Helper function to calculate the base directory | |
1007 | address. | |
1008 | (i386_mpx_get_bt_entry): Helper function to access a bound | |
1009 | table entry. | |
1010 | (i386_mpx_print_bounds): Effectively display bound information. | |
1011 | (_initialize_i386_tdep): Add new commands to commands "set mpx" and | |
1012 | "show mpx". | |
1013 | (_initialize_i386_tdep): | |
1014 | Add "bound" to the commands "show mpx" and "set mpx" commands. | |
1015 | (mpx_set_cmdlist and mpx_show_cmdlist): List for the new prefixed "set mpx" | |
1016 | and "show mpx" commands. | |
1017 | * NEWS: List new commands for MPX support. | |
1018 | ||
3ac2e371 GB |
1019 | 2015-06-09 Gary Benson <gbenson@redhat.com> |
1020 | ||
1021 | * common/fileio.h (fileio_to_host_mode): New declaration. | |
1022 | * common/fileio.c (fileio_to_host_mode): New Function. | |
1023 | * inf-child.c (inf_child_fileio_open): Process mode argument | |
1024 | with fileio_to_host_mode. | |
1025 | ||
ecef18c5 GB |
1026 | 2015-06-09 Gary Benson <gbenson@redhat.com> |
1027 | ||
1028 | * common/fileio.c (fileio_mode_pack): Fix preprocessor | |
1029 | conditional. | |
1030 | ||
e3dd7556 GB |
1031 | 2015-06-05 Gary Benson <gbenson@redhat.com> |
1032 | ||
1033 | * gdb_bfd.c (gdb_bfd_open): Move vgdb special case to... | |
1034 | * remote.c (remote_filesystem_is_local): ...here. | |
1035 | ||
5b74bf7d YQ |
1036 | 2015-06-04 Yao Qi <yao.qi@linaro.org> |
1037 | ||
1038 | * gdbarch.c: Regenerate it. | |
1039 | ||
7f361056 JK |
1040 | 2015-06-03 Jan Kratochvil <jan.kratochvil@redhat.com> |
1041 | ||
1042 | * arch-utils.c (default_infcall_munmap): New. | |
1043 | * arch-utils.h (default_infcall_munmap): New declaration. | |
1044 | * compile/compile-object-load.c (struct munmap_list, munmap_list_add) | |
1045 | (munmap_list_free, munmap_listp_free_cleanup): New. | |
1046 | (struct setup_sections_data): Add field munmap_list_headp. | |
1047 | (setup_sections): Call munmap_list_add. | |
1048 | (compile_object_load): New variable munmap_list_head, initialize | |
1049 | setup_sections_data.munmap_list_headp, return munmap_list_head. | |
1050 | * compile/compile-object-load.h (struct munmap_list): New declaration. | |
1051 | (struct compile_module): Add field munmap_list_head. | |
1052 | (munmap_list_free): New declaration. | |
1053 | * compile/compile-object-run.c (struct do_module_cleanup): Add field | |
1054 | munmap_list_head. | |
1055 | (do_module_cleanup): Call munmap_list_free. | |
1056 | (compile_object_run): Pass munmap_list_head to do_module_cleanup. | |
1057 | * gdbarch.c: Regenerate. | |
1058 | * gdbarch.h: Regenerate. | |
1059 | * gdbarch.sh (infcall_munmap): New. | |
1060 | * linux-tdep.c (linux_infcall_munmap): New. | |
1061 | (linux_init_abi): Install it. | |
1062 | ||
3b462ec2 SM |
1063 | 2015-06-02 Simon Marchi <simon.marchi@ericsson.com> |
1064 | ||
1065 | PR gdb/15564 | |
1066 | * inferior.c (detach_inferior): Call exit_inferior_1 with silent = 0. | |
1067 | ||
8d683210 YQ |
1068 | 2015-06-02 Yao Qi <yao.qi@linaro.org> |
1069 | ||
1070 | * i386-linux-nat.c: Include linux-nat.h. | |
1071 | ||
e0619de6 JK |
1072 | 2015-06-01 Andreas Schwab <schwab@linux-m68k.org> |
1073 | Jan Kratochvil <jan.kratochvil@redhat.com> | |
1074 | ||
1075 | PR symtab/18392 | |
1076 | * dwarf2-frame-tailcall.c (pretended_chain_levels): Correct | |
1077 | assertion. | |
1078 | * dwarf2loc.c (chain_candidate): Likewise. | |
1079 | ||
bd16da51 YQ |
1080 | 2015-06-01 Yao Qi <yao.qi@linaro.org> |
1081 | ||
1082 | * arm-linux-nat.c (fetch_vfp_regs): Use PTRACE_GETREGSET. | |
1083 | (store_vfp_regs): Use PTRACE_SETREGSET. | |
1084 | ||
df9d7ec9 YQ |
1085 | 2015-06-01 Yao Qi <yao.qi@linaro.org> |
1086 | ||
1087 | * arm-linux-nat.c (fetch_fpregister): Use PTRACE_GETREGSET. | |
1088 | (fetch_fpregs): Likewise. | |
1089 | * arm-linux-nat.c (store_fpregister): Use PTRACE_SETREGSET. | |
1090 | (store_fpregs): Likewise. | |
1091 | ||
10766686 YQ |
1092 | 2015-06-01 Yao Qi <yao.qi@linaro.org> |
1093 | ||
1094 | * arm-linux-nat.c (fetch_register): Use PTRACE_GETREGSET. | |
1095 | (fetch_regs): Likewise. | |
1096 | (store_regs): Use PTRACE_SETREGSET. | |
1097 | (store_register): Likewise. | |
1098 | ||
7efe48d1 YQ |
1099 | 2015-06-01 Yao Qi <yao.qi@linaro.org> |
1100 | ||
1101 | * arm-linux-nat.c (arm_linux_read_description): Check whether | |
1102 | kernel supports PTRACE_GETREGSET. | |
1103 | ||
433bbbf8 YQ |
1104 | 2015-06-01 Yao Qi <yao.qi@linaro.org> |
1105 | ||
1106 | * x86-linux-nat.c (have_ptrace_getregset): Move it to ... | |
1107 | * linux-nat.c: ... here. | |
1108 | * x86-linux-nat.h (have_ptrace_getregset): Move the declaration | |
1109 | to ... | |
1110 | * linux-nat.h: ... here. | |
1111 | ||
ca9b78ce YQ |
1112 | 2015-06-01 Yao Qi <yao.qi@linaro.org> |
1113 | ||
1114 | * amd64-linux-nat.c: Include "nat/linux-ptrace.h". | |
1115 | * i386-linux-nat.c: Likewise. | |
1116 | * nat/linux-ptrace.h (PTRACE_GETREGSET, PTRACE_SETREGSET): Define. | |
1117 | * s390-linux-nat.c: Include "nat/linux-ptrace.h". | |
1118 | (PTRACE_GETREGSET, PTRACE_SETREGSET): Remove. | |
1119 | * x86-linux-nat.c: Include "nat/linux-ptrace.h". | |
1120 | * x86-linux-nat.h (PTRACE_GETREGSET, PTRACE_SETREGSET): Remove. | |
1121 | ||
99cee7b7 EZ |
1122 | 2015-05-30 Eli Zaretskii <eliz@gnu.org> |
1123 | ||
1124 | * go32-nat.c (go32_xfer_memory): Fix the return value to be | |
1125 | compatible to what read_child and write_child return. This | |
1126 | unbreaks that DJGPP build of GDB which was broken since v7.7. | |
1127 | ||
2147f5bd MG |
1128 | 2015-05-29 Martin Galvan <martin.galvan@tallertechnologies.com> |
1129 | ||
1130 | * MAINTAINERS (Write After Approval): Add Martin Galvan. | |
1131 | ||
c8f6c93c RM |
1132 | 2015-05-29 Roland McGrath <mcgrathr@google.com> |
1133 | ||
1134 | PR gdb/18464 | |
1135 | * osabi.c (generic_elf_osabi_sniff_abi_tag_sections): Use warning | |
1136 | rather than internal_error for an unrecognized value. | |
1137 | ||
8c6a948d MF |
1138 | 2015-05-29 Max Filippov <jcmvbkbc@gmail.com> |
1139 | ||
1140 | * xtensa-tdep.c (xtensa_pseudo_register_read) | |
1141 | (xtensa_pseudo_register_write): Don't alias last pseudo register | |
1142 | to a1. | |
1143 | ||
8dd06f7a DB |
1144 | 2015-05-28 Don Breazeal <donb@codesourcery.com> |
1145 | ||
1146 | * infrun.c (follow_fork_inferior): Ensure the use of | |
1147 | process-style ptids (pid,0,0) in verbose/debug "Detaching" | |
1148 | messages. | |
1149 | ||
a051152b DE |
1150 | 2015-05-28 Doug Evans <dje@google.com> |
1151 | ||
1152 | * dwarf2read.c (record_line_ftype): Remove, duplicate. | |
1153 | ||
a56cc1ce YQ |
1154 | 2015-05-28 Yao Qi <yao.qi@linaro.org> |
1155 | ||
1156 | * arm-linux-nat.c (arm_linux_has_wmmx_registers): Remove. | |
1157 | (arm_linux_fetch_inferior_registers): Use | |
1158 | tdep->have_wmmx_registers instead of arm_linux_has_wmmx_registers. | |
1159 | (arm_linux_store_inferior_registers): Likewise. | |
1160 | (arm_linux_read_description): Don't set | |
1161 | arm_linux_has_wmmx_registers. | |
1162 | * arm-tdep.c (arm_gdbarch_init): Set | |
1163 | tdep->have_wmmx_registers according target descriptions. | |
1164 | * arm-tdep.h (struct gdbarch_tdep) <have_wmmx_registers>: New | |
1165 | field. | |
1166 | ||
330c6ca9 YQ |
1167 | 2015-05-28 Yao Qi <yao.qi@linaro.org> |
1168 | ||
1169 | * arm-linux-nat.c (arm_linux_vfp_register_count): Remove. | |
1170 | (fetch_vfp_regs): Use vfp_register_count from gdbarch_tdep | |
1171 | instead of arm_linux_vfp_register_count. | |
1172 | (store_vfp_regs): Likewise. | |
1173 | (arm_linux_fetch_inferior_registers): Likewise. | |
1174 | (arm_linux_store_inferior_registers): Likewise. | |
1175 | (arm_linux_read_description): Don't set | |
1176 | arm_linux_vfp_register_count. | |
1177 | * arm-linux-tdep.c (arm_linux_iterate_over_regset_sections): | |
1178 | Adjust. | |
1179 | * arm-tdep.c (arm_gdbarch_init): Add assert on | |
1180 | vfp_register_count. | |
1181 | * arm-tdep.h (struct gdbarch_tdep) <have_vfp_registers>: Rename | |
1182 | field to vfp_register_count. All users updated. | |
1183 | ||
d403db27 KH |
1184 | 2015-05-28 Kyle Huey <me@kylehuey.com> (tiny patch) |
1185 | ||
1186 | * gdb/arm-tdep.c (arm_gdbarch_init): Perform arm_abi detection on | |
1187 | ELFOSABI_GNU binaries. | |
1188 | ||
d9b3de22 DE |
1189 | 2015-05-27 Doug Evans <dje@google.com> |
1190 | ||
1191 | * dwarf2read.c (lnp_state_machine): New typedef. | |
1192 | (lnp_reader_state): New typedef. | |
1193 | (dwarf_record_line_1): Renamed from dwarf_record_line. | |
1194 | All callers updated. | |
1195 | (dwarf_record_line): New function. | |
1196 | (init_lnp_state_machine): New function. | |
1197 | (check_line_address): Replace p_record_line parameter with state. | |
1198 | All callers updated. | |
1199 | (dwarf_decode_lines_1): Call dwarf_record_line, init_lnp_state_machine. | |
1200 | Update to record state in lnp_state_machine. | |
1201 | ||
924c2928 DE |
1202 | 2015-05-27 Doug Evans <dje@google.com> |
1203 | ||
1204 | * dwarf2read.c (record_line_ftype): New typedef. | |
1205 | (check_line_address): New function. | |
1206 | (dwarf_decode_lines_1): Call it. | |
1207 | ||
27e0867f DE |
1208 | 2015-05-27 Doug Evans <dje@google.com> |
1209 | ||
1210 | * NEWS: Mention "set debug dwarf-line". | |
1211 | * dwarf2read.c (dwarf_line_debug): New static global. | |
1212 | (add_include_dir): Add debug dwarf-line support. | |
1213 | (add_file_name, dwarf_record_line, dwarf_finish_line): Ditto. | |
1214 | (_initialize_dwarf2_read): New parameter "debug dwarf-line". | |
1215 | ||
4dcabcc2 DE |
1216 | 2015-05-27 Doug Evans <dje@google.com> |
1217 | ||
1218 | * cp-namespace.c (cp_lookup_nested_symbol): New arg "domain". | |
1219 | All callers updated. | |
1220 | (cp_lookup_nested_symbol_1, find_symbol_in_baseclass): Ditto. | |
1221 | * cp-support.h (cp_lookup_nested_symbol): Update. | |
1222 | ||
b2e2f908 DE |
1223 | 2015-05-27 Doug Evans <dje@google.com> |
1224 | ||
1225 | PR symtab/18258 | |
1226 | * block.c (block_find_symbol): New function. | |
1227 | (block_find_non_opaque_type): Ditto. | |
1228 | (block_find_non_opaque_type_preferred): Ditto. | |
1229 | * block.h (block_symbol_matcher_ftype): New typedef. | |
1230 | (block_find_symbol): Declare. | |
1231 | (block_find_non_opaque_type): Ditto. | |
1232 | (block_find_non_opaque_type_preferred): Ditto. | |
1233 | * dwarf2read.c (dw2_lookup_symbol): Call block_find_symbol. | |
1234 | * psymtab.c (psym_lookup_symbol): Ditto. | |
1235 | * symtab.c (basic_lookup_transparent_type_1): New function. | |
1236 | (basic_lookup_transparent_type): Call it. | |
1237 | ||
f62fce35 YQ |
1238 | 2015-05-27 Yao Qi <yao.qi@linaro.org> |
1239 | ||
1240 | * aarch64-tdep.c (aarch64_record_data_proc_simd_fp): Return | |
1241 | AARCH64_RECORD_UNKNOWN for unknown instruction encoding. | |
1242 | ||
5d98d3cd YQ |
1243 | 2015-05-27 Yao Qi <yao.qi@linaro.org> |
1244 | ||
1245 | * aarch64-tdep.c (aarch64_record_branch_except_sys): Split lines | |
1246 | before operator &&. | |
1247 | (aarch64_record_load_store): Likewise. | |
1248 | ||
82c7be31 DE |
1249 | 2015-05-26 Doug Evans <dje@google.com> |
1250 | ||
1251 | PR c++/18141, c++/18417. | |
1252 | * cp-support.c (cp_lookup_rtti_type): Handle the case of NAME being | |
1253 | a typedef. | |
1254 | ||
b4f54984 DE |
1255 | 2015-05-26 Doug Evans <dje@google.com> |
1256 | ||
1257 | * NEWS: Add entries for command renamings. | |
1258 | * dwarf2read.c (dwarf_read_debug): Renamed from dwarf2_read_debug. | |
1259 | All uses updated. | |
1260 | (dwarf_die_debug): Renamed from dwarf2_die_debug. All uses updated. | |
1261 | (dwarf_max_cache_age): Renamed from dwarf2_max_cache_age. | |
1262 | All uses updated. | |
1263 | (show_dwarf_max_cache_age): Renamed from show_dwarf2_max_cache_age. | |
1264 | All callers updated. Fix spelling of DWARF in help text. | |
1265 | (set_dwarf_cmdlist): Renamed from set_dwarf2_cmdlist. | |
1266 | All uses updated. | |
1267 | (show_dwarf_cmdlist): Renamed from show_dwarf2_cmdlist. | |
1268 | All uses updated. | |
1269 | (set_dwarf_cmd): Renamed from set_dwarf2_cmd. All callers updated. | |
1270 | (show_dwarf_cmd): Renamed from show_dwarf2_cmd. All callers updated. | |
1271 | (dwarf_always_disassemble): Renamed from dwarf_always_disassemble. | |
1272 | All uses updated. | |
1273 | (show_dwarf_always_disassemble): Renamed from | |
1274 | show_dwarf2_always_disassemble. All callers updated. | |
1275 | (_initialize_dwarf2_read): Rename "set/show dwarf2" prefix to | |
1276 | "set/show dwarf". Rename "set/show dwarf2 max-cache-age" to | |
1277 | "set/show dwarf max-cache-age". Rename | |
1278 | "set/show dwarf2 always-disassemble" to | |
1279 | "set/show dwarf always-disassemble". Rename | |
1280 | "set/show debug dwarf2-read" to "set/show debug dwarf-read". Rename | |
1281 | "set/show debug dwarf2-die" to "set/show debug dwarf-die". | |
1282 | ||
4ea6efe9 DE |
1283 | 2015-05-26 Doug Evans <dje@google.com> |
1284 | ||
1285 | PR python/18438 | |
1286 | * python/py-lazy-string.c (stpy_convert_to_value): Use | |
1287 | gdbpy_gdb_memory_error not PyExc_MemoryError. | |
1288 | (gdbpy_create_lazy_string_object): Ditto. | |
1289 | ||
b93fd21d AB |
1290 | 2015-05-26 Andrew Burgess <andrew.burgess@embecosm.com> |
1291 | ||
1292 | * tui/tui-regs.c (tui_reg_next_command): Compare against NULL. | |
1293 | ||
55b40027 AB |
1294 | 2015-05-26 Andrew Burgess <andrew.burgess@embecosm.com> |
1295 | ||
1296 | * tui/tui-regs.c (tui_reg_prev_command): New function. | |
1297 | (_initialize_tui_regs): Add 'prev' command for 'tui reg'. | |
1298 | * reggroups.c (reggroup_prev): New function. | |
1299 | * reggroups.h (reggroup_prev): Add declaration. Update comment. | |
1300 | ||
99afc88b OJ |
1301 | 2015-05-26 Omair Javaid <omair.javaid@linaro.org> |
1302 | Yao Qi <yao.qi@linaro.org> | |
1303 | ||
1304 | * aarch64-linux-tdep.c: Include linux-record.h and | |
1305 | record-full.h. | |
1306 | (struct linux_record_tdep aarch64_linux_record_tdep): Declare. | |
1307 | (aarch64_syscall): New enum. | |
1308 | (aarch64_canonicalize_syscall): New function. | |
1309 | (aarch64_all_but_pc_registers_record): New function. | |
1310 | (aarch64_linux_syscall_record): New function. | |
1311 | (aarch64_linux_init_abi): Install AArch64 process record | |
1312 | handler. Update to handle syscall recording. | |
1313 | * aarch64-tdep.c: Include record.h and record-full.h. | |
1314 | (submask, bit, bits, REG_ALLOC, MEM_ALLOC): New macros. | |
1315 | (struct aarch64_mem_r): Define. | |
1316 | (aarch64_record_result): New enum. | |
1317 | (struct insn_decode_record): Define. | |
1318 | (insn_decode_record): New typedef. | |
1319 | (aarch64_record_data_proc_reg): New function. | |
1320 | (aarch64_record_data_proc_imm): New function. | |
1321 | (aarch64_record_branch_except_sys): New function. | |
1322 | (aarch64_record_load_store): New function. | |
1323 | (aarch64_record_data_proc_simd_fp): New function. | |
1324 | (aarch64_record_asimd_load_store): New function. | |
1325 | (aarch64_record_decode_insn_handler): New function. | |
1326 | (deallocate_reg_mem): New function. | |
1327 | (aarch64_process_record): New function. | |
1328 | * aarch64-tdep.h (struct gdbarch_tdep) <aarch64_syscall_record>: | |
1329 | New field. | |
1330 | (aarch64_process_record): New extern declaration. | |
1331 | * configure.tgt: Add linux-record.o to gdb_target_obs. | |
1332 | * linux-record.h (struct linux_record_tdep) <arg7>: New field. | |
1333 | ||
c16a3f52 OJ |
1334 | 2015-05-26 Omair Javaid <omair.javaid@linaro.org> |
1335 | ||
1336 | * NEWS: Add a note on process record-replay support on aarch64*-linux* | |
1337 | targets. | |
1338 | ||
c9cf6e20 MG |
1339 | 2015-05-26 Martin Galvan <martin.galvan@tallertechnologies.com> |
1340 | ||
1341 | * amd64-tdep.c: Replace in_function_epilogue_p with | |
1342 | stack_frame_destroyed_p throughout. | |
1343 | * arch-utils.c: Ditto. | |
1344 | * arch-utils.h: Ditto. | |
1345 | * arm-tdep.c: Ditto. | |
1346 | * breakpoint.c: Ditto. | |
1347 | * gdbarch.sh: Ditto. | |
1348 | * hppa-tdep.c: Ditto. | |
1349 | * i386-tdep.c: Ditto. | |
1350 | * mips-tdep.c: Ditto. | |
1351 | * nios2-tdep.c: Ditto. | |
1352 | * rs6000-tdep.c: Ditto. | |
1353 | * s390-linux-tdep.c: Ditto. | |
1354 | * score-tdep.c: Ditto. | |
1355 | * sh-tdep.c: Ditto. | |
1356 | * sparc-tdep.c: Ditto. | |
1357 | * sparc-tdep.h: Ditto. | |
1358 | * sparc64-tdep.c: Ditto. | |
1359 | * spu-tdep.c: Ditto. | |
1360 | * tic6x-tdep.c: Ditto. | |
1361 | * tilegx-tdep.c: Ditto. | |
1362 | * xstormy16-tdep.c: Ditto. | |
1363 | * gdbarch.c, gdbarch.h: Re-generated. | |
1364 | ||
a4ea0946 AB |
1365 | 2015-05-22 Andrew Burgess <andrew.burgess@embecosm.com> |
1366 | ||
1367 | * NEWS: Mention 'tui enable' and 'tui disable'. | |
1368 | * tui/tui.c (tui_enable_command): New function. | |
1369 | (tui_disable_command): New function. | |
1370 | (_initialize_tui): New function. | |
1371 | ||
b75c69bb AB |
1372 | 2015-05-21 Andrew Burgess <andrew.burgess@embecosm.com> |
1373 | ||
1374 | * tui/tui-regs.c (tui_reg_next_command): Use NULL not 0. | |
1375 | ||
c1b009ee AB |
1376 | 2015-05-21 Andrew Burgess <andrew.burgess@embecosm.com> |
1377 | ||
1378 | * tui/tui-layout.c (tui_set_layout_for_display_command): Ensure | |
1379 | buf_ptr is freed. | |
1380 | ||
880d1e40 AB |
1381 | 2015-05-21 Andrew Burgess <andrew.burgess@embecosm.com> |
1382 | ||
1383 | * tui/tui-layout.c (tui_layout_command): Move call to tui_enable | |
1384 | into ... | |
1385 | (tui_set_layout_for_display_command): ...here, before calling | |
1386 | tui_set_layout. Only set the layout if gdb has not already | |
1387 | entered the TUI_FAILURE state. | |
1388 | ||
a0145030 AB |
1389 | 2015-05-21 Andrew Burgess <andrew.burgess@embecosm.com> |
1390 | ||
1391 | * tui/tui-layout.c (layout_completer): New function. | |
1392 | (_initialize_tui_layout): Set completer on layout command. | |
1393 | ||
7bd0be3a AB |
1394 | 2015-05-21 Andrew Burgess <andrew.burgess@embecosm.com> |
1395 | ||
1396 | * tui/tui-layout.c (tui_set_layout): Remove | |
1397 | tui_register_display_type parameter. Remove all checking of this | |
1398 | parameter, and reindent function. Update header comment. | |
1399 | (tui_set_layout_for_display_command): Rename to... | |
1400 | (tui_set_layout_by_name): ...this, and don't check for different | |
1401 | register class types, don't pass a tui_register_display_type to | |
1402 | tui_set_layout. Update header comment. | |
1403 | (layout_names): Remove register set specific names. | |
1404 | * tui/tui-layout.h (tui_set_layout): Remove | |
1405 | tui_register_display_type parameter. | |
1406 | * tui/tui.c (tui_rl_change_windows): Don't pass a | |
1407 | tui_register_display_type to tui_set_layout. | |
1408 | (tui_rl_delete_other_windows): Likewise. | |
1409 | (tui_enable): Likewise. | |
1410 | * tui/tui-data.h (TUI_FLOAT_REGS_NAME): Remove. | |
1411 | (TUI_FLOAT_REGS_NAME_LOWER): Remove. | |
1412 | (TUI_GENERAL_REGS_NAME): Remove. | |
1413 | (TUI_GENERAL_REGS_NAME_LOWER): Remove. | |
1414 | (TUI_SPECIAL_REGS_NAME): Remove. | |
1415 | (TUI_SPECIAL_REGS_NAME_LOWER): Remove. | |
1416 | (TUI_GENERAL_SPECIAL_REGS_NAME): Remove. | |
1417 | (TUI_GENERAL_SPECIAL_REGS_NAME_LOWER): Remove. | |
1418 | (enum tui_register_display_type): Remove. | |
1419 | (struct tui_layout_def): Remove regs_display_type and | |
1420 | float_regs_display_type fields. | |
1421 | (struct tui_data_info): Remove regs_display_type field. | |
1422 | (tui_layout_command): Use new name for | |
1423 | tui_set_layout_for_display_command. | |
1424 | * tui/tui-data.c (layout_def): Don't initialise removed fields. | |
1425 | (tui_clear_win_detail): Don't initialise removed fields of | |
1426 | win_info. | |
1427 | * tui/tui-regs.c (tui_show_registers): Use new name for | |
1428 | tui_set_layout_for_display_command. | |
1429 | * tui/tui.h (tui_set_layout_for_display_command): Rename | |
1430 | declaration to... | |
1431 | (tui_set_layout_by_name): ...this. | |
1432 | * printcmd.c (display_command): Remove tui related layout call, | |
1433 | and reindent. | |
1434 | ||
0b6e5e10 JB |
1435 | 2015-05-20 Joel Brobecker <brobecker@adacore.com> |
1436 | ||
1437 | * infrun.c (handle_inferior_event_1): Renames handle_inferior_event. | |
1438 | (handle_inferior_event): New function. | |
1439 | ||
1da0522e JB |
1440 | 2015-05-20 Joel Brobecker <brobecker@adacore.com> |
1441 | ||
1442 | * ada-lang.c (to_fixed_array_type): Rename local variable | |
1443 | typename into type_name. | |
1444 | ||
5fe75eec JK |
1445 | 2015-05-19 Jan Kratochvil <jan.kratochvil@redhat.com> |
1446 | ||
1447 | Fix ASAN crash for gdb.compile/compile.exp. | |
1448 | * infcall.c (call_function_by_hand_dummy): Use xstrdup for NAME. | |
1449 | ||
a4063588 JK |
1450 | 2015-05-19 Jan Kratochvil <jan.kratochvil@redhat.com> |
1451 | ||
1452 | * compile/compile-c-symbols.c (convert_symbol_sym, gcc_convert_symbol) | |
1453 | (gcc_symbol_address): Change gdb_stdout to gdb_stdlog. | |
1454 | * compile/compile-object-load.c (setup_sections, compile_object_load): | |
1455 | Likewise. | |
1456 | * compile/compile.c (compile_to_object): Likewise. | |
1457 | ||
37442ce1 DE |
1458 | 2015-05-16 Doug Evans <xdje42@gmail.com> |
1459 | ||
1460 | * NEWS: Mention support for unbuffered Guile memory ports. | |
1461 | * scm-ports.c (ioscm_memory_port): Update comments on end, size. | |
1462 | (ioscm_lseek_address): Improve overflow calculation. | |
1463 | (gdbscm_memory_port_fill_input): Add assert. | |
1464 | (gdbscm_memory_port_write): Handle unbuffered ports. | |
1465 | Handle large writes identical to Guile's fport_write. | |
1466 | (gdbscm_memory_port_seek): Fix seeking past end check. | |
1467 | (gdbscm_memory_port_close): Handle closing unbuffered port. | |
1468 | (ioscm_parse_mode_bits): Recognize "0" for unbuffered ports. | |
1469 | (ioscm_init_memory_port): Handle unbuffered ports. | |
1470 | (ioscm_reinit_memory_port): Ditto. | |
1471 | (ioscm_init_memory_port): Update size calculation. | |
1472 | (gdbscm_open_memory): Support zero sized ports. | |
1473 | ||
d976bace JK |
1474 | 2015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com> |
1475 | ||
1476 | * compile/compile-object-load.c (get_out_value_type): Fix uninitialized | |
1477 | variable compiler warnings. | |
1478 | ||
4d18dfad JK |
1479 | 2015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com> |
1480 | ||
1481 | * compile/compile-object-load.c (get_out_value_type): Fix returned type. | |
1482 | ||
36de76f9 JK |
1483 | 2015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com> |
1484 | Phil Muldoon <pmuldoon@redhat.com> | |
1485 | ||
1486 | * NEWS (Changes since GDB 7.9): Add compile print. | |
1487 | * compile/compile-c-support.c (add_code_header, add_code_footer) | |
1488 | (c_compute_program): Add COMPILE_I_PRINT_ADDRESS_SCOPE and | |
1489 | COMPILE_I_PRINT_VALUE_SCOPE. | |
1490 | * compile/compile-internal.h (COMPILE_I_PRINT_OUT_ARG_TYPE) | |
1491 | (COMPILE_I_PRINT_OUT_ARG, COMPILE_I_EXPR_VAL, COMPILE_I_EXPR_PTR_TYPE): | |
1492 | New. | |
1493 | * compile/compile-object-load.c: Include block.h. | |
1494 | (get_out_value_type): New function. | |
1495 | (compile_object_load): Handle COMPILE_I_PRINT_ADDRESS_SCOPE and | |
1496 | COMPILE_I_PRINT_VALUE_SCOPE. Set compile_module's OUT_VALUE_ADDR and | |
1497 | OUT_VALUE_TYPE. | |
1498 | * compile/compile-object-load.h (struct compile_module): Add fields | |
1499 | out_value_addr and out_value_type. | |
1500 | * compile/compile-object-run.c: Include valprint.h and compile.h. | |
1501 | (struct do_module_cleanup): Add fields out_value_addr and | |
1502 | out_value_type. | |
1503 | (do_module_cleanup): Handle COMPILE_I_PRINT_ADDRESS_SCOPE and | |
1504 | COMPILE_I_PRINT_VALUE_SCOPE. | |
1505 | (compile_object_run): Propagate out_value_addr and out_value_type. | |
1506 | Pass OUT_VALUE_ADDR. | |
1507 | * compile/compile.c: Include valprint.h. | |
1508 | (compile_print_value, compile_print_command): New functions. | |
1509 | (eval_compile_command): Handle failed COMPILE_I_PRINT_ADDRESS_SCOPE. | |
1510 | (_initialize_compile): Update compile code help text. Install | |
1511 | compile_print_command. | |
1512 | * compile/compile.h (compile_print_value): New prototype. | |
1513 | * defs.h (enum compile_i_scope_types): Add | |
1514 | COMPILE_I_PRINT_ADDRESS_SCOPE and COMPILE_I_PRINT_VALUE_SCOPE. | |
1515 | ||
83d3415e JK |
1516 | 2015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com> |
1517 | ||
1518 | * compile/compile-object-load.c (get_regs_type): Add parameter func_sym. | |
1519 | Rely on its parameter count. | |
1520 | (compile_object_load): Replace lookup_minimal_symbol_text by | |
1521 | lookup_global_symbol_from_objfile. Verify FUNC_SYM. Set it in the | |
1522 | return value. | |
1523 | * compile/compile-object-load.h (struct compile_module): Replace | |
1524 | func_addr by func_sym. | |
1525 | * compile/compile-object-run.c: Include block.h. | |
1526 | (compile_object_run): Reset module variable after it is freed. Use | |
1527 | FUNC_SYM instead of FUNC_ADDR. Rely on it. | |
1528 | ||
3a9558c4 JK |
1529 | 2015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com> |
1530 | ||
1531 | * compile/compile-c-support.c (print_one_macro): Use #ifndef. | |
1532 | (generate_register_struct): Use __gdb_uintptr for TYPE_CODE_PTR. | |
1533 | (c_compute_program): Call generate_register_struct after typedefs. | |
1534 | * compile/compile-loc2c.c (push, pushf_register_address) | |
1535 | (pushf_register): Cast to GCC_UINTPTR. | |
1536 | (do_compile_dwarf_expr_to_c): Use unused attribute. Add space after | |
1537 | type. Use GCC_UINTPTR instead of void *. Remove excessive cast. | |
1538 | (compile_dwarf_expr_to_c): Use GCC_UINTPTR instead of void *. | |
1539 | * compile/compile.c (_initialize_compile): Enable warnings for | |
1540 | COMPILE_ARGS. | |
1541 | ||
5c65b58a JK |
1542 | 2015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com> |
1543 | ||
1544 | * cli/cli-script.c (execute_control_command): Update | |
1545 | eval_compile_command caller. | |
1546 | * compile/compile-object-load.c (compile_object_load): Add parameters | |
1547 | scope and scope_data. Set them. | |
1548 | * compile/compile-object-load.h (struct compile_module): Add fields | |
1549 | scope and scope_data. | |
1550 | (compile_object_load): Add parameters scope and scope_data. | |
1551 | * compile/compile-object-run.c (struct do_module_cleanup): Add fields | |
1552 | scope and scope_data. | |
1553 | (compile_object_run): Propagate the fields scope and scope_data. | |
1554 | * compile/compile.c (compile_file_command, compile_code_command): | |
1555 | Update eval_compile_command callers. | |
1556 | (eval_compile_command): Add parameter scope_data. Pass it plus scope. | |
1557 | * compile/compile.h (eval_compile_command): Add parameter scope_data. | |
1558 | * defs.h (struct command_line): Add field scope_data. | |
1559 | ||
1c88ceb1 JK |
1560 | 2015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com> |
1561 | ||
1562 | * printcmd.c (struct format_data): Move it to valprint.h. | |
1563 | (print_command_parse_format, print_value): New functions from ... | |
1564 | (print_command_1): ... here. Call them. | |
1565 | * valprint.h (struct format_data): Move it here from printcmd.c. | |
1566 | (print_command_parse_format, print_value): New declarations. | |
1567 | ||
0b738f27 JK |
1568 | 2015-05-16 Jan Kratochvil <jan.kratochvil@redhat.com> |
1569 | ||
1570 | * compile/compile-object-load.c (compile_object_load): Add | |
1571 | COMPILE_DEBUG message. | |
1572 | ||
aa715135 JG |
1573 | 2015-05-15 Jerome Guitton <guitton@adacore.com> |
1574 | ||
1575 | * ada-lang.c (ada_value_ptr_subscript): Use enum position of | |
1576 | index to get element instead of enum value. | |
1577 | (ada_value_slice_from_ptr, ada_value_slice): Use enum position | |
1578 | of index to compute length, but enum values to compute bounds. | |
1579 | (ada_array_length): Use enum position of index instead of enum value. | |
1580 | (pos_atr): Move position computation to... | |
1581 | (ada_evaluate_subexp): Use enum values to compute bounds. | |
1582 | * gdbtypes.c (discrete_position): ...this new function. | |
1583 | * gdbtypes.h (discrete_position): New function declaration. | |
1584 | * valprint.c (val_print_array_elements): Call discrete_position | |
1585 | to handle array indexed by non-contiguous enumeration types. | |
1586 | ||
931e5bc3 JG |
1587 | 2015-05-15 Jerome Guitton <guitton@adacore.com> |
1588 | ||
1589 | * ada-lang.c (find_parallel_type_by_descriptive_type): | |
1590 | Go through typedefs during lookup. | |
1591 | (to_fixed_array_type): Add support for non-bit packed arrays | |
1592 | as variable-length fields. | |
1593 | ||
4e63d0ac PA |
1594 | 2015-05-15 Pedro Alves <palves@redhat.com> |
1595 | Simon Marchi <simon.marchi@ericsson.com> | |
1596 | ||
1597 | * event-loop.c (gdb_notifier) <next_file_handler, | |
1598 | next_poll_fds_index>: New fields. | |
1599 | (get_next_file_handler_to_handle_and_advance): New function. | |
1600 | (delete_file_handler): If deleting the next file handler to | |
1601 | handle, advance to the next file handler. | |
1602 | (gdb_wait_for_event): Bail early if no event fired. Poll file | |
1603 | handlers in round-robin fashion. | |
1604 | ||
52e48b36 PA |
1605 | 2015-05-15 Pedro Alves <palves@redhat.com> |
1606 | ||
1607 | * linux-tdep.c (linux_find_memory_regions_full): Rename local | |
1608 | 'private' to 'priv'. | |
1609 | ||
2465e12e PA |
1610 | 2015-05-15 Pedro Alves <palves@redhat.com> |
1611 | ||
1612 | * nat/linux-nat.h: Include "target/waitstatus.h". | |
1613 | ||
13fa0398 YZ |
1614 | 2015-05-15 Yuanhui Zhang <asmwarrior@gmail.com> |
1615 | ||
1616 | * python/py-unwind.c (struct reg_info): Move out of ... | |
1617 | (struct cached_frame_info): ... this scope. | |
1618 | (pending_frame_object_type, unwind_info_object_type): Make extern. | |
1619 | ||
9cd4d857 JB |
1620 | 2015-05-15 Joel Brobecker <brobecker@adacore.com> |
1621 | ||
1622 | * ada-lang.c (ada_value_primitive_packed_val): Make sure | |
1623 | accumSize is never negative. | |
1624 | ||
e3555239 PP |
1625 | 2015-05-14 Patrick Palka <patrick@parcs.ath.cx> |
1626 | ||
1627 | * tui/tui-command.c: Remove include of <ctype.h>. | |
1628 | (tui_dispatch_ctrl_char): Remove workaround for xterm terminals. | |
1629 | ||
08a76f8a MG |
1630 | 2015-05-13 Martin Galvan <martin.galvan@tallertechnologies.com> |
1631 | ||
1632 | * dwarf2read.c (die_needs_namespace): Return 1 for | |
1633 | DW_TAG_inlined_subroutine. | |
1634 | ||
bd49952b JK |
1635 | 2015-05-13 Jan Kratochvil <jan.kratochvil@redhat.com> |
1636 | ||
1637 | * regcache.c (regcache_cpy_no_passthrough): New declaration. | |
1638 | (regcache_cpy_no_passthrough): Make it static, add function comment. | |
1639 | * regcache.h (regcache_dup, regcache_cpy): Reduce/update their comment. | |
1640 | (regcache_cpy_no_passthrough): Remove declaration. | |
1641 | ||
46c03469 JK |
1642 | 2015-05-13 Jan Kratochvil <jan.kratochvil@redhat.com> |
1643 | ||
1644 | * gdbthread.h (struct thread_control_state): Update comment for | |
1645 | proceed_to_finish. | |
1646 | * infcall.c (run_inferior_call): Update comment about | |
1647 | proceed_to_finish. | |
1648 | * infcmd.c (get_return_value): Update comment about stop_registers. | |
1649 | (finish_forward): Update comment about proceed_to_finish. | |
1650 | * infrun.c (stop_registers): Remove. | |
1651 | (clear_proceed_status, normal_stop): Remove stop_registers handling. | |
1652 | * infrun.h (stop_registers): Remove. | |
1653 | ||
8a6c4031 JK |
1654 | 2015-05-13 Jan Kratochvil <jan.kratochvil@redhat.com> |
1655 | ||
1656 | * infcall.c (struct dummy_frame_context_saver) | |
1657 | (dummy_frame_context_saver_data_free, dummy_frame_context_saver_dtor) | |
1658 | (dummy_frame_context_saver_drop, dummy_frame_context_saver_cleanup) | |
1659 | (dummy_frame_context_saver_get_regs, dummy_frame_context_saver_setup): | |
1660 | New. | |
1661 | (call_function_by_hand_dummy): Move discard_cleanups of | |
1662 | inf_status_cleanup before dummy_frame_push. Call | |
1663 | dummy_frame_context_saver_setup and prepare context_saver_cleanup. | |
1664 | Use dummy_frame_context_saver_get_regs instead of stop_registers. | |
1665 | * infcall.h (struct dummy_frame_context_saver) | |
1666 | (dummy_frame_context_saver_drop, dummy_frame_context_saver_cleanup) | |
1667 | (dummy_frame_context_saver_get_regs, dummy_frame_context_saver_setup): | |
1668 | New declarations. | |
1669 | * infcmd.c: Include infcall.h. | |
1670 | (get_return_value): Add parameter ctx_saver, use it instead of | |
1671 | stop_registers. | |
1672 | (print_return_value): Add parameter ctx_saver, pass it. | |
1673 | (struct finish_command_continuation_args): Add field ctx_saver. | |
1674 | (finish_command_continuation): Update print_return_value caller. | |
1675 | (finish_command_continuation_free_arg): Free also ctx_saver. | |
1676 | (finish_forward): Call dummy_frame_context_saver_setup. | |
1677 | * inferior.h (struct dummy_frame_context_saver): New declaration. | |
1678 | (get_return_value): Add parameter ctx_saver. | |
1679 | * python/py-finishbreakpoint.c (bpfinishpy_pre_stop_hook): Update | |
1680 | get_return_value caller. | |
1681 | ||
10989690 JK |
1682 | 2015-05-13 Jan Kratochvil <jan.kratochvil@redhat.com> |
1683 | ||
1684 | * dummy-frame.c (struct dummy_frame_dtor_list): New. | |
1685 | (struct dummy_frame): Replace dtor and dtor_data by dtor_list. | |
1686 | (remove_dummy_frame): Process dtor_list. | |
1687 | (pop_dummy_frame): Process dtor_list. | |
1688 | (register_dummy_frame_dtor): Maintain dtor_list. | |
1689 | (find_dummy_frame_dtor): Handle dtor_list. | |
1690 | * dummy-frame.h (register_dummy_frame_dtor, find_dummy_frame_dtor): | |
1691 | Update comments. | |
1692 | ||
5e970501 JK |
1693 | 2015-05-13 Jan Kratochvil <jan.kratochvil@redhat.com> |
1694 | ||
1695 | * compile/compile-object-run.c (do_module_cleanup): Add parameter | |
1696 | registers_valid. | |
1697 | (compile_object_run): Update do_module_cleanup caller. | |
1698 | * dummy-frame.c: Include infcall.h. | |
1699 | (struct dummy_frame): Update dtor comment. | |
1700 | (remove_dummy_frame): Call dtor. | |
1701 | (pop_dummy_frame): Update dtor caller. | |
1702 | * dummy-frame.h (dummy_frame_dtor_ftype): Add parameter | |
1703 | registers_valid. | |
1704 | ||
1c4eb778 JB |
1705 | 2015-05-13 Joel Brobecker <brobecker@adacore.com> |
1706 | ||
1707 | GDB 7.9.1 released. | |
1708 | ||
f5f85ab9 JB |
1709 | 2015-05-13 Joel Brobecker <brobecker@adacore.com> |
1710 | ||
1711 | * NEWS: Create "Changes in GDB 7.9.1" section. Move news about | |
1712 | Xmethods now being able to specify a result type to that new | |
1713 | sectioin. | |
1714 | ||
242cd84c PP |
1715 | 2015-05-13 Patrick Palka <patrick@parcs.ath.cx> |
1716 | ||
1717 | * tui/tui-win.c (tui_async_resize_screen): Clear win_resized | |
1718 | first before resizing the window. | |
e3555239 | 1719 | * tui/tui.c (tui_enable): Likewise. |
242cd84c PP |
1720 | |
1721 | 2015-05-13 Jan Kratochvil <jan.kratochvil@redhat.com> | |
558e5469 JK |
1722 | |
1723 | * dummy-frame.c (struct dummy_frame): Use proper typedef for dtor. | |
1724 | * dummy-frame.h (dummy_frame_dtor_ftype): Add its comment. | |
1725 | * infcall.c (call_function_by_hand_dummy): Use proper typedef for | |
1726 | dummy_dtor parameter. | |
1727 | * infcall.h: Include dummy-frame.h. | |
1728 | (call_function_by_hand_dummy_dtor_ftype): Remove. | |
1729 | (call_function_by_hand_dummy): Use proper typedef for dummy_dtor | |
1730 | parameter. | |
1731 | ||
ebfd00d2 PP |
1732 | 2015-05-13 Patrick Palka <patrick@parcs.ath.cx> |
1733 | ||
1734 | PR gdb/17820 | |
1735 | * top.c (history_size_setshow_var): Change type to signed. | |
1736 | Initialize to -2. Update documentation. | |
1737 | (set_readline_history_size): Define. | |
1738 | (set_history_size_command): Use it. Remove logic for handling | |
1739 | out-of-range sizes. | |
1740 | (init_history): Use set_readline_history_size(). Test for a | |
1741 | value of -2 instead of 0 when determining whether to set a | |
1742 | default history size. | |
1743 | (init_main): Decode the argument of the "size" command as a | |
1744 | zuinteger_unlimited. | |
1745 | ||
83769d0b DE |
1746 | 2015-05-12 Doug Evans <dje@google.com> |
1747 | ||
1748 | * dwarf2read.c (struct file_entry): Tweak comments. | |
1749 | (get_debug_line_section): Tweak comments. | |
1750 | ||
0d71eef5 DB |
1751 | 2015-05-12 Don Breazeal <donb@codesourcery.com> |
1752 | ||
1753 | * NEWS: Announce fork support in the RSP and support | |
1754 | for fork debugging in extended mode. | |
1755 | ||
cbb8991c DB |
1756 | 2015-05-12 Don Breazeal <donb@codesourcery.com> |
1757 | ||
1758 | * remote.c (remote_insert_fork_catchpoint): New function. | |
1759 | (remote_remove_fork_catchpoint): New function. | |
1760 | (remote_insert_vfork_catchpoint): New function. | |
1761 | (remote_remove_vfork_catchpoint): New function. | |
1762 | (pending_fork_parent_callback): New function. | |
1763 | (remove_new_fork_child): New function. | |
1764 | (remote_update_thread_list): Call remote_notif_get_pending_events | |
1765 | and remove_new_fork_child. | |
1766 | (extended_remote_kill): Kill fork child when killing the | |
1767 | parent before follow_fork completes. | |
1768 | (init_extended_remote_ops): Initialize target vector with | |
1769 | new fork catchpoint functions. | |
1770 | ||
c269dbdb DB |
1771 | 2015-05-12 Don Breazeal <donb@codesourcery.com> |
1772 | ||
1773 | * remote.c (remove_vfork_event_p): New function. | |
1774 | (remote_follow_fork): Add vfork event type to event checking. | |
1775 | (remote_parse_stop_reply): New stop reasons "vfork" and | |
1776 | "vforkdone" for RSP 'T' Stop Reply Packet. | |
1777 | ||
de0d863e DB |
1778 | 2015-05-12 Don Breazeal <donb@codesourcery.com> |
1779 | ||
1780 | * linux-nat.c (linux_nat_ptrace_options): New function. | |
1781 | (linux_init_ptrace, wait_lwp, linux_nat_filter_event): | |
1782 | Call linux_nat_ptrace_options and use different argument to | |
1783 | linux_enable_event_reporting. | |
1784 | (_initialize_linux_nat): Delete call to | |
1785 | linux_ptrace_set_additional_flags. | |
c8f6c93c | 1786 | * nat/linux-ptrace.c (current_ptrace_options): Rename to |
de0d863e DB |
1787 | supported_ptrace_options. |
1788 | (additional_flags): Delete variable. | |
1789 | (linux_check_ptrace_features): Use supported_ptrace_options. | |
1790 | (linux_test_for_tracesysgood, linux_test_for_tracefork): | |
1791 | Likewise, and remove additional_flags check. | |
1792 | (linux_enable_event_reporting): Change 'attached' argument to | |
1793 | 'options'. Use supported_ptrace_options. | |
c8f6c93c | 1794 | (ptrace_supports_feature): Change comment. Use |
de0d863e DB |
1795 | supported_ptrace_options. |
1796 | (linux_ptrace_set_additional_flags): Delete function. | |
1797 | * nat/linux-ptrace.h (linux_ptrace_set_additional_flags): | |
1798 | Delete function prototype. | |
1799 | * remote.c (remote_fork_event_p): New function. | |
1800 | (remote_detach_pid): New function. | |
1801 | (remote_detach_1): Call remote_detach_pid, don't mourn inferior | |
1802 | if doing detach-on-fork. | |
1803 | (remote_follow_fork): New function. | |
1804 | (remote_parse_stop_reply): Handle new "T" stop reason "fork". | |
1805 | (remote_pid_to_str): Print "process" strings for pid/0/0 ptids. | |
1806 | (init_extended_remote_ops): Initialize to_follow_fork. | |
1807 | ||
89245bc0 DB |
1808 | 2015-05-12 Don Breazeal <donb@codesourcery.com> |
1809 | ||
1810 | * nat/linux-ptrace.c (linux_check_ptrace_features): Change | |
1811 | from static to extern. | |
1812 | * nat/linux-ptrace.h (linux_check_ptrace_features): Declare. | |
1813 | * remote.c (anonymous enum): <PACKET_fork_event_feature, | |
1814 | * PACKET_vfork_event_feature>: New enumeration constants. | |
1815 | (remote_protocol_features): Add table entries for new packets. | |
1816 | (remote_query_supported): Add new feature queries to qSupported | |
1817 | packet. | |
1818 | ||
835205d0 GB |
1819 | 2015-05-12 Gary Benson <gbenson@redhat.com> |
1820 | ||
1821 | * remote.c (remote_add_inferior): Call exec_file_locate_attach | |
1822 | for fake PIDs as well as real ones. | |
1823 | (remote_pid_to_exec_file): Send empty annex if PID is fake. | |
1824 | ||
4c082a81 SC |
1825 | 2015-05-09 Siva Chandra Reddy <sivachandra@google.com> |
1826 | ||
1827 | * NEWS (Python Scripting): Mention the new gdb.Value methods. | |
1828 | * python/py-value.c (valpy_reference_value): New function. | |
1829 | (valpy_const_value): Likewise. | |
1830 | (value_object_methods): Add new methods. | |
1831 | * value.c (make_cv_value): New function. | |
1832 | * value.h (make_cv_value): Declare. | |
1833 | ||
afa6c9ab SL |
1834 | 2015-05-08 Yao Qi <yao@codesourcery.com> |
1835 | Sandra Loosemore <sandra@codesourcery.com> | |
1836 | ||
1837 | * dwarf2read.c (setup_type_unit_groups): Do NULL pointer check | |
1838 | to 'lh->include_dirs' before accessing to it. | |
1839 | (psymtab_include_file_name): Likewise. | |
1840 | (dwarf_decode_lines_1): Likewise. | |
1841 | (dwarf_decode_lines): Likewise. | |
1842 | (file_file_name): Likewise. | |
1843 | ||
35d54293 SL |
1844 | 2015-05-08 Sandra Loosemore <sandra@codesourcery.com> |
1845 | ||
1846 | * nios2-linux-tdep.c (NIOS2_SIGRETURN_TRAMP_ADDR): Define. | |
1847 | (NIOS2_SIGRETURN_REGSAVE_OFFSET): Define. | |
1848 | (nios2_linux_rt_sigreturn_init): Adjust base address of | |
1849 | register save area. | |
1850 | ||
b73c49b7 SL |
1851 | 2015-05-08 Sandra Loosemore <sandra@codesourcery.com> |
1852 | ||
1853 | * nios2-tdep.c (nios2_breakpoint_from_pc): Revert to using | |
1854 | "trap 31" as the breakpoint instruction on all targets. | |
1855 | ||
dd9f02a0 JK |
1856 | 2015-05-08 Jan Kratochvil <jan.kratochvil@redhat.com> |
1857 | ||
1858 | * infcmd.c (print_return_value): Remove unused declaration. | |
1859 | ||
6ad395a7 JB |
1860 | 2015-05-08 Joel Brobecker <brobecker@adacore.com> |
1861 | ||
1862 | * dwarf2read.c (attr_to_dynamic_prop) | |
1863 | <DW_AT_data_member_location>: Use read_type_die isntead of | |
1864 | get_die_type. | |
1865 | ||
8344af1e JB |
1866 | 2015-05-08 Joel Brobecker <brobecker@adacore.com> |
1867 | ||
1868 | * ada-lang.c (ada_convert_actual): Add handling of formals | |
1869 | passed inside an aligner type. | |
1870 | ||
80b0912b JB |
1871 | 2015-05-08 Joel Brobecker <brobecker@adacore.com> |
1872 | ||
1873 | * copyright.py (NOT_FSF_LIST): Remove sim/erc32 entries. | |
1874 | ||
df2eb078 SC |
1875 | 2015-05-08 Siva Chandra Reddy <sivachandra@google.com> |
1876 | ||
1877 | PR python/18291 | |
1878 | * python/lib/gdb/command/xmethods.py (print_xm_info): Fix typo. | |
1879 | Print xmethod matcher status. | |
1880 | ||
2492f0d0 AA |
1881 | 2015-05-08 Andreas Arnez <arnez@linux.vnet.ibm.com> |
1882 | ||
1883 | * s390-linux-nat.c (fill_gregset): Avoid relying on the PSWA | |
1884 | register in the regcache when treating the PSWM register, and vice | |
1885 | versa. | |
1886 | ||
1c56a84d GB |
1887 | 2015-05-07 Gary Benson <gbenson@redhat.com> |
1888 | ||
1889 | * linux-thread-db.c (struct thread_db_info) | |
1890 | <td_ta_map_id2thr_p>: Remove field. | |
1891 | (try_thread_db_load_1): Remove initialization for the above. | |
1892 | ||
74850322 GB |
1893 | 2015-05-07 Gary Benson <gbenson@redhat.com> |
1894 | ||
1895 | * linux-thread-db.c (struct thread_db_info) | |
1896 | <td_thr_validate_p>: Remove field. | |
1897 | (try_thread_db_load_1): Remove initialization for the above. | |
1898 | ||
e26efa40 JK |
1899 | 2015-05-06 Jan Kratochvil <jan.kratochvil@redhat.com> |
1900 | ||
1901 | * compile/compile-object-load.c (compile_object_load): Support | |
1902 | mst_text_gnu_ifunc. | |
1903 | ||
851c9091 JK |
1904 | 2015-05-06 Jan Kratochvil <jan.kratochvil@redhat.com> |
1905 | ||
1906 | * compile/compile.c (compile_to_object): Make the cmd_string parameter | |
1907 | const. Use new variables for the const compatibility. | |
1908 | (eval_compile_command): Make the cmd_string parameter const. | |
1909 | * compile/compile.h (eval_compile_command): Make the cmd_string | |
1910 | parameter const. | |
1911 | ||
f218b647 JB |
1912 | 2015-05-06 Joel Brobecker <brobecker@adacore.com> |
1913 | ||
1914 | * defs.h (deprecated_init_ui_hook): Delete. Remove associated | |
1915 | comment. | |
1916 | * top.c (deprecated_init_ui_hook): Delete. | |
1917 | (gdb_init): Remove handling of deprecated_init_ui_hook. | |
1918 | * interps.c (clear_interpreter_hooks): Remove handling of | |
1919 | deprecated_init_ui_hook. | |
1920 | * main.c (captured_main): Update comment. | |
1921 | ||
b30a0bc3 JB |
1922 | 2015-05-06 Joel Brobecker <brobecker@adacore.com> |
1923 | ||
1924 | * solib.c (_initialize_solib): Add "info dll" alias creation. | |
1925 | * windows-nat.c (set_windows_aliases): Delete. | |
1926 | (_initialize_windows_nat): Remove deprecated_init_ui_hook | |
1927 | assignment. | |
1928 | * NEWS: Add news entry about "info dll" now being available | |
1929 | on all platforms. | |
1930 | ||
7c512744 JB |
1931 | 2015-05-05 Joel Brobecker <brobecker@adacore.com> |
1932 | ||
1933 | * ada-lang.c (value_assign_to_component): Reformat and improve | |
1934 | documentation. Remove all trailing spaces. | |
1935 | ||
0fa7fe50 JB |
1936 | 2015-05-05 Joel Brobecker <brobecker@adacore.com> |
1937 | ||
1938 | * inline-frame.c (inline_frame_sniffer, skip_inline_frames): | |
1939 | Stop counting inlined frames as soon as an out-of-line function | |
1940 | is found. | |
1941 | ||
3ea89b92 PMR |
1942 | 2014-05-05 Pierre-Marie de Rodat <derodat@adacore.com> |
1943 | ||
1944 | * dwarf2read.c (inherit_abstract_dies): Skip | |
1945 | DW_TAG_GNU_call_site dies while inheriting children of an | |
1946 | abstract DIE into a scope. | |
1947 | (read_lexical_block_scope): Inherit abstract DIE's for | |
1948 | lexical scopes. | |
1949 | ||
2478d075 JB |
1950 | 2015-05-05 Joel Brobecker <brobecker@adacore.com> |
1951 | ||
1952 | * ada-valprint.c (val_print_packed_array_elements): Delete | |
1953 | variable "len". Add a type-length check when comparing two | |
1954 | consecutive elements of the array. Use the element's actual | |
1955 | length in call to value_contents_eq. | |
1956 | * ada-lang.c (ada_value_primitive_packed_val): Always return | |
1957 | a value whose type has been resolved. | |
1958 | ||
fc958966 JB |
1959 | 2015-05-05 Joel Brobecker <brobecker@adacore.com> |
1960 | ||
1961 | * ada-lang.c (ada_value_primitive_packed_val): Recompute | |
1962 | BIT_SIZE and LEN if the size of the resolved type is smaller | |
1963 | than BIT_SIZE * HOST_CHAR_BIT. | |
1964 | ||
ca34b84f JB |
1965 | 2015-05-05 Joel Brobecker <brobecker@adacore.com> |
1966 | ||
1967 | * ada-lang.c (ada_value_primitive_packed_val): Use a more | |
1968 | correct address in call to value_at. Adjust call to | |
1969 | value_address accordingly. | |
1970 | ||
62c67f3c JB |
1971 | 2015-05-05 Joel Brobecker <brobecker@adacore.com> |
1972 | ||
1973 | * ada-valprint.c (ada_val_print_1): Resolve TYPE before trying | |
1974 | to print it. | |
1975 | ||
c3345124 JB |
1976 | 2015-05-05 Joel Brobecker <brobecker@adacore.com> |
1977 | ||
1978 | * dwarf2loc.h (struct property_addr_info): Add "valaddr" field. | |
1979 | * dwarf2loc.c (dwarf2_evaluate_property): Add handling of | |
1980 | pinfo->valaddr. | |
1981 | * gdbtypes.h (resolve_dynamic_type): Add "valaddr" parameter. | |
1982 | * gdbtypes.c (resolve_dynamic_struct): Set pinfo.valaddr. | |
1983 | (resolve_dynamic_type_internal): Set pinfo.valaddr. | |
1984 | Add handling of addr_stack->valaddr. | |
1985 | (resolve_dynamic_type): Add "valaddr" parameter. | |
1986 | Set pinfo.valaddr field. | |
1987 | * ada-lang.c (ada_discrete_type_high_bound): Update call to | |
1988 | resolve_dynamic_type. | |
1989 | (ada_discrete_type_low_bound): Likewise. | |
1990 | * findvar.c (default_read_var_value): Likewise. | |
1991 | * value.c (value_from_contents_and_address): Likewise. | |
1992 | ||
75ea5859 JB |
1993 | 2015-05-05 Joel Brobecker <brobecker@adacore.com> |
1994 | ||
1995 | * gdbtypes.c (resolve_dynamic_array): Use | |
1996 | create_array_type_with_stride instead of create_array_type. | |
1997 | ||
0952813b DD |
1998 | 2015-04-30 DJ Delorie <dj@redhat.com> |
1999 | ||
2000 | * rl78-tdep.c (rl78_analyze_prologue): Pass RL78_ISA_DEFAULT to | |
2001 | rl78_decode_opcode | |
2002 | ||
2ce1cdbf DE |
2003 | 2015-04-29 Doug Evans <dje@google.com> |
2004 | ||
2005 | PR python/18285 | |
2006 | * NEWS: Document new gdb.XMethodWorker.get_result_type method. | |
2007 | * eval.c (evaluate_subexp_standard) <OP_FUNCALL>: Handle | |
2008 | EVAL_AVOID_SIDE_EFFECTS for xmethods. | |
2009 | * extension-priv.h (struct extension_language_ops) | |
2010 | <get_xmethod_result_type>: New member. | |
2011 | * extension.c (get_xmethod_result_type): New function. | |
2012 | * extension.h (get_xmethod_result_type): Declare. | |
2013 | * python/py-xmethods.c (get_result_type_method_name): New static | |
2014 | global. | |
2015 | (py_get_result_type_method_name): Ditto. | |
2016 | (gdbpy_get_xmethod_result_type): New function. | |
2017 | (gdbpy_initialize_xmethods): Initialize py_get_result_type_method_name. | |
2018 | * python/python-internal.h (gdbpy_get_xmethod_result_type): Declare. | |
2019 | * python/python.c (python_extension_ops): Add | |
2020 | gdbpy_get_xmethod_result_type. | |
2021 | * python/lib/gdb/xmethod.py (XMethodWorker): Add get_result_type. | |
2022 | * valarith.c (value_x_binop): Handle EVAL_AVOID_SIDE_EFFECTS for | |
2023 | xmethods. | |
2024 | (value_x_unop): Ditto. | |
2025 | * value.c (result_type_of_xmethod): New function. | |
2026 | * value.h (result_type_of_xmethod): Declare. | |
2027 | ||
998d2a3e GB |
2028 | 2015-04-29 Gary Benson <gbenson@redhat.com> |
2029 | ||
2030 | * solib.c (solib_find_1): Allow fd argument to be NULL. | |
2031 | (exec_file_find): Update comment. | |
2032 | (solib_find): Likewise. | |
2033 | * exec.c (exec_file_locate_attach): Use NULL as fd | |
2034 | argument to exec_file_find to avoid having to close | |
2035 | the opened file. | |
2036 | * infrun.c (follow_exec): Likewise. | |
2037 | ||
34f5f757 DE |
2038 | 2015-04-28 Doug Evans <dje@google.com> |
2039 | ||
2040 | PR python/18299 | |
2041 | * python/lib/gdb/printing.py (register_pretty_printer): Handle | |
2042 | name or __name__ attributes. Handle gdb module as first argument. | |
2043 | ||
69b4374a DE |
2044 | 2015-04-28 Doug Evans <dje@google.com> |
2045 | ||
2046 | PR python/18089 | |
2047 | * python/py-prettyprint.c (print_children): Verify result of children | |
2048 | iterator. Provide better error message. | |
2049 | * python/python-internal..h (gdbpy_print_python_errors_p): Declare. | |
2050 | * python/python.c (gdbpy_print_python_errors_p): New function. | |
2051 | ||
5e7cf078 DE |
2052 | 2015-04-28 Doug Evans <dje@google.com> |
2053 | ||
2054 | * gdbtypes.h (struct cplus_struct_type) <n_baseclasses>: Fix comment. | |
2055 | ||
59fb7612 SS |
2056 | 2015-04-28 Sasha Smundak <asmundak@google.com> |
2057 | ||
2058 | * NEWS: Mention gdb.Type.optimized_out method. | |
2059 | * python/py-type.c (typy_optimized_out): New function. | |
2060 | ||
cea6e4f1 JB |
2061 | 2015-04-28 John Baldwin <jhb@FreeBSD.org> |
2062 | ||
2063 | * fbsd-nat.c: Include "gdb_wait.h" instead of <sys/wait.h>. | |
2064 | ||
24b73f8e PP |
2065 | 2015-04-28 Patrick Palka <patrick@parcs.ath.cx> |
2066 | ||
2067 | * utils.c (init_page_info): Set rl_catch_sigwinch to zero. | |
2068 | (initialize_utils): Move call of init_page_info() to ... | |
2069 | * top.c (gdb_init): ... here. | |
2070 | ||
a88d0bb3 PP |
2071 | 2015-04-28 Patrick Palka <patrick@parcs.ath.cx> |
2072 | ||
2073 | * tui/tui-win.c (tui_sigwinch_handler): Remove now-stale comment. | |
2074 | (tui_sigwinch_handler): Still update our idea of | |
2075 | the terminal's width and height even when TUI is not active. | |
2076 | ||
d6e5e7f7 PP |
2077 | 2015-04-28 Patrick Palka <patrick@parcs.ath.cx> |
2078 | ||
2079 | * utils.h (set_screen_width_and_height): Declare. | |
2080 | * utils.c (set_screen_width_and_height): Define. | |
2081 | * tui/tui-win.c (tui_update_gdb_sizes): Use it. | |
2082 | ||
ff862be4 GB |
2083 | 2015-04-28 Gary Benson <gbenson@redhat.com> |
2084 | ||
2085 | * infrun.c (solist.h): New include. | |
2086 | (follow_exec): Use exec_file_find to prefix execd_pathname | |
2087 | with gdb_sysroot. | |
2088 | ||
2eb639cb PP |
2089 | 2015-04-28 Patrick Palka <patrick@parcs.ath.cx> |
2090 | ||
2091 | * tui/tui-source.c (tui_set_source_content): Avoid calling | |
2092 | strcpy() when offset is 0. | |
2093 | ||
97206799 PP |
2094 | 2015-04-28 Patrick Palka <patrick@parcs.ath.cx> |
2095 | ||
2096 | PR gdb/18155 | |
2097 | * tui/tui-data.c (tui_free_window): Don't free the locator | |
2098 | window when passed an SRC_WIN or a DISASSEM_WIN. | |
2099 | ||
63ed8182 PP |
2100 | 2015-04-28 Patrick Palka <patrick@parcs.ath.cx> |
2101 | ||
2102 | * tui/tui-data.h (struct tui_win_element): Forward-declare. | |
2103 | (tui_win_content): Move declaration. | |
2104 | (struct tui_gen_win_info): Give 'content' field the | |
2105 | type tui_win_content. | |
2106 | * tui/tui-data.c (init_content_element): Remove redundant and | |
2107 | erroneous casts. | |
2108 | (tui_add_content_elements): Remove erroneous cast. | |
2109 | * tui/tui-disasm.c (tui_set_disassem_content): Remove redundant | |
2110 | casts. | |
2111 | (tui_get_begin_asm_address): Likewise. | |
2112 | * tui/tui-regs.c (tui_show_registers): Likewise. | |
2113 | (tui_show_register_group): Likewise. | |
2114 | (tui_display_registers_from): Likewise. | |
2115 | (tui_check_register_values): Likewise. | |
2116 | * tui/tui-source.c (tui_set_source_content): Likewise. | |
2117 | (tui_set_source_content_nil): Likewise. | |
2118 | (tui_source_is_displayed): Likewise. | |
2119 | * tui/tui-stack.c (tui_show_locator_content): Likewise. | |
2120 | (tui_set_locator_fullname): Likewise. | |
2121 | (tui_set_locator_info): Likewise. | |
2122 | (tui_show_frame_info): Likewise. | |
2123 | * tui/tui-winsource.c (tui_clear_source_content): Likewise. | |
2124 | (tui_show_source_line): Likewise. | |
2125 | (tui_horizontal_source_scroll): Likewise. | |
2126 | (tui_update_breakpoint_info): Likewise. | |
2127 | (tui_set_exec_info_content): Likewise. | |
2128 | (tui_show_exec_info_content): Likewise. | |
2129 | (tui_alloc_source_buffer): Likewise. | |
2130 | (tui_line_is_displayed): Likewise. | |
2131 | (tui_addr_is_displayed): Likewise. | |
2132 | ||
d2b41ca0 JB |
2133 | 2015-04-27 John Baldwin <jhb@FreeBSD.org> |
2134 | ||
2135 | * fbsd-nat.c: (fbsd_wait) [PL_FLAG_EXEC]: Report TARGET_WAITKIND_EXECD | |
2136 | event if PL_FLAG_EXEC is set. | |
2137 | [PL_FLAG_EXEC] (fbsd_insert_exec_catchpoint): New function. | |
2138 | [PL_FLAG_EXEC] (fbsd_remove_exec_catchpoint): New function. | |
2139 | (fbsd_nat_add_target) [PL_FLAG_EXEC]: Set | |
2140 | "to_insert_exec_catchpoint" to "fbsd_insert_exec_catchpoint". | |
2141 | Set "to_remove_exec_catchpoint" to "fbsd_remove_exec_catchpoint". | |
2142 | ||
e58e05d6 JB |
2143 | 2015-04-27 John Baldwin <jhb@FreeBSD.org> |
2144 | ||
2145 | * fbsd-nat.c: [PT_LWPINFO] New variable super_wait. | |
2146 | [TDP_RFPPWAIT] New variable fbsd_pending_children. | |
2147 | [TDP_RFPPWAIT] (fbsd_remember_child): New function. | |
2148 | [TDP_RFPPWAIT] (fbsd_is_child_pending): New function. | |
2149 | [TDP_RFPPWAIT] (fbsd_fetch_kinfo_proc): New function. | |
2150 | [PT_LWPINFO] (fbsd_wait): New function. | |
2151 | [TDP_RFPPWAIT] (fbsd_follow_fork): New function. | |
2152 | [TDP_RFPPWAIT] (fbsd_insert_fork_catchpoint): New function. | |
2153 | [TDP_RFPPWAIT] (fbsd_remove_fork_catchpoint): New function. | |
2154 | [TDP_RFPPWAIT] (fbsd_insert_vfork_catchpoint): New function. | |
2155 | [TDP_RFPPWAIT] (fbsd_remove_vfork_catchpoint): New function. | |
2156 | [TDP_RFPPWAIT] (fbsd_enable_follow_fork): New function. | |
2157 | [TDP_RFPPWAIT] (fbsd_post_startup_inferior): New function. | |
2158 | [TDP_RFPPWAIT] (fbsd_post_attach): New function. | |
2159 | (fbsd_nat_add_target) [PT_LWPINFO] Set "to_wait" to | |
2160 | "fbsd_wait". | |
2161 | [TDP_RFPPWAIT] Set "to_follow_fork" to "fbsd_follow_fork". | |
2162 | Set "to_insert_fork_catchpoint" to "fbsd_insert_fork_catchpoint". | |
2163 | Set "to_remove_fork_catchpoint" to "fbsd_remove_fork_catchpoint". | |
2164 | Set "to_insert_vfork_catchpoint" to "fbsd_insert_vfork_catchpoint". | |
2165 | Set "to_remove_vfork_catchpoint" to "fbsd_remove_vfork_catchpoint". | |
2166 | Set "to_post_startup_inferior" to "fbsd_post_startup_inferior". | |
2167 | Set "to_post_attach" to "fbsd_post_attach". | |
2168 | ||
8f60fe01 JB |
2169 | 2015-04-27 John Baldwin <jhb@FreeBSD.org> |
2170 | ||
2171 | * fbsd-nat.c (fbsd_pid_to_exec_file): Mark static. | |
2172 | (fbsd_find_memory_regions): Mark static. | |
2173 | (fbsd_nat_add_target): New function. | |
2174 | * fbsd-nat.h: Export fbsd_nat_add_target and remove prototypes for | |
2175 | fbsd_pid_to_exec_file and fbsd_find_memory_regions. | |
2176 | * amd64fbsd-nat.c (_initialize_amd64fbsd_nat): Use fbsd_nat_add_target. | |
2177 | * i386fbsd-nat.c (_initialize_i386fbsd_nat): Likewise. | |
2178 | * ppcfbsd-nat.c (_initialize_ppcfbsd_nat): Likewise. | |
2179 | * sparc64fbsd-nat.c (_initialize_sparc64fbsd_nat): Likewise. | |
2180 | ||
5fbae7d1 GB |
2181 | 2015-04-27 Gary Benson <gbenson@redhat.com> |
2182 | ||
2183 | * objfiles.c (allocate_objfile): Do not attempt to expand name | |
2184 | if name is a "target:" filename. | |
2185 | * auto-load.c (load_auto_scripts_for_objfile): Do not attempt | |
2186 | to load auto-load scripts for objfiles with "target:" filenames. | |
2187 | ||
417c80f9 AA |
2188 | 2015-04-27 Andreas Arnez <arnez@linux.vnet.ibm.com> |
2189 | ||
2190 | * s390-linux-tdep.c: Include "elf/s390.h" and "elf-bfd.h". | |
2191 | (enum s390_vector_abi_kind): New enum. | |
2192 | (struct gdbarch_tdep)<vector_abi>: New field. | |
2193 | (s390_effective_inner_type): Add parameter min_size. Stop | |
2194 | unwrapping if the inner type is smaller than min_size. | |
2195 | (s390_function_arg_float): Adjust call to | |
2196 | s390_effective_inner_type. | |
2197 | (s390_function_arg_vector): New function. | |
2198 | (s390_function_arg_integer): Adjust comment. | |
2199 | (struct s390_arg_state)<vr>: New field. | |
2200 | (s390_handle_arg): Add parameter 'is_unnamed'. Pass vector | |
2201 | arguments according to vector ABI when appropriate. | |
2202 | (s390_push_dummy_call): Initialize the argument state's field | |
2203 | 'vr'. Adjust calls to s390_handle_arg. | |
2204 | (s390_register_return_value): Handle vector return values. | |
2205 | (s390_return_value): Apply the "register" return value convention | |
2206 | to a vector when appropriate. | |
2207 | (s390_gdbarch_init): Initialize tdep->vector_abi. | |
2208 | * NEWS: Announce S390 vector ABI support. | |
2209 | ||
4e65a17e AA |
2210 | 2015-04-27 Andreas Arnez <arnez@linux.vnet.ibm.com> |
2211 | ||
2212 | * s390-linux-tdep.c (s390_return_value_convention): Remove | |
2213 | function. Inline its logic... | |
2214 | (s390_return_value): ...here. Instead, move the handling of the | |
2215 | "register" return value convention... | |
2216 | (s390_register_return_value): ...here. New function. | |
2217 | ||
80f75320 AA |
2218 | 2015-04-27 Andreas Arnez <arnez@linux.vnet.ibm.com> |
2219 | ||
2220 | * s390-linux-tdep.c | |
2221 | (is_float_singleton): Remove function. Move the "singleton" part | |
2222 | of the logic... | |
2223 | (s390_effective_inner_type): ...here. New function. | |
2224 | (is_float_like): Remove function. Inline its logic... | |
2225 | (s390_function_arg_float): ...here. | |
2226 | (is_pointer_like, is_integer_like, is_struct_like): Remove | |
2227 | functions. Inline their logic... | |
2228 | (s390_function_arg_integer): ...here. | |
2229 | (s390_function_arg_pass_by_reference): Remove function. | |
2230 | (extend_simple_arg): Remove function. | |
2231 | (alignment_of): Remove function. | |
2232 | (struct s390_arg_state): New structure. | |
2233 | (s390_handle_arg): New function. | |
2234 | (s390_push_dummy_call): Move parameter placement logic to the new | |
2235 | function s390_handle_arg. Call it for calculating the stack area | |
2236 | sizes first, and again for actually writing the parameters. | |
2237 | ||
6dbc9c04 AA |
2238 | 2015-04-27 Andreas Arnez <arnez@linux.vnet.ibm.com> |
2239 | ||
2240 | * s390-linux-tdep.c (is_power_of_two): Add comment. Return | |
2241 | false if the argument is zero. | |
2242 | ||
9e195661 PMR |
2243 | 2015-04-27 Pierre-Marie de Rodat <derodat@adacore.com> |
2244 | ||
2245 | * ada-lang.c (template_to_static_fixed_type): Return input type | |
2246 | when it is already fixed. Cache the input type itself when not | |
2247 | creating a static fixed copy. Make it explicit that we never | |
2248 | molestate the input type. | |
2249 | * gdbtypes.c (resolve_dynamic_struct): Reset the | |
2250 | TYPE_TARGET_TYPE field for resolved copies. | |
2251 | ||
460efde1 JB |
2252 | 2015-04-27 Joel Brobecker <brobecker@adacore.com> |
2253 | ||
2254 | * ada-lang.c (ada_is_tagged_type): Add call to ada_check_typedef. | |
2255 | (ada_lookup_struct_elt_type): Remove calls to ada_check_typedef. | |
2256 | (template_to_static_fixed_type): Call ada_check_typedef only | |
2257 | when necessary. | |
2258 | ||
6faec16b AB |
2259 | 2015-04-24 Andrew Burgess <andrew.burgess@embecosm.com> |
2260 | ||
2261 | * cli/cli-dump.c (srec_dump_command): Add internationalization | |
2262 | mark ups. | |
2263 | (ihex_dump_command): Likewise. | |
2264 | (tekhex_dump_command): Likewise. | |
2265 | (binary_dump_command): Likewise. | |
2266 | (binary_append_command): Likewise. | |
2267 | ||
cf75d6c3 AB |
2268 | 2015-04-24 Andrew Burgess <andrew.burgess@embecosm.com> |
2269 | ||
2270 | * cli/cli-dump.c (verilog_cmdlist): New variable. | |
2271 | (dump_verilog_memory): New function. | |
2272 | (dump_verilog_value): New function. | |
2273 | (verilog_dump_command): New function. | |
2274 | (_initialize_cli_dump): Add new commands to support verilog dump | |
2275 | format. | |
2276 | * NEWS: Add entry for "dump verilog". | |
2277 | ||
8cd00c59 PMR |
2278 | 2015-04-24 Pierre-Marie de Rodat <derodat@adacore.com> |
2279 | ||
2280 | * gdbtypes.c (print_gnat_stuff): Do not recurse on the | |
2281 | descriptive type when there is none. | |
2282 | ||
8900d71e PP |
2283 | 2015-04-23 Patrick Palka <patrick@parcs.ath.cx> |
2284 | ||
2285 | * tui/tui-win.c (tui_async_resize_screen): Call | |
2286 | rl_resize_terminal(). | |
2287 | ||
f16eab5f JT |
2288 | 2015-04-22 Jon Turney <jon.turney@dronecode.org.uk> |
2289 | ||
2290 | * windows-nat.c (handle_output_debug_string): Don't change | |
2291 | current_event.dwThreadId. | |
2292 | (get_windows_debug_event): Use thread_id, rather than relying on | |
2293 | current_event.dwThreadId being changed. | |
2294 | ||
68ffc902 JT |
2295 | 2015-04-22 Jon Turney <jon.turney@dronecode.org.uk> |
2296 | ||
2297 | * windows-nat.c (windows_continue): Report an error if | |
2298 | ContinueDebugEvent() fails. | |
2299 | ||
23942819 JT |
2300 | 2015-04-16 Jon Turney <jon.turney@dronecode.org.uk> |
2301 | ||
2302 | * windows-nat.c (windows_resume): Fix misspelling in debug output. | |
2303 | ||
e6ad66bd JT |
2304 | 2015-04-16 Jon Turney <jon.turney@dronecode.org.uk> |
2305 | ||
2306 | * windows-nat.c (get_windows_debug_event): Replace retval with | |
2307 | thread_id throughout. Update stale comment. | |
2308 | ||
776704b9 JT |
2309 | 2015-04-16 Jon Turney <jon.turney@dronecode.org.uk> |
2310 | ||
2311 | * windows-nat.c (get_windows_debug_event): Don't use ternary | |
2312 | conditional operator. | |
2313 | ||
8aae4344 PM |
2314 | 2015-04-21 Pierre Muller <muller@sourceware.org> |
2315 | ||
2316 | PR pascal/17815 | |
2317 | p-exp.y (yylex): Reorganize code to return the matched pattern | |
2318 | for a field of this. | |
2319 | ||
819843c7 GB |
2320 | 2015-04-21 Gary Benson <gbenson@redhat.com> |
2321 | ||
2322 | * common/fileio.h (fileio_to_host_openflags): New declaration. | |
2323 | * common/fileio.c (fcntl.h): New include. | |
2324 | (fileio_to_host_openflags): New function, factored out from... | |
2325 | * inf-child.c (inf_child_fileio_open_flags_to_host): ...here. | |
2326 | Single use updated. | |
2327 | ||
0bca7f99 KB |
2328 | 2015-04-21 Kevin Buettner <kevinb@redhat.com> |
2329 | ||
2330 | * rl78-tdep.c (RL78_SP_ADDR): Define. | |
2331 | (opc_reg_to_gdb_regnum): New static function. | |
2332 | (rl78_analyze_prologue): Recognize instructions forming slightly | |
2333 | more interesting prologues. | |
2334 | ||
e771e4be PMR |
2335 | 2015-04-20 Pierre-Marie de Rodat <derodat@adacore.com> |
2336 | ||
2337 | Revert: | |
2338 | 2015-04-03 Pierre-Marie de Rodat <derodat@adacore.com> | |
2339 | * gdbtypes.c (is_dynamic_type_internal): Remove special handling of | |
2340 | TYPE_CODE_REF types so that they are not considered as dynamic | |
2341 | depending on the referenced type. | |
2342 | (resolve_dynamic_type_internal): Likewise. | |
2343 | ||
ee715b5a PMR |
2344 | 2015-04-20 Pierre-Marie de Rodat <derodat@adacore.com> |
2345 | ||
2346 | Revert: | |
2347 | 2015-04-03 Pierre-Marie de Rodat <derodat@adacore.com> | |
2348 | * gdbtypes.c (is_dynamic_type_internal): Remove the unused | |
2349 | "top_level" parameter. | |
2350 | (resolve_dynamic_type_internal): Remove the unused "top_level" | |
2351 | parameter. Update call to is_dynamic_type_internal. | |
2352 | (is_dynamic_type): Update call to is_dynamic_type_internal. | |
2353 | (resolve_dynamic_range): Update call to | |
2354 | resolve_dynamic_type_internal. | |
2355 | (resolve_dynamic_union): Likewise. | |
2356 | (resolve_dynamic_struct): Likewise. | |
2357 | (resolve_dynamic_type): Likewise. | |
2358 | ||
e31d7699 GKB |
2359 | 2015-04-19 Gabriel Krisman Bertazi <gabriel@krisman.be> |
2360 | ||
2361 | * breakpoint.c (update_dprintf_command_list): Remove duplicated | |
2362 | xmalloc. | |
2363 | ||
d214e5e7 TS |
2364 | 2015-04-20 Thomas Schwinge <thomas@codesourcery.com> |
2365 | ||
110f9112 TS |
2366 | * reply_mig_hack.awk: Robustify parsing. |
2367 | ||
d214e5e7 TS |
2368 | * reply_mig_hack.awk: Don't bother to declare an intermediate |
2369 | function pointer variable. | |
2370 | ||
8f61baf8 DE |
2371 | 2015-04-17 Doug Evans <dje@google.com> |
2372 | ||
2373 | * solib-svr4.c (svr4_exec_displacement): Rename outer "displacement" | |
2374 | to "exec_displacement" to avoid confusion with inner use of the name. | |
2375 | ||
dbbf180a YQ |
2376 | 2015-04-17 Pedro Alves <palves@redhat.com> |
2377 | ||
2378 | * arm-linux-nat.c (arm_linux_can_use_hw_breakpoint): Return zero | |
2379 | if HW point of TYPE isn't supported. | |
2380 | ||
059790a0 YQ |
2381 | 2015-04-17 Yao Qi <yao.qi@linaro.org> |
2382 | Pedro Alves <palves@redhat.com> | |
2383 | ||
2384 | * target.h (target_can_use_hardware_watchpoint): Update comments. | |
2385 | Remove trailing ";". | |
2386 | ||
1b6e6f5c GB |
2387 | 2015-04-17 Gary Benson <gbenson@redhat.com> |
2388 | ||
2389 | * remote.c (remote_add_inferior): New argument try_open_exec. | |
2390 | If nonzero, attempt to open the inferior's executable file as | |
2391 | the main executable if no main executable is open already. | |
2392 | All callers updated. | |
2393 | * NEWS: Mention that GDB now supports automatic location and | |
2394 | retrieval of executable + files from remote targets. | |
2395 | ||
c78fa86a GB |
2396 | 2015-04-17 Gary Benson <gbenson@redhat.com> |
2397 | ||
2398 | * target.h (TARGET_OBJECT_EXEC_FILE): New enum value. | |
2399 | * remote.c (PACKET_qXfer_exec_file): Likewise. | |
2400 | (remote_protocol_features): Register the | |
2401 | "qXfer:exec-file:read" feature. | |
2402 | (remote_xfer_partial): Handle TARGET_OBJECT_EXEC_FILE. | |
2403 | (remote_pid_to_exec_file): New function. | |
2404 | (init_remote_ops): Initialize to_pid_to_exec_file. | |
2405 | (_initialize_remote): Register new "set/show remote | |
2406 | pid-to-exec-file-packet" command. | |
2407 | * NEWS: Announce new qXfer:exec-file:read packet. | |
2408 | ||
e0d86d2c GB |
2409 | 2015-04-17 Gary Benson <gbenson@redhat.com> |
2410 | ||
2411 | * nat/linux-procfs.h (linux_proc_pid_to_exec_file): | |
2412 | New declaration. | |
2413 | * nat/linux-procfs.c (linux_proc_pid_to_exec_file): | |
2414 | New function, factored out from... | |
2415 | * linux-nat.c (linux_child_pid_to_exec_file): ...here. | |
2416 | ||
a9a5a3d1 GB |
2417 | 2015-04-17 Gary Benson <gbenson@redhat.com> |
2418 | ||
2419 | * exec.c (solist.h): New include. | |
2420 | (exec_file_locate_attach): Prefix absolute executable | |
2421 | paths with gdb_sysroot if set. | |
2422 | * NEWS: Mention that executable paths may be prepended | |
2423 | with sysroot. | |
2424 | ||
af1900b0 GB |
2425 | 2015-04-17 Gary Benson <gbenson@redhat.com> |
2426 | ||
2427 | * solist.h (exec_file_find): New declaration. | |
2428 | * solib.c (solib_find_1): New function, factored out from... | |
2429 | (solib_find): ...here. | |
2430 | (exec_file_find): New function. | |
2431 | ||
a10de604 GB |
2432 | 2015-04-17 Gary Benson <gbenson@redhat.com> |
2433 | ||
2434 | * gdbcore.h (exec_file_locate_attach): New declaration. | |
2435 | * exec.c (exec_file_locate_attach): New function, factored | |
2436 | out from... | |
2437 | * infcmd.c (attach_command_post_wait): ...here. | |
2438 | ||
92209ddf MF |
2439 | 2015-04-17 Mike Frysinger <vapier@gentoo.org> |
2440 | ||
2441 | * MAINTAINERS: Add myself for Blackfin/write-after-approval. | |
2442 | ||
8550d3b3 YQ |
2443 | 2015-04-16 Yao Qi <yao.qi@linaro.org> |
2444 | ||
2445 | * infrun.c (maybe_software_singlestep): Declare. | |
2446 | (displaced_step_fixup): Call maybe_software_singlestep. | |
2447 | ||
30b3dd9d DE |
2448 | 2015-04-15 Doug Evans <dje@google.com> |
2449 | ||
2450 | * psymtab.c (psym_expand_symtabs_matching): Add QUIT call. | |
2451 | ||
61d96d7e DE |
2452 | 2015-04-15 Doug Evans <dje@google.com> |
2453 | ||
2454 | * dwarf2read.c (dw2_expand_symtabs_matching): Add some QUIT calls. | |
2455 | ||
40d2f8d6 SM |
2456 | 2015-04-15 Simon Marchi <simon.marchi@ericsson.com> |
2457 | ||
2458 | * python/lib/gdb/command/unwinders.py: Add parentheses. | |
2459 | ||
6bbbba9b YQ |
2460 | 2015-04-15 Yao Qi <yao.qi@linaro.org> |
2461 | ||
2462 | * arm-linux-tdep.c (arm_linux_copy_svc): Update debug message. | |
2463 | ||
2bb2dcab YQ |
2464 | 2015-04-15 Yao Qi <yao.qi@linaro.org> |
2465 | ||
2466 | * arm-linux-tdep.c (arm_linux_copy_svc): Fix indentation. | |
2467 | ||
41f071ef YQ |
2468 | 2015-04-15 Yao Qi <yao.qi@linaro.org> |
2469 | ||
2470 | * arm-linux-tdep.c (arm_linux_cleanup_svc): Use | |
2471 | dsc->insn_size instead of 4. | |
2472 | ||
326a5c7e GB |
2473 | 2015-04-14 Gary Benson <gbenson@redhat.com> |
2474 | ||
2475 | * jit.c (mem_bfd_iovec_stat): Zero supplied buffer. | |
2476 | * minidebug.c (lzma_stat): Likewise. | |
2477 | * solib-spu.c (spu_bfd_iovec_stat): Likewise. | |
2478 | * spu-linux-nat.c (spu_bfd_iovec_stat): Likewise. | |
2479 | ||
dd177e81 SS |
2480 | 2015-04-13 Stan Shebs <stanshebs@google.com> |
2481 | ||
2482 | * MAINTAINERS: Update my email address. | |
2483 | ||
97de3545 JB |
2484 | 2015-04-13 John Baldwin <jhb@FreeBSD.org> |
2485 | ||
2486 | * amd64-tdep.c (amd64_target_description): New function. | |
2487 | * amd64-tdep.h: Export amd64_target_description and tdesc_amd64. | |
2488 | * amd64bsd-nat.c [PT_GETXSTATE_INFO]: New variable amd64bsd_xsave_len. | |
2489 | (amd64bsd_fetch_inferior_registers) [PT_GETXSTATE_INFO]: Handle | |
2490 | x86 extended save area. | |
2491 | (amd64bsd_store_inferior_registers) [PT_GETXSTATE_INFO]: Likewise. | |
2492 | * amd64bsd-nat.h: Export amd64bsd_xsave_len. | |
2493 | * amd64fbsd-nat.c (amd64fbsd_read_description): New function. | |
2494 | (_initialize_amd64fbsd_nat): Set "to_read_description" to | |
2495 | "amd64fbsd_read_description". | |
2496 | * amd64fbsd-tdep.c (amd64fbsd_core_read_description): New function. | |
2497 | (amd64fbsd_supply_xstateregset): New function. | |
2498 | (amd64fbsd_collect_xstateregset): New function. | |
2499 | Add "amd64fbsd_xstateregset". | |
2500 | (amd64fbsd_iterate_over_regset_sections): New function. | |
2501 | (amd64fbsd_init_abi): Set "xsave_xcr0_offset" to | |
2502 | "I386_FBSD_XSAVE_XCR0_OFFSET". | |
2503 | Add "iterate_over_regset_sections" gdbarch method. | |
2504 | Add "core_read_description" gdbarch method. | |
2505 | * i386-tdep.c (i386_target_description): New function. | |
2506 | * i386-tdep.h: Export i386_target_description and tdesc_i386. | |
2507 | * i386bsd-nat.c [PT_GETXSTATE_INFO]: New variable i386bsd_xsave_len. | |
2508 | (i386bsd_fetch_inferior_registers) [PT_GETXSTATE_INFO]: Handle | |
2509 | x86 extended save area. | |
2510 | (i386bsd_store_inferior_registers) [PT_GETXSTATE_INFO]: Likewise. | |
2511 | * i386bsd-nat.h: Export i386bsd_xsave_len. | |
2512 | * i386fbsd-nat.c (i386fbsd_read_description): New function. | |
2513 | (_initialize_i386fbsd_nat): Set "to_read_description" to | |
2514 | "i386fbsd_read_description". | |
2515 | * i386fbsd-tdep.c (i386fbsd_core_read_xcr0): New function. | |
2516 | (i386fbsd_core_read_description): New function. | |
2517 | (i386fbsd_supply_xstateregset): New function. | |
2518 | (i386fbsd_collect_xstateregset): New function. | |
2519 | Add "i386fbsd_xstateregset". | |
2520 | (i386fbsd_iterate_over_regset_sections): New function. | |
2521 | (i386fbsd4_init_abi): Set "xsave_xcr0_offset" to | |
2522 | "I386_FBSD_XSAVE_XCR0_OFFSET". | |
2523 | Add "iterate_over_regset_sections" gdbarch method. | |
2524 | Add "core_read_description" gdbarch method. | |
2525 | * i386fbsd-tdep.h: New file. | |
2526 | ||
4f45d445 JK |
2527 | 2015-04-11 Jan Kratochvil <jan.kratochvil@redhat.com> |
2528 | ||
2529 | * NEWS (Changes since GDB 7.9): Add removed -xdb. | |
2530 | * breakpoint.c (command_line_is_silent): Remove xdb_commands | |
2531 | conditional. | |
2532 | (_initialize_breakpoint): Remove xdb_commands for bc, ab, sb, db, ba | |
2533 | and lb. | |
2534 | * cli/cli-cmds.c (_initialize_cli_cmds): Remove xdb_commands for v and | |
2535 | va. | |
2536 | * cli/cli-decode.c (find_command_name_length): Remove xdb_commands | |
2537 | conditional. | |
2538 | * defs.h (xdb_commands): Remove declaration. | |
2539 | * f-valprint.c (_initialize_f_valprint): Remove xdb_commands for lc. | |
2540 | * guile/scm-cmd.c (command_classes): Remove xdb from comment. | |
2541 | * infcmd.c (run_no_args_command, go_command): Remove. | |
2542 | (_initialize_infcmd): Remove xdb_commands for S, go, g, R and lr. | |
2543 | * infrun.c (xdb_handle_command): Remove. | |
2544 | (_initialize_infrun): Remove xdb_commands for lz and z. | |
2545 | * main.c (xdb_commands): Remove variable. | |
2546 | (captured_main): Remove "xdb" from long_options. | |
2547 | (print_gdb_help): Remove --xdb from help. | |
2548 | * python/py-cmd.c (gdbpy_initialize_commands): Remove xdb from comment. | |
2549 | * source.c (_initialize_source): Remove xdb_commands for D, ld, / and ?. | |
2550 | * stack.c (backtrace_full_command, args_plus_locals_info) | |
2551 | (current_frame_command): Remove. | |
2552 | (_initialize_stack): Remove xdb_commands for t, T and l. | |
2553 | * symtab.c (_initialize_symtab): Remove xdb_commands for lf and lg. | |
2554 | * thread.c (_initialize_thread): Remove xdb_commands condition. | |
2555 | * tui/tui-layout.c (tui_toggle_layout_command) | |
2556 | (tui_toggle_split_layout_command, tui_handle_xdb_layout): Remove. | |
2557 | (_initialize_tui_layout): Remove xdb_commands for td and ts. | |
2558 | * tui/tui-regs.c (tui_scroll_regs_forward_command) | |
2559 | (tui_scroll_regs_backward_command): Remove. | |
2560 | (_initialize_tui_regs): Remove xdb_commands for fr, gr, sr, +r and -r. | |
2561 | * tui/tui-win.c (tui_xdb_set_win_height_command): Remove. | |
2562 | (_initialize_tui_win): Remove xdb_commands for U and w. | |
2563 | * utils.c (pagination_on_command, pagination_off_command): Remove. | |
2564 | (initialize_utils): Remove xdb_commands for am and sm. | |
2565 | ||
cb71640d PA |
2566 | 2015-04-10 Pedro Alves <palves@redhat.com> |
2567 | ||
2568 | * infrun.c (displaced_step_fixup): Switch to the event ptid | |
2569 | earlier. If the thread stopped for a watchpoint and the | |
2570 | target/arch has non-continuable watchpoints, cancel the displaced | |
2571 | step. | |
2572 | (resume): Don't start a displaced step if in-line step-over info | |
2573 | is valid. | |
2574 | ||
8f572e5c PA |
2575 | 2015-04-10 Pedro Alves <palves@redhat.com> |
2576 | ||
2577 | * infrun.c (displaced_step_in_progress): New function. | |
2578 | (do_target_resume): Advise target to report all signals if | |
2579 | displaced stepping. | |
2580 | ||
8d707a12 PA |
2581 | 2015-04-10 Pedro Alves <palves@redhat.com> |
2582 | ||
2583 | PR gdb/18216 | |
2584 | * infrun.c (process_event_stop_test): Don't assume a step-resume | |
2585 | is set if tp->stepped_breakpoint is true. | |
2586 | ||
ef713951 YQ |
2587 | 2015-04-10 Yao Qi <yao.qi@linaro.org> |
2588 | ||
2589 | * arm-tdep.c (install_alu_reg): Update comment. | |
2590 | (thumb_copy_alu_reg): Remove local variable rn. Update | |
2591 | debugging message. Use r2 instead of r1 in the modified | |
2592 | instruction. | |
2593 | ||
906d60cf PA |
2594 | 2015-04-10 Pedro Alves <palves@redhat.com> |
2595 | ||
2596 | PR gdb/13858 | |
2597 | * amd64-linux-tdep.c (amd64_linux_init_abi_common): Install | |
2598 | linux_displaced_step_location as gdbarch_displaced_step_location | |
2599 | hook. | |
2600 | * arm-linux-tdep.c (arm_linux_init_abi): Likewise. | |
2601 | * i386-linux-tdep.c (i386_linux_init_abi): Likewise. | |
2602 | * linux-tdep.c (linux_displaced_step_location): New function, | |
2603 | based on ppc_linux_displaced_step_location. | |
2604 | * linux-tdep.h (linux_displaced_step_location): New declaration. | |
2605 | * ppc-linux-tdep.c (ppc_linux_entry_point_addr): Delete. | |
2606 | (ppc_linux_inferior_created, ppc_linux_displaced_step_location): | |
2607 | Delete. | |
2608 | (ppc_linux_init_abi): Install linux_displaced_step_location as | |
2609 | gdbarch_displaced_step_location hook, even without Cell/B.E.. | |
2610 | (_initialize_ppc_linux_tdep): Don't install | |
2611 | ppc_linux_inferior_created as inferior_created observer. | |
2612 | * s390-linux-tdep.c (s390_gdbarch_init): Install | |
2613 | linux_displaced_step_location as gdbarch_displaced_step_location | |
2614 | hook. | |
2615 | ||
7823a941 GB |
2616 | 2015-04-09 Gary Benson <gbenson@redhat.com> |
2617 | ||
2618 | * common/common-remote-fileio.h: Rename to... | |
2619 | * common/fileio.h: ...this. Update all references. | |
2620 | (remote_fileio_to_fio_error): Rename to... | |
2621 | (host_to_fileio_error): ...this. | |
2622 | (remote_fileio_to_be): Rename to... | |
2623 | (host_to_bigendian): ...this. Update all callers. | |
2624 | (remote_fileio_to_fio_uint): Rename to... | |
2625 | (host_to_fileio_uint): ...this. Update all callers. | |
2626 | (remote_fileio_to_fio_time): Rename to... | |
2627 | (host_to_fileio_time): ...this. Update all callers. | |
2628 | (remote_fileio_to_fio_stat): Rename to... | |
2629 | (host_to_fileio_stat): ...this. | |
2630 | Update all references. | |
2631 | * common/common-remote-fileio.c: Rename to... | |
2632 | * common/fileio.c: ...this. Update all references. | |
2633 | (remote_fileio_to_fio_error): Rename to... | |
2634 | (host_to_fileio_error): ...this. Update all callers. | |
2635 | (remote_fileio_mode_to_target): Rename to... | |
2636 | (fileio_mode_pack): ...this. Update all callers. | |
2637 | (remote_fileio_to_fio_mode): Rename to... | |
2638 | (host_to_fileio_mode): ...this. Update all callers. | |
2639 | (remote_fileio_to_fio_ulong): Rename to... | |
2640 | (host_to_fileio_ulong): ...this. Update all callers. | |
2641 | (remote_fileio_to_fio_stat): Rename to... | |
2642 | (host_to_fileio_stat): ...this. Update all callers. | |
2643 | ||
f2983cc3 AW |
2644 | 2015-04-09 Andy Wingo <wingo@igalia.com> |
2645 | ||
2646 | * guile/scm-frame.c (gdbscm_frame_read_register): New function. | |
2647 | (frame_functions): Bind gdbscm_frame_read_register to | |
2648 | frame-read-register. | |
2649 | * guile/lib/gdb.scm (frame-read-register): Export. | |
2650 | ||
b88bb450 GB |
2651 | 2015-04-09 Gary Benson <gbenson@redhat.com> |
2652 | ||
2653 | * common/common-remote-fileio.h (remote_fileio_to_fio_error): | |
2654 | New declaration. | |
2655 | * common/common-remote-fileio.c (remote_fileio_to_fio_error): | |
2656 | New function, factored out the named functions below. | |
2657 | * inf-child.c (gdb/fileio.h): Remove include. | |
2658 | (common-remote-fileio.h): New include. | |
2659 | (inf_child_errno_to_fileio_error): Remove function. Update | |
2660 | all callers to use remote_fileio_to_fio_error. | |
2661 | * remote-fileio.c (remote_fileio_errno_to_target): Likewise. | |
2662 | ||
2f2680f3 AW |
2663 | 2015-04-09 Andy Wingo <wingo@igalia.com> |
2664 | ||
2665 | * MAINTAINERS (Write After Approval): Add Andy Wingo. | |
2666 | ||
5a2d4533 L |
2667 | 2015-04-09 H.J. Lu <hongjiu.lu@intel.com> |
2668 | ||
2669 | * acinclude.m4: (GDB_AC_CHECK_BFD): Set ZLIBDIR with $zlibdir. | |
2670 | Replace $zlibdir with $ZLIBDIR in LDFLAGS. | |
2671 | * configure: Regenerated. | |
2672 | ||
421693b0 PA |
2673 | 2015-04-09 Pedro Alves <palves@redhat.com> |
2674 | ||
2675 | * gnulib/update-gnulib.sh (IMPORTED_GNULIB_MODULES): Add strtok_r. | |
2676 | * gnulib/Makefile.in (aclocal_m4_deps): Add import/m4/strtok_r.m4. | |
2677 | * gnulib/configure, gnulib/config.in, gnulib/aclocal.m4: Regenerate. | |
2678 | * gnulib/import/Makefile.am: Update. | |
2679 | * gnulib/import/Makefile.in: Update. | |
2680 | * gnulib/import/m4/gnulib-cache.m4: Update. | |
2681 | * gnulib/import/m4/gnulib-comp.m4: Update. | |
2682 | * gnulib/import/m4/strtok_r.m4: New file. | |
2683 | * gnulib/import/strtok_r.c: New file. | |
2684 | ||
f543dc83 PA |
2685 | 2015-04-09 Pedro Alves <palves@redhat.com> |
2686 | ||
2687 | * gnulib/update-gnulib.sh (aclocal version check): Filter out | |
2688 | "called too early to check prototype". | |
2689 | ||
6d62641c SDJ |
2690 | 2015-04-08 Sergio Durigan Junior <sergiodj@redhat.com> |
2691 | ||
2692 | PR python/16699 | |
2693 | * python/py-cmd.c (cmdpy_completer_helper): Adjust function to not | |
2694 | use a caching mechanism. Adjust comments and code to reflect | |
2695 | that. Replace 'sizeof' by 'strlen' when fetching 'wordobj'. | |
2696 | (cmdpy_completer_handle_brkchars): Adjust call to | |
2697 | cmdpy_completer_helper. Call Py_XDECREF for 'resultobj'. | |
2698 | (cmdpy_completer): Likewise. | |
2699 | ||
85558555 YQ |
2700 | 2015-04-08 Yao Qi <yao.qi@linaro.org> |
2701 | ||
2702 | * spu-tdep.c (spu_gdbarch_init): Don't call | |
2703 | set_gdbarch_cannot_step_breakpoint. | |
2704 | ||
d249a14a SDJ |
2705 | 2015-04-07 Sergio Durigan Junior <sergiodj@redhat.com> |
2706 | ||
2707 | * linux-tdep.c (decode_vmflags): Initialize 'saveptr'. | |
2708 | ||
8a06aea7 PA |
2709 | 2015-04-07 Pedro Alves <palves@redhat.com> |
2710 | ||
2711 | * gdbthread.h (ALL_NON_EXITED_THREADS_SAFE): Rename to ... | |
2712 | (ALL_THREADS_SAFE): ... this, and don't skip exited threads. | |
2713 | (delete_exited_threads): New declaration. | |
2714 | * infrun.c (follow_exec): Use ALL_THREADS_SAFE. | |
2715 | * linux-nat.c (linux_nat_update_thread_list): New function. | |
2716 | (linux_nat_add_target): Install it. | |
2717 | * remote.c (remote_update_thread_list): Use ALL_THREADS_SAFE. | |
2718 | * thread.c (prune_threads): Use ALL_THREADS_SAFE. | |
2719 | (delete_exited_threads): New function. | |
2720 | ||
d9b67d9f PA |
2721 | 2015-04-07 Pedro Alves <pedro@codesourcery.com> |
2722 | ||
2723 | * infrun.c (resume) <displaced stepping debug output>: Get the | |
2724 | leader thread's regcache, not resume_ptid's. | |
2725 | ||
2c26b84f DE |
2726 | 2015-04-06 Doug Evans <xdje42@gmail.com> |
2727 | ||
2728 | * symtab.c (hash_symbol_entry): Hash STRUCT_DOMAIN symbols as | |
2729 | VAR_DOMAIN. | |
2730 | (symbol_cache_lookup): Clarify use of bsc_ptr, slot_ptr parameters. | |
2731 | Include symbol domain in debugging output. | |
2732 | ||
7a85168d PA |
2733 | 2015-04-06 Pedro Alves <palves@redhat.com> |
2734 | Bernd Edlinger <bernd.edlinger@hotmail.de> | |
2735 | ||
2736 | * configure.ac: Remove the mingw32-specific stub-termcap.o | |
2737 | fallback, and instead fallback to the stub termcap on all hosts. | |
2738 | * configure: Regenerate. | |
2739 | * stub-termcap.c [!__MINGW32__] (PC, BC, UP): Define as weak | |
2740 | symbols. | |
2741 | ||
25755e2b PMR |
2742 | 2015-04-03 Pierre-Marie de Rodat <derodat@adacore.com> |
2743 | ||
2744 | * gdbtypes.c (is_dynamic_type_internal): Remove the unused | |
2745 | "top_level" parameter. | |
2746 | (resolve_dynamic_type_internal): Remove the unused "top_level" | |
2747 | parameter. Update call to is_dynamic_type_internal. | |
2748 | (is_dynamic_type): Update call to is_dynamic_type_internal. | |
2749 | (resolve_dynamic_range): Update call to | |
2750 | resolve_dynamic_type_internal. | |
2751 | (resolve_dynamic_union): Likewise. | |
2752 | (resolve_dynamic_struct): Likewise. | |
2753 | (resolve_dynamic_type): Likewise. | |
2754 | ||
961f4160 PMR |
2755 | 2015-04-03 Pierre-Marie de Rodat <derodat@adacore.com> |
2756 | ||
2757 | * gdbtypes.c (is_dynamic_type_internal): Remove special handling of | |
2758 | TYPE_CODE_REF types so that they are not considered as dynamic | |
2759 | depending on the referenced type. | |
2760 | (resolve_dynamic_type_internal): Likewise. | |
2761 | ||
39f3de7c L |
2762 | 2015-04-02 H.J. Lu <hongjiu.lu@intel.com> |
2763 | ||
2764 | * Makefile.in (top_srcdir): New. | |
2765 | * configure: Regenerated. | |
2766 | ||
599bd15c GB |
2767 | 2015-04-02 Gary Benson <gbenson@redhat.com> |
2768 | ||
2769 | * NEWS: Announce the new default sysroot of "target:". | |
2770 | ||
fed040c6 GB |
2771 | 2015-04-02 Gary Benson <gbenson@redhat.com> |
2772 | ||
2773 | * main.c (captured_main): Set gdb_sysroot to "target:" | |
2774 | if not otherwise set. | |
2775 | ||
64c0b5de GB |
2776 | 2015-04-02 Gary Benson <gbenson@redhat.com> |
2777 | ||
2778 | * exec.c (exec_file_attach): Support "target:" filenames. | |
2779 | ||
b57fbfba GB |
2780 | 2015-04-02 Gary Benson <gbenson@redhat.com> |
2781 | ||
2782 | * solib.c (solib_find): Strip "target:" prefix from sysroot | |
2783 | if accessing local files. | |
2784 | ||
97a41605 GB |
2785 | 2015-04-02 Gary Benson <gbenson@redhat.com> |
2786 | ||
2787 | * symfile.c (symfile_bfd_open): Reorder to remove duplicated | |
2788 | checks and error messages. | |
2789 | ||
2938e6cf GB |
2790 | 2015-04-02 Gary Benson <gbenson@redhat.com> |
2791 | ||
2792 | * remote.h (REMOTE_SYSROOT_PREFIX): Remove definition. | |
2793 | (remote_filename_p): Remove declaration. | |
2794 | (remote_bfd_open): Likewise. | |
2795 | * remote.c (remote_bfd_iovec_open): Remove function. | |
2796 | (remote_bfd_iovec_close): Likewise. | |
2797 | (remote_bfd_iovec_pread): Likewise. | |
2798 | (remote_bfd_iovec_stat): Likewise. | |
2799 | (remote_filename_p): Likewise. | |
2800 | (remote_bfd_open): Likewise. | |
2801 | * symfile.h (gdb_bfd_open_maybe_remote): Remove declaration. | |
2802 | * symfile.c (separate_debug_file_exists): Use gdb_bfd_open. | |
2803 | (gdb_bfd_open_maybe_remote): Remove function. | |
2804 | (symfile_bfd_open): Replace remote filename check with | |
2805 | target filename check. | |
2806 | (reread_symbols): Use gdb_bfd_open. | |
2807 | * build-id.c (gdbcore.h): New include. | |
2808 | (build_id_to_debug_bfd): Use gdb_bfd_open. | |
2809 | * infcmd.c (attach_command_post_wait): Remove remote filename | |
2810 | check. | |
2811 | * solib.c (solib_find): Replace remote-specific handling with | |
2812 | target-specific handling. Update comments where necessary. | |
2813 | (solib_bfd_open): Replace remote-specific handling with | |
2814 | target-specific handling. | |
2815 | (gdb_sysroot_changed): New function. | |
2816 | (_initialize_solib): Call the above when gdb_sysroot changes. | |
2817 | * windows-tdep.c (gdbcore.h): New include. | |
2818 | (windows_xfer_shared_library): Use gdb_bfd_open. | |
2819 | ||
f08e97fe GB |
2820 | 2015-04-02 Gary Benson <gbenson@redhat.com> |
2821 | ||
2822 | * gdb/gdb_bfd.h (TARGET_SYSROOT_PREFIX): New definition. | |
2823 | (is_target_filename): New declaration. | |
2824 | (gdb_bfd_has_target_filename): Likewise. | |
2825 | (gdb_bfd_open): Update documentation comment. | |
2826 | * gdb_bfd.c (target.h): New include. | |
2827 | (gdb/fileio.h): Likewise. | |
2828 | (is_target_filename): New function. | |
2829 | (gdb_bfd_has_target_filename): Likewise. | |
2830 | (fileio_errno_to_host): Likewise. | |
2831 | (gdb_bfd_iovec_fileio_open): Likewise. | |
2832 | (gdb_bfd_iovec_fileio_pread): Likewise. | |
2833 | (gdb_bfd_iovec_fileio_close): Likewise. | |
2834 | (gdb_bfd_iovec_fileio_fstat): Likewise. | |
2835 | (gdb_bfd_open): Use target fileio to access paths prefixed | |
2836 | with "target:" where necessary. | |
2837 | ||
4bd7dc42 GB |
2838 | 2015-04-02 Gary Benson <gbenson@redhat.com> |
2839 | ||
2840 | * target.h (struct target_ops) <to_filesystem_is_local>: | |
2841 | New field. | |
2842 | (target_filesystem_is_local): New macro. | |
2843 | * target-delegates.c: Regenerate. | |
2844 | * remote.c (remote_filesystem_is_local): New function. | |
2845 | (init_remote_ops): Initialize to_filesystem_is_local. | |
2846 | ||
9b15c1f0 GB |
2847 | 2015-04-02 Gary Benson <gbenson@redhat.com> |
2848 | ||
2849 | * target.h (struct target_ops) <to_fileio_fstat>: New field. | |
2850 | (target_fileio_fstat): New declaration. | |
2851 | * target.c (target_fileio_fstat): New function. | |
2852 | * inf-child.c (inf_child_fileio_fstat): Likewise. | |
2853 | (inf_child_target): Initialize to_fileio_fstat. | |
2854 | * remote.c (init_remote_ops): Likewise. | |
2855 | ||
d11916aa SS |
2856 | 2015-04-01 Sasha Smundak <asmundak@google.com> |
2857 | ||
2858 | * Makefile.in (SUBDIR_PYTHON_OBJS): Add py-unwind.o. | |
2859 | (SUBDIR_PYTHON_SRCS): Add py-unwind.c. | |
2860 | (py-unwind.o): New recipe. | |
2861 | * NEWS: mention Python frame unwinding. | |
2862 | * data-directory/Makefile.in (PYTHON_FILE_LIST): Add | |
2863 | gdb/unwinder.py and gdb/command/unwinder.py | |
2864 | * python/lib/gdb/__init__.py (packages): Add frame_unwinders | |
2865 | list. | |
2866 | (execute_unwinders): New function. | |
2867 | * python/lib/gdb/command/unwinders.py: New file. | |
2868 | * python/lib/gdb/unwinder.py: New file. | |
2869 | * python/py-objfile.c (objfile_object): Add frame_unwinders field. | |
2870 | (objfpy_dealloc): Decrement frame_unwinders reference count. | |
2871 | (objfpy_initialize): Create frame_unwinders list. | |
2872 | (objfpy_get_frame_unwinders): New function. | |
2873 | (objfpy_set_frame_unwinders): Ditto. | |
2874 | (objfile_getset): Add frame_unwinders attribute to Objfile. | |
2875 | * python/py-progspace.c (pspace_object): Add frame_unwinders field. | |
2876 | (pspy_dealloc): Decrement frame_unwinders reference count. | |
2877 | (pspy_initialize): Create frame_unwinders list. | |
2878 | (pspy_get_frame_unwinders): New function. | |
2879 | (pspy_set_frame_unwinders): Ditto. | |
2880 | (pspy_getset): Add frame_unwinders attribute to gdb.Progspace. | |
2881 | * python/py-unwind.c: New file. | |
2882 | * python/python-internal.h (pspy_get_name_unwinders): New prototype. | |
2883 | (objpy_get_frame_unwinders): New prototype. | |
2884 | (gdbpy_initialize_unwind): New prototype. | |
2885 | * python/python.c (gdbpy_apply_type_printers): Call | |
2886 | gdbpy_initialize_unwind. | |
2887 | ||
6b403daa PA |
2888 | 2015-04-01 Pedro Alves <palves@redhat.com> |
2889 | ||
2890 | * infrun.c (resume): Check currently_stepping after clearing | |
2891 | stepped_breakpoint, not before. | |
2892 | ||
1176ecec PA |
2893 | 2015-04-01 Pedro Alves <palves@redhat.com> |
2894 | ||
2895 | * infrun.c (print_target_wait_results): Print all the ptid | |
2896 | elements. | |
2897 | ||
de1fe8c8 PA |
2898 | 2015-04-01 Pedro Alves <palves@redhat.com> |
2899 | ||
2900 | * infrun.c (keep_going): Also discard cleanups if inserting | |
2901 | breakpoints fails. | |
2902 | ||
e6f5c25b PA |
2903 | 2015-04-01 Pedro Alves <palves@redhat.com> |
2904 | ||
2905 | * infrun.c (wait_for_inferior): Install the | |
2906 | finish_thread_state_cleanup cleanup across the whole function, not | |
2907 | just around handle_inferior_event. | |
2908 | ||
1ac806b8 PA |
2909 | 2015-04-01 Pedro Alves <palves@redhat.com> |
2910 | ||
2911 | * infrun.c (resume) <step past permanent breakpoint>: Use | |
2912 | do_target_resume. | |
2913 | ||
2ee52aa4 PA |
2914 | 2015-04-01 Pedro Alves <palves@redhat.com> |
2915 | ||
2916 | * linux-nat.c (linux_handle_extended_wait): Always call set_running. | |
2917 | ||
5445da1b PMR |
2918 | 2015-04-01 Pierre-Marie de Rodat <derodat@adacore.com> |
2919 | ||
2920 | * MAINTAINERS (Write After Approval): Add "Pierre-Marie de Rodat". | |
2921 | ||
4eec2deb PA |
2922 | 2015-04-01 Pedro Alves <palves@redhat.com> |
2923 | ||
2924 | * linux-thread-db.c (record_thread): Readd the thread to gdb's | |
2925 | list if it was marked exited. | |
2926 | ||
afa59b79 L |
2927 | 2015-04-01 H.J. Lu <hongjiu.lu@intel.com> |
2928 | ||
2929 | * configure: Regenerated. | |
2930 | ||
df8411da SDJ |
2931 | 2015-03-31 Sergio Durigan Junior <sergiodj@redhat.com> |
2932 | Jan Kratochvil <jan.kratochvil@redhat.com> | |
2933 | Oleg Nesterov <oleg@redhat.com> | |
2934 | ||
2935 | PR corefiles/16092 | |
2936 | * linux-tdep.c: Include 'gdbcmd.h' and 'gdb_regex.h'. | |
2937 | New enum identifying the various options of the coredump_filter | |
2938 | file. | |
2939 | (struct smaps_vmflags): New struct. | |
2940 | (use_coredump_filter): New variable. | |
2941 | (decode_vmflags): New function. | |
2942 | (mapping_is_anonymous_p): Likewise. | |
2943 | (dump_mapping_p): Likewise. | |
2944 | (linux_find_memory_regions_full): New variables | |
2945 | 'coredumpfilter_name', 'coredumpfilterdata', 'pid', 'filterflags'. | |
2946 | Removed variable 'modified'. Read /proc/<PID>/smaps file; improve | |
2947 | parsing of its information. Implement memory mapping filtering | |
2948 | based on its contents. | |
2949 | (show_use_coredump_filter): New function. | |
2950 | (_initialize_linux_tdep): New command 'set use-coredump-filter'. | |
2951 | * NEWS: Mention the possibility of using the | |
2952 | '/proc/PID/coredump_filter' file when generating a corefile. | |
2953 | Mention new command 'set use-coredump-filter'. | |
2954 | ||
416f679e SDJ |
2955 | 2015-03-31 Sergio Durigan Junior <sergiodj@redhat.com> |
2956 | ||
2957 | * solib-svr4.c (solib_svr4_r_ldsomap): Catch possible exception by | |
2958 | read_memory_unsigned_integer. | |
2959 | ||
711a72d3 L |
2960 | 2015-03-31 H.J. Lu <hongjiu.lu@intel.com> |
2961 | ||
2962 | * Makefile.in (ZLIB): New. | |
2963 | (ZLIBINC): Likewise. | |
2964 | (INTERNAL_CFLAGS_BASE): Add $(ZLIBINC). | |
2965 | (CLIBS): Add $(ZLIB). | |
2966 | * acinclude.m4: (GDB_AC_CHECK_BFD): Add $zlibdir to LDFLAGS. | |
2967 | Add -lz to LIBS. | |
2968 | * gdb_bfd.c: Don't check HAVE_ZLIB_H to include <zlib.h>. | |
2969 | * top.c (print_gdb_configuration): Remove --with-zlib and | |
2970 | --without-zlib. | |
2971 | * config.in: Regenerated. | |
2972 | * configure: Likewise. | |
2973 | ||
d33279b3 AT |
2974 | 2015-03-31 Antoine Tremblay <antoine.tremblay@ericsson.com> |
2975 | ||
2976 | * NEWS: Mention info os cpus support. | |
2977 | * gdb/nat/linux-osdata.c (linux_xfer_osdata_cpus): New function. | |
2978 | (struct osdata_type): Add cpus entry, reorder the entries in | |
2979 | alphabetical order. | |
2980 | ||
71b30f27 MK |
2981 | 2015-03-31 Matthias Klose <doko@ubuntu.com> |
2982 | ||
2983 | * compile/compile.c (compile_to_object): Allow triplets with or | |
2984 | without vendor set. | |
2985 | ||
13ce9222 DE |
2986 | 2015-03-30 Doug Evans <dje@google.com> |
2987 | ||
2988 | PR c++/18141 | |
2989 | * cp-namespace.c (cp_search_static_and_baseclasses): Always look for | |
2990 | klass in VAR_DOMAIN. | |
2991 | ||
20f796c9 GB |
2992 | 2015-03-30 Gary Benson <gbenson@redhat.com> |
2993 | ||
2994 | * remote.c (remote_mourn_1): Remove function. Update all callers | |
2995 | to use remote_mourn. | |
2996 | (extended_remote_mourn_1): Remove function. Update all callers | |
2997 | to use extended_remote_mourn. | |
2998 | (extended_remote_attach_1): Remove function. Update all callers | |
2999 | to use extended_remote_attach. | |
3000 | ||
49d45b20 JB |
3001 | 2015-03-28 James Bowman <james.bowman@ftdichip.com> |
3002 | ||
3003 | * Makefile.in (ALL_TARGET_OBS): Add ft32-tdep.o. | |
3004 | (HFILES_NO_SRCDIR): Add ft32-tdep.h. | |
3005 | (ALLDEPFILES): Add ft32-tdep.c. | |
3006 | * configure.tgt: Add FT32 entry. | |
3007 | * ft32-tdep.c: New file, FT32 target-dependent code. | |
3008 | * ft32-tdep.h: New file, FT32 target-dependent code. | |
3009 | ||
1c4ff080 JK |
3010 | 2015-03-27 Jan Kratochvil <jan.kratochvil@redhat.com> |
3011 | ||
3012 | Revert: | |
3013 | 2015-03-26 Jan Kratochvil <jan.kratochvil@redhat.com> | |
3014 | Code cleanup. | |
3015 | * printcmd.c (print_command_1): Move expr variable scope. | |
3016 | ||
79498702 JB |
3017 | 2015-03-27 Joel Brobecker <brobecker@adacore.com> |
3018 | ||
3019 | * dtrace-probe.c (dtrace_process_dof_probe): Initialize expr to NULL. | |
3020 | ||
ce9c0ca1 AK |
3021 | 2015-03-27 Andrzej Kaczmarek <andrzej.kaczmarek@tieto.com> |
3022 | ||
3023 | * gdb_bfd.c (gdb_bfd_section_index): Fix off-by-one for special | |
3024 | sections. | |
3025 | ||
429e1e81 JB |
3026 | 2015-03-26 Joel Brobecker <brobecker@adacore.com> |
3027 | ||
3028 | * dtrace-probe.c (dtrace_process_dof_probe): Contain any | |
3029 | exception raised while parsing the probe arguments. | |
3030 | Force parsing to be done using the C language parser. | |
3031 | * expression.h (parse_expression_with_language): Declare. | |
3032 | * parse.c (parse_expression_with_language): New function. | |
3033 | ||
4593441b JT |
3034 | 2015-03-26 Jon Turney <jon.turney@dronecode.org.uk> |
3035 | ||
3036 | * MAINTAINERS (Write After Approval): Add "Jon Turney". | |
3037 | ||
ff908ebf AW |
3038 | 2015-03-26 Andy Wingo <wingo@igalia.com> |
3039 | ||
3040 | PR symtab/18148 | |
3041 | * dwarf2read.c (struct partial_die_info): Add has_const_value | |
3042 | member. | |
3043 | (add_partial_symbol): Don't punt on symbols that have const_value | |
3044 | attributes. | |
3045 | (read_partial_die): Detect DW_AT_const_value. | |
3046 | ||
f30d5c78 JK |
3047 | 2015-03-26 Jan Kratochvil <jan.kratochvil@redhat.com> |
3048 | ||
3049 | Code cleanup. | |
3050 | * printcmd.c (print_command_1): Move expr variable scope. | |
3051 | ||
8d89f51a JK |
3052 | 2015-03-26 Jan Kratochvil <jan.kratochvil@redhat.com> |
3053 | ||
3054 | Code cleanup. | |
3055 | * printcmd.c (validate_format): Make the parameter cmdname const. | |
3056 | ||
0b736949 DB |
3057 | 2015-03-26 Don Breazeal <donb@codesourcery.com> |
3058 | ||
3059 | * remote.c (_initialize_remote): Update comment. | |
3060 | ||
20d35291 PA |
3061 | 2015-03-26 Pedro Alves <palves@redhat.com> |
3062 | Jon TURNEY <jon.turney@dronecode.org.uk> | |
3063 | ||
3064 | * coffread.c (coff_symfile_read): When constructing the name of an | |
3065 | import stub symbol from import symbol for amd64, only skip the | |
3066 | char after _imp_ if the target is underscored (like i386) and the | |
3067 | char is indeed the target's leading char. | |
3068 | ||
6a3753b3 PA |
3069 | 2015-03-25 Pedro Alves <palves@redhat.com> |
3070 | ||
3071 | * target.h <to_async>: Replace 'callback' and 'context' parameters | |
3072 | with boolean 'enable' parameter. | |
3073 | (target_async): Replace CALLBACK and CONTEXT parameters with | |
3074 | boolean ENABLE parameter. | |
3075 | * inf-loop.c (inferior_event_handler): Adjust. | |
3076 | * linux-nat.c (linux_nat_attach, linux_nat_resume) | |
3077 | (linux_nat_resume): Adjust. | |
3078 | (async_client_callback, async_client_context): Delete. | |
3079 | (handle_target_event): Call inferior_event_handler directly. | |
3080 | (linux_nat_async): Replace 'callback' and 'context' parameters | |
3081 | with boolean 'enable' parameter. Adjust. Remove references to | |
3082 | async_client_callback and async_client_context. | |
3083 | (linux_nat_close): Adjust. | |
3084 | * record-btrace.c (record_btrace_async): Replace 'callback' and | |
3085 | 'context' parameters with boolean 'enable' parameter. Adjust. | |
3086 | (record_btrace_resume): Adjust. | |
3087 | * record-full.c (record_full_async): Replace 'callback' and | |
3088 | 'context' parameters with boolean 'enable' parameter. Adjust. | |
3089 | (record_full_resume, record_full_core_resume): Adjust. | |
3090 | * remote.c (struct remote_state) <async_client_callback, | |
3091 | async_client_context>: Delete fields. | |
3092 | (remote_start_remote, extended_remote_attach_1, remote_resume) | |
3093 | (extended_remote_create_inferior): Adjust. | |
3094 | (remote_async_serial_handler): Call inferior_event_handler | |
3095 | directly. | |
3096 | (remote_async): Replace 'callback' and 'context' parameters with | |
3097 | boolean 'enable' parameter. Adjust. | |
3098 | * top.c (gdb_readline_wrapper_cleanup, gdb_readline_wrapper): | |
3099 | Adjust. | |
3100 | * target-delegates.c: Regenerate. | |
3101 | ||
1c4b552b GB |
3102 | 2015-03-25 Gary Benson <gbenson@redhat.com> |
3103 | Pedro Alves <palves@redhat.com> | |
3104 | ||
3105 | * target.c (fileio_ft_t): New typedef, define object vector. | |
3106 | (fileio_fhandles): New static variable. | |
3107 | (is_closed_fileio_fh): New macro. | |
3108 | (lowest_closed_fd): New static variable. | |
3109 | (acquire_fileio_fd): New function. | |
3110 | (release_fileio_fd): Likewise. | |
3111 | (fileio_fd_to_fh): New macro. | |
3112 | (target_fileio_open): Wrap the file descriptor on success. | |
3113 | (target_fileio_pwrite): Updated to use wrapped file descriptor. | |
3114 | (target_fileio_pread): Likewise. | |
3115 | (target_fileio_close): Likewise. | |
3116 | ||
a25d8bf9 PA |
3117 | 2015-03-24 Pedro Alves <palves@redhat.com> |
3118 | ||
3119 | * thread.c (thread_apply_all_command): Take exited threads into | |
3120 | account. | |
3121 | ||
44a1ee51 PA |
3122 | 2015-03-24 Pedro Alves <palves@redhat.com> |
3123 | ||
3124 | * infrun.c (resume, proceed): Mention | |
3125 | switch_back_to_stepped_thread, not switch_back_to_stepping. | |
3126 | ||
f3263aa4 PA |
3127 | 2015-03-24 Pedro Alves <palves@redhat.com> |
3128 | ||
3129 | * infrun.c (user_visible_resume_ptid): Rewrite going from | |
3130 | most-locked to unlocked instead of the opposite. Move comment ... | |
3131 | * infrun.h (user_visible_resume_ptid): ... here. | |
3132 | ||
2bf6fb9d PA |
3133 | 2015-03-24 Pedro Alves <palves@redhat.com> |
3134 | ||
3135 | * linux-nat.c (linux_nat_resume): Output debug logs before trying | |
3136 | to resume the event lwp. Use the lwp's ptid instead of the passed | |
3137 | in (maybe wildcard) ptid. | |
3138 | (stop_wait_callback): Tweak debug log output. | |
3139 | (check_stopped_by_breakpoint): Tweak debug log output. Also dump | |
3140 | TRAP_TRACE. | |
3141 | (linux_nat_filter_event): In debug output, distinguish a | |
3142 | resume_stop SIGSTOP from a delayed SIGSTOP. Output debug logs | |
3143 | before trying to resume the lwp. | |
3144 | ||
283a9958 JB |
3145 | 2015-03-24 Joel Brobecker <brobecker@adacore.com> |
3146 | ||
3147 | * gdbtypes.h (struct dynamic_prop_list) <prop>: Remove | |
3148 | pointer indirection. | |
3149 | * gdbtypes.c (get_dyn_prop): Adjust, following change above. | |
3150 | (add_dyn_prop, copy_dynamic_prop_list): Likewise. | |
3151 | ||
93a8e227 JB |
3152 | 2015-03-24 Joel Brobecker <brobecker@adacore.com> |
3153 | ||
3154 | * gdbtypes.h (enum dynamic_prop_node_kind) <DYN_PROP_DATA_LOCATION>: | |
3155 | Renames DYN_ATTR_DATA_LOCATION. | |
3156 | (TYPE_DATA_LOCATION): Use DYN_PROP_DATA_LOCATION instead of | |
3157 | DYN_ATTR_DATA_LOCATION. | |
3158 | * dwarf2read.c (set_die_type): Use DYN_PROP_DATA_LOCATION | |
3159 | instead of DYN_ATTR_DATA_LOCATION. | |
3160 | ||
64ce06e4 PA |
3161 | 2015-03-24 Pedro Alves <palves@redhat.com> |
3162 | ||
3163 | * breakpoint.c (until_break_command): Adjust call to proceed. | |
3164 | * gdbthread.h (struct thread_control_state) <stepping_command>: | |
3165 | New field. | |
3166 | * infcall.c (run_inferior_call): Adjust call to proceed. | |
3167 | * infcmd.c (run_command_1, proceed_thread_callback, continue_1): | |
3168 | Adjust calls to proceed. | |
3169 | (set_step_frame): Set the current thread's step_start_function | |
3170 | here. | |
3171 | (step_once): Adjust calls to proceed. | |
3172 | (jump_command, signal_command, until_next_command) | |
3173 | (finish_backward, finish_forward, proceed_after_attach_callback) | |
3174 | (attach_command_post_wait): Adjust calls to proceed. | |
3175 | * infrun.c (proceed_after_vfork_done): Adjust call to proceed. | |
3176 | (do_target_resume): New function, factored out from ... | |
3177 | (resume): ... here. Remove 'step' parameter. Instead, check | |
3178 | currently_stepping to determine whether the thread should be | |
3179 | single-stepped. | |
3180 | (proceed): Remove 'step' parameter and don't set the thread's | |
3181 | step_start_function here. Adjust call to 'resume'. | |
3182 | (handle_inferior_event): Adjust calls to 'resume'. | |
3183 | (switch_back_to_stepped_thread): Use do_target_resume instead of | |
3184 | 'resume'. | |
3185 | (keep_going): Adjust calls to 'resume'. | |
3186 | * infrun.h (proceed): Remove 'step' parameter. | |
3187 | (resume): Likewise. | |
3188 | * windows-nat.c (do_initial_windows_stuff): Adjust call to | |
3189 | 'resume'. | |
3190 | * mi/mi-main.c (proceed_thread): Adjust call to 'proceed'. | |
3191 | ||
856e7dd6 PA |
3192 | 2015-03-24 Pedro Alves <palves@redhat.com> |
3193 | ||
3194 | * gdbthread.h (struct thread_control_state) <stepping_command>: | |
3195 | New field. | |
3196 | * infcmd.c (step_once): Pass step=1 to clear_proceed_status. Set | |
3197 | the thread's stepping_command field. | |
3198 | * infrun.c (resume): Check the thread's stepping_command flag to | |
3199 | determine which threads should be resumed. Rename 'entry_step' | |
3200 | local to user_step. | |
3201 | (clear_proceed_status_thread): Clear 'stepping_command'. | |
3202 | (schedlock_applies): Change parameter type to struct thread_info | |
3203 | pointer. Adjust. | |
3204 | (find_thread_needs_step_over): Remove 'step' parameter. Adjust. | |
3205 | (switch_back_to_stepped_thread): Adjust calls to | |
3206 | 'schedlock_applies'. | |
3207 | (_initialize_infrun): Adjust "set scheduler-locking step" help. | |
3208 | ||
885eeb5b PA |
3209 | 2015-03-24 Pedro Alves <palves@redhat.com> |
3210 | ||
3211 | * infrun.c (step_start_function): Delete and ... | |
3212 | * gdbthread.h (struct thread_control_state) <step_start_function>: | |
3213 | ... now a field here. | |
3214 | * infrun.c (clear_proceed_status_thread): Clear the thread's | |
3215 | step_start_function. | |
3216 | (proceed, process_event_stop_test, print_stop_event): Adjust. | |
3217 | ||
3333f03a PA |
3218 | 2015-03-24 Pedro Alves <palves@redhat.com> |
3219 | ||
3220 | * infrun.c (proceed): No longer handle negative step. | |
3221 | ||
369f6daa GB |
3222 | 2015-03-24 Gary Benson <gbenson@redhat.com> |
3223 | ||
3224 | * nat/x86-linux.h (x86_linux_new_thread): New declaration. | |
3225 | (x86_linux_prepare_to_resume): Likewise. | |
3226 | * x86-linux-nat.c (x86_linux_new_thread): | |
3227 | Moved to nat/x86-linux.c. | |
3228 | (x86_linux_prepare_to_resume): Likewise. | |
3229 | * nat/x86-linux.c (x86_linux_new_thread): New function. | |
3230 | (x86_linux_prepare_to_resume): Likewise. | |
3231 | ||
8e5d4070 GB |
3232 | 2015-03-24 Gary Benson <gbenson@redhat.com> |
3233 | ||
3234 | * nat/x86-linux-dregs.h: New file. | |
3235 | * nat/x86-linux-dregs.c: Likewise. | |
3236 | * Makefile.in (HFILES_NO_SRCDIR): Add nat/x86-linux-dregs.h. | |
3237 | (x86-linux-dregs.o): New rule. | |
3238 | * config/i386/linux.mh (NATDEPFILES): Add x86-linux-dregs.o. | |
3239 | * config/i386/linux64.mh (NATDEPFILES): Likewise. | |
3240 | * x86-linux-nat.c: Include nat/x86-linux-dregs.h. | |
3241 | (u_debugreg_offset): Moved to nat/x86-linux-dregs.c. | |
3242 | (x86_linux_dr_get): Likewise. | |
3243 | (x86_linux_dr_set): Likewise. | |
3244 | (x86_linux_dr_get_addr): Likewise. | |
3245 | (x86_linux_dr_get_control): Likewise. | |
3246 | (x86_linux_dr_get_status): Likewise. | |
3247 | (update_debug_registers_callback): Likewise. | |
3248 | (x86_linux_dr_set_control): Likewise. | |
3249 | (x86_linux_dr_set_addr): Likewise. | |
3250 | (x86_linux_update_debug_registers): Likewise. | |
3251 | ||
2b95d440 GB |
3252 | 2015-03-24 Gary Benson <gbenson@redhat.com> |
3253 | ||
3254 | * x86-linux-nat.c (x86_linux_update_debug_registers): | |
3255 | New function, factored out from... | |
3256 | (x86_linux_prepare_to_resume): ...this. | |
3257 | ||
14b0bc68 GB |
3258 | 2015-03-24 Gary Benson <gbenson@redhat.com> |
3259 | ||
3260 | * x86-linux-nat.c (x86_linux_dr_get): Update comments. | |
3261 | (x86_linux_dr_set): Likewise. | |
3262 | (x86_linux_dr_get_addr): Likewise. | |
3263 | (x86_linux_dr_get_control): Likewise. | |
3264 | (x86_linux_dr_get_status): Likewise. | |
3265 | (update_debug_registers_callback): Likewise. | |
3266 | (x86_linux_dr_set_control): Likewise. | |
3267 | (x86_linux_dr_set_addr): Likewise. | |
3268 | (x86_linux_prepare_to_resume): Likewise. | |
3269 | (x86_linux_new_thread): Likewise. | |
3270 | ||
5dfe6ca8 GB |
3271 | 2015-03-24 Gary Benson <gbenson@redhat.com> |
3272 | ||
3273 | * x86-linux-nat.c (x86_linux_dr_set_addr): Update assertion. | |
3274 | (x86_linux_new_thread): Rename argument. | |
3275 | ||
4b134ca1 GB |
3276 | 2015-03-24 Gary Benson <gbenson@redhat.com> |
3277 | ||
3278 | * nat/x86-linux.h: New file. | |
3279 | * nat/x86-linux.c: Likewise. | |
3280 | * Makefile.in (HFILES_NO_SRCDIR): Add nat/x86-linux.h. | |
3281 | (x86-linux.o): New rule. | |
3282 | * config/i386/linux.mh (NATDEPFILES): Add x86-linux.o. | |
3283 | * config/i386/linux64.mh (NATDEPFILES): Likewise. | |
3284 | * nat/linux-nat.h (struct arch_lwp_info): New forward declaration. | |
3285 | (lwp_set_arch_private_info): New declaration. | |
3286 | (lwp_arch_private_info): Likewise. | |
3287 | * linux-nat.c (lwp_set_arch_private_info): New function. | |
3288 | (lwp_arch_private_info): Likewise. | |
3289 | * x86-linux-nat.c: Include nat/x86-linux.h. | |
3290 | (arch_lwp_info): Removed structure. | |
3291 | (update_debug_registers_callback): | |
3292 | Use lwp_set_debug_registers_changed. | |
3293 | (x86_linux_prepare_to_resume): Use lwp_debug_registers_changed | |
3294 | and lwp_set_debug_registers_changed. | |
3295 | (x86_linux_new_thread): Use lwp_set_debug_registers_changed. | |
3296 | ||
cff068da GB |
3297 | 2015-03-24 Gary Benson <gbenson@redhat.com> |
3298 | ||
3299 | * nat/linux-nat.h (ptid_of_lwp): New declaration. | |
3300 | (lwp_is_stopped): Likewise. | |
3301 | (lwp_stop_reason): Likewise. | |
3302 | * linux-nat.c (ptid_of_lwp): New function. | |
3303 | (lwp_is_stopped): Likewise. | |
3304 | (lwp_is_stopped_by_watchpoint): Likewise. | |
3305 | * x86-linux-nat.c (update_debug_registers_callback): | |
3306 | Use lwp_is_stopped. | |
3307 | (x86_linux_prepare_to_resume): Use ptid_of_lwp and | |
3308 | lwp_stop_reason. | |
3309 | ||
b2f7c7e8 GB |
3310 | 2015-03-24 Gary Benson <gbenson@redhat.com> |
3311 | ||
3312 | * linux-nat.h (linux_stop_lwp): Move declaration to... | |
3313 | * nat/linux-nat.h (linux_stop_lwp): New declaration. | |
3314 | ||
6d4ee8c6 GB |
3315 | 2015-03-24 Gary Benson <gbenson@redhat.com> |
3316 | ||
3317 | * linux-nat.h: Include nat/linux-nat.h. | |
3318 | (iterate_over_lwps): Move declaration to nat/linux-nat.h. | |
3319 | * nat/linux-nat.h (struct lwp_info): New forward declaration. | |
3320 | (iterate_over_lwps_ftype): New typedef. | |
3321 | (iterate_over_lwps): New declaration. | |
3322 | * linux-nat.h (iterate_over_lwps): Update comment. Use | |
3323 | iterate_over_lwps_ftype. Update callback return value check. | |
3324 | ||
70a0bb6b GB |
3325 | 2015-03-24 Gary Benson <gbenson@redhat.com> |
3326 | ||
3327 | * x86-nat.h (x86_debug_reg_state): Move declaration to... | |
3328 | * nat/x86-dregs.h (x86_debug_reg_state): New declaration. | |
3329 | ||
7b669087 GB |
3330 | 2015-03-24 Gary Benson <gbenson@redhat.com> |
3331 | ||
3332 | * nat/linux-nat.h (current_lwp_ptid): New declaration. | |
3333 | * linux-nat.c (current_lwp_ptid): New function. | |
3334 | * x86-linux-nat.c: Include nat/linux-nat.h. | |
3335 | (x86_linux_dr_get_addr): Use current_lwp_ptid. | |
3336 | (x86_linux_dr_get_control): Likewise. | |
3337 | (x86_linux_dr_get_status): Likewise. | |
3338 | (x86_linux_dr_set_control): Likewise. | |
3339 | (x86_linux_dr_set_addr): Likewise. | |
3340 | ||
15630549 AT |
3341 | 2015-03-24 Antoine Tremblay <antoine.tremblay@ericsson.com> |
3342 | ||
3343 | PR breakpoints/16466 | |
3344 | * breakpoint.c (create_breakpoint): Set thread on breakpoint struct. | |
3345 | ||
8a4506c0 JB |
3346 | 2015-03-23 Joel Brobecker <brobecker@adacore.com> |
3347 | ||
3348 | * ser-mingw.c (ser_windows_setparity): Fix indentation. | |
3349 | * ser-unix.c (hardwire_setparity): Likewise. | |
3350 | ||
236af5e3 YG |
3351 | 2015-03-23 Yurij Grechishhev <yurij.grechishhev@gmail.com> |
3352 | ||
3353 | * NEWS: Mention set/show serial parity command. | |
3354 | * monitor.c (monitor_open): Call serial_setparity. | |
3355 | * remote.c (remote_open_1): Likewise. | |
3356 | * ser-base.c (ser_base_serparity): New function. | |
3357 | * ser-base.h (ser_base_setparity): Add declaration. | |
3358 | * ser-go32.c (dos_ops): Set "setparity" field. | |
3359 | * ser-mingw.c (ser_windows_raw): Do not set state.fParity and | |
3360 | state.Parity. | |
3361 | (ser_windows_setparity): New function. | |
3362 | (hardwire_ops): Add ser_windows_setparity. | |
3363 | (tty_ops): Add NULL for setparity field. | |
3364 | (pipe_ops): Add ser_base_setparity. | |
3365 | (tcp_ops): Likewise. | |
3366 | * ser-pipe.c (pipe_ops): Likewise. | |
3367 | * ser-tcp.c (tcp_ops): Likewise. | |
3368 | * ser-unix.c (hardwire_setparity): Add declaration. | |
3369 | (hardwire_raw): Don't reset PARENB flag. | |
3370 | (hardwire_setparity): New function. | |
3371 | (hardwire_ops): Add hardwire_setparity. | |
3372 | * serial.c (serial_setparity): New function. | |
3373 | (serial_parity): New global. | |
3374 | (parity_none, parity_odd, parity_even, parity_enums, parity): | |
3375 | New static globals. | |
3376 | (set_parity): New function. | |
3377 | (_initialize_serial): Add set/show serial parity commands. | |
3378 | * serial.h (GDBPARITY_NONE): Define. | |
3379 | (GDBPARITY_ODD): Define. | |
3380 | (GDBPARITY_EVEN): Define. | |
3381 | (serial_setparity) Add declaration. | |
3382 | (struct serial_ops): Add setparity field. | |
3383 | * target.h (serial_parity): Add declaration. | |
3384 | ||
32b40af9 KS |
3385 | 2015-03-23 Keith Seitz <keiths@redhat.com> |
3386 | ||
3387 | * linespec.c (linespec_lexer_lex_keyword): Update comment. | |
3388 | ||
693dca06 KS |
3389 | 2015-03-23 Keith Seitz <keiths@redhat.com> |
3390 | ||
3391 | * breakpoint.c (parse_breakpoint_sals): Use | |
3392 | linespec_lexer_lex_keyword to ascertain if the user specified | |
3393 | a NULL location. | |
3394 | * linespec.c [IF_KEYWORD_INDEX]: Define. | |
3395 | (linespec_lexer_lex_keyword): Export. | |
3396 | (struct ls_parser) <keyword_ok>: Remove. | |
3397 | A keyword is only a keyword if not followed by another keyword. | |
3398 | (linespec_lexer_lex_one): Remove keyword_ok handling. | |
3399 | Add comment explaining why the parsing stream is not advanced | |
3400 | when a keyword is seen. | |
3401 | (parse_linespec): Remove parser->keyword_ok. | |
3402 | * linespec.h (linespec_lexer_lex_keyword): Add declaration. | |
3403 | ||
7e993ebf KS |
3404 | 2015-03-23 Keith Seitz <keiths@redhat.com> |
3405 | ||
3406 | PR gdb/18021 | |
3407 | * dwarf2read.c (dwarf2_add_member_fn): Issue a complaint | |
3408 | if we find a static method with DW_AT_vtable_elem_location. | |
3409 | ||
b1a0f704 EZ |
3410 | 2015-03-21 Eli Zaretskii <eliz@gnu.org> |
3411 | ||
3412 | * tui/tui-io.c (tui_expand_tabs): Reinitialize the column counter | |
3413 | before the second loop, to avoid undefined behavior. Reported by | |
3414 | Anton Blanchard <anton@samba.org>. | |
3415 | ||
d9823cbb KB |
3416 | 2015-03-20 Keven Boell <keven.boell@intel.com> |
3417 | ||
3418 | * gdbtypes.c (resolve_dynamic_type_internal): Adapt | |
3419 | data_location usage to linked list. | |
3420 | (resolve_dynamic_type_internal): Adapt data_location to | |
3421 | linked list. | |
3422 | (get_dyn_prop, add_dyn_prop, copy_dynamic_prop_list): New function. | |
3423 | (copy_type_recursive, copy_type): Add copy of linked list. | |
3424 | * gdbtypes.h (enum dynamic_prop_node_kind): New enum. | |
3425 | (struct dynamic_prop_list): New struct. | |
3426 | * dwarf2read.c (set_die_type): Set data_location data. | |
3427 | ||
2e7bf1d7 PA |
3428 | 2015-03-20 Pedro Alves <palves@redhat.com> |
3429 | ||
3430 | * i386-sol2-tdep.c (i386_sol2_static_transform_name): Move "p" to | |
3431 | inner block and make it const. | |
3432 | * machoread.c (get_archive_prefix_len): Make "lparen" const. | |
3433 | ||
7a26bd4d PA |
3434 | 2015-03-20 Pedro Alves <palves@redhat.com> |
3435 | ||
3436 | * breakpoint.c (set_breakpoint_condition): Make argument "exp" const. | |
3437 | * breakpoint.h (set_breakpoint_condition): Update declaration. | |
3438 | ||
cd46431b PA |
3439 | 2015-03-20 Pedro Alves <palves@redhat.com> |
3440 | ||
3441 | * tui/tui-io.c (tui_expand_tabs): Make "s1" const. | |
3442 | ||
e28566f7 PA |
3443 | 2015-03-20 Pedro Alves <palves@redhat.com> |
3444 | ||
3445 | * xcoffread.c (scan_xcoff_symtab): Make "p" and "q" const. | |
3446 | ||
f6fc92f6 PA |
3447 | 2015-03-20 Pedro Alves <palves@redhat.com> |
3448 | ||
3449 | * remote-m32r-sdi.c (m32r_open): Make "port_str" const. | |
3450 | ||
c32ed3ef PA |
3451 | 2015-03-20 Pedro Alves <palves@redhat.com> |
3452 | ||
3453 | * nto-tdep.c (nto_find_and_open_solib): Make "endian" const. | |
3454 | (nto_init_solib_absolute_prefix): Likewise. | |
3455 | ||
53e78085 PA |
3456 | 2015-03-20 Pedro Alves <palves@redhat.com> |
3457 | ||
3458 | * sparc-sol2-tdep.c (sparc_sol2_static_transform_name): Make "p" const. | |
3459 | * spu-tdep.c (spu_gdbarch_init): Make "name" const. | |
3460 | ||
bc23328c JK |
3461 | 2015-03-20 Jan Kratochvil <jan.kratochvil@redhat.com> |
3462 | ||
3463 | * config/djgpp/README: Remove gdb.hp. | |
3464 | ||
e8ffc436 YQ |
3465 | 2015-03-20 Yao Qi <yao.qi@linaro.org> |
3466 | ||
3467 | * aarch64-tdep.c (aarch64_gdbarch_init): Don't call | |
3468 | set_gdbarch_cannot_step_breakpoint. | |
3469 | ||
23f238d3 PA |
3470 | 2015-03-19 Pedro Alves <palves@redhat.com> |
3471 | ||
3472 | * linux-nat.c (linux_resume_one_lwp): Rename to ... | |
3473 | (linux_resume_one_lwp_throw): ... this. Don't handle ESRCH here, | |
3474 | instead call perror_with_name. | |
3475 | (check_ptrace_stopped_lwp_gone): New function. | |
3476 | (linux_resume_one_lwp): Reimplement as wrapper around | |
3477 | linux_resume_one_lwp_throw that swallows errors if the LWP is | |
3478 | gone. | |
3479 | (resume_stopped_resumed_lwps): Try register reads in TRY/CATCH and | |
3480 | swallows errors if the LWP is gone. Use | |
3481 | linux_resume_one_lwp_throw instead of linux_resume_one_lwp. | |
3482 | ||
eb54c8bf PA |
3483 | 2015-03-19 Pedro Alves <palves@redhat.com> |
3484 | ||
3485 | * linux-nat.c (status_callback): Return early if the LWP has no | |
3486 | status pending. | |
3487 | ||
b90fc188 PA |
3488 | 2015-03-19 Pedro Alves <palves@redhat.com> |
3489 | ||
3490 | * linux-nat.c (select_event_lwp_callback): Update comment to no | |
3491 | longer mention SIGTRAP. | |
3492 | ||
670f82d4 TG |
3493 | 2015-03-18 Tristan Gingold <gingold@adacore.com> |
3494 | ||
3495 | * amd64-windows-tdep.c (amd64_windows_find_unwind_info): Move | |
3496 | redirection code to ... | |
3497 | (amd64_windows_frame_decode_insns): ... Here. Fix in prologue | |
3498 | checks. Fix SAVE_NONVOL operations. Add debug code and comments. | |
3499 | ||
464b0089 GB |
3500 | 2015-03-18 Gary Benson <gbenson@redhat.com> |
3501 | ||
3502 | (remote_protocol_features): Remove the "vFile:fstat" feature. | |
3503 | (remote_hostio_fstat): Probe for "vFile:fstat" support. | |
3504 | ||
f68f11b7 YQ |
3505 | 2015-03-11 Yao Qi <yao.qi@linaro.org> |
3506 | ||
3507 | PR tdep/18107 | |
3508 | * aarch64-linux-tdep.c: Include xml-syscall.h | |
3509 | (aarch64_linux_get_syscall_number): New function. | |
3510 | (aarch64_linux_init_abi): Call | |
3511 | set_gdbarch_get_syscall_number. | |
3512 | * syscalls/aarch64-linux.xml: New file. | |
3513 | ||
393bd0c0 YG |
3514 | 2015-03-17 Yurij Grechishhev <yurij.grechishhev@gmail.com> |
3515 | ||
3516 | * ser-base.h (ser_base_setstopbits): Change second argument name | |
3517 | from "rate" to "num". | |
3518 | ||
7f3647e2 GB |
3519 | 2015-03-17 Gary Benson <gbenson@redhat.com> |
3520 | Luke Allardyce <lukeallardyce@gmail.com> | |
3521 | ||
3522 | PR gdb/18131 | |
3523 | * common/common-remote-fileio.h (sys/stat.h): New include. | |
3524 | (stuct stat): Remove forward declaration. | |
3525 | ||
3ce5b6e2 JB |
3526 | 2015-03-16 John Baldwin <jhb@FreeBSD.org> |
3527 | ||
3528 | * fbsd-tdep.c (fbsd_make_corefile_notes): Fetch all target registers | |
3529 | before writing core register notes. | |
3530 | ||
d053f6be YZ |
3531 | 2015-03-16 Yuanhui Zhang <asmwarrior@gmail.com> |
3532 | Pedro Alves <palves@redhat.com> | |
3533 | ||
3534 | * gdb_curses.h (tgetnum): Mark with EXTERN_C. | |
3535 | * stub-termcap.c (tgetent, tgetnum, tgetflag, tgetstr, tputs) | |
3536 | (tgoto): Wrap with extern "C". | |
3537 | ||
b1a921c8 PA |
3538 | 2015-03-16 Pedro Alves <palves@redhat.com> |
3539 | Yuanhui Zhang <asmwarrior@gmail.com> | |
3540 | ||
3541 | * stub-termcap.c (tputs): Change prototype. | |
3542 | ||
876d1cd7 YZ |
3543 | 2015-03-16 Yuanhui Zhang <asmwarrior@gmail.com> |
3544 | Pedro Alves <palves@redhat.com> | |
3545 | ||
3546 | * windows-nat.c (struct thread_info_struct): Rename to ... | |
3547 | (struct windows_thread_info_struct): ... this. | |
3548 | (thread_info): Rename to ... | |
3549 | (windows_thread_info): ... this. | |
3550 | All users updated. | |
3551 | ||
0800b440 JK |
3552 | 2015-03-14 Jan Kratochvil <jan.kratochvil@redhat.com> |
3553 | Pedro Alves <palves@redhat.com> | |
3554 | ||
3555 | * NEWS: New Removed targets and native configurations. | |
3556 | ||
3557 | 2015-03-13 Jan Kratochvil <jan.kratochvil@redhat.com> | |
61a12cfa JK |
3558 | |
3559 | Remove HPUX. | |
3560 | * Makefile.in (ALL_64_TARGET_OBS): Remove ia64-hpux-tdep.o. | |
3561 | (ALL_TARGET_OBS): Remove hppa-hpux-tdep.o, solib-som.o and solib-pa64.o. | |
3562 | (HFILES_NO_SRCDIR): Remove solib-som.h, inf-ttrace.h, solib-pa64.h and | |
3563 | ia64-hpux-tdep.h, solib-ia64-hpux.h. | |
3564 | (ALLDEPFILES): Remove hppa-hpux-tdep.c, hppa-hpux-nat.c, | |
3565 | ia64-hpux-nat.c, ia64-hpux-tdep.c, somread.c and solib-som.c. | |
3566 | * config/djgpp/fnchange.lst: Remove hppa-hpux-nat.c and | |
3567 | hppa-hpux-tdep.c. | |
3568 | * config/ia64/hpux.mh: Remove file. | |
3569 | * config/pa/hpux.mh: Remove file. | |
3570 | * configure: Rebuilt. | |
3571 | * configure.ac (dlgetmodinfo, somread.o): Remove. | |
3572 | * configure.host (hppa*-*-hpux*, ia64-*-hpux*): Make them obsolete. | |
3573 | (ia64-*-hpux*): Remove its float format exception. | |
3574 | * configure.tgt (hppa*-*-hpux*, ia64-*-hpux*): Make them obsolete. | |
3575 | * hppa-hpux-nat.c: Remove file. | |
3576 | * hppa-hpux-tdep.c: Remove file. | |
3577 | * hppa-tdep.c (struct hppa_unwind_info, struct hppa_objfile_private): | |
3578 | Move them here from hppa-tdep.h | |
3579 | (hppa_objfile_priv_data, hppa_init_objfile_priv_data): Make it static. | |
3580 | (hppa_frame_prev_register_helper): Remove HPPA_FLAGS_REGNUM exception. | |
3581 | * hppa-tdep.h (struct hppa_unwind_info, struct hppa_objfile_private): | |
3582 | Move them to hppa-tdep.c. | |
3583 | (hppa_objfile_priv_data, hppa_init_objfile_priv_data): Remove | |
3584 | declarations. | |
3585 | * ia64-hpux-nat.c: Remove file. | |
3586 | * ia64-hpux-tdep.c: Remove file. | |
3587 | * ia64-hpux-tdep.h: Remove file. | |
3588 | * inf-ttrace.c: Remove file. | |
3589 | * inf-ttrace.h: Remove file. | |
3590 | * solib-ia64-hpux.c: Remove file. | |
3591 | * solib-ia64-hpux.h: Remove file. | |
3592 | * solib-pa64.c: Remove file. | |
3593 | * solib-pa64.h: Remove file. | |
3594 | * solib-som.c: Remove file. | |
3595 | * solib-som.h: Remove file. | |
3596 | * somread.c: Remove file. | |
3597 | ||
25268153 JB |
3598 | 2015-03-13 John Baldwin <jhb@FreeBSD.org> |
3599 | ||
3600 | * configure.ac: AC_SEARCH_LIBS(kinfo_getvmmap, util). | |
3601 | * config.in: Regenerate. | |
3602 | * configure: Regenerate. | |
3603 | * fbsd-nat.c [!HAVE_KINFO_GETVMMAP] (fbsd_read_mapping): Don't | |
3604 | define. | |
3605 | (fbsd_find_memory_regions): Use kinfo_getvmmap to | |
3606 | enumerate memory regions if present. | |
3607 | ||
773eacf5 JB |
3608 | 2015-03-13 John Baldwin <jhb@FreeBSD.org> |
3609 | ||
3610 | * amd64fbsd-tdep.c (amd64fbsd_sigtramp_p): Style fixes. | |
3611 | * i386fbsd-tdep.c: Fix style in various gdb_static_assert | |
3612 | expressions. | |
3613 | (i386fbsd_sigtramp_p): Likewise. | |
3614 | ||
01b6bdb0 JB |
3615 | 2015-03-12 John Baldwin <jhb@FreeBSD.org> |
3616 | ||
3617 | * MAINTAINERS (Write After Approval): Add John Baldwin. | |
3618 | ||
811a659a GB |
3619 | 2015-03-12 Gary Benson <gbenson@redhat.com> |
3620 | ||
3621 | * solib.c (_initialize_solib): Make "set/show sysroot" use | |
3622 | add_setshow_optional_filename_cmd so it can be restored to | |
3623 | empty after being set. | |
3624 | ||
10304ef3 SDJ |
3625 | 2015-03-11 Sergio Durigan Junior <sergiodj@redhat.com> |
3626 | ||
3627 | * Makefile.in (SFILES): New source break-catch-syscall.c. | |
3628 | (COMMON_OBS): New object break-catch-syscall.o. | |
3629 | * break-catch-syscall.c: New file. | |
3630 | * breakpoint.c: Remove inclusion of "xml-syscall.h". | |
3631 | (syscall_catchpoint_p): Move declaration to break-catch-syscall.c | |
3632 | (struct syscall_catchpoint): Likewise. | |
3633 | (dtor_catch_syscall): Likewise. | |
3634 | (catch_syscall_inferior_data): Likewise. | |
3635 | (struct catch_syscall_inferior_data): Likewise. | |
3636 | (get_catch_syscall_inferior_data): Likewise. | |
3637 | (catch_syscall_inferior_data_cleanup): Likewise. | |
3638 | (insert_catch_syscall): Likewise. | |
3639 | (remove_catch_syscall): Likewise. | |
3640 | (breakpoint_hit_catch_syscall): Likewise. | |
3641 | (print_it_catch_syscall): Likewise. | |
3642 | (print_one_catch_syscall): Likewise. | |
3643 | (print_mention_catch_syscall): Likewise. | |
3644 | (print_recreate_catch_syscall): Likewise. | |
3645 | (catch_syscall_breakpoint_ops): Likewise. | |
3646 | (syscall_catchpoint_p): Likewise. | |
3647 | (create_syscall_event_catchpoint): Likewise. | |
3648 | (catch_syscall_split_args): Likewise. | |
3649 | (catch_syscall_command_1): Likewise. | |
3650 | (is_syscall_catchpoint_enabled): Likewise. | |
3651 | (catch_syscall_enabled): Likewise. | |
3652 | (catching_syscall_number): Likewise. | |
3653 | (catch_syscall_completer): Likewise. | |
3654 | (clear_syscall_counts): Likewise. | |
3655 | (initialize_breakpoint_ops): Move initialization of syscall | |
3656 | catchpoints to break-catch-syscall.c. | |
3657 | (_initialize_breakpoint): Move code related to syscall catchpoints | |
3658 | to break-catch-syscall.c. | |
3659 | ||
badd37ce SDJ |
3660 | 2015-03-11 Sergio Durigan Junior <sergiodj@redhat.com> |
3661 | ||
3662 | * breakpoint.c (breakpoint_find_if): New function. | |
3663 | * breakpoint.h (breakpoint_find_if): New prototype. | |
3664 | ||
0a93529c GB |
3665 | 2015-03-11 Gary Benson <gbenson@redhat.com> |
3666 | ||
3667 | * remote-fileio.h (remote_fileio_to_host_stat): New declaration. | |
3668 | * remote-fileio.c (remote_fileio_to_host_uint): New function. | |
3669 | (remote_fileio_to_host_ulong): Likewise. | |
3670 | (remote_fileio_to_host_mode): Likewise. | |
3671 | (remote_fileio_to_host_time): Likewise. | |
3672 | (remote_fileio_to_host_stat): Likewise. | |
3673 | * remote.c (PACKET_vFile_fstat): New enum value. | |
3674 | (remote_protocol_features): Register the "vFile:fstat" feature. | |
3675 | (remote_hostio_fstat): New function. | |
3676 | (remote_bfd_iovec_stat): Use the above. | |
3677 | (_initialize_remote): Register new "set/show remote | |
3678 | hostio-fstat-packet" command. | |
3679 | * symfile.c (separate_debug_file_exists): Update comment. | |
3680 | * NEWS: Announce new vFile:fstat packet. | |
3681 | ||
791c0056 GB |
3682 | 2015-03-11 Gary Benson <gbenson@redhat.com> |
3683 | ||
3684 | * common/common-remote-fileio.h: New file. | |
3685 | * common/common-remote-fileio.c: Likewise. | |
3686 | * Makefile.in (SFILES): Add common/common-remote-fileio.c. | |
3687 | (HFILES_NO_SRCDIR): Add common/common-remote-fileio.h. | |
3688 | (COMMON_OBS): Add common-remote-fileio.o. | |
3689 | (common-remote-fileio.o): New rule. | |
3690 | * remote-fileio.h (common-remote-fileio.h): New include. | |
3691 | * remote-fileio.c (gdb/fileio.h): Do not include. | |
3692 | (remote_fileio_to_be): Moved to common-remote-fileio.h. | |
3693 | (remote_fileio_to_fio_uint): Likewise. | |
3694 | (remote_fileio_to_fio_time): Likewise. | |
3695 | (remote_fileio_mode_to_target): Moved to common-remote-fileio.c. | |
3696 | (remote_fileio_to_fio_mode): Likewise. | |
3697 | (remote_fileio_to_fio_ulong): Likewise. | |
3698 | (remote_fileio_to_fio_stat): Likewise. | |
3699 | ||
1390d0ef AW |
3700 | 2015-03-11 Andy Wingo <wingo@igalia.com> |
3701 | ||
3702 | * guile/scm-value.c (gdbscm_value_dynamic_type): Fix typo in which | |
3703 | we were checking the cached type, not the cached dynamic type. | |
3704 | ||
84a4591a AW |
3705 | 2015-03-11 Andy Wingo <wingo@igalia.com> |
3706 | ||
3707 | * guile/scm-cmd.c (cmdscm_destroyer): Don't xfree the name and | |
3708 | other strings, as these are on the GC'd heap, and will be | |
3709 | collected along with the smob. | |
3710 | ||
85642ba0 AW |
3711 | 2015-03-11 Andy Wingo <wingo@igalia.com> |
3712 | ||
3713 | * guile/scm-objfile.c (gdbscm_objfile_progspace): New function. | |
3714 | (objfile_functions): Bind gdbscm_objfile_progspace to | |
3715 | objfile-progspace. | |
3716 | * guile/lib/gdb.scm: Add objfile-progspace to exports. | |
3717 | ||
92fab5a6 AW |
3718 | 2015-03-11 Andy Wingo <wingo@igalia.com> |
3719 | ||
3720 | * guile/guile.c (_initialize_guile): Disable automatic | |
3721 | finalization, if Guile offers us that possibility. | |
3722 | * guile/guile.c (call_initialize_gdb_module): | |
3723 | * guile/scm-safe-call.c (gdbscm_with_catch): Arrange to run | |
3724 | finalizers in appropriate places. | |
3725 | * configure.ac (AC_TRY_LIBGUILE): Add a check for | |
3726 | scm_set_automatic_finalization_enabled. | |
3727 | * configure: Regenerated. | |
3728 | ||
f054145e AA |
3729 | 2015-03-11 Andreas Arnez <arnez@linux.vnet.ibm.com> |
3730 | ||
3731 | * s390-linux-tdep.c (s390_skip_prologue): Skip the prologue using | |
3732 | SAL, if possible. | |
3733 | ||
18396193 AA |
3734 | 2015-03-11 Andreas Arnez <arnez@linux.vnet.ibm.com> |
3735 | ||
3736 | * s390-linux-nat.c (struct arch_lwp_info): New. | |
3737 | (s390_fix_watch_points): Rename to... | |
3738 | (s390_prepare_to_resume): ...this. Skip the PER info update | |
3739 | unless the watch points have changed. | |
3740 | (s390_refresh_per_info, s390_new_thread): New functions. | |
3741 | (s390_insert_watchpoint): Call s390_refresh_per_info instead of | |
3742 | s390_fix_watch_points. | |
3743 | (s390_remove_watchpoint): Likewise. | |
3744 | (_initialize_s390_nat): Reflect renaming of s390_fix_watch_points. | |
3745 | Register s390_prepare_to_resume. | |
3746 | ||
9eb1356e PA |
3747 | 2015-03-09 Pedro Alves <palves@redhat.com> |
3748 | ||
3749 | Revert: | |
3750 | 2015-03-07 Pedro Alves <palves@redhat.com> | |
3751 | * common/gdb_socket.h: New file. | |
3752 | * ser-tcp.c: Include gdb_socket.h. Don't include netinet/in.h nor | |
3753 | sys/socket.h. | |
3754 | (net_open): Use union gdb_sockaddr_u. | |
3755 | ||
aac331e4 PA |
3756 | 2015-03-07 Pedro Alves <palves@redhat.com> |
3757 | ||
3758 | * configure.ac (build_warnings): Move -Wmissing-prototypes | |
3759 | -Wdeclaration-after-statement -Wmissing-parameter-type | |
3760 | -Wold-style-declaration -Wold-style-definition to the C-specific | |
3761 | set. | |
3762 | * configure: Regenerate. | |
3763 | ||
366c75fc PA |
3764 | 2015-03-07 Pedro Alves <palves@redhat.com> |
3765 | ||
3766 | * common/gdb_socket.h: New file. | |
3767 | * ser-tcp.c: Include gdb_socket.h. Don't include netinet/in.h nor | |
3768 | sys/socket.h. | |
3769 | (net_open): Use union gdb_sockaddr_u. | |
3770 | ||
72df25b2 PA |
3771 | 2015-03-07 Pedro Alves <palves@redhat.com> |
3772 | ||
3773 | * common/common-exceptions.c [!__cplusplus] (enum catcher_state) | |
3774 | (exceptions_state_mc_action_iter) | |
3775 | (exceptions_state_mc_action_iter_1, exceptions_state_mc_catch): | |
3776 | Don't define. | |
3777 | [__cplusplus] (try_scope_depth): New global. | |
3778 | [__cplusplus] (exception_try_scope_entry) | |
3779 | (exception_try_scope_exit, gdb_exception_sliced_copy) | |
3780 | (exception_rethrow): New functions. | |
3781 | (throw_exception): In C++ mode, throw | |
3782 | gdb_exception_RETURN_MASK_QUIT for RETURN_QUIT and | |
3783 | gdb_exception_RETURN_MASK_ERROR for RETURN_ERROR. | |
3784 | (throw_it): In C++ mode, use try_scope_depth. | |
3785 | * common/common-exceptions.h [!__cplusplus] | |
3786 | (exceptions_state_mc_action_iter) | |
3787 | (exceptions_state_mc_action_iter_1, exceptions_state_mc_catch): | |
3788 | Don't declare. | |
3789 | [__cplusplus] (exception_try_scope_entry) | |
3790 | (exception_try_scope_exit, exception_rethrow): Declare. | |
3791 | [__cplusplus] (struct exception_try_scope): New struct. | |
3792 | [__cplusplus] (TRY, CATCH, END_CATCH): Reimplement on top of real | |
3793 | C++ exceptions. | |
3794 | (struct gdb_exception_RETURN_MASK_ALL) | |
3795 | (struct gdb_exception_RETURN_MASK_ERROR) | |
3796 | (struct gdb_exception_RETURN_MASK_QUIT): New types. | |
3797 | ||
284e6217 PA |
3798 | 2015-03-07 Pedro Alves <palves@redhat.com> |
3799 | ||
3800 | * main.c (handle_command_errors): Remove volatile qualifier from | |
3801 | parameter. | |
3802 | ||
6c63c96a PA |
3803 | 2015-03-07 Pedro Alves <palves@redhat.com> |
3804 | ||
3805 | * breakpoint.c (save_breakpoints): Adjust to avoid code between | |
3806 | TRY and CATCH. | |
3807 | * gdbtypes.c (safe_parse_type): Remove empty line. | |
3808 | (types_deeply_equal): | |
3809 | * guile/scm-frame.c (gdbscm_frame_name): | |
3810 | * linux-thread-db.c (find_new_threads_once): | |
3811 | * python/py-breakpoint.c (bppy_get_commands): | |
3812 | * record-btrace.c (record_btrace_insert_breakpoint) | |
3813 | (record_btrace_remove_breakpoint, record_btrace_start_replaying) | |
3814 | (record_btrace_start_replaying): Adjust to avoid code between TRY | |
3815 | and CATCH. | |
3816 | ||
492d29ea PA |
3817 | 2015-03-07 Pedro Alves <palves@redhat.com> |
3818 | ||
3819 | * common/common-exceptions.c (struct catcher) <exception>: No | |
3820 | longer a pointer to volatile exception. Now an exception value. | |
3821 | <mask>: Delete field. | |
3822 | (exceptions_state_mc_init): Remove all parameters. Adjust. | |
3823 | (exceptions_state_mc): No longer pop the catcher here. | |
3824 | (exceptions_state_mc_catch): New function. | |
3825 | (throw_exception): Adjust. | |
3826 | * common/common-exceptions.h (exceptions_state_mc_init): Remove | |
3827 | all parameters. | |
3828 | (exceptions_state_mc_catch): Declare. | |
3829 | (TRY_CATCH): Rename to ... | |
3830 | (TRY): ... this. Remove EXCEPTION and MASK parameters. | |
3831 | (CATCH, END_CATCH): New. | |
3832 | All callers adjusted. | |
3833 | ||
ece957c8 TT |
3834 | 2015-03-07 Tom Tromey <tromey@redhat.com> |
3835 | ||
3836 | * top.c (quit_force): Inline and delete DO_TRY, DO_PRINT_EX. | |
3837 | ||
7556d4a4 PA |
3838 | 2015-03-07 Pedro Alves <palves@redhat.com> |
3839 | ||
3840 | * amd64-tdep.c (amd64_frame_cache, amd64_sigtramp_frame_cache) | |
3841 | (amd64_epilogue_frame_cache): Normal exception handling code. | |
3842 | * break-catch-throw.c (check_status_exception_catchpoint) | |
3843 | (re_set_exception_catchpoint): Ditto. | |
3844 | * cli/cli-interp.c (safe_execute_command): | |
3845 | * cli/cli-script.c (script_from_file): Ditto. | |
3846 | * compile/compile-c-symbols.c (generate_c_for_for_one_variable): | |
3847 | Ditto. | |
3848 | * compile/compile-object-run.c (compile_object_run): Ditto. | |
3849 | * cp-abi.c (baseclass_offset): Ditto. | |
3850 | * cp-valprint.c (cp_print_value): Ditto. | |
3851 | * exceptions.c (catch_exceptions_with_msg): | |
3852 | * frame-unwind.c (frame_unwind_try_unwinder): Ditto. | |
3853 | * frame.c (get_frame_address_in_block_if_available): Ditto. | |
3854 | * i386-tdep.c (i386_frame_cache, i386_epilogue_frame_cache) | |
3855 | (i386_sigtramp_frame_cache): Ditto. | |
3856 | * infcmd.c (post_create_inferior): Ditto. | |
3857 | * linespec.c (parse_linespec, find_linespec_symbols): | |
3858 | * p-valprint.c (pascal_object_print_value): Ditto. | |
3859 | * parse.c (parse_expression_for_completion): Ditto. | |
3860 | * python/py-finishbreakpoint.c (bpfinishpy_init): Ditto. | |
3861 | * remote.c (remote_get_noisy_reply): Ditto. | |
3862 | * s390-linux-tdep.c (s390_frame_unwind_cache): Ditto. | |
3863 | * solib-svr4.c (solib_svr4_r_map): Ditto. | |
3864 | ||
f873665f | 3865 | 2015-03-06 Gary Benson <gbenson@redhat.com> |
61012eef GB |
3866 | |
3867 | * common/common-utils.h (startswith): New inline function. | |
3868 | All places where this logic was used updated to use the above. | |
3869 | ||
68901c4d PA |
3870 | 2015-03-05 Pedro Alves <palves@redhat.com> |
3871 | ||
3872 | PR gdb/18002 | |
3873 | * mem-break.c (default_memory_insert_breakpoint): Set shadow_len | |
3874 | after reading the breakpoint's shadow memory. | |
3875 | ||
2dcb2b1a MK |
3876 | 2015-03-05 Mark Kettenis <kettenis@gnu.org> |
3877 | ||
3878 | * hppabsd-nat.c: Remove file. | |
3879 | * hppaobsd-nat.c: New file. | |
3880 | * Makefile.in (ALLDEPFILES): Remove hppabsd-nat.c. Add | |
3881 | hppaobsd-nat.c. | |
3882 | * config/pa/obsd.mh (NATDEPFILES): Replace hppabsd-nat.o with | |
3883 | hppaobsd-nat.o. | |
3884 | ||
527a273a PA |
3885 | 2015-03-04 Pedro Alves <palves@redhat.com> |
3886 | ||
3887 | * target.h (struct target_ops) <to_decr_pc_after_break>: Delete. | |
3888 | (target_decr_pc_after_break): Delete declaration. | |
3889 | * target.c (default_target_decr_pc_after_break) | |
3890 | (target_decr_pc_after_break): Delete. | |
3891 | * linux-nat.c (check_stopped_by_breakpoint, linux_nat_wait_1): Use | |
3892 | gdbarch_decr_pc_after_break instead of target_decr_pc_after_break. | |
3893 | * linux-thread-db.c (check_event): Likewise. | |
3894 | * infrun.c (adjust_pc_after_break): Likewise. | |
3895 | * darwin-nat.c (cancel_breakpoint): Likewise. | |
3896 | * aix-thread.c (aix_thread_wait): Likewise. | |
3897 | * target-delegates.c: Regenerate. | |
3898 | ||
faf09f01 PA |
3899 | 2015-03-04 Pedro Alves <palves@redhat.com> |
3900 | ||
3901 | * linux-nat.c (save_sigtrap): Check for breakpoints before | |
3902 | checking watchpoints. | |
3903 | (status_callback) [USE_SIGTRAP_SIGINFO]: Don't check whether a | |
3904 | breakpoint is inserted if relying on SIGTRAP's siginfo.si_code. | |
3905 | (check_stopped_by_breakpoint) [USE_SIGTRAP_SIGINFO]: Decide whether | |
3906 | a breakpoint triggered based on the SIGTRAP's siginfo.si_code. | |
3907 | (linux_nat_stopped_by_sw_breakpoint) | |
3908 | (linux_nat_supports_stopped_by_sw_breakpoint) | |
3909 | (linux_nat_stopped_by_hw_breakpoint) | |
3910 | (linux_nat_supports_stopped_by_hw_breakpoint): New functions. | |
3911 | (linux_nat_wait_1): Don't re-increment the PC if relying on | |
3912 | SIGTRAP's siginfo->si_code. | |
3913 | (linux_nat_add_target): Install new target methods. | |
3914 | * linux-thread-db.c (check_event): Don't account for breakpoint PC | |
3915 | offset if the target already adjusted the PC. | |
3916 | * nat/linux-ptrace.h (USE_SIGTRAP_SIGINFO): New. | |
3917 | (GDB_ARCH_TRAP_BRKPT): New. | |
3918 | (TRAP_HWBKPT): Define if not already defined. | |
3919 | ||
f7e6eed5 PA |
3920 | 2015-03-04 Pedro Alves <palves@redhat.com> |
3921 | ||
3922 | * NEWS: Mention the new "swbreak" and "hwbreak" stop reasons. | |
3923 | * remote.c (struct remote_state) <remote_stopped_by_watchpoint_p>: | |
3924 | Delete field. | |
3925 | <stop_reason>: New field. | |
3926 | (PACKET_swbreak_feature, PACKET_hwbreak_feature): New enum values. | |
3927 | (packet_set_cmd_state): New function. | |
3928 | (remote_protocol_features): Register the "swbreak" and "hwbreak" | |
3929 | features. | |
3930 | (remote_query_supported): If not disabled with the corresponding | |
3931 | "set remote foo-packet" command, report support for the swbreak | |
3932 | and hwbreak features. | |
3933 | (struct stop_reply) <remote_stopped_by_watchpoint_p>: Delete | |
3934 | field. | |
3935 | <stop_reason>: New field. | |
3936 | (remote_parse_stop_reply): Handle "swbreak" and "hwbreak". | |
3937 | (remote_wait_as): Adjust. | |
3938 | (remote_stopped_by_sw_breakpoint) | |
3939 | (remote_supports_stopped_by_sw_breakpoint) | |
3940 | (remote_stopped_by_hw_breakpoint) | |
3941 | (remote_supports_stopped_by_hw_breakpoint): New functions. | |
3942 | (remote_stopped_by_watchpoint): New function. | |
3943 | (init_remote_ops): Install them. | |
3944 | (_initialize_remote): Register new "set/show remote | |
3945 | swbreak-feature-packet" and "set/show remote | |
3946 | swbreak-feature-packet" commands. | |
3947 | ||
9e8915c6 PA |
3948 | 2015-03-04 Pedro Alves <palves@redhat.com> |
3949 | ||
3950 | * btrace.h: Include target/waitstatus.h. | |
3951 | (struct btrace_thread_info) <stop_reason>: New field. | |
3952 | * record-btrace.c (record_btrace_step_thread): Use | |
3953 | record_check_stopped_by_breakpoint instead of breakpoint_here_p. | |
3954 | (record_btrace_decr_pc_after_break): Delete. | |
3955 | (record_btrace_stopped_by_sw_breakpoint) | |
3956 | (record_btrace_supports_stopped_by_sw_breakpoint) | |
3957 | (record_btrace_stopped_by_hw_breakpoint) | |
3958 | (record_btrace_supports_stopped_by_hw_breakpoint): New functions. | |
3959 | (init_record_btrace_ops): Install them. | |
3960 | * record-full.c (record_full_hw_watchpoint): Delete and replace | |
3961 | with ... | |
3962 | (record_full_stop_reason): ... this throughout. | |
3963 | (record_full_exec_insn): Adjust. | |
3964 | (record_full_wait_1): Adjust. No longer re-increment the PC. | |
3965 | (record_full_wait_1): Adjust. Use | |
3966 | record_check_stopped_by_breakpoint instead of breakpoint_here_p. | |
3967 | (record_full_stopped_by_watchpoint): Adjust. | |
3968 | (record_full_stopped_by_sw_breakpoint) | |
3969 | (record_full_supports_stopped_by_sw_breakpoint) | |
3970 | (record_full_supports_stopped_by_sw_breakpoint) | |
3971 | (record_full_stopped_by_hw_breakpoint) | |
3972 | (record_full_supports_stopped_by_hw_breakpoint): New functions. | |
3973 | (init_record_full_ops, init_record_full_core_ops): Install them. | |
3974 | * record.c (record_check_stopped_by_breakpoint): New function. | |
3975 | * record.h: Include target/waitstatus.h. | |
3976 | (record_check_stopped_by_breakpoint): New declaration. | |
3977 | ||
15c66dd6 PA |
3978 | 2015-03-04 Pedro Alves <palves@redhat.com> |
3979 | ||
3980 | enum lwp_stop_reason -> enum target_stop_reason | |
3981 | * linux-nat.c (linux_resume_one_lwp, check_stopped_by_watchpoint) | |
3982 | (linux_nat_stopped_by_watchpoint, status_callback) | |
3983 | (linux_nat_wait_1): Adjust. | |
3984 | * linux-nat.h (enum lwp_stop_reason): Delete. | |
3985 | (struct lwp_info) <stop_reason>: Now an enum target_stop_reason. | |
3986 | * x86-linux-nat.c (x86_linux_prepare_to_resume): Adjust. | |
3987 | * target/waitstatus.h (enum target_stop_reason): New. | |
3988 | ||
1cf4d951 PA |
3989 | 2015-03-04 Pedro Alves <palves@redhat.com> |
3990 | ||
3991 | * breakpoint.c (need_moribund_for_location_type): New function. | |
3992 | (bpstat_stop_status): Don't skipping checking moribund locations | |
3993 | of breakpoint types which the target tell caused a stop. | |
3994 | (program_breakpoint_here_p): New function, factored out from ... | |
3995 | (bp_loc_is_permanent): ... this. | |
3996 | (update_global_location_list): Don't create a moribund location if | |
3997 | the target supports reporting stops of the type of the removed | |
3998 | breakpoint. | |
3999 | * breakpoint.h (program_breakpoint_here_p): New declaration. | |
4000 | * infrun.c (adjust_pc_after_break): Return early if the target has | |
4001 | already adjusted the PC. Add comments. | |
4002 | (handle_signal_stop): If nothing explains a signal, and the target | |
4003 | tells us the stop was caused by a software breakpoint, check if | |
4004 | there's a breakpoint instruction in the memory. If so, adjust the | |
4005 | PC before presenting the stop to the user. Otherwise, ignore the | |
4006 | trap. If nothing explains a signal, and the target tells us the | |
4007 | stop was caused by a hardware breakpoint, ignore the trap. | |
4008 | * target.h (struct target_ops) <to_stopped_by_sw_breakpoint, | |
4009 | to_supports_stopped_by_sw_breakpoint, to_stopped_by_hw_breakpoint, | |
4010 | to_supports_stopped_by_hw_breakpoint>: New fields. | |
4011 | (target_stopped_by_sw_breakpoint) | |
4012 | (target_supports_stopped_by_sw_breakpoint) | |
4013 | (target_stopped_by_hw_breakpoint) | |
4014 | (target_supports_stopped_by_hw_breakpoint): Define. | |
4015 | * target-delegates.c: Regenerate. | |
4016 | ||
79639e11 PA |
4017 | 2015-03-04 Pedro Alves <palves@redhat.com> |
4018 | ||
4019 | * infrun.c (follow_fork_inferior): Use the whole of the | |
4020 | inferior_ptid and pending_follow.related_pid ptids instead of | |
4021 | building ptids from the process components. Adjust verbose output | |
4022 | to use target_pid_to_str. | |
4023 | * linux-nat.c (linux_child_follow_fork): Use the whole of the | |
4024 | inferior_ptid and pending_follow.related_pid ptids instead of | |
4025 | building ptids from the process components. | |
4026 | ||
e85e8e5e MK |
4027 | 2015-03-04 Mark Kettenis <kettenis@gnu.org> |
4028 | ||
4029 | * inf-ptrace.c [PT_GET_PROCESS_STATE] | |
4030 | (inf_ptrace_insert_fork_catchpoint): New function. | |
4031 | (inf_ptrace_remove_fork_catchpoint): New function. | |
4032 | (inf_ptrace_target) [PT_GET_PROCESS_STATE]: Install them. | |
4033 | ||
87de11c0 AA |
4034 | 2015-03-04 Andreas Arnez <arnez@linux.vnet.ibm.com> |
4035 | ||
4036 | * s390-linux-tdep.c (s390_register_name): Return empty string | |
4037 | instead of NULL for registers that shouldn't be visible. | |
4038 | ||
d851a69a AA |
4039 | 2015-03-04 Andreas Arnez <arnez@linux.vnet.ibm.com> |
4040 | ||
4041 | * s390-linux-tdep.c (s390_gdbarch_init): Use the correct syscall | |
4042 | XML file for 64-bit targets. | |
4043 | ||
b072f6c1 SM |
4044 | 2015-03-03 Simon Marchi <simon.marchi@ericsson.com> |
4045 | ||
4046 | * target.h (find_default_create_inferior): Remove declaration. | |
4047 | (find_default_attach): Likewise. | |
4048 | ||
c1593e4f PA |
4049 | 2015-03-03 Pedro Alves <palves@redhat.com> |
4050 | ||
4051 | * inf-ptrace.c (inf_ptrace_resume): Remove spurious whitespace. | |
4052 | Use ptid_get_pid to get the overall process id when resuming all | |
4053 | threads. | |
4054 | ||
90ad5e1d PA |
4055 | 2015-03-03 Pedro Alves <palves@redhat.com> |
4056 | ||
4057 | * i386-linux-nat.c (i386_linux_resume): Get the ptrace PID out of | |
4058 | the lwp field of ptid. Pass the full ptid to get_thread_regcache. | |
4059 | * inf-ptrace.c (get_ptrace_pid): New function. | |
4060 | (inf_ptrace_resume): Use it. | |
4061 | * linux-nat.c (linux_resume_one_lwp): Pass the LWP's ptid ummodified | |
4062 | to the lower layer. | |
4063 | ||
d68e53f4 MM |
4064 | 2015-03-03 Markus Metzger <markus.t.metzger@intel.com> |
4065 | ||
4066 | * nat/linux-btrace.c: Include sys/utsname.h. | |
4067 | (linux_determine_kernel_ptr_bits): New. | |
4068 | (linux_enable_bts): Call linux_determine_kernel_ptr_bits. | |
4069 | * x86-linux-nat.c (x86_linux_enable_btrace): Do not overwrite non-zero | |
4070 | ptr_bits. | |
4071 | ||
986b6601 MM |
4072 | 2015-03-03 Markus Metzger <markus.t.metzger@intel.com> |
4073 | ||
4074 | * btrace.c (ftrace_update_function): Treat return as tailcall for | |
4075 | "_dl_runtime_resolve". | |
4076 | ||
ce0dfbea MM |
4077 | 2015-03-03 Markus Metzger <markus.t.metzger@intel.com> |
4078 | ||
4079 | * btrace.h (btrace_function) <lbegin, lend>: Remove. | |
4080 | * btrace.c (ftrace_debug): Do not print the line range. | |
4081 | (ftrace_skip_file, ftrace_update_lines): Remove. | |
4082 | (ftrace_new_function): Remove lbegin and lend initialization. | |
4083 | (btrace_compute_ftrace_bts): Remove call to ftrace_update_lines. | |
4084 | * record-btrace.c (btrace_compute_src_line_range): New. | |
4085 | (btrace_call_history_src_line): Call btrace_compute_src_line_range. | |
4086 | ||
95e50b27 PA |
4087 | 2015-03-02 Pedro Alves <palves@redhat.com> |
4088 | ||
4089 | * infrun.c (follow_exec): Delete all threads of the process except | |
4090 | the event thread. Extended comments. | |
4091 | ||
00e474c2 JB |
4092 | 2015-03-02 Joel Brobecker <brobecker@adacore.com> |
4093 | ||
4094 | * contrib/ari/gdb_ari.sh: Reinstate checks for "true" and "false". | |
4095 | ||
cc7039d3 JB |
4096 | 2015-03-02 Joel Brobecker <brobecker@adacore.com> |
4097 | ||
4098 | * utils.h: Remove <stdbool.h> #include. | |
4099 | (producer_is_gcc): Change return type to "int". | |
4100 | * utils.c (producer_is_gcc): Change return type to int. | |
4101 | Return 1 instead of true, and 0 instead of false. | |
4102 | Adjust function documentation accordingly. | |
4103 | ||
550bdf96 AA |
4104 | 2015-03-02 Andreas Arnez <arnez@linux.vnet.ibm.com> |
4105 | ||
4106 | * s390-linux-nat.c (have_regset_vxrs): New static variable. | |
4107 | (s390_linux_fetch_inferior_registers): Handle vector registers, if | |
4108 | present. | |
4109 | (s390_linux_store_inferior_registers): Likewise. | |
4110 | (s390_get_hwcap): Remove function. Embed its logic... | |
4111 | (s390_read_description): ...here. Yield a target description with | |
4112 | vector registers if applicable. | |
4113 | * s390-linux-tdep.c: Include "features/s390-vx-linux64.c", | |
4114 | "features/s390-tevx-linux64.c", "features/s390x-vx-linux64.c", and | |
4115 | "features/s390x-tevx-linux64.c". | |
4116 | (struct gdbarch_tdep) <v0_full_regnum>: New field. | |
4117 | (s390_dwarf_regmap): Add vector registers. Remove bogus entries | |
4118 | for "GNU/Linux-specific registers". | |
4119 | (s390_dwarf_reg_r0l): New enum value. | |
4120 | (s390_dwarf_reg_to_regnum): Support vector registers. | |
4121 | (s390_adjust_frame_regnum): Adjust pseudo DWARF register numbers | |
4122 | of GPR lower halves. | |
4123 | (regnum_is_vxr_full): New function. | |
4124 | (s390_register_name): New function. | |
4125 | (s390_pseudo_register_name): Handle v0-v15, which are composed of | |
4126 | f0-f15 and v0l-v15l. | |
4127 | (s390_pseudo_register_type): Likewise. | |
4128 | (s390_pseudo_register_read): Likewise. | |
4129 | (s390_pseudo_register_write): Likewise. | |
4130 | (s390_value_from_register): Account for the fact that values are | |
4131 | placed left-justified in vector registers. | |
4132 | (s390_pseudo_register_reggroup_p): Add pseudo registers v0-v15 to | |
4133 | the vector reggroup and omit them from the general reggroup. | |
4134 | (s390_regmap_vxrs_low, s390_regmap_vxrs_high): New register maps. | |
4135 | (s390_vxrs_low_regset, s390_vxrs_high_regset): New regsets. | |
4136 | (s390_iterate_over_regset_sections): Add iterations for the two | |
4137 | new vector regsets. | |
4138 | (s390_core_read_description): Yield a target description with | |
4139 | vector registers if applicable. | |
4140 | (s390_gdbarch_init): Handle target descriptions with vector | |
4141 | registers. Add "register_name" gdbarch method. | |
4142 | (_initialize_s390_tdep): Call new tdesc initialization functions. | |
4143 | * s390-linux-tdep.h (HWCAP_S390_VX): New macro. | |
4144 | (S390_V0_LOWER_REGNUM, S390_V1_LOWER_REGNUM, S390_V2_LOWER_REGNUM) | |
4145 | (S390_V3_LOWER_REGNUM, S390_V4_LOWER_REGNUM, S390_V5_LOWER_REGNUM) | |
4146 | (S390_V6_LOWER_REGNUM, S390_V7_LOWER_REGNUM, S390_V8_LOWER_REGNUM) | |
4147 | (S390_V9_LOWER_REGNUM, S390_V10_LOWER_REGNUM) | |
4148 | (S390_V11_LOWER_REGNUM, S390_V12_LOWER_REGNUM) | |
4149 | (S390_V13_LOWER_REGNUM, S390_V14_LOWER_REGNUM) | |
4150 | (S390_V15_LOWER_REGNUM, S390_V16_REGNUM, S390_V17_REGNUM) | |
4151 | (S390_V18_REGNUM, S390_V19_REGNUM, S390_V20_REGNUM) | |
4152 | (S390_V21_REGNUM, S390_V22_REGNUM, S390_V23_REGNUM) | |
4153 | (S390_V24_REGNUM, S390_V25_REGNUM, S390_V26_REGNUM) | |
4154 | (S390_V27_REGNUM, S390_V28_REGNUM, S390_V29_REGNUM) | |
4155 | (S390_V30_REGNUM, S390_V31_REGNUM): New macros. | |
4156 | (S390_NUM_REGS): Adjust value. | |
4157 | (s390_vxrs_low_regset, s390_vxrs_high_regset): Declare. | |
4158 | (tdesc_s390_vx_linux64, tdesc_s390_tevx_linux64) | |
4159 | (tdesc_s390x_vx_linux64, tdesc_s390x_tevx_linux64): Likewise. | |
4160 | * NEWS: Announce S/390 vector register support. | |
4161 | ||
446899e4 AA |
4162 | 2015-03-02 Andreas Arnez <arnez@linux.vnet.ibm.com> |
4163 | ||
4164 | * features/s390-tevx-linux64.xml: New file. | |
4165 | * features/s390-vx-linux64.xml: New file. | |
4166 | * features/s390-vx.xml: New file. | |
4167 | * features/s390x-tevx-linux64.xml: New file. | |
4168 | * features/s390x-vx-linux64.xml: New file. | |
4169 | * features/Makefile (WHICH): Add s390-vx-linux64, | |
4170 | s390x-vx-linux64, s390-tevx-linux64, and s390x-tevx-linux64. | |
4171 | (s390-vx-linux64-expedite, s390-tevx-linux64-expedite) | |
4172 | (s390x-vx-linux64-expedite, s390x-tevx-linux64-expedite): New | |
4173 | macros. | |
4174 | * features/s390-tevx-linux64.c: New generated file. | |
4175 | * features/s390-vx-linux64.c: Likewise. | |
4176 | * features/s390x-tevx-linux64.c: Likewise. | |
4177 | * features/s390x-vx-linux64.c: Likewise. | |
4178 | * regformats/s390-tevx-linux64.dat: Likewise. | |
4179 | * regformats/s390-vx-linux64.dat: Likewise. | |
4180 | * regformats/s390x-tevx-linux64.dat: Likewise. | |
4181 | * regformats/s390x-vx-linux64.dat: Likewise. | |
4182 | ||
b7236fbe DE |
4183 | 2015-02-28 Doug Evans <xdje42@gmail.com> |
4184 | ||
4185 | * symtab.h (struct symtab) <next>: Fix comment. | |
4186 | ||
02e62830 SM |
4187 | 2015-02-27 Simon Marchi <simon.marchi@ericsson.com> |
4188 | ||
4189 | * python/python.c (python_GdbModuleDef): Rename GdbMethods to | |
4190 | python_GdbMethods. | |
4191 | ||
bf36a1e7 PA |
4192 | 2015-02-27 Pedro Alves <palves@redhat.com> |
4193 | ||
4194 | * dtrace-probe.c (dtrace_probe_ops): Make extern. | |
4195 | ||
ad6aff7d PA |
4196 | 2015-02-27 Pedro Alves <palves@redhat.com> |
4197 | ||
4198 | * common/common-exceptions.h (exception_none): Declare. | |
4199 | * common/common-exceptions.c (exception_none): Moved from | |
4200 | exceptions.c. | |
4201 | (exceptions_state_mc_init): Use exception_none. | |
4202 | * exceptions.c (exception_none): Move to | |
4203 | common/common-exceptions.c. | |
4204 | * exceptions.h (exception_none): Move to | |
4205 | common/common-exceptions.h. | |
4206 | ||
97c18565 PA |
4207 | 2015-02-27 Pedro Alves <palves@redhat.com> |
4208 | ||
4209 | * main.c (catch_command_errors, catch_command_errors_const): | |
4210 | Remove 'mask' argument. Adjust. | |
4211 | (captured_main): Adjust callers. | |
4212 | ||
e992c591 PA |
4213 | 2015-02-27 Pedro Alves <palves@redhat.com> |
4214 | ||
4215 | * python/python-internal.h: Include "extension-priv.h". | |
4216 | ||
64166036 PA |
4217 | 2015-02-27 Pedro Alves <palves@redhat.com> |
4218 | ||
4219 | * breakpoint.h (enum print_stop_action): Move further up in the | |
4220 | file. | |
4221 | ||
8a526fa6 PA |
4222 | 2015-02-27 Pedro Alves <palves@redhat.com> |
4223 | ||
4224 | * gdbarch.sh: Include regcache.h. | |
4225 | * gdbarch.h: Regenerate. | |
4226 | ||
0fa9c223 PA |
4227 | 2015-02-27 Pedro Alves <palves@redhat.com> |
4228 | ||
4229 | * arm-tdep.c (decode_insn) <arm_handle_insn, thumb_handle_insn>: | |
4230 | Remove duplicate const. | |
4231 | * sparc-sol2-tdep.c (sparc_sol2_static_transform_name): Remove | |
4232 | duplicate const. | |
4233 | ||
7cf99fb1 PA |
4234 | 2015-02-27 Pedro Alves <palves@redhat.com> |
4235 | ||
4236 | * cp-valprint.c (vtbl_ptr_name): Use EXPORTED_CONST. | |
4237 | * guile/guile.c (extension_language_guile): Use EXPORTED_CONST. | |
4238 | * features/feature_to_c.sh: Tag the generated xml_builtin array | |
4239 | with extern const in C++ mode. | |
4240 | ||
1424c16e TT |
4241 | 2015-02-27 Tom Tromey <tromey@redhat.com> |
4242 | ||
4243 | * minidebug.c (struct lzma_stream): Rename to ... | |
4244 | (struct gdb_lzma_stream): ... this. | |
4245 | (lzma_open, lzma_pread, lzma_close, lzma_stat): Adjust. | |
4246 | ||
10367c7c PA |
4247 | 2015-02-27 Pedro Alves <palves@redhat.com> |
4248 | ||
4249 | * mi/mi-cmd-stack.c (mi_apply_ext_lang_frame_filter): New | |
4250 | function. | |
4251 | (mi_cmd_stack_list_locals, mi_cmd_stack_list_args) | |
4252 | (mi_cmd_stack_list_variables): Use it. | |
4253 | ||
4180215b PA |
4254 | 2015-02-27 Pedro Alves <palves@redhat.com> |
4255 | ||
4256 | * x86-linux-nat.c (u_debugreg_offset): New function. | |
4257 | (x86_linux_dr_get, x86_linux_dr_set): Use it. | |
4258 | ||
2f56f7c3 PA |
4259 | 2015-02-27 Pedro Alves <palves@redhat.com> |
4260 | ||
4261 | * nat/x86-dregs.h (enum target_hw_bp_type): Remove forward | |
4262 | declaration. | |
4263 | Include break-common.h. | |
4264 | ||
570dc176 TT |
4265 | 2015-02-27 Tom Tromey <tromey@redhat.com> |
4266 | Pedro Alves <palves@redhat.com> | |
4267 | ||
4268 | * arm-tdep.c (set_fp_model_sfunc, arm_set_abi): Use 'int' for | |
4269 | local used to iterate over enums. | |
4270 | * completer.c (signal_completer): Likewise. | |
4271 | * i386-tdep.c (i386_stap_parse_special_token): Likewise. | |
4272 | * rs6000-tdep.c (powerpc_set_vector_abi): Likewise. | |
4273 | * tui/tui-data.c (tui_next_win, tui_prev_win): Likewise. | |
4274 | * tui/tui-layout.c (next_layout, prev_layout): Likewise. | |
4275 | * tui/tui-win.c (tui_refresh_all_win, tui_rehighlight_all) | |
4276 | (tui_resize_all, tui_set_focus_command, tui_all_windows_info): Likewise. | |
4277 | * tui-wingeneral.c (tui_refresh_all): Likewise. | |
4278 | ||
68c14faa PA |
4279 | 2015-02-27 Pedro Alves <palves@redhat.com> |
4280 | ||
4281 | * target.h: Include "infrun.h". | |
4282 | ||
749bab01 PA |
4283 | 2015-02-27 Pedro Alves <palves@redhat.com> |
4284 | ||
4285 | * gdb_proc_service.h: Wrap with EXTERN_C_PUSH/EXTERN_C_POP. | |
4286 | ||
3c14e5a3 PA |
4287 | 2015-02-27 Pedro Alves <palves@redhat.com> |
4288 | ||
4289 | * common/agent.h (IPA_SYM_EXPORTED_NAME): New. | |
4290 | (IPA_SYM): Use it. | |
4291 | * common/common-defs.h (EXTERN_C_PUSH, EXTERN_C_POP): New macros. | |
4292 | ||
56000a98 PA |
4293 | 2015-02-27 Pedro Alves <palves@redhat.com> |
4294 | ||
4295 | * cli-out.c (_rl_erase_entire_line): Move declaration out of | |
4296 | cli_mld_erase_entire_line, and make it extern "C". | |
4297 | * common/common-defs.h (EXTERN_C): New. | |
4298 | * completer.c (_rl_completion_prefix_display_length) | |
4299 | (_rl_print_completions_horizontally, QSFUNC): Move declarations | |
4300 | out of gdb_display_match_list_1. | |
4301 | (_rl_qsort_string_compare): Move declaration out of | |
4302 | gdb_display_match_list_1, and make it extern "C". | |
4303 | * defs.h (re_comp): Use EXTERN_C. | |
4304 | * maint.c (_mcleanup): Move declaration out of mcleanup_wrapper, | |
4305 | and make it extern "C". | |
4306 | (monstartup): Move declaration out of maintenance_set_profile_cmd, | |
4307 | and make it extern "C". | |
4308 | (main): Move declaration out of maintenance_set_profile_cmd. | |
4309 | * nat/linux-ptrace.c (linux_ptrace_attach_fail_reason_string): Use | |
4310 | EXTERN_C. | |
4311 | ||
bcabf420 PA |
4312 | 2015-02-27 Pedro Alves <palves@redhat.com> |
4313 | ||
4314 | * python/python.c (GdbMethods): Rename to ... | |
4315 | (python_GdbMethods): ... this and make extern. | |
4316 | (GdbModuleDef): Rename to ... | |
4317 | (python_GdbModuleDef): ... this and make extern. | |
4318 | ||
928dbe07 PA |
4319 | 2015-02-27 Pedro Alves <palves@redhat.com> |
4320 | ||
4321 | * record-btrace.c (set_record_btrace_cmdlist) | |
4322 | (show_record_btrace_cmdlist): Remove redefinitions. | |
4323 | ||
52059ffd TT |
4324 | 2015-02-27 Tom Tromey <tromey@redhat.com> |
4325 | Pedro Alves <palves@redhat.com> | |
4326 | ||
4327 | * dwarf2-frame.c (enum cfa_how_kind, struct | |
4328 | dwarf2_frame_state_reg_info): Move out of struct | |
4329 | dwarf2_frame_state. | |
4330 | * dwarf2read.c (struct tu_stats): Move out of struct | |
4331 | dwarf2_per_objfile. | |
4332 | (struct file_entry): Move out of struct line_header. | |
4333 | (struct nextfield, struct nextfnfield, struct fnfieldlist, struct | |
4334 | typedef_field_list): Move out of struct field_info. | |
4335 | * gdbtypes.h (enum dynamic_prop_kind, union dynamic_prop_data): | |
4336 | Move out of struct dynamic_prop. | |
4337 | (union type_owner, union field_location, struct field, struct | |
4338 | range_bounds, union type_specific): Move out of struct main_type. | |
4339 | (struct fn_fieldlist, struct fn_field, struct typedef_field) | |
4340 | (VOFFSET_STATIC): Move out of struct cplus_struct_type. | |
4341 | (struct call_site_target, union call_site_parameter_u, struct | |
4342 | call_site_parameter): Move out of struct call_site. | |
4343 | * m32c-tdep.c (enum m32c_prologue_kind): Move out of struct | |
4344 | m32c_prologue. | |
4345 | (enum srcdest_kind): Move out of struct srcdest. | |
4346 | * main.c (enum cmdarg_kind): Move out of struct cmdarg. | |
4347 | * prologue-value.h (enum prologue_value_kind): Move out of struct | |
4348 | prologue_value. | |
4349 | * s390-linux-tdep.c (enum s390_abi_kind): Move out of struct | |
4350 | gdbarch_tdep. | |
4351 | * stabsread.c (struct nextfield, struct next_fnfieldlist): Move | |
4352 | out of struct field_info. | |
4353 | * symfile.h (struct other_sections): Move out of struct | |
4354 | section_addr_info. | |
4355 | * symtab.c (struct symbol_cache_slot): Move out struct | |
4356 | block_symbol_cache. | |
4357 | * target-descriptions.c (enum tdesc_type_kind): Move out of | |
4358 | typedef struct tdesc_type. | |
4359 | * tui/tui-data.h (enum tui_line_or_address_kind): Move out of | |
4360 | struct tui_line_or_address. | |
4361 | * value.c (enum internalvar_kind, union internalvar_data): Move | |
4362 | out of struct internalvar. | |
4363 | * xtensa-tdep.h (struct ctype_cache): Move out of struct | |
4364 | gdbarch_tdep. | |
4365 | ||
fe978cb0 PA |
4366 | 2015-02-27 Tom Tromey <tromey@redhat.com> |
4367 | Pedro Alves <palves@redhat.com> | |
4368 | ||
4369 | Rename symbols whose names are reserved C++ keywords throughout. | |
4370 | ||
3bc3d82a PA |
4371 | 2015-02-27 Pedro Alves <palves@redhat.com> |
4372 | ||
4373 | * Makefile.in (COMPILER): New, get it from autoconf. | |
4374 | (COMPILE.pre, CC_LD): Use COMPILER. | |
4375 | (CXX): Get from autoconf instead. | |
4376 | (CXX_FOR_TARGET): Default to g++ instead of gcc. | |
4377 | * acinclude.m4: Include build-with-cxx.m4. | |
4378 | * build-with-cxx.m4: New file. | |
4379 | * configure.ac: Call AC_PROG_CXX and GDB_AC_BUILD_WITH_CXX. | |
4380 | Disable -Werror by default if building in C++ mode. | |
4381 | (build_warnings): Add -Wno-sign-compare, -Wno-write-strings and | |
4382 | -Wno-narrowing in C++ mode. Only enable -Wpointer-sign in C mode. | |
4383 | Run supported-warning-flags tests with the C++ compiler. | |
4384 | Save/restore CXXFLAGS too. | |
4385 | * configure: Regenerate. | |
4386 | ||
07697489 PA |
4387 | 2015-02-27 Pedro Alves <palves@redhat.com> |
4388 | ||
4389 | * libiberty.m4: New file. | |
4390 | * acinclude.m4: Include libiberty.m4. | |
4391 | * configure.ac: Call libiberty_INIT. | |
4392 | * config.in, configure: Regenerate. | |
4393 | ||
60abeae4 AA |
4394 | 2015-02-27 Andreas Arnez <arnez@linux.vnet.ibm.com> |
4395 | ||
4396 | * s390-linux-tdep.c (s390_gcc_target_options): Not just handle | |
4397 | 31-bit targets, but 64-bit targets as well. | |
4398 | (s390_gnu_triplet_regexp): New function. | |
4399 | (s390_gdbarch_init): Set the gcc_target_options gdbarch method for | |
4400 | 64-bit targets as well. Set the gnu_triplet_regexp gdbarch | |
4401 | method. | |
4402 | ||
f44466fb | 4403 | 2015-02-27 Jon TURNEY <jon.turney@dronecode.org.uk> (tiny patch) |
f0666312 JT |
4404 | |
4405 | * windows-nat.c (CONTEXT_DEBUGGER): Remove. | |
4406 | (CONTEXT_DEBUGGER_DR): Add CONTEXT_SEGMENTS. Incorporate flags | |
4407 | from CONTEXT_DEBUGGER. | |
4408 | ||
0def5aaa DE |
4409 | 2015-02-26 Doug Evans <dje@google.com> |
4410 | ||
4411 | * gdbtypes.c (internal_type_vptr_fieldno): Add missing call to | |
4412 | CHECK_TYPEDEF. | |
4413 | (set_type_vptr_fieldno): Ditto. | |
4414 | (internal_type_vptr_basetype, set_type_vptr_basetype): Ditto. | |
4415 | * gnu-v3-abi.c (gnuv3_dynamic_class): Ditto. | |
4416 | ||
77b64a49 PA |
4417 | 2015-02-26 Pedro Alves <palves@redhat.com> |
4418 | ||
4419 | * auto-load.h (file_is_auto_load_safe): Add ATTRIBUTE_PRINTF. | |
4420 | * complaints.c (vcomplaint): Pass argument FMT directly to | |
4421 | printf-like functions instead of complaint->fmt. | |
4422 | * ctf.c (ctf_save_write_metadata): Add ATTRIBUTE_PRINTF. | |
4423 | * darwin-nat.c (inferior_debug): Add ATTRIBUTE_PRINTF. | |
4424 | * compile/compile-loc2c.c (pushf, unary, binary): Add | |
4425 | ATTRIBUTE_PRINTF. | |
4426 | (do_compile_dwarf_expr_to_c): Pass string literal as format string | |
4427 | to pushf. | |
4428 | (BINARY): Pass string literal as format string to 'binary'. | |
4429 | * compile/compile-object-load.c (link_callbacks_einfo): Add | |
4430 | ATTRIBUTE_PRINTF. | |
4431 | * guile/guile-internal.h (gdbscm_printf): Add ATTRIBUTE_PRINTF. | |
4432 | ||
532f44ed PA |
4433 | 2015-02-26 Pedro Alves <palves@redhat.com> |
4434 | ||
4435 | * windows-termcap.c: Rename to ... | |
4436 | * stub-termcap.c: ... this. Adjust header line. | |
4437 | * Makefile.in (SFILES): Refer to stub-termcap.c instead of | |
4438 | windows-termcap.c. | |
4439 | * configure: Regenerate. | |
4440 | * configure.ac: Refer to stub-termcap.o instead of | |
4441 | windows-termcap.o. | |
4442 | * gdb_curses.h: Mention stub-termcap.c instead of | |
4443 | windows-termcap.c. | |
4444 | ||
081a1c2c JK |
4445 | 2015-02-26 Jan Kratochvil <jan.kratochvil@redhat.com> |
4446 | ||
4447 | * compile/compile-c-symbols.c (convert_one_symbol, convert_symbol_bmsym) | |
4448 | (gcc_symbol_address): Call gnu_ifunc_resolve_addr. | |
4449 | ||
2f41223f AT |
4450 | 2015-02-26 Antoine Tremblay <antoine.tremblay@ericsson.com> |
4451 | ||
4452 | * gdb/infcmd.c (print_return_value): use type_to_string to print type. | |
4453 | ||
80c57053 JK |
4454 | 2015-02-26 Jan Kratochvil <jan.kratochvil@redhat.com> |
4455 | ||
4456 | * elfread.c (elf_read_minimal_symbols): Use bfd_alloc for | |
4457 | bfd_canonicalize_symtab. | |
4458 | ||
cf424aef JB |
4459 | 2015-02-25 John Baldwin <jhb@FreeBSD.org> |
4460 | ||
4461 | * amd64fbsd-nat.c: Include sys/user.h. | |
4462 | (_initialize_amd64fbsd_nat): Use the KERN_PROC_SIGTRAMP sysctl | |
4463 | instead of KERN_PS_STRINGS to locate the signal trampoline. | |
4464 | * i386fbsd-nat.c: Include sys/user.h. | |
4465 | (_initialize_i386fbsd_nat): Use the KERN_PROC_SIGTRAMP sysctl | |
4466 | instead of KERN_PS_STRINGS to locate the signal trampoline. | |
4467 | * amd64fbsd-tdep.c (amd64fbsd_sigtramp_code): New. | |
4468 | (amd64fbsd_sigtramp_p): New. | |
4469 | (amd64fbsd_sigtramp_start_addr, amd64fbsd_sigtramp_end_addr): No | |
4470 | longer set default values. | |
4471 | (amd64fbsd_init_abi): Set "sigtramp_p" to "amd64fbsd_sigtramp_p". | |
4472 | * i386fbsd-tdep.c (i386fbsd_sigtramp_start) | |
4473 | (i386fbsd_sigtramp_middle, i386fbsd_sigtramp_end) | |
4474 | (i386fbsd_freebsd4_sigtramp_start) | |
4475 | (i386fbsd_freebsd4_sigtramp_middle) | |
4476 | (i386fbsd_freebsd4_sigtramp_end, i386fbsd_osigtramp_start) | |
4477 | (i386fbsd_osigtramp_middle, i386fbsd_osigtramp_end): New. | |
4478 | (i386fbsd_sigtramp_p): New. | |
4479 | (i386fbsd_sigtramp_start_addr, i386fbsd_sigtramp_end_addr): No | |
4480 | longer set default values. | |
4481 | (i386fbsd_init_abi): Set "sigtramp_p" to "i386fbsd_sigtramp_p". | |
4482 | ||
c5cb74ee JB |
4483 | 2015-02-25 John Baldwin <jhb@freebsd.org> |
4484 | ||
4485 | * amd64fbsd-tdep.c (amd64fbsd_sigcontext_addr): Use | |
4486 | get_frame_register instead of frame_unwind_register_unsigned. | |
4487 | ||
17487d85 JK |
4488 | 2015-02-26 Jan Kratochvil <jan.kratochvil@redhat.com> |
4489 | ||
4490 | PR build/18033 | |
4491 | * compile/compile-c-support.c (c_compute_program): Change // comment. | |
4492 | * compile/compile-object-load.c (setup_sections): Change // comment. | |
4493 | ||
9357a9e6 JB |
4494 | 2015-02-26 Joel Brobecker <brobecker@adacore.com> |
4495 | ||
4496 | PR build/18033: | |
4497 | * iq2000-tdep.c (iq2000_frame_cache): Delete C++-style comment. | |
4498 | ||
1f10ba14 PA |
4499 | 2015-02-23 Pedro Alves <palves@redhat.com> |
4500 | ||
4501 | * remote.c (skip_to_semicolon): New function. | |
4502 | (remote_parse_stop_reply) <T stop reply>: Use it. Don't | |
4503 | special case the stop reasons that look like hex numbers | |
4504 | upfront. Instead handle real register numbers after matching | |
4505 | all the known stop reasons. | |
4506 | ||
96553a0c DE |
4507 | 2015-02-21 Doug Evans <dje@google.com> |
4508 | ||
4509 | PR c++/17976, symtab/17821 | |
4510 | * cp-namespace.c (cp_search_static_and_baseclasses): New parameter | |
4511 | is_in_anonymous. All callers updated. | |
4512 | (find_symbol_in_baseclass): Ditto. | |
4513 | (cp_lookup_nested_symbol_1): Ditto. Don't search all static blocks | |
4514 | for symbols in an anonymous namespace. | |
4515 | * dwarf2read.c (namespace_name): Don't call dwarf2_name, fetch | |
4516 | DW_AT_name directly. | |
4517 | (dwarf2_name): Convert missing namespace name to | |
4518 | CP_ANONYMOUS_NAMESPACE_STR. | |
4519 | ||
2db9a427 PA |
4520 | 2015-02-20 Pedro Alves <palves@redhat.com> |
4521 | ||
4522 | * linux-nat.c (linux_handle_extended_wait): Call | |
4523 | thread_db_notice_clone whenever a new clone LWP is detected. | |
4524 | (linux_stop_and_wait_all_lwps, linux_unstop_all_lwps): New | |
4525 | functions. | |
4526 | * linux-nat.h (thread_db_attach_lwp): Delete declaration. | |
4527 | (thread_db_notice_clone, linux_stop_and_wait_all_lwps) | |
4528 | (linux_unstop_all_lwps): Declare. | |
4529 | * linux-thread-db.c (struct thread_get_info_inout): Delete. | |
4530 | (thread_get_info_callback): Delete. | |
4531 | (thread_from_lwp): Use td_thr_get_info and record_thread. | |
4532 | (thread_db_attach_lwp): Delete. | |
4533 | (thread_db_notice_clone): New function. | |
4534 | (try_thread_db_load_1): If /proc is mounted and shows the | |
4535 | process'es task list, walk over all LWPs and call thread_from_lwp | |
4536 | instead of relying on td_ta_thr_iter. | |
4537 | (attach_thread): Don't call check_thread_signals here. Split the | |
4538 | tail part of the function (which adds the thread to the core GDB | |
4539 | thread list) to ... | |
4540 | (record_thread): ... this function. Call check_thread_signals | |
4541 | here. | |
4542 | (thread_db_wait): Don't call thread_db_find_new_threads_1. Always | |
4543 | call thread_from_lwp. | |
4544 | (thread_db_update_thread_list): Rename to ... | |
4545 | (thread_db_update_thread_list_org): ... this. | |
4546 | (thread_db_update_thread_list): New function. | |
4547 | (thread_db_find_thread_from_tid): Delete. | |
4548 | (thread_db_get_ada_task_ptid): Simplify. | |
4549 | * nat/linux-procfs.c: Include <sys/stat.h>. | |
4550 | (linux_proc_task_list_dir_exists): New function. | |
4551 | * nat/linux-procfs.h (linux_proc_task_list_dir_exists): Declare. | |
4552 | ||
3b27ef47 PA |
4553 | 2015-02-20 Pedro Alves <palves@redhat.com> |
4554 | ||
4555 | * linux-nat.c (lin_lwp_attach_lwp): No longer special case the | |
4556 | main LWP. Handle the case of waitpid returning 0 if we're already | |
4557 | attached to the LWP. Don't set the LWP's last_resume_kind to | |
4558 | resume_stop if we already knew about the LWP. | |
4559 | (linux_nat_filter_event): Add debug logs. | |
4560 | ||
1cc28231 PA |
4561 | 2015-02-20 Pedro Alves <palves@redhat.com> |
4562 | ||
4563 | * target.h (forward_target_decr_pc_after_break): Delete | |
4564 | declaration. | |
4565 | ||
5c5019c2 PA |
4566 | 2015-02-20 Pedro Alves <palves@redhat.com> |
4567 | ||
4568 | PR threads/18006 | |
4569 | * linux-thread-db.c (thread_get_info_callback): Return early if | |
4570 | the thread's lwp id is -1. | |
4571 | ||
f3978e91 JB |
4572 | 2015-02-20 Joel Brobecker <brobecker@adacore.com> |
4573 | ||
4574 | GDB 7.9 released. | |
4575 | ||
ffdf88ec SE |
4576 | 2015-02-19 Steve Ellcey <sellcey@imgtec.com> |
4577 | ||
4578 | * dtrace-probe.c (dtrace_process_dof_probe): Initialize arg.expr. | |
4579 | (dtrace_get_probes) Change type of variable 'dof'. | |
4580 | ||
c9587f88 AT |
4581 | 2015-02-19 Antoine Tremblay <antoine.tremblay@ericsson.com> |
4582 | ||
4583 | PR breakpoints/16812 | |
4584 | * linux-nat.c (linux_nat_filter_event): Report SIGTRAP,SIGILL,SIGSEGV. | |
4585 | * nat/linux-ptrace.c (linux_wstatus_maybe_breakpoint): Add. | |
4586 | * nat/linux-ptrace.h: Add linux_wstatus_maybe_breakpoint. | |
4587 | ||
53cf2ee0 DT |
4588 | 2015-02-19 David Taylor <dtaylor@emc.com> |
4589 | ||
4590 | * common/ax.def (setv): Fix consumed entry in setv DEFOP. | |
4591 | ||
acfe0940 PP |
4592 | 2015-02-18 Patrick Palka <patrick@parcs.ath.cx> |
4593 | ||
4594 | * tui/tui-io.c (tui_handle_resize_during_io): Remove this | |
4595 | function. | |
4596 | (tui_putc): Don't call tui_handle_resize_during_io. | |
4597 | (tui_getc): Likewise. | |
4598 | (tui_mld_getc): Likewise. | |
4599 | * tui/tui-win.c: Include event-loop.h and tui/tui-io.h. | |
4600 | (tui_sigwinch_token): New static variable. | |
4601 | (tui_initialize_win): Adjust documentation. Set | |
4602 | tui_sigwinch_token. | |
4603 | (tui_async_resize_screen): New asynchronous callback. | |
4604 | (tui_sigwinch_handler): Adjust documentation. Asynchronously | |
4605 | invoke tui_async_resize_screen. | |
4606 | ||
f6a88844 JM |
4607 | 2015-02-18 Jose E. Marchesi <jose.marchesi@oracle.com> |
4608 | ||
4609 | * configure: Regenerated. | |
4610 | * configure.ac: Use GDB_AC_TRANSFORM. | |
4611 | * Makefile.in (aclocal_m4_deps): Added transform.m4. | |
4612 | * acinclude.m4: sinclude transform.m4. | |
4613 | * transform.m4: New file. | |
4614 | (GDB_AC_TRANSFORM): New macro. | |
4615 | ||
b05e3b0d JM |
4616 | 2015-02-17 Jose E. Marchesi <jose.marchesi@oracle.com> |
4617 | ||
4618 | * NEWS: Announce the support for DTrace SDT probes. | |
4619 | ||
c3e3045e JM |
4620 | 2015-02-17 Jose E. Marchesi <jose.marchesi@oracle.com> |
4621 | ||
4622 | * amd64-linux-tdep.c: Include "parser-defs.h" and "user-regs.h". | |
4623 | (amd64_dtrace_parse_probe_argument): New function. | |
4624 | (amd64_dtrace_probe_is_enabled): Likewise. | |
4625 | (amd64_dtrace_enable_probe): Likewise. | |
4626 | (amd64_dtrace_disable_probe): Likewise. | |
4627 | (amd64_linux_init_abi): Register the | |
4628 | `gdbarch_dtrace_probe_argument', `gdbarch_dtrace_enable_probe', | |
4629 | `gdbarch_dtrace_disable_probe' and | |
4630 | `gdbarch_dtrace_probe_is_enabled' hooks. | |
4631 | (amd64_dtrace_disabled_probe_sequence_1): New constant. | |
4632 | (amd64_dtrace_disabled_probe_sequence_2): Likewise. | |
4633 | (amd64_dtrace_enable_probe_sequence): Likewise. | |
4634 | (amd64_dtrace_disable_probe_sequence): Likewise. | |
4635 | ||
d4777acb JM |
4636 | 2015-01-17 Jose E. Marchesi <jose.marchesi@oracle.com> |
4637 | ||
4638 | * breakpoint.c (BREAK_ARGS_HELP): Help string updated to mention | |
4639 | the -probe-dtrace new vpossible value for PROBE_MODIFIER. | |
4640 | * configure.ac (CONFIG_OBS): dtrace-probe.o added if BFD can | |
4641 | handle ELF files. | |
4642 | * Makefile.in (SFILES): dtrace-probe.c added. | |
4643 | * configure: Regenerate. | |
4644 | * dtrace-probe.c: New file. | |
4645 | (SHT_SUNW_dof): New constant. | |
4646 | (dtrace_probe_type): New enum. | |
4647 | (dtrace_probe_arg): New struct. | |
4648 | (dtrace_probe_arg_s): New typedef. | |
4649 | (struct dtrace_probe_enabler): New struct. | |
4650 | (dtrace_probe_enabler_s): New typedef. | |
4651 | (dtrace_probe): New struct. | |
4652 | (dtrace_probe_is_linespec): New function. | |
4653 | (dtrace_dof_sect_type): New enum. | |
4654 | (dtrace_dof_dofh_ident): Likewise. | |
4655 | (dtrace_dof_encoding): Likewise. | |
4656 | (DTRACE_DOF_ENCODE_LSB): Likewise. | |
4657 | (DTRACE_DOF_ENCODE_MSB): Likewise. | |
4658 | (dtrace_dof_hdr): New struct. | |
4659 | (dtrace_dof_sect): Likewise. | |
4660 | (dtrace_dof_provider): Likewise. | |
4661 | (dtrace_dof_probe): Likewise. | |
4662 | (DOF_UINT): New macro. | |
4663 | (DTRACE_DOF_PTR): Likewise. | |
4664 | (DTRACE_DOF_SECT): Likewise. | |
4665 | (dtrace_process_dof_probe): New function. | |
4666 | (dtrace_process_dof): Likewise. | |
4667 | (dtrace_build_arg_exprs): Likewise. | |
4668 | (dtrace_get_arg): Likewise. | |
4669 | (dtrace_get_probes): Likewise. | |
4670 | (dtrace_get_probe_argument_count): Likewise. | |
4671 | (dtrace_can_evaluate_probe_arguments): Likewise. | |
4672 | (dtrace_evaluate_probe_argument): Likewise. | |
4673 | (dtrace_compile_to_ax): Likewise. | |
4674 | (dtrace_probe_destroy): Likewise. | |
4675 | (dtrace_gen_info_probes_table_header): Likewise. | |
4676 | (dtrace_gen_info_probes_table_values): Likewise. | |
4677 | (dtrace_probe_is_enabled): Likewise. | |
4678 | (dtrace_probe_ops): New variable. | |
4679 | (info_probes_dtrace_command): New function. | |
4680 | (_initialize_dtrace_probe): Likewise. | |
4681 | (dtrace_type_name): Likewise. | |
4682 | ||
8b367e17 JM |
4683 | 2015-02-17 Jose E. Marchesi <jose.marchesi@oracle.com> |
4684 | ||
4685 | * gdbarch.sh (dtrace_parse_probe_argument): New. | |
4686 | (dtrace_probe_is_enabled): Likewise. | |
4687 | (dtrace_enable_probe): Likewise. | |
4688 | (dtrace_disable_probe): Likewise. | |
4689 | * gdbarch.c: Regenerate. | |
4690 | * gdbarch.h: Regenerate. | |
4691 | ||
9aca2ff8 JM |
4692 | 2015-02-17 Jose E. Marchesi <jose.marchesi@oracle.com> |
4693 | ||
4694 | * stap-probe.c (stap_probe_ops): Add NULLs in the static | |
4695 | stap_probe_ops for `enable_probe' and `disable_probe'. | |
4696 | * probe.c (enable_probes_command): New function. | |
4697 | (disable_probes_command): Likewise. | |
4698 | (_initialize_probe): Define the cli commands `enable probe' and | |
4699 | `disable probe'. | |
4700 | (parse_probe_linespec): New function. | |
4701 | (info_probes_for_ops): Use parse_probe_linespec. | |
4702 | * probe.h (probe_ops): New hooks `enable_probe' and | |
4703 | `disable_probe'. | |
4704 | ||
03e98035 JM |
4705 | 2015-02-17 Jose E. Marchesi <jose.marchesi@oracle.com> |
4706 | ||
4707 | * probe.c (compute_probe_arg): Moved from stap-probe.c | |
4708 | (compile_probe_arg): Likewise. | |
4709 | (probe_funcs): Likewise. | |
4710 | * stap-probe.c (compute_probe_arg): Moved to probe.c. | |
4711 | (compile_probe_arg): Likewise. | |
4712 | (probe_funcs): Likewise. | |
4713 | ||
6f9b8491 JM |
4714 | 2015-02-17 Jose E. Marchesi <jose.marchesi@oracle.com> |
4715 | ||
4716 | * probe.c (print_ui_out_not_applicables): New function. | |
4717 | (exists_probe_with_pops): Likewise. | |
4718 | (info_probes_for_ops): Do not include column headers for probe | |
4719 | types for which no probe has been actually found on any object. | |
4720 | Also invoke `print_ui_out_not_applicables' in order to match the | |
4721 | column rows with the header when probes of several types are | |
4722 | listed. | |
4723 | Print the "Type" column. | |
4724 | * probe.h (probe_ops): Added a new probe operation `type_name'. | |
4725 | * stap-probe.c (stap_probe_ops): Add `stap_type_name'. | |
4726 | (stap_type_name): New function. | |
4727 | ||
69efdff1 PP |
4728 | 2015-02-17 Patrick Palka <patrick@parcs.ath.cx> |
4729 | ||
4730 | * tui/tui-io.c (tui_getc): Don't call key_is_command_char. | |
4731 | (key_is_command_char): Delete. | |
4732 | ||
f8e5e23e PA |
4733 | 2015-02-17 Pedro Alves <palves@redhat.com> |
4734 | ||
4735 | * tui/tui.c (tui_enable): Resize windows before anything | |
4736 | might show a window. | |
4737 | ||
9f2e0721 MO |
4738 | 2015-02-17 Max Ostapenko <m.ostapenko@partner.samsung.com> |
4739 | ||
4740 | PR gdb/17984 | |
4741 | * aarch64-linux-nat.c: Don't include features/aarch64.c anymore. | |
4742 | (aarch64_linux_read_description): Remove initialize_tdesc_aarch64 | |
4743 | call. | |
4744 | * aarch64-tdep.h (tdesc_aarch64): Declare. | |
4745 | ||
171e6b1c MW |
4746 | 2015-02-12 Mark Wielaard <mjw@redhat.com> |
4747 | ||
4748 | * contrib/ari/gdb_ari.sh: Remove checks for "true" and "false". | |
4749 | ||
d5ff0482 DE |
4750 | 2015-02-13 Doug Evans <dje@google.com> |
4751 | ||
4752 | * cp-namespace.c (cp_basic_lookup_symbol): Rename parameter | |
4753 | anonymous_namespace to is_in_anonymous for consistency with the rest | |
4754 | of the file. | |
4755 | (cp_lookup_bare_symbol): Fix typo in comment. | |
4756 | (cp_search_static_and_baseclasses): Ditto. | |
4757 | (search_symbol_list): Use vertical space in comment better. | |
4758 | (reset_directive_searched): Ditto. Fix typo. | |
4759 | (cp_lookup_nested_symbol_1): Clarify contents of NESTED_NAME parameter. | |
4760 | ||
9f04ac5f YQ |
4761 | 2015-02-13 Yao Qi <yao.qi@arm.com> |
4762 | ||
4763 | * MAINTAINERS: Update my email address. | |
4764 | ||
013d0319 DE |
4765 | 2015-02-12 Doug Evans <dje@google.com> |
4766 | ||
b615dd20 | 4767 | * symtab.c (completion_list_add_name): Fix memory leak. |
013d0319 | 4768 | |
9a7e538e DE |
4769 | 2015-02-12 Doug Evans <dje@google.com> |
4770 | ||
4771 | * completer.c (complete_line): Remove incorrect comment. | |
4772 | ||
e1fcd575 JK |
4773 | 2015-02-11 Jan Kratochvil <jan.kratochvil@redhat.com> |
4774 | ||
4775 | * python/py-framefilter.c (py_print_single_arg, enumerate_locals) | |
4776 | (py_print_frame): Use RETURN_MASK_ERROR. | |
4777 | ||
b99bf4e3 JK |
4778 | 2015-02-11 Jan Kratochvil <jan.kratochvil@redhat.com> |
4779 | ||
4780 | * python/py-framefilter.c (py_print_frame): Mention RETURN_QUIT in | |
4781 | function comment. Wrap all function that can throw in cleanups. | |
4782 | (gdbpy_apply_frame_filter): Wrap all function that can throw in | |
4783 | cleanups. | |
4784 | ||
800eb1ce JK |
4785 | 2015-02-11 Jan Kratochvil <jan.kratochvil@redhat.com> |
4786 | ||
4787 | * python/py-framefilter.c (py_print_frame): Substitute goto error. | |
4788 | Remove the error label. | |
4789 | ||
34019068 JK |
4790 | 2015-02-11 Jan Kratochvil <jan.kratochvil@redhat.com> |
4791 | ||
4792 | * python/py-framefilter.c (py_print_frame): Put conditional code paths | |
4793 | with goto first, indent the former else codepath left. Put variable | |
4794 | 'elided' to a new inner block. | |
4795 | ||
8d4a54e2 JK |
4796 | 2015-02-11 Jan Kratochvil <jan.kratochvil@redhat.com> |
4797 | ||
4798 | * python/py-framefilter.c (py_print_frame): Whitespacing fixes. | |
4799 | ||
18ad82c1 PA |
4800 | 2015-02-11 Pedro Alves <palves@redhat.com> |
4801 | ||
4802 | * xcoffread.c (within_function): Delete. | |
4803 | ||
e36122e9 TT |
4804 | 2015-02-11 Tom Tromey <tromey@redhat.com> |
4805 | Pedro Alves <palves@redhat.com> | |
4806 | ||
4807 | * breakpoint.c (base_breakpoint_ops): Delete. | |
4808 | * dwarf2loc.c (dwarf_expr_ctx_funcs): Make extern. | |
4809 | * elfread.c (elf_sym_fns_gdb_index, elf_sym_fns_lazy_psyms): Make extern. | |
4810 | * guile/guile.c (guile_extension_script_ops, guile_extension_ops): Make extern. | |
4811 | * ppcnbsd-tdep.c (ppcnbsd2_sigtramp): Make extern. | |
4812 | * python/py-arch.c (arch_object_type): Make extern. | |
4813 | * python/py-block.c (block_syms_iterator_object_type): Make extern. | |
4814 | * python/py-bpevent.c (breakpoint_event_object_type): Make extern. | |
4815 | * python/py-cmd.c (cmdpy_object_type): Make extern. | |
4816 | * python/py-continueevent.c (continue_event_object_type) | |
4817 | * python/py-event.h (GDBPY_NEW_EVENT_TYPE): Remove 'qual' | |
4818 | parameter. Update all callers. | |
4819 | * python/py-evtregistry.c (eventregistry_object_type): Make extern. | |
4820 | * python/py-exitedevent.c (exited_event_object_type): Make extern. | |
4821 | * python/py-finishbreakpoint.c (finish_breakpoint_object_type): Make extern. | |
4822 | * python/py-function.c (fnpy_object_type): Make extern. | |
4823 | * python/py-inferior.c (inferior_object_type, membuf_object_type): Make extern. | |
4824 | * python/py-infevents.c (call_pre_event_object_type) | |
4825 | (inferior_call_post_event_object_type). | |
4826 | (memory_changed_event_object_type): Make extern. | |
4827 | * python/py-infthread.c (thread_object_type): Make extern. | |
4828 | * python/py-lazy-string.c (lazy_string_object_type): Make extern. | |
4829 | * python/py-linetable.c (linetable_entry_object_type) | |
4830 | (linetable_object_type, ltpy_iterator_object_type): Make extern. | |
4831 | * python/py-newobjfileevent.c (new_objfile_event_object_type) | |
4832 | (clear_objfiles_event_object_type): Make extern. | |
4833 | * python/py-objfile.c (objfile_object_type): Make extern. | |
4834 | * python/py-param.c (parmpy_object_type): Make extern. | |
4835 | * python/py-progspace.c (pspace_object_type): Make extern. | |
4836 | * python/py-signalevent.c (signal_event_object_type): Make extern. | |
4837 | * python/py-symtab.c (symtab_object_type, sal_object_type): Make extern. | |
4838 | * python/py-type.c (type_object_type, field_object_type) | |
4839 | (type_iterator_object_type): Make extern. | |
4840 | * python/python.c (python_extension_script_ops) | |
4841 | (python_extension_ops): Make extern. | |
4842 | * stap-probe.c (stap_probe_ops): Make extern. | |
4843 | ||
0703599a PA |
4844 | 2015-02-11 Pedro Alves <pedro@codesourcery.com> |
4845 | ||
4846 | * infrun.c (adjust_pc_after_break): Don't adjust the PC just | |
4847 | because the event thread is not the current thread. | |
4848 | ||
eaaf76ab DE |
4849 | 2015-02-11 Doug Evans <xdje42@gmail.com> |
4850 | ||
4851 | * gdbtypes.c (internal_type_self_type): If TYPE_SPECIFIC_FIELD hasn't | |
4852 | been initialized yet, return NULL. | |
4853 | ||
e7d52ed3 DE |
4854 | 2015-02-11 Doug Evans <dje@google.com> |
4855 | ||
4856 | * symfile.h (new_symfile_objfile): Delete. | |
4857 | * symfile.c (finish_new_objfile): Renamed from new_symfile_objfile. | |
4858 | All callers updated. | |
4859 | ||
fc6b1256 PP |
4860 | 2015-02-11 Patrick Palka <patrick@parcs.ath.cx> |
4861 | ||
4862 | * tui/tui-io.c (tui_handle_resize_during_io): Call | |
4863 | tui_update_gdb_sizes() after resizing the screen. | |
4864 | * tui/tui.c (tui_enable): Resize the terminal before | |
4865 | calling tui_update_gdb_sizes(). | |
4866 | ||
d9080678 PP |
4867 | 2015-02-11 Patrick Palka <patrick@parcs.ath.cx> |
4868 | ||
4869 | * tui/tui-io.c (tui_getc): Move cursor to the end of the command | |
4870 | line before printing a newline. | |
4871 | ||
9f615e3a MW |
4872 | 2015-02-11 Mark Wielaard <mjw@redhat.com> |
4873 | ||
4874 | * utils.c (producer_is_gcc): Return true or false. | |
4875 | ||
d9080678 | 4876 | 2015-02-10 Mark Wielaard <mjw@redhat.com> |
b1ffba5a MW |
4877 | |
4878 | * utils.h (producer_is_gcc): Change return type to bool. Add major | |
4879 | argument. | |
4880 | * utils.c (producer_is_gcc): Likewise. | |
4881 | (producer_is_gcc_ge_4): Adjust producer_is_gcc call. | |
4882 | * dwarf2read.c (check_producer): Likewise. | |
4883 | ||
b052c4fb PA |
4884 | 2015-02-10 Pedro Alves <palves@redhat.com> |
4885 | ||
4886 | * infrun.c (displaced_step_fixup): Switch to the event thread | |
4887 | before calling gdbarch_displaced_step_fixup. | |
4888 | ||
3ac240d4 AT |
4889 | 2015-02-10 Antoine Tremblay <antoine.tremblay@ericsson.com> |
4890 | ||
4891 | * MAINTAINERS (Write After Approval): Add Antoine Tremblay. | |
4892 | ||
c1cc6152 SM |
4893 | 2015-02-10 Simon Marchi <simon.marchi@ericsson.com> |
4894 | ||
4895 | * ada-varobj.c (ada_name_of_child): Constify parent. | |
4896 | (ada_path_expr_of_child): Same. | |
4897 | (ada_value_of_child): Same. | |
4898 | (ada_type_of_child): Same. | |
4899 | * c-varobj.c (c_is_path_expr_parent): Same. | |
4900 | (c_describe_child): Same. | |
4901 | (c_name_of_child): Same. | |
4902 | (c_value_of_child): Same. | |
4903 | (c_type_of_child): Same. | |
4904 | (cplus_number_of_children): Same. | |
4905 | (cplus_describe_child): Constify var. | |
4906 | (cplus_name_of_child): Constify parent. | |
4907 | (cplus_value_of_child): Same. | |
4908 | (cplus_type_of_child): Same. | |
4909 | * jv-varobj.c (java_name_of_child): Same. | |
4910 | (java_value_of_child): Same. | |
4911 | (java_type_of_child): Same. | |
4912 | * varobj.c (value_of_child): Same. | |
4913 | (varobj_default_is_path_expr_parent): Constify var, parent and return | |
4914 | value. | |
4915 | (varobj_get_path_expr): Constify var, modify path_expr through | |
4916 | mutable_var. | |
4917 | (install_new_value): Constify parent. | |
4918 | (value_of_child): Constify parent. | |
4919 | * varobj.h (struct varobj): Constify parent. | |
4920 | (struct lang_varobj_ops): Constify name_of_child, value_of_child and | |
4921 | type_of_child. | |
4922 | (varobj_get_path_expr): Constify var. | |
4923 | (varobj_get_path_expr_parent): Constify var and return value. | |
4924 | ||
c1ee9414 LM |
4925 | 2015-02-10 Luis Machado <lgustavo@codesourcery.com> |
4926 | ||
4927 | * arm-tdep.c (arm_prologue_unwind_stop_reason): New function. | |
4928 | (arm_prologue_this_id): Move PC and SP limit checks to | |
4929 | arm_prologue_unwind_stop_reason. | |
4930 | (arm_prologue_unwind) <stop_reason> : Set to | |
4931 | arm_prologue_unwind_stop_reason. | |
4932 | ||
f7de9aab MW |
4933 | 2015-02-09 Mark Wielaard <mjw@redhat.com> |
4934 | ||
4935 | * dwarf2read.c (set_cu_language): Recognize DW_LANG_Fortran03 and | |
4936 | DW_LANG_Fortran08 as language_fortran. | |
4937 | ||
0b24eb2d SDJ |
4938 | 2015-02-09 Sergio Durigan Junior <sergiodj@redhat.com> |
4939 | ||
4940 | PR remote/17946 | |
4941 | * gdb/remote.c (remote_parse_stop_reply): Fix wrong comparison | |
4942 | of pointer against char. | |
4943 | ||
a2c2acaf MW |
4944 | 2015-02-09 Mark Wielaard <mjw@redhat.com> |
4945 | ||
4946 | * c-typeprint.c (cp_type_print_method_args): Handle '_Atomic'. | |
4947 | (c_type_print_modifier): Likewise. | |
4948 | * dwarf2read.c (read_tag_atomic_type): New function. | |
4949 | (read_type_die_1): Handle DW_TAG_atomic_type. | |
4950 | * gdbtypes.c (make_atomic_type): New function. | |
4951 | (recursive_dump_type): Handle TYPE_ATOMIC. | |
4952 | * gdbtypes.h (enum type_flag_values): Renumber. | |
4953 | (enum type_instance_flag_value): Add TYPE_INSTANCE_FLAG_ATOMIC. | |
4954 | (TYPE_ATOMIC): New macro. | |
4955 | (make_atomic_type): Declare. | |
4956 | ||
31fd9caa MM |
4957 | 2015-02-09 Markus Metzger <markus.t.metzger@intel.com> |
4958 | ||
4959 | * btrace.c (ftrace_find_call): Skip gaps. | |
4960 | (ftrace_new_function): Initialize level. | |
4961 | (ftrace_new_call, ftrace_new_tailcall, ftrace_new_return) | |
4962 | (ftrace_new_switch): Update | |
4963 | level computation. | |
4964 | (ftrace_new_gap): New. | |
4965 | (ftrace_update_function): Create new function after gap. | |
4966 | (btrace_compute_ftrace_bts): Create gap on error. | |
4967 | (btrace_stitch_bts): Update parameters. Clear trace if it | |
4968 | becomes empty. | |
4969 | (btrace_stitch_trace): Update parameters. Update callers. | |
4970 | (btrace_clear): Reset the number of gaps. | |
4971 | (btrace_insn_get): Return NULL if the iterator points to a gap. | |
4972 | (btrace_insn_number): Return zero if the iterator points to a gap. | |
4973 | (btrace_insn_end): Allow gaps at the end. | |
4974 | (btrace_insn_next, btrace_insn_prev, btrace_insn_cmp): Handle gaps. | |
4975 | (btrace_find_insn_by_number): Assert that the found iterator does | |
4976 | not point to a gap. | |
4977 | (btrace_call_next, btrace_call_prev): Assert that the last function | |
4978 | is not a gap. | |
4979 | * btrace.h (btrace_bts_error): New. | |
4980 | (btrace_function): Update comment. | |
4981 | (btrace_function) <insn, insn_offset, number>: Update comment. | |
4982 | (btrace_function) <errcode>: New. | |
4983 | (btrace_thread_info) <ngaps>: New. | |
4984 | (btrace_thread_info) <replay>: Update comment. | |
4985 | (btrace_insn_get): Update comment. | |
4986 | * record-btrace.c (btrace_ui_out_decode_error): New. | |
4987 | (record_btrace_info): Print number of gaps. | |
4988 | (btrace_insn_history, btrace_call_history): Call | |
4989 | btrace_ui_out_decode_error for gaps. | |
4990 | (record_btrace_step_thread, record_btrace_start_replaying): Skip gaps. | |
4991 | ||
afb778a2 MM |
4992 | 2015-02-09 Markus Metzger <markus.t.metzger@intel.com> |
4993 | ||
4994 | * common/btrace-common.h (btrace_cpu_vendor, btrace_cpu): New. | |
4995 | * nat/linux-btrace.c: (btrace_this_cpu): New. | |
4996 | (cpu_supports_bts): Call btrace_this_cpu. | |
4997 | (intel_supports_bts): Add cpu parameter. | |
4998 | ||
7d5c24b3 MM |
4999 | 2015-02-09 Markus Metzger <markus.t.metzger@intel.com> |
5000 | ||
5001 | * btrace.h (btrace_insn_class): New. | |
5002 | (btrace_insn) <size, iclass>: New. | |
5003 | * btrace.c (ftrace_find_call): Update parameters. Update users. | |
5004 | Use instruction classification. | |
5005 | (ftrace_new_return): Update parameters. Update users. | |
5006 | (ftrace_update_function): Update parameters. Update users. Use | |
5007 | instruction classification. | |
5008 | (ftrace_update_insns): Update parameters. Update users. | |
5009 | (ftrace_classify_insn): New. | |
5010 | (btrace_compute_ftrace_bts): Fill in new btrace_insn fields. Add | |
5011 | TRY_CATCH around call to gdb_insn_length. | |
5012 | ||
76235df1 MM |
5013 | 2015-02-09 Markus Metzger <markus.t.metzger@intel.com> |
5014 | ||
5015 | * btrace.c (btrace_compute_ftrace_bts, btrace_compute_ftrace): | |
5016 | Update parameters. Update users. | |
5017 | ||
d33501a5 MM |
5018 | 2015-02-09 Markus Metzger <markus.t.metzger@intel.com> |
5019 | ||
5020 | * btrace.c (parse_xml_btrace_conf_bts): Add size. | |
5021 | (btrace_conf_bts_attributes): New. | |
5022 | (btrace_conf_children): Add attributes. | |
5023 | * common/btrace-common.h (btrace_config_bts): New. | |
5024 | (btrace_config)<bts>: New. | |
5025 | (btrace_config): Update comment. | |
5026 | * nat/linux-btrace.c (linux_enable_btrace, linux_enable_bts): | |
5027 | Use config. | |
5028 | * features/btrace-conf.dtd: Increment version. Add size | |
5029 | attribute to bts element. | |
5030 | * record-btrace.c (set_record_btrace_bts_cmdlist, | |
5031 | show_record_btrace_bts_cmdlist): New. | |
5032 | (record_btrace_adjust_size, record_btrace_print_bts_conf, | |
5033 | record_btrace_print_conf, cmd_set_record_btrace_bts, | |
5034 | cmd_show_record_btrace_bts): New. | |
5035 | (record_btrace_info): Call record_btrace_print_conf. | |
5036 | (_initialize_record_btrace): Add commands. | |
5037 | * remote.c: Add PACKET_Qbtrace_conf_bts_size enum. | |
5038 | (remote_protocol_features): Add Qbtrace-conf:bts:size packet. | |
5039 | (btrace_sync_conf): Synchronize bts size. | |
5040 | (_initialize_remote): Add Qbtrace-conf:bts:size packet. | |
5041 | * NEWS: Announce new commands and new packets. | |
5042 | ||
f4abbc16 MM |
5043 | 2015-02-09 Markus Metzger <markus.t.metzger@intel.com> |
5044 | ||
5045 | * Makefile.in (XMLFILES): Add btrace-conf.dtd. | |
5046 | * x86-linux-nat.c (x86_linux_enable_btrace): Update parameters. | |
5047 | (x86_linux_btrace_conf): New. | |
5048 | (x86_linux_create_target): Initialize to_btrace_conf. | |
5049 | * nat/linux-btrace.c (linux_enable_btrace): Update parameters. | |
5050 | Check format. Split into this and ... | |
5051 | (linux_enable_bts): ... this. | |
5052 | (linux_btrace_conf): New. | |
5053 | (perf_event_skip_record): Renamed into ... | |
5054 | (perf_event_skip_bts_record): ... this. Updated users. | |
5055 | (linux_disable_btrace): Split into this and ... | |
5056 | (linux_disable_bts): ... this. | |
5057 | (linux_read_btrace): Check format. | |
5058 | * nat/linux-btrace.h (linux_enable_btrace): Update parameters. | |
5059 | (linux_btrace_conf): New. | |
5060 | (btrace_target_info)<ptid>: Moved. | |
5061 | (btrace_target_info)<conf>: New. | |
5062 | (btrace_target_info): Split into this and ... | |
5063 | (btrace_tinfo_bts): ... this. Updated users. | |
5064 | * btrace.c (btrace_enable): Update parameters. | |
5065 | (btrace_conf, parse_xml_btrace_conf_bts, parse_xml_btrace_conf) | |
5066 | (btrace_conf_children, btrace_conf_attributes) | |
5067 | (btrace_conf_elements): New. | |
5068 | * btrace.h (btrace_enable): Update parameters. | |
5069 | (btrace_conf, parse_xml_btrace_conf): New. | |
5070 | * common/btrace-common.h (btrace_config): New. | |
5071 | * feature/btrace-conf.dtd: New. | |
5072 | * record-btrace.c (record_btrace_conf): New. | |
5073 | (record_btrace_cmdlist): New. | |
5074 | (record_btrace_enable_warn, record_btrace_open): Pass | |
5075 | &record_btrace_conf. | |
5076 | (record_btrace_info): Print recording format. | |
5077 | (cmd_record_btrace_bts_start): New. | |
5078 | (cmd_record_btrace_start): Call cmd_record_btrace_bts_start. | |
5079 | (_initialize_record_btrace): Add "record btrace bts" subcommand. | |
5080 | Add "record bts" alias command. | |
5081 | * remote.c (remote_state)<btrace_config>: New. | |
5082 | (remote_btrace_reset, PACKET_qXfer_btrace_conf): New. | |
5083 | (remote_protocol_features): Add qXfer:btrace-conf:read. | |
5084 | (remote_open_1): Call remote_btrace_reset. | |
5085 | (remote_xfer_partial): Handle TARGET_OBJECT_BTRACE_CONF. | |
5086 | (btrace_target_info)<conf>: New. | |
5087 | (btrace_sync_conf, btrace_read_config): New. | |
5088 | (remote_enable_btrace): Update parameters. Call btrace_sync_conf and | |
5089 | btrace_read_conf. | |
5090 | (remote_btrace_conf): New. | |
5091 | (init_remote_ops): Initialize to_btrace_conf. | |
5092 | (_initialize_remote): Add qXfer:btrace-conf packet. | |
5093 | * target.c (target_enable_btrace): Update parameters. | |
5094 | (target_btrace_conf): New. | |
5095 | * target.h (target_enable_btrace): Update parameters. | |
5096 | (target_btrace_conf): New. | |
5097 | (target_object)<TARGET_OBJECT_BTRACE_CONF>: New. | |
5098 | (target_ops)<to_enable_btrace>: Update parameters and comment. | |
5099 | (target_ops)<to_btrace_conf>: New. | |
5100 | * target-delegates: Regenerate. | |
5101 | * target-debug.h (target_debug_print_const_struct_btrace_config_p) | |
5102 | (target_debug_print_const_struct_btrace_target_info_p): New. | |
5103 | * NEWS: Announce new command and new packet. | |
5104 | ||
aadf7753 MM |
5105 | 2015-02-09 Markus Metzger <markus.t.metzger@intel.com> |
5106 | ||
5107 | * nat/linux-btrace.h (perf_event_buffer): New. | |
5108 | (btrace_target_info) <buffer, size, data_head>: Replace with ... | |
5109 | <bts>: ... this. | |
5110 | * nat/linux-btrace.c (perf_event_header, perf_event_mmap_size) | |
5111 | (perf_event_buffer_size, perf_event_buffer_begin) | |
5112 | (perf_event_buffer_end, linux_btrace_has_changed): Removed. | |
5113 | Updated users. | |
5114 | (perf_event_new_data): New. | |
5115 | ||
043c3577 MM |
5116 | 2015-02-09 Markus Metzger <markus.t.metzger@intel.com> |
5117 | ||
5118 | * btrace.c (btrace_enable): Pass BTRACE_FORMAT_BTS. | |
5119 | * record-btrace.c (record_btrace_open): Remove call to | |
5120 | target_supports_btrace. | |
5121 | * remote.c (remote_supports_btrace): Update parameters. | |
5122 | * target.c (target_supports_btrace): Update parameters. | |
5123 | * target.h (to_supports_btrace, target_supports_btrace): Update | |
5124 | parameters. | |
5125 | * target-delegates.c: Regenerate. | |
5126 | * target-debug.h (target_debug_print_enum_btrace_format): New. | |
5127 | * nat/linux-btrace.c | |
5128 | (kernel_supports_btrace): Rename into ... | |
5129 | (kernel_supports_bts): ... this. Update users. Update warning text. | |
5130 | (intel_supports_btrace): Rename into ... | |
5131 | (intel_supports_bts): ... this. Update users. | |
5132 | (cpu_supports_btrace): Rename into ... | |
5133 | (cpu_supports_bts): ... this. Update users. | |
5134 | (linux_supports_btrace): Update parameters. Split into this and ... | |
5135 | (linux_supports_bts): ... this. | |
5136 | * nat/linux-btrace.h (linux_supports_btrace): Update parameters. | |
5137 | ||
734b0e4b MM |
5138 | 2015-02-09 Markus Metzger <markus.t.metzger@intel.com> |
5139 | ||
5140 | * Makefile.in (SFILES): Add common/btrace-common.c. | |
5141 | (COMMON_OBS): Add common/btrace-common.o. | |
5142 | (btrace-common.o): Add build rules. | |
5143 | * btrace.c (parse_xml_btrace): Update parameters. | |
5144 | (parse_xml_btrace_block): Set format field. | |
5145 | (btrace_add_pc, btrace_fetch): Use struct btrace_data. | |
5146 | (do_btrace_data_cleanup, make_cleanup_btrace_data): New. | |
5147 | (btrace_compute_ftrace): Split into this and... | |
5148 | (btrace_compute_ftrace_bts): ...this. | |
5149 | (btrace_stitch_trace): Split into this and... | |
5150 | (btrace_stitch_bts): ...this. | |
5151 | * btrace.h (parse_xml_btrace): Update parameters. | |
5152 | (make_cleanup_btrace_data): New. | |
5153 | * common/btrace-common.c: New. | |
5154 | * common/btrace-common.h: Include common-defs.h. | |
5155 | (btrace_block_s): Update comment. | |
5156 | (btrace_format): New. | |
5157 | (btrace_format_string): New. | |
5158 | (btrace_data_bts): New. | |
5159 | (btrace_data): New. | |
5160 | (btrace_data_init, btrace_data_fini, btrace_data_empty): New. | |
5161 | * remote.c (remote_read_btrace): Update parameters. | |
5162 | * target.c (target_read_btrace): Update parameters. | |
5163 | * target.h (target_read_btrace): Update parameters. | |
5164 | (target_ops)<to_read_btrace>: Update parameters. | |
5165 | * x86-linux-nat.c (x86_linux_read_btrace): Update parameters. | |
5166 | * target-delegates.c: Regenerate. | |
5167 | * target-debug (target_debug_print_struct_btrace_data_p): New. | |
5168 | * nat/linux-btrace.c (linux_read_btrace): Split into this and... | |
5169 | (linux_read_bts): ...this. | |
5170 | * nat/linux-btrace.h (linux_read_btrace): Update parameters. | |
5171 | ||
bd2e0e9e DE |
5172 | 2015-02-06 Doug Evans <dje@google.com> |
5173 | ||
5174 | * remote-m32r-sdi.c: Include symfile.h. | |
5175 | ||
f176c4b5 DE |
5176 | 2015-02-06 Doug Evans <dje@google.com> |
5177 | ||
5178 | * symtab.h (clear_symtab_users, deduce_language_from_filename): Move | |
5179 | * symfile.h (clear_symtab_users, deduce_language_from_filename): ... | |
5180 | to here. | |
5181 | ||
d6c146e9 PA |
5182 | 2015-02-06 Pedro Alves <palves@redhat.com> |
5183 | ||
5184 | * linux-thread-db.c (find_new_threads_callback): Add debug output. | |
5185 | ||
b9d61307 SM |
5186 | 2015-02-06 Simon Marchi <simon.marchi@ericsson.com> |
5187 | ||
5188 | PR gdb/15678 | |
5189 | * breakpoint.c (map_breakpoint_numbers): Check for empty args string. | |
5190 | (enable_count_command): Check args for NULL value. | |
5191 | ||
e9fbd043 DE |
5192 | 2015-02-05 Doug Evans <xdje42@gmail.com> |
5193 | ||
5194 | * guile/scm-frame.c: Fix spelling errors in a comment. | |
5195 | ||
881d5d5d JK |
5196 | 2015-02-04 Jan Kratochvil <jan.kratochvil@redhat.com> |
5197 | ||
5198 | * python/python-internal.h (Py_hash_t): Define it for Python <3.2. | |
5199 | * python/py-value.c (valpy_fetch_lazy): Use it. Remove cast to the | |
5200 | return type. | |
5201 | ||
20ba1ce6 PA |
5202 | 2015-02-04 Pedro Alves <palves@redhat.com> |
5203 | ||
5204 | * linux-nat.c (handle_extended_wait): Don't resume LWPs here. | |
5205 | (wait_lwp): Don't call wait_lwp if linux_handle_extended_wait | |
5206 | returns true. | |
5207 | (resume_stopped_resumed_lwps): Don't check whether the thread is | |
5208 | marked as executing. | |
5209 | (linux_nat_wait_1): Use resume_stopped_resumed_lwps. | |
5210 | ||
f962539a AA |
5211 | 2015-02-04 Andreas Arnez <arnez@linux.vnet.ibm.com> |
5212 | ||
5213 | * regset.h (struct regset): Add flags field. | |
5214 | (REGSET_VARIABLE_SIZE): New value for a regset's flags field. | |
5215 | * corelow.c (get_core_register_section): Add warning if the size | |
5216 | exceeds the requested size and the regset does not have the | |
5217 | REGSET_VARIABLE_SIZE flag set. | |
5218 | * alphanbsd-tdep.c (alphanbsd_gregset): Add REGSET_VARIABLE_SIZE | |
5219 | flag. | |
5220 | * armbsd-tdep.c (armbsd_gregset): Likewise. | |
5221 | * hppa-hpux-tdep.c (hppa_hpux_regset): Likewise. | |
5222 | * hppaobsd-tdep.c (hppaobsd_gregset): Likewise. | |
5223 | * m68kbsd-tdep.c (m68kbsd_gregset): Likewise. | |
5224 | * mipsnbsd-tdep.c (mipsnbsd_gregset): Likewise. | |
5225 | ||
dde9acd6 AA |
5226 | 2015-02-04 Andreas Arnez <arnez@linux.vnet.ibm.com> |
5227 | ||
5228 | * amd64-linux-tdep.c (amd64_linux_iterate_over_regset_sections): | |
5229 | For ".reg-xstate", explicitly specify the requested section size | |
5230 | via X86_XSTATE_SIZE instead of just 0 on input and | |
5231 | X86_XSTATE_MAX_SIZE on output. | |
5232 | * i386-linux-tdep.c (i386_linux_iterate_over_regset_sections): | |
5233 | Likewise. | |
5234 | ||
1528345d AA |
5235 | 2015-02-04 Andreas Arnez <arnez@linux.vnet.ibm.com> |
5236 | ||
5237 | PR corefiles/17808: | |
5238 | * gdbarch.sh (iterate_over_regset_sections_cb): Document this | |
5239 | function type, particularly its SIZE parameter. | |
5240 | * gdbarch.h: Regenerate. | |
5241 | * amd64-tdep.c (amd64_supply_fpregset): In gdb_assert, compare | |
5242 | actual against required size using ">=" instead of "==". | |
5243 | (amd64_collect_fpregset): Likewise. | |
5244 | * i386-tdep.c (i386_supply_gregset): Likewise. | |
5245 | (i386_collect_gregset): Likewise. | |
5246 | (i386_supply_fpregset): Likewise. | |
5247 | (i386_collect_fpregset): Likewise. | |
5248 | * mips-linux-tdep.c (mips_supply_gregset_wrapper): Likewise. | |
5249 | (mips_fill_gregset_wrapper): Likewise. | |
5250 | (mips_supply_fpregset_wrapper): Likewise. | |
5251 | (mips_fill_fpregset_wrapper): Likewise. | |
5252 | (mips64_supply_gregset_wrapper): Likewise. | |
5253 | (mips64_fill_gregset_wrapper): Likewise. | |
5254 | (mips64_supply_fpregset_wrapper): Likewise. | |
5255 | (mips64_fill_fpregset_wrapper): Likewise. | |
5256 | * mn10300-linux-tdep.c (am33_supply_gregset_method): Likewise. | |
5257 | (am33_supply_fpregset_method): Likewise. | |
5258 | (am33_collect_gregset_method): Likewise. | |
5259 | (am33_collect_fpregset_method): Likewise. | |
5260 | ||
518be979 DE |
5261 | 2015-02-04 Doug Evans <dje@google.com> |
5262 | Pedro Alves <palves@redhat.com> | |
5263 | Eli Zaretskii <eliz@gnu.org> | |
5264 | ||
5265 | PR tui/17810 | |
5266 | * tui/tui-command.c (tui_refresh_cmd_win): New function. | |
5267 | * tui/tui-command.c (tui_refresh_cmd_win): Declare. | |
5268 | * tui/tui-file.c: #include tui/tui-command.h. | |
5269 | (tui_file_fputs): Refresh command window if stream is not gdb_stdout. | |
5270 | (tui_file_flush): Refresh command window if stream is gdb_stdout. | |
5271 | * tui/tui-io.c (tui_puts): Remove calls to wrefresh, fflush. | |
5272 | ||
80bd5fab PA |
5273 | 2015-02-04 Pedro Alves <palves@redhat.com> |
5274 | ||
5275 | Fix build breakage. | |
5276 | * event-loop.c (gdb_do_one_event): Add default switch case. | |
5277 | ||
a7606d80 JK |
5278 | 2015-02-03 Jan Kratochvil <jan.kratochvil@redhat.com> |
5279 | ||
5280 | Filter out inferior gcc option -fpreprocessed. | |
5281 | * compile/compile.c (filter_args): New function. | |
5282 | (get_args): Use it. | |
5283 | ||
70b66289 PA |
5284 | 2015-02-03 Pedro Alves <palves@redhat.com> |
5285 | ||
5286 | * event-loop.c: Don't declare nor define a queue type for | |
5287 | gdb_event_p. | |
5288 | (event_queue): Delete. | |
5289 | (create_event, create_file_event, gdb_event_xfree) | |
5290 | (initialize_event_loop, process_event): Delete. | |
5291 | (gdb_do_one_event): Return as soon as one event is handled. | |
5292 | (handle_file_event): Change prototype. Used the passed in | |
5293 | file_handler pointer and ready_mask instead of looping over all | |
5294 | file handlers. | |
5295 | (gdb_wait_for_event): Update the poll/select timeouts before | |
5296 | blocking. Run event handlers directly instead of queueing events. | |
5297 | Return as soon as one event is handled. | |
5298 | (struct async_event_handler_data): Delete. | |
5299 | (invoke_async_event_handler): Delete. | |
5300 | (check_async_event_handlers): Change return type to int. Run | |
5301 | event handlers directly instead of queueing events. Return as | |
5302 | soon as one event is handled. | |
5303 | (handle_timer_event): Delete. | |
5304 | (update_wait_timeout): New function, factored out from | |
5305 | poll_timers. | |
5306 | (poll_timers): Reimplement. | |
5307 | * event-loop.h (initialize_event_loop): Delete declaration. | |
5308 | * top.c (gdb_init): Don't call initialize_event_loop. | |
5309 | ||
b7d2e916 PA |
5310 | 2015-02-03 Pedro Alves <palves@redhat.com> |
5311 | ||
5312 | * event-loop.c (clear_async_event_handler): New function. | |
5313 | * event-loop.h (clear_async_event_handler): New declaration. | |
5314 | * record-btrace.c (record_btrace_async): New function. | |
5315 | (init_record_btrace_ops): Install record_btrace_async. | |
5316 | * record-full.c (record_full_async): New function. | |
5317 | (record_full_resume): Don't mark the async event source here. | |
5318 | (init_record_full_ops): Install record_full_async. | |
5319 | (record_full_core_resume): Don't mark the async event source here. | |
5320 | (init_record_full_core_ops): Install record_full_async. | |
5321 | * remote.c (remote_async): Mark and clear the async stop reply | |
5322 | queue event-loop token as appropriate. | |
5323 | ||
d9d41e78 PA |
5324 | 2015-02-03 Pedro Alves <palves@redhat.com> |
5325 | ||
5326 | * linux-nat.c (linux_child_follow_fork, linux_nat_wait_1): Use | |
5327 | target_is_async_p instead of target_can_async. | |
5328 | (linux_nat_wait): Use target_is_async_p instead of | |
5329 | target_can_async. Don't enable async here. | |
5330 | * remote.c (interrupt_query, remote_wait, putpkt_binary): Use | |
5331 | target_is_async_p instead of target_can_async. | |
5332 | ||
aa3de267 SM |
5333 | 2015-02-02 Simon Marchi <simon.marchi@ericsson.com> |
5334 | ||
5335 | * varobj.h (lang_varobj_ops): Mention which return values need | |
5336 | to be freed. | |
5337 | ||
2c811c0f JB |
5338 | 2015-02-02 Joel Brobecker <brobecker@adacore.com> |
5339 | ||
5340 | * dwarf2loc.c (dwarf2_evaluate_property): Add i18n marker. | |
5341 | ||
b1eedac9 JB |
5342 | 2015-02-02 Joel Brobecker <brobecker@adacore.com> |
5343 | ||
5344 | PR gdb/17856: | |
5345 | * ada-lang.c (ada_lookup_symbol_list_worker): Do not re-cache | |
5346 | results found in the cache. | |
5347 | ||
66c168ae JB |
5348 | 2015-02-02 Joel Brobecker <brobecker@adacore.com> |
5349 | ||
5350 | PR gdb/17854: | |
5351 | * ada-lang.c (ada_get_symbol_cache): Set pspace_data->sym_cache | |
5352 | when allocating a new one. | |
5353 | ||
4bdc02b2 TT |
5354 | 2015-02-01 Tom Tromey <tom@tromey.com> |
5355 | ||
5356 | * MAINTAINERS: Remove myself. | |
5357 | ||
ae6ae975 DE |
5358 | 2015-01-31 Doug Evans <xdje42@gmail.com> |
5359 | ||
5360 | * dwarf2read.c (process_structure_scope): Update setting of | |
5361 | TYPE_VPTR_BASETYPE, TYPE_VPTR_FIELDNO. | |
5362 | * gdbtypes.c (internal_type_vptr_fieldno): New function. | |
5363 | (set_type_vptr_fieldno): New function. | |
5364 | (internal_type_vptr_basetype): New function. | |
5365 | (set_type_vptr_basetype): New function. | |
5366 | (get_vptr_fieldno): Update setting of TYPE_VPTR_FIELDNO, | |
5367 | TYPE_VPTR_BASETYPE. | |
5368 | (allocate_cplus_struct_type): Initialize vptr_fieldno. | |
5369 | (recursive_dump_type): Printing of vptr_fieldno, vptr_basetype ... | |
5370 | (print_cplus_stuff): ... moved here. | |
5371 | (copy_type_recursive): Don't copy TYPE_VPTR_BASETYPE. | |
5372 | * gdbtypes.h (struct main_type): Members vptr_fieldno, vptr_basetype | |
5373 | moved to ... | |
5374 | (struct cplus_struct_type): ... here. All uses updated. | |
5375 | (TYPE_VPTR_FIELDNO, TYPE_VPTR_BASETYPE): Rewrite. | |
5376 | (internal_type_vptr_fieldno, set_type_vptr_fieldno): Declare. | |
5377 | (internal_type_vptr_basetype, set_type_vptr_basetype): Declare. | |
5378 | * stabsread.c (read_tilde_fields): Update setting of | |
5379 | TYPE_VPTR_FIELDNO, TYPE_VPTR_BASETYPE. | |
5380 | ||
09e2d7c7 DE |
5381 | 2015-01-31 Doug Evans <xdje42@gmail.com> |
5382 | ||
5383 | * cp-valprint.c (cp_find_class_member): Rename parameter domain_p | |
5384 | to self_p. | |
5385 | (cp_print_class_member): Rename local domain to self_type. | |
5386 | * dwarf2read.c (quirk_gcc_member_function_pointer): Rename local | |
5387 | domain_type to self_type. | |
5388 | (set_die_type) <need_gnat_info>: Handle | |
5389 | TYPE_CODE_METHODPTR, TYPE_CODE_MEMBERPTR, TYPE_CODE_METHOD. | |
5390 | * gdb-gdb.py (StructMainTypePrettyPrinter): Handle | |
5391 | TYPE_SPECIFIC_SELF_TYPE. | |
5392 | * gdbtypes.c (internal_type_self_type): New function. | |
5393 | (set_type_self_type): New function. | |
5394 | (smash_to_memberptr_type): Rename parameter domain to self_type. | |
5395 | Update setting of TYPE_SELF_TYPE. | |
5396 | (smash_to_methodptr_type): Update setting of TYPE_SELF_TYPE. | |
5397 | (smash_to_method_type): Rename parameter domain to self_type. | |
5398 | Update setting of TYPE_SELF_TYPE. | |
5399 | (check_stub_method): Call smash_to_method_type. | |
5400 | (recursive_dump_type): Handle TYPE_SPECIFIC_SELF_TYPE. | |
5401 | (copy_type_recursive): Ditto. | |
5402 | * gdbtypes.h (enum type_specific_kind): New value | |
5403 | TYPE_SPECIFIC_SELF_TYPE. | |
5404 | (struct main_type) <type_specific>: New member self_type. | |
5405 | (struct cplus_struct_type) <fn_field.type>: Update comment. | |
5406 | (TYPE_SELF_TYPE): Rewrite. | |
5407 | (internal_type_self_type, set_type_self_type): Declare. | |
5408 | * gnu-v3-abi.c (gnuv3_print_method_ptr): Rename local domain to | |
5409 | self_type. | |
5410 | (gnuv3_method_ptr_to_value): Rename local domain_type to self_type. | |
5411 | * m2-typeprint.c (m2_range): Replace TYPE_SELF_TYPE with | |
5412 | TYPE_TARGET_TYPE. | |
5413 | * stabsread.c (read_member_functions): Mark methods with | |
5414 | TYPE_CODE_METHOD, not TYPE_CODE_FUNC. Update setting of | |
5415 | TYPE_SELF_TYPE. | |
5416 | ||
4bfb94b8 DE |
5417 | 2015-01-31 Doug Evans <xdje42@gmail.com> |
5418 | ||
5419 | * gdbtypes.h (TYPE_SELF_TYPE): Renamed from TYPE_DOMAIN_TYPE. | |
5420 | All uses updated. | |
5421 | ||
5f4ce105 DE |
5422 | 2015-01-31 Doug Evans <xdje42@gmail.com> |
5423 | ||
5424 | * gnu-v3-abi.c (gnuv3_dynamic_class): Assert only passed structs | |
5425 | or unions. Return zero if union. | |
5426 | (gnuv3_get_vtable): Call check_typedef. Assert only passed structs. | |
5427 | (gnuv3_rtti_type): Pass already-check_typedef'd value to | |
5428 | gnuv3_get_vtable. | |
5429 | (compute_vtable_size): Assert only passed structs. | |
5430 | (gnuv3_print_vtable): Don't call gnuv3_get_vtable for non-structs. | |
5431 | ||
f6b3afbf DE |
5432 | 2015-01-31 Doug Evans <xdje42@gmail.com> |
5433 | ||
5434 | * gdbtypes.c (copy_type_recursive): Handle all TYPE_SPECIFIC_FIELD | |
5435 | kinds. | |
5436 | ||
cfb069a8 GB |
5437 | 2015-01-31 Gary Benson <gbenson@redhat.com> |
5438 | Doug Evans <dje@google.com> | |
5439 | ||
5440 | PR cli/9007 | |
5441 | PR cli/11920 | |
5442 | PR cli/15548 | |
5443 | * cli/cli-cmds.c (complete_command): Notify user if max-completions | |
5444 | reached. | |
5445 | * common/common-exceptions.h (enum errors) | |
5446 | <MAX_COMPLETIONS_REACHED_ERROR>: New value. | |
5447 | * completer.h (get_max_completions_reached_message): New declaration. | |
5448 | (max_completions): Likewise. | |
5449 | (completion_tracker_t): New typedef. | |
5450 | (new_completion_tracker): New declaration. | |
5451 | (make_cleanup_free_completion_tracker): Likewise. | |
5452 | (maybe_add_completion_enum): New enum. | |
5453 | (maybe_add_completion): New declaration. | |
5454 | (throw_max_completions_reached_error): Likewise. | |
5455 | * completer.c (max_completions): New global variable. | |
5456 | (new_completion_tracker): New function. | |
5457 | (free_completion_tracker): Likewise. | |
5458 | (make_cleanup_free_completion_tracker): Likewise. | |
5459 | (maybe_add_completions): Likewise. | |
5460 | (throw_max_completions_reached_error): Likewise. | |
5461 | (complete_line): Remove duplicates and limit result to max_completions | |
5462 | entries. | |
5463 | (get_max_completions_reached_message): New function. | |
5464 | (gdb_display_match_list): Handle max_completions. | |
5465 | (_initialize_completer): New declaration and function. | |
5466 | * symtab.c: Include completer.h. | |
5467 | (completion_tracker): New static variable. | |
5468 | (completion_list_add_name): Call maybe_add_completion. | |
5469 | (default_make_symbol_completion_list_break_on_1): Renamed from | |
5470 | default_make_symbol_completion_list_break_on. Maintain | |
5471 | completion_tracker across calls to completion_list_add_name. | |
5472 | (default_make_symbol_completion_list_break_on): New function. | |
5473 | * top.c (init_main): Set rl_completion_display_matches_hook. | |
5474 | * tui/tui-io.c: Include completer.h. | |
5475 | (tui_old_rl_display_matches_hook): New static global. | |
5476 | (tui_rl_display_match_list): Notify user if max-completions reached. | |
5477 | (tui_setup_io): Save/restore rl_completion_display_matches_hook. | |
5478 | * NEWS (New Options): Mention set/show max-completions. | |
5479 | ||
e11c72c7 GB |
5480 | 2015-01-31 Gary Benson <gbenson@redhat.com> |
5481 | ||
5482 | * symtab.c (struct add_name_data) <code>: New field. | |
5483 | Updated comments. | |
5484 | (add_symtab_completions): New function. | |
5485 | (symtab_expansion_callback): Likewise. | |
5486 | (default_make_symbol_completion_list_break_on): Set datum.code. | |
5487 | Move minimal symbol scan before calling expand_symtabs_matching. | |
5488 | Scan known primary symtabs for externs and statics before calling | |
5489 | expand_symtabs_matching. Pass symtab_expansion_callback as | |
5490 | expansion_notify argument to expand_symtabs_matching. Do not scan | |
5491 | primary symtabs for externs and statics after calling | |
5492 | expand_symtabs_matching. | |
5493 | ||
276d885b GB |
5494 | 2015-01-31 Gary Benson <gbenson@redhat.com> |
5495 | ||
5496 | * symfile.h (expand_symtabs_exp_notify_ftype): New typedef. | |
5497 | (struct quick_symbol_functions) <expand_symtabs_matching>: | |
5498 | New argument expansion_notify. All uses updated. | |
5499 | (expand_symtabs_matching): New argument expansion_notify. | |
5500 | All uses updated. | |
5501 | * symfile-debug.c (debug_qf_expand_symtabs_matching): | |
5502 | Also print expansion notify. | |
5503 | * symtab.c (expand_symtabs_matching_via_partial): Call | |
5504 | expansion_notify whenever a partial symbol table is expanded. | |
5505 | * dwarf2read.c (dw2_expand_symtabs_matching): Call | |
5506 | expansion_notify whenever a symbol table is instantiated. | |
5507 | ||
82083d6d DE |
5508 | 2015-01-31 Doug Evans <xdje42@gmail.com> |
5509 | ||
5510 | * cli-out.c: #include completer.h, readline/readline.h. | |
5511 | (cli_mld_crlf, cli_mld_putch, cli_mld_puts): New functions. | |
5512 | (cli_mld_flush, cld_mld_erase_entire_line): Ditto. | |
5513 | (cli_mld_beep, cli_mld_read_key, cli_display_match_list): Ditto. | |
5514 | * cli-out.h (cli_display_match_list): Declare. | |
5515 | * completer.c (MB_INVALIDCH, MB_NULLWCH): New macros. | |
5516 | (ELLIPSIS_LEN): Ditto. | |
5517 | (gdb_get_y_or_n, gdb_display_match_list_pager): New functions. | |
5518 | (gdb_path_isdir, gdb_printable_part, gdb_fnwidth): Ditto. | |
5519 | (gdb_fnprint, gdb_print_filename): Ditto. | |
5520 | (gdb_complete_get_screenwidth, gdb_display_match_list_1): Ditto. | |
5521 | (gdb_display_match_list): Ditto. | |
5522 | * completer.h (mld_crlf_ftype, mld_putch_ftype): New typedefs. | |
5523 | (mld_puts_ftype, mld_flush_ftype, mld_erase_entire_line_ftype): Ditto. | |
5524 | (mld_beep_ftype, mld_read_key_ftype): Ditto. | |
5525 | (match_list_displayer): New struct. | |
5526 | (gdb_display_match_list): Declare. | |
5527 | * top.c (init_main): Set rl_completion_display_matches_hook. | |
5528 | * tui/tui-io.c: #include completer.h. | |
5529 | (printable_part, PUTX, print_filename, get_y_or_n): Delete. | |
5530 | (tui_mld_crlf, tui_mld_putch, tui_mld_puts): New functions. | |
5531 | (tui_mld_flush, tui_mld_erase_entire_line, tui_mld_beep): Ditto. | |
5532 | (tui_mld_getc, tui_mld_read_key): Ditto. | |
5533 | (tui_rl_display_match_list): Rewrite. | |
5534 | (tui_handle_resize_during_io): New arg for_completion. All callers | |
5535 | updated. | |
5536 | ||
f57d2163 DE |
5537 | 2015-01-31 Doug Evans <xdje42@gmail.com> |
5538 | ||
5539 | Add symbol lookup cache. | |
5540 | * NEWS: Document new options and commands. | |
5541 | * symtab.c (symbol_cache_key): New static global. | |
5542 | (DEFAULT_SYMBOL_CACHE_SIZE, MAX_SYMBOL_CACHE_SIZE): New macros. | |
5543 | (SYMBOL_LOOKUP_FAILED): New macro. | |
5544 | (symbol_cache_slot_state): New enum. | |
5545 | (block_symbol_cache): New struct. | |
5546 | (symbol_cache): New struct. | |
5547 | (new_symbol_cache_size, symbol_cache_size): New static globals. | |
5548 | (hash_symbol_entry, eq_symbol_entry): New functions. | |
5549 | (symbol_cache_byte_size, resize_symbol_cache): New functions. | |
5550 | (make_symbol_cache, free_symbol_cache): New functions. | |
5551 | (get_symbol_cache, symbol_cache_cleanup): New function. | |
5552 | (set_symbol_cache_size, set_symbol_cache_size_handler): New functions. | |
5553 | (symbol_cache_lookup, symbol_cache_clear_slot): New function. | |
5554 | (symbol_cache_mark_found, symbol_cache_mark_not_found): New functions. | |
5555 | (symbol_cache_flush, symbol_cache_dump): New functions. | |
5556 | (maintenance_print_symbol_cache): New function. | |
5557 | (maintenance_flush_symbol_cache): New function. | |
5558 | (symbol_cache_stats): New function. | |
5559 | (maintenance_print_symbol_cache_statistics): New function. | |
5560 | (symtab_new_objfile_observer): New function. | |
5561 | (symtab_free_objfile_observer): New function. | |
5562 | (lookup_static_symbol, lookup_global_symbol): Use symbol cache. | |
5563 | (_initialize_symtab): Init symbol_cache_key. New parameter | |
5564 | maint symbol-cache-size. New maint commands print symbol-cache, | |
5565 | print symbol-cache-statistics, flush-symbol-cache. | |
5566 | Install new_objfile, free_objfile observers. | |
5567 | ||
e700d1b2 JB |
5568 | 2015-01-31 Joel Brobecker <brobecker@adacore.com> |
5569 | ||
5570 | PR symtab/17855 | |
5571 | * symfile.c (clear_symtab_users): Move call to breakpoint_re_set | |
5572 | to end. | |
5573 | ||
9f050062 DE |
5574 | 2015-01-31 Doug Evans <xdje42@gmail.com> |
5575 | ||
5576 | * NEWS: Mention inlined scripts in .debug_gdb_scripts section. | |
5577 | * auto-load.c: #include ctype.h. | |
5578 | (struct auto_load_pspace_info): Replace member loaded_scripts with | |
5579 | new members loaded_script_files, loaded_script_texts. | |
5580 | (auto_load_pspace_data_cleanup): Update. | |
5581 | (init_loaded_scripts_info): Update. | |
5582 | (get_auto_load_pspace_data_for_loading): Update. | |
5583 | (maybe_add_script_file): Renamed from maybe_add_script. All callers | |
5584 | updated. | |
5585 | (maybe_add_script_text): New function. | |
5586 | (clear_section_scripts): Update. | |
5587 | (source_script_file, execute_script_contents): New functions. | |
5588 | (source_section_scripts): Add support for | |
5589 | SECTION_SCRIPT_ID_PYTHON_TEXT, SECTION_SCRIPT_ID_GUILE_TEXT. | |
5590 | (print_scripts): New function. | |
5591 | (auto_load_info_scripts): Also print inlined scripts. | |
5592 | (maybe_print_unsupported_script_warning): Renamed from | |
5593 | unsupported_script_warning_print. All callers updated. | |
5594 | (maybe_print_script_not_found_warning): Renamed from | |
5595 | script_not_found_warning_print. All callers updated. | |
5596 | * extension-priv.h (struct extension_language_script_ops): New member | |
5597 | objfile_script_executor. | |
5598 | * extension.c (ext_lang_objfile_script_executor): New function. | |
5599 | * extension.h (objfile_script_executor_func): New typedef. | |
5600 | (ext_lang_objfile_script_executor): Declare. | |
5601 | * guile/guile-internal.h (gdbscm_execute_objfile_script): Declare. | |
5602 | * guile/guile.c (guile_extension_script_ops): Update. | |
5603 | * guile/scm-objfile.c (gdbscm_execute_objfile_script): New function. | |
5604 | * python/python.c (python_extension_script_ops): Update. | |
5605 | (gdbpy_execute_objfile_script): New function. | |
5606 | ||
312809f8 EZ |
5607 | 2015-01-31 Eli Zaretskii <eliz@gnu.org> |
5608 | ||
5609 | * tui/tui-io.c (tui_expand_tabs): New function. | |
5610 | (tui_puts, tui_redisplay_readline): Expand TABs into the | |
5611 | appropriate number of spaces. | |
5612 | * tui/tui-regs.c: Include tui-io.h. | |
5613 | (tui_register_format): Call tui_expand_tabs to expand TABs into | |
5614 | the appropriate number of spaces. | |
5615 | * tui/tui-io.h: Add prototype for tui_expand_tabs. | |
5616 | ||
b6577aab DE |
5617 | 2015-01-30 Doug Evans <dje@google.com> |
5618 | ||
5619 | * NEWS: "info source" command now display producer string if present. | |
5620 | * source.c (source_info): Print producer string if present. | |
5621 | ||
6da58d3e SM |
5622 | 2015-01-30 Simon Marchi <simon.marchi@ericsson.com> |
5623 | ||
5624 | * varobj.c (varobj_delete): Fix comment. | |
5625 | ||
837ce252 SM |
5626 | 2015-01-30 Simon Marchi <simon.marchi@ericsson.com> |
5627 | ||
5628 | * varobj.c (create_child): Modify comment. | |
5629 | ||
b09e2c59 SM |
5630 | 2015-01-30 Simon Marchi <simon.marchi@ericsson.com> |
5631 | ||
5632 | * ada-varobj.c (ada_number_of_children): Constify struct varobj * | |
5633 | parameter. | |
5634 | (ada_name_of_variable): Same. | |
5635 | (ada_path_expr_of_child): Same. | |
5636 | (ada_value_of_variable): Same. | |
5637 | (ada_value_is_changeable_p): Same. | |
5638 | (ada_value_has_mutated): Same. | |
5639 | * c-varobj.c (varobj_is_anonymous_child): Same. | |
5640 | (c_is_path_expr_parent): Same. | |
5641 | (c_number_of_children): Same. | |
5642 | (c_name_of_variable): Same. | |
5643 | (c_path_expr_of_child): Same. | |
5644 | (get_type): Same. | |
5645 | (c_value_of_variable): Same. | |
5646 | (cplus_number_of_children): Same. | |
5647 | (cplus_name_of_variable): Same. | |
5648 | (cplus_path_expr_of_child): Same. | |
5649 | (cplus_value_of_variable): Same. | |
5650 | * jv-varobj.c (java_number_of_children): Same. | |
5651 | (java_name_of_variable): Same. | |
5652 | (java_path_expr_of_child): Same. | |
5653 | (java_value_of_variable): Same. | |
5654 | * varobj.c (number_of_children): Same. | |
5655 | (name_of_variable): Same. | |
5656 | (is_root_p): Same. | |
5657 | (varobj_ensure_python_env): Same. | |
5658 | (varobj_get_objname): Same. | |
5659 | (varobj_get_expression): Same. | |
5660 | (varobj_get_display_format): Same. | |
5661 | (varobj_get_display_hint): Same. | |
5662 | (varobj_has_more): Same. | |
5663 | (varobj_get_thread_id): Same. | |
5664 | (varobj_get_frozen): Same. | |
5665 | (dynamic_varobj_has_child_method): Same. | |
5666 | (varobj_get_gdb_type): Same. | |
5667 | (is_path_expr_parent): Same. | |
5668 | (varobj_default_is_path_expr_parent): Same. | |
5669 | (varobj_get_language): Same. | |
5670 | (varobj_get_attributes): Same. | |
5671 | (varobj_is_dynamic_p): Same. | |
5672 | (varobj_get_child_range): Same. | |
5673 | (varobj_value_has_mutated): Same. | |
5674 | (varobj_get_value_type): Same. | |
5675 | (number_of_children): Same. | |
5676 | (name_of_variable): Same. | |
5677 | (check_scope): Same. | |
5678 | (varobj_editable_p): Same. | |
5679 | (varobj_value_is_changeable_p): Same. | |
5680 | (varobj_floating_p): Same. | |
5681 | (varobj_default_value_is_changeable_p): Same. | |
5682 | ||
2568868e SM |
5683 | 2015-01-30 Simon Marchi <simon.marchi@ericsson.com> |
5684 | ||
5685 | * varobj.c (varobj_get_path_expr): Set var->path_expr. | |
5686 | * c-varobj.c (c_path_expr_of_child): Set local var instead of | |
5687 | child->path_expr. | |
5688 | (cplus_path_expr_of_child): Same. | |
5689 | ||
ca83fa81 SM |
5690 | 2015-01-30 Simon Marchi <simon.marchi@ericsson.com> |
5691 | ||
5692 | * mi-cmd-var.c (print_varobj): Free varobj_get_expression | |
5693 | result. | |
5694 | (mi_cmd_var_info_expression): Same. | |
5695 | * varobj.c (varobj_get_expression): Mention in the comment that | |
5696 | the result must by freed by the caller. | |
5697 | ||
afa269ae SM |
5698 | 2015-01-30 Simon Marchi <simon.marchi@ericsson.com> |
5699 | ||
5700 | * mi/mi-cmd-var.c (mi_cmd_var_info_type): Free result of | |
5701 | varobj_get_type. | |
5702 | (varobj_update_one): Same. | |
5703 | * varobj.c (update_type_if_necessary): Free curr_type_str and | |
5704 | new_type_str. | |
5705 | (varobj_get_type): Specify in comment that the result needs to be | |
5706 | freed by the caller. | |
5707 | ||
cd366ee8 DE |
5708 | 2015-01-29 Doug Evans <dje@google.com> |
5709 | ||
5710 | PR symtab/17890 | |
5711 | * dwarf2read.c (dwarf_decode_line_header): Punt if version > 4. | |
5712 | ||
38360086 MW |
5713 | 2015-01-25 Mark Wielaard <mjw@redhat.com> |
5714 | ||
5715 | * dwarf2read.c (checkproducer): Call producer_is_gcc. | |
5716 | * utils.c (producer_is_gcc_ge_4): Likewise. | |
5717 | (producer_is_gcc): New function. | |
5718 | * utils.h (producer_is_gcc): New declaration. | |
5719 | ||
df25ebbd JB |
5720 | 2015-01-29 Joel Brobecker <brobecker@adacore.com> |
5721 | ||
5722 | * gdbtypes.h (struct dynamic_prop): New PROP_ADDR_OFFSET enum | |
5723 | kind. | |
5724 | * gdbtypes.c (resolve_dynamic_type_internal): Replace "addr" | |
5725 | parameter by "addr_stack" parameter. | |
5726 | (resolve_dynamic_range): Replace "addr" parameter by | |
5727 | "stack_addr" parameter. Update function documentation. | |
5728 | Update code accordingly. | |
5729 | (resolve_dynamic_array, resolve_dynamic_union) | |
5730 | (resolve_dynamic_struct, resolve_dynamic_type_internal): Likewise. | |
5731 | (resolve_dynamic_type): Update code, following the changes made | |
5732 | to resolve_dynamic_type_internal's interface. | |
5733 | * dwarf2loc.h (struct property_addr_info): New. | |
5734 | (dwarf2_evaluate_property): Replace "address" parameter | |
5735 | by "addr_stack" parameter. Adjust function documentation. | |
5736 | (struct dwarf2_offset_baton): New. | |
5737 | (struct dwarf2_property_baton): Update documentation of | |
5738 | field "referenced_type" to be more general. New field | |
5739 | "offset_info" in union data field. | |
5740 | * dwarf2loc.c (dwarf2_evaluate_property): Replace "address" | |
5741 | parameter by "addr_stack" parameter. Adjust code accordingly. | |
5742 | Add support for PROP_ADDR_OFFSET properties. | |
5743 | * dwarf2read.c (attr_to_dynamic_prop): Add support for | |
5744 | DW_AT_data_member_location attributes as well. Use case | |
5745 | statements instead of if/else condition. | |
5746 | ||
4a0ca9ec JB |
5747 | 2015-01-29 Joel Brobecker <brobecker@adacore.com> |
5748 | ||
5749 | * ada-varobj.c (ada_varobj_get_array_number_of_children): | |
5750 | Return zero if PARENT_VALUE is NULL and parent_type's | |
5751 | range type is dynamic. | |
5752 | ||
ddb87a81 JB |
5753 | 2015-01-29 Joel Brobecker <brobecker@adacore.com> |
5754 | ||
5755 | * gdbtypes.c (is_dynamic_type_internal) <TYPE_CODE_RANGE>: Return | |
5756 | nonzero if the type's subtype is dynamic. | |
5757 | (resolve_dynamic_range): Also resolve the range's subtype. | |
5758 | ||
3d7ad9b4 | 5759 | 2015-01-29 Alexander Klimov <alserkli@inbox.ru> (tiny patch) |
7a270e0c | 5760 | |
3d7ad9b4 | 5761 | Pushed by Joel Brobecker <brobecker@adacore.com>. |
7a270e0c AK |
5762 | * symfile.c (unmap_overlay_command): Initialize sec to NULL. |
5763 | ||
3a8b707a DE |
5764 | 2015-01-27 Doug Evans <dje@google.com> |
5765 | ||
5766 | * NEWS: Mention gdb.Objfile.username. | |
5767 | * python/py-objfile.c (objfpy_get_username): New function. | |
5768 | (objfile_getset): Add "username". | |
5769 | ||
d35b90fb MW |
5770 | 2015-01-24 Mark Wielaard <mjw@redhat.com> |
5771 | ||
5772 | * stack.c (return_command): Markup warning message with _. | |
5773 | ||
734ae125 DE |
5774 | 2015-01-24 Doug Evans <xdje42@gmail.com> |
5775 | ||
5776 | * gdbtypes.h (TYPE_TYPE_SPECIFIC): Delete. | |
5777 | ||
527f3840 JK |
5778 | 2015-01-24 Jan Kratochvil <jan.kratochvil@redhat.com> |
5779 | ||
5780 | Fix 100x slowdown regression on DWZ files. | |
5781 | * dwarf2read.c (struct dwarf2_per_objfile): Add line_header_hash. | |
5782 | (struct line_header): Add offset and offset_in_dwz. | |
5783 | (dwarf_decode_lines): Add parameter decode_mapping to the declaration. | |
5784 | (free_line_header_voidp): New declaration. | |
5785 | (line_header_hash, line_header_hash_voidp, line_header_eq_voidp): New | |
5786 | functions. | |
5787 | (dwarf2_build_include_psymtabs): Update dwarf_decode_lines caller. | |
5788 | (handle_DW_AT_stmt_list): Use line_header_hash. | |
5789 | (free_line_header_voidp): New function. | |
5790 | (dwarf_decode_line_header): Initialize offset and offset_in_dwz. | |
5791 | (dwarf_decode_lines): New parameter decode_mapping, use it. | |
5792 | (dwarf2_free_objfile): Free line_header_hash. | |
5793 | ||
f7e5394d SM |
5794 | 2015-01-23 Simon Marchi <simon.marchi@ericsson.com> |
5795 | ||
5796 | PR gdb/17416 | |
5797 | * valops.c (value_rtti_indirect_type): Catch exception thrown by | |
5798 | value_ind. | |
5799 | ||
743649fd MW |
5800 | 2015-01-15 Mark Wielaard <mjw@redhat.com> |
5801 | ||
5802 | * dwarf2read.c (read_subroutine_type): Set TYPE_NO_RETURN from | |
5803 | DW_AT_noreturn. | |
5804 | * gdbtypes.h (struct func_type): Add is_noreturn field flag. Make | |
5805 | calling_convention an 8 bit bit field. | |
5806 | (TYPE_NO_RETURN): New macro. | |
5807 | * infcmd.c (finish_command): Query if function does not return | |
5808 | normally. | |
5809 | * stack.c (return_command): Likewise. | |
5810 | ||
198297aa PA |
5811 | 2015-01-23 Pedro Alves <palves@redhat.com> |
5812 | ||
5813 | * linux-nat.c (linux_is_async_p): New macro. | |
5814 | (linux_nat_is_async_p): | |
5815 | (linux_nat_terminal_inferior): Check whether the target can async | |
5816 | instead of whether it is already async. | |
5817 | (linux_nat_terminal_ours): Don't check whether the target is | |
5818 | async. | |
5819 | (linux_async_pipe): Use linux_is_async_p. | |
5820 | ||
253828f1 JK |
5821 | 2015-01-22 Jan Kratochvil <jan.kratochvil@redhat.com> |
5822 | ||
5823 | * NEWS (Changes since GDB 7.9): Add 'thread apply all' option | |
5824 | '-ascending'. | |
5825 | * thread.c (tp_array_compar_ascending, tp_array_compar): New. | |
5826 | (thread_apply_all_command): Parse CMD for tp_array_compar_ascending. | |
5827 | Sort tp_array using tp_array_compar. | |
5828 | (_initialize_thread): Extend thread_apply_all_command help. | |
5829 | ||
f0e8c4c5 JK |
5830 | 2015-01-22 Jan Kratochvil <jan.kratochvil@redhat.com> |
5831 | ||
5832 | * corelow.c (core_open): Call also thread_command. | |
5833 | * gdbthread.h (thread_command): New prototype moved from ... | |
5834 | * thread.c (thread_command): ... here. | |
5835 | (thread_command): Make it global. | |
5836 | ||
03b79603 PA |
5837 | 2015-01-22 Pedro Alves <palves@redhat.com> |
5838 | ||
5839 | * configure.ac [*mingw32*]: Check $curses_found instead of | |
5840 | $prefer_curses. | |
5841 | * configure: Regenerate. | |
5842 | * windows-termcap.c: Remove HAVE_CURSES_H, HAVE_NCURSES_H and | |
5843 | HAVE_NCURSES_NCURSES_H checks. | |
5844 | ||
6b8a872f EZ |
5845 | 2015-01-22 Eli Zaretskii <eliz@gnu.org> |
5846 | ||
bbbbffbb | 5847 | * tui/tui.c (tui_enable) [__MINGW32__]: If the call to 'newterm' |
6b8a872f EZ |
5848 | fails with the 1st arg NULL, try again with "unknown". Don't test |
5849 | the "cup" capability: it isn't supported by the Windows port of | |
5850 | ncurses, but the Windows console driver is still capable of | |
5851 | supporting TUI. | |
5852 | ||
4b62a76e JK |
5853 | 2015-01-22 Jan Kratochvil <jan.kratochvil@redhat.com> |
5854 | ||
5855 | * compile/compile.c (_initialize_compile): Use -fPIE for compile_args. | |
5856 | ||
82a864f9 EZ |
5857 | 2015-01-22 Eli Zaretskii <eliz@gnu.org> |
5858 | ||
5859 | * Makefile.in (HFILES_NO_SRCDIR): Remove ada-varobj.h. | |
5860 | (ALLDEPFILES): Remove irix5-nat.c. These two are part of the | |
5861 | reason that "make TAGS" is broken. | |
5862 | ||
b35018fd CG |
5863 | 2015-01-22 Chen Gang <gang.chen.5i5j@gmail.com> |
5864 | ||
5865 | * hppa-tdep.c (inst_saves_gr): Fix logical working flow issues | |
5866 | and check additional store instructions. | |
5867 | ||
ffbc4646 WW |
5868 | 2015-01-21 Wei-cheng Wang <cole945@gmail.com> |
5869 | ||
5870 | * MAINTAINERS (Write After Approval): Add "Wei-cheng Wang". | |
5871 | ||
ddeca1df WW |
5872 | 2015-01-21 Wei-cheng Wang <cole945@gmail.com> |
5873 | ||
5874 | * ppc-linux-tdep.c (ppc_skip_trampoline_code, | |
5875 | ppc_canonicalize_syscall, ppc_linux_syscall_record, | |
5876 | ppc_linux_record_signal, ppc_init_linux_record_tdep): Add comments. | |
5877 | * ppc64-tdep.c (ppc64_skip_trampoline_code): Likewise. | |
5878 | * rs6000-tdep.c (rs6000_epilogue_frame_cache, | |
5879 | rs6000_epilogue_frame_this_id, rs6000_epilogue_frame_prev_register, | |
5880 | rs6000_epilogue_frame_sniffer, ppc_record_vsr, ppc_process_record_op4, | |
5881 | ppc_process_record_op19, ppc_process_record_op31, | |
5882 | ppc_process_record_op59, ppc_process_record_op60, | |
5883 | ppc_process_record_op63): Likewise. | |
5884 | ||
049bb5de JB |
5885 | 2015-01-20 Joel Brobecker <brobecker@adacore.com> |
5886 | ||
5887 | * nat/linux-ptrace.c (linux_ptrace_attach_fail_reason_string) | |
5888 | (linux_ptrace_test_ret_to_nx): Use safe_strerror instead of | |
5889 | strerror. | |
5890 | ||
42b87c63 | 5891 | 2015-01-20 Wei-cheng Wang <cole945@gmail.com> |
810c1026 WW |
5892 | |
5893 | * rs6000-tdep.c (ppc_process_record_op4, ppc_process_record_op19, | |
5894 | ppc_process_record_op31, ppc_process_record_op59, | |
5895 | ppc_process_record_op60, ppc_process_record_op63, | |
5896 | ppc_process_record): Fix -Wformat warning. | |
5897 | * rs6000-tdep.c (rs6000_epilogue_frame_cache, ppc_process_record_op60): | |
5898 | Remove unused variables. | |
5899 | ||
569340fc CG |
5900 | 2015-01-20 Chen Gang <gang.chen.5i5j@gmail.com> |
5901 | ||
5902 | * MAINTAINERS (Write After Approval): Add "Chen Gang". | |
5903 | ||
63413d85 EZ |
5904 | 2015-01-19 Eli Zaretskii <eliz@gnu.org> |
5905 | ||
5906 | * configure.ac [*mingw32*]: Only add windows-termcap.o to | |
5907 | CONFIG_OBS if not building with a curses library. | |
5908 | * configure: Regenerate. | |
5909 | ||
5910 | * windows-termcap.c: Include defs.h. Make the whole body empty if | |
5911 | either one of HAVE_CURSES_H or HAVE_NCURSES_H or | |
5912 | HAVE_NCURSES_NCURSES_H is defined. | |
5913 | ||
16d8013c JB |
5914 | 2015-01-19 Joel Brobecker <brobecker@adacore.com> |
5915 | ||
5916 | * rs6000-tdep.c (rs6000_gdbarch_init): Move divide operator | |
5917 | from end of line to start of next line. | |
5918 | ||
cf90fd9a WW |
5919 | 2015-01-17 Wei-cheng Wang <cole945@gmail.com> |
5920 | ||
5921 | * ppc-linux-tdep.c (ppc_skip_trampoline_code): | |
5922 | Scan PLT stub backward for reverse debugging. | |
5923 | * ppc64-tdep.c (ppc64_skip_trampoline_code): Likewise. | |
5924 | ||
b4cdae6f WW |
5925 | 2015-01-17 Wei-cheng Wang <cole945@gmail.com> |
5926 | Ulrich Weigand <uweigand@de.ibm.com> | |
5927 | ||
5928 | * configure.tgt (powerpc*-*-linux): Add linux-record.o to | |
5929 | gdb_target_obs. | |
5930 | (ppc_linux_record_tdep, ppc64_linux_record_tdep): New for linux syscall | |
5931 | record. | |
5932 | (ppc_canonicalize_syscall, ppc_linux_syscall_record, | |
5933 | ppc_linux_record_signal, ppc_init_linux_record_tdep): New functions. | |
5934 | (ppc_linux_init_abi): Set process_record, process_record_signal. | |
5935 | * ppc-tdep.h (struct gdbarch_tdep): Add ppc_syscall_record and | |
5936 | ppc_linux_record_tdep to gdbarch_tdep. | |
5937 | (ppc_process_record): New declaration. | |
5938 | * rs6000-tdep.c (ppc_record_vsr, ppc_process_record_op4, | |
5939 | ppc_process_record_op19, ppc_process_record_op31, | |
5940 | ppc_process_record_op59, ppc_process_record_op60, | |
5941 | ppc_process_record_op63, ppc_process_record): New functions. | |
5942 | ||
2608dbf8 WW |
5943 | 2015-01-17 Wei-cheng Wang <cole945@gmail.com> |
5944 | ||
5945 | * rs6000-tdep.c (rs6000_in_function_epilogue_p): Rename to | |
5946 | rs6000_in_function_epilogue_frame_p and add an argument | |
5947 | for frame_info. | |
5948 | (rs6000_epilogue_frame_cache, rs6000_epilogue_frame_this_id, | |
5949 | rs6000_epilogue_frame_prev_register, rs6000_epilogue_frame_sniffer): | |
5950 | New functions. | |
5951 | (rs6000_epilogue_frame_unwind): New. | |
5952 | (rs6000_gdbarch_init): Append epilogue unwinder. | |
5953 | ||
4c347be6 SDJ |
5954 | 2015-01-16 Sergio Durigan Junior <sergiodj@redhat.com> |
5955 | ||
5956 | * nat/linux-personality.c: Replace "#ifndef | |
5957 | HAVE_DECL_ADDR_NO_RANDOMIZE" by "#if | |
5958 | !HAVE_DECL_ADDR_NO_RANDOMIZE", fixing a regression in RHEL-5 | |
5959 | systems. | |
5960 | ||
9f2850ba EZ |
5961 | 2015-01-16 Eli Zaretskii <eliz@gnu.org> |
5962 | ||
6cdb25f4 EZ |
5963 | * tui/tui-win.c (tui_rehighlight_all, tui_set_var_cmd): New |
5964 | functions. | |
5965 | (_initialize_tui_win) <border-kind, border-mode>: | |
5966 | <active-border-mode>: Use tui_set_var_cmd as the "set" function. | |
c54da50d EZ |
5967 | (tui_set_tab_width_command): Fix the commentary. |
5968 | ||
6cdb25f4 EZ |
5969 | * tui/tui-win.h: Add prototype for tui_rehighlight_all. |
5970 | ||
bf555842 EZ |
5971 | * tui/tui-win.c (tui_scroll_left_command, tui_scroll_right_command): |
5972 | Doc fix. | |
cb86fcc1 EZ |
5973 | (tui_set_tab_width_command): Delete and recreate the source and |
5974 | the disassembly windows, to show the effect of the changed tab | |
5975 | size immediately. | |
bf555842 | 5976 | |
9f2850ba EZ |
5977 | * tui/tui-data.h (LINE_PREFIX): Make shorter |
5978 | (MAX_PID_WIDTH): Enlarge from 14 to 19, to leave enough space for | |
5979 | "Thread NNNNN.XXXX" thread ID notation on Windows. | |
5980 | ||
95761b2d JK |
5981 | 2015-01-16 Jan Kratochvil <jan.kratochvil@redhat.com> |
5982 | ||
5983 | Fix gcc-5 compilation. | |
5984 | * hppa-tdep.c (inst_saves_gr): Fix parentheses typo. | |
5985 | ||
8cc73a39 SDJ |
5986 | 2015-01-15 Sergio Durigan Junior <sergiodj@redhat.com> |
5987 | ||
5988 | * Makefile.in (HFILES_NO_SRCDIR): Add nat/linux-personality.h. | |
5989 | (linux-personality.o): New rule. | |
5990 | * common/common-defs.h: Include <stdint.h>. | |
5991 | * config/aarch64/linux.mh (NATDEPFILES): Include | |
5992 | linux-personality.o. | |
5993 | * config/alpha/alpha-linux.mh (NATDEPFILES): Likewise. | |
5994 | * config/arm/linux.mh (NATDEPFILES): Likewise. | |
5995 | * config/i386/linux64.mh (NATDEPFILES): Likewise. | |
5996 | * config/i386/linux.mh (NATDEPFILES): Likewise. | |
5997 | * config/ia64/linux.mh (NATDEPFILES): Likewise. | |
5998 | * config/m32r/linux.mh (NATDEPFILES): Likewise. | |
5999 | * config/m68k/linux.mh (NATDEPFILES): Likewise. | |
6000 | * config/mips/linux.mh (NATDEPFILES): Likewise. | |
6001 | * config/pa/linux.mh (NATDEPFILES): Likewise. | |
6002 | * config/powerpc/linux.mh (NATDEPFILES): Likewise. | |
6003 | * config/powerpc/ppc64-linux.mh (NATDEPFILES): Likewise. | |
6004 | * config/powerpc/spu-linux.mh (NATDEPFILES): Likewise. | |
6005 | * config/s390/linux.mh (NATDEPFILES): Likewise. | |
6006 | * config/sparc/linux64.mh (NATDEPFILES): Likewise. | |
6007 | * config/sparc/linux.mh (NATDEPFILES): Likewise. | |
6008 | * config/tilegx/linux.mh (NATDEPFILES): Likewise. | |
6009 | * config/xtensa/linux.mh (NATDEPFILES): Likewise. | |
6010 | * defs.h: Remove #include <stdint.h> (moved to | |
6011 | common/common-defs.h). | |
6012 | * linux-nat.c: Include nat/linux-personality.h. Remove #include | |
6013 | <sys/personality.h>; do not define ADDR_NO_RANDOMIZE (moved to | |
6014 | nat/linux-personality.c). | |
6015 | (linux_nat_create_inferior): Remove code to disable address space | |
6016 | randomization (moved to nat/linux-personality.c). Create cleanup | |
6017 | to disable address space randomization. | |
6018 | * nat/linux-personality.c: New file. | |
6019 | * nat/linux-personality.h: Likewise. | |
6020 | ||
fb23d554 SDJ |
6021 | 2015-01-15 Sergio Durigan Junior <sergiodj@redhat.com> |
6022 | ||
6023 | * Makefile.in (ALLDEPFILES): Including common/mingw-strerror.c and | |
6024 | common/posix-strerror.c. | |
6025 | (posix-strerror.o): New rule. | |
6026 | (mingw-strerror.o): Likewise. | |
6027 | * common/common-utils.h (safe_strerror): Move prototype to here, | |
6028 | from utils.h. | |
6029 | * common/common.host: New file. | |
6030 | * common/mingw-strerror.c: Likewise. | |
6031 | * common/posix-strerror.c: Likewise. | |
6032 | * configure: Regenerated. | |
6033 | * configure.ac: Source common/common.host. Add variable | |
6034 | common_host_obs to gdb_host_obs. | |
6035 | * contrib/ari/gdb_ari.sh: Mention gdb/common/mingw-strerror.c and | |
6036 | gdb/common/posix-strerror.c when warning about the use of | |
6037 | strerror. | |
6038 | * mingw-hdep.c (safe_strerror): Remove definition; move it to | |
6039 | common/mingw-strerror.c. | |
6040 | * posix-hdep.c (safe_strerror): Remove definition; move it to | |
6041 | common/posix-hdep.c. | |
6042 | * utils.h (safe_strerror): Remove prototype; move to | |
6043 | common/common-utils.h. | |
6044 | ||
3af8af43 JB |
6045 | 2015-01-15 Joel Brobecker <brobecker@adacore.com> |
6046 | ||
6047 | GDB 7.8.2 released. | |
6048 | ||
bafffb51 JB |
6049 | 2015-01-15 Joel Brobecker <brobecker@adacore.com> |
6050 | ||
6051 | * ada-lang.c (ada_array_bound_from_type): Ignore array's parallel | |
6052 | ___XA type if the array has already been fixed. | |
6053 | ||
cdf43629 YQ |
6054 | 2015-01-14 Yao Qi <yao@codesourcery.com> |
6055 | ||
6056 | * Makefile.in (ppc-linux.o): New rule. | |
6057 | * config/powerpc/ppc64-linux.mh (NATDEPFILES): Add ppc-linux.o. | |
6058 | * configure.ac: AC_CHECK_FUNCS(getauxval). | |
6059 | * config.in: Re-generated. | |
6060 | * configure: Re-generated. | |
6061 | * nat/ppc-linux.h [__powerpc64__] (ppc64_64bit_inferior_p): | |
6062 | Declare. | |
6063 | * nat/ppc-linux.c: New file. | |
6064 | * ppc-linux-nat.c (ppc_linux_target_wordsize) [__powerpc64__]: | |
6065 | Call ppc64_64bit_inferior_p. | |
6066 | ||
514c5338 YQ |
6067 | 2015-01-14 Yao Qi <yao@codesourcery.com> |
6068 | ||
6069 | * ppc-linux-nat.c (PT_ORIG_R3, PT_TRAP): Move to | |
6070 | nat/ppc-linux.h. | |
6071 | (PPC_FEATURE_CELL, PPC_FEATURE_BOOKE): Likewise. | |
6072 | (PPC_FEATURE_HAS_DFP): Likewise. | |
6073 | (PTRACE_GETVRREGS, PTRACE_SETVRREGS): Likewise. | |
6074 | (PTRACE_GETVSXREGS, PTRACE_SETVSXREGS): Likewise. | |
6075 | (PTRACE_GETEVRREGS, PTRACE_SETEVRREGS): Likewise. | |
6076 | Include "nat/ppc-linux.h". | |
6077 | * nat/ppc-linux.h: New file. | |
6078 | * Makefile.in (HFILES_NO_SRCDIR): Add nat/ppc-linux.h. | |
6079 | ||
5589af0e PA |
6080 | 2015-01-14 Pedro Alves <palves@redhat.com> |
6081 | ||
6082 | PR gdb/17525 | |
6083 | * breakpoint.c: Include "interps.h". | |
6084 | (bpstat_do_actions_1): Also check whether the interpreter is | |
6085 | async. | |
6086 | ||
6c400b59 PA |
6087 | 2015-01-14 Pedro Alves <palves@redhat.com> |
6088 | ||
6089 | PR cli/17828 | |
6090 | * infrun.c (reinstall_readline_callback_handler_cleanup): Don't | |
6091 | reinstall if the interpreter is sync. | |
6092 | ||
e02c96a7 DE |
6093 | 2015-01-13 Doug Evans <dje@google.com> |
6094 | ||
6095 | * objfiles.c (objfile_filename): New function. | |
6096 | * objfiles.h (objfile_filename): Declare it. | |
6097 | (objfile_name): Add function comment. | |
6098 | * python/py-objfile.c (objfpy_lookup_objfile_by_name): Try both the | |
6099 | bfd file name (which may be realpath'd), and the original name. | |
6100 | ||
3b2f13ff JB |
6101 | 2015-01-13 Joel Brobecker <brobecker@adacore.com> |
6102 | ||
6103 | * NEWS: Create a new section for the next release branch. | |
6104 | Rename the section of the current branch, now that it has | |
6105 | been cut. | |
6106 | ||
b4cfe7f8 JB |
6107 | 2015-01-13 Joel Brobecker <brobecker@adacore.com> |
6108 | ||
6109 | GDB 7.9 branch created (92fc2e6978d9a7c8324c7e851dbee59e22ec7a37): | |
6110 | * version.in: Bump version to 7.9.50.DATE-cvs. | |
6111 | ||
92fc2e69 JB |
6112 | 2015-01-13 Joel Brobecker <brobecker@adacore.com> |
6113 | ||
6114 | * nat/linux-procfs.c (linux_proc_attach_tgid_threads): | |
6115 | Remove trailing new-line in argument of call to warning. | |
6116 | ||
f71f0b0d JB |
6117 | 2015-01-13 Joel Brobecker <brobecker@adacore.com> |
6118 | ||
6119 | * linux-nat.c (attach_proc_task_lwp_callback): Remove trailing | |
6120 | new-line in argument of call to "warning". | |
6121 | ||
04dccad0 JB |
6122 | 2015-01-13 Joel Brobecker <brobecker@adacore.com> |
6123 | ||
6124 | * ada-lang.c (ada_lookup_symbol_nonlocal): If name not found | |
6125 | in static block, then try searching for primitive types. | |
6126 | ||
08b13bdd PP |
6127 | 2015-01-12 Patrick Palka <patrick@parcs.ath.cx> |
6128 | ||
6129 | * top.h (gdb_add_history): Declare. | |
6130 | * top.c (command_count): New variable. | |
6131 | (gdb_add_history): New function. | |
6132 | (gdb_safe_append_history): New static function. | |
6133 | (quit_force): Call it. | |
6134 | (command_line_input): Use gdb_add_history instead of | |
6135 | add_history. | |
6136 | * event-top.c (command_line_handler): Likewise. | |
6137 | ||
4ac15b59 JC |
6138 | 2015-01-12 James Clarke <jrtc27@jrtc27.com> (tiny patch) |
6139 | ||
6140 | PR gdb/17046 | |
6141 | * darwin-nat.c: Replace <machine/setjmp.h> #include by | |
6142 | <setjmp.h> #include. | |
6143 | ||
005e54bb DE |
6144 | 2015-01-11 Doug Evans <xdje42@gmail.com> |
6145 | ||
6146 | * dwarf2read.c (compute_delayed_physnames): Use TYPE_FN_FIELD_PHYSNAME. | |
6147 | ||
439250fb DE |
6148 | 2015-01-11 Doug Evans <xdje42@gmail.com> |
6149 | ||
6150 | PR gdb/15830 | |
6151 | * NEWS: The "maint demangle" command is renamed as "demangle". | |
6152 | * demangle.c: #include cli/cli-utils.h, language.h. | |
6153 | (demangle_command): New function. | |
6154 | (_initialize_demangle): Add new command "demangle". | |
6155 | * maint.c (maintenance_demangle): Stub out. | |
6156 | (_initialize_maint_cmds): Update help text for "maint demangle", | |
6157 | and mark as deprecated. | |
6158 | ||
ebf3aa72 MK |
6159 | 2015-01-11 Mark Kettenis <kettenis@gnu.org> |
6160 | ||
6161 | * inf-ptrace.c (inf_ptrace_follow_fork): Adjust now that | |
6162 | inferior_thread is a function. | |
6163 | ||
6bf045cd PP |
6164 | 2015-01-09 Patrick Palka <patrick@parcs.ath.cx> |
6165 | ||
6166 | * Makefile.in (.y.c): Don't munge yacc's #line | |
6167 | directives. | |
6168 | ||
588dcc3e PP |
6169 | 2015-01-09 Patrick Palka <patrick@parcs.ath.cx> |
6170 | ||
6171 | * utils.c (defaulted_query): Rewrite to use gdb_readline_wrapper | |
6172 | to prompt for input. | |
6173 | * tui/tui-hooks.c (tui_query_hook): Remove. | |
6174 | (tui_install_hooks): Don't set deprecated_query_hook. | |
6175 | * tui/tui-io.c (tui_redisplay_readline): Fix off-by-one error in | |
6176 | height calculation. Always update the command window's cur_line. | |
6177 | ||
9c02b525 PA |
6178 | 2015-01-09 Pedro Alves <palves@redhat.com> |
6179 | ||
6180 | * breakpoint.c (hardware_breakpoint_inserted_here_p): New | |
6181 | function. | |
6182 | * breakpoint.h (hardware_breakpoint_inserted_here_p): New | |
6183 | declaration. | |
6184 | * linux-nat.c (linux_nat_status_is_event): Move higher up in file. | |
6185 | (linux_resume_one_lwp): Store the thread's PC. Adjust to clear | |
6186 | stop_reason. | |
6187 | (check_stopped_by_watchpoint): New function. | |
6188 | (save_sigtrap): Reimplement. | |
6189 | (linux_nat_stopped_by_watchpoint): Adjust. | |
6190 | (linux_nat_lp_status_is_event): Delete. | |
6191 | (stop_wait_callback): Only call save_sigtrap after storing the | |
6192 | pending status. | |
6193 | (status_callback): If the thread had been stopped for a breakpoint | |
6194 | that has since been removed, discard the event and resume the LWP. | |
6195 | (count_events_callback, select_event_lwp_callback): Use | |
6196 | lwp_status_pending_p instead of linux_nat_lp_status_is_event. | |
6197 | (cancel_breakpoint): Rename to ... | |
6198 | (check_stopped_by_breakpoint): ... this. Record whether the LWP | |
6199 | stopped for a software breakpoint or hardware breakpoint. | |
6200 | (select_event_lwp): Only give preference to the stepping LWP in | |
6201 | all-stop mode. Adjust comments. | |
6202 | (stop_and_resume_callback): Remove references to new_pending_p. | |
6203 | (linux_nat_filter_event): Likewise. Leave exit events of the | |
6204 | leader thread pending here. Handle signal short circuiting here. | |
6205 | Only call save_sigtrap after storing the pending waitstatus. | |
6206 | (linux_nat_wait_1): Remove 'retry' label. Remove references to | |
6207 | new_pending. Don't handle leaving events the caller is not | |
6208 | interested in pending here, nor handle signal short-circuiting | |
6209 | here. Also give equal priority to all LWPs that have had events | |
6210 | in non-stop mode. If reporting a software breakpoint event, | |
6211 | unadjust the LWP's PC. | |
6212 | * linux-nat.h (enum lwp_stop_reason): New. | |
6213 | (struct lwp_info) <stop_pc>: New field. | |
6214 | (struct lwp_info) <stopped_by_watchpoint>: Delete field. | |
6215 | (struct lwp_info) <stop_reason>: New field. | |
6216 | * x86-linux-nat.c (x86_linux_prepare_to_resume): Adjust. | |
6217 | ||
8af756ef PA |
6218 | 2015-01-09 Pedro Alves <palves@redhat.com> |
6219 | ||
6220 | * linux-nat.c (linux_handle_extended_wait) <PTRACE_EVENT_EXEC>: | |
6221 | Set the LWP's 'resumed' flag. | |
6222 | ||
8a99810d PA |
6223 | 2015-01-09 Pedro Alves <palves@redhat.com> |
6224 | ||
6225 | * linux-nat.c (linux_resume_one_lwp): New function. | |
6226 | (resume_lwp): Use lwp_status_pending_p and linux_resume_one_lwp. | |
6227 | (linux_nat_resume): Use lwp_status_pending_p and | |
6228 | linux_resume_one_lwp. | |
6229 | (linux_handle_syscall_trap): Use linux_resume_one_lwp. | |
6230 | (linux_handle_extended_wait): Use linux_resume_one_lwp. | |
6231 | (status_callback, running_callback): Use lwp_status_pending_p. | |
6232 | (lwp_status_pending_p): New function. | |
6233 | (stop_and_resume_callback): Use lwp_status_pending_p. | |
6234 | (linux_nat_filter_event): Use linux_resume_one_lwp. | |
6235 | (linux_nat_wait_1): Always use status_callback to look for an LWP | |
6236 | with a pending status. Use linux_resume_one_lwp. | |
6237 | (resume_stopped_resumed_lwps): Use lwp_status_pending_p and | |
6238 | linux_resume_one_lwp. | |
6239 | ||
f7ce857f PA |
6240 | 2015-01-09 Pedro Alves <palves@redhat.com> |
6241 | ||
6242 | * breakpoint.c (bp_location_inserted_here_p): New function, | |
6243 | factored out from ... | |
6244 | (breakpoint_inserted_here_p): ... here. Use | |
6245 | ALL_BP_LOCATIONS_AT_ADDR. | |
6246 | (software_breakpoint_inserted_here_p): Use | |
6247 | bp_location_inserted_here_p and ALL_BP_LOCATIONS_AT_ADDR. | |
6248 | ||
c1a747c1 PA |
6249 | 2014-01-09 Pedro Alves <palves@redhat.com> |
6250 | ||
6251 | Skip enabling event reporting if the kernel supports | |
6252 | PTRACE_EVENT_CLONE. | |
6253 | * linux-thread-db.c: Include "nat/linux-ptrace.h". | |
6254 | (thread_db_use_events): New function. | |
6255 | (try_thread_db_load_1): Check thread_db_use_events before enabling | |
6256 | event reporting. | |
6257 | (update_thread_state): New function. | |
6258 | (attach_thread): Use it. Check thread_db_use_events before | |
6259 | enabling event reporting. | |
6260 | (thread_db_detach): Check thread_db_use_events before disabling | |
6261 | event reporting. | |
6262 | (find_new_threads_callback): Check thread_db_use_events before | |
6263 | enabling event reporting. Update the thread's state if not using | |
6264 | libthread_db events. | |
6265 | ||
a33e3959 PA |
6266 | 2015-01-09 Pedro Alves <palves@redhat.com> |
6267 | ||
6268 | * linux-nat.c (lin_lwp_attach_lwp): Assert that the lwp id we're | |
6269 | about to wait for is > 0. | |
6270 | * linux-thread-db.c (find_new_threads_callback): Ignore thread if | |
6271 | the kernel thread ID is -1. | |
6272 | ||
8784d563 PA |
6273 | 2015-01-09 Pedro Alves <palves@redhat.com> |
6274 | ||
6275 | * linux-nat.c (attach_proc_task_lwp_callback): New function. | |
6276 | (linux_nat_attach): Use linux_proc_attach_tgid_threads. | |
6277 | (wait_lwp, linux_nat_filter_event): If not set yet, set the lwp's | |
6278 | ptrace option flags. | |
6279 | * linux-nat.h (struct lwp_info) <must_set_ptrace_flags>: New | |
6280 | field. | |
6281 | * nat/linux-procfs.c: Include <dirent.h>. | |
6282 | (linux_proc_get_int): New parameter "warn". Handle it. | |
6283 | (linux_proc_get_tgid): Adjust. | |
6284 | (linux_proc_get_tracerpid): Rename to ... | |
6285 | (linux_proc_get_tracerpid_nowarn): ... this. | |
6286 | (linux_proc_pid_get_state): New function, factored out from | |
6287 | (linux_proc_pid_has_state): ... this. Add new parameter "warn" | |
6288 | and handle it. | |
6289 | (linux_proc_pid_is_gone): New function. | |
6290 | (linux_proc_pid_is_stopped): Adjust. | |
6291 | (linux_proc_pid_is_zombie_maybe_warn) | |
6292 | (linux_proc_pid_is_zombie_nowarn): New functions. | |
6293 | (linux_proc_pid_is_zombie): Use | |
6294 | linux_proc_pid_is_zombie_maybe_warn. | |
6295 | (linux_proc_attach_tgid_threads): New function. | |
6296 | * nat/linux-procfs.h (linux_proc_get_tgid): Update comment. | |
6297 | (linux_proc_get_tracerpid): Rename to ... | |
6298 | (linux_proc_get_tracerpid_nowarn): ... this, and update comment. | |
6299 | (linux_proc_pid_is_gone): New declaration. | |
6300 | (linux_proc_pid_is_zombie): Update comment. | |
6301 | (linux_proc_pid_is_zombie_nowarn): New declaration. | |
6302 | (linux_proc_attach_lwp_func): New typedef. | |
6303 | (linux_proc_attach_tgid_threads): New declaration. | |
6304 | * nat/linux-ptrace.c (linux_ptrace_attach_fail_reason): Adjust to | |
6305 | use nowarn functions. | |
6306 | (linux_ptrace_attach_fail_reason_string): Move here from | |
6307 | gdbserver/linux-low.c and rename. | |
6308 | (ptrace_supports_feature): If the current ptrace options are not | |
6309 | known yet, check them now, instead of asserting. | |
6310 | * nat/linux-ptrace.h (linux_ptrace_attach_fail_reason_string): | |
6311 | Declare. | |
6312 | ||
883ed13e PA |
6313 | 2015-01-09 Pedro Alves <palves@redhat.com> |
6314 | ||
6315 | * linux-thread-db.c (thread_db_find_new_threads_silently) | |
6316 | (try_thread_db_load_1, try_thread_db_load, thread_db_load_search) | |
6317 | (find_new_threads_once): Print debug output on gdb_stdlog. | |
6318 | ||
1710aab8 CG |
6319 | 2015-01-09 Chen Gang <gang.chen.5i5j@gmail.com> |
6320 | Pedro Alves <palves@redhat.com> | |
6321 | ||
6322 | * compile/compile.c: Include "gdb_wait.h". | |
6323 | (do_rmdir): Check return value, and free 'zap'. | |
6324 | ||
b597c318 YQ |
6325 | 2015-01-08 Pedro Alves <palves@redhat.com> |
6326 | Yao Qi <yao@codesourcery.com> | |
6327 | ||
6328 | * dwarf2loc.c (indirect_pieced_value): Don't call | |
6329 | gdb_sign_extend. Call extract_signed_integer instead. | |
6330 | * utils.c (gdb_sign_extend): Remove. | |
6331 | * utils.h (gdb_sign_extend): Remove declaration. | |
6332 | ||
025ac414 PM |
6333 | 2015-01-07 Pierre Muller <muller@sourceware.org> |
6334 | ||
6335 | PR symtab/17811 | |
6336 | * stabsread.c (define_symbol): Set language for C++ special symbols. | |
6337 | ||
fa5af12a PP |
6338 | 2015-01-07 Patrick Palka <patrick@parcs.ath.cx> |
6339 | ||
6340 | * inflow.c (initial_gdb_ttystate): Tweak comment. | |
6341 | ||
ea42d6f8 JB |
6342 | 2015-01-07 Joel Brobecker <brobecker@adacore.com> |
6343 | ||
6344 | * inflow.c (set_initial_gdb_ttystate): Add empty line after | |
6345 | comment documenting function. | |
6346 | ||
6a06d660 PP |
6347 | 2015-01-07 Patrick Palka <patrick@parcs.ath.cx> |
6348 | ||
6349 | * terminal.h (set_initial_gdb_ttystate): Declare. | |
6350 | * inflow.c (initial_gdb_ttystate): New static variable. | |
6351 | (set_initial_gdb_ttystate): New setter. | |
6352 | (child_terminal_init_with_pgrp): Copy initial_gdb_ttystate | |
6353 | instead of our current terminal state. | |
6354 | * top.c (gdb_init): Call set_initial_gdb_ttystate. | |
6355 | ||
e810d75b JB |
6356 | 2015-01-07 Joel Brobecker <brobecker@adacore.com> |
6357 | ||
6358 | * guile/scm-type.c (tyscm_array_1): Add comment. | |
6359 | * python/py-type.c (typy_array_1): Add comment. | |
6360 | ||
fce10a84 JB |
6361 | 2015-01-06 Joel Brobecker <brobecker@adacore.com> |
6362 | ||
6363 | * guile/scm-type.c (tyscm_array_1): Do not raise out-of-range | |
6364 | error if N2 is equal to N1 - 1. | |
6365 | ||
8503d6e1 JB |
6366 | 2015-01-06 Joel Brobecker <brobecker@adacore.com> |
6367 | ||
6368 | * python/py-type.c (typy_array_1): Do not raise negative-length | |
6369 | exception if N2 is equal to N1 - 1. | |
6370 | ||
4d29c0a8 DE |
6371 | 2015-01-03 Doug Evans <xdje42@gmail.com> |
6372 | ||
6373 | * c-exp.y: Whitespace cleanup. | |
6374 | (classify_inner_name): Remove extra ;. | |
6375 | ||
eaa6a9a4 MR |
6376 | 2015-01-02 Maciej W. Rozycki <macro@codesourcery.com> |
6377 | ||
6378 | * mips-tdep.c (mips32_scan_prologue): Keep the extracted stack | |
6379 | offset signed. | |
6380 | ||
02fe9972 DE |
6381 | 2015-01-02 Doug Evans <dje@google.com> |
6382 | ||
6383 | * dwarf2read.c (setup_type_unit_groups): Remove outdated comment. | |
6384 | ||
e2ada9cb DE |
6385 | 2015-01-02 Doug Evans <dje@google.com> |
6386 | ||
6387 | * symtab.h (struct symbol): Fix typo in comment. | |
6388 | ||
32d0add0 JB |
6389 | 2015-01-01 Joel Brobecker <brobecker@adacore.com> |
6390 | ||
6391 | Update year range in copyright notice of all files. | |
6392 | ||
76f2b779 JB |
6393 | 2015-01-01 Joel Brobecker <brobecker@adacore.com> |
6394 | ||
6395 | * top.c (print_gdb_version): Update copyright year to 2015. | |
6396 | ||
077309e2 | 6397 | 2015-01-01 Joel Brobecker <brobecker@adacore.com> |
6bf6fd09 | 6398 | |
077309e2 | 6399 | * config/djgpp/fnchange.lst: Add entry for gdb/ChangeLog-2014. |
6bf6fd09 | 6400 | |
077309e2 | 6401 | For older changes see ChangeLog-2014. |
c906108c SS |
6402 | \f |
6403 | Local Variables: | |
6404 | mode: change-log | |
6405 | left-margin: 8 | |
6406 | fill-column: 74 | |
6407 | version-control: never | |
57da7796 | 6408 | coding: utf-8 |
c906108c | 6409 | End: |