Make all source files include defs.h or server.h first
[deliverable/binutils-gdb.git] / gdb / gdbserver / ChangeLog
CommitLineData
d41f6d8e
GB
12014-07-30 Gary Benson <gbenson@redhat.com>
2
3 * hostio-errno.c: Move server.h to top of includes list.
4 * inferiors.c: Likewise.
5 * linux-x86-low.c: Likewise.
6 * notif.c: Include server.h.
7
314c6a35
TT
82014-07-24 Tom Tromey <tromey@redhat.com>
9 Gary Benson <gbenson@redhat.com>
10
11 * server.h (CORE_ADDR): Now unsigned.
12
69ff6be5
PA
132014-07-16 Pedro Alves <palves@redhat.com>
14
15 * linux-low.c (linux_kill_one_lwp): Use kill_lwp, not kill.
16
ce9e3fe7
PA
172014-07-15 Pedro Alves <palves@redhat.com>
18
19 * linux-low.c (linux_kill_one_lwp): Save errno and work with saved
20 copy.
21
e76126e8
PA
222014-07-11 Pedro Alves <palves@redhat.com>
23
24 * linux-low.c (kill_wait_lwp): New function, based on
25 kill_one_lwp_callback, but use my_waitpid directly.
26 (kill_one_lwp_callback, linux_kill): Use it.
27
8e9db26e
PA
282014-06-23 Pedro Alves <palves@redhat.com>
29
30 * linux-x86-low.c (x86_linux_prepare_to_resume): Clear DR_CONTROL
31 before setting DR0..DR3.
32
698b3e08
GB
332014-06-20 Gary Benson <gbenson@redhat.com>
34
35 * configure.ac (AC_REPLACE_FUNCS) <vasprintf, vsnprintf>: Removed.
36 * configure: Regenerated.
37 * config.in: Likewise.
38
125f8a3d
GB
392014-06-20 Gary Benson <gbenson@redhat.com>
40
41 * Makefile.in (SFILES): Update locations for files moved
42 from common to nat.
43 (object file files): Reordered.
44
42995dbd
GB
452014-06-20 Gary Benson <gbenson@redhat.com>
46
47 * i386-low.h (i386_dr_low_can_set_addr): Removed.
48 (i386_dr_low_set_addr): Likewise.
49 (i386_dr_low_get_addr): Likewise.
50 (i386_dr_low_can_set_control): Likewise.
51 (i386_dr_low_set_control): Likewise.
52 (i386_dr_low_get_control): Likewise.
53 (i386_dr_low_get_status): Likewise.
54 (i386_get_debug_register_length): Likewise.
55 * linux-x86-low.c (i386_dr_low_set_addr):
56 Changed signature. Made static.
57 (i386_dr_low_get_addr): Likewise.
58 (i386_dr_low_set_control): Likewise.
59 (i386_dr_low_get_control): Likewise.
60 (i386_dr_low_get_status): Likewise.
61 (i386_dr_low): New global variable.
62 * win32-i386-low.c (i386_dr_low_set_addr):
63 Changed signature. Made static.
64 (i386_dr_low_get_addr): Likewise.
65 (i386_dr_low_set_control): Likewise.
66 (i386_dr_low_get_control): Likewise.
67 (i386_dr_low_get_status): Likewise.
68 (i386_dr_low): New global variable.
69
e1d2394b
MS
702014-06-20 Marcus Shawcroft <marcus.shawcroft@arm.com>
71
72 * configure.ac: Invoke. AC_CHECK_TOOL(AR, ar).
73 * Makefile.in (AR, AR_FLAGS): Define.
74 * configure: Regenerate.
75
3a8ee006
GB
762014-06-19 Gary Benson <gbenson@redhat.com>
77
78 * Makefile.in (i386-dregs.o): New rule.
79 * configure.srv: Add i386-dregs.o to all targets using i386-low.o.
80 * i386-low.c (target.h): Remove include.
81 (TARGET_HAS_DR_LEN_8): Now in i386-dregs.c.
82 (DR_CONTROL_SHIFT): Likewise.
83 (DR_CONTROL_SIZE): Likewise.
84 (DR_RW_EXECUTE): Likewise.
85 (DR_RW_WRITE): Likewise.
86 (DR_RW_READ): Likewise.
87 (DR_RW_IORW): Likewise.
88 (DR_LEN_1): Likewise.
89 (DR_LEN_2): Likewise.
90 (DR_LEN_4): Likewise.
91 (DR_LEN_8): Likewise.
92 (DR_LOCAL_ENABLE_SHIFT): Likewise.
93 (DR_GLOBAL_ENABLE_SHIFT): Likewise.
94 (DR_ENABLE_SIZE): Likewise.
95 (DR_LOCAL_SLOWDOWN): Likewise.
96 (DR_GLOBAL_SLOWDOWN): Likewise.
97 (DR_CONTROL_RESERVED): Likewise.
98 (I386_DR_CONTROL_MASK): Likewise.
99 (I386_DR_VACANT): Likewise.
100 (I386_DR_LOCAL_ENABLE): Likewise.
101 (I386_DR_GLOBAL_ENABLE): Likewise.
102 (I386_DR_DISABLE): Likewise.
103 (I386_DR_SET_RW_LEN): Likewise.
104 (I386_DR_GET_RW_LEN): Likewise.
105 (I386_DR_WATCH_HIT): Likewise.
106 (i386_wp_op_t): Likewise.
107 (i386_show_dr): Likewise.
108 (i386_length_and_rw_bits): Likewise.
109 (i386_insert_aligned_watchpoint): Likewise.
110 (i386_remove_aligned_watchpoint): Likewise.
111 (i386_handle_nonaligned_watchpoint): Likewise.
112 i386_update_inferior_debug_regs(): Likewise.
113 (i386_dr_insert_watchpoint): Likewise.
114 (i386_dr_remove_watchpoint): Likewise.
115 (i386_dr_region_ok_for_watchpoint): Likewise.
116 (i386_dr_stopped_data_address): Likewise.
117 (i386_dr_stopped_by_watchpoint): Likewise.
118
8f26655c
GB
1192014-06-19 Gary Benson <gbenson@redhat.com>
120
121 * i386-low.c (i386_dr_show): Renamed to
122 i386_show_dr and made static. All uses updated.
123 (i386_dr_length_and_rw_bits): Renamed to
124 i386_length_and_rw_bits and made static.
125 All uses updated.
126 (i386_dr_insert_aligned_watchpoint): Renamed to
127 i386_insert_aligned_watchpoint and made static.
128 All uses updated.
129 (i386_dr_remove_aligned_watchpoint): Renamed to
130 i386_remove_aligned_watchpoint and made static.
131 All uses updated.
132 (i386_dr_update_inferior_debug_regs): Renamed to
133 i386_update_inferior_debug_regs and made static.
134 All uses updated.
135
b9228891
GB
1362014-06-18 Gary Benson <gbenson@redhat.com>
137
5171def3
GB
138 * i386-low.h (i386_dr_low_can_set_addr): New macro.
139 (i386_dr_low_can_set_control): Likewise.
140 (i386_get_debug_register_length): Likewise.
141 * i386-low.c (i386_dr_low_can_set_addr): Now in i386-low.h.
142 (i386_dr_low_can_set_control): Likewise.
143 (i386_get_debug_register_length): Likewise.
144
1452014-06-17 Gary Benson <gbenson@redhat.com>
146
b9228891
GB
147 * i386-low.h (i386-dregs.h): New include.
148 (DR_FIRSTADDR): Now in i386-dregs.h.
149 (DR_LASTADDR): Likewise.
150 (DR_NADDR): Likewise.
151 (DR_STATUS): Likewise.
152 (DR_CONTROL): Likewise.
153 (i386_debug_reg_state): Likewise.
154 (i386_dr_insert_watchpoint): Likewise.
155 (i386_dr_remove_watchpoint): Likewise.
156 (i386_dr_region_ok_for_watchpoint): Likewise.
157 (i386_dr_stopped_data_address): Likewise.
158 (i386_dr_stopped_by_watchpoint): Likewise.
159 * i386-low.c (ALL_DEBUG_REGISTERS): Likewise.
160
4be83cc2
GB
1612014-06-18 Gary Benson <gbenson@redhat.com>
162
163 * i386-low.h (i386_low_insert_watchpoint): Renamed to
164 i386_dr_insert_watchpoint.
165 (i386_low_remove_watchpoint): Renamed to
166 i386_dr_remove_watchpoint.
167 (i386_low_region_ok_for_watchpoint): Renamed to
168 i386_dr_region_ok_for_watchpoint.
169 (i386_low_stopped_data_address): Renamed to
170 i386_dr_stopped_data_address.
171 (i386_low_stopped_by_watchpoint): Renamed to
172 i386_dr_stopped_by_watchpoint.
173 * i386-low.c (i386_show_dr): Renamed to
174 i386_dr_show and made nonstatic. All uses updated.
175 (i386_length_and_rw_bits): Renamed to
176 i386_dr_length_and_rw_bits and made nonstatic.
177 All uses updated.
178 (i386_insert_aligned_watchpoint): Renamed to
179 i386_dr_insert_aligned_watchpoint and made nonstatic.
180 All uses updated.
181 (i386_remove_aligned_watchpoint): Renamed to
182 i386_dr_remove_aligned_watchpoint and made nonstatic.
183 All uses updated.
184 (i386_update_inferior_debug_regs): Renamed to
185 i386_dr_update_inferior_debug_regs and made nonstatic.
186 All uses updated.
187 (i386_low_insert_watchpoint): Renamed to
188 i386_dr_insert_watchpoint. All uses updated.
189 (i386_low_remove_watchpoint): Renamed to
190 i386_dr_remove_watchpoint. All uses updated.
191 (i386_low_region_ok_for_watchpoint): Renamed to
192 i386_dr_region_ok_for_watchpoint. All uses updated.
193 (i386_low_stopped_data_address): Renamed to
194 i386_dr_stopped_data_address. All uses updated.
195 (i386_low_stopped_by_watchpoint): Renamed to
196 i386_dr_stopped_by_watchpoint. All uses updated.
197
131aa0d4
GB
1982014-06-18 Gary Benson <gbenson@redhat.com>
199
200 * i386-low.c (i386_dr_low_can_set_addr): New macro.
201 (i386_dr_low_can_set_control): Likewise.
202 (i386_insert_aligned_watchpoint): New check.
203
d9305f7f
GB
2042014-06-18 Gary Benson <gbenson@redhat.com>
205
206 * i386-low.c (i386_update_inferior_debug_regs) <inf_state>:
207 Renamed to state.
208
e927c9fc
GB
2092014-06-18 Gary Benson <gbenson@redhat.com>
210
211 * i386-low.c (i386_length_and_rw_bits): Use internal_error
212 instead of fatal and error.
213 (i386_handle_nonaligned_watchpoint): Likewise.
214
1b6d4134
GB
2152014-06-18 Gary Benson <gbenson@redhat.com>
216
217 * i386-low.c (i386_get_debug_register_length): New macro.
218 (TARGET_HAS_DR_LEN_8): Remove conditional. Use above macro.
219 (i386_show_dr): Use debug_printf instead of fprintf. Use
220 phex to format values.
221
6e62758f
GB
2222014-06-18 Gary Benson <gbenson@redhat.com>
223
224 * i386-low.h: Comment changes.
225 * i386-low.c: Likewise.
226
fc6e2f03
GB
2272014-06-18 Gary Benson <gbenson@redhat.com>
228
229 * i386-low.c: Whitespace changes.
230
f9d1eeed
TT
2312014-06-12 Tom Tromey <tromey@redhat.com>
232
233 * utils.c (freeargv): Remove.
234
0b04e523
TT
2352014-06-12 Tom Tromey <tromey@redhat.com>
236
237 * debug.c (debug_printf): Remove HAVE_GETTIMEOFDAY checks.
238 * server.c (monitor_show_help): Remove HAVE_GETTIMEOFDAY check.
239 (parse_debug_format_options): Likewise.
240 (gdbserver_usage): Likewise.
241 * Makefile.in (LIBIBERTY_BUILDDIR, LIBIBERTY): New variables.
242 (SUBDIRS, REQUIRED_SUBDIRS): Add libiberty.
243 (gdbserver$(EXEEXT), gdbreplay$(EXEEXT)): Depend on and link
244 against libiberty.
245 ($(LIBGNU)): Depend on libiberty.
246 (all-lib): Recurse into all subdirs.
247 (install-only): Invoke "install" target in subdirs.
248 (vasprintf.o, vsnprintf.o, safe-ctype.o, lbasename.o): Remove
249 targets.
250 * configure: Rebuild.
251 * configure.ac: Add ACX_CONFIGURE_DIR for libiberty. Don't check
252 for vasprintf, vsnprintf, or gettimeofday.
253 * configure.srv: Don't add safe-ctype.o or lbasename.o to
254 srv_tgtobj.
255
270c9937
JB
2562014-06-05 Joel Brobecker <brobecker@adacore.com>
257
258 * development.sh: Delete.
259 * Makefile.in (config.status): Adjust dependency on development.sh.
260 * configure.ac: Adjust development.sh source call.
261 * configure: Regenerate.
262
0a261ed8
PA
2632014-06-02 Pedro Alves <palves@redhat.com>
264
265 * ax.c (gdb_free_agent_expr): New function.
266 * ax.h (gdb_free_agent_expr): New declaration.
267 * mem-break.c (delete_gdb_breakpoint_1): Also clear the commands
268 list.
269 (clear_breakpoint_conditions, clear_breakpoint_commands): Make
270 static.
271 (clear_breakpoint_conditions_and_commands): New function.
272 * mem-break.h (clear_breakpoint_conditions): Delete declaration.
273 (clear_breakpoint_conditions_and_commands): New declaration.
274
e9dae05e
RR
2752014-05-23 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
276
277 * linux-aarch64-low.c (asm/ptrace.h): Include.
278
5876f503
JK
2792014-05-21 Jan Kratochvil <jan.kratochvil@redhat.com>
280
281 Fix TLS access for -static -pthread.
282 * gdbserver/thread-db.c (struct thread_db): Add td_thr_tlsbase_p.
283 (thread_db_get_tls_address): Call it if LOAD_MODULE is zero.
284 (thread_db_load_search, try_thread_db_load_1): Initialize it.
285
802e8e6d
PA
2862014-05-20 Pedro Alves <palves@redhat.com>
287
288 * linux-aarch64-low.c (aarch64_insert_point)
289 (aarch64_remove_point): No longer check whether the type is
290 supported here. Adjust to new interface.
291 (the_low_target): Install aarch64_supports_z_point_type as
292 supports_z_point_type method.
293 * linux-arm-low.c (raw_bkpt_type_to_arm_hwbp_type): New function.
294 (arm_linux_hw_point_initialize): Take an enum raw_bkpt_type
295 instead of a Z packet char. Adjust.
296 (arm_supports_z_point_type): New function.
297 (arm_insert_point, arm_remove_point): Adjust to new interface.
298 (the_low_target): Install arm_supports_z_point_type.
299 * linux-crisv32-low.c (cris_supports_z_point_type): New function.
300 (cris_insert_point, cris_remove_point): Adjust to new interface.
301 Don't check whether the type is supported here.
302 (the_low_target): Install cris_supports_z_point_type.
303 * linux-low.c (linux_supports_z_point_type): New function.
304 (linux_insert_point, linux_remove_point): Adjust to new interface.
305 * linux-low.h (struct linux_target_ops) <insert_point,
306 remove_point>: Take an enum raw_bkpt_type instead of a char. Add
307 raw_breakpoint pointer parameter.
308 <supports_z_point_type>: New method.
309 * linux-mips-low.c (mips_supports_z_point_type): New function.
310 (mips_insert_point, mips_remove_point): Adjust to new interface.
311 Use mips_supports_z_point_type.
312 (the_low_target): Install mips_supports_z_point_type.
313 * linux-ppc-low.c (the_low_target): Install NULL as
314 supports_z_point_type method.
315 * linux-s390-low.c (the_low_target): Install NULL as
316 supports_z_point_type method.
317 * linux-sparc-low.c (the_low_target): Install NULL as
318 supports_z_point_type method.
319 * linux-x86-low.c (x86_supports_z_point_type): New function.
320 (x86_insert_point): Adjust to new insert_point interface. Use
321 insert_memory_breakpoint. Adjust to new
322 i386_low_insert_watchpoint interface.
323 (x86_remove_point): Adjust to remove_point interface. Use
324 remove_memory_breakpoint. Adjust to new
325 i386_low_remove_watchpoint interface.
326 (the_low_target): Install x86_supports_z_point_type.
327 * lynx-low.c (lynx_target_ops): Install NULL as
328 supports_z_point_type callback.
329 * nto-low.c (nto_supports_z_point_type): New.
330 (nto_insert_point, nto_remove_point): Adjust to new interface.
331 (nto_target_ops): Install nto_supports_z_point_type.
332 * mem-break.c: Adjust intro comment.
333 (struct raw_breakpoint) <raw_type, size>: New fields.
334 <inserted>: Update comment.
335 <shlib_disabled>: Delete field.
336 (enum bkpt_type) <gdb_breakpoint>: Delete value.
337 <gdb_breakpoint_Z0, gdb_breakpoint_Z1, gdb_breakpoint_Z2,
338 gdb_breakpoint_Z3, gdb_breakpoint_Z4>: New values.
339 (raw_bkpt_type_to_target_hw_bp_type): New function.
340 (find_enabled_raw_code_breakpoint_at): New function.
341 (find_raw_breakpoint_at): New type and size parameters. Use them.
342 (insert_memory_breakpoint): New function, based off
343 set_raw_breakpoint_at.
344 (remove_memory_breakpoint): New function.
345 (set_raw_breakpoint_at): Reimplement.
346 (set_breakpoint): New, based on set_breakpoint_at.
347 (set_breakpoint_at): Reimplement.
348 (delete_raw_breakpoint): Go through the_target->remove_point
349 instead of assuming memory breakpoints.
350 (find_gdb_breakpoint_at): Delete.
351 (Z_packet_to_bkpt_type, Z_packet_to_raw_bkpt_type): New functions.
352 (find_gdb_breakpoint): New function.
353 (set_gdb_breakpoint_at): Delete.
354 (z_type_supported): New function.
355 (set_gdb_breakpoint_1): New function, loosely based off
356 set_gdb_breakpoint_at.
357 (check_gdb_bp_preconditions, set_gdb_breakpoint): New functions.
358 (delete_gdb_breakpoint_at): Delete.
359 (delete_gdb_breakpoint_1): New function, loosely based off
360 delete_gdb_breakpoint_at.
361 (delete_gdb_breakpoint): New function.
362 (clear_gdb_breakpoint_conditions): Rename to ...
363 (clear_breakpoint_conditions): ... this. Don't handle a NULL
364 breakpoint.
365 (add_condition_to_breakpoint): Make static.
366 (add_breakpoint_condition): Take a struct breakpoint pointer
367 instead of an address. Adjust.
368 (gdb_condition_true_at_breakpoint): Rename to ...
369 (gdb_condition_true_at_breakpoint_z_type): ... this, and add
370 z_type parameter.
371 (gdb_condition_true_at_breakpoint): Reimplement.
372 (add_breakpoint_commands): Take a struct breakpoint pointer
373 instead of an address. Adjust.
374 (gdb_no_commands_at_breakpoint): Rename to ...
375 (gdb_no_commands_at_breakpoint_z_type): ... this. Add z_type
376 parameter. Return true if no breakpoint was found. Change debug
377 output.
378 (gdb_no_commands_at_breakpoint): Reimplement.
379 (run_breakpoint_commands): Rename to ...
380 (run_breakpoint_commands_z_type): ... this. Add z_type parameter,
381 and change return type to boolean.
382 (run_breakpoint_commands): New function.
383 (gdb_breakpoint_here): Also check for Z1 breakpoints.
384 (uninsert_raw_breakpoint): Don't try to reinsert a disabled
385 breakpoint. Go through the_target->remove_point instead of
386 assuming memory breakpoint.
387 (uninsert_breakpoints_at, uninsert_all_breakpoints): Uninsert
388 software and hardware breakpoints.
389 (reinsert_raw_breakpoint): Go through the_target->insert_point
390 instead of assuming memory breakpoint.
391 (reinsert_breakpoints_at, reinsert_all_breakpoints): Reinsert
392 software and hardware breakpoints.
393 (check_breakpoints, breakpoint_here, breakpoint_inserted_here):
394 Check both software and hardware breakpoints.
395 (validate_inserted_breakpoint): Assert the breakpoint is a
396 software breakpoint. Set the inserted flag to -1 instead of
397 setting shlib_disabled.
398 (delete_disabled_breakpoints): Adjust.
399 (validate_breakpoints): Only validate software breakpoints.
400 Adjust to inserted flag change.
401 (check_mem_read, check_mem_write): Skip breakpoint types other
402 than software breakpoints. Adjust to inserted flag change.
403 * mem-break.h (enum raw_bkpt_type): New enum.
404 (raw_breakpoint, struct process_info): Forward declare.
405 (Z_packet_to_target_hw_bp_type): Delete declaration.
406 (raw_bkpt_type_to_target_hw_bp_type, Z_packet_to_raw_bkpt_type)
407 (set_gdb_breakpoint, delete_gdb_breakpoint)
408 (clear_breakpoint_conditions): New declarations.
409 (set_gdb_breakpoint_at, clear_gdb_breakpoint_conditions): Delete.
410 (breakpoint_inserted_here): Update comment.
411 (add_breakpoint_condition, add_breakpoint_commands): Replace
412 address parameter with a breakpoint pointer parameter.
413 (gdb_breakpoint_here): Update comment.
414 (delete_gdb_breakpoint_at): Delete.
415 (insert_memory_breakpoint, remove_memory_breakpoint): Declare.
416 * server.c (process_point_options): Take a struct breakpoint
417 pointer instead of an address. Adjust.
418 (process_serial_event) <Z/z packets>: Use set_gdb_breakpoint and
419 delete_gdb_breakpoint.
420 * spu-low.c (spu_target_ops): Install NULL as
421 supports_z_point_type method.
422 * target.h: Include mem-break.h.
423 (struct target_ops) <prepare_to_access_memory>: Update comment.
424 <supports_z_point_type>: New field.
425 <insert_point, remove_point>: Take an enum raw_bkpt_type argument
426 instead of a char. Also take a raw breakpoint pointer.
427 * win32-arm-low.c (the_low_target): Install NULL as
428 supports_z_point_type.
429 * win32-i386-low.c (i386_supports_z_point_type): New function.
430 (i386_insert_point, i386_remove_point): Adjust to new interface.
431 (the_low_target): Install i386_supports_z_point_type.
432 * win32-low.c (win32_supports_z_point_type): New function.
433 (win32_insert_point, win32_remove_point): Adjust to new interface.
434 (win32_target_ops): Install win32_supports_z_point_type.
435 * win32-low.h (struct win32_target_ops):
436 <supports_z_point_type>: New method.
437 <insert_point, remove_point>: Take an enum raw_bkpt_type argument
438 instead of a char. Also take a raw breakpoint pointer.
439
932539e3
PA
4402014-05-20 Pedro Alves <palves@redhat.com>
441
442 * mem-break.h: Include break-common.h.
443 (Z_PACKET_SW_BP, Z_PACKET_HW_BP, Z_PACKET_WRITE_WP)
444 (Z_PACKET_READ_WP, Z_PACKET_ACCESS_WP): New defines.
445 (Z_packet_to_target_hw_bp_type): New declaration.
446 * mem-break.c (Z_packet_to_target_hw_bp_type): New function.
447 * i386-low.c (Z_PACKET_HW_BP, Z_PACKET_WRITE_WP, Z_PACKET_READ_WP)
448 (Z_PACKET_ACCESS_WP): Delete macros.
449 (Z_packet_to_hw_type): Delete function.
450 * i386-low.h: Don't include break-common.h here.
451 (Z_packet_to_hw_type): Delete declaration.
452 * linux-x86-low.c (x86_insert_point, x86_insert_point): Call
453 Z_packet_to_target_hw_bp_type instead of Z_packet_to_hw_type.
454 * win32-i386-low.c (i386_insert_point, i386_remove_point): Call
455 Z_packet_to_target_hw_bp_type instead of Z_packet_to_hw_type.
456 * linux-aarch64-low.c: Don't include break-common.h here.
457 (Z_PACKET_SW_BP, Z_PACKET_HW_BP, Z_PACKET_WRITE_WP)
458 (Z_PACKET_READ_WP, Z_PACKET_ACCESS_WP): Delete macros.
459 (Z_packet_to_target_hw_bp_type): Delete function.
460 * linux-mips-low.c (rsp_bp_type_to_target_hw_bp_type): Delete
461 function.
462 (mips_insert_point, mips_remove_point): Use
463 Z_packet_to_target_hw_bp_type.
464
4ff0d3d8
PA
4652014-05-20 Pedro Alves <palves@redhat.com>
466
467 * linux-aarch64-low.c: Include break-common.h.
468 (enum target_point_type): Delete.
469 (Z_packet_to_point_type): Rename to ...
470 (Z_packet_to_target_hw_bp_type): ... this, and return a
471 target_hw_bp_type instead.
472 (aarch64_show_debug_reg_state): Take an enum target_hw_bp_type
473 instead of an enum target_point_type.
474 (aarch64_point_encode_ctrl_reg): Likewise. Compute type mask from
475 breakpoint type.
476 (aarch64_dr_state_insert_one_point)
477 (aarch64_dr_state_remove_one_point, aarch64_handle_breakpoint)
478 (aarch64_handle_aligned_watchpoint)
479 (aarch64_handle_unaligned_watchpoint, aarch64_handle_watchpoint):
480 Take an enum target_hw_bp_type instead of an enum
481 target_point_type.
482 (aarch64_supports_z_point_type): New function.
483 (aarch64_insert_point, aarch64_remove_point): Use it. Adjust to
484 use Z_packet_to_target_hw_bp_type.
485
786dc519
JB
4862014-05-20 Joel Brobecker <brobecker@adacore.com>
487
488 * configure.ac: Only use -Werror by default when DEVELOPMENT
489 is true.
490 * configure: Regenerate.
491
9e0aa64f
JK
4922014-05-19 Jan Kratochvil <jan.kratochvil@redhat.com>
493
494 Fix gdbserver qGetTLSAddr for x86_64 -m32.
495 * linux-x86-low.c (X86_64_USER_REGS): New.
496 (x86_fill_gregset): Call memset for BUF first in x86_64 -m32 case.
497
2b577b92
YQ
4982014-04-28 Yao Qi <yao@codesourcery.com>
499
500 * Makefile.in (i386-avx512.c): Fix the typo of generated file
501 name.
502
94611da2
PA
5032014-04-25 Pedro Alves <palves@redhat.com>
504
505 PR server/16255
506 * linux-low.c (linux_attach_fail_reason_string): New function.
507 (linux_attach_lwp): Delete.
508 (linux_attach_lwp_1): Rename to ...
509 (linux_attach_lwp): ... this. Take a ptid instead of a pid as
510 argument. Remove "initial" parameter. Return int instead of
511 void. Don't error or warn here.
512 (linux_attach): Adjust to call linux_attach_lwp. Call error on
513 failure to attach to the tgid. Call warning when failing to
514 attach to an lwp.
515 * linux-low.h (linux_attach_lwp): Take a ptid instead of a pid as
516 argument. Remove "initial" parameter. Return int instead of
517 void. Don't error or warn here.
518 (linux_attach_fail_reason_string): New declaration.
519 * thread-db.c (attach_thread): Adjust to linux_attach_lwp's
520 interface change. Use linux_attach_fail_reason_string.
521
01f9f808
MS
5222014-04-24 Michael Sturm <michael.sturm@mintel.com>
523 Walfred Tedeschi <walfred.tedeschi@intel.com>
524
525 * Makefile.in: Added rules to handle new files
526 i386-avx512.c i386-avx512-linux.c amd64-avx512.c
527 amd64-avx512-linux.c x32-avx512.c x32-avx512-linux.c.
528 * configure.srv (srv_i386_regobj): Add i386-avx512.o.
529 (srv_i386_linux_regobj): Add i386-avx512-linux.o.
530 (srv_amd64_regobj): Add amd64-avx512.o and x32-avx512.o.
531 (srv_amd64_linux_regobj): Add amd64-avx512-linux.o and
532 x32-avx512-linux.o.
533 (srv_i386_32bit_xmlfiles): Add i386/32bit-avx512.xml.
534 (srv_i386_64bit_xmlfiles): Add i386/64bit-avx512.xml.
535 (srv_amd64_xmlfiles): Add i386/amd64-avx512.xml and
536 i386/x32-avx512.xml.
537 (srv_i386_linux_xmlfiles): Add i386/i386-avx512-linux.xml.
538 (srv_amd64_linux_xmlfiles): Add i386/amd64-avx512-linux.xml and
539 i386/x32-avx512-linux.xml.
540 * i387-fp.c (num_avx512_k_registers): New constant for number
541 of K registers.
542 (num_avx512_zmmh_low_registers): New constant for number of
543 lower ZMM registers (0-15).
544 (num_avx512_zmmh_high_registers): New constant for number of
545 higher ZMM registers (16-31).
546 (num_avx512_ymmh_registers): New contant for number of higher
547 YMM registers (ymm16-31 added by avx521 on x86_64).
548 (num_avx512_xmm_registers): New constant for number of higher
549 XMM registers (xmm16-31 added by AVX512 on x86_64).
550 (struct i387_xsave): Add space for AVX512 registers.
551 (i387_cache_to_xsave): Change raw buffer size to 64 characters.
552 Add code to handle AVX512 registers.
553 (i387_xsave_to_cache): Add code to handle AVX512 registers.
554 * linux-x86-low.c (init_registers_amd64_avx512_linux): New
555 prototypei from generated file.
556 (tdesc_amd64_avx512_linux): Likewise.
557 (init_registers_x32_avx512_linux): Likewise.
558 (tdesc_x32_avx512_linux): Likewise.
559 (init_registers_i386_avx512_linux): Likewise.
560 (tdesc_i386_avx512_linux): Likewise.
561 (x86_64_regmap): Add AVX512 registers.
562 (x86_linux_read_description): Add code to handle AVX512 XSTATE
563 mask.
564 (initialize_low_arch): Add code to initialize AVX512 registers.
565
51aa91f9
PA
5662014-04-23 Pedro Alves <palves@redhat.com>
567
568 * mem-break.c (find_gdb_breakpoint_at): Make static.
569 * mem-break.h (find_gdb_breakpoint_at): Delete declaration.
570
a4165e94
PA
5712014-04-23 Pedro Alves <palves@redhat.com>
572
573 * i386-low.c: Don't include break-common.h here.
574 (i386_low_insert_watchpoint, i386_low_remove_watchpoint): Change
575 prototype to take target_hw_bp_type as argument instead of a Z
576 packet char.
577 * i386-low.h: Include break-common.h here.
578 (Z_packet_to_hw_type): Declare.
579 (i386_low_insert_watchpoint, i386_low_remove_watchpoint): Change
580 prototypes.
581 * linux-x86-low.c (x86_insert_point): Convert the packet number to
582 a target_hw_bp_type before calling i386_low_insert_watchpoint.
583 (x86_remove_point): Convert the packet number to a
584 target_hw_bp_type before calling i386_low_remove_watchpoint.
585 * win32-i386-low.c (i386_insert_point): Convert the packet number
586 to a target_hw_bp_type before calling i386_low_insert_watchpoint.
587 (i386_remove_point): Convert the packet number to a
588 target_hw_bp_type before calling i386_low_remove_watchpoint.
589
b8acf843
PA
5902014-04-23 Pedro Alves <palves@redhat.com>
591
592 * utils.h (perror_with_name): Add ATTRIBUTE_NORETURN.
593
d708bcd1
PA
5942014-04-10 Pedro Alves <palves@redhat.com>
595
596 * mem-break.c (add_breakpoint_condition, add_breakpoint_commands):
597 Check if the condition or command is NULL before checking if the
598 breakpoint is known. On success, return true.
599 * mem-break.h (add_breakpoint_condition): Document return.
600 (add_breakpoint_commands): Add describing comment.
601 * server.c (skip_to_semicolon): New function.
602 (process_point_options): Use it.
603
2eec7d5b
PA
6042014-04-09 Pedro Alves <palves@redhat.com>
605
606 * linux-low.c (linux_read_loadmap): Pass current_inferior directly
607 to lwpid_of.
608
fa96cb38
PA
6092014-02-27 Pedro Alves <palves@redhat.com>
610
611 PR 12702
612 * inferiors.h (A_I_NEXT, ALL_INFERIORS_TYPE, ALL_PROCESSES): New
613 macros.
614 * linux-low.c (delete_lwp, handle_extended_wait): Add debug
615 output.
616 (last_thread_of_process_p): Take a PID argument instead of a
617 thread pointer.
618 (linux_wait_for_lwp): Delete.
619 (num_lwps, check_zombie_leaders, not_stopped_callback): New
620 functions.
621 (linux_low_filter_event): New function, party factored out from
622 linux_wait_for_event.
623 (linux_wait_for_event): Rename to ...
624 (linux_wait_for_event_filtered): ... this. Add new filter ptid
625 argument. Partly rewrite. Always use waitpid(-1, WNOHANG) and
626 sigsuspend. Check for zombie leaders.
627 (linux_wait_for_event): Reimplement as wrapper around
628 linux_wait_for_event_filtered.
629 (linux_wait_1): Handle TARGET_WAITKIND_NO_RESUMED. Assume that if
630 a normal or signal exit is seen, it's the whole process exiting.
631 (wait_for_sigstop): No longer a for_each_inferior callback.
632 Rewrite on top of linux_wait_for_event_filtered.
633 (stop_all_lwps): Call wait_for_sigstop directly.
634 * server.c (resume, handle_target_event): Handle
635 TARGET_WAITKIND_NO_RESUMED.
636
d763de10
JB
6372014-02-26 Joel Brobecker <brobecker@adacore.com>
638
639 * win32-low.c (psapi_get_dll_name,
640 * win32_CreateToolhelp32Snapshot): Delete.
641 (win32_CreateToolhelp32Snapshot, win32_Module32First)
642 (win32_Module32Next, load_toolhelp, toolhelp_get_dll_name):
643 Delete.
644 (handle_load_dll): Add function description.
645 Remove code using psapi_get_dll_name and toolhelp_get_dll_name.
646
850a0f76
JB
6472014-02-26 Joel Brobecker <brobecker@adacore.com>
648
649 * win32-low.c (win32_add_one_solib): Add 0x1000 to load_addr.
650 Add comment.
651 (win32_add_all_dlls): Remove 0x1000 offset applied to DLL
652 base address when calling win32_add_one_solib.
653 (handle_load_dll): Delete local variable load_addr.
654 Remove 0x1000 offset applied to DLL base address when calling
655 win32_add_one_solib.
656 (handle_unload_dll): Add comment.
657
f25b3fc3
JB
6582014-02-26 Joel Brobecker <brobecker@adacore.com>
659
660 * win32-low.c (win32_add_all_dlls): Renames
661 win32_ensure_ntdll_loaded. Rewrite function documentation.
662 Adjust implementation to always load all DLLs.
663 Add 0x1000 offset to DLL base address when calling
664 win32_add_one_solib.
665 (child_initialization_done): New static global.
666 (do_initial_child_stuff): Set child_initialization_done to
667 zero during child initialization, and 1 after. Replace call
668 to win32_ensure_ntdll_loaded by call to win32_add_all_dlls.
669 Add comment.
670 (match_dll_by_basename, dll_is_loaded_by_basename): Delete.
671 (handle_unload_dll): Add function documentation.
672 (get_child_debug_event): Ignore load and unload DLL events
673 during child initialization.
674
d86d4aaf
DE
6752014-02-20 Doug Evans <dje@google.com>
676
3bc32da3 677 Remove global all_lwps.
d86d4aaf
DE
678 * inferiors.h (ptid_of): Move here from linux-low.h.
679 (pid_of, lwpid_of): Ditto.
680 * linux-aarch64-low.c (debug_reg_change_callback): Update, "entry"
681 parameter is a struct thread_info * now.
682 (aarch64_notify_debug_reg_change): Fetch pid from current_inferior
683 directly. Pass &all_threads to find_inferior instead of &all_lwps.
684 (aarch64_stopped_data_address): Fetch lwpid from current_inferior
685 directly.
686 (aarch64_linux_prepare_to_resume): Fetch ptid from thread.
687 (aarch64_arch_setup): Fetch lwpid from current_inferior directly.
688 * linux-arm-low.c (update_registers_callback): Update, "entry"
689 parameter is a struct thread_info * now.
690 Fetch lwpid from current_inferior directly.
691 (arm_insert_point): Pass &all_threads to find_inferior instead of
692 &all_lwps.
693 (arm_remove_point): Ditto.
694 (arm_stopped_by_watchpoint): Fetch lwp from current_inferior.
695 (arm_prepare_to_resume): Fetch pid from thread.
696 (arm_read_description): Fetch lwpid from current_inferior directly.
697 * linux-low.c (all_lwps): Delete.
698 (delete_lwp): Delete call to remove_inferior.
699 (handle_extended_wait): Fetch lwpid from thread.
700 (add_lwp): Don't set lwp->entry.id. Remove call to
701 add_inferior_to_list.
702 (linux_attach_lwp_1): Fetch pid from current_inferior directly.
703 (linux_kill_one_lwp): Fetch ptid,lwpid from thread.
704 (kill_one_lwp_callback): Ditto.
705 (linux_kill): Don't dereference NULL pointer.
706 Fetch ptid,lwpid from thread.
707 (get_detach_signal): Fetch ptid from thread.
708 (linux_detach_one_lwp): Fetch ptid,lwpid from thread.
709 Simplify call to regcache_invalidate_thread.
710 (delete_lwp_callback): Update, "entry" parameter is a
711 struct thread_info * now. Fetch pid from thread.
712 (linux_mourn): Pass &all_threads to find_inferior instead of &all_lwps.
713 (status_pending_p_callback): Update, "entry" parameter is a
714 struct thread_info * now. Fetch ptid from thread.
715 (find_lwp_pid): Update, "entry" parameter is a
716 struct thread_info * now.
717 (linux_wait_for_lwp): Fetch pid from thread.
718 (linux_fast_tracepoint_collecting): Fetch lwpid from thread.
719 (maybe_move_out_of_jump_pad): Fetch lwpid from current_inferior.
720 (enqueue_one_deferred_signal): Fetch lwpid from thread.
721 (dequeue_one_deferred_signal): Ditto.
722 (cancel_breakpoint): Fetch ptid from current_inferior.
723 (linux_wait_for_event): Pass &all_threads to find_inferior,
724 not &all_lwps. Fetch ptid, lwpid from thread.
725 (count_events_callback): Update, "entry" parameter is a
726 struct thread_info * now.
727 (select_singlestep_lwp_callback): Ditto.
728 (select_event_lwp_callback): Ditto.
729 (cancel_breakpoints_callback): Ditto.
730 (linux_cancel_breakpoints): Pass &all_threads to find_inferior,
731 not &all_lwps.
732 (select_event_lwp): Ditto. Fetch ptid from event_thread.
733 (unsuspend_one_lwp): Update, "entry" parameter is a
734 struct thread_info * now.
735 (unsuspend_all_lwps): Pass &all_threads to find_inferior,
736 not &all_lwps.
737 (linux_stabilize_threads): Ditto. And for for_each_inferior.
738 Fetch lwpid from thread, not lwp.
739 (linux_wait_1): Fetch ptid, lwpid from current_inferior.
740 Pass &all_threads to find_inferior, not &all_lwps.
741 (send_sigstop): Fetch lwpid from thread, not lwp.
742 (send_sigstop_callback): Update, "entry" parameter is a
743 struct thread_info * now.
744 (suspend_and_send_sigstop_callback): Ditto.
745 (wait_for_sigstop): Ditto. Fetch ptid, lwpid from thread, lwp.
746 (stuck_in_jump_pad_callback): Update, "entry" parameter is a
747 struct thread_info * now.
748 (move_out_of_jump_pad_callback): Ditto. Fetch ptid, lwpid
749 from thread, lwp.
750 (lwp_running): Update, "entry" parameter is a
751 struct thread_info * now.
752 (stop_all_lwps): Fetch ptid from thread.
753 Pass &all_threads to find_inferior, for_each_inferior, not &all_lwps.
754 (linux_resume_one_lwp): Fetch lwpid from thread.
755 (linux_set_resume_request): Update, "entry" parameter is a
756 struct thread_info * now. Fetch pid, lwpid from thread.
757 (resume_status_pending_p): Update, "entry" parameter is a
758 struct thread_info * now.
759 (need_step_over_p): Ditto. Fetch lwpid from thread.
760 (start_step_over): Fetch lwpid from thread.
761 (linux_resume_one_thread): Update, "entry" parameter is a
762 struct thread_info * now. Fetch lwpid from thread.
763 (linux_resume): Pass &all_threads to find_inferior, not &all_lwps.
764 (proceed_one_lwp): Update, "entry" parameter is a
765 struct thread_info * now. Fetch lwpid from thread.
766 (unsuspend_and_proceed_one_lwp): Update, "entry" parameter is a
767 struct thread_info * now.
768 (proceed_all_lwps): Pass &all_threads to find_inferior, not &all_lwps.
769 (unstop_all_lwps): Ditto. Fetch lwpid from thread.
770 (regsets_fetch_inferior_registers): Fetch lwpid from current_inferior
771 directly.
772 (regsets_store_inferior_registers): Ditto.
773 (fetch_register, store_register): Ditto.
774 (linux_read_memory, linux_write_memory): Ditto.
775 (linux_request_interrupt): Ditto.
776 (linux_read_auxv): Ditto.
777 (linux_xfer_siginfo): Ditto.
778 (linux_qxfer_spu): Ditto.
779 (linux_qxfer_libraries_svr4): Ditto.
780 * linux-low.h (ptid_of, pid_of, lwpid_of): Delete,
781 moved to inferiors.h.
782 (get_lwp): Delete.
783 (get_thread_lwp): Update.
784 (struct lwp_info): Delete member "entry". Simplify comment for
785 member "thread".
786 (all_lwps): Delete.
787 * linux-mips-low.c (mips_read_description): Fetch lwpid from
788 current_inferior directly.
789 (update_watch_registers_callback): Update, "entry" parameter is a
790 struct thread_info * now. Fetch pid from thread.
791 (mips_linux_prepare_to_resume): Fetch ptid from thread.
792 (mips_insert_point): Fetch lwpid from current_inferior.
793 Pass &all_threads to find_inferior, not &all_lwps.
794 (mips_remove_point): Pass &all_threads to find_inferior, not &all_lwps.
795 (mips_stopped_by_watchpoint): Fetch lwpid from current_inferior
796 directly.
797 (mips_stopped_data_address): Ditto.
798 * linux-s390-low.c (s390_arch_setup): Fetch pid from current_inferior
799 directly.
800 * linux-tile-low.c (tile_arch_setup): Ditto.
801 * linux-x86-low.c (x86_get_thread_area): Fetch lwpid from thread.
802 (update_debug_registers_callback): Update, "entry" parameter is a
803 struct thread_info * now. Fetch pid from thread.
804 (i386_dr_low_set_addr): Fetch pid from current_inferior directly.
805 Pass &all_threads to find_inferior, not &all_lwps.
806 (i386_dr_low_get_addr): Fetch ptid from current_inferior directly.
807 (i386_dr_low_set_control): Fetch pid from current_inferior directly.
808 Pass &all_threads to find_inferior, not &all_lwps.
809 (i386_dr_low_get_control): Fetch ptid from current_inferior directly.
810 (i386_dr_low_get_status): Ditto.
811 (x86_linux_prepare_to_resume): Fetch ptid from thread.
812 (x86_siginfo_fixup): Fetch lwpid from current_inferior directly.
813 (x86_linux_read_description): Ditto.
814 * proc-service.c (ps_getpid): Fetch pid from current_inferior directly.
815
3b8361aa
DE
8162014-02-20 Doug Evans <dje@google.com>
817
818 * inferiors.c (get_first_inferior): Fix buglet.
819
f7667f0d
DE
8202014-02-19 Doug Evans <dje@google.com>
821
822 * gdbthread.h (add_thread): Change result type to struct thread_info *.
823 * inferiors.c (add_thread): Change result type to struct thread_info *.
824 All callers updated.
825 (add_lwp): Call add_thread here instead of in callers.
826 All callers updated.
827 * linux-low.h (get_lwp_thread): Rewrite.
828 (struct lwp_info): New member "thread".
829
b3312d80
DE
8302014-02-19 Doug Evans <dje@google.com>
831
832 * linux-low.c (add_lwp): Change result to struct lwp_info *.
833 All callers updated.
834
ecc6f45c
DE
8352014-02-19 Doug Evans <dje@google.com>
836
837 * inferiors.c (add_thread): Fix whitespace.
838
649ebbca
DE
8392014-02-19 Doug Evans <dje@google.com>
840
841 * dll.c (clear_dlls): Replace accessing list implemention details
842 with API function.
843 * gdbthread.h (get_first_thread): Declare.
844 * inferiors.c (for_each_inferior_with_data): New function.
845 (get_first_thread): New function.
846 (find_thread_ptid): Simplify.
847 (get_first_inferior): New function.
848 (clear_list): Delete.
849 (one_inferior_p): New function.
850 (clear_inferior_list): New function.
851 (clear_inferiors): Update.
852 * inferiors.h (for_each_inferior_with_data): Declare.
853 (clear_inferior_list): Declare.
854 (one_inferior_p): Declare.
855 (get_first_inferior): Declare.
856 * linux-low.c (linux_wait_for_event): Replace accessing list
857 implemention details with API function.
858 * server.c (target_running): Ditto.
859 (accumulate_file_name_length): New function.
860 (emit_dll_description): New function.
861 (handle_qxfer_libraries): Replace accessing list implemention
862 details with API function.
863 (handle_qxfer_threads_worker): New function.
864 (handle_qxfer_threads_proper): Replace accessing list implemention
865 details with API function.
866 (handle_query): Ditto.
867 (visit_actioned_threads_callback_ftype): New typedef.
868 (visit_actioned_threads_data): New struct.
869 (visit_actioned_threads): Rewrite to be find_inferior callback.
870 (resume): Call find_inferior.
871 (handle_status): Replace accessing list implemention
872 details with API function.
873 (process_serial_event): Replace accessing list implemention details
874 with API function.
875 * target.c (set_desired_inferior): Replace accessing list implemention
876 details with API function.
877 * tracepoint.c (same_process_p): New function.
878 (gdb_agent_about_to_close): Replace accessing list implemention
879 details with API function.
880 * win32-low.c (child_delete_thread): Replace accessing list
881 implemention details with API function.
882 (match_dll_by_basename): New function.
883 (dll_is_loaded_by_basename): New function.
884 (win32_ensure_ntdll_loaded): Replace accessing list implemention
885 details call to dll_is_loaded_by_basename.
886
80894984
DE
8872014-02-19 Doug Evans <dje@google.com>
888
889 * dll.h (struct dll_info): Add comment.
890 * gdbthread.h (struct thread_info): Add comment.
891 (current_ptid): Simplify.
892 * inferiors.c (add_process): Update.
893 (remove_process): Update.
894 * inferiors.h (struct process_info): Rename member "head" to "entry".
895 * linux-low.c (delete_lwp): Update.
896 (add_lwp): Update.
897 (last_thread_of_process_p): Update.
898 (kill_one_lwp_callback, linux_kill): Update.
899 (status_pending_p_callback): Update.
900 (wait_for_sigstop): Update. Simplify read of ptid.
901 (start_step_over): Update.
902 * linux-low.h (ptid_of, pid_of, lwpid_of): Update.
903 (get_lwp_thread): Update.
904 (struct lwp_info): Rename member "head" to "entry".
905 * regcache.h (inferior_list_entry): Delete.
906 * server.c (kill_inferior_callback): Update.
907 (detach_or_kill_inferior_callback): Update.
908 (print_started_pid): Update.
909 (print_attached_pid): Update.
910 (process_serial_event): Simplify read of ptid.
911 * thread-db.c (thread_db_create_event): Update.
912 (thread_db_get_tls_address): Update.
913 * win32-low.c (current_inferior_ptid): Simplify.
914
46917d26
TT
9152014-02-19 Tom Tromey <tromey@redhat.com>
916
917 * target.h (struct target_ops) <supports_btrace>: Add target_ops
918 argument.
919 (target_supports_btrace): Update.
920
0759a81e
YQ
9212014-02-14 Yao Qi <yao@codesourcery.com>
922
923 * Makefile.in (IPA_OBJS): Append rsp-low-ipa.o.
924 (rsp-low-ipa.o): New target.
925
a7191e8b
TT
9262014-02-12 Tom Tromey <tromey@redhat.com>
927
928 * ax.c (gdb_parse_agent_expr): Use hex2bin, not
929 convert_ascii_to_int.
930 * regcache.c (registers_to_string): Likewise.
931 * remote-utils.c (decode_M_packet): Likewise.
932 * server.c (process_serial_event): Likewise.
933
ff0e980e
TT
9342014-02-12 Tom Tromey <tromey@redhat.com>
935
936 * server.c (handle_query, handle_v_run): Use hex2bin, not
937 unhexify.
938 * tracepoint.c (cmd_qtdpsrc, cmd_qtdv, cmd_qtnotes): Likewise.
939
e9371aff
TT
9402014-02-12 Tom Tromey <tromey@redhat.com>
941
942 * ax.c (gdb_unparse_agent_expr): Use bin2hex, not
943 convert_int_to_ascii.
944 * regcache.c (registers_to_string, collect_register_as_string):
945 Likewise.
946 * remote-utils.c (look_up_one_symbol, relocate_instruction):
947 Likewise.
948 * server.c (process_serial_event): Likewise.
949 * tracepoint.c (cmd_qtstatus, response_source, response_tsv)
950 (cmd_qtbuffer, cstr_to_hexstr): Likewise.
951
971dc0b8
TT
9522014-02-12 Tom Tromey <tromey@redhat.com>
953
954 * remote-utils.c (look_up_one_symbol, monitor_output): Use
955 bin2hex, not hexify.
956 * tracepoint.c (cmd_qtstatus): Likewise.
957
0a822afb
TT
9582014-02-12 Tom Tromey <tromey@redhat.com>
959
960 * remote-utils.c (monitor_output): Pass explicit length to
961 hexify.
962
9c3d6531
TT
9632014-02-12 Tom Tromey <tromey@redhat.com>
964
965 * tracepoint.c: Include rsp-low.h.
966 * server.c: Include rsp-low.h.
967 * remote-utils.h (convert_ascii_to_int, convert_int_to_ascii)
968 (unhexify, hexify, remote_escape_output, unpack_varlen_hex): Don't
969 declare.
970 * remote-utils.c: Include rsp-low.h.
971 (fromhex, hexchars, ishex, unhexify, tohex, hexify)
972 (remote_escape_output, remote_unescape_input, unpack_varlen_hex)
973 (convert_int_to_ascii, convert_ascii_to_int): Move to
974 common/rsp-low.c.
975 * regcache.c: Include rsp-low.h.
976 * ax.c: Include rsp-low.h.
977 * Makefile.in (SFILES): Add common/rsp-low.c.
978 (OBS): Add rsp-low.o.
979 (rsp-low.o): New target.
980
01fd3ea5
TT
9812014-02-12 Tom Tromey <tromey@redhat.com>
982
983 * utils.h (pulongest, plongest, phex_nz): Don't declare.
984 Include print-utils.h.
985 * utils.c (NUMCELLS, CELLSIZE, get_cell, decimal2str, pulongest)
986 (plongest, thirty_two, phex_nz): Remove.
987 * Makefile.in (SFILES): Add common/print-utils.c.
988 (OBS): Add print-utils.o.
989 (print-utils-ipa.o): New target.
990 (print-utils.o): New target.
991 (IPA_OBJS): Add print-utils-ipa.o.
992
e99dc820
TT
9932014-02-06 Tom Tromey <tromey@redhat.com>
994
995 * Makefile.in (SFILES): Fix indentation.
996
ee1e2d4f
DE
9972014-02-05 Doug Evans <dje@google.com>
998
999 * linux-low.c (linux_wait_for_event): Improve comment.
1000 (linux_wait_1): Keep current_inferior in sync with event_child.
1001
f5a02773
DE
10022014-01-22 Doug Evans <dje@google.com>
1003
1004 * gdbthread.h (gdb_id_to_thread): Delete, unused.
1005
87ce2a04
DE
10062014-01-22 Doug Evans <dje@google.com>
1007
1008 * configure.ac (AC_CHECK_FUNCS): Add test for gettimeofday.
1009 * configure: Regenerate.
1010 * config.in: Regenerate.
1011 * Makefile.in (SFILES): Add debug.c.
1012 (OBS): Add debug.o.
1013 * debug.c: New file.
1014 * debug.h: New file.
1015 * linux-aarch64-low.c (*): Update all debugging printfs to use
1016 debug_printf instead of fprintf.
1017 * linux-arm-low.c (*): Ditto.
1018 * linux-cris-low.c (*): Ditto.
1019 * linux-crisv32-low.c (*): Ditto.
1020 * linux-m32r-low.c (*): Ditto.
1021 * linux-sparc-low.c (*): Ditto.
1022 * linux-x86.c (*): Ditto.
1023 * linux-low.c (*): Ditto.
1024 (linux_wait_1): Add calls to debug_enter, debug_exit.
1025 (linux_wait): Remove redundant debugging printf.
1026 (stop_all_lwps): Add calls to debug_enter, debug_exit.
1027 (linux_resume, unstop_all_lwps): Ditto.
1028 * mem-break.c (*): Update all debugging printfs to use
1029 debug_printf instead of fprintf.
1030 * remote-utils.c (*): Ditto.
1031 * thread-db.c (*): Ditto.
1032 * server.c #include <ctype.h>, "gdb_vecs.h".
1033 (debug_threads): Moved to debug.c.
1034 (*): Update all debugging printfs to use debug_printf instead of
1035 fprintf.
1036 (start_inferior): Replace call to fflush with call to debug_flush.
1037 (monitor_show_help): Mention set debug-format.
1038 (parse_debug_format_options): New function.
1039 (handle_monitor_command): Handle "monitor set debug-format".
1040 (gdbserver_usage): Mention --debug-format.
1041 (main): Parse --debug-format.
1042 * server.h (debug_threads): Declaration moved to debug.h.
1043 #include "debug.h".
1044 * tracepoint.c (trace_debug_1) [!IN_PROCESS_AGENT]: Add version of
1045 trace_debug_1 that uses debug_printf.
1046 (tracepoint_look_up_symbols): Update all debugging printfs to use
1047 debug_printf instead of fprintf.
1048
e671835b
BS
10492014-01-20 Baruch Siach <baruch@tkos.co.il>
1050
1051 * linux-xtensa-low.c: Include asm/ptrace.h instead of
1052 sys/ptrace.h.
1053
b5737fa9
PA
10542014-01-17 Pedro Alves <palves@redhat.com>
1055
ea38d2a9 1056 PR build/16445
c7faa97a
PA
1057 * linux-x86-low.c: Don't include elf/common.h if ELFMAG0 is
1058 defined after including gdb_proc_service.h.
b5737fa9 1059
40ed484e
DE
10602014-01-16 Doug Evans <dje@google.com>
1061
1062 * dll.c (UNSPECIFIED_CORE_ADDR): New macro.
1063 (match_dll): Use it.
1064
969c39fb
MM
10652014-01-16 Markus Metzger <markus.t.metzger@intel.com>
1066
1067 * target.h (target_ops) <read_btrace>: Change parameters and
1068 return type to allow error reporting.
1069 * server.c (handle_qxfer_btrace): Support delta reads. Pass
1070 trace reading errors on.
1071 * linux-low.c (linux_low_read_btrace): Pass trace reading
1072 errors on.
1073 (linux_low_disable_btrace): New.
1074
ab7f45ba
DE
10752014-01-15 Doug Evans <dje@google.com>
1076
1077 * inferiors.c (thread_id_to_gdb_id): Delete.
1078 * inferiors.h (thread_id_to_gdb_id): Delete.
1079
66af0f44
EZ
10802014-01-13 Eli Zaretskii <eliz@gnu.org>
1081
1082 * Makefile.in (INCLUDE_CFLAGS): Remove trailing slash from
1083 "-I$(srcdir)/../". Fixes MinGW compilation errors with old GCC
1084 versions.
1085
9939e131
PA
10862014-01-08 Pedro Alves <palves@redhat.com>
1087
1088 * server.c (handle_status): Don't discard previous queued stop
1089 replies or thread's pending status here.
1090 (main) <disconnection>: Do it here instead.
1091
b7ea362b
PA
10922014-01-08 Pedro Alves <palves@redhat.com>
1093
1094 * gdbthread.h (struct thread_info) <status_pending_p>: New field.
1095 * server.c (visit_actioned_threads, handle_pending_status): New
1096 function.
1097 (handle_v_cont): Factor out parts to ...
1098 (resume): ... this new function. If in all-stop, and a thread
1099 being resumed has a pending status, report it without actually
1100 resuming.
1101 (myresume): Adjust to use the new 'resume' function.
1102 (clear_pending_status_callback, set_pending_status_callback)
1103 (find_status_pending_thread_callback): New functions.
1104 (handle_status): Handle the case of multiple threads having
1105 interesting statuses to report. Report threads' real last signal
1106 instead of always reporting GDB_SIGNAL_TRAP. Look for a thread
1107 with an interesting thread to report the status for, instead of
1108 always reporting the status of the first thread.
1109
28498c42
JB
11102014-01-01 Joel Brobecker <brobecker@adacore.com>
1111
1112 * gdbserver.c (gdbserver_version): Set copyright year to 2014.
1113 * gdbreplay.c (gdbreplay_version): Likewise.
1114
f45c82da
YZ
11152013-12-18 Yufeng Zhang <yufeng.zhang@arm.com>
1116
1117 * linux-aarch64-low.c (aarch64_linux_set_debug_regs): Set
1118 iov.iov_len with the real length in use.
1119
379a5e2d
JB
11202013-12-13 Joel Brobecker <brobecker@adacore.com>
1121
1122 * Makefile.in (safe-ctype.o, lbasename.o): New rules.
1123 * configure.srv: Add safe-ctype.o and lbasename.o to srv_tgtobj
1124 for all targets that use win32-low.c.
1125 * win32-low.c (win32_ensure_ntdll_loaded): New function.
1126 (do_initial_child_stuff): Add call to win32_ensure_ntdll_loaded.
1127
4210d83e
PA
11282013-12-13 Pedro Alves <palves@redhat.com>
1129
1130 * target.c (mywait): Set OURSTATUS->KIND to TARGET_WAITKIND_STOPPED
1131 if equal to TARGET_WAITKIND_LOADED.
1132 * win32-low.c (cached_status): New static global.
1133 (win32_wait): Add declaration.
1134 (do_initial_child_stuff): Flush all initial pending debug events
1135 up to the initial breakpoint.
1136 (win32_wait): If CACHED_STATUS was set, return that instead
1137 of doing a real wait. Remove the code resuming the execution
1138 of the inferior after receiving a TARGET_WAITKIND_LOADED event
1139 during the initial phase. Also remove the code changing
1140 OURSTATUS->KIND from TARGET_WAITKIND_LOADED to
1141 TARGET_WAITKIND_STOPPED.
1142
e7f0d979
YQ
11432013-12-11 Yao Qi <yao@codesourcery.com>
1144
1145 * notif.c (handle_notif_ack): Return 0 if no notification
1146 matches.
1147
ebcf782c
DE
11482013-11-20 Doug Evans <dje@google.com>
1149
1150 * linux-low.c (linux_set_resume_request): Fix comment.
1151
20ad9378
DE
11522013-11-20 Doug Evans <dje@google.com>
1153
1154 * linux-low.c (resume_status_pending_p): Tweak comment.
1155
a196ebeb
WT
11562013-11-20 Walfred Tedeschi <walfred.tedeschi@intel.com>
1157
1158 * Makefile.in: Add i386-mpx.c, i386-mpx-linux.c, amd64-mpx.c,
1159 amd64-mpx-linux.c, x32-mpx.c and x32-mpx-linux.c generation.
1160 * configure.srv (srv_i386_regobj): Add i386-mpx.o.
1161 (srv_i386_linux_regobj): Add i386-mpx-linux.o.
1162 (srv_amd64_regobj): Add amd64-mpx.o.
1163 (srv_amd64_linux_regobj): Add amd64-mpx-linux.o.
1164 (srv_i386_32bit_xmlfiles): Add i386/32bit-mpx.xml.
1165 (srv_i386_64bit_xmlfiles): Add i386/64bit-mpx.xml.
1166 * i387-fp.c (num_pl_bnd_register) Added constant.
1167 (num_pl_bnd_cfg_registers) Added constant.
1168 (struct i387_xsave) Added reserved area and MPX fields.
1169 (i387_cache_to_xsave, i387_xsave_to_cache) Add MPX.
1170 * linux-x86-low.c (init_registers_i386_mpx_linux): Declare new
1171 function.
1172 (tdesc_i386_mpx_linux): Add MPX amd64 target.
1173 (init_registers_amd64_mpx_linux): Declare new function.
1174 (tdesc_amd64_mpx_linux): Add MPX amd64 target.
1175 (x86_64_regmap): Add MPX registers.
1176 (x86_linux_read_description): Add MPX case.
1177 (initialize_low_arch): Initialize MPX targets.
1178
0080a2f6
TT
11792013-11-18 Tom Tromey <tromey@redhat.com>
1180
1181 * configure: Rebuild.
1182 * configure.ac: Don't check for stdlib.h.
1183 * gdbreplay.c: Unconditionally include stdlib.h.
1184
2978b111
TT
11852013-11-18 Tom Tromey <tromey@redhat.com>
1186
1187 * config.in: Rebuild.
1188 * configure: Rebuild.
1189 * configure.ac: Don't use AC_HEADER_DIRENT.
1190
a3d08894
TT
11912013-11-18 Tom Tromey <tromey@redhat.com>
1192
1193 * server.h: Don't check HAVE_STRING_H.
1194 * gdbreplay.c: Don't check HAVE_STRING_H.
1195 * configure: Rebuild.
1196
0a5dd17d
TT
11972013-11-18 Tom Tromey <tromey@redhat.com>
1198
1199 * Makefile.in (gdbreplay$(EXEEXT)): Depend on and link against
1200 LIBGNU.
1201
1bd2f0ba
TT
12022013-11-08 Tom Tromey <tromey@redhat.com>
1203
1204 * configure, config.in: Rebuild.
1205 * configure.ac: Remove unused configury.
1206
3266f10b
TT
12072013-11-08 Tom Tromey <tromey@redhat.com>
1208
1209 * acinclude.m4: Include common.m4, codeset.m4.
1210 * configure, config.in: Rebuild.
1211 * configure.ac: Use GDB_AC_COMMON.
1212
6682d959
AA
12132013-11-06 Andreas Arnez <arnez@linux.vnet.ibm.com>
1214
1215 * linux-s390-low.c (HWCAP_S390_TE): New define.
1216 (s390_arch_setup): Consider the TE field in the HWCAP for
1217 determining 'have_regset_tdb'.
1218
fd0a4d76
SDJ
12192013-10-16 Sergio Durigan Junior <sergiodj@redhat.com>
1220
1221 PR gdb/16014
1222 * tracepoint.c (download_tracepoint_1): Remove unnecessary double
1223 call to sizeof.
1224
1a3d890b
PA
12252013-10-02 Pedro Alves <palves@redhat.com>
1226
1227 * server.c (process_serial_event): Don't output "GDBserver
1228 exiting" if GDB is connected through stdio.
1229 * target.c (mywait): Likewise, be silent if GDB is connected
1230 through stdio.
1231
97ad4581
JB
12322013-10-01 Joel Brobecker <brobecker@adacore.com>
1233
1234 * lynx-low.c (lynx_add_threads_after_attach): New function.
1235 (lynx_attach): Remove call to add_thread. Add call to
1236 lynx_add_threads_after_attach instead.
1237
5b4e221c
MF
12382013-09-28 Mike Frysinger <vapier@gentoo.org>
1239
1240 * configure.ac (AC_CHECK_HEADERS): Add sys/syscall.h
1241 * config.in, configure: Regenerated.
1242
ee47b2f8
YQ
12432013-09-18 Yao Qi <yao@codesourcery.com>
1244
1245 PR server/15959
1246 * server.c (start_inferior): Clear 'resume_info'.
1247
d6707650 12482013-09-16 Jiong Wang <jiwang@tilera.com>
0f63d4db 1249
d6707650
JW
1250 * linux-tile-low.c (tile_regsets): Modify the size field to 64-bit
1251 for each register.
1252
9243dd0e 12532013-09-16 Jiong Wang <jiwang@tilera.com>
0f63d4db 1254
9243dd0e
JW
1255 * configure.srv <tilegx*-*-linux*>: Remove linux-osdata.o from and add
1256 linux-tile-low.o to srv_tgtobj.
1257
c623a6ef
WN
12582013-09-16 Will Newton <will.newton@linaro.org>
1259
1260 * linux-aarch64-low.c (aarch64_linux_set_debug_regs): Zero
1261 out regs.
1262
fb71d39e
PA
12632013-09-06 Pedro Alves <palves@redhat.com>
1264
1265 * Makefile.in (gdb_proc_service_h, regdef_h, regcache_h)
1266 (signals_def, signals_h, ptid_h, ax_h, agent_h, linux_btrace_h)
1267 (linux_osdata_h, vec_h, gdb_vecs_h, host_defs_h, libiberty_h)
1268 (server_h, gdbthread_h, linux_low_h, linux_ptrace_h)
1269 (gdb_thread_db_h, linux_procfs_h, lynx_low_h, nto_low_h)
1270 (mips_linux_watch_h, i386_low_h, win32_low_h): Delete.
1271
8e7e9910
PA
12722013-09-06 Pedro Alves <palves@redhat.com>
1273
1274 * Makefile.in (linux-btrace.o, mips-linux-watch.o): Remove
1275 explicit header dependencies and use $COMPILE/$POSTCOMPILE.
1276
7c3a12ca
PA
12772013-09-06 Pedro Alves <palves@redhat.com>
1278
1279 * linux-amd64-ipa.c: Include tracepoint.h.
1280 * linux-i386-ipa.c: Include tracepoint.h.
1281
8eb3d7b6
RW
12822013-09-06 Ricard Wanderlof <ricardw@axis.com>
1283
1284 * linux-crisv32-low.c (PTRACE_GET_THREAD_AREA): New macro.
1285 (ps_get_thread_area): New function.
1286
eddddb9d
RW
12872013-09-06 Ricard Wanderlof <ricardw@axis.com>
1288
1289 * linux-crisv32-low.c (elf_gregset_t): Delete typedef.
1290 (initialize_low_arch): Call init_registers_crisv32 rather than
1291 init_register_crisv32.
1292
533b0600
PA
12932013-09-05 Pedro Alves <palves@redhat.com>
1294
1295 * server.h (handle_vFile, hostio_last_error_from_errno): Move
1296 to ...
1297 * hostio.h: ... this new file.
1298 * hostio.c, server.c, linux-low.c, nto-low.c, spu-low,
1299 win32-low.c: Include hostio.h.
1300
0ce3d3b5
PA
13012013-09-05 Pedro Alves <palves@redhat.com>
1302
1303 * server.h (gdb_client_data, handler_func, callback_handler_func)
1304 (delete_file_handler, add_file_handler, append_callback_event)
1305 (delete_callback_event, start_event_loop, initialize_event_loop):
1306 Move to event-loop.h and include it.
1307 * event-loop.h: New file.
1308
799cdc37
PA
13092013-09-05 Pedro Alves <palves@redhat.com>
1310
1311 * dll.c, inferiors.c, remote-utils.c, server.c: Include "dll.h".
1312 * server.h (struct dll_info, all_dlls, dlls_changed, clear_dlls)
1313 (loaded_dll, unloaded_dll): Move to ...
1314 * dll.h: ... this new file.
1315 * inferiors.c, remote-utils.c, win32-low.c: Include "dll.h".
1316
6a6bbd9d
PA
13172013-09-05 Pedro Alves <palves@redhat.com>
1318
1319 * server.h (current_process, get_thread_process, all_processes)
1320 (add_inferior_to_list, for_each_inferior, current_inferior)
1321 (remove_inferior, add_process, remove_process, find_process_pid)
1322 (have_started_inferiors_p, have_attached_inferiors_p)
1323 (thread_id_to_gdb_id, thread_to_gdb_id, gdb_id_to_thread_id)
1324 (clear_inferiors, find_inferior, find_inferior_id)
1325 (inferior_target_data, set_inferior_target_data)
1326 (inferior_regcache_data, set_inferior_regcache_data): Move to
1327 inferiors.h, and include it.
1328 * inferiors.h: New file.
1329
f699aaba
PA
13302013-09-05 Pedro Alves <palves@redhat.com>
1331
1332 * server.h (struct emit_ops, current_insn_ptr, emit_error):
1333 Move ...
1334 * ax.h: ... here.
1335
c144c7a0
PA
13362013-09-05 Pedro Alves <palves@redhat.com>
1337
1338 * ax.c, linux-low.c, linux-x86-low.c, server.c: Include
1339 tracepoint.h.
1340 * server.h (IPA_BUFSIZ, initialize_tracepoint, tracing)
1341 (disconnected_tracing, tracepoint_look_up_symbols, stop_tracing
1342 (handle_tracepoint_general_set, handle_tracepoint_query)
1343 (tracepoint_finished_step, tracepoint_was_hit)
1344 (release_while_stepping_state_list, current_traceframe)
1345 (in_readonly_region, traceframe_read_mem)
1346 (fetch_traceframe_registers, traceframe_read_sdata)
1347 (traceframe_read_info, struct fast_tpoint_collect_status)
1348 (fast_tracepoint_collecting, force_unlock_trace_buffer)
1349 (handle_tracepoit_bkpts, initialize_low_tracepoint)
1350 (supply_fast_tracepoint_registers)
1351 (supply_static_tracepoint_registers, set_trampoline_buffer_space)
1352 (ipa_tdesc, claim_trampoline_space)
1353 (have_fast_tracepoint_trampoline_buffer, gdb_agent_about_to_close)
1354 (agent_mem_read, agent_get_trace_state_variable_value)
1355 (agent_set_trace_state_variable_value, agent_tsv_read)
1356 (agent_mem_read_string, get_raw_reg_func_addr)
1357 (get_get_tsv_func_addr, get_set_tsv_func_addr): Move to ...
1358 * tracepoint.h: ... this new file.
1359
ff42e6ab
PA
13602013-09-05 Pedro Alves <palves@redhat.com>
1361
1362 * server.h (perror_with_name, error, fatal, warning, paddress)
1363 (pulongest, plongest, phex_nz, pfildes): Move to utils.h, and
1364 include it.
1365 * utils.h: New file.
1366
541af0f4
PA
13672013-09-05 Pedro Alves <palves@redhat.com>
1368
1369 * server.h (remote_debug, noack_mode, transport_is_reliable)
1370 (gdb_connected, STDIO_CONNECTION_NAME, remote_connection_is_stdio)
1371 (read_ptid, write_ptid, putpkt, putpkt_binary, putpkt_notif)
1372 (getpkt, remote_prepare, remote_open, remote_close, write_ok)
1373 (write_enn, initialize_async_io, enable_async_io)
1374 (disable_async_io, check_remote_input_interrupt_request)
1375 (convert_ascii_to_int, convert_int_to_ascii, new_thread_notify)
1376 (dead_thread_notify, prepare_resume_reply)
1377 (decode_address_to_semicolon, decode_address, decode_m_packet)
1378 (decode_M_packet, decode_X_packet, decode_xfer_write)
1379 (decode_search_memory_packet, unhexify, hexify)
1380 (remote_escape_output, unpack_varlen_hex, clear_symbol_cache)
1381 (look_up_one_symbol, relocate_instruction)
1382 (monitor_output): Move to remote-utils.h, and include it.
1383 * remote-utils.h: New file.
1384
eebdf26b
PA
13852013-09-05 Pedro Alves <palves@redhat.com>
1386
1387 * server.h (_): Delete.
1388
3aafd2ff
PA
13892013-09-02 Pedro Alves <palves@redhat.com>
1390
1391 * tracepoint.c (TRACEFRAME_EOB_MARKER_SIZE): New macro.
1392 (init_trace_buffer): Ensure at least TRACEFRAME_EOB_MARKER_SIZE is
1393 allocated.
1394 (trace_buffer_alloc): Use TRACEFRAME_EOB_MARKER_SIZE.
1395
cee83bcb
PM
13962013-09-02 Pierre Muller <muller@sourceware.org>
1397
1398 * win32-low.c (child_xfer_memory): Check if ReadProcessMemory
1399 or WriteProcessMemory complete successfully and handle
1400 ERROR_PARTIAL_COPY error.
1401
9a13b2fa
PA
14022013-09-02 Pedro Alves <palves@redhat.com>
1403
1404 * server.c (gdb_read_memory): Return -1 on traceframe memory read
1405 error instead of EIO.
1406
602e3198
JK
14072013-08-28 Jan Kratochvil <jan.kratochvil@redhat.com>
1408
1409 PR server/15604
1410 * linux-low.c: Include filestuff.h.
1411 (linux_create_inferior) <pid == 0>: Call close_most_fds.
1412 * lynx-low.c: Include filestuff.h.
1413 (lynx_create_inferior) <pid == 0>: Call close_most_fds.
1414 * server.c: Include filestuff.h.
1415 (main): Call notice_open_fds.
1416 * spu-low.c: Include filestuff.h.
1417 (spu_create_inferior) <pid == 0>: Call close_most_fds.
1418
96d7229d
LM
14192013-08-22 Luis Machado <lgustavo@codesourcery.com>
1420
1421 * Makefile.in: Explain why ../target and ../nat are not
1422 listed as include file search paths.
1423 (linux-waitpid.o): New object file rule.
1424 * configure.srv (srv_native_linux_obj): New variable.
1425 Replace all occurrences of linux native object files with
1426 $srv_native_linux_obj.
1427 * linux-low.c: Include nat/linux-nat.h and nat/linux-waitpid.h.
1428 (HAS_NOMMU): Move defining logic to common/linux-ptrace.c.
1429 (linux_enable_event_reporting): Remove declaration.
1430 (my_waitpid): Moved to common/linux-waitpid.c.
1431 (linux_wait_for_event): Pass ptid when calling
1432 linux_enable_event_reporting.
1433 (linux_supports_tracefork_flag): Remove.
1434 (linux_enable_event_reporting): Likewise.
1435 (linux_tracefork_grandchild): Remove.
1436 (STACK_SIZE): Moved to common/linux-ptrace.c.
1437 (linux_tracefork_child): Remove.
1438 (linux_test_for_tracefork): Remove.
1439 (linux_look_up_symbols): Call linux_supports_traceclone.
1440 (initialize_low): Remove call to linux_test_for_tracefork.
1441 * linux-low.h (PTRACE_TYPE_ARG3): Move to
1442 common/linux-ptrace.h.
1443 (PTRACE_TYPE_ARG4): Likewise.
1444 Include linux-ptrace.h.
1445
32940073
PA
14462013-08-21 Pedro Alves <palves@redhat.com>
1447
1448 * config.in: Renegerate.
1449
33b60d58 14502013-08-19 Luis Machado <lgustavo@codesourcery.com>
a261b8f5 1451
33b60d58
LM
1452 * Makefile.in (INCLUDE_CFLAGS): Include -I$(srcdir)/../.
1453 (SFILES): Remove $(srcdir)/common/target-common.c and
1454 add $(srcdir)/target/waitstatus.c.
1455 (OBS): Remove target-common.o and add waitstatus.o.
1456 (server_h): Remove $(srcdir)/../common/target-common.h and
1457 add $(srcdir)/../target/resume.h, $(srcdir)/../target/wait.h
1458 and $(srcdir)/../target/waitstatus.h.
1459 (target-common.o): Remove.
1460 (waitstatus.o): New target object file.
1461 * target.h: Do not include target-common.h and
1462 include target/resume.h, target/wait.h and
1463 target/waitstatus.h.
1464
b8e1b30e
LM
14652013-08-13 Luis Machado <lgustavo@codesourcery.com>
1466
1467 * linux-arm-low.c: Rename all occurrences of PTRACE_ARG3_TYPE
1468 to PTRACE_TYPE_ARG3.
1469 * linux-low.c: Rename all occurrences of PTRACE_ARG3_TYPE
1470 to PTRACE_TYPE_ARG3 and PTRACE_ARG4_TYPE to
1471 PTRACE_TYPE_ARG4.
1472 * linux-low.h (PTRACE_ARG3_TYPE): Rename to PTRACE_TYPE_ARG3.
1473 (PTRACE_ARG4_TYPE): Rename to PTRACE_TYPE_ARG4.
1474
7a60ad40
YQ
14752013-07-27 Jie Zhang <jie@codesourcery.com>
1476 Daniel Jacobowitz <dan@codesourcery.com>
1477 Yao Qi <yao@codesourcery.com>
1478
1479 * Makefile.in (SFILES): Add common/mips-linux-watch.c.
1480 (mips-linux-watch.o): New rule.
1481 (mips_linux_watch_h): New variable.
1482 * configure.srv <mips*-*-linux*>: Add mips-linux-watch.o to
1483 srv_tgtobj.
1484 * linux-mips-low.c: Include mips-linux-watch.h.
1485 (struct arch_process_info, struct arch_lwp_info): New.
1486 (update_watch_registers_callback): New function.
1487 (mips_linux_new_process, mips_linux_new_thread) New functions.
1488 (mips_linux_prepare_to_resume, mips_insert_point): New
1489 functions.
1490 (mips_remove_point, mips_stopped_by_watchpoint): New
1491 functions.
1492 (rsp_bp_type_to_target_hw_bp_type): New function.
1493 (mips_stopped_data_address): New function.
1494 (the_low_target): Add watchpoint support functions.
1495
de6f69ad
YQ
14962013-07-27 Yao Qi <yao@codesourcery.com>
1497
1498 * i386-low.c: Include break-common.h.
1499 (enum target_hw_bp_type): Remove.
1500
3360c0bf
LM
15012013-07-24 Luis Machado <lgustavo@codesourcery.com>
1502
1503 * Makefile.in (SFILES): /common/target-common.c.
1504 (OBS): Add target-common.o.
1505 (server_h): Add $(srcdir)/../common/target-common.h.
1506 (target-common.o): New target.
1507 * server.c (queue_stop_reply_callback): Free
1508 status string after use.
1509 * target.c (target_waitstatus_to_string): Remove.
1510 * target.h: Include target-common.h.
1511 (resume_kind): Likewise.
1512 (target_waitkind): Likewise.
1513 (target_waitstatus): Likewise.
1514 (TARGET_WNOHANG): Likewise.
1515
bd885420
YQ
15162013-07-04 Yao Qi <yao@codesourcery.com>
1517
1518 * Makefile.in (host_alias): Use @host_noncanonical@.
1519 (target_alias): Use @target_noncanonical@.
1520 * configure.ac: Use ACX_NONCANONICAL_TARGET and
1521 ACX_NONCANONICAL_HOST.
1522 * configure: Regenerated.
1523
1524 Revert:
1525 2013-06-28 Mircea Gherzan <mircea.gherzan@intel.com>
1526
1527 * configure.ac (version_host, version_target): Set and AC_SUBST them.
1528 * configure: Rebuild.
1529 * Makefile.in (version_host, version_target): Get from configure.
1530 (version.c): Use $(version_host) and $(version_target).
1531
17ef446e
PA
15322013-07-03 Pedro Alves <palves@redhat.com>
1533
1534 * Makefile.in (config.status): Depend on development.sh.
1535 * acinclude.m4: Include libmcheck.m4.
1536 * configure: Regenerate.
1537
7a9a7487
MG
15382013-07-02 Mircea Gherzan <mircea.gherzan@intel.com>
1539
1540 * win32-low.c (winapi_DebugActiveProcessStop): Move the WINAPI
1541 attribute inside the parentheses.
1542 (winapi_DebugSetProcessKillOnExit): Ditto.
1543 (winapi_DebugBreakProcess): Ditto.
1544 (winapi_GenerateConsoleCtrlEvent): Ditto.
a261b8f5 1545
49b64de6
MG
15462013-07-02 Mircea Gherzan <mircea.gherzan@intel.com>
1547
1548 * notif.h (notif_event): Add a dummy member to avoid compiler
1549 errors.
1550
d5749ee7
PA
15512013-07-01 Pedro Alves <palves@redhat.com>
1552
1553 * hostio.c (HOSTIO_PATH_MAX): Define.
1554 (require_filename, handle_open, handle_unlink, handle_readlink):
1555 Use it.
1556
d8d2a3ee
PA
15572013-07-01 Pedro Alves <palves@redhat.com>
1558
1559 * server.h: Include "pathmax.h".
1560 * linux-low.c: Don't include sys/param.h.
1561 (linux_pid_exe_is_elf_64_file): Use PATH_MAX instead of
1562 MAXPATHLEN.
1563 * win32-low.c: Don't include sys/param.h.
1564 (win32_create_inferior): Use PATH_MAX instead of MAXPATHLEN.
1565
bc7dea8d
PA
15662013-07-01 Pedro Alves <palves@redhat.com>
1567
1568 * event-loop.c: Don't check HAVE_UNISTD_H before including
1569 <unistd.h>.
1570 * gdbreplay.c: Likewise.
1571 * remote-utils.c: Likewise.
1572 * server.c: Likewise.
1573 * configure.ac: Don't check for unistd.h.
1574 * configure: Regenerate.
1575
d6c2da54
TT
15762013-06-28 Tom Tromey <tromey@redhat.com>
1577
1578 * Makefile.in (version.c): Use version.in, not
1579 common/version.in.
1580
257b6bec
MG
15812013-06-28 Mircea Gherzan <mircea.gherzan@intel.com>
1582
1583 * configure.ac (version_host, version_target): Set and AC_SUBST them.
1584 * configure: Rebuild.
1585 * Makefile.in (version_host, version_target): Get from configure.
1586 (version.c): Use $(version_host) and $(version_target).
1587
86ebe149
DK
15882013-06-10 Dmitry Kozlov <ddk@codesourcery.com>
1589
1590 Fix trace-status to output user name without trailing colon.
1591 * tracepoint.c (cmd_qtstatus): Remove unnecessary colon from user name.
1592
f30aa5af
DK
15932013-06-10 Dmitry Kozlov <ddk@codesourcery.com>
1594
1595 Fix trace-status to output proper start-time and stop-time.
1596 * tracepoint.c (cmd_qtstatus): Modify trace-status output to
1597 output start time and stop time in hex as gdb expects.
1598
28a93511
YQ
15992013-06-26 Pedro Alves <pedro@codesourcery.com>
1600
1601 * tracepoint.c (build_traceframe_info_xml): Output trace state
1602 variables present in the trace buffer.
1603
01208463
TT
16042013-06-24 Tom Tromey <tromey@redhat.com>
1605
1606 * Makefile.in (version.c): Use bfd/version.h, common/version.in,
1607 create-version.sh.
1608 (version.o): Remove.
1609 * gdbreplay.c: Include version.h.
1610 (version, host_name): Don't declare.
1611 * server.h: Include version.h.
1612 (version, host_name): Don't declare.
1613
760256f9
PA
16142013-06-12 Pedro Alves <palves@redhat.com>
1615
1616 * linux-x86-low.c (linux_is_elf64): Delete global.
1617 (x86_siginfo_fixup): Replace reference to `linux_is_elf64' global
1618 with local linux_pid_exe_is_elf_64_file use.
1619
030031ee
PA
16202013-06-11 Pedro Alves <palves@redhat.com>
1621
1622 * linux-low.c (regset_disabled, disable_regset): New functions.
1623 (regsets_fetch_inferior_registers)
1624 (regsets_store_inferior_registers): Use them.
1625 (initialize_regsets_info); Don't allocate the disabled_regsets
1626 array here.
1627 * linux-low.h (struct regsets_info) <disabled_regsets>: Extend
1628 comment.
1629
5da6eb0a
PA
16302013-06-11 Pedro Alves <palves@redhat.com>
1631
1632 * linux-low.c (initialize_regsets_info): Use xcalloc instead of
1633 xmalloc.
1634
7e5aaa09
PA
16352013-06-11 Pedro Alves <palves@redhat.com>
1636
1637 * linux-x86-low.c (initialize_low_arch): Call
1638 init_registers_x32_avx_linux.
1639
d878444c
JK
16402013-06-09 Jan Kratochvil <jan.kratochvil@redhat.com>
1641
1642 Fix compatibility with Android Bionic.
1643 * linux-low.c (linux_qxfer_libraries_svr4): Ignore first entry even if
1644 it is not empty.
1645
3aee8918
PA
16462013-06-07 Pedro Alves <palves@redhat.com>
1647
5f2b57b5 1648 PR server/14823
3aee8918
PA
1649 * Makefile.in (OBS): Add tdesc.o.
1650 (IPA_OBJS): Add tdesc-ipa.o.
1651 (tdesc-ipa.o): New rule.
1652 * ax.c (gdb_eval_agent_expr): Adjust register_size call to new
1653 interface.
1654 * linux-low.c (new_inferior): Delete.
1655 (disabled_regsets, num_regsets): Delete.
1656 (linux_add_process): Adjust to set the new per-process
1657 new_inferior flag.
1658 (linux_detach_one_lwp): Adjust to call regcache_invalidate_thread.
1659 (linux_wait_for_lwp): Adjust. Only call arch_setup if the event
1660 was a stop. When calling arch_setup, switch the current inferior
1661 to the thread that got an event.
1662 (linux_resume_one_lwp): Adjust to call regcache_invalidate_thread.
1663 (regsets_fetch_inferior_registers)
1664 (regsets_store_inferior_registers): New regsets_info parameter.
1665 Adjust to use it.
1666 (linux_register_in_regsets): New regs_info parameter. Adjust to
1667 use it.
1668 (register_addr, fetch_register, store_register): New usrregs_info
1669 parameter. Adjust to use it.
1670 (usr_fetch_inferior_registers, usr_store_inferior_registers): New
1671 parameter regs_info. Adjust to use it.
1672 (linux_fetch_registers): Get the current inferior's regs_info, and
1673 adjust to use it.
1674 (linux_store_registers): Ditto.
1675 [HAVE_LINUX_REGSETS] (initialize_regsets_info): New.
1676 (initialize_low): Don't initialize the target_regsets here. Call
1677 initialize_low_arch.
1678 * linux-low.h (target_regsets): Delete declaration.
1679 (struct regsets_info): New.
1680 (struct usrregs_info): New.
1681 (struct regs_info): New.
1682 (struct process_info_private) <new_inferior>: New field.
1683 (struct linux_target_ops): Delete the num_regs, regmap, and
1684 regset_bitmap fields. New field regs_info.
1685 [HAVE_LINUX_REGSETS] (initialize_regsets_info): Declare.
1686 * i387-fp.c (num_xmm_registers): Delete.
1687 (i387_cache_to_fsave, i387_fsave_to_cache): Adjust find_regno
1688 calls to new interface.
1689 (i387_cache_to_fxsave, i387_cache_to_xsave, i387_fxsave_to_cache)
1690 (i387_xsave_to_cache): Adjust find_regno calls to new interface.
1691 Infer the number of xmm registers from the regcache's target
1692 description.
1693 * i387-fp.h (num_xmm_registers): Delete.
1694 * inferiors.c (add_thread): Don't install the thread's regcache
1695 here.
1696 * proc-service.c (gregset_info): Fetch the current inferior's
1697 regs_info. Adjust to use it.
1698 * regcache.c: Include tdesc.h.
1699 (register_bytes, reg_defs, num_registers)
1700 (gdbserver_expedite_regs): Delete.
1701 (get_thread_regcache): If the thread doesn't have a regcache yet,
1702 create one, instead of aborting gdbserver.
1703 (regcache_invalidate_one): Rename to ...
1704 (regcache_invalidate_thread): ... this.
1705 (regcache_invalidate_one): New.
1706 (regcache_invalidate): Only invalidate registers of the current
1707 process.
1708 (init_register_cache): Add target_desc parameter, and use it.
1709 (new_register_cache): Ditto. Assert the target description has a
1710 non zero registers_size.
1711 (regcache_cpy): Add assertions. Adjust.
1712 (realloc_register_cache, set_register_cache): Delete.
1713 (registers_to_string, registers_from_string): Adjust.
1714 (find_register_by_name, find_regno, find_register_by_number)
1715 (register_cache_size): Add target_desc parameter, and use it.
1716 (free_register_cache_thread, free_register_cache_thread_one)
1717 (regcache_release, register_cache_size): New.
1718 (register_size): Add target_desc parameter, and use it.
1719 (register_data, supply_register, supply_register_zeroed)
1720 (supply_regblock, supply_register_by_name, collect_register)
1721 (collect_register_as_string, collect_register_by_name): Adjust.
1722 * regcache.h (struct target_desc): Forward declare.
1723 (struct regcache) <tdesc>: New field.
1724 (init_register_cache, new_register_cache): Add target_desc
1725 parameter.
1726 (regcache_invalidate_thread): Declare.
1727 (regcache_invalidate_one): Delete declaration.
1728 (regcache_release): Declare.
1729 (find_register_by_number, register_cache_size, register_size)
1730 (find_regno): Add target_desc parameter.
1731 (gdbserver_expedite_regs, gdbserver_xmltarget): Delete
1732 declarations.
1733 * remote-utils.c: Include tdesc.h.
1734 (outreg, prepare_resume_reply): Adjust.
1735 * server.c: Include tdesc.h.
1736 (gdbserver_xmltarget): Delete declaration.
1737 (get_features_xml, process_serial_event): Adjust.
1738 * server.h [IN_PROCESS_AGENT] (struct target_desc): Forward
1739 declare.
1740 (struct process_info) <tdesc>: New field.
1741 (ipa_tdesc): Declare.
1742 * tdesc.c: New file.
1743 * tdesc.h: New file.
1744 * tracepoint.c: Include tdesc.h.
1745 [IN_PROCESS_AGENT] (ipa_tdesc): Define.
1746 (get_context_regcache): Adjust to pass ipa_tdesc down.
1747 (do_action_at_tracepoint): Adjust to get the register cache size
1748 from the context regcache's description.
1749 (traceframe_walk_blocks): Adjust to get the register cache size
1750 from the current trace frame's description.
1751 (traceframe_get_pc): Adjust to get current trace frame's
1752 description and pass it down.
1753 (gdb_collect): Adjust to get the register cache size from the
1754 IPA's description.
1755 * linux-amd64-ipa.c (tdesc_amd64_linux): Declare.
1756 (gdbserver_xmltarget): Delete.
1757 (initialize_low_tracepoint): Set the ipa's target description.
1758 * linux-i386-ipa.c (tdesc_i386_linux): Declare.
1759 (initialize_low_tracepoint): Set the ipa's target description.
1760 * linux-x86-low.c: Include tdesc.h.
1761 [__x86_64__] (is_64bit_tdesc): New.
1762 (ps_get_thread_area, x86_get_thread_area): Use it.
1763 (i386_cannot_store_register): Rename to ...
1764 (x86_cannot_store_register): ... this. Use is_64bit_tdesc.
1765 (i386_cannot_fetch_register): Rename to ...
1766 (x86_cannot_fetch_register): ... this. Use is_64bit_tdesc.
1767 (x86_fill_gregset, x86_store_gregset): Adjust register_size calls
1768 to new interface.
1769 (target_regsets): Rename to ...
1770 (x86_regsets): ... this.
1771 (x86_get_pc, x86_set_pc): Adjust register_size calls to new
1772 interface.
1773 (x86_siginfo_fixup): Use is_64bit_tdesc.
1774 [__x86_64__] (tdesc_amd64_linux, tdesc_amd64_avx_linux)
1775 (tdesc_x32_avx_linux, tdesc_x32_linux)
1776 (tdesc_i386_linux, tdesc_i386_mmx_linux, tdesc_i386_avx_linux):
1777 Declare.
1778 (x86_linux_update_xmltarget): Delete.
1779 (I386_LINUX_XSAVE_XCR0_OFFSET): Define.
1780 (have_ptrace_getfpxregs, have_ptrace_getregset): New.
1781 (AMD64_LINUX_USER64_CS): New.
1782 (x86_linux_read_description): New, based on
1783 x86_linux_update_xmltarget.
1784 (same_process_callback): New.
1785 (x86_arch_setup_process_callback): New.
1786 (x86_linux_update_xmltarget): New.
1787 (x86_regsets_info): New.
1788 (amd64_linux_regs_info): New.
1789 (i386_linux_usrregs_info): New.
1790 (i386_linux_regs_info): New.
1791 (x86_linux_regs_info): New.
1792 (x86_arch_setup): Reimplement.
1793 (x86_install_fast_tracepoint_jump_pad): Use is_64bit_tdesc.
1794 (x86_emit_ops): Ditto.
1795 (the_low_target): Adjust. Install x86_linux_regs_info,
1796 x86_cannot_fetch_register, and x86_cannot_store_register.
1797 (initialize_low_arch): New.
1798 * linux-ia64-low.c (tdesc_ia64): Declare.
1799 (ia64_fetch_register): Adjust.
1800 (ia64_usrregs_info, regs_info): New globals.
1801 (ia64_regs_info): New function.
1802 (the_low_target): Adjust.
1803 (initialize_low_arch): New function.
1804 * linux-sparc-low.c (tdesc_sparc64): Declare.
1805 (sparc_fill_gregset_to_stack, sparc_store_gregset_from_stack):
1806 Adjust.
1807 (sparc_arch_setup): New function.
1808 (sparc_regsets_info, sparc_usrregs_info, regs_info): New globals.
1809 (the_low_target): Adjust.
1810 (initialize_low_arch): New function.
1811 * linux-ppc-low.c (tdesc_powerpc_32l, tdesc_powerpc_altivec32l)
1812 (tdesc_powerpc_cell32l, tdesc_powerpc_vsx32l)
1813 (tdesc_powerpc_isa205_32l, tdesc_powerpc_isa205_altivec32l)
1814 (tdesc_powerpc_isa205_vsx32l, tdesc_powerpc_e500l)
1815 (tdesc_powerpc_64l, tdesc_powerpc_altivec64l)
1816 (tdesc_powerpc_cell64l, tdesc_powerpc_vsx64l)
1817 (tdesc_powerpc_isa205_64l, tdesc_powerpc_isa205_altivec64l)
1818 (tdesc_powerpc_isa205_vsx64l): Declare.
1819 (ppc_cannot_store_register, ppc_collect_ptrace_register)
1820 (ppc_supply_ptrace_register, parse_spufs_run, ppc_get_pc)
1821 (ppc_set_pc, ppc_get_hwcap): Adjust.
1822 (ppc_usrregs_info): Forward declare.
1823 (!__powerpc64__) ppc_regmap_adjusted: New global.
1824 (ppc_arch_setup): Adjust to the current process'es target
1825 description.
1826 (ppc_fill_vsxregset, ppc_store_vsxregset, ppc_fill_vrregset)
1827 (ppc_store_vrregset, ppc_fill_evrregset, ppc_store_evrregse)
1828 (ppc_store_evrregset): Adjust.
1829 (target_regsets): Rename to ...
1830 (ppc_regsets): ... this, and make static.
1831 (ppc_usrregs_info, ppc_regsets_info, regs_info): New globals.
1832 (ppc_regs_info): New function.
1833 (the_low_target): Adjust.
1834 (initialize_low_arch): New function.
1835 * linux-s390-low.c (tdesc_s390_linux32, tdesc_s390_linux32v1)
1836 (tdesc_s390_linux32v2, tdesc_s390_linux64, tdesc_s390_linux64v1)
1837 (tdesc_s390_linux64v2, tdesc_s390x_linux64, tdesc_s390x_linux64v1)
1838 (tdesc_s390x_linux64v2): Declare.
1839 (s390_collect_ptrace_register, s390_supply_ptrace_register)
1840 (s390_fill_gregset, s390_store_last_break): Adjust.
1841 (target_regsets): Rename to ...
1842 (s390_regsets): ... this, and make static.
1843 (s390_get_pc, s390_set_pc): Adjust.
1844 (s390_get_hwcap): New target_desc parameter, and use it.
1845 [__s390x__] (have_hwcap_s390_high_gprs): New global.
1846 (s390_arch_setup): Adjust to set the current process'es target
1847 description. Don't adjust the regmap.
1848 (s390_usrregs_info, s390_regsets_info, regs_info): New globals.
1849 [__s390x__] (s390_usrregs_info_3264, s390_regsets_info_3264)
1850 (regs_info_3264): New globals.
1851 (s390_regs_info): New function.
1852 (the_low_target): Adjust.
1853 (initialize_low_arch): New function.
1854 * linux-mips-low.c (tdesc_mips_linux, tdesc_mips_dsp_linux)
1855 (tdesc_mips64_linux, tdesc_mips64_dsp_linux): Declare.
1856 [__mips64] (init_registers_mips_linux)
1857 (init_registers_mips_dsp_linux): Delete defines.
1858 [__mips64] (tdesc_mips_linux, tdesc_mips_dsp_linux): New defines.
1859 (have_dsp): New global.
1860 (mips_read_description): New, based on mips_arch_setup.
1861 (mips_arch_setup): Reimplement.
1862 (get_usrregs_info): New function.
1863 (mips_cannot_fetch_register, mips_cannot_store_register)
1864 (mips_get_pc, mips_set_pc, mips_fill_gregset, mips_store_gregset)
1865 (mips_fill_fpregset, mips_store_fpregset): Adjust.
1866 (target_regsets): Rename to ...
1867 (mips_regsets): ... this, and make static.
1868 (mips_regsets_info, mips_dsp_usrregs_info, mips_usrregs_info)
1869 (dsp_regs_info, regs_info): New globals.
1870 (mips_regs_info): New function.
1871 (the_low_target): Adjust.
1872 (initialize_low_arch): New function.
1873 * linux-arm-low.c (tdesc_arm, tdesc_arm_with_iwmmxt)
1874 (tdesc_arm_with_vfpv2, tdesc_arm_with_vfpv3, tdesc_arm_with_neon):
1875 Declare.
1876 (arm_fill_vfpregset, arm_store_vfpregset): Adjust.
1877 (arm_read_description): New, with bits factored from
1878 arm_arch_setup.
1879 (arm_arch_setup): Reimplement.
1880 (target_regsets): Rename to ...
1881 (arm_regsets): ... this, and make static.
1882 (arm_regsets_info, arm_usrregs_info, regs_info): New globals.
1883 (arm_regs_info): New function.
1884 (the_low_target): Adjust.
1885 (initialize_low_arch): New function.
1886 * linux-m68k-low.c (tdesc_m68k): Declare.
1887 (target_regsets): Rename to ...
1888 (m68k_regsets): ... this, and make static.
1889 (m68k_regsets_info, m68k_usrregs_info, regs_info): New globals.
1890 (m68k_regs_info): New function.
1891 (m68k_arch_setup): New function.
1892 (the_low_target): Adjust.
1893 (initialize_low_arch): New function.
1894 * linux-sh-low.c (tdesc_sharch): Declare.
1895 (target_regsets): Rename to ...
1896 (sh_regsets): ... this, and make static.
1897 (sh_regsets_info, sh_usrregs_info, regs_info): New globals.
1898 (sh_regs_info, sh_arch_setup): New functions.
1899 (the_low_target): Adjust.
1900 (initialize_low_arch): New function.
1901 * linux-bfin-low.c (tdesc_bfin): Declare.
1902 (bfin_arch_setup): New function.
1903 (bfin_usrregs_info, regs_info): New globals.
1904 (bfin_regs_info): New function.
1905 (the_low_target): Adjust.
1906 (initialize_low_arch): New function.
1907 * linux-cris-low.c (tdesc_cris): Declare.
1908 (cris_arch_setup): New function.
1909 (cris_usrregs_info, regs_info): New globals.
1910 (cris_regs_info): New function.
1911 (the_low_target): Adjust.
1912 (initialize_low_arch): New function.
1913 * linux-cris-low.c (tdesc_crisv32): Declare.
1914 (cris_arch_setup): New function.
1915 (cris_regsets_info, cris_usrregs_info, regs_info): New globals.
1916 (cris_regs_info): New function.
1917 (the_low_target): Adjust.
1918 (initialize_low_arch): New function.
1919 * linux-m32r-low.c (tdesc_m32r): Declare.
1920 (m32r_arch_setup): New function.
1921 (m32r_usrregs_info, regs_info): New globals.
1922 (m32r_regs_info): Adjust.
1923 (initialize_low_arch): New function.
1924 * linux-tic6x-low.c (tdesc_tic6x_c64xp_linux)
1925 (tdesc_tic6x_c64x_linux, tdesc_tic6x_c62x_linux): Declare.
1926 (tic6x_usrregs_info): Forward declare.
1927 (tic6x_read_description): New function, based on ...
1928 (tic6x_arch_setup): ... this. Reimplement.
1929 (target_regsets): Rename to ...
1930 (tic6x_regsets): ... this, and make static.
1931 (tic6x_regsets_info, tic6x_usrregs_info, regs_info): New globals.
1932 (tic6x_regs_info): New function.
1933 (the_low_target): Adjust.
1934 (initialize_low_arch): New function.
1935 * linux-xtensa-low.c (tdesc_xtensa): Declare.
1936 (xtensa_fill_gregset, xtensa_store_gregset): Adjust.
1937 (target_regsets): Rename to ...
1938 (xtensa_regsets): ... this, and make static.
1939 (xtensa_regsets_info, xtensa_usrregs_info, regs_info): New
1940 globals.
1941 (xtensa_arch_setup, xtensa_regs_info): New functions.
1942 (the_low_target): Adjust.
1943 (initialize_low_arch): New function.
1944 * linux-nios2-low.c (tdesc_nios2_linux): Declare.
1945 (nios2_arch_setup): Set the current process'es tdesc.
1946 (target_regsets): Rename to ...
1947 (nios2_regsets): ... this.
1948 (nios2_regsets_info, nios2_usrregs_info, regs_info): New globals.
1949 (nios2_regs_info): New function.
1950 (the_low_target): Adjust.
1951 (initialize_low_arch): New function.
a261b8f5
PA
1952 * linux-aarch64-low.c (tdesc_aarch64): Declare.
1953 (aarch64_arch_setup): Set the current process'es tdesc.
1954 (target_regsets): Rename to ...
1955 (aarch64_regsets): ... this.
1956 (aarch64_regsets_info, aarch64_usrregs_info, regs_info): New globals.
1957 (aarch64_regs_info): New function.
1958 (the_low_target): Adjust.
1959 (initialize_low_arch): New function.
3aee8918
PA
1960 * linux-tile-low.c (tdesc_tilegx, tdesc_tilegx32): Declare
1961 globals.
1962 (target_regsets): Rename to ...
1963 (tile_regsets): ... this.
1964 (tile_regsets_info, tile_usrregs_info, regs_info): New globals.
1965 (tile_regs_info): New function.
1966 (tile_arch_setup): Set the current process'es tdesc.
1967 (the_low_target): Adjust.
1968 (initialize_low_arch): New function.
1969 * spu-low.c (tdesc_spu): Declare.
1970 (spu_create_inferior, spu_attach): Set the new process'es tdesc.
1971 * win32-arm-low.c (tdesc_arm): Declare.
1972 (arm_arch_setup): New function.
1973 (the_low_target): Install arm_arch_setup instead of
1974 init_registers_arm.
1975 * win32-i386-low.c (tdesc_i386, tdesc_amd64): Declare.
1976 (init_windows_x86): Rename to ...
1977 (i386_arch_setup): ... this. Set `win32_tdesc'.
1978 (the_low_target): Adjust.
1979 * win32-low.c (win32_tdesc): New global.
1980 (child_add_thread): Don't create the thread cache here.
1981 (do_initial_child_stuff): Set the new process'es tdesc.
1982 * win32-low.h (struct target_desc): Forward declare.
1983 (win32_tdesc): Declare.
1984 * lynx-i386-low.c (tdesc_i386): Declare global.
1985 (lynx_i386_arch_setup): Set `lynx_tdesc'.
1986 * lynx-low.c (lynx_tdesc): New global.
1987 (lynx_add_process): Set the new process'es tdesc.
1988 * lynx-low.h (struct target_desc): Forward declare.
1989 (lynx_tdesc): Declare global.
1990 * lynx-ppc-low.c (tdesc_powerpc_32): Declare global.
1991 (lynx_ppc_arch_setup): Set `lynx_tdesc'.
1992 * nto-low.c (nto_tdesc): New global.
1993 (do_attach): Set the new process'es tdesc.
1994 * nto-low.h (struct target_desc): Forward declare.
1995 (nto_tdesc): Declare.
1996 * nto-x86-low.c (tdesc_i386): Declare.
1997 (nto_x86_arch_setup): Set `nto_tdesc'.
1998
b1fbec62
GB
19992013-06-04 Gary Benson <gbenson@redhat.com>
2000
2001 * server.c (handle_query): Add "augmented-libraries-svr4-read+"
2002 to qSupported response when appropriate.
2003 (handle_qxfer_libraries_svr4): Allow qXfer:libraries-svr4:read
2004 with nonzero-length annex.
2005 * linux-low.c (linux_qxfer_libraries_svr4): Parse and handle
2006 arguments supplied in annex.
2007
d1ec4ce7
DE
20082013-05-31 Doug Evans <dje@google.com>
2009
ac44adcb 2010 PR server/15594
d1ec4ce7
DE
2011 * linux-x86-low.c (ps_get_thread_area): Properly extend address to
2012 64 bits in 64-cross-32 environment.
2013
9b25f2d3
PA
20142013-05-28 Pedro Alves <palves@redhat.com>
2015
2016 * Makefile.in (clean): Remove reference to aarch64-without-fpu.c.
2017 (aarch64-without-fpu.c): Delete rule.
2018 * configure.srv (aarch64*-*-linux*): Remove references to
2019 aarch64-without-fpu.o and aarch64-without-fpu.xml.
2020 * linux-aarch64-low.c (init_registers_aarch64_without_fpu): Remove
2021 declaration.
2022
6740dc9c
PA
20232013-05-24 Pedro Alves <palves@redhat.com>
2024
2025 * server.c (handle_v_cont) <vCont;r>: Use unpack_varlen_hex
2026 instead of strchr/decode_address. Error if the range isn't split
2027 with a ','. Don't assume there's be a ':' in the action.
2028
c2d6af84
PA
20292013-05-23 Yao Qi <yao@codesourcery.com>
2030 Pedro Alves <palves@redhat.com>
2031
2032 * linux-low.c (lwp_in_step_range): New function.
2033 (linux_wait_1): If the thread was range stepping and stopped
2034 outside the stepping range, report the stop to GDB. Otherwise,
2035 continue stepping. Add range stepping debug output.
2036 (linux_set_resume_request): Copy the step range from the resume
2037 request to the lwp.
2038 (linux_supports_range_stepping): New.
2039 (linux_target_ops) <supports_range_stepping>: Set to
2040 linux_supports_range_stepping.
2041 * linux-low.h (struct linux_target_ops)
2042 <supports_range_stepping>: New field.
2043 (struct lwp_info) <step_range_start, step_range_end>: New fields.
2044 * linux-x86-low.c (x86_supports_range_stepping): New.
2045 (the_low_target) <supports_range_stepping>: Set to
2046 x86_supports_range_stepping.
2047 * server.c (handle_v_cont): Handle 'r' action.
2048 (handle_v_requests): Append ";r" if the target supports range
2049 stepping.
2050 * target.h (struct thread_resume) <step_range_start,
2051 step_range_end>: New fields.
2052 (struct target_ops) <supports_range_stepping>:
2053 New field.
2054 (target_supports_range_stepping): New macro.
2055
58794e1a
JB
20562013-05-17 Joel Brobecker <brobecker@adacore.com>
2057
2058 * lynx-low.c (lynx_resume): Fix null_ptid/minus_one_ptid
2059 confusion in comment.
2060
d631c5a7
JB
20612013-05-17 Joel Brobecker <brobecker@adacore.com>
2062
2063 * lynx-low.c (struct process_info_private): New type.
2064 (lynx_add_process): New function.
2065 (lynx_create_inferior, lynx_attach): Replace calls to
2066 add_process by calls to lynx_add_process.
2067 (lynx_resume): If PTID is null, then try using
2068 current_process()->private->last_wait_event_ptid.
2069 Add comments.
2070 (lynx_clear_inferiors): Delete. The contents of that function
2071 has been inlined in lynx_mourn;
2072 (lynx_wait_1): Save the ptid in the process's private data.
2073 (lynx_mourn): Free the process' private data. Replace call
2074 to lynx_clear_inferiors by call to clear_inferiors.
2075
96f7a20f
YQ
20762013-05-17 Yao Qi <yao@codesourcery.com>
2077
2078 * i386-low.c (i386_length_and_rw_bits): Move the comment to
2079 the right place.
2080
db0dfaa0
LM
20812013-05-16 Luis Machado <lgustavo@codesourcery.com>
2082
2083 * linux-low.c: Move definition checks upwards for PT_TEXT_ADDR,
2084 PT_DATA_ADDR and PT_TEXT_END_ADDR. Update comments.
2085 (linux_read_offsets): Remove PT_TEXT_ADDR, PT_DATA_ADDR and
2086 PT_TEXT_END_ADDR guards. Update comments.
2087 (linux_target_op) <read_offsets>: Conditionally define to
2088 linux_read_offsets if the target is UCLIBC and if it defines
2089 PT_TEXT_ADDR, PT_DATA_ADDR and PT_TEXT_END_ADDR.
2090
68f5f838
SL
20912013-05-06 Sandra Loosemore <sandra@codesourcery.com>
2092 Andrew Jenner <andrew@codesourcery.com>
2093
2094 * Makefile.in (SFILES): Add linux-nios2-low.c.
2095 (clean): Add action to delete nios2-linux.c.
2096 (nios2-linux.c): New rule.
2097 * configure.srv: Add nios2*-*-linux*.
2098 * linux-nios2-low.c: New.
2099
1ebff1fd
HAQ
21002013-05-03 Hafiz Abid Qadeer <abidh@codesourcery.com>
2101
2102 * tracepoint.c (cmd_qtinit): Call 'stop_tracing'.
2103
f6150862
HZ
21042013-04-25 Hui Zhu <hui@codesourcery.com>
2105
2106 PR gdb/15186
f6150862
HZ
2107 * ax.c (ax_printf): Add fflush.
2108
614c279d
TT
21092013-04-22 Tom Tromey <tromey@redhat.com>
2110
2111 * Makefile.in (SFILES): Add filestuff.c.
2112 (OBS): Add filestuff.o.
2113 (filestuff.o): New target.
2114 * config.in, configure: Rebuild.
2115 * configure.ac: Check for fdwalk, pipe2.
2116
7d4e5717
PA
21172013-04-17 Pedro Alves <palves@redhat.com>
2118
2119 * configure.ac (USE_THREAD_DB): Delete variable.
2120 (if test "$srv_linux_thread_db" = "yes"): AC_DEFINE USE_THREAD_DB.
2121 Don't AC_SUBST USE_THREAD_DB.
2122 * Makefile.in (INTERNAL_CFLAGS): Remove @USE_THREAD_DB@.
2123 * config.in, configure: Regenerate.
2124
d5c93e41
PA
21252013-04-16 Pedro Alves <palves@redhat.com>
2126
2127 * linux-low.h (struct lwp_info) <thread_known>: Move under
2128 the USE_THREAD_DB #ifdef.
2129
04f5fe89
PA
21302013-04-16 Pedro Alves <palves@redhat.com>
2131
2132 * Makefile.in (INTERNAL_CFLAGS): Add @USE_THREAD_DB@.
2133 (linux-low.o): Delete rule.
2134 * linux-low.h: Always include "gdb_thread_db.h" instead of
2135 conditionally including thread_db.h.
2136 (struct lwp_info) <th>: Guard with #ifdef USE_THREAD_DB instead of
2137 HAVE_THREAD_DB_H.
2138
480b27bf
JK
21392013-04-07 Jan Kratochvil <jan.kratochvil@redhat.com>
2140
2141 * Makefile.in (install-only): Fix make install regression.
2142
43662968
JK
21432013-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
2144
2145 Convert man pages to texinfo, new gdbinit.5 texinfo page.
2146 * Makefile.in (install-only): Remove $(man1dir) and gdbserver.1
2147 installation.
2148 * gdbserver.1: Remove.
2149
3e74e146
PA
21502013-03-22 Pedro Alves <palves@redhat.com>
2151
2152 * linux-low.c (handle_extended_wait): Don't call
2153 linux_enable_event_reporting.
2154
a8347a2a
TT
21552013-03-15 Tony Theodore <tonyt@logyst.com>
2156
2157 PR build/9098:
2158 * Makefile.in (SHELL): Use @SHELL@.
2159
eeb56fa7
SDJ
21602013-03-14 Sergio Durigan Junior <sergiodj@redhat.com>
2161
2162 * tracepoint.c (cmd_qtv): Initialize `val' with zero, silencing
2163 compiler warning.
2164
4fa7e2ff
JB
21652013-03-13 Joel Brobecker <brobecker@adacore.com>
2166
2167 * linux-low.c (linux_target_ops) [!HAVE_LINUX_BTRACE]:
2168 Remove extraneous NULL element.
2169
8ddb1965
YQ
21702013-03-13 Yao Qi <yao@codesourcery.com>
2171
2172 * tracepoint.c (traceframe_read_tsv): Look for the last matched
2173 'V' block in trace frame.
2174
9accd112
MM
21752013-03-11 Markus Metzger <markus.t.metzger@intel.com>
2176
2177 * target.h (struct target_ops): Add btrace ops.
2178 (target_supports_btrace): New macro.
2179 (target_enable_btrace): New macro.
2180 (target_disable_btrace): New macro.
2181 (target_read_btrace): New macro.
2182 * gdbthread.h (struct thread_info): Add btrace field.
2183 * server.c: Include btrace-common.h.
2184 (handle_btrace_general_set): New function.
2185 (handle_btrace_enable): New function.
2186 (handle_btrace_disable): New function.
2187 (handle_general_set): Call handle_btrace_general_set.
2188 (handle_qxfer_btrace): New function.
2189 (struct qxfer qxfer_packets[]): Add btrace entry.
2190 * inferiors.c (remove_thread): Disable btrace.
2191 * linux-low: Include linux-btrace.h.
2192 (linux_low_enable_btrace): New function.
2193 (linux_low_read_btrace): New function.
2194 (linux_target_ops): Add btrace ops.
2195 * configure.srv (i[34567]86-*-linux*): Add linux-btrace.o.
2196 Add srv_linux_btrace=yes.
2197 (x86_64-*-linux*): Add linux-btrace.o.
2198 Add srv_linux_btrace=yes.
2199 * configure.ac: Define HAVE_LINUX_BTRACE.
2200 * config.in: Regenerated.
2201 * configure: Regenerated.
2202
5cc22e4c
MM
22032013-03-11 Markus Metzger <markus.t.metzger@intel.com>
2204
2205 * server.c (handle_qxfer): Preserve error message if -3 is
2206 returned.
2207 (qxfer): Document the -3 return value.
2208
7c97f91e
MM
22092013-03-11 Markus Metzger <markus.t.metzger@intel.com>
2210
2211 * Makefile.in (SFILES): Add $(srcdir)/common/linux-btrace.c.
2212 (linux_btrace_h): New variable.
2213 (linux-btrace.o): New rule.
2214
be9a119c 22152013-03-08 Stan Shebs <stan@codesourcery.com>
f6f899bf
HAQ
2216 Hafiz Abid Qadeer <abidh@codesourcery.com>
2217
2218 * tracepoint.c (trace_buffer_size): New global.
2219 (DEFAULT_TRACE_BUFFER_SIZE): New define.
2220 (init_trace_buffer): Change to one-argument function. Allocate
2221 trace buffer memory.
2222 (handle_tracepoint_general_set): Call cmd_bigqtbuffer_size to
2223 handle QTBuffer:size packet.
2224 (cmd_bigqtbuffer_size): New function.
2225 (initialize_tracepoint): Call init_trace_buffer with
2226 DEFAULT_TRACE_BUFFER_SIZE.
2227 * server.c (handle_query): Add QTBuffer:size in the
2228 supported packets.
2229
e64f7499
YQ
22302013-03-07 Yao Qi <yao@codesourcery.com>
2231
2232 * tracepoint.c (cur_action, cur_step_action): Make them unsigned.
2233 (cmd_qtfp): Initialize cur_action and cur_step_action 0 instead
2234 of -1.
2235 (cmd_qtsp): Adjust condition. Do post increment.
2236 Set cur_action and cur_step_action back to 0.
2237
f0ae6fc3
PA
22382013-03-07 Jeremy Bennett <jeremy.bennett@embecosm.com>
2239
2240 PR server/15236
2241 * linux-low.c (linux_write_memory): Return early success if LEN is
2242 zero.
2243
b5b0b0af
CV
22442013-03-05 Corinna Vinschen <vinschen@redhat.de>
2245
334ad4a8 2246 * configure.srv: Add x86_64-*-cygwin* as target.
b5b0b0af 2247
589bc927
TT
22482013-02-28 Tom Tromey <tromey@redhat.com>
2249
2250 * configure.ac: Invoke AC_SYS_LARGEFILE.
2251 * configure, config.in: Rebuild.
2252
dfe07582
CV
22532013-02-28 Corinna Vinschen <vinschen@redhat.com>
2254
2255 * win32-low.c: Throughout, fix format strings and casts of
2256 printf-like functions to avoid type related warnings on all
2257 platforms.
2258 (get_child_debug_event): Print dwDebugEventCode as hex since
2259 that's how it's usually documented.
2260
736cd585
YQ
22612013-02-28 Yao Qi <yao@codesourcery.com>
2262
2263 * tracepoint.c (cmd_qtbuffer): Call phex_nz instead of
2264 pulongest.
2265
e1f58301
JW
22662013-02-27 Jiong Wang <jiwang@tilera.com>
2267
2268 * Makefile.in (clean): Remove reg-tilegx.c, reg-tilegx32.c.
2269 (reg-tilegx32.c): New rule.
2270 * configure.srv (tilegx-*-linux*): Add reg-tilegx32.o to srv_regobj.
2271 * linux-tile-low.c (tile_arch_setup): New function. Invoke
2272 different register info initializer according to elf class.
2273 (init_registers_tilgx32): New function. The tilegx32 register info
2274 initializer.
2275 (tile_fill_gregset): Use "uint_reg_t" to represent register size.
2276 (tile_store_gregset): Likewise.
2277
d171ca78
YQ
22782013-02-27 Yao Qi <yao@codesourcery.com>
2279
2280 * server.c (process_point_options): Print debug message when
2281 debug_threads is true.
2282
282bbdf3
YQ
22832013-02-26 Yao Qi <yao@codesourcery.com>
2284
2285 * tracepoint.c (cmd_qtbuffer): Don't set '\0' in OWN_BUF.
2286
aca22551
PA
22872013-02-19 Pedro Alves <palves@redhat.com>
2288 Kai Tietz <ktietz@redhat.com>
2289
2290 PR gdb/15161
2291
2292 * server.c (handle_query) <CRC check>: Use unpack_varlen_hex
2293 instead of strtoul to extract address from packet.
2294 (process_serial_event) <'z'>: Likewise.
2295
4f3cee1c
YQ
22962013-02-18 Yao Qi <yao@codesourcery.com>
2297
2298 * linux-bfin-low.c (the_low_target): Use NULL instead of 0.
2299
8e1d55a3
PA
23002013-02-14 Pedro Alves <palves@redhat.com>
2301
2302 Plug memory leak.
2303
2304 * tracepoint.c (cmd_qtnotes): Free TRACING_USER_NAME,
2305 TRACING_NOTES and TRACING_STOP_NOTE before clobbering.
2306
458820da
PA
23072013-02-14 Pedro Alves <palves@redhat.com>
2308
2309 * tracepoint.c (cmd_qtdpsrc): Use savestring.
2310
baea0dae
PA
23112013-02-14 Pedro Alves <palves@redhat.com>
2312
2313 * tracepoint.c (save_string): Delete.
2314 (add_tracepoint_action): Use savestring instead of save_string.
2315
0b1afbb3
PA
23162013-02-12 Pedro Alves <palves@redhat.com>
2317
2318 * linux-xtensa-low.c: Ditto.
2319 * xtensa-xtregs.c: Ditto.
2320
8a4ac37e
PA
23212013-02-12 Sanimir Agovic <sanimir.agovic@intel.com>
2322
2323 * thread-db.c (thread_db_get_tls_address): NULL pointer check
2324 thread_db.
2325
148de6bb
MS
23262013-02-07 Marcus Shawcroft <marcus.shawcroft@arm.com>
2327
2328 * linux-aarch64-low.c (aarch64_arch_setup): Clamp
2329 aarch64_num_wp_regs and aarch64_num_bp_regs to
2330 AARCH64_HWP_MAX_NUM and AARCH64_HBP_MAX_NUM respectively.
2331
55fac6e0
MS
23322013-02-07 Marcus Shawcroft <marcus.shawcroft@arm.com>
2333
2334 * linux-aarch64-low.c (ps_get_thread_area): Replace
2335 PTRACE_GET_THREAD_AREA with PTRACE_GETREGSET.
2336
176eb98c
MS
23372013-02-04 Jim MacArthur <jim.macarthur@arm.com>
2338 Marcus Shawcroft <marcus.shawcroft@arm.com>
2339 Nigel Stephens <nigel.stephens@arm.com>
2340 Yufeng Zhang <yufeng.zhang@arm.com>
2341
2342 * Makefile.in (clean): Remove aarch64.c and aarch64-without-fpu.c.
2343 (aarch64.c, aarch64-without-fpu.c): New targets.
2344 * configure.srv (aarch64*-*-linux*): New.
2345 * linux-aarch64-low.c: New file.
2346
56f7af9c
MS
23472013-02-04 Marcus Shawcroft <marcus.shawcroft@arm.com>
2348
43aaf8b6 2349 * linux-low.c (handle_extended_wait, linux_create_inferior)
56f7af9c
MS
2350 (linux_attach_lwp_1, linux_kill_one_lwp, linux_attach_one_lwp)
2351 (dequeue_one_deferred_signal, linux_resume_one_thread)
2352 (fetch_register, linux_write_memory, linux_enable_event_reporting)
2353 (linux_tracefork_grandchild, linux_test_for_tracefork)
2354 (linux_read_offsets, linux_xfer_siginfo, linux_xfer_siginfo): Add
2355 PTRACE_ARG3_TYPE and PTRACE_ARG4_TYPE cast to ptrace arguments
2356 where the argument is 0.
2357
60f662b0
YQ
23582013-01-25 Yao Qi <yao@codesourcery.com>
2359
2360 * event-loop.c: Include "queue.h".
2361 (gdb_event_p): New typedef.
2362 (struct gdb_event) <next_event>: Remove.
2363 (event_queue): Change to QUEUE(gdb_event_p).
2364 (async_queue_event): Remove.
2365 (gdb_event_xfree): New.
2366 (initialize_event_loop): New.
2367 (process_event): Use API from QUEUE.
2368 (wait_for_event): Likewise.
2369 * server.c (main): Call initialize_event_loop.
2370 * server.h (initialize_event_loop): Declare.
2371
5ae4861a
YQ
23722013-01-18 Yao Qi <yao@codesourcery.com>
2373
2374 * ax.h (struct eval_agent_expr_context): New.
2375 (gdb_eval_agent_expr): Update declaration.
2376 * ax.c (gdb_eval_agent_expr): Remove argument REGCACHE and
2377 TFRAME. Add new argument CTX.
2378 * server.h (struct eval_agent_expr_context): Declare.
2379 (agent_mem_read, agent_tsv_read): Update declaration.
2380 (agent_mem_read_string): Likewise.
2381 * tracepoint.c (eval_tracepoint_agent_expr): Remove.
2382 (add_traceframe_block): Add new argument TPOINT.
2383 Increase TPOINT->traceframe_usage.
2384 (do_action_at_tracepoint): Call gdb_eval_agent_expr instead of
2385 eval_tracepoint_agent_expr.
2386 (condition_true_at_tracepoint): Likewise.
2387 (agent_mem_read): Remove argument TFRAME. Add argument CTX.
2388 (agent_mem_read_string, agent_tsv_read): Likewise.
2389
85e00e85
YQ
23902013-01-16 Yao Qi <yao@codesourcery.com>
2391
2392 * linux-low.c (linux_resume_one_lwp): Don't check
2393 'lwp->bp_reinsert != 0'.
2394
4039cf45
JB
23952013-01-07 Joel Brobecker <brobecker@adacore.com>
2396 Pedro Alves <palves@redhat.com>
2397
2398 * lynx-low.c (ptrace_request_to_str): Define a temporary
2399 macro and use it to simplify this function's implementation.
2400
9044dee2
JB
24012013-01-07 Joel Brobecker <brobecker@adacore.com>
2402
2403 * lynx-low.c (lynx_resume): Call perror_with_name if lynx_ptrace
2404 sets errno.
2405
e6352c8f
JB
24062013-01-07 Joel Brobecker <brobecker@adacore.com>
2407
2408 * configure.srv (i[34567]86-*-lynxos*): Set srv_xmlfiles.
2409
50681a27
JB
24102013-01-07 Joel Brobecker <brobecker@adacore.com>
2411
2412 * configure.srv (powerpc-*-lynxos*): Set srv_xmlfiles.
2413
3f6e77ef
JB
24142013-01-07 Joel Brobecker <brobecker@adacore.com>
2415
2416 * lynx-low.c (lynx_resume): Use the resume_info parameter
2417 to determine the ptid for the lynx_ptrace call, unless
2418 it is equal to minus_one_ptid, in which case we use the
2419 ptid of the current_inferior.
2420 (lynx_wait_1): After having received a thread create/exit
2421 event, resume the inferior's execution using the signaling
2422 thread's ptid, rather than the old ptid.
2423
7fda33ae
JB
24242013-01-07 Joel Brobecker <brobecker@adacore.com>
2425
2426 * lynx-low.c (lynx_resume): Delete variable ret.
2427
b9786c74
JB
24282013-01-01 Joel Brobecker <brobecker@adacore.com>
2429
2430 * gdbreplay.c (gdbreplay_version): Update copyright year.
2431 * server.c (gdbserver_version): Likewise.
2432
8b93d60f
JB
24332012-12-17 Joel Brobecker <brobecker@adacore.com>
2434
2435 * lynx-low.c (lynx_wait_1): Add debug trace before adding
2436 new thread.
2437
037335a7
JB
24382012-12-17 Joel Brobecker <brobecker@adacore.com>
2439
2440 * lynx-low.c (ptrace_request_to_str): Add handling for
2441 PTRACE_GETTRACESIG.
2442
52d4cbd8
JB
24432012-12-17 Joel Brobecker <brobecker@adacore.com>
2444
2445 * lynx-low.c (lynx_attach): Delete variable new_process.
2446
ab8f6ca9
JB
24472012-12-17 Joel Brobecker <brobecker@adacore.com>
2448
2449 * lynx-low.c (lynx_create_inferior): Delete variable
2450 new_process.
2451
78cbc024
JB
24522012-12-17 Joel Brobecker <brobecker@adacore.com>
2453
2454 * lynx-low.c (ptrace_request_to_str): Do not handle
2455 PTRACE_GETTHREADLIST if this macro does not exist.
2456
14a00470
YQ
24572012-12-15 Yao Qi <yao@codesourcery.com>
2458
2459 * Makefile.in (OBS): Add notif.o.
2460 * notif.c, notif.h: New.
2461 * server.c: Include "notif.h".
2462 (struct vstop_notif) <next>: Remove.
2463 <base>: New field.
2464 (queue_stop_reply): Update.
2465 (push_event, send_next_stop_reply): Remove.
2466 (discard_queued_stop_replies): Update.
2467 (notif_stop): New variable.
2468 (handle_v_stopped): Remove.
2469 (handle_v_requests): Don't call handle_v_stopped. Call
2470 handle_ack_notif instead.
2471 (queue_stop_reply_callback): Call notif_event_enque instead
2472 of queue_stop_reply.
2473 (handle_status): Don't call send_next_stop_reply, call
2474 notif_write_event instead.
2475 (kill_inferior_callback): Likewise.
2476 (detach_or_kill_inferior_callback): Likewise.
2477 (main): Call initialize_notif.
2478 (process_serial_event): Call QUEUE_is_empty.
2479 (handle_target_event): Call notif_push instead of push event.
2480 * server.h (push_event): Remove declaration.
2481
61c125b9
TT
24822012-12-10 Tom Tromey <tromey@redhat.com>
2483
2484 * Makefile.in (DEPMODE, DEPDIR, depcomp, COMPILE.pre)
2485 (COMPILE.post, COMPILE, POSTCOMPILE, IPAGENT_COMPILE): New
2486 macros.
2487 (.c.o): Rewrite.
2488 (ax-ipa.o, tracepoint-ipa.o, utils-ipa.o, format-ipa.o)
2489 (common-utils-ipa.o, remote-utils-ipa.o, regcache-ipa.o)
2490 (i386-linux-ipa.o, linux-i386-ipa.o, linux-amd64-ipa.o)
2491 (amd64-linux-ipa.o, ax.o): Rewrite.
2492 (event-loop.o, hostio.o, hostio-errno.o, inferiors.o, mem-break.o)
2493 (proc-service.o, regcache.o, remote-utils.o, server.o, target.o)
2494 (thread-db.o, tracepoint.o, utils.o, gdbreplay.o, dll.o): Remove.
2495 (signals.o, linux-procfs.o, linux-ptrace.o, common-utils.o, vec.o)
2496 (gdb_vecs.o, xml-utils.o, linux-osdata.o, ptid.o, buffer.o)
2497 (format.o, agent.o, vasprintf.o, vsnprintf.o): Rewrite.
2498 (i386-low.o, i387-fp.o, linux-low.o, linux-arm-low.o)
2499 (linux-bfin-low.o, linux-cris-low.o, linux-crisv32-low.o)
2500 (linux-ia64-low.o, linux-m32r-low.o, linux-mips-low.o)
2501 (linux-ppc-low.o, linux-s390-low.o, linux-sh-low.o)
2502 (linux-tic6x-low.o, linux-x86-low.o, linux-xtensa-low.o)
2503 (linux-tile-low.o, lynx-low.o, lynx-ppc-low.o, nto-low.o)
2504 (nto-x86-low.o, linux-low.o, win32-low.o, win32-arm-low.o)
2505 (win32-i386-low.o, spu-low.o, reg-arm.o, arm-with-iwmmxt.o)
2506 (arm-with-vfpv2.o, arm-with-vfpv3.o, arm-with-neon.o, reg-bfin.o)
2507 (reg-cris.o, reg-crisv32.o, i386.o, i386-linux.o, i386-avx.o)
2508 (i386-avx-linux.o, i386-mmx.o, i386-mmx-linux.o, reg-ia64.o)
2509 (reg-m32r.o, reg-m68k.o, reg-cf.o, mips-linux.o, mips-dsp-linux.o)
2510 (mips64-linux.o, mips64-dsp-linux.o, powerpc-32.o, powerpc-32l.o)
2511 (powerpc-altivec32l.o, powerpc-cell32l.o, powerpc-vsx32l.o)
2512 (powerpc-isa205-32l.o, powerpc-isa205-altivec32l.o)
2513 (powerpc-isa205-vsx32l.o, powerpc-e500l.o, powerpc-64l.o)
2514 (powerpc-altivec64l.o, powerpc-cell64l.o, powerpc-vsx64l.o)
2515 (powerpc-isa205-64l.o, powerpc-isa205-altivec64l.o)
2516 (powerpc-isa205-vsx64l.o, s390-linux32.o, s390-linux32v1.o)
2517 (s390-linux32v2.o, s390-linux64.o, s390-linux64v1.o)
2518 (s390-linux64v2.o, s390x-linux64.o, s390x-linux64v1.o)
2519 (s390x-linux64v2.o, tic6x-c64xp-linux.o, tic6x-c64x-linux.o)
2520 (tic6x-c62x-linux.o, reg-sh.o, reg-sparc64.o, reg-spu.o, amd64.o)
2521 (amd64-linux.o, amd64-avx.o, amd64-avx-linux.o, x32.o)
2522 (x32-linux.o, x32-avx.o, x32-avx-linux.o, reg-xtensa.o)
2523 (reg-tilegx.o): Remove.
2524 (all_object_files): New macro.
2525 Include .deps files.
2526 * aclocal.m4, configure: Rebuild.
2527 * acinclude.m4: Include depstand.m4, lead-dot.m4.
2528 * configure.ac: Invoke ZW_CREATE_DEPDIR,
2529 ZW_PROG_COMPILER_DEPENDENCIES. Compute GMAKE condition.
2530
e90e9ad9
TT
25312012-12-05 Tom Tromey <tromey@redhat.com>
2532
2533 PR gdb/14917:
2534 * server.h (current_insn_ptr, emit_error): Declare 'extern'.
2535
02d403bf 25362012-11-28 Markus Metzger <markus.t.metzger@intel.com>
945bf713
MM
2537
2538 * configure.ac: Check for linux/perf_event.h.
2539 * config.in: Regenerated.
2540 * configure: Regenerated.
2541
0270a750
PA
25422012-11-26 Maxime Villard <rustyBSD@gmx.fr>
2543
2544 * hostio.c (handle_readlink): Decrease buffer size
2545 parameter passed to readlink by one byte.
2546
8c29b58e
YQ
25472012-11-26 Yao Qi <yao@codesourcery.com>
2548
2549 * configure.ac (build_warnings): Append '-Wempty-body'.
2550 * configure: Regenerated.
2551 * linux-low.c (linux_create_inferior): Use braces for empty 'if'
2552 body.
2553
8bdce1ff
PM
25542012-11-15 Pierre Muller <muller@sourceware.org>
2555
2556 * configure.ac (AC_CHECK_HEADERS): Add wait.h header.
2557 * config.in: Regenerate.
2558 * configure: Regenerate.
2559 * linux-low.c: Use "gdb_stat.h" header instead of <sys/stat.h> header.
2560 Use "gdb_wait.h" header instead of <sys/wait.h> header.
2561 * lynx-low.c: Use "gdb_wait.h" header instead of <sys/wait.h> header.
2562 * remote-utils.c: Use "gdb_stat.h" header instead of <sys/stat.h>
2563 header.
2564 * server.c: Remove HAVE_WAIT_H conditional. Use "gdb_wait.h" header
2565 instead of <sys/wait.h> header.
2566 * spu-low.c: Use "gdb_wait.h" header instead of <sys/wait.h> header.
2567
02d403bf 25682012-11-13 Markus Metzger <markus.t.metzger@intel.com>
3ba6ad0f
MM
2569
2570 * Makefile.in: (INTERNAL_CFLAGS): Add -DGDBSERVER
2571 (various make rules): Remove -DGDBSERVER
2572
fbd5db48
YQ
25732012-11-09 Yao Qi <yao@codesourcery.com>
2574
2575 * spu-low.c (current_ptid): Move it to ..
2576 * gdbthread.h: ... here. New.
2577 * remote-utils.c (read_ptid): Use macro 'current_ptid'.
2578 * server.c (myresume, process_serial_event): Likewise.
2579 * thread-db.c (thread_db_find_new_threads): Likewise.
2580 * tracepoint.c (run_inferior_command): Likewise.
2581
b3dc46ff
AB
25822012-10-01 Andrew Burgess <aburgess@broadcom.com>
2583
2584 * server.c (handle_search_memory_1): Include access length in
2585 warning message.
2586
07c04788
HPN
25872012-09-05 Michael Brandt <michael.brandt@axis.com>
2588
2589 * linux-crisv32-low.c: Fix compile errors.
2590
918d227b
YQ
25912012-09-04 Yao Qi <yao@codesourcery.com>
2592
2593 * tracepoint.c (cmd_qtsv): Adjust debug message.
2594 Don't check CUR_TPOINT.
2595
18c1b81a
YQ
25962012-08-28 Yao Qi <yao@codesourcery.com>
2597
2598 * ax.c, tracepoint.c: Replace ATTR_FORMAT with ATTRIBUTE_PRINTF.
2599 * server.h: Include 'libiberty.h' and 'ansidecl.h'.
2600 (ATTR_NORETURN, ATTR_FORMAT, ATTR_MALLOC): Remove.
2601 Remove declarations of xmalloc, xreallloc, xstrdup and
2602 freeargv.
2603 * Makefile.in (libiberty_h): New.
2604 (server_h): Append dependencies 'libiberty.h' and 'ansidecl.h'.
2605 (linux-bfin-low.o): Append dependency 'libiberty.h'.
2606
dc82f37b
YQ
26072012-08-23 Yao Qi <yao@codesourcery.com>
2608
2609 * server.h: Remove declaration of 'xsnprintf'.
2610
406b1477
KS
26112012-08-22 Keith Seitz <keiths@redhat.com>
2612
2613 * server.h: Include build-gnulib-gbserver/config.h.
2614 * gdbreplay.c: Likewise.
2615
e6712ff1
DE
26162012-08-08 Doug Evans <dje@google.com>
2617
2618 * Makefile.in (SFILES): Add gdb_vecs.c.
2619 (OBS): Add gdb_vecs.o.
2620 (gdb_vecs_h, host_defs_h): New variables.
2621 (thread-db.o): Add $(gdb_vecs_h) dependency.
2622 (gdb_vecs.o): New rule.
2623 * thread-db.c: #include "gdb_vecs.h".
2624 (thread_db_load_search): Use a vector to iterate over path elements.
2625 Handle text appearing after "$pdir".
2626
2627 * configure.ac: Add check for strstr.
2628 * config.in: Regenerate.
2629 * configure: Regenerate.
2630
7c3270ae
UW
26312012-08-02 Ulrich Weigand <ulrich.weigand@linaro.org>
2632
2633 * hostio.c (handle_pread): If pread fails, fall back to attempting
2634 lseek/read.
2635 (handle_pwrite): Likewise for pwrite.
2636
b62e2b27
UW
26372012-08-01 Ulrich Weigand <ulrich.weigand@linaro.org>
2638
2639 * linux-arm-low.c (arm_linux_hw_point_initialize): Distinguish
2640 between unsupported TYPE and unimplementable ADDR/LEN combination.
2641 (arm_insert_point): Act on new return value.
2642
78a99e91
PA
26432012-07-31 Pedro Alves <palves@redhat.com>
2644
2645 * server.c (process_point_options): Only skip tokens if we find
2646 one that is unrecognized. Don't treat 'X' specially while
2647 skipping unrecognized tokens.
2648
fcf303ab
UW
26492012-07-30 Ulrich Weigand <ulrich.weigand@linaro.org>
2650
2651 * linux-arm-low.c (arm_linux_hw_point_initialize): Do not attempt
2652 to 4-byte-align HW breakpoint addresses for Thumb.
2653
7255706c
YQ
26542012-07-27 Yao Qi <yao@codesourcery.com>
2655
2656 PR remote/14161.
2657
2658 * server.h: Declare gdb_agent_about_to_close.
2659 * target.c (kill_inferior): Include "agent.h".
2660 New. Send command 'kill'.
2661 * target.h (kill_inferior): Removed macro.
2662 * tracepoint.c (gdb_agent_about_to_close): New.
2663 (gdb_agent_helper_thread): Handle command 'close'.
2664 Wait endlessly until the inferior stops.
2665 Install gdb_agent_remove_socket to atexit hook.
2666 (agent_socket_name): New static variable.
2667 (gdb_agent_socket_init): Replace local variable 'name' with
2668 'agent_socket_name'.
2669 (gdb_agent_remove_socket): New.
2670
5a3f286f
YQ
26712012-07-27 Yao Qi <yao@codesourcery.com>
2672
2673 * server.c (process_point_options): Stop at 'X' when parsing.
2674
961bd387
ME
26752012-07-19 Michael Eager <eager@eagercon.com>
2676
a261b8f5 2677 * i386-low.c (Z_packet_to_hw_type): Add Z_PACKET_HW_BP, translate
961bd387
ME
2678 to hw_execute.
2679 * linux-x86-low.c (x86_insert_point, x86_remove_point):
2680 Call i386_low_insert_watchpoint, i386_low_remove_watchpoint to add/del
2681 hardware breakpoint.
2682
aa7c7447
JK
26832012-07-07 Jan Kratochvil <jan.kratochvil@redhat.com>
2684
2685 * gdbserver/linux-low.c (initialize_low): Call
2686 linux_ptrace_init_warnings.
2687
7f216e7c
DE
26882012-07-02 Doug Evans <dje@google.com>
2689
2690 * mem-break.c (gdb_no_commands_at_breakpoint): Fix cast from
2691 pointer to int.
2692
d3ce09f5
SS
26932012-07-02 Stan Shebs <stan@codesourcery.com>
2694
2695 * Makefile.in (WARN_CFLAGS_NO_FORMAT): Define.
2696 (ax.o): Add it to build rule.
2697 (ax-ipa.o): Ditto.
2698 (OBS): Add format.o.
2699 (IPA_OBS): Add format.o.
2700 * server.c (handle_query): Claim support for breakpoint commands.
2701 (process_point_options): Add command case.
2702 (process_serial_event): Leave running if there are printfs in
2703 effect.
2704 * mem-break.h (any_persistent_commands): Declare.
2705 (add_breakpoint_commands): Declare.
2706 (gdb_no_commands_at_breakpoint): Declare.
2707 (run_breakpoint_commands): Declare.
2708 * mem-break.c (struct point_command_list): New struct.
2709 (struct breakpoint): New field command_list.
2710 (any_persistent_commands): New function.
2711 (add_commands_to_breakpoint): New function.
2712 (add_breakpoint_commands): New function.
2713 (gdb_no_commands_at_breakpoint): New function.
2714 (run_breakpoint_commands): New function.
2715 * linux-low.c (linux_wait_1): Test for and run breakpoint commands
2716 locally.
2717 * ax.c: Include format.h.
2718 (ax_printf): New function.
2719 (gdb_eval_agent_expr): Add printf opcode.
2720
2f8f6aed
YQ
27212012-06-13 Yao Qi <yao@codesourcery.com>
2722
2723 * server.c (start_inferior): Remove duplicated writes to fields
2724 'last_resume_kind' and 'last_status' of 'current_inferior'.
2725
0c9070b3
YQ
27262012-06-12 Yao Qi <yao@codesourcery.com>
2727 Pedro Alves <palves@redhat.com>
2728
2729 * linux-low.c (linux_set_resume_request): Simplify predicate. Add
2730 comment.
2731 * server.c (handle_v_cont): Extend comment.
2732
c52daf70
YQ
27332012-06-11 Yao Qi <yao@codesourcery.com>
2734
2735 * linux-low.c (linux_attach): Add 'static'.
2736
d38bbb0a
YQ
27372012-06-06 Yao Qi <yao@codesourcery.com>
2738
2739 * ax.c (gdb_eval_agent_expr): Print `top' in hex.
2740
89dc0afd
JK
27412012-06-01 Jan Kratochvil <jan.kratochvil@redhat.com>
2742
2743 Fix gcc -flto compilation warning.
2744 * server.c (main): Make variable multi_mode and attach volatile.
2745
75f62ce7
TJB
27462012-05-30 Thiago Jung Bauermann <thiago.bauermann@linaro.org>
2747
2748 * linux-low.c (get_r_debug): Disable code using DT_MIPS_RLD_MAP
2749 if the platform doesn't know about it.
2750
65f479b6
PA
27512012-05-30 Jeff Kenton <jkenton@tilera.com>
2752
2753 * Makefile.in (SFILES): Add linux-tile-low.c.
2754 (linux-tile-low.o, reg-tilegx.o, reg-tilegx.c): New rules.
2755 * configure.srv: Handle tilegx-*-linux*.
2756 * linux-tile-low.c: New file.
2757
0c5bf5a9
JK
27582012-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
2759
2760 * linux-low.c (linux_qxfer_libraries_svr4): Return -1 if R_DEBUG is -1.
2761
a493e3e2
PA
27622012-05-24 Pedro Alves <palves@redhat.com>
2763
2764 PR gdb/7205
2765
43aaf8b6 2766 Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout.
a493e3e2 2767
2ea28649
PA
27682012-05-24 Pedro Alves <palves@redhat.com>
2769
2770 PR gdb/7205
2771
2772 Replace target_signal with gdb_signal throughout.
2773
8d409d16
MR
27742012-05-22 Maciej W. Rozycki <macro@codesourcery.com>
2775
2776 * linux-low.c (linux_store_registers): Avoid the copying sequence
2777 when no data has been retrieved by ptrace.
2778
23512c01
MGD
27792012-05-22 Will Deacon <will.deacon@arm.com>
2780
2781 * linux-low (__UCLIBC__ && !(__UCLIBC_HAS_MMU__ || __ARCH_HAS_MMU__)):
2782 Include asm/ptrace.h.
2783 (PT_TEXT_ADDR, PT_DATA_ADDR, PT_TEXT_END_ADDR): Define only if not
2784 already defined.
2785
4934b29e
MR
27862012-05-21 Maciej W. Rozycki <macro@codesourcery.com>
2787
2788 * linux-low.c (linux_store_registers): Don't re-retrieve data
2789 with ptrace that has already been obtained from /proc. Always
2790 copy any data retrieved with ptrace to the buffer supplied.
2791
bde24c0a
PA
27922012-05-11 Yao Qi <yao@codesourcery.com>
2793 Pedro Alves <palves@redhat.com>
2794
2795 * linux-low.c (enum stopping_threads_kind): New.
2796 (stopping_threads): Change type to `enum stopping_threads_kind'.
2797 (handle_extended_wait): If stopping and suspending threads, leave
2798 the new_lwp suspended too.
2799 (linux_wait_for_event): Adjust.
2800 (stop_all_lwps): Set `stopping_threads' to
2801 STOPPING_AND_SUSPENDING_THREADS or STOPPING_THREADS depending on
2802 whether we're suspending threads or just stopping them. Assert no
2803 recursion happens.
2804
623b6bdf
YQ
28052012-04-29 Yao Qi <yao@codesourcery.com>
2806
2807 * server.h: Move some code to ...
2808 * gdbthread.h: ... here. New.
2809 * Makefile.in (inferiors.o, regcache.o): Depends on gdbthread.h
2810 (remote-utils.o, server.o, target.o tracepoint.o): Likewise.
2811 (nto-low.o, win32-low.o): Likewise.
2812 * inferiors.c, linux-low.h, nto-low.c: Include gdbthread.h.
2813 * regcache.c, remote-utils.c, server.c: Likewise.
2814 * target.c, tracepoint.c, win32-low.c: Likewise.
2815
f15f9948
TJB
28162012-04-24 Thiago Jung Bauermann <thiago.bauermann@linaro.org>
2817
2818 * linux-low.h (PTRACE_ARG3_TYPE): Move macro from linux-low.c.
2819 (PTRACE_ARG4_TYPE): Likewise.
2820 (PTRACE_XFER_TYPE): Likewise.
2821 * linux-arm-low.c (arm_prepare_to_resume): Cast third argument of
2822 ptrace to PTRACE_ARG3_TYPE.
2823 * linux-low.c (PTRACE_ARG3_TYPE): Move macro to linux-low.h.
2824 (PTRACE_ARG4_TYPE): Likewise.
2825 (PTRACE_XFER_TYPE): Likewise.
2826 (linux_detach_one_lwp): Cast fourth argument of
2827 ptrace to long then PTRACE_ARG4_TYPE.
2828 (regsets_fetch_inferior_registers): Cast third argument of
2829 ptrace to long then PTRACE_ARG3_TYPE.
2830 (regsets_store_inferior_registers): Likewise.
2831
38ea300a
PA
28322012-04-20 Pedro Alves <palves@redhat.com>
2833
2834 * configure: Regenerate.
2835
c971b7fa
PA
28362012-04-19 Pedro Alves <palves@redhat.com>
2837
43aaf8b6 2838 * Makefile.in (GNULIB_BUILDDIR): New.
c971b7fa 2839 (LIBGNU, INCGNU, GNULIB_H): Adjust.
43aaf8b6
PA
2840 (SUBDIRS, CLEANDIRS, REQUIRED_SUBDIRS): New.
2841 (all, install-only, uninstall, clean-info, all-lib, clean): No
2842 longer pass GNULIB_FLAGS_TO_PASS. Use subdir_do.
2843 (maintainer-clean realclean distclean): Use subdir_do.
2844 (subdir_do): New.
2845 (gnulib/import/Makefile): Adjust. Replace gnulib/import with
c971b7fa 2846 $(GNULIB_BUILDDIR). Don't pass argument to config.status.
43aaf8b6
PA
2847 * acinclude.m4: Include acx_configure_dir.m4.
2848 * configure.ac: Remove gl_EARLY, gl_INIT, and AM_INIT_AUTOMAKE
2849 calls. Call AC_PROG_RANLIB. Configure gnulib using
2850 ACX_CONFIGURE_DIR.
2851 (GNULIB): New.
2852 (GNULIB_STDINT_H): Adjust.
2853 (AC_OUTPUT): Don't output gnulib/Makefile anymore.
2854 * gdbreplay.c: Include build-gnulib/config.h.
2855 * server.h: Likewise.
2856 * aclocal.m4: Regenerate.
2857 * config.in: Regenerate.
2858 * configure: Regenerate.
c971b7fa 2859
809277f8
PA
28602012-04-19 Pedro Alves <palves@redhat.com>
2861
2862 * Makefile.in (LIBGNU, INCGNU): Adjust.
2863 (GNULIB_FLAGS_TO_PASS, GNULIB_H): Adjust.
2864 (all, install-only, uninstall, clean-info, all-lib, clean)
2865 (maintainer-clean, Makefile, gnulib/Makefile): Adjust.
2866 * configure.ac: Adjust AC_OUTPUT output.
2867 * aclocal.m4: Regenerate.
2868 * configure: Regenerate.
2869
fd9bb8b8
PA
28702012-04-19 Pedro Alves <palves@redhat.com>
2871
2872 * Makefile.in (generated_files): New.
2873 (server_h): Remove the explicit dependency on config.h, and depend
2874 on $generated_files.
2875
1c298c66
PA
28762012-04-19 Pedro Alves <palves@redhat.com>
2877
2878 * Makefile.in (INCGNU): Add -Ignulib.
2879
57c4b50b
PA
28802012-04-19 Pedro Alves <palves@redhat.com>
2881
2882 * Makefile.in (GNULIB_INCLUDE_DIR): Rename to ...
2883 (INCGNU): ... this, and spell out -I here.
2884 (GNULIB_LIB): Rename to ...
2885 (LIBGNU): ... this.
2886 (INCLUDE_CFLAGS, gdbserver$(EXEEXT), $(GNULIB_LIB) rule): Adjust.
2887
1030e047
PA
28882012-04-19 Pedro Alves <palves@redhat.com>
2889
2890 * config.in: Regenerate.
2891
447d4319
PA
28922012-04-19 Pedro Alves <palves@redhat.com>
2893
2894 * configure.ac: Remove AC_CHECK_DECLS check for memmem.
2895 * server.h (memmem): Remove declaration.
2896 * config.in: Regenerate.
2897 * configure: Regenerate.
2898
aad9eab9
YQ
28992012-04-19 Yao Qi <yao@codesourcery.com>
2900
2901 * Makefile.in (SFILES): Add common/vec.c.
2902 (OBS): Add vec.o.
2903 (vec.o): New rule.
2904
3e10640f
YQ
29052012-04-19 Yao Qi <yao@codesourcery.com>
2906
2907 * remote-utils.c (prepare_resume_reply): Replace with macro
2908 target_core_of_thread.
2909 * server.c (handle_qxfer_threads_proper): Likewise.
2910 * target.h (traget_core_of_thread): New macro.
2911
71622373
PA
29122012-04-18 Pedro Alves <palves@redhat.com>
2913
2914 * aclocal.m4: Regenerate.
2915 * configure: Regenerate.
2916
80d26939
YQ
29172012-04-16 Yao Qi <yao@codesourcery.com>
2918
2919 * tracepoint.c (cmd_qtstart): Download tracepoints even when they are
2920 duplicated on address.
2921
42476b70
YQ
29222012-04-16 Yao Qi <yao@codesourcery.com>
2923
2924 * tracepoint.c (COPY_FIELD_TO_BUF): New macro.
2925 (struct tracepoint_action_ops) <send>: New field.
2926 (m_tracepoint_action_send, r_tracepoint_action_send): New.
2927 (agent_expr_send, x_tracepoint_action_send): New.
2928 (l_tracepoint_action_send): New.
2929 (cmd_qtdp): Download and install tracepoint
2930 according to `use_agent'.
2931 (run_inferior_command): Add one more parameter `len'.
2932 Update callers.
2933 (tracepoint_send_agent): New.
2934 (cmd_qtdp, cmd_qtstart): Call tracepoint_send_agent.
2935
7bc83639
YQ
29362012-04-16 Yao Qi <yao@codesourcery.com>
2937
2938 * tracepoint.c (download_tracepoints): Moved to ...
2939 (cmd_qtstart): ... here.
2940
5f18041e
YQ
29412012-04-14 Yao Qi <yao@codesourcery.com>
2942
2943 * tracepoint.c: Include inttypes.h.
2944 (struct collect_memory_action): Use sized types.
2945 (struct tracepoint): Likewise.
2946 (cmd_qtdp, stop_tracing): Update print specifiers.
2947 (cmd_qtp, response_tracepoint): Likewise.
2948 (collect_data_at_tracepoint): Likewise.
2949 (collect_data_at_step): Likewise.
2950
55a8c076
YQ
29512012-04-14 Yao Qi <yao@codesourcery.com>
2952
2953 Import gnulib module inttypes.
2954 * aclocal.m4, config.in, configure: Regenerated.
2955
dc750257
YQ
29562012-04-14 Yao Qi <yao@codesourcery.com>
2957
2958 * Makefile.in (maintainer-clean, realclean, distclean): Remove
2959 Makefile and config.status at last.
2960
0ab5faf9
YQ
29612012-04-13 Yao Qi <yao@codesourcery.com>
2962
2963 * tracepoint.c: Include stdint.h unconditionally.
2964
18f5fd81
TJB
29652012-04-13 Thiago Jung Bauermann <thiago.bauermann@linaro.org>
2966
2967 * acinclude.m4 (GDBSERVER_HAVE_THREAD_DB_TYPE): New macro based
2968 on BFD_HAVE_SYS_PROCFS_TYPE.
2969 * configure.ac: Look for lwpid_t and psaddr_t in libthread_db.h.
2970 * configure: Regenerate.
2971 * config.in: Likewise.
2972
4d47af5c
L
29732012-04-13 H.J. Lu <hongjiu.lu@intel.com>
2974
2975 * Makefile.in (clean): Also remove x32.c x32-linux.c
2976 x32-avx.c x32-avx-linux.c.
2977 (x32.o): New target.
2978 (x32.c): Likewise.
2979 (x32-linux.o): Likewise.
2980 (x32-linux.c): Likewise.
2981 (x32-avx.o): Likewise.
2982 (x32-avx.c): Likewise.
2983 (x32-avx-linux.o): Likewise.
2984 (x32-avx-linux.c): Likewise.
2985
2986 * configure.srv (srv_amd64_regobj): Add x32.o x32-avx.o.
2987 (srv_amd64_linux_regobj): Add x32-linux.o x32-avx-linux.o.
2988 (srv_i386_64bit_xmlfiles): Add i386/x32-core.xml.
2989 (srv_amd64_xmlfiles): Add i386/x32.xml i386/x32-avx.xml.
2990 (srv_amd64_linux_xmlfiles): Add i386/x32-linux.xml
2991 i386/x32-avx-linux.xml.
2992
2993 * linux-x86-low.c (init_registers_x32_linux): New prototype.
2994 (init_registers_x32_avx_linux): Likwise.
2995 (x86_linux_update_xmltarget): Call init_registers_x32_linux
2996 or init_registers_x32_avx_linux if linux_is_elf64 is false.
2997
ecedbe58
PA
29982012-04-13 Pedro Alves <palves@redhat.com>
2999
3000 * Makefile.in (GNULIB_FLAGS_TO_PASS): New.
3001 (FLAGS_TO_PASS): Don't change or set $top_srcdir, $srcdir and VPATH.
3002 (all, uninstall, clean-info, all-lib, clean, maintainer-clean)
3003 (realclean, distclean): Explicitly pass $GNULIB_FLAGS_TO_PASS to
3004 the sub-make.
3005
c92b5177
L
30062012-04-12 H.J. Lu <hongjiu.lu@intel.com>
3007
3008 * linux-x86-low.c (compat_x32_clock_t): New.
3009 (compat_x32_siginfo_t): Likewise.
3010 (compat_x32_siginfo_from_siginfo): Likewise.
3011 (siginfo_from_compat_x32_siginfo): Likewise.
3012 (linux_is_elf64): Likewise.
3013 (x86_siginfo_fixup): Call compat_x32_siginfo_from_siginfo
3014 and siginfo_from_compat_x32_siginfo for x32.
3015 (x86_arch_setup): Set linux_is_elf64.
3016
214d508e
L
30172012-04-12 H.J. Lu <hongjiu.lu@intel.com>
3018
3019 PR gdb/13969
3020 * linux-low.c (linux_pid_exe_is_elf_64_file): Also return the
3021 e_machine field.
3022 (linux_qxfer_libraries_svr4): Update call to elf_64_file_p.
3023 * linux-low.h (linux_pid_exe_is_elf_64_file): Updated.
3024 * linux-x86-low.c (x86_arch_setup): Check if GDBserver is
3025 compatible with process.
3026
c9a1864a
YQ
30272012-04-12 Yao Qi <yao@codesourcery.com>
3028
3029 * Makefile.in: Define abs_top_srcdir and abs_srcdir.
3030 (INCLUDE_CFLAGS): Append GNULIB_INCLUDE_DIR.
3031 (install-only, install-info, clean): Handle sub dir gnulib.
3032 (all-lib, am--refresh): New targets.
3033 (memmem.o): Remove target.
3034 * configure.ac: Remove AC_CONFIG_LIBOBJ_DIR.
3035 Invoke gl_EARLY. Invoke AC_CHECK_PROGS for make.
3036 (AC_REPLACE_FUNCS): Remove memmem.
3037 Invoke gl_INIT and AM_INIT_AUTOMAKE.
3038 (AC_OUTPUT): Generate Makefile in gnulib/.
3039 * aclocal.m4, config.in, configure: Regenerated.
3040
367ba2c2
MR
30412012-04-10 Maciej W. Rozycki <macro@codesourcery.com>
3042
3043 * linux-low.c (get_r_debug): Handle DT_MIPS_RLD_MAP.
3044
9d236627
PA
30452012-04-05 Pedro Alves <palves@redhat.com>
3046
3047 -Werror=strict-aliasing
3048
3049 * spu-low.c (parse_spufs_run): Avoid dereferencing type-punned
3050 pointer.
3051
111217b3
PA
30522012-04-04 Pedro Alves <palves@redhat.com>
3053
3054 * linux-sparc-low.c (sparc_fill_gregset_to_stack)
3055 (sparc_store_gregset_from_stack, sparc_store_gregset)
3056 (sparc_breakpoint_at): Fix formatting.
3057
8365dcf5
TJB
30582012-03-30 Thiago Jung Bauermann <thiago.bauermann@linaro.org>
3059
3060 * configure.ac: Check whether Elf32_auxv_t and Elf64_auxv_t
3061 are available.
3062 * linux-low.c [HAVE_ELF32_AUXV_T] (Elf32_auxv_t): Add typedef.
3063 [HAVE_ELF64_AUXV_T] (Elf64_auxv_t): Likewise.
3064 * config.in: Regenerate.
3065 * configure: Likewise.
3066
689cc2ae
PA
30672012-03-29 Pedro Alves <palves@redhat.com>
3068
3069 * linux-low.c (regsets_store_inferior_registers) [__sparc__]:
3070 Correct ptrace arguments.
3071
c14dfd32
PA
30722012-03-28 Pedro Alves <palves@redhat.com>
3073
3074 * linux-ia64-low.c (ia64_regmap): Map IA64_EC_REGNUM to PT_AR_EC.
3075 (IA64_GR0_REGNUM, IA64_FR0_REGNUM)
3076 (IA64_FR1_REGNUM): New defines.
3077 (ia64_fetch_register): New.
3078 (the_low_target): Install it.
3079 * linux-low.h (struct linux_target_ops) <fetch_register>: New
3080 field.
3081 * linux-low.c (linux_fetch_registers): Try the
3082 the_low_target.fetch_register hook first.
3083
3084 * linux-arm-low.c (the_low_target): Adjust.
3085 * linux-bfin-low.c (the_low_target): Adjust.
3086 * linux-cris-low.c (the_low_target): Adjust.
3087 * linux-crisv32-low.c (the_low_target): Adjust.
3088 * linux-m32r-low.c (the_low_target): Adjust.
3089 * linux-m68k-low.c (the_low_target): Adjust.
3090 * linux-mips-low.c (the_low_target): Adjust.
3091 * linux-ppc-low.c (the_low_target): Adjust.
3092 * linux-s390-low.c (the_low_target): Adjust.
3093 * linux-sh-low.c (the_low_target): Adjust.
3094 * linux-sparc-low.c (the_low_target): Adjust.
3095 * linux-tic6x-low.c (the_low_target): Adjust.
3096 * linux-x86-low.c (the_low_target): Adjust.
3097 * linux-xtensa-low.c (the_low_target): Adjust.
3098
63c88e13
PA
30992012-03-26 Pedro Alves <palves@redhat.com>
3100
3101 * server.c (handle_qxfer_libraries): Don't bail early if
3102 the_target->qxfer_libraries_svr4 is not NULL.
3103
fb723180
PA
31042012-03-26 Pedro Alves <palves@redhat.com>
3105
3106 * linux-low.c (linux_qxfer_libraries_svr4): Fix pasto in comment.
3107
0afae3cf
PA
31082012-03-23 Pedro Alves <palves@redhat.com>
3109
3110 * linux-low.c (linux_qxfer_libraries_svr4): Terminate the
3111 "library-list-svr4" element's start tag when the the DSO list is
3112 empty.
3113
485f1ee4
PA
31142012-03-23 Pedro Alves <palves@redhat.com>
3115
3116 * linux-low.c (read_one_ptr): Read the inferior's pointer through
3117 a variable whose type size is the same as the inferior's pointer
3118 size.
3119
a5362b9a
TS
31202012-03-21 Thomas Schwinge <thomas@codesourcery.com>
3121
3122 * linux-arm-low.c (arm_stopped_by_watchpoint): Use siginfo_t instead of
3123 struct siginfo.
3124 * linux-low.c (siginfo_fixup, linux_xfer_siginfo): Likewise.
3125 * linux-x86-low.c (x86_siginfo_fixup): Likewise.
3126 * linux-low.h: Include <signal.h>.
3127 (struct siginfo): Remove forward declaration.
3128 (struct linux_target_ops) <siginfo_fixup>: Use siginfo_t instead of
3129 struct siginfo.
3130
d226c142
MF
31312012-03-21 Mike Frysinger <vapier@gentoo.org>
3132
3133 * .gitignore: Ignore more files.
3134
122f36ef
PA
31352012-03-19 Pedro Alves <palves@redhat.com>
3136 Jan Kratochvil <jan.kratochvil@redhat.com>
3137
3138 * server.c (cont_thread, general_thread): Add describing comments.
3139 (start_inferior): Clear `cont_thread'.
3140 (handle_v_cont): Don't set `cont_thread' if resuming all threads
3141 of a process.
3142
fc3e5175
YQ
31432012-03-15 Yao Qi <yao@codesourcery.com>
3144
3145 * tracepoint.c (install_tracepoint): Move duplicated tracepoint
3146 handling to ...
3147 (cmd_qtdp): ... here.
3148
8d0d92cd
YQ
31492012-03-15 Yao Qi <yao@codesourcery.com>
3150
3151 * tracepoint.c (struct tracepoint_action_ops): New.
3152 (struct tracepoint_action) [!IN_PROCESS_AGENT] <ops>: New field.
3153 (m_tracepoint_action_download): New.
3154 (r_tracepoint_action_download): New.
3155 (x_tracepoint_action_download): New.
3156 (l_tracepoint_action_download): New.
3157 (add_tracepoint_action): Install `action->ops' according type.
3158 (download_tracepoint_1): Move code `download' function pointer
3159 of various tracepoint_action_ops.
3160
87b0bb13
JK
31612012-03-13 Jan Kratochvil <jan.kratochvil@redhat.com>
3162
3163 * linux-low.c (linux_attach_lwp_1): New variable buffer. Call
3164 linux_ptrace_attach_warnings.
3165
5f572dec
JK
31662012-03-13 Jan Kratochvil <jan.kratochvil@redhat.com>
3167
3168 * Makefile.in (linux-ptrace.o): New.
3169 * configure.srv (arm*-*-linux*, bfin-*-*linux*, crisv32-*-linux*)
3170 (cris-*-linux*, i[34567]86-*-linux*, ia64-*-linux*, m32r*-*-linux*)
3171 (m68*-*-linux*, m68*-*-uclinux*, mips*-*-linux*, powerpc*-*-linux*)
3172 (s390*-*-linux*, sh*-*-linux*, sparc*-*-linux*, tic6x-*-uclinux)
3173 (x86_64-*-linux*, xtensa*-*-linux*): Add linux-ptrace.o to SRV_TGTOBJ
3174 of these targets.
3175 * linux-low.c (linux_attach_lwp_1): Remove redundent else clause.
3176
f4647387
YQ
31772012-03-08 Yao Qi <yao@codesourcery.com>
3178 Pedro Alves <palves@redhat.com>
3179
3180 Fix PR server/13392.
3181 * linux-x86-low.c (amd64_install_fast_tracepoint_jump_pad): Check
3182 offset of JMP insn.
3183 * tracepoint.c (remove_tracepoint): New.
3184 (cmd_qtdp): Call remove_tracepoint when failed to install.
3185
9b224c5e
PA
31862012-03-07 Pedro Alves <palves@redhat.com>
3187
3188 * linux-low.c (get_detach_signal): New.
3189 (linux_detach_one_lwp): Get rid of a pending SIGSTOP with SIGCONT.
3190 Pass on pending signals to PTRACE_DETACH. Check the result of the
3191 ptrace call.
3192 * server.c (program_signals, program_signals_p): New.
3193 (handle_general_set): Handle QProgramSignals.
3194 * server.h (program_signals, program_signals_p): Declare.
3195
e237a7e2
JK
31962012-03-05 Pedro Alves <palves@redhat.com>
3197 Jan Kratochvil <jan.kratochvil@redhat.com>
3198
3199 * linux-low.c (get_dynamic): Don't warn when PT_PHDR isn't found.
3200 New comment why.
3201
5808517f
YQ
32022012-03-03 Yao Qi <yao@codesourcery.com>
3203
3204 * tracepoint.c (tracepoint_look_up_symbols): Update call to
3205 agent_look_up_symbols.
3206
58b4daa5
YQ
32072012-03-03 Yao Qi <yao@codesourcery.com>
3208
3209 * Makefile.in (linux-low.o): Keep dependence on agent.h.
3210 (linux-x86-low.o): Likewise.
3211 * server.h: Remove in_process_agent_loaded.
3212 * tracepoint.c (in_process_agent_loaded): Removed. Moved it
3213 common/agent.c.
3214 Update callers.
3215
8ffcbaaf
YQ
32162012-03-03 Yao Qi <yao@codesourcery.com>
3217
3218 * tracepoint.c (gdb_agent_capability): New global.
3219 (in_process_agent_loaded_ust): Renamed to
3220 `in_process_agent_supports_ust'.
3221 Update callers.
3222 (in_process_agent_supports_ust): Call agent_capability_check.
3223 (clear_installed_tracepoints): Assert that agent supports
3224 agent.
3225
d1feda86
YQ
32262012-03-03 Yao Qi <yao@codesourcery.com>
3227
3228 * linux-low.c (linux_supports_agent): New.
3229 (linux_target_ops): Initialize field `supports_agent' with
3230 linux_supports_agent.
3231 * target.h (struct target_ops) <supports_agent>: New.
3232 (target_supports_agent): New macro.
3233 * server.c (handle_general_set): Handle packet 'QAgent'.
3234 (handle_query): Send `QAgent+'.
3235 * Makefile.in (server.o): Depends on agent.h.
3236
2fa291ac
YQ
32372012-03-03 Yao Qi <yao@codesourcery.com>
3238
3239 * Makefile.in (OBS): Add agent.o.
3240 Add new rule for agent.o.
3241 Track dependence of tracepoint.c on agent.h.
3242 * tracepoint.c (run_inferior_command_1):
3243 (run_inferior_command): Call agent_run_command.
3244 (gdb_ust_connect_sync_socket): Deleted. Move it to
3245 common/agent.c.
3246 (resume_thread, stop_thread): Likewise.
3247 (gdb_ust_socket_init): Renamed to ...
3248 (gdb_agent_socket_init): ... New.
3249 (gdb_ust_thread): Renamed to ...
3250 (gdb_agent_helper_thread): ... New.
3251 (gdb_ust_init): Move some code to ...
3252 (gdb_agent_init): ... here. New.
3253 [HAVE_UST]: Call gdb_ust_init.
3254 (initialize_tracepoint_ftlib): Call gdb_agent_init.
3255 * configure.ac: Add `sys/un.h' to AC_CHECK_HEADERS.
3256 * config.in, configure: Regenerated.
3257
05044653
PA
32582012-03-02 Pedro Alves <palves@redhat.com>
3259
3260 * inferiors.c (add_pid_to_list, pull_pid_from_list): Delete.
3261 * linux-low.c (struct simple_pid_list): New.
3262 (stopped_pids): New a struct simple_pid_list pointer.
3263 (add_to_pid_list, pull_pid_from_list): New.
3264 (handle_extended_wait): Don't assume the first signal new children
3265 report is SIGSTOP. Adjust call to pull_pid_from_list.
3266 (linux_wait_for_lwp): Adjust.
3267
8d00225b
YQ
32682012-03-02 Yao Qi <yao@codesourcery.com>
3269
3270 * tracepoint.c (do_action_at_tracepoint): Write `stop_pc' in
3271 debug log.
3272
19560ba5
YQ
32732012-03-02 Yao Qi <yao@codesourcery.com>
3274
3275 * tracepoint.c (collect_ust_data_at_tracepoint): Remove parameters
3276 `stop_pc' and `tpoint'. Update caller.
3277
1faeff08
MR
32782012-03-01 Maciej W. Rozycki <macro@codesourcery.com>
3279
3280 * linux-low.h (linux_target_ops): Add regset_bitmap member.
3281 * linux-low.c (use_linux_regsets): New macro.
3282 [!HAVE_LINUX_REGSETS] (regsets_fetch_inferior_registers): Likewise.
3283 [!HAVE_LINUX_REGSETS] (regsets_store_inferior_registers): Likewise.
3284 (linux_register_in_regsets): New function.
3285 (usr_fetch_inferior_registers): Skip registers covered by
3286 regsets.
3287 (usr_store_inferior_registers): Likewise.
3288 (usr_fetch_inferior_registers): New macro.
3289 (usr_store_inferior_registers): Likewise.
3290 (linux_fetch_registers): Handle mixed regset/non-regset targets.
3291 (linux_store_registers): Likewise.
3292 * linux-mips-low.c (init_registers_mips_dsp_linux): New
3293 prototype.
3294 (init_registers_mips64_dsp_linux): Likewise.
3295 (init_registers_mips_linux): New macro.
3296 (init_registers_mips_dsp_linux): Likewise.
3297 (mips_dsp_num_regs): Likewise.
3298 (DSP_BASE, DSP_CONTROL): New fallback macros.
3299 (mips_base_regs): New macro.
3300 (mips_regmap): Use it. Fix the size.
3301 (mips_dsp_regmap): New variable.
3302 (mips_dsp_regset_bitmap): Likewise.
3303 (mips_arch_setup): New function.
3304 (mips_cannot_fetch_register): Use the_low_target.regmap rather
3305 than mips_regmap.
3306 (mips_cannot_store_register): Likewise.
3307 (the_low_target): Update .arch_setup, .num_regs and .regmap
3308 initializers. Add .regset_bitmap initializer.
3309 * linux-arm-low.c (the_low_target): Add .regset_bitmap
3310 initializer.
3311 * linux-bfin-low.c (the_low_target): Likewise.
3312 * linux-cris-low.c (the_low_target): Likewise.
3313 * linux-crisv32-low.c (the_low_target): Likewise.
3314 * linux-ia64-low.c (the_low_target): Likewise.
3315 * linux-m32r-low.c (the_low_target): Likewise.
3316 * linux-m68k-low.c (the_low_target): Likewise.
3317 * linux-ppc-low.c (the_low_target): Likewise.
3318 * linux-s390-low.c (the_low_target): Likewise.
3319 * linux-sh-low.c (the_low_target): Likewise.
3320 * linux-sparc-low.c (the_low_target): Likewise.
3321 * linux-tic6x-low.c (the_low_target): Likewise.
3322 * linux-x86-low.c (the_low_target): Likewise.
3323 * linux-xtensa-low.c (the_low_target): Likewise.
3324 * configure.srv <mips*-*-linux*>: Add mips-dsp-linux.o and
3325 mips64-dsp-linux.o to srv_regobj. Add mips-dsp-linux.xml,
3326 mips64-dsp-linux.xml, mips-dsp.xml and mips64-dsp.xml to
3327 srv_xmlfiles.
3328 * Makefile.in (mips-dsp-linux.o, mips-dsp-linux.c): New targets.
3329 (mips64-dsp-linux.o, mips64-dsp-linux.c): Likewise.
3330
c03e6ccc
YQ
33312012-02-29 Yao Qi <yao@codesourcery.com>
3332 Pedro Alves <palves@redhat.com>
3333
3334 * linux-low.c: (linux_wait_1): Call unsuspend_all_lwps when
3335 `step_over_finished' is true.
3336
644cebc9
PA
33372012-02-27 Pedro Alves <palves@redhat.com>
3338
3339 * linux-low.c (pid_is_stopped): Delete, moved to common/.
3340 (linux_attach_lwp_1): Adjust to use linux_proc_pid_is_stopped.
3341
c14d7ab2
PA
33422012-02-27 Pedro Alves <palves@redhat.com>
3343
3344 PR server/9684
3345 * linux-low.c (pid_is_stopped): New.
3346 (linux_attach_lwp_1): Handle attaching to 'T (stopped)' processes.
3347
412c89dd
LM
33482012-02-25 Luis Machado <lgustavo@codesourcery.com>
3349
3350 * mem-break.c (clear_gdb_breakpoint_conditions): Fix de-allocation
3351 of conditions.
3352
b745defe
MR
33532012-02-24 Maciej W. Rozycki <macro@codesourcery.com>
3354
3355 * linux-mips-low.c (mips_regmap): Correct the index of $f9.
3356
9f3a5c85
LM
33572012-02-24 Luis Machado <lgustavo@codesourcery>
3358
3359 * server.c (handle_query): Advertise support for target-side
3360 breakpoint condition evaluation.
3361 (process_point_options): New function.
3362 (process_serial_event): When inserting a breakpoint, check for
3363 a target-side condition that should be evaluated.
3364
3365 * mem-break.c: Include regcache.h and ax.h.
3366 (point_cond_list_t): New data structure.
3367 (breakpoint) <cond_list>: New field.
3368 (find_gdb_breakpoint_at): Make non-static.
3369 (delete_gdb_breakpoint_at): Clear any target-side
3370 conditions.
3371 (clear_gdb_breakpoint_conditions): New function.
3372 (add_condition_to_breakpoint): Likewise.
3373 (add_breakpoint_condition): Likewise.
3374 (gdb_condition_true_at_breakpoint): Likewise.
3375 (gdb_breakpoint_here): Return result directly instead
3376 of going through a local variable.
3377
3378 * mem-break.h (find_gdb_breakpoint_at): New prototype.
3379 (clear_gdb_breakpoint_conditions): Likewise.
3380 (add_breakpoint_condition): Likewise.
3381 (gdb_condition_true_at_breakpoint): Likewise.
3382
3383 * linux-low.c (linux_wait_1): Evaluate target-side breakpoint condition.
3384 (need_step_over_p): Take target-side breakpoint condition into
3385 consideration.
3386
5e1dc496
LM
33872012-02-24 Luis Machado <lgustavo@codesourcery>
3388
3389 * server.h: Include tracepoint.h.
3390 (agent_mem_read, agent_get_trace_state_variable_value,
3391 agent_set_trace_state_variable_value,
3392 agent_tsv_read, agent_mem_read_string, get_get_tsv_func_addr,
3393 get_set_tsv_func_addr): New prototypes.
3394
3395 * ax.h: New include file.
3396 * ax.c: New source file.
3397
3398 * tracepoint.c: Include ax.h.
3399 (gdb_agent_op, gdb_agent_op_names, gdb_agent_op_sizes,
3400 agent_expr, eval_result_type): Move to ax.h.
3401 (parse_agent_expr): Rename to ...
3402 (gdb_parse_agent_expr): ... this, make it non-static and move
3403 to ax.h.
3404 (unparse_agent_expr) Rename to ...
3405 (gdb_unparse_agent_expr): ... this, make it non-static and move
3406 to ax.h.
3407 (eval_agent_expr): Rename to ...
3408 (eval_tracepoint_agent_expr): ... this.
3409 (agent_mem_read, agent_mem_read_string, agent_tsv_read): Remove
3410 forward declarations.
3411 (add_tracepoint_action): Call gdb_parse_agent_expr (...).
3412 (agent_get_trace_state_variable_value): New function.
3413 (agent_set_trace_state_variable_value): New function.
3414 (cmd_qtdp): Call gdb_parse_agent_expr (...).
3415 (response_tracepoint): Call gdb_unparse_agent_expr (...).
3416 (do_action_at_tracepoint): Call eval_tracepoint_agent_expr (...).
3417 (condition_true_at_tracepoint): Likewise.
3418 (parse_agent_expr): Rename to ...
3419 (gdb_parse_agent_expr): ... this and move to ax.c.
3420 (unparse_agent_expr): Rename to ...
3421 (gdb_unparse_agent_expr): ... this and move to ax.c.
3422 (gdb_agent_op_name): Move to ax.c.
3423 (eval_agent_expr): Rename to ...
3424 (gdb_eval_agent_expr): ... this, use regcache passed as parameter
3425 and move to ax.c.
3426 (eval_tracepoint_agent_expr): New function.
3427 (agent_mem_read, agent_mem_read_string, agent_tsv_read): Make
43aaf8b6 3428 non-static.
5e1dc496
LM
3429 (current_insn_ptr, emit_error, struct bytecode_address): Move to
3430 ax.c.
3431 (emit_prologue, emit_epilogue, emit_add, emit_sub, emit_mul, emit_lsh,
3432 emit_rsh_signed, emit_rsh_unsigned, emit_ext, emit_log_not,
3433 emit_bit_and, emit_bit_or, emit_bit_xor, emit_bit_not, emit_equal,
3434 emit_less_signed, emit_less_unsigned, emit_ref, emit_if_goto,
3435 emit_goto, write_goto_address, emit_const, emit_reg, emit_pop,
3436 emit_stack, emit_zero_ext, emit_swap, emit_stack_adjust,
3437 emit_int_call_1, emit_void_call_2, emit_eq_goto, emit_ne_goto,
3438 emit_lt_goto, emit_ge_goto, emit_gt_goto, emit_le_goto): Move to ax.c.
3439 (get_get_tsv_func_addr, get_set_tsv_func_addr): New functions.
3440 (compile_bytecodes): Remove forward declaration.
3441 (is_goto_target): Move to ax.c.
3442 (compile_bytecodes): Move to ax.c and call
3443 agent_get_trace_state_variable_value (...) and
3444 agent_set_trace_state_variable_value (...).
3445
3446 * Makefile.in: Update ax.c and IPA dependencies.
3447
277e4e52
PA
34482012-02-24 Pedro Alves <palves@redhat.com>
3449
3450 * tracepoint.c (cmd_bigqtbuffer): Rename as ...
3451 (cmd_bigqtbuffer_circular): ... this. Only handle
3452 'QTBuffer:circular:'.
3453 (handle_tracepoint_general_set): Adjust.
3454
bf4c19f7
YQ
34552012-02-16 Yao Qi <yao@codesourcery.com>
3456
3457 * inferiors.c: Move code to ...
3458 * dll.c: .... here. New.
3459 * server.h: Declare clear_dlls.
3460 * Makefile.in (SFILES): Add dll.c.
3461 (OBS): Add dll.o
3462 (dll.o): New rule.
3463
d73f2619
YQ
34642012-02-11 Yao Qi <yao@codesourcery.com>
3465
3466 * server.c: (handle_monitor_command): Add a new parameter
3467 `own_buf'.
3468 (handle_query): Update caller.
3469
f8255c2a
JB
34702012-02-09 Joel Brobecker <brobecker@adacore.com>
3471
3472 * configure.ac: Add readlink to AC_CHECK_FUNCS list.
3473 * configure, config.in: Regenerate.
3474 * hostio.c: Provide an alternate implementation if HAVE_READLINK
3475 is not defined.
3476
da84f473
PA
34772012-02-02 Pedro Alves <palves@redhat.com>
3478
3479 Try SIGKILL first, then PTRACE_KILL.
3480 * linux-low.c (linux_kill_one_lwp): New.
3481 (linux_kill_one_lwp): Rename to ...
3482 (kill_one_lwp_callback): ... this. Use the new
3483 linux_kill_one_lwp.
3484
e886a173
PA
34852012-02-02 Pedro Alves <palves@redhat.com>
3486
3487 * tracepoint.c (cmd_qtminftpilen): Return 0 if there's no current
3488 inferior.
3489
be07f1a2
PA
34902012-01-27 Pedro Alves <palves@redhat.com>
3491
3492 * linux-low.c (linux_child_pid_to_exec_file): Delete.
3493 (elf_64_file_p): Make static.
3494 (linux_pid_exe_is_elf_64_file): New.
3495 * linux-low.h (linux_child_pid_to_exec_file, elf_64_file_p):
3496 Delete declarations.
3497 (linux_pid_exe_is_elf_64_file): Declare.
3498 * linux-x86-low.c (x86_arch_setup): Use
3499 linux_pid_exe_is_elf_64_file.
3500
d8301ad1
JK
35012012-01-25 Jan Kratochvil <jan.kratochvil@redhat.com>
3502
3503 * linux-low.c (linux_wait_for_event_1): Rename to ...
3504 (linux_wait_for_event): ... here and merge it with former
3505 linux_wait_for_event - new variable wait_ptid, use it.
3506 (linux_wait_for_event): Remove - merge it to linux_wait_for_event_1.
3507
01b17894
PA
35082012-01-23 Pedro Alves <palves@redhat.com>
3509
3510 * server.c (main): Avoid yet another case of infinite loop while
3511 detaching/killing after a longjmp.
3512
e825046f
JK
35132012-01-20 Jan Kratochvil <jan.kratochvil@redhat.com>
3514
3515 Code cleanup.
3516 * linux-low.c (linux_wait_for_event_1): Use ptid_is_pid.
3517
b9e7b9c3
UW
35182012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
3519
3520 * hostio.c (handle_readlink): New function.
3521 (handle_vFile): Call it to handle "vFile:readlink" packets.
3522
901f9912
UW
35232012-01-20 Pedro Alves <palves@redhat.com>
3524 Ulrich Weigand <ulrich.weigand@linaro.org>
3525
3526 * server.c (handle_v_requests): Only support vAttach and vRun to
3527 start multiple processes when in extended protocol mode.
3528
fc1ab1a0
PA
35292012-01-17 Pedro Alves <palves@redhat.com>
3530
3531 * tracepoint.c (initialize_tracepoint): Use mmap instead of
3532 memalign plus mprotect to allocate the scratch buffer.
3533
7d5d4e98
PA
35342012-01-13 Pedro Alves <palves@redhat.com>
3535
3536 * server.c (attach_inferior): Clear `cont_thread'.
3537
f128d5e9
PA
35382012-01-13 Pedro Alves <palves@redhat.com>
3539
3540 * server.c (main): Avoid infinite loop while detaching/killing
3541 after a longjmp.
3542
06db92f0
DE
35432012-01-09 Doug Evans <dje@google.com>
3544
3545 * server.c (start_inferior): Set last_ptid in --wrapper case.
3546
32d92999
YQ
35472012-01-06 Yao Qi <yao@codesourcery.com>
3548
3549 * tracepoint.c [IN_PROCESS_AGENT] (debug_threads): Macro
3550 defined.
3551 [IN_PROCESS_AGENT] (debug_agent): New global variable.
3552
5e0a92a9
YQ
35532012-01-04 Yao Qi <yao@codesourcery.com>
3554
3555 * tracepoint.c (cmd_qtdp): Print debug message
3556 for static tracepoint.
3557
ae639e8c
YQ
35582012-01-04 Yao Qi <yao@codesourcery.com>
3559
3560 * tracepoint.c (trace_vdebug): Differentiate debug message
3561 between gdbserver and IPA.
3562
f72429c5
YQ
35632012-01-03 Yao Qi <yao@codesourcery.com>
3564
3565 * tracepoint.c (tracepoint_was_hit): Don't collect for
3566 static tracepoint.
3567
12c3e59c
JB
35682012-01-02 Joel Brobecker <brobecker@adacore.com>
3569
3570 * terminal.h: Reformat copyright header.
3571
67827812
JB
35722012-01-02 Joel Brobecker <brobecker@adacore.com>
3573
3574 * server.c (gdbserver_version): Update copyright year.
3575 * gdbreplay.c (gdbreplay_version): Likewise.
3576
3e52c33d
JK
35772011-12-18 Jan Kratochvil <jan.kratochvil@redhat.com>
3578
3579 * linux-low.c (linux_create_inferior): Put empty if clause for write.
3580
3581 Revert:
3582 2011-12-18 Hui Zhu <teawater@gmail.com>
3583 * linux-low.c (linux_create_inferior): Save return value to ret.
3584
66f1260e
HZ
35852011-12-18 Hui Zhu <teawater@gmail.com>
3586
3587 * linux-low.c (linux_create_inferior): Save return value to ret.
3588
e77616d7
DE
35892011-12-16 Doug Evans <dje@google.com>
3590
e7b06c57
DE
3591 * linux-low.c (linux_create_inferior): If stdio connection,
3592 redirect stdin from /dev/null, stdout to stderr.
3593 * remote-utils.c (remote_is_stdio): New static global.
3594 (remote_connection_is_stdio): New function.
3595 (remote_prepare): Handle stdio connection.
3596 (remote_open): Ditto.
3597 (remote_close): Don't close stdin for stdio connections.
3598 (read_prim,write_prim): New functions. Replace all calls to
3599 read/write to these.
3600 * server.c (main): Watch for "-" argument. Move call to
3601 remote_prepare before start_inferior.
3602 * server.h (STDIO_CONNECTION_NAME): New macro.
3603 (remote_connection_is_stdio): Declare.
3604
e77616d7
DE
3605 * remote-utils.c (prepare_resume_reply): Remove extraneous \n
3606 in debugging output.
3607
82067193
YQ
36082011-12-15 Yao Qi <yao@codesourcery.com>
3609
3610 * tracepoint.c: Include sys/syscall.h.
3611 (gdb_ust_thread): Remove preprocessor conditional.
3612
82bfbe7e
PA
36132011-12-14 Pedro Alves <pedro@codesourcery.com>
3614
3615 * linux-low.c (linux_detach_one_lwp): Call
3616 the_low_target.prepare_to_resume before detaching.
3617
712c6575
YQ
36182011-12-14 Yao Qi <yao@codesourcery.com>
3619
3620 * tracepoint.c (gdb_ust_thread): Don't ignore return value
3621 of write.
3622
d54d1edf
YQ
36232011-12-14 Yao Qi <yao@codesourcery.com>
3624
3625 * i386-low.c (i386_low_stopped_data_address): Initialize local
3626 variable `control'.
3627
6210a125
PA
36282011-12-13 Pedro Alves <pedro@codesourcery.com>
3629
3630 PR remote/13492
3631
3632 * i386-low.c (i386_low_stopped_data_address): Avoid fetching
3633 DR_CONTROL unless necessary. Extend comments.
3634 * linux-x86-low.c (x86_linux_prepare_to_resume): Don't write to
3635 DR0-3 if not used. If any watchpoint was set, clear DR_STATUS.
3636
2ece8244
YQ
36372011-12-13 Yao Qi <yao@codesourcery.com>
3638
3639 * tracepoint.c (trace_buffer_alloc): Replace magic numbers with
3640 macros.
3641 (upload_fast_traceframes, upload_fast_traceframes): Likewise.
3642
784867a5
JK
36432011-12-08 Jan Kratochvil <jan.kratochvil@redhat.com>
3644
3645 * linux-low.c (linux_kill): Skip PTRACE_KILL if LWP does not exist.
3646 Print new debug message for such case.
3647
6bf36717
JK
36482011-12-06 Jan Kratochvil <jan.kratochvil@redhat.com>
3649
3650 Fix overlapping memcpy.
3651 * mem-break.c (set_raw_breakpoint_at): New variable buf. Use it for
3652 the read_inferior_memory transfer.
3653 (delete_fast_tracepoint_jump): New variable buf. Use it for the
3654 write_inferior_memory transfer.
3655 (set_fast_tracepoint_jump): New variable buf. Use it for the
3656 read_inferior_memory and write_inferior_memory transfers.
3657 (uninsert_fast_tracepoint_jumps_at, reinsert_fast_tracepoint_jumps_at)
3658 (delete_raw_breakpoint, uninsert_raw_breakpoint): New variable buf.
3659 Use it for the write_inferior_memory transfer.
3660 (check_mem_read, check_mem_write): New gdb_asserts for overlapping
3661 buffers.
3662
50275556
MR
36632011-12-06 Maciej W. Rozycki <macro@codesourcery.com>
3664
3665 * linux-low.c (fetch_register, store_register): Make code
3666 consistent, fix formatting.
3667
7325beb4
MR
36682011-12-06 Maciej W. Rozycki <macro@codesourcery.com>
3669
3670 * linux-low.c (usr_store_inferior_registers): Factor out code
3671 to handle individual registers into...
3672 (store_register): ... this new function.
3673
c642a434
UW
36742011-12-06 Ulrich Weigand <uweigand@de.ibm.com>
3675
3676 * Makefile.in (s390-linux32v1.o, s390-linux32v1.c): New rules.
3677 (s390-linux32v2.o, s390-linux32v2.c): Likewise.
3678 (s390-linux64v1.o, s390-linux64v1.c): Likewise.
3679 (s390-linux64v2.o, s390-linux64v2.c): Likewise.
3680 (s390x-linux64v1.o, s390x-linux64v1.c): Likewise.
3681 (s390x-linux64v2.o, s390x-linux64v2.c): Likewise.
3682 * configure.srv [s390*-*-linux*] (srv_regobj): Add new objects.
3683 (srv_xmlfiles): Add new XML files.
3684
3685 * linux-s390-low.c: Include "elf/common.h", <sys/ptrace.h>,
3686 and <sys/uio.h>.
3687 (PTRACE_GETREGSET, PTRACE_SETREGSET): Define if undefined.
3688 (init_registers_s390_linux32v1): Add prototype.
3689 (init_registers_s390_linux32v2): Likewise.
3690 (init_registers_s390_linux64v1): Likewise.
3691 (init_registers_s390_linux64v2): Likewise.
3692 (init_registers_s390x_linux64v1): Likewise.
3693 (init_registers_s390x_linux64v2): Likewise.
3694 (s390_num_regs): Increment to 52.
3695 (s390_regmap): Add orig_r2 register.
3696 (s390_num_regs_3264): Increment to 68.
3697 (s390_regmap_3264): Add orig_r2 register.
3698 (s390_collect_ptrace_register): Handle orig_r2 register.
3699 (s390_supply_ptrace_register): Likewise.
3700 (s390_fill_last_break): New function.
3701 (s390_store_last_break): Likewise.
3702 (s390_fill_system_call): New function.
3703 (s390_store_system_call): Likewise.
3704 (target_regsets): Handle NT_S390_LAST_BREAK and NT_S390_SYSTEM_CALL
3705 register sets.
3706 (s390_check_regset): New function.
3707 (s390_arch_setup): Check for presence of NT_S390_LAST_BREAK and
3708 NT_S390_SYSTEM_CALL regsets and use appropriate description.
3709 Update target_regsets for available register sets.
3710
2268b414
JK
37112011-12-02 Paul Pluzhnikov <ppluzhnikov@google.com>
3712 Jan Kratochvil <jan.kratochvil@redhat.com>
3713
3714 * linux-low.c (get_phdr_phnum_from_proc_auxv, get_dynamic, get_r_debug)
3715 (read_one_ptr, struct link_map_offsets, linux_qxfer_libraries_svr4):
3716 New.
3717 (struct linux_target_ops): Install linux_qxfer_libraries_svr4.
3718 * linux-low.h (struct process_info_private): New member r_debug.
3719 * server.c (handle_qxfer_libraries): Call
3720 the_target->qxfer_libraries_svr4.
3721 (handle_qxfer_libraries_svr4): New function.
3722 (qxfer_packets): New entry "libraries-svr4".
3723 (handle_query): Check QXFER_LIBRARIES_SVR4 and report libraries-svr4.
3724 * target.h (struct target_ops): New member qxfer_libraries_svr4.
3725 * remote.c (remote_xfer_partial): Call add_packet_config_cmd for
3726 PACKET_qXfer_libraries_svr4.
3727
d6db1fab
UW
37282011-11-30 Ulrich Weigand <uweigand@de.ibm.com>
3729
3730 * linux-s390-low.c (s390_collect_ptrace_register): Fully convert
3731 PSW address/mask between 8-byte and 16-byte formats.
3732 (s390_supply_ptrace_register): Likewise.
3733 (s390_get_pc, s390_set_pc): 4-byte PSW address always includes
3734 basic addressing mode bit.
3735
242f5f1c
SS
37362011-11-24 Stan Shebs <stan@codesourcery.com>
3737
3738 * tracepoint.c (cmd_qtstatus): Use plongest instead of %llx.
3739
f196051f
SS
37402011-11-17 Stan Shebs <stan@codesourcery.com>
3741
3742 * tracepoint.c (struct tracepoint): New field traceframe_usage.
3743 (tracing_start_time): New global.
3744 (tracing_stop_time): New global.
3745 (tracing_user_name): New global.
3746 (tracing_notes): New global.
3747 (tracing_stop_note): New global.
3748 (cmd_qtstart): Set traceframe_usage, start_time.
3749 (stop_tracing): Set stop_time.
3750 (cmd_qtstatus): Report additional status.
3751 (cmd_qtp): New function.
3752 (handle_tracepoint_query): Call it.
3753 (cmd_qtnotes): New function.
3754 (handle_tracepoint_general_set): Call it.
3755 (get_timestamp): Rename from tsv_get_timestamp.
3756
405f8e94
SS
37572011-11-14 Stan Shebs <stan@codesourcery.com>
3758 Kwok Cheung Yeung <kcy@codesourcery.com>
3759
3760 * linux-x86-low.c (small_jump_insn): New.
3761 (i386_install_fast_tracepoint_jump_pad): Add arguments for
3762 trampoline and error message, build a trampoline and issue a small
3763 jump instruction to it.
3764 (x86_install_fast_tracepoint_jump_pad): Add arguments for
3765 trampoline and error message.
3766 (x86_get_min_fast_tracepoint_insn_len): New.
3767 (the_low_target): Add call to x86_get_min_fast_tracepoint_insn_len.
3768 * linux-low.h (struct linux_target_ops): Add arguments to
3769 install_fast_tracepoint_jump_pad operation, add new operation.
3770 * linux-low.c (linux_install_fast_tracepoint_jump_pad): Add
3771 arguments.
3772 (linux_get_min_fast_tracepoint_insn_len): New function.
3773 (linux_target_op): Add new operation.
3774 * tracepoint.c (gdb_trampoline_buffer): New IPA variable.
3775 (gdb_trampoline_buffer_end): Ditto.
3776 (gdb_trampoline_buffer_error): Ditto.
3777 (struct ipa_sym_addresses): Add fields for new IPA variables.
3778 (symbol_list): Add entries for new IPA variables.
3779 (struct tracepoint): Add fields to hold the address range of the
3780 trampoline used by the tracepoint.
3781 (trampoline_buffer_head): New static variable.
3782 (trampoline_buffer_tail): Ditto.
3783 (claim_trampoline_space): New function.
3784 (have_fast_tracepoint_trampoline_buffer): New function.
3785 (clone_fast_tracepoint): Fill in trampoline fields of tracepoint
3786 structure.
3787 (install_fast_tracepoint): Ditto, also add error buffer argument.
3788 (cmd_qtminftpilen): New function.
3789 (handle_tracepoint_query): Add response to qTMinFTPILen packet.
3790 (fast_tracepoint_from_trampoline_address): New function.
3791 (fast_tracepoint_collecting): Handle trampoline as part of jump
3792 pad space.
3793 (set_trampoline_buffer_space): New function.
3794 (initialize_tracepoint): Initialize new IPA variables.
3795 * target.h (struct target_ops): Add arguments to
3796 install_fast_tracepoint_jump_pad operation, add new
3797 get_min_fast_tracepoint_insn_len operation.
3798 (target_get_min_fast_tracepoint_insn_len): New.
3799 (install_fast_tracepoint_jump_pad): Add arguments.
3800 * server.h (IPA_BUFSIZ): Define.
3801 * linux-i386-ipa.c: Include extra header files.
3802 (initialize_fast_tracepoint_trampoline_buffer): New function.
3803 (initialize_low_tracepoint): Call it.
3804 * server.h (set_trampoline_buffer_space): Declare.
3805 (claim_trampoline_space): Ditto.
3806 (have_fast_tracepoint_trampoline_buffer): Ditto.
3807
1e4d1764
YQ
38082011-11-14 Yao Qi <yao@codesourcery.com>
3809
3810 * server.c (handle_query): Handle InstallInTrace for qSupported.
3811 * tracepoint.c (add_tracepoint): Sort list.
3812 (install_tracepoint, download_tracepoint): New.
3813 (cmd_qtdp): Call them to install and download tracepoints.
3814 (sort_tracepoints): Removed.
3815 (cmd_qtstart): Update.
3816
5c73ff4e
YQ
38172011-11-14 Yao Qi <yao@codesourcery.com>
3818
3819 * mem-break.c (inc_ref_fast_tracepoint_jump): New.
3820 * mem-break.h: Declare.
3821 * tracepoint.c (cmd_qtstart): Move some code to ...
3822 (clone_fast_tracepoint, install_fast_tracepoint): ... here.
3823 New.
3824 (download_tracepoints): Move some code to ...
3825 (download_tracepoint_1): ... here. New.
3826
86a30030
YQ
38272011-11-08 Yao Qi <yao@codesourcery.com>
3828
3829 * remote-utils.c (relocate_instruction): A comment fix.
3830
8d26e50c
JB
38312011-11-07 Joel Brobecker <brobecker@adacore.com>
3832
3833 * win32-i386-low.c (dr_status_mirror, dr_control_mirror): Delete.
3834 (i386_dr_low_get_control, i386_dr_low_get_status): Use
3835 dr_status_mirror and dr_control_mirror from debug_reg_state.
3836 (i386_dr_low_get_status): Use debug_reg_state.dr_status_mirror
3837 (i386_initial_stuff): Remove use of deleted globals.
3838 (i386_get_thread_context, i386_set_thread_context,
3839 i386_thread_added): Use dr_status_mirror and dr_control_mirror
3840 from debug_reg_state.
3841
a59306a3
YQ
38422011-11-05 Yao Qi <yao@codesourcery.com>
3843
3844 * tracepoint.c (gdb_collect): Loop over tracepoints of same
3845 address as TPOINT's.
3846
3065dfb6
SS
38472011-11-02 Stan Shebs <stan@codesourcery.com>
3848
3849 * tracepoint.c (agent_mem_read_string): New function.
3850 (eval_agent_expr): Call it for tracenz.
3851 * server.c (handle_query): Report support for tracenz.
3852
fd0d8c7c
YQ
38532011-11-02 Yao Qi <yao@codesourcery.com>
3854
3855 * tracepoint.c (cmd_qtstart): Remove unused local variables.
3856
609086b1
YQ
38572011-11-02 Yao Qi <yao@codesourcery.com>
3858
3859 * target.h: Fix a typo in comment.
3860
b9fd1791
PA
38612011-10-31 Pedro Alves <pedro@codesourcery.com>
3862
3863 * mem-break.c (check_mem_write): Add `myaddr' parameter. Don't
3864 clobber the breakpoints' shadows with fast tracepoint jumps.
3865 * mem-break.h (check_mem_write): Add `myaddr' parameter.
3866 * target.c (write_inferior_memory): Also pass MYADDR down to
3867 check_mem_write.
3868
03583c20
UW
38692011-10-07 Ulrich Weigand <ulrich.weigand@linaro.org>
3870
3871 * configure.ac: Check support for personality routine.
3872 * configure: Regenerate.
3873 * config.in: Likewise.
3874 * linux-low.c: Include <sys/personality.h>.
3875 Define ADDR_NO_RANDOMIZE if necessary.
3876 (linux_create_inferior): Disable address space randomization when
3877 forking inferior, if requested.
3878 (linux_supports_disable_randomization): New function.
3879 (linux_target_ops): Install it.
3880 * server.h (disable_randomization): Declare.
3881 * server.c (disable_randomization): New global variable.
3882 (handle_general_set): Handle QDisableRandomization.
3883 (handle_query): Likewise for qSupported.
3884 (main): Support --disable-randomization and --no-disable-randomization
3885 command line arguments.
3886 * target.h (struct target_ops): Add supports_disable_randomization.
3887 (target_supports_disable_randomization): New macro.
3888
723b724b
MF
38892011-09-29 Mike Frysinger <vapier@gentoo.org>
3890
3891 * linux-low.c (target_loadseg): Add defined PTRACE_GETFDPIC to the
3892 ifdef check.
3893 [PT_GETDSBT] (target_loadmap): Wrap in a defined PT_GETDSBT check.
3894 [!PT_GETDSBT] (target_loadmap): New definition.
3895 (LINUX_LOADMAP, LINUX_LOADMAP_EXEC, LINUX_LOADMAP_INTERP): Define.
3896 (linux_read_loadmap): Change PTRACE_GETDSBT_EXEC to
3897 LINUX_LOADMAP_EXEC, PTRACE_GETDSBT_INTERP to LINUX_LOADMAP_INTERP,
3898 and PT_GETDSBT to LINUX_LOADMAP.
3899 [!PT_GETDSBT] (linux_read_loadmap): Define to NULL.
3900 (linux_target_ops): Delete unnecessary ifdef PT_GETDSBT check.
3901
55329a5c 39022011-09-21 Ulrich Weigand <ulrich.weigand@linaro.org>
71487fd7
UW
3903
3904 * linux-arm-low.c (struct arm_linux_hwbp_cap): Remove.
3905 (arm_linux_hwbp_cap): New static variable.
3906 (arm_linux_get_hwbp_cap): Replace by ...
3907 (arm_linux_init_hwbp_cap): ... this new function.
3908 (arm_linux_get_hw_breakpoint_count): Use arm_linux_hwbp_cap.
3909 (arm_linux_get_hw_watchpoint_count): Likewise.
3910 (arm_linux_get_hw_watchpoint_max_length): Likewise.
3911 (arm_arch_setup): Call arm_linux_init_hwbp_cap.
3912 (arm_prepare_to_resume): Use perror_with_name instead of error.
3913
55329a5c 39142011-09-21 Ulrich Weigand <ulrich.weigand@linaro.org>
09b4ad9f
UW
3915
3916 * linux-arm-low.c: Include <signal.h>.
3917 (PTRACE_GETHBPREGS, PTRACE_SETHBPREGS): Define if necessary.
3918 (struct arm_linux_hwbp_cap): New data type.
3919 (arm_hwbp_type, arm_hwbp_control_t): New typedefs.
3920 (struct arm_linux_hw_breakpoint): New data type.
3921 (MAX_BPTS, MAX_WPTS): Define.
3922 (struct arch_process_info, struct arch_lwp_info): New data types.
3923 (arm_linux_get_hwbp_cap): New function.
3924 (arm_linux_get_hw_breakpoint_count): Likewise.
3925 (arm_linux_get_hw_watchpoint_count): Likewise.
3926 (arm_linux_get_hw_watchpoint_max_length): Likewise.
3927 (arm_hwbp_control_initialize): Likewise.
3928 (arm_hwbp_control_is_enabled): Likewise.
3929 (arm_hwbp_control_is_initialized): Likewise.
3930 (arm_hwbp_control_disable): Likewise.
3931 (arm_linux_hw_breakpoint_equal): Likewise.
3932 (arm_linux_hw_point_initialize): Likewise.
3933 (struct update_registers_data): New data structure.
3934 (update_registers_callback: New function.
3935 (arm_insert_point): Likewise.
3936 (arm_remove_point): Likewise.
3937 (arm_stopped_by_watchpoint): Likewise.
3938 (arm_stopped_data_address): Likewise.
3939 (arm_new_process): Likewise.
3940 (arm_new_thread): Likewise.
3941 (arm_prepare_to_resume): Likewise.
3942 (the_low_target): Register arm_insert_point, arm_remove_point,
3943 arm_stopped_by_watchpoint, arm_stopped_data_address, arm_new_process,
3944 arm_new_thread, and arm_prepare_to_resume.
3945
6b9801d4
SS
39462011-09-15 Stan Shebs <stan@codesourcery.com>
3947
3948 * server.h (struct emit_ops): Add compare-goto fields.
3949 * tracepoint.c (gdb_agent_op_sizes): New table.
3950 (emit_eq_goto): New function.
3951 (emit_ne_goto): New function.
3952 (emit_lt_goto): New function.
3953 (emit_le_goto): New function.
3954 (emit_gt_goto): New function.
3955 (emit_ge_goto): New function.
3956 (is_goto_target): New function.
3957 (compile_bytecodes): Recognize special cases of compare-goto
3958 combinations and call specialized emitters for them.
3959 * linux-x86-low.c (amd64_emit_eq_goto): New function.
3960 (amd64_emit_ne_goto): New function.
3961 (amd64_emit_lt_goto): New function.
3962 (amd64_emit_le_goto): New function.
3963 (amd64_emit_gt_goto): New function.
3964 (amd64_emit_ge_goto): New function.
3965 (amd64_emit_ops): Add the new functions.
3966 (i386_emit_eq_goto): New function.
3967 (i386_emit_ne_goto): New function.
3968 (i386_emit_lt_goto): New function.
3969 (i386_emit_le_goto): New function.
3970 (i386_emit_gt_goto): New function.
3971 (i386_emit_ge_goto): New function.
3972 (i386_emit_ops): Add the new functions.
3973
bf15cbda
SS
39742011-09-08 Stan Shebs <stan@codesourcery.com>
3975
3976 * linux-x86-low.c (i386_emit_prologue): Save %ebx.
3977 (i386_emit_epilogue): Restore %ebx.
3978
943ca1dd
JZ
39792011-08-31 Jie Zhang <jzhang918@gmail.com>
3980
3981 * server.c (step_thread): Remove definition.
3982 (process_serial_event): Don't handle Hs.
3983 * server.h (step_thread): Remove declaration.
3984 * target.c (set_desired_inferior): Remove use of step_thread.
3985
e3deef73
LM
39862011-08-24 Luis Machado <lgustavo@codesourcery.com>
3987
3988 * linux-low.c: Include linux-procfs.h.
3989 (linux_attach_lwp_1): Update comments.
3990 (linux_attach): Scan for existing threads when attaching to a
3991 process that is the tgid.
3992 * Makefile.in: Update dependencies.
3993
13da1c97
LM
39942011-08-24 Luis Machado <lgustavo@codesourcery.com>
3995
3996 * configure.srv: Add linux-procfs.o dependencies.
3997
881127c9
YQ
39982011-08-14 Yao Qi <yao@codesourcery.com>
3999
4000 * target.h (struct target_ops): Fix indent.
4001 * win32-low.c (win32_target_ops): Fix comment.
4002
58dbd541
YQ
40032011-08-14 Andrew Jenner <andrew@codesourcery.com>
4004 Yao Qi <yao@codesourcery.com>
4005
4006 * Makefile.in (clean): Remove tic6x-*.c files.
4007 (linux-tic6x-low.o, tic6x-c62x-linux.o, tic6x-c64x-linux.o): New rules.
4008 (tic6x-c64xp-linux.o, tic6x-c62x-linux.c, tic6x-c64x-linux.c): Likewise.
4009 (tic6x-c64xp-linux.c): Likewise.
4010 * configure.srv: Add support for tic6x-*-uclinux.
4011 * linux-tic6x-low.c: New.
4012 * linux-low.c (PT_TEXT_ADDR, PT_DATA_ADDR, PT_TEXT_END_ADDR): Define.
4013
78d85199
YQ
40142011-08-14 Andrew Stubbs <ams@codesourcery.com>
4015 Yao Qi <yao@codesourcery.com>
4016
4017 * target.h (struct target_ops): Add read_loadmap.
4018 * linux-low.c (struct target_loadseg): New type.
4019 (struct target_loadmap): New type.
4020 (linux_read_loadmap): New function.
4021 (linux_target_ops): Add linux_read_loadmap.
4022 * server.c (handle_query): Support qXfer:fdpic:read packet.
43aaf8b6
PA
4023 * win32-low.c (win32_target_ops): Initialize field `read_loadmap'
4024 to NULL.
78d85199 4025
a959a88d
EZ
40262011-08-05 Eli Zaretskii <eliz@gnu.org>
4027
4028 * win32-low.c: Include <stdint.h>.
4029
1ced966e
PA
40302011-07-22 Pedro Alves <pedro@codesourcery.com>
4031
4032 * i386-low.c (i386_insert_aligned_watchpoint): Don't pass the info
4033 to the inferior here.
4034 (i386_remove_aligned_watchpoint): Ditto.
4035 (i386_handle_nonaligned_watchpoint): Return immediate on fail to
4036 fit part of the watchpoint in the debug registers.
4037 (i386_update_inferior_debug_regs): New.
4038 (i386_low_insert_watchpoint): Work on a local mirror of the debug
4039 registers, and only update the inferior on success.
4040 (i386_low_remove_watchpoint): Ditto.
4041
d26e3629
KY
40422011-07-22 Kwok Cheung Yeung <kcy@codesourcery.com>
4043
4044 * linux-low.c (compare_ints, unique, list_threads, show_process,
4045 linux_core_of_thread): Delete.
4046 (linux_target_ops): Change linux_core_of_thread to
4047 linux_common_core_of_thread.
4048 (linux_qxfer_osdata): Defer to linux_common_xfer_osdata.
4049 * utils.c (malloc_failure): Change type of argument.
4050 (xmalloc, xrealloc, xcalloc, xsnprintf): Delete.
4051 * Makefile.in (SFILES): Add common/common-utils.c, common/xml-utils.c,
4052 common/linux-osdata.c, common/ptid.c and common/buffer.c.
4053 (OBS): Add xml-utils.o, common-utils.o, ptid.o and buffer.o.
4054 (IPA_OBJS): Add common-utils-ipa.o.
4055 (ptid_h, linux_osdata_h): New macros.
4056 (server_h): Add common/common-utils.h, common/xml-utils.h,
4057 common/buffer.h, common/gdb_assert.h, common/gdb_locale.h and
4058 common/ptid.h.
4059 (common-utils-ipa.o, common-utils.o, xml-utils.o, linux-osdata.o,
4060 ptid.o, buffer.o): New rules.
4061 (linux-low.o): Add common/linux-osdata.h as a dependency.
4062 * configure.srv (srv_tgtobj): Add linux-osdata.o to Linux targets.
4063 * configure.ac: Add AC_HEADER_DIRENT check.
4064 * config.in: Regenerate.
4065 * configure: Regenerate.
4066 * remote-utils.c (xml_escape_text): Delete.
4067 (buffer_grow, buffer_free, buffer_init, buffer_finish,
4068 buffer_xml_printf): Move to common/buffer.c.
4069 * server.c (main): Remove call to initialize_inferiors.
4070 * server.h (struct ptid, ptid_t, minus_one_ptid, null_ptid,
4071 ptid_build, pid_to_ptid, ptid_get_pid, ptid_get_lwp, ptid_get_tid,
4072 ptid_equal, ptid_is_pid, initialize_inferiors, xml_escape_text,
4073 internal_error, gdb_assert, gdb_assert_fail): Delete.
4074 (struct buffer, buffer_grow, buffer_free, buffer_init, buffer_finish,
4075 buffer_xml_printf, buffer_grow_str, buffer_grow_str0): Move to
4076 common/buffer.h.
4077 * inferiors.c (null_ptid, minus_one_ptid, ptid_build, pid_to_ptid,
4078 ptid_get_pid, ptid_get_lwp, ptid_get_tid, ptid_equal, ptid_is_pid,
4079 initialize_inferiors): Delete.
4080
2275a1a7
PA
40812011-07-20 Pedro Alves <pedro@codesourcery.com>
4082
4083 * tracepoint.c (tracepoint_look_up_symbols): Return upon the first
4084 symbol error.
4085
0a5b1e09
PA
40862011-05-31 Pedro Alves <pedro@codesourcery.com>
4087
4088 * linux-x86-low.c (i386_dr_low_get_addr): Fix off by one in
4089 assertion.
4090 * win32-i386-low.c (i386_dr_low_get_addr): Ditto.
4091
6938fd34
YQ
40922011-05-26 Yao Qi <yao@codesourcery.com>
4093
4094 * Makefile.in (thread-db.o): Track dependence to
4095 common/gdb_thread_db.h.
4096 * thread-db.c: include gdb_thread_db.h from right place.
4097
b481f9e0
TT
40982011-05-16 Adrian Cornish <gnu@bluedreamer.com>
4099
4100 * linux-i386-ipa.c (supply_static_tracepoint_registers): Pass
4101 __FILE__ and __LINE__ to internal_error.
4102
98a5dd13
DE
41032011-05-13 Doug Evans <dje@google.com>
4104
4105 * thread-db.c (try_thread_db_load_from_sdir): New function.
4106 (try_thread_db_load_from_dir): New function.
4107 (thread_db_load_search): Handle $sdir, ignore $pdir.
4108 Remove trying of system directories if search of
4109 libthread-db-search-path fails, that is now done via $sdir.
4110
d248b706
KY
41112011-05-12 Kwok Cheung Yeung <kcy@codesourcery.com>
4112
4113 * server.c (handle_query): Add EnableDisableTracepoints to the list
4114 of supported features.
43aaf8b6 4115 * tracepoint.c (clear_installed_tracepoints): Uninstall disabled
d248b706 4116 tracepoints.
43aaf8b6
PA
4117 (cmd_qtenable_disable): New.
4118 (cmd_qtstart): Install tracepoints even if disabled.
4119 (handle_tracepoint_general_set): Add call to cmd_qtenable_disable on
4120 receiving a QTEnable or QTDisable packet.
4121 (gdb_collect): Skip data collection if fast tracepoint is disabled.
4122 (ust_marker_to_static_tracepoint): Do not ignore disabled static
4123 tracepoints.
4124 (gdb_probe): Skip data collection if static tracepoint is disabled.
d248b706 4125
84e578fb
DE
41262011-05-10 Doug Evans <dje@google.com>
4127
4128 * thread-db.c (thread_db_handle_monitor_command): Handle elided path.
4129
71f55dd8
DE
41302011-05-04 Doug Evans <dje@google.com>
4131
4132 * linux-low.c (linux_join): Skip process lookup.
4133 * spu-low.c (spu_join): Ditto.
4134 * server.c (join_inferiors_callback): Delete.
4135 (process_serial_event): For 'D' packet (detach) call join_inferior
4136 directly.
4137
4d393d60
JM
41382011-05-04 Joseph Myers <joseph@codesourcery.com>
4139
4140 * README: Don't mention xscale*-*-linux*.
4141 * configure.srv (xscale*-*-linux*): Don't handle target.
4142
b00ad6ff
NF
41432011-04-27 Nathan Froyd <froydnj@codesourcery.com>
4144
4145 * linux-x86-low.c (amd64_emit_const): Call memcpy instead of
4146 casting pointers.
4147 (amd64_emit_reg, amd64_emit_int_call_1, amd64_emit_void_call_2):
4148 (i386_emit_const, i386_emit_reg, i386_emit_int_call_1):
4149 (i386_emit_void_call_2): Likewise.
4150
af96c192
YQ
41512011-04-26 Yao Qi <yao@codesourcery.com>
4152
43aaf8b6
PA
4153 * linux-low.c: Move common macros to linux-ptrace.h.
4154 Include linux-ptrace.h.
af96c192
YQ
4155 * Makefile.in (linux_ptrace_h): New.
4156 (linux-low.o): Depends on linux-ptrace.h.
4157
03f2bd59
JK
41582011-04-24 Jan Kratochvil <jan.kratochvil@redhat.com>
4159
4160 * remote-utils.c (handle_accept_event): Close LISTEN_DESC only if
4161 RUN_ONCE. Comment for the LISTEN_DESC delete_file_handler call.
4162 (remote_prepare): New function with most of the TCP code from ...
4163 (remote_open): ... here. Detect PORT here unconditionally. Move also
4164 setting transport_is_reliable.
4165 * server.c (run_once): New variable.
4166 (gdbserver_usage): Document it.
4167 (main): Set run_once for `--once'. Call remote_prepare. Exit after
4168 the first run if RUN_ONCE.
4169 * server.h (run_once, remote_prepare): New declarations.
4170
7a9dd1b2
TT
41712011-04-19 Tom Tromey <tromey@redhat.com>
4172
4173 * win32-low.c (handle_load_dll): Remove duplicate "the".
4174
81239425
PM
41752011-04-07 Pierre Muller <muller@ics.u-strasbg.fr>
4176
4177 Remove support for old Cygwin 1.5 versions.
4178 * win32-low.c (win32_create_inferior): Use new cygwin_path_list
4179 function to avoid warning.
4180 (win32_add_one_solib): Use cygwin_conv_path function to avoid
4181 warning.
4182
9e0627f1
PM
41832011-03-18 Pierre Muller <muller@ics.u-strasbg.fr>
4184
4185 * gdbserver/server.h (Macro _): Define it if not available.
4186
588eebee
MS
41872011-03-14 Michael Snyder <msnyder@vmware.com>
4188
348af9f7 4189 * hostio.c (handle_close): Remove unnecessary null test.
588eebee 4190
43f70d4c
JB
41912011-03-10 Joel Brobecker <brobecker@adacore.com>
4192
4193 * Makefile.in (maintainer-clean realclean distclean): Remove
4194 "make ... subdir_do" command.
4195
348af9f7
MS
41962011-03-10 Michael Snyder <msnyder@vmware.com>
4197
4198 * tracepoint.c (tracepoint_finish_step): Fix loop variable.
4199
4200 * server.c (handle_v_run): Free alloced buffer on early return.
4201
e637a4f5
YQ
42022011-03-09 Yao Qi <yao@codesourcery.com>
4203
4204 Revert:
4205 2011-03-04 Yao Qi <yao@codesourcery.com>
4206
4207 * Makefile.in: Remove GNU make feature --directory.
4208
4209 2011-03-05 Yao Qi <yao@codesourcery.com>
4210
4211 * Makefile.in (CLEANDIRS, REQUIRED_SUBDIRS): New variable.
4212 (subdir_do): New make target. Copied from gdb/Makefile.
4213 (maintainer-clean, realclean, distclean, clean): Call corresponding
4214 make targets in common/Makefile.
4215
4216 2011-02-11 Yao Qi <yao@codesourcery.com>
4217
4218 * configure.ac: Call AC_PROG_RANLIB.
4219 * Makefile.in: Remove signals.o from OBS. Link libcommon.a.
4220 * configure: Regenerate.
4221
e6edda56
JK
42222011-03-07 Jan Kratochvil <jan.kratochvil@redhat.com>
4223
4224 * remote-utils.c (putpkt_binary_1): Calculate BUF2 size dynamically.
4225
e5141119
JB
42262011-03-06 Yao Qi <yao@codesourcery.com>
4227
4228 * Makefile.in (REQUIRED_SUBDIRS): Remove $(LIBCOMMON_DIR).
4229
64794aa4
JB
42302011-03-05 Yao Qi <yao@codesourcery.com>
4231
4232 * Makefile.in (CLEANDIRS, REQUIRED_SUBDIRS): New variable.
4233 (subdir_do): New make target. Copied from gdb/Makefile.
4234 (maintainer-clean, realclean, distclean, clean): Call corresponding
4235 make targets in common/Makefile.
4236
7a762829
YQ
42372011-03-04 Yao Qi <yao@codesourcery.com>
4238
4239 * Makefile.in: Remove GNU make feature --directory.
4240
348af9f7
MS
42412011-03-04 Michael Snyder <msnyder@vmware.com>
4242
4243 * server.c (queue_stop_reply): Call xmalloc not malloc.
4244
42452011-03-02 Michael Snyder <msnyder@vmware.com>
4246
4247 * linux-arm-low.c (arm_arch_setup): Replace malloc with xmalloc.
4248
9f72fee2
MS
42492011-02-28 Michael Snyder <msnyder@vmware.com>
4250
588eebee
MS
4251 * tracepoint.c (cmd_qtv): Discard unused value 'packet'.
4252 (cmd_qtframe): Ditto.
4253 (cmd_qtbuffer): Ditto.
4254 (cmd_bigqtbuffer): Ditto.
4255
9f72fee2
MS
4256 * utils.c (decimal2str): Initialize 'width' to nine, then
4257 don't mess with it.
4258
8040bd49
UW
42592011-02-28 Ulrich Weigand <uweigand@de.ibm.com>
4260
4261 * hostio.c (require_data): Free *data, not data.
4262
7e52cbd0
JK
42632011-02-28 Jan Kratochvil <jan.kratochvil@redhat.com>
4264
4265 * hostio.c (require_data): Use free, not xfree.
4266
9130f83e
MS
42672011-02-27 Michael Snyder <msnyder@vmware.com>
4268
4b812f4e
MS
4269 * server.c (handle_query): Discard unused value.
4270
9130f83e
MS
4271 * hostio.c (require_data): Free malloc memory before returning
4272 error.
4273
69d37113
MS
42742011-02-26 Michael Snyder <msnyder@vmware.com>
4275
4276 * linux-low.c (list_threads): Call closedir for dirent.
4277
35f5825a
MS
42782011-02-27 Michael Snyder <msnyder@vmware.com>
4279
2a589cef
MS
4280 * i386-low.c (i386-length_and_rw_bits): Comment the fact that
4281 a case statement falls through.
4282
0adea5f7
MS
4283 * linux-low.c (linux_xfer_siginfo): Fix fencepost error.
4284
35f5825a
MS
4285 * linux-amd64-ipa.c (gdb_agent_get_raw_reg): Fix fencepost error
4286 in comparison.
4287
238f1c74
MS
42882011-02-26 Michael Snyder <msnyder@vmware.com>
4289
4290 * utils.c (decimal2str): Eliminate dead code and dead param.
4291 (pulongest): Drop dead param from call to decimal2str.
4292 (plongest): Ditto.
4293
633ff500
JB
42942011-02-24 Joel Brobecker <brobecker@adacore.com>
4295
4296 Revert the following patch (not approved yet):
4297 2011-02-21 Hui Zhu <teawater@gmail.com>
4298 * tracepoint.c (tp_printf): New function.
4299 (eval_agent_expr): Handle gdb_agent_op_printf.
4300
f9c6ff72
HZ
43012011-02-21 Hui Zhu <teawater@gmail.com>
4302
4303 * tracepoint.c (tp_printf): New function.
4304 (eval_agent_expr): Handle gdb_agent_op_printf.
4305
94d5e490
TT
43062011-02-18 Tom Tromey <tromey@redhat.com>
4307
4308 * Makefile.in (tracepoint-ipa.o): Depend on ax.def.
4309 (tracepoint.o): Likewise.
4310 * tracepoint.c (enum gdb_agent_op): Use ax.def.
4311 (gdb_agent_op_names): Likewise.
4312
c7f96d2b
TT
43132011-02-18 Tom Tromey <tromey@redhat.com>
4314
4315 * tracepoint.c (enum gdb_agent_op) <gdb_agent_op_pick,
4316 gdb_agent_op_rot>: New constants.
4317 (gdb_agent_op_names): Add pick and roll.
4318 (eval_agent_expr) <gdb_agent_op_pick, gdb_agent_op_rot>: New
4319 cases.
4320
0feedb2c
JK
43212011-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
4322
4323 * aclocal.m4: Regenerated with aclocal-1.11.1.
4324
b3b9301e
PA
43252011-02-14 Pedro Alves <pedro@codesourcery.com>
4326
4327 * server.c (handle_qxfer_traceframe_info): New.
4328 (qxfer_packets): Register "traceframe-info".
4329 (handle_query): Report support for qXfer:traceframe-info:read+.
4330 * tracepoint.c (match_blocktype): New.
4331 (traceframe_find_block_type): Rename to ...
4332 (traceframe_walk_blocks): ... this. Add callback filter argument,
4333 and use it.
4334 (traceframe_find_block_type): New, reimplemented on top of
4335 traceframe_walk_blocks.
4336 (build_traceframe_info_xml): New.
4337 (traceframe_read_info): New.
4338 * server.h (traceframe_read_info): Declare.
4339
4f3e6fb7
YQ
43402011-02-11 Yao Qi <yao@codesourcery.com>
4341
4342 * configure.ac: Call AC_PROG_RANLIB.
4343 * Makefile.in: Remove signals.o from OBS. Link libcommon.a.
4344 * configure: Regenerate.
4345
764880b7
PA
43462011-02-07 Pedro Alves <pedro@codesourcery.com>
4347
4348 * server.c (gdb_read_memory): Change return semantics to allow
4349 partial transfers.
4350 (handle_search_memory_1): Adjust.
4351 (process_serial_event) <'m' packet>: Handle partial transfers.
4352 * tracepoint.c (traceframe_read_mem): Handle partial transfers.
4353
1c79eb8a
PA
43542011-01-28 Pedro Alves <pedro@codesourcery.com>
4355
4356 * regcache.c (init_register_cache): Initialize
4357 regcache->register_status.
4358 (free_register_cache): Release regcache->register_status.
4359 (regcache_cpy): Copy register_status.
4360 (registers_to_string): Print 'x's for unavailable registers.
4361 (supply_register): Mark the register's status valid or
4362 unavailable, depending on whether a buffer was passed in or not.
4363 (supply_register_zeroed): New.
4364 (supply_regblock): Mark the registers' status valid or
4365 unavailable, depending on whether a buffer was passed in or not.
4366 * regcache.h (REG_UNAVAILABLE, REG_VALID): New defines.
4367 (struct regcache): New `register_status' field.
4368 (supply_register_zeroed): Declare.
4369 * i387-fp.c (i387_xsave_to_cache): Zero out registers using
4370 supply_register_zeroed, rather than passing a NULL buffer to
4371 supply_register.
4372 * tracepoint.c (fetch_traceframe_registers): Update comment.
4373
85724a0e
PA
43742011-01-28 Pedro Alves <pedro@codesourcery.com>
4375
4376 * i387-fp.c (i387_xsave_to_cache): Make passing NULL as register
4377 buffer explicit.
4378
d08aafef
PA
43792011-01-25 Pedro Alves <pedro@codesourcery.com>
4380
4381 * server.h (decode_xfer_write): Change prototype.
4382 * remote-utils.c (decode_xfer_write): Remove `annex' parameter,
4383 and don't extract the annex here.
4384 * server.c (decode_xfer_read): Remove `annex' parameter,
4385 and don't extract the annex here.
4386 (decode_xfer): New.
4387 (struct qxfer): New.
4388 (handle_qxfer_auxv, handle_qxfer_features, handle_qxfer_libraries)
4389 (handle_qxfer_osdata, handle_qxfer_siginfo, handle_qxfer_spu)
4390 (handle_qxfer_statictrace): New functions, abstracted out from
4391 handle_query, and made to use the struct qxfer interface.
4392 (handle_threads_qxfer_proper): Rename to ...
4393 (handle_qxfer_threads_proper): ... this.
4394 (handle_threads_qxfer): Rename to ...
4395 (handle_qxfer_threads): ... this. Adjust.
4396 (qxfer_packets): New array.
4397 (handle_qxfer): New function.
4398 (handle_query): Use handle_qxfer.
4399
493e2a69
MS
44002011-01-05 Michael Snyder <msnyder@msnyder-server.eng.vmware.com>
4401
4402 * gdbreplay.c: Shorten lines of >= 80 columns.
4403 * linux-low.c: Ditto.
4404 * linux-ppc-low.c: Ditto.
4405 * linux-s390-low.c: Ditto.
4406 * linux-sparc-low.c: Ditto.
4407 * linux-x86-low.c: Ditto.
4408 * linux-xtensa-low.c: Ditto.
4409 * mem-break.c: Ditto.
4410 * nto-low.c: Ditto.
4411 * regcache.h: Ditto.
4412 * remote-utils.c: Ditto.
4413 * server.c: Ditto.
4414 * server.h: Ditto.
4415 * thread-db.c: Ditto.
4416 * tracepoint.c: Ditto.
4417 * utils.c: Ditto.
4418 * win32-low.h: Ditto.
4419
44944448
JB
44202011-01-05 Joel Brobecker <brobecker@adacore.com>
4421
4422 * gdbserver/configure.ac, gdbserver/gdbserver.1: Copyright year
4423 update.
4424
71ce852c
JB
44252011-01-01 Joel Brobecker <brobecker@adacore.com>
4426
4427 * server.c (gdbserver_version): Update copyright year in version
4428 output.
4429 * gdbreplay.c (gdbreplay_version): Ditto.
4430
eb826dc6
MF
44312010-12-29 Jie Zhang <jie.zhang@analog.com>
4432
4433 * configure.srv (bfin-*-*linux*): Handle Blackfin/Linux targets.
4434 * linux-bfin-low.c: New file.
4435 * linux-low.c: Define PT_TEXT_ADDR, PT_TEXT_END_ADDR, and
4436 PT_DATA_ADDR for BFIN targets.
4437 * Makefile.in (SFILES): Add linux-bfin-low.c.
4438 (clean): Remove reg-bfin.c.
4439 (linux-bfin-low.o, reg-bfin.o, reg-bfin.c): New targets.
4440 * README: Mention supported Blackfin targets.
4441
39ab222a
MF
44422010-12-23 Mike Frysinger <vapier@gentoo.org>
4443
4444 * .gitignore: New file.
4445
a1f2ce7d
MF
44462010-11-16 Mike Frysinger <vapier@gentoo.org>
4447
4448 * linux-low.c (linux_tracefork_child): Add char* cast to arg.
4449
f474844c
JZ
44502010-10-22 Jie Zhang <jie@codesourcery.com>
4451
4452 * Makefile.in: Add FLAGS_TO_PASS variable.
4453 (install): Remove dependency of install-only and recursively
4454 invoke make for install-only.
4455
f1048712
DE
44562010-10-04 Doug Evans <dje@google.com>
4457
4458 * Makefile.in (uninstall): Use $(DESTDIR).
4459
b53a1623
PA
44602010-09-24 Pedro Alves <pedro@codesourcery.com>
4461
e6ee044d
PA
4462 PR gdb/11842
4463
b53a1623
PA
4464 * linux-x86-low.c (compat_siginfo_from_siginfo)
4465 (siginfo_from_compat_siginfo): Also copy si_pid and si_uid when
4466 si_code is < 0. Check for si_code == SI_TIMER before checking for
4467 si_code < 0.
4468
fa1bd1e4
JB
44692010-09-13 Joel Brobecker <brobecker@adacore.com>
4470
4471 * lynx-i386-low.c: New file.
4472 * configure.srv: Add handling of i[34567]86-*-lynxos* targets.
4473
47fac8f8
JB
44742010-09-13 Joel Brobecker <brobecker@adacore.com>
4475
4476 * lynx-low.c (ptrace_request_to_str): Remove handling for
4477 request values that have been removed in LynxOS 5.x.
4478
1adfc54d
JB
44792010-09-13 Joel Brobecker <brobecker@adacore.com>
4480
4481 * lynx-low.c, lynx-ppc-loc.c: Include <sys/ptrace.h> instead of
4482 <ptrace.h>
4483
c2a66c29
NS
44842010-09-09 Nathan Sidwell <nathan@codesourcery.com>
4485
4486 * configure.ac: Add --enable-inprocess-agent option.
4487 * configure: Rebuilt.
4488
32fcada3
YQ
44892010-09-06 Yao Qi <yao@codesourcery.com>
4490
4491 * linux-low.c (linux_kill): Remove unused variable.
4492 (linux_stabilize_threads): Likewise.
4493 * server.c (start_inferior): Likewise.
4494 (queue_stop_reply_callback): Likewise.
4495 * tracepoint.c (do_action_at_tracepoint): Likewise.
4496
0cccb683
YQ
44972010-09-06 Yao Qi <yao@codesourcery.com>
4498
4499 * linux-low.c (maybe_move_out_of_jump_pad): Restore current_inferior
4500 on return.
4501
423ec54c
JK
45022010-09-06 Jan Kratochvil <jan.kratochvil@redhat.com>
4503
4504 * target.c (mywait) <TARGET_WAITKIND_EXITED>: Fix to use INTEGER.
4505
12ac6819
PA
45062010-09-06 Pedro Alves <pedro@codesourcery.com>
4507
4508 * Makefile.in (install-only): Replace $IPA_DEPFILES with
4509 "$(IPA_DEPFILES)".
4510
8ed54b31
JB
45112010-09-01 Joel Brobecker <brobecker@adacore.com>
4512
4513 * gdbserver/lynx-low.c, gdbserver/lynx-low.h,
4514 gdbserver/lynx-ppc-low.c: New files.
4515 * Makefile.in (lynx_low_h): New variable.
4516 (lynx-low.o, lynx-ppc-low.o): New rules.
4517 * configure.ac: On LynxOS, link with -lnetinet.
4518 * configure.srv: Add handling of powerpc-*-lynxos* targets.
4519 * configure: regenerate.
4520
bb0116a4
JB
45212010-09-01 Joel Brobecker <brobecker@adacore.com>
4522
4523 * Makefile.in (vasprintf.o, vsnprintf.o): New rules.
4524 * configure.ac: Add check for vasprintf and vsnprintf.
4525 * configure, config.in: Regenerate.
4526 * server.h (vasprintf, vsnprintf): Add conditional declarations.
4527
a778ab81 45282010-09-01 Joel Brobecker <brobecker@adacore.com>
4529
4530 * gdbreplay.c: Move include of alloca.h up, next to include of
4531 malloc.h.
4532 * server.h: Add include of malloc.h.
4533 * mem-break.c: Remove include of malloc.h.
4534 * server.c, tracepoint.c, utils.c, win32-low.c: Likewise.
4535
8b034a19 45362010-09-01 Joel Brobecker <brobecker@adacore.com>
4537
4538 * Makefile.in (memmem.o): Build with -Wno-error.
4539
45402010-09-01 Joel Brobecker <brobecker@adacore.com>
4541
4542 * utils.c (xsnprintf): Make non-static.
4543 * server.h: Add xsnprintf declaration.
4544 * linux-low.c, nto-low.c, target.c, thread-db.c, tracepoint.c:
4545 replace calls to snprintf by calls to xsnprintf throughout.
4546
45472010-09-01 Joel Brobecker <brobecker@adacore.com>
4548
4549 * configure.ac: Add configure check for alloca.
4550 * configure, config.in: Regenerate.
4551 * server.h: Include alloca.h if it exists.
4552 * gdbreplay.c: Include alloca.h if it exists.
4553
1a981360
PA
45542010-08-28 Pedro Alves <pedro@codesourcery.com>
4555
4556 * linux-low.c (__SIGRTMIN): Define if not already defined.
4557 (linux_create_inferior): Check for __ANDROID__ rather than
4558 __SIGRTMIN.
4559 (enqueue_one_deferred_signal): Don't requeue non-RT signals that
4560 are already deferred.
4561 (linux_wait_1): Check for __ANDROID__ rather than __SIGRTMIN.
4562 (linux_resume_one_thread): Don't queue a SIGSTOP if the lwp is
4563 stopped and already has a pending signal to report.
4564 (proceed_one_lwp): : Don't queue a SIGSTOP if the lwp already has
4565 a pending signal to report or is moving out of a jump pad.
4566 (linux_init_signals): Check for __ANDROID__ rather than
4567 __SIGRTMIN.
4568
b4d51a55
PA
45692010-08-28 Pedro Alves <pedro@codesourcery.com>
4570
4571 * linux-low.c (linux_stabilize_threads): Wrap debug output in a
4572 debug_threads check. Avoid a linear search when not doing debug
4573 output.
4574
ec48365d
PA
45752010-08-27 Pedro Alves <pedro@codesourcery.com>
4576
4577 * event-loop.c (event_handle_func): Adjust to use gdb_fildes_t.
4578 (struct gdb_event) <fd>: Change type to gdb_fildes_t.
4579 (struct file_handler) <fd>: Change type to gdb_fildes_t.
4580 (process_event): Change local fd's type to gdb_fildes_t.
4581 (create_file_handler): Adjust prototype.
4582 (delete_file_handler): Adjust prototype.
4583 (handle_file_event): Adjust prototype. Use pfildes.
4584 (create_file_event): Adjsut prototype.
4585 * remote-utils.c (remote_desc, listen_desc): Change type to
4586 gdb_fildes_t.
4587 * server.h: New gdb_fildes_t typedef.
4588 [USE_WIN32API]: Include winsock2.h.
4589 (delete_file_handler, add_file_handler): Adjust prototypes.
4590 (pfildes): Declare.
4591 * utils.c (pfildes): New.
4592
854d88f0
PA
45932010-08-27 Pedro Alves <pedro@codesourcery.com>
4594
4595 * configure.ac (build_warnings): Add -Wno-char-subscripts.
4596 * configure: Regenerate.
4597
0146f85b
PA
45982010-08-27 Pedro Alves <pedro@codesourcery.com>
4599
4600 * linux-low.c (linux_unprepare_to_access_memory): Rename to ...
4601 (linux_done_accessing_memory): ... this.
4602 (linux_target_ops): Adjust.
4603 * linux-x86-low.c (x86_insert_point, x86_remove_point): Adjust.
4604 * nto-low.c (nto_target_ops): Adjust comment.
4605 * server.c (gdb_read_memory, gdb_write_memory): Adjust.
4606 * spu-low.c (spu_target_ops): Adjust comment.
4607 * target.h (target_ops): Rename unprepare_to_access_memory field
4608 to done_accessing_memory.
4609 (unprepare_to_access_memory): Rename to ...
4610 (done_accessing_memory): ... this.
4611
90d74c30
PA
46122010-08-26 Pedro Alves <pedro@codesourcery.com>
4613
4614 * linux-low.c (linux_prepare_to_access_memory): New.
4615 (linux_unprepare_to_access_memory): New.
4616 (linux_target_ops): Install them.
4617 * server.c (read_memory): Rename to ...
4618 (gdb_read_memory): ... this. Use
4619 prepare_to_access_memory/prepare_to_access_memory.
4620 (write_memory): Rename to ...
4621 (gdb_write_memory): ... this. Use
4622 prepare_to_access_memory/prepare_to_access_memory.
4623 (handle_search_memory_1): Adjust.
4624 (process_serial_event): Adjust.
4625 * target.h (struct target_ops): New fields
4626 prepare_to_access_memory and unprepare_to_access_memory.
4627 (prepare_to_access_memory, unprepare_to_access_memory): New.
4628 * linux-x86-low.c (x86_insert_point, x86_remove_point): Use
4629 prepare_to_access_memory/prepare_to_access_memory.
4630 * nto-low.c (nto_target_ops): Adjust.
4631 * spu-low.c (spu_target_ops): Adjust.
4632 * win32-low.c (win32_target_ops): Adjust.
4633
fd467969
PA
46342010-08-26 Pedro Alves <pedro@codesourcery.com>
4635
4636 * Makefile.in (WARN_CFLAGS): Get it from configure.
4637 (WERROR_CFLAGS): New.
4638 (INTERNAL_CFLAGS): Add WERROR_CFLAGS.
4639 * configure.ac: Introduce --enable-werror, which adds -Werror to
4640 the compiler command line. Enabled by default. Disable with
4641 --disable-werror. Add -Wdeclaration-after-statement
4642 Wpointer-arith and -Wformat-nonliteral to warning flags.
4643 * configure: Regenerate.
4644
331e2f5f
PA
46452010-08-26 Pedro Alves <pedro@codesourcery.com>
4646
4647 * mem-break.c [HAVE_MALLOC_H]: Include malloc.h.
4648
e581f2b4
PA
46492010-08-26 Pedro Alves <pedro@codesourcery.com>
4650
4651 * gdbreplay.c (remote_error): New.
4652 (gdbchar): New.
4653 (expect): Use gdbchar. Check for error reading from GDB.
4654 Clarify sync error output.
4655 (play): Check for errors writing to GDB.
4656 * linux-low.c (sigchld_handler): Really ignore `write' errors.
4657 * remote-utils.c (getpkt): Check for errors writing to the remote
4658 descriptor.
4659
3c11dd79
PA
46602010-08-25 Pedro Alves <pedro@codesourcery.com>
4661
4662 * linux-low.c (linux_wait_1): Move non-debugging code out of
4663 `debug_threads' control.
4664
d20a8ad9
PA
46652010-08-25 Pedro Alves <pedro@codesourcery.com>
4666
4667 * linux-low.c (linux_wait_1): Don't set last_status here.
4668 * server.c (push_event, queue_stop_reply_callback): Assert we're
4669 not pushing a TARGET_WAITKIND_IGNORE event.
4670 (start_inferior, start_inferior, attach_inferior, handle_v_cont)
4671 (myresume, handle_target_event): Set the thread's last_resume_kind
4672 and last_status from the target returned status.
4673
964e4306
PA
46742010-08-25 Pedro Alves <pedro@codesourcery.com>
4675
4676 PR threads/10729
4677
4678 * linux-x86-low.c (update_debug_registers_callback): New.
4679 (i386_dr_low_set_addr): Use it.
4680 (i386_dr_low_get_addr): New.
4681 (i386_dr_low_set_control): Use update_debug_registers_callback.
4682 (i386_dr_low_get_control): New.
4683 (i386_dr_low_get_status): Adjust.
4684 * linux-low.c (linux_stop_lwp): New.
4685 * linux-low.h (linux_stop_lwp): Declare.
4686
4687 * i386-low.c (I386_DR_GET_RW_LEN): Take the dr7 contents as
4688 argument instead of a i386_debug_reg_state.
4689 (I386_DR_WATCH_HIT): Take the dr6 contents as argument instead of
4690 a i386_debug_reg_state.
4691 (i386_insert_aligned_watchpoint): Adjust.
4692 (i386_remove_aligned_watchpoint): Adjust.
4693 (i386_low_stopped_data_address): Read the debug registers from the
4694 inferior instead of from the mirrors.
4695 * i386-low.h (struct i386_debug_reg_state): Extend comment.
4696 (i386_dr_low_get_addr): Declare.
4697 (i386_dr_low_get_control): Declare.
4698 (i386_dr_low_get_status): Change prototype.
4699
4700 * win32-i386-low.c (dr_status_mirror, dr_control_mirror): New globals.
4701 (i386_dr_low_get_addr): New.
4702 (i386_dr_low_get_control): New.
4703 (i386_dr_low_get_status): Adjust prototype. Return
4704 dr_status_mirror.
4705 (i386_initial_stuff): Clear dr_status_mirror and
4706 dr_control_mirror.
4707 (i386_get_thread_context): Adjust.
4708 (i386_set_thread_context): Adjust.
4709 (i386_thread_added): Adjust.
4710
5f21a75b
PA
47112010-08-24 Pedro Alves <pedro@codesourcery.com>
4712
4713 * linux-low.h (linux_thread_area): Delete declaration.
4714
3e4c1235
TS
47152010-08-11 Thomas Schwinge <thomas@codesourcery.com>
4716
4717 * linux-low.c (linux_wait_1): Correctly return the ptid of the child
4718 after its termination.
4719
1971b033
PA
47202010-08-09 Pedro Alves <pedro@codesourcery.com>
4721
4722 * linux-low.c (gdb_wants_lwp_stopped): Delete.
4723 (gdb_wants_all_stopped): Delete.
4724 (linux_wait_1): Don't call them.
4725 * server.c (handle_v_cont): Tag all threads as want-stopped.
4726 (gdb_wants_thread_stopped): Fix comments. Tag the thread that
4727 stopped as "client-wants-stopped".
4728
310444ac
PA
47292010-07-31 Pedro Alves <pedro@codesourcery.com>
4730
4731 * Makefile.in (signals_h): New.
4732 (server_h): Depend on it.
4733 (server.o): Don't depend on $(signals_def).
4734 (signals.o): Depend on $(signals_def).
4735
a19cae16
JK
47362010-07-31 Jan Kratochvil <jan.kratochvil@redhat.com>
4737
4738 * Makefile.in (signals_def): New.
4739 (server_h): Append include/gdb/signals.h and signals_def.
4740 (server.o): Append signals_def.
4741
30d50328
JK
47422010-07-25 Jan Kratochvil <jan.kratochvil@redhat.com>
4743
4744 * server.c (handle_target_event): Use target_signal_to_host for
4745 resume_info.sig initialization.
4746 * target.h (struct thread_resume) <sig>: New comment.
4747
5c3216e2
OS
47482010-07-20 Ozkan Sezer <sezeroz@gmail.com>
4749
c6f46ca0
OS
4750 * server.c (handle_query): strcpy() the returned string from paddress()
4751 instead of sprintf().
5c3216e2
OS
4752 * utils.c (paddress): Return phex_nz().
4753
6bd31874
JB
47542010-07-07 Joel Brobecker <brobecker@adacore.com>
4755
4756 * server.c (handle_v_cont): Call mourn_inferior if process
4757 just exited.
4758 (myresume): Likewise.
4759
0fb4aa4b
PA
47602010-07-01 Pedro Alves <pedro@codesourcery.com>
4761
4762 Static tracepoints, and integration with UST.
4763
4764 * configure.ac: Handle --with-ust. substitute ustlibs and ustinc.
4765 * mem-break.c (uninsert_all_breakpoints)
4766 (reinsert_all_breakpoints): New.
4767 * mem-break.h (reinsert_all_breakpoints, uninsert_all_breakpoints):
4768 * tracepoint.c (ust_loaded, helper_thread_id, cmd_buf): New.
4769 (gdb_agent_ust_loaded, helper_thread_id)
4770 (gdb_agent_helper_thread_id): New macros.
4771 (struct ipa_sym_addresses): Add addr_ust_loaded,
4772 addr_helper_thread_id, addr_cmd_buf.
4773 (symbol_list): Add ust_loaded, helper_thread_id, cmd_buf.
4774 (in_process_agent_loaded_ust): New.
4775 (write_e_ust_not_loaded): New.
4776 (maybe_write_ipa_ust_not_loaded): New.
4777 (struct collect_static_trace_data_action): New.
4778 (enum tracepoint_type) <static_tracepoint>: New.
4779 (struct tracepoint) <handle>: Mention static tracepoints.
4780 (struct static_tracepoint_ctx): New.
4781 (CMD_BUF_SIZE): New.
4782 (add_tracepoint_action): Handle static tracepoint actions.
4783 (unprobe_marker_at): New.
4784 (clear_installed_tracepoints): Handle static tracepoints.
4785 (cmd_qtdp): Handle static tracepoints.
4786 (probe_marker_at): New.
4787 (cmd_qtstart): Handle static tracepoints.
4788 (response_tracepoint): Handle static tracepoints.
4789 (cmd_qtfstm, cmd_qtsstm, cmd_qtstmat): New.
4790 (handle_tracepoint_query): Handle qTfSTM, qTsSTM and qTSTMat.
4791 (get_context_regcache): Handle static tracepoints.
4792 (do_action_at_tracepoint): Handle static tracepoint actions.
4793 (traceframe_find_block_type): Handle static trace data blocks.
4794 (traceframe_read_sdata): New.
4795 (download_tracepoints): Download static tracepoint actions.
4796 [HAVE_UST] Include ust/ust.h, dlfcn.h, sys/socket.h, and sys/un.h.
4797 (GDB_PROBE_NAME): New.
4798 (ust_ops): New.
4799 (GET_UST_SYM): New.
4800 (USTF): New.
4801 (dlsym_ust): New.
4802 (ust_marker_to_static_tracepoint): New.
4803 (gdb_probe): New.
4804 (collect_ust_data_at_tracepoint): New.
4805 (gdb_ust_probe): New.
4806 (UNIX_PATH_MAX, SOCK_DIR): New.
4807 (gdb_ust_connect_sync_socket): New.
4808 (resume_thread, stop_thread): New.
4809 (run_inferior_command): New.
4810 (init_named_socket): New.
4811 (gdb_ust_socket_init): New.
4812 (cstr_to_hexstr): New.
4813 (next_st): New.
4814 (first_marker, next_marker): New.
4815 (response_ust_marker): New.
4816 (cmd_qtfstm, cmd_qtsstm): New.
4817 (unprobe_marker_at, probe_marker_at): New.
4818 (cmd_qtstmat, gdb_ust_thread): New.
4819 (gdb_ust_init): New.
4820 (initialize_tracepoint_ftlib): Call gdb_ust_init.
4821 * linux-amd64-ipa.c [HAVE_UST]: Include ust/processor.h
4822 (ST_REGENTRY): New.
4823 (x86_64_st_collect_regmap): New.
4824 (X86_64_NUM_ST_COLLECT_GREGS): New.
4825 (AMD64_RIP_REGNUM): New.
4826 (supply_static_tracepoint_registers): New.
4827 * linux-i386-ipa.c [HAVE_UST]: Include ust/processor.h
4828 (ST_REGENTRY): New.
4829 (i386_st_collect_regmap): New.
4830 (i386_NUM_ST_COLLECT_GREGS): New.
4831 (supply_static_tracepoint_registers): New.
4832 * server.c (handle_query): Handle qXfer:statictrace:read.
4833 <qSupported>: Report support for StaticTracepoints, and
4834 qXfer:statictrace:read features.
4835 * server.h (traceframe_read_sdata)
4836 (supply_static_tracepoint_registers): Declare.
4837 * remote-utils.c (convert_int_to_ascii, hexchars, ishex, tohex)
4838 (unpack_varlen_hex): Include in IPA build.
4839 * Makefile.in (ustlibs, ustinc): New.
4840 (IPA_OBJS): Add remote-utils-ipa.o.
4841 ($(IPA_LIB)): Link -ldl and -lpthread.
4842 (UST_CFLAGS): New.
4843 (IPAGENT_CFLAGS): Add UST_CFLAGS.
4844 * config.in, configure: Regenerate.
4845
9e4344e5
PA
48462010-06-20 Ian Lance Taylor <iant@google.com>
4847 Pedro Alves <pedro@codesourcery.com>
4848
4849 * linux-x86-low.c (always_true): Delete.
4850 (EMIT_ASM, EMIT_ASM32): Use an uncondition asm jmp instead of
4851 trying to fool the compiler with always_true.
4852
c6beb2cb
PA
48532010-06-20 Pedro Alves <pedro@codesourcery.com>
4854
4855 * tracepoint.c (condition_true_at_tracepoint): Don't run compiled
4856 conditions in gdbserver.
4857
d2ed6730
UW
48582010-06-19 Ulrich Weigand <uweigand@de.ibm.com>
4859
4860 * spu-low.c (spu_read_memory): Wrap around local store limit.
4861 (spu_write_memory): Likewise.
4862
4e29fb54
PA
48632010-06-15 Pedro Alves <pedro@codesourcery.com>
4864
4865 * linux-x86-low.c (amd64_emit_const, amd64_emit_void_call_2)
4866 (i386_emit_const, i386_emit_void_call_2): Replace int64_t uses with
4867 LONGEST uses.
4868 * server.h (struct emit_ops): Replace int64_t uses with LONGEST
4869 uses.
4870 * tracepoint.c (emit_const, emit_void_call_2): Replace int64_t
4871 uses with LONGEST uses.
4872
6a271cae
PA
48732010-06-14 Stan Shebs <stan@codesourcery.com>
4874 Pedro Alves <pedro@codesourcery.com>
4875
4876 Bytecode compiler.
4877
4878 * linux-x86-low.c: Include limits.h.
4879 (add_insns): New.
4880 (always_true): New.
4881 (EMIT_ASM): New.
4882 (EMIT_ASM32): New.
4883 (amd64_emit_prologue, amd64_emit_epilogue, amd64_emit_add)
4884 (amd64_emit_sub, amd64_emit_mul, amd64_emit_lsh)
4885 (amd64_emit_rsh_signed, amd64_emit_rsh_unsigned, amd64_emit_ext,
4886 (amd64_emit_log_not, amd64_emit_bit_and, amd64_emit_bit_or)
4887 (amd64_emit_bit_xor, amd64_emit_bit_not, amd64_emit_equal,
4888 (amd64_emit_less_signed, amd64_emit_less_unsigned, amd64_emit_ref,
4889 (amd64_emit_if_goto, amd64_emit_goto, amd64_write_goto_address)
4890 (amd64_emit_const, amd64_emit_call, amd64_emit_reg)
4891 (amd64_emit_pop, amd64_emit_stack_flush, amd64_emit_zero_ext)
4892 (amd64_emit_swap, amd64_emit_stack_adjust, amd64_emit_int_call_1)
4893 (amd64_emit_void_call_2): New.
4894 (amd64_emit_ops): New.
4895 (i386_emit_prologue, i386_emit_epilogue, i386_emit_add)
4896 (i386_emit_sub,i386_emit_mul, i386_emit_lsh, i386_emit_rsh_signed)
4897 (i386_emit_rsh_unsigned, i386_emit_ext, i386_emit_log_not)
4898 (i386_emit_bit_and, i386_emit_bit_or, i386_emit_bit_xor)
4899 (i386_emit_bit_not, i386_emit_equal, i386_emit_less_signed)
4900 (i386_emit_less_unsigned, i386_emit_ref, i386_emit_if_goto)
4901 (i386_emit_goto, i386_write_goto_address, i386_emit_const)
4902 (i386_emit_call, i386_emit_reg, i386_emit_pop)
4903 (i386_emit_stack_flush, i386_emit_zero_ext, i386_emit_swap)
4904 (i386_emit_stack_adjust, i386_emit_int_call_1)
4905 (i386_emit_void_call_2): New.
4906 (i386_emit_ops): New.
4907 (x86_emit_ops): New.
4908 (the_low_target): Install x86_emit_ops.
4909 * server.h (struct emit_ops): New.
4910 (get_raw_reg_func_addr): Declare.
4911 (current_insn_ptr, emit_error): Declare.
4912 * tracepoint.c (get_raw_reg, get_trace_state_variable_value)
4913 (set_trace_state_variable_value): New defines.
4914 (struct ipa_sym_addresses): New fields addr_get_raw_reg,
4915 addr_get_trace_state_variable_value and
4916 addr_set_trace_state_variable_value.
4917 (symbol_list): New fields for get_raw_reg,
4918 get_trace_state_variable_value and set_trace_state_variable_value.
4919 (condfn): New typedef.
4920 (struct tracepoint): New field `compiled_cond'.
4921 (do_action_at_tracepoint): Clear compiled_cond.
4922 (get_trace_state_variable_value, set_trace_state_variable_value):
4923 Export in the IPA.
4924 (condition_true_at_tracepoint): If there's a compiled condition,
4925 run that.
4926 (current_insn_ptr, emit_error): New globals.
4927 (struct bytecode_address): New.
4928 (get_raw_reg_func_addr): New.
4929 (emit_prologue, emit_epilogue, emit_add, emit_sub, emit_mul)
4930 (emit_lsh, emit_rsh_signed, emit_rsh_unsigned, emit_ext)
4931 (emit_log_not, emit_bit_and, emit_bit_or, emit_bit_xor)
4932 (emit_bit_not, emit_equal, emit_less_signed, emit_less_unsigned)
4933 (emit_ref, emit_if_goto, emit_goto, write_goto_address, emit_const)
4934 (emit_reg, emit_pop, emit_stack_flush, emit_zero_ext, emit_swap)
4935 (emit_stack_adjust, emit_int_call_1, emit_void_call_2): New.
4936 (compile_tracepoint_condition, compile_bytecodes): New.
4937 * target.h (emit_ops): Forward declare.
4938 (struct target_ops): New field emit_ops.
4939 (target_emit_ops): New.
4940 * linux-amd64-ipa.c (gdb_agent_get_raw_reg): New.
4941 * linux-i386-ipa.c (gdb_agent_get_raw_reg): New.
4942 * linux-low.c (linux_emit_ops): New.
4943 (linux_target_ops): Install it.
4944 * linux-low.h (struct linux_target_ops): New field emit_ops.
4945
92b72907
UW
49462010-06-14 Ulrich Weigand <uweigand@de.ibm.com>
4947
4948 * linux-ppc-low.c (ppc_arch_setup): Use private regcache to test MSR.
4949 * linux-s390-low.c (ppc_arch_setup): Use private regcache to test PSW.
4950
fa593d66
PA
49512010-06-01 Pedro Alves <pedro@codesourcery.com>
4952 Stan Shebs <stan@codesourcery.com>
4953
4954 * Makefile.in (IPA_DEPFILES, extra_libraries): New.
4955 (all): Depend on $(extra_libraries).
4956 (install-only): Install the IPA.
4957 (IPA_OBJS, IPA_LIB): New.
4958 (clean): Remove the IPA lib.
4959 (IPAGENT_CFLAGS): New.
4960 (tracepoint-ipa.o, utils-ipa.o, remote-utils-ipa.o)
4961 (regcache-ipa.o, i386-linux-ipa.o, linux-i386-ipa.o)
4962 (linux-amd64-ipa.o, amd64-linux-ipa.o): New rules.
4963 * linux-amd64-ipa.c, linux-i386-ipa.c: New files.
4964 * configure.ac: Check for atomic builtins support in the compiler.
4965 (IPA_DEPFILES, extra_libraries): Define.
4966 * configure.srv (ipa_obj): Add description.
4967 (ipa_i386_linux_regobj, ipa_amd64_linux_regobj): Define.
4968 (i[34567]86-*-linux*): Set ipa_obj.
4969 (x86_64-*-linux*): Set ipa_obj.
4970 * linux-low.c (stabilizing_threads): New.
4971 (supports_fast_tracepoints): New.
4972 (linux_detach): Stabilize threads before detaching.
4973 (handle_tracepoints): Handle internal tracing breakpoints. Assert
4974 the lwp is either not stabilizing, or is moving out of a jump pad.
4975 (linux_fast_tracepoint_collecting): New.
4976 (maybe_move_out_of_jump_pad): New.
4977 (enqueue_one_deferred_signal): New.
4978 (dequeue_one_deferred_signal): New.
4979 (linux_wait_for_event_1): If moving out of a jump pad, defer
4980 pending signals to later.
4981 (linux_stabilize_threads): New.
4982 (linux_wait_1): Check if threads need moving out of jump pads, and
4983 do it if so.
4984 (stuck_in_jump_pad_callback): New.
4985 (move_out_of_jump_pad_callback): New.
4986 (lwp_running): New.
4987 (linux_resume_one_lwp): Handle moving out of jump pads.
4988 (linux_set_resume_request): Dequeue deferred signals.
4989 (need_step_over_p): Also step over fast tracepoint jumps.
4990 (start_step_over): Also uninsert fast tracepoint jumps.
4991 (finish_step_over): Also reinsert fast tracepoint jumps.
4992 (linux_install_fast_tracepoint_jump): New.
4993 (linux_target_ops): Install linux_stabilize_threads and
4994 linux_install_fast_tracepoint_jump_pad.
4995 * linux-low.h (linux_target_ops) <get_thread_area,
4996 install_fast_tracepoint_jump_pad>: New fields.
4997 (struct lwp_info) <collecting_fast_tracepoint,
4998 pending_signals_to_report, exit_jump_pad_bkpt>: New fields.
4999 (linux_get_thread_area): Declare.
5000 * linux-x86-low.c (jump_insn): New.
5001 (x86_get_thread_area): New.
5002 (append_insns): New.
5003 (push_opcode): New.
5004 (amd64_install_fast_tracepoint_jump_pad): New.
5005 (i386_install_fast_tracepoint_jump_pad): New.
5006 (x86_install_fast_tracepoint_jump_pad): New.
5007 (the_low_target): Install x86_get_thread_area and
5008 x86_install_fast_tracepoint_jump_pad.
5009 * mem-break.c (set_raw_breakpoint_at): Use read_inferior_memory.
5010 (struct fast_tracepoint_jump): New.
5011 (fast_tracepoint_jump_insn): New.
5012 (fast_tracepoint_jump_shadow): New.
5013 (find_fast_tracepoint_jump_at): New.
5014 (fast_tracepoint_jump_here): New.
5015 (delete_fast_tracepoint_jump): New.
5016 (set_fast_tracepoint_jump): New.
5017 (uninsert_fast_tracepoint_jumps_at): New.
5018 (reinsert_fast_tracepoint_jumps_at): New.
5019 (set_breakpoint_at): Use write_inferior_memory.
5020 (uninsert_raw_breakpoint): Use write_inferior_memory.
5021 (check_mem_read): Mask out fast tracepoint jumps.
5022 (check_mem_write): Mask out fast tracepoint jumps.
5023 * mem-break.h (struct fast_tracepoint_jump): Forward declare.
5024 (set_fast_tracepoint_jump): Declare.
5025 (delete_fast_tracepoint_jump)
5026 (fast_tracepoint_jump_here, uninsert_fast_tracepoint_jumps_at)
5027 (reinsert_fast_tracepoint_jumps_at): Declare.
5028 * regcache.c: Don't compile many functions when building the
5029 in-process agent library.
5030 (init_register_cache) [IN_PROCESS_AGENT]: Don't allow allocating
5031 the register buffer in the heap.
5032 (free_register_cache): If the register buffer isn't owned by the
5033 regcache, don't free it.
5034 (set_register_cache) [IN_PROCESS_AGENT]: Don't re-alocate
5035 pre-existing register caches.
5036 * remote-utils.c (convert_int_to_ascii): Constify `from' parameter
5037 type.
5038 (convert_ascii_to_int): : Constify `from' parameter type.
5039 (decode_M_packet, decode_X_packet): Replace the `to' parameter by
5040 a `to_p' pointer to pointer parameter. If TO_P is NULL, malloc
5041 the needed buffer in-place.
5042 (relocate_instruction): New.
5043 * server.c (handle_query) <qSymbols>: If the target supports
5044 tracepoints, give it a chance of looking up symbols. Report
5045 support for fast tracepoints.
5046 (handle_status): Stabilize threads.
5047 (process_serial_event): Adjust.
5048 * server.h (struct fast_tracepoint_jump): Forward declare.
5049 (struct process_info) <fast_tracepoint_jumps>: New field.
5050 (convert_ascii_to_int, convert_int_to_ascii): Adjust.
5051 (decode_X_packet, decode_M_packet): Adjust.
5052 (relocate_instruction): Declare.
5053 (in_process_agent_loaded): Declare.
5054 (tracepoint_look_up_symbols): Declare.
5055 (struct fast_tpoint_collect_status): Declare.
5056 (fast_tracepoint_collecting): Declare.
5057 (force_unlock_trace_buffer): Declare.
5058 (handle_tracepoint_bkpts): Declare.
5059 (initialize_low_tracepoint)
5060 (supply_fast_tracepoint_registers) [IN_PROCESS_AGENT]: Declare.
5061 * target.h (struct target_ops) <stabilize_threads,
5062 install_fast_tracepoint_jump_pad>: New fields.
5063 (stabilize_threads, install_fast_tracepoint_jump_pad): New.
5064 * tracepoint.c [HAVE_MALLOC_H]: Include malloc.h.
5065 [HAVE_STDINT_H]: Include stdint.h.
5066 (trace_debug_1): Rename to ...
5067 (trace_vdebug): ... this.
5068 (trace_debug): Rename to ...
5069 (trace_debug_1): ... this. Add `level' parameter.
5070 (trace_debug): New.
5071 (ATTR_USED, ATTR_NOINLINE): New.
5072 (IP_AGENT_EXPORT): New.
5073 (gdb_tp_heap_buffer, gdb_jump_pad_buffer, gdb_jump_pad_buffer_end)
5074 (collecting, gdb_collect, stop_tracing, flush_trace_buffer)
5075 (about_to_request_buffer_space, trace_buffer_is_full)
5076 (stopping_tracepoint, expr_eval_result, error_tracepoint)
5077 (tracepoints, tracing, trace_buffer_ctrl, trace_buffer_ctrl_curr)
5078 (trace_buffer_lo, trace_buffer_hi, traceframe_read_count)
5079 (traceframe_write_count, traceframes_created)
5080 (trace_state_variables)
5081 New renaming defines.
5082 (struct ipa_sym_addresses): New.
5083 (STRINGIZE_1, STRINGIZE, IPA_SYM): New.
5084 (symbol_list): New.
5085 (ipa_sym_addrs): New.
5086 (all_tracepoint_symbols_looked_up): New.
5087 (in_process_agent_loaded): New.
5088 (write_e_ipa_not_loaded): New.
5089 (maybe_write_ipa_not_loaded): New.
5090 (tracepoint_look_up_symbols): New.
5091 (debug_threads) [IN_PROCESS_AGENT]: New.
5092 (read_inferior_memory) [IN_PROCESS_AGENT]: New.
5093 (UNKNOWN_SIDE_EFFECTS): New.
5094 (stop_tracing): New.
5095 (flush_trace_buffer): New.
5096 (stop_tracing_bkpt): New.
5097 (flush_trace_buffer_bkpt): New.
5098 (read_inferior_integer): New.
5099 (read_inferior_uinteger): New.
5100 (read_inferior_data_pointer): New.
5101 (write_inferior_data_pointer): New.
5102 (write_inferior_integer): New.
5103 (write_inferior_uinteger): New.
5104 (struct collect_static_trace_data_action): Delete.
5105 (enum tracepoint_type): New.
5106 (struct tracepoint) <type>: New field `type'.
43aaf8b6
PA
5107 <actions_str, step_actions, step_actions_str>: Only include in
5108 GDBserver.
fa593d66
PA
5109 <orig_size, obj_addr_on_target, adjusted_insn_addr>
5110 <adjusted_insn_addr_end, jump_pad, jump_pad_end>: New fields.
5111 (tracepoints): Use IP_AGENT_EXPORT.
5112 (last_tracepoint): Don't include in the IPA.
5113 (stopping_tracepoint): Use IP_AGENT_EXPORT.
5114 (trace_buffer_is_full): Use IP_AGENT_EXPORT.
5115 (alloced_trace_state_variables): New.
5116 (trace_state_variables): Use IP_AGENT_EXPORT.
5117 (traceframe_t): Delete unused variable.
5118 (circular_trace_buffer): Don't include in the IPA.
5119 (trace_buffer_start): Delete.
5120 (struct trace_buffer_control): New.
5121 (trace_buffer_free): Delete.
5122 (struct ipa_trace_buffer_control): New.
5123 (GDBSERVER_FLUSH_COUNT_MASK, GDBSERVER_FLUSH_COUNT_MASK_PREV)
5124 (GDBSERVER_FLUSH_COUNT_MASK_CURR, GDBSERVER_UPDATED_FLUSH_COUNT_BIT):
5125 New.
5126 (trace_buffer_ctrl): New.
5127 (TRACE_BUFFER_CTRL_CURR): New.
5128 (trace_buffer_start, trace_buffer_free, trace_buffer_end_free):
5129 Reimplement as macros.
5130 (trace_buffer_wrap): Delete.
5131 (traceframe_write_count, traceframe_read_count)
5132 (traceframes_created, tracing): Use IP_AGENT_EXPORT.
5133 (struct tracepoint_hit_ctx) <type>: New field.
5134 (struct fast_tracepoint_ctx): New.
5135 (memory_barrier): New.
5136 (cmpxchg): New.
5137 (record_tracepoint_error): Update atomically in the IPA.
5138 (clear_inferior_trace_buffer): New.
5139 (about_to_request_buffer_space): New.
5140 (trace_buffer_alloc): Handle GDBserver and inferior simulatenous
5141 updating the same buffer.
5142 (add_tracepoint): Default the tracepoint's type to trap
5143 tracepoint, and orig_size to -1.
5144 (get_trace_state_variable) [IN_PROCESS_AGENT]: Handle allocated
5145 internal variables.
5146 (create_trace_state_variable): New parameter `gdb'. Handle it.
5147 (clear_installed_tracepoints): Clear fast tracepoint jumps.
5148 (cmd_qtdp): Handle fast tracepoints.
5149 (cmd_qtdv): Adjust.
5150 (max_jump_pad_size): New.
5151 (gdb_jump_pad_head): New.
5152 (get_jump_space_head): New.
5153 (claim_jump_space): New.
5154 (sort_tracepoints): New.
5155 (MAX_JUMP_SIZE): New.
5156 (cmd_qtstart): Handle fast tracepoints. Sync tracepoints with the
5157 IPA.
5158 (stop_tracing) [IN_PROCESS_AGENT]: Don't include the tdisconnected
5159 support. Upload fast traceframes, and delete internal IPA
5160 breakpoints.
5161 (stop_tracing_handler): New.
5162 (flush_trace_buffer_handler): New.
5163 (cmd_qtstop): Upload fast tracepoints.
5164 (response_tracepoint): Handle fast tracepoints.
5165 (tracepoint_finished_step): Upload fast traceframes. Set the
5166 tracepoint hit context's tracepoint type.
5167 (handle_tracepoint_bkpts): New.
5168 (tracepoint_was_hit): Set the tracepoint hit context's tracepoint
5169 type. Add comment about fast tracepoints.
5170 (collect_data_at_tracepoint) [IN_PROCESS_AGENT]: Don't access the
5171 non-existing action_str field.
5172 (get_context_regcache): Handle fast tracepoints.
5173 (do_action_at_tracepoint) [!IN_PROCESS_AGENT]: Don't write the PC
5174 to the regcache.
5175 (fast_tracepoint_from_jump_pad_address): New.
5176 (fast_tracepoint_from_ipa_tpoint_address): New.
5177 (collecting_t): New.
5178 (force_unlock_trace_buffer): New.
5179 (fast_tracepoint_collecting): New.
5180 (collecting): New.
5181 (gdb_collect): New.
5182 (write_inferior_data_ptr): New.
5183 (target_tp_heap): New.
5184 (target_malloc): New.
5185 (download_agent_expr): New.
5186 (UALIGN): New.
5187 (download_tracepoints): New.
5188 (download_trace_state_variables): New.
5189 (upload_fast_traceframes): New.
5190 (IPA_FIRST_TRACEFRAME): New.
5191 (IPA_NEXT_TRACEFRAME_1): New.
5192 (IPA_NEXT_TRACEFRAME): New.
5193 [IN_PROCESS_AGENT]: Include sys/mman.h and fcntl.h.
5194 [IN_PROCESS_AGENT] (gdb_tp_heap_buffer, gdb_jump_pad_buffer)
5195 (gdb_jump_pad_buffer_end): New.
5196 [IN_PROCESS_AGENT] (initialize_tracepoint_ftlib): New.
5197 (initialize_tracepoint): Adjust.
5198 [IN_PROCESS_AGENT]: Allocate the IPA heap, and jump pad scratch
5199 buffer. Initialize the low module.
5200 * utils.c (PREFIX, TOOLNAME): New.
5201 (malloc_failure): Use PREFIX.
5202 (error): In the IPA, an error causes an exit.
5203 (fatal, warning): Use PREFIX.
5204 (internal_error): Use TOOLNAME.
5205 (NUMCELLS): Increase to 10.
5206 * configure, config.in: Regenerate.
5207
d149dd1d
PA
52082010-06-01 Pedro Alves <pedro@codesourcery.com>
5209
5210 * server.c (handle_query) <qSupported>: Do two passes over the
5211 qSupported string to avoid nesting strtok.
5212
f6528abd
JK
52132010-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
5214
5215 * Makefile.in (SFILES): Add $(srcdir)/proc-service.list.
5216 (CDEPS): New.
5217 * configure.ac (RDYNAMIC): New AC_MSG_CHECKING wrapping. Test also
5218 -Wl,--dynamic-list.
5219 * configure: Regenerate.
5220 * proc-service.list: New.
5221
ca2a87a0
JK
52222010-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
5223
5224 * linux-low.c (linux_core_of_thread): Fix crash on invalid CONTENT.
5225 New comment.
5226
363a6e9f
OS
52272010-05-26 Ozkan Sezer <sezeroz@gmail.com>
5228
5229 * gdbreplay.c (remote_open): Check error return from socket() call by
5230 its equality to -1 not by it being negative.
5231 * remote-utils.c (remote_open): Likewise.
5232
d23b6cb1
PA
52332010-05-23 Pedro Alves <pedro@codesourcery.com>
5234
5235 * config.h: Regenerate.
5236
28d3cf85
MK
52372010-05-19 Maxim Kuvyrkov <maxim@codesourcery.com>
5238
5239 * linux-m68k-low.c (ps_get_thread_area): Don't define if kernel
5240 doesn't provide PTRACE_GET_THREAD_AREA.
5241
fea36a59
MK
52422010-05-19 Maxim Kuvyrkov <maxim@codesourcery.com>
5243
5244 * linux-m68k-low.c: Include <asm/ptrace.h>
5245 (ps_get_thread_area): Implement.
5246
24b066ba
DE
52472010-05-03 Doug Evans <dje@google.com>
5248
5249 * event-loop.c (struct callback_event): New struct.
5250 (callback_list): New global.
5251 (append_callback_event, delete_callback_event): New functions.
5252 (process_callback): New function.
5253 (start_event_loop): Call it.
5254 * remote-utils.c (NOT_SCHEDULED): Define.
5255 (readchar_buf, readchar_bufcnt, readchar_bufp): New static globals,
5256 moved out of readchar.
5257 (readchar): Rewrite. Call reschedule before returning.
5258 (reset_readchar): New function.
5259 (remote_close): Call it.
5260 (process_remaining, reschedule): New functions.
5261 * server.h (callback_handler_func): New typedef.
5262 (append_callback_event, delete_callback_event): Declare.
5263
9836d6ea
PA
52642010-05-03 Pedro Alves <pedro@codesourcery.com>
5265
5266 * proc-service.c (ps_pglobal_lookup): Use
5267 thread_db_look_up_one_symbol.
5268 * remote-utils.c (look_up_one_symbol): Add new `may_ask_gdb'
5269 parameter. Use it instead of all_symbols_looked_up.
5270 * server.h (struct process_info) <all_symbols_looked_up>: Delete
5271 field.
5272 (all_symbols_looked_up): Don't declare.
5273 (look_up_one_symbol): Add new `may_ask_gdb' parameter.
5274 * thread-db.c (struct thread_db) <all_symbols_looked_up>: New
5275 field.
5276 (thread_db_look_up_symbols): Adjust call to look_up_one_symbol.
5277 Set all_symbols_looked_up here.
5278 (thread_db_look_up_one_symbol): New.
5279 (thread_db_get_tls_address): Adjust.
5280 (thread_db_load_search, try_thread_db_load_1): Always allocate the
5281 thread_db object on the heap, and tentatively set it in the
5282 process structure.
5283 (thread_db_init): Don't set all_symbols_looked_up here.
5284 * linux-low.h (thread_db_look_up_one_symbol): Declare.
5285
7984d532
PA
52862010-05-03 Pedro Alves <pedro@codesourcery.com>
5287
5288 * linux-low.c (linux_kill, linux_detach): Adjust.
5289 (status_pending_p_callback): Remove redundant statement. Check
5290 for !TARGET_WAITIKIND_IGNORE, instead of
5291 TARGET_WAITKIND_STOPPED.
5292 (handle_tracepoints): Make sure LWP is locked. Adjust.
5293 (linux_wait_for_event_1): Adjust.
5294 (linux_cancel_breakpoints): New.
5295 (unsuspend_one_lwp): New.
5296 (unsuspend_all_lwps): New.
5297 (linux_wait_1): If finishing a step-over, unsuspend all lwps.
5298 (send_sigstop_callback): Change return type to int, add new
5299 `except' parameter and handle it.
5300 (suspend_and_send_sigstop_callback): New.
5301 (stop_all_lwps): Add new `suspend' and `expect' parameters, and
5302 pass them down. If SUSPEND, also increment the lwp's suspend
5303 count.
5304 (linux_resume_one_lwp): Add notice about resuming a suspended LWP.
5305 (need_step_over_p): Don't consider suspended LWPs.
5306 (start_step_over): Adjust.
5307 (proceed_one_lwp): Change return type to int, add new `except'
5308 parameter and handle it.
5309 (unsuspend_and_proceed_one_lwp): New.
5310 (proceed_all_lwps): Use find_inferior instead of
5311 for_each_inferior.
5312 (unstop_all_lwps): Add `unsuspend' parameter. If UNSUSPEND, them
5313 also decrement the suspend count of LWPs. Pass `except' down,
5314 instead of hacking its suspend count.
5315 (linux_pause_all): Add `freeze' parameter. Adjust.
5316 (linux_unpause_all): New.
5317 (linux_target_ops): Install linux_unpause_all.
5318 * server.c (handle_status): Adjust.
5319 * target.h (struct target_ops): New fields `unpause_all' and
5320 `cancel_breakpoints'. Add new parameter to `pause_all'.
5321 (pause_all): Add new `freeze' parameter.
5322 (unpause_all): New.
5323 (cancel_breakpoints): New.
5324 * tracepoint.c (clear_installed_tracepoints): Pause threads, and
5325 cancel breakpoints.
5326 (cmd_qtstart): Pause threads.
5327 (stop_tracing): Pause threads, and cancel breakpoints.
5328 * win32-low.c (win32_target_ops): Adjust.
5329
e471f25b
PA
53302010-05-03 Pedro Alves <pedro@codesourcery.com>
5331
5332 * linux-low.c (linux_wait_for_event_1): Move passing the signal to
5333 the inferior right away from here...
5334 (linux_wait_1): ... to here, and adjust to check the thread's
5335 last_resume_kind instead of the lwp's step or stop_expected flags.
5336
1915ef4f
PA
53372010-05-02 Pedro Alves <pedro@codesourcery.com>
5338
5339 * README: Use consistent `GDB' and `GDBserver' spellings.
5340
f9e39928
PA
53412010-05-02 Pedro Alves <pedro@codesourcery.com>
5342
5343 * linux-low.c (linux_kill_one_lwp): Assume the lwp is stopped.
5344 (linux_kill): Stop all lwps here. Don't delete the main lwp here.
5345 (linux_detach_one_lwp): Assume the lwp is stopped.
5346 (any_thread_of): Delete.
5347 (linux_detach): Stop all lwps here. Don't blindly delete all
5348 breakpoints.
5349 (delete_lwp_callback): New.
5350 (linux_mourn): Delete all lwps of the process that is gone.
5351 (linux_wait_1): Don't delete the last lwp of the process here.
5352 * mem-break.h (mark_breakpoints_out): Declare.
5353 * mem-break.c (mark_breakpoints_out): New.
5354 (free_all_breakpoints): Use it.
5355 * server.c (handle_target_event): If the process is gone, mark
5356 breakpoints out.
5357 * thread-db.c (struct thread_db) <create_bp>: New field.
5358 (thread_db_enable_reporting): Fix prototype. Store a thread event
5359 breakpoint reference in the thread_db struct.
5360 (thread_db_load_search): Clear the thread_db object.
5361 (try_thread_db_load_1): Ditto.
5362 (switch_to_process): New.
5363 (disable_thread_event_reporting): Use it.
5364 (remove_thread_event_breakpoints): New.
5365 (thread_db_detach, thread_db_mourn): Use it.
5366
1e7fc18c
PA
53672010-05-01 Pedro Alves <pedro@codesourcery.com>
5368
5369 * linux-low.c (linux_enable_event_reporting): New.
5370 (linux_wait_for_event_1, handle_extended_wait): Use it.
5371
02fc4de7
PA
53722010-04-30 Pedro Alves <pedro@codesourcery.com>
5373
5374 * linux-low.c (linux_kill_one_lwp, linux_kill)
5375 (linux_detach_one_lwp): Adjust to send_sigstop interface change.
5376 (send_sigstop): Take an lwp_info as parameter instead. Queue a
5377 SIGSTOP even if the LWP is stopped.
5378 (send_sigstop_callback): New.
5379 (stop_all_lwps): Use send_sigstop_callback instead.
5380 (linux_resume_one_thread): Adjust.
5381 (proceed_one_lwp): Still proceed an LWP that the client has
5382 requested to stop, if we haven't reported it as stopped yet. Make
5383 sure that LWPs the client want stopped, have a pending SIGSTOP.
5384
bc3b5632
DE
53852010-04-26 Doug Evans <dje@google.com>
5386
ae1ada35
DE
5387 * server.c (handle_general_set): Make static.
5388
bc3b5632
DE
5389 * remote-utils.c (putpkt_binary_1): Call readchar instead of read.
5390 Print received char after testing for error/eof instead of before.
5391 (input_interrupt): Tweak comment.
5392
65730243
DE
53932010-04-23 Doug Evans <dje@google.com>
5394
5395 * server.c (start_inferior): Print inferior argv if --debug.
5396
a8ae7dc0
AR
53972010-04-21 Aleksandar Ristovski <aristovski@qnx.com>
5398
5399 * Makefile.in (nto_low_h nto-low.o nto-x86-low.o): New dependency lists.
5400 * nto-x86-low.c: Include server.h
5401
1c07cc19
PM
54022010-04-20 Pierre Muller <muller@ics.u-strasbg.fr>
5403
5404 * win32-i386-low.c: Use __x86_64__ macro instead of __x86_64 to
5405 be consistent with other sources of this directory.
5406 (init_registers_amd64): Correct name of source file of this function
5407 in the comment.
5408
e0a61e09
PM
54092010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
5410
5411 * configure.srv (x86_64-*-mingw*): New configuration for Windows
5412 64-bit executables.
5413
54709339
PM
54142010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
5415
5416 * win32-i386-low.c: Add 64-bit support.
5417 (CONTEXT_EXTENDED_REGISTERS): Set macro to zero if not exisiting.
5418 (init_registers_amd64): Declare.
5419 (mappings): Add 64-bit version of array.
5420 (init_windows_x86): New function.
5421 (the_low_target): Change init_arch field to init_windows_x86.
5422
e8f0053d
PM
54232010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
5424
5425 * win32-low.c: Adapt to support also 64-bit architecture.
5426 (child_xfer_memory): Use uintptr_t type for local variable `addr'.
5427 (get_image_name): Use SIZE_T type for local variable `done'.
5428 (psapi_get_dll_name): Use LPVOID type for parameter `BaseAddress'.
5429 (toolhelp_get_dll_name): Idem.
5430 (handle_load_dll): Use CORE_ADDR type for local variable `load_addr'.
5431 Use uintptr_t typecast to avoid warning.
5432 (handle_unload_dll): Use uintptr_t typecast to avoid warning.
5433 (handle_exception): Use phex_nz to avoid warning.
5434 (win32_wait): Remove unused local variable `process'.
5435
c481e77e
PM
54362010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
5437
5438 * configure.srv (srv_amd64_regobj): Replace `x86-64-avx.o' by
5439 `amd64-avx.o'.
5440
12ea4b69
PM
54412010-04-17 Pierre Muller <muller@ics.u-strasbg.fr>
5442
5443 * configure.ac: Use `ws2_32' library for srv_mingw.
5444 * configure: Regenerate.
5445 * gdbreplay.c: Include winsock2.h instead of winsock.h.
5446 * remote-utils.c: Likewise.
5447
f6d1620c
L
54482010-04-17 H.J. Lu <hongjiu.lu@intel.com>
5449
5450 * linux-x86-low.c (xmltarget_amd64_linux_no_xml): Define only
5451 if __x86_64__ is defined.
5452
8e642873
PM
54532010-04-16 Pierre Muller <muller@ics.u-strasbg.fr>
5454
5455 * configure: Regenerate.
5456
711e434b
PM
54572010-04-16 Pierre Muller <muller@ics.u-strasbg.fr>
5458
5459 * server.c (handle_query): Handle 'qGetTIBAddr' query.
5460 * target.h (target_ops): New get_tib_address field.
5461 * win32-low.h (win32_thread_info): Add thread_local_base field.
5462 * win32-low.c (child_add_thread): Add tlb argument.
5463 Set thread_local_base field to TLB.
5464 (get_child_debug_event): Adapt to child_add_thread change.
5465 (win32_get_tib_address): New function.
5466 (win32_target_ops): Set get_tib_address field to
5467 win32_get_tib_address.
5468 * linux-low.c (linux_target_ops): Set get_tib_address field to NULL.
5469
505106cd
PA
54702010-04-12 Pedro Alves <pedro@codesourcery.com>
5471
505106cd
PA
5472 * linux-low.c (linux_mourn): Also remove the process.
5473 * server.c (handle_target_event): Don't remove the process here.
5474 * nto-low.c (nto_mourn): New.
5475 (nto_target_ops): Install it.
5476 * spu-low.c (spu_mourn): New.
5477 (spu_target_ops): Install it.
5478 * win32-low.c (win32_mourn): New.
5479 (win32_target_ops): Install it.
5480
e8470a06
PA
54812010-04-12 Pedro Alves <pedro@codesourcery.com>
5482
5483 * server.h (buffer_xml_printf): Remove redundant `;'.
5484
45ba0d02
PA
54852010-04-12 Pedro Alves <pedro@codesourcery.com>
5486
5487 * regcache.c (set_register_cache): Invalidate regcaches before
5488 changing the register cache layout.
5489 (regcache_invalidate_one): Allow a NULL regcache.
5490 * linux-x86-low.c (x86_linux_update_xmltarget): Invalidate
5491 regcaches before changing the register cache layout or the target
5492 regsets.
5493
59e04013
L
54942010-04-12 H.J. Lu <hongjiu.lu@intel.com>
5495
5496 * linux-x86-low.c (x86_linux_update_xmltarget): Avoid unused
5497 variable warning on Linux/x86-64.
5498
8336d594
PA
54992010-04-11 Pedro Alves <pedro@codesourcery.com>
5500
5501 GDBserver disconnected tracing support.
5502
5503 * linux-low.c (linux_remove_process): Delete.
5504 (add_lwp): Don't set last_resume_kind here.
5505 (linux_kill): Use `mourn'.
5506 (linux_detach): Use `thread_db_detach', and `mourn'.
5507 (linux_mourn): New.
5508 (linux_attach_lwp_1): Adjust comment.
5509 (linux_attach): last_resume_kind moved the thread_info; adjust.
5510 (status_pending_p_callback): Adjust.
5511 (linux_wait_for_event_1): Adjust.
5512 (count_events_callback, select_singlestep_lwp_callback)
5513 (select_event_lwp_callback, cancel_breakpoints_callback)
5514 (db_wants_lwp_stopped, linux_wait_1, need_step_over_p)
5515 (proceed_one_lwp): Adjust.
5516 (linux_async): Add debug output.
5517 (linux_thread_stopped): New.
5518 (linux_pause_all): New.
5519 (linux_target_ops): Install linux_mourn, linux_thread_stopped and
5520 linux_pause_all.
5521 * linux-low.h (struct lwp_info): Delete last_resume_kind field.
5522 (thread_db_free): Delete declaration.
5523 (thread_db_detach, thread_db_mourn): Declare.
5524 * thread-db.c (thread_db_init): Use thread_db_mourn.
5525 (thread_db_free): Delete, split in two.
5526 (disable_thread_event_reporting): New.
5527 (thread_db_detach): New.
5528 (thread_db_mourn): New.
5529
5530 * server.h (struct thread_info) <last_resume_kind>: New field.
5531 <attached>: Add comment.
5532 <gdb_detached>: New field.
5533 (handler_func): Change return type to int.
5534 (handle_serial_event, handle_target_event): Ditto.
5535 (gdb_connected): Declare.
5536 (tracing): Delete.
5537 (disconnected_tracing): Declare.
5538 (stop_tracing): Declare.
5539
5540 * server.c (handle_query) <qSupported>: Report support for
5541 disconnected tracing.
5542 (queue_stop_reply_callback): Account for running threads.
5543 (gdb_wants_thread_stopped): New.
5544 (gdb_wants_all_threads_stopped): New.
5545 (gdb_reattached_process): New.
5546 (handle_status): Clear the `gdb_detached' flag of all processes.
5547 In all-stop, stop all threads.
5548 (main): Be sure to leave tfind mode. Handle disconnected tracing.
5549 (process_serial_event): If the remote connection breaks, or if an
5550 exit was forced with "monitor exit", force an event loop exit.
5551 Handle disconnected tracing on detach.
5552 (handle_serial_event): Adjust.
5553 (handle_target_event): If GDB isn't connected, forward events back
5554 to the inferior, unless the last process exited, in which case,
5555 exit gdbserver. Adjust interface.
5556
5557 * remote-utils.c (remote_open): Don't block in accept. Instead
5558 register an event loop source on the listen socket file
5559 descriptor. Refactor bits into ...
5560 (listen_desc): ... this new global.
5561 (gdb_connected): ... this new function.
5562 (enable_async_notification): ... this new function.
5563 (handle_accept_event): ... this new function.
5564 (remote_close): Clear remote_desc.
5565
5566 * inferiors.c (add_thread): Set the new thread's last_resume_kind.
5567
5568 * target.h (struct target_ops) <mourn, thread_stopped, pause_all>:
5569 New fields.
5570 (mourn_inferior): Define.
5571 (target_process_qsupported): Avoid the dangling else problem.
5572 (thread_stopped): Define.
5573 (pause_all): Define.
5574 (target_waitstatus_to_string): Declare.
5575 * target.c (target_waitstatus_to_string): New.
5576
5577 * tracepoint.c (tracing): Make extern.
5578 (disconnected_tracing): New.
5579 (stop_tracing): Make extern. Handle tracing stops due to GDB
5580 disconnecting.
5581 (cmd_qtdisconnected): New.
5582 (cmd_qtstatus): Report disconnected tracing status in trace reply.
5583 (handle_tracepoint_general_set): Handle QTDisconnected.
5584
5585 * event-loop.c (event_handler_func): Change return type to int.
5586 (process_event): Bail out if the event handler wants the event
5587 loop to stop.
5588 (handle_file_event): Ditto.
5589 (start_event_loop): Bail out if the event handler wants the event
5590 loop to stop.
5591
5592 * nto-low.c (nto_target_ops): Adjust.
5593 * spu-low.c (spu_wait): Don't remove the process here.
5594 (spu_target_ops): Adjust.
5595 * win32-low.c (win32_wait): Don't remove the process here.
5596 (win32_target_ops): Adjust.
5597
5d267c4c
PA
55982010-04-11 Pedro Alves <pedro@codesourcery.com>
5599
5600 * regcache.c (realloc_register_cache): Invalidate inferior's
5601 regcache before recreating it.
5602
623ccd72
PA
56032010-04-09 Pedro Alves <pedro@codesourcery.com>
5604
5605 * tracepoint.c (cmd_qtstatus): Report trace buffer circularity.
5606
219f2f23
PA
56072010-04-09 Stan Shebs <stan@codesourcery.com>
5608 Pedro Alves <pedro@codesourcery.com>
5609
5610 * server.h (LONGEST): New.
5611 (struct thread_info) <while_stepping>: New field.
5612 (unpack_varlen_hex, xrealloc, pulongest, plongest, phex_nz):
5613 Declare.
5614 (initialize_tracepoint, handle_tracepoint_general_set)
5615 (handle_tracepoint_query, tracepoint_finished_step)
5616 (tracepoint_was_hit, release_while_stepping_state_list):
5617 (current_traceframe): Declare.
5618 * server.c (handle_general_set): Handle tracepoint packets.
5619 (read_memory): New.
5620 (write_memory): New.
5621 (handle_search_memory_1): Use read_memory.
5622 (handle_query): Report support for conditional tracepoints, trace
5623 state variables, and tracepoint sources. Handle tracepoint
5624 queries.
5625 (main): Initialize the tracepoints module.
5626 (process_serial_event): Handle traceframe reads/writes.
5627
5628 * linux-low.c (handle_tracepoints): New.
5629 (linux_wait_1): Call it.
5630 (linux_resume_one_lwp): Handle while-stepping.
5631 (linux_supports_tracepoints, linux_read_pc, linux_write_pc): New.
5632 (linux_target_ops): Install them.
5633 * linux-low.h (struct linux_target_ops) <supports_tracepoints>:
5634 New field.
5635 * linux-x86-low.c (x86_supports_tracepoints): New.
5636 (the_low_target). Install it.
5637
5638 * mem-break.h (delete_breakpoint): Declare.
5639 * mem-break.c (delete_breakpoint): Make external.
5640
5641 * target.h (struct target_ops): Add `supports_tracepoints',
5642 `read_pc', and `write_pc' fields.
5643 (target_supports_tracepoints): Define.
5644 * utils.c (xrealloc, decimal2str, pulongest, plongest, thirty_two)
5645 (phex_nz): New.
5646
5647 * regcache.h (struct regcache) <registers_owned>: New field.
5648 (init_register_cache, regcache_cpy): Declare.
5649 (regcache_read_pc, regcache_write_pc): Declare.
5650 (register_cache_size): Declare.
5651 (supply_regblock): Declare.
5652 * regcache.c (init_register_cache): New.
5653 (new_register_cache): Use it.
5654 (regcache_cpy): New.
5655 (register_cache_size): New.
5656 (supply_regblock): New.
5657 (regcache_read_pc, regcache_write_pc): New.
889bf7c5 5658
219f2f23
PA
5659 * tracepoint.c: New.
5660
5661 * Makefile.in (OBS): Add tracepoint.o.
5662 (tracepoint.o): New rule.
5663
3a13a53b
L
56642010-04-08 H.J. Lu <hongjiu.lu@intel.com>
5665
5666 * Makefile.in (clean): Also remove i386-mmx.c i386-mmx-linux.c.
5667 (i386-mmx.o): New.
5668 (i386-mmx.c): Likewise.
5669 (i386-mmx-linux.o): Likewise.
5670 (i386-mmx-linux.c): Likewise.
5671
5672 * configure.srv (srv_i386_regobj): Add i386-mmx.o.
5673 (srv_i386_linux_regobj): Add i386-mmx-linux.o.
5674 (srv_i386_xmlfiles): Add i386/i386-mmx.xml.
5675 (srv_i386_linux_xmlfiles): Add i386/i386-mmx-linux.xml.
5676
5677 * linux-x86-low.c (init_registers_i386_mmx_linux): New.
5678 (x86_linux_update_xmltarget): Call init_registers_i386_mmx_linux
5679 and return if ptrace PTRACE_GETFPXREGS failed in 32bit.
5680
1570b33e
L
56812010-04-07 H.J. Lu <hongjiu.lu@intel.com>
5682
5683 * Makefile.in (clean): Updated.
5684 (i386-avx.o): New.
5685 (i386-avx.c): Likewise.
5686 (i386-avx-linux.o): Likewise.
5687 (i386-avx-linux.c): Likewise.
5688 (amd64-avx.o): Likewise.
5689 (amd64-avx.c): Likewise.
5690 (amd64-avx-linux.o): Likewise.
5691 (amd64-avx-linux.c): Likewise.
5692
5693 * configure.srv (srv_i386_regobj): Add i386-avx.o.
5694 (srv_i386_linux_regobj): Add i386-avx-linux.o.
5695 (srv_amd64_regobj): Add amd64-avx.o.
5696 (srv_amd64_linux_regobj): Add amd64-avx-linux.o.
5697 (srv_i386_32bit_xmlfiles): Add i386/32bit-avx.xml.
5698 (srv_i386_64bit_xmlfiles): Add i386/64bit-avx.xml.
5699 (srv_i386_xmlfiles): Add i386/i386-avx.xml.
5700 (srv_amd64_xmlfiles): Add i386/amd64-avx.xml.
5701 (srv_i386_linux_xmlfiles): Add i386/i386-avx-linux.xml.
5702 (srv_amd64_linux_xmlfiles): Add i386/amd64-avx-linux.xml.
5703
5704 * i387-fp.c: Include "i386-xstate.h".
5705 (i387_xsave): New.
5706 (i387_cache_to_xsave): Likewise.
5707 (i387_xsave_to_cache): Likewise.
5708 (x86_xcr0): Likewise.
5709
5710 * i387-fp.h (i387_cache_to_xsave): Likewise.
5711 (i387_xsave_to_cache): Likewise.
5712 (x86_xcr0): Likewise.
5713
5714 * linux-arm-low.c (target_regsets): Initialize nt_type to 0.
5715 * linux-crisv32-low.c (target_regsets): Likewise.
5716 * linux-m68k-low.c (target_regsets): Likewise.
5717 * linux-mips-low.c (target_regsets): Likewise.
5718 * linux-ppc-low.c (target_regsets): Likewise.
5719 * linux-s390-low.c (target_regsets): Likewise.
5720 * linux-sh-low.c (target_regsets): Likewise.
5721 * linux-sparc-low.c (target_regsets): Likewise.
5722 * linux-xtensa-low.c (target_regsets): Likewise.
5723
5724 * linux-low.c: Include <sys/uio.h>.
5725 (regsets_fetch_inferior_registers): Support nt_type.
5726 (regsets_store_inferior_registers): Likewise.
5727 (linux_process_qsupported): New.
5728 (linux_target_ops): Add linux_process_qsupported.
5729
5730 * linux-low.h (regset_info): Add nt_type.
5731 (linux_target_ops): Add process_qsupported.
5732
5733 * linux-x86-low.c: Include "i386-xstate.h", "elf/common.h"
5734 and <sys/uio.h>.
5735 (init_registers_i386_avx_linux): New.
5736 (init_registers_amd64_avx_linux): Likewise.
5737 (xmltarget_i386_linux_no_xml): Likewise.
5738 (xmltarget_amd64_linux_no_xml): Likewise.
5739 (PTRACE_GETREGSET): Likewise.
5740 (PTRACE_SETREGSET): Likewise.
5741 (x86_fill_xstateregset): Likewise.
5742 (x86_store_xstateregset): Likewise.
5743 (use_xml): Likewise.
5744 (x86_linux_update_xmltarget): Likewise.
5745 (x86_linux_process_qsupported): Likewise.
5746 (target_regsets): Add NT_X86_XSTATE entry and Initialize nt_type.
5747 (x86_arch_setup): Don't call init_registers_amd64_linux nor
5748 init_registers_i386_linux here. Call
5749 x86_linux_update_xmltarget.
5750 (the_low_target): Add x86_linux_process_qsupported.
5751
5752 * server.c (handle_query): Call target_process_qsupported.
5753
5754 * target.h (target_ops): Add process_qsupported.
5755 (target_process_qsupported): New.
5756
fc7238bb
PA
57572010-04-03 Pedro Alves <pedro@codesourcery.com>
5758
5759 * inferiors.c (add_thread): Set last_status kind to
5760 TARGET_WAITKIND_IGNORE.
5761 * linux-low.c (cancel_breakpoint): Remove unnecessary regcache
5762 fetch. Use ptid_of. Avoid unnecessary get_lwp_thread calls.
5763 (linux_wait_1): Move `thread' local definition to block that uses
5764 it. Don't NULL initialize `event_child'.
5765 (linux_resume_one_thread): Avoid unnecessary get_lwp_thread calls.
5766 Alway set the thread's last_status to TARGET_WAITKIND_IGNORE.
5767 * linux-x86-low.c (x86_breakpoint_at): Read raw memory.
5768
bdabb078
PA
57692010-04-01 Pedro Alves <pedro@codesourcery.com>
5770
5771 * linux-low.c (get_stop_pc): Don't adjust the PC if stopped with
5772 an extended waitstatus, or by a watchpoint.
5773 (cancel_breakpoints_callback): Don't cancel a breakpoint if the
5774 thread was stepping or has been stopped by a watchpoint.
5775
d3bbe7a0
PA
57762010-04-01 Pedro Alves <pedro@codesourcery.com>
5777
5778 * mem-break.c (struct raw_breakpoint): New field shlib_disabled.
5779 (set_gdb_breakpoint_at): If GDB is inserting a breakpoint on top
5780 of another, then delete the previous, and validate all
5781 breakpoints.
5782 (validate_inserted_breakpoint): New.
5783 (delete_disabled_breakpoints): New.
5784 (validate_breakpoints): New.
5785 (check_mem_read): Validate breakpoints before trusting their
5786 shadow. Delete disabled breakpoints.
5787 (check_mem_write): Validate breakpoints before trusting they
5788 should be inserted. Delete disabled breakpoints.
5789 * mem-break.h (validate_breakpoints):
5790 * server.c (handle_query): Validate breakpoints when we see a
5791 qSymbol query.
5792
8b07ae33
PA
57932010-04-01 Pedro Alves <pedro@codesourcery.com>
5794
5795 * linux-low.c (linux_wait_1): Avoid setting need_step_over is
5796 there's a GDB breakpoint at stop_pc. Always report a trap to GDB
5797 if we could tell there's a GDB breakpoint at stop_pc.
5798 (need_step_over_p): Don't do a step over if we find a GDB
5799 breakpoint at the resume PC.
5800
5801 * mem-break.c (struct raw_breakpoint): New.
5802 (enum bkpt_type): New type `gdb_breakpoint'.
5803 (struct breakpoint): Delete the `PC', `old_data' and `inserted'
5804 fields. New field `raw'.
5805 (find_raw_breakpoint_at): New.
5806 (set_raw_breakpoint_at): Handle refcounting. Create a raw
5807 breakpoint instead.
5808 (set_breakpoint_at): Adjust.
5809 (delete_raw_breakpoint): New.
5810 (release_breakpoint): New.
5811 (delete_breakpoint): Rename to...
5812 (delete_breakpoint_1): ... this. Add proc parameter. Use
5813 release_breakpoint. Return ENOENT.
5814 (delete_breakpoint): Reimplement.
5815 (find_breakpoint_at): Delete.
5816 (find_gdb_breakpoint_at): New.
5817 (delete_breakpoint_at): Delete.
5818 (set_gdb_breakpoint_at): New.
5819 (delete_gdb_breakpoint_at): New.
5820 (gdb_breakpoint_here): New.
5821 (set_reinsert_breakpoint): Use release_breakpoint.
5822 (uninsert_breakpoint): Rename to ...
5823 (uninsert_raw_breakpoint): ... this.
5824 (uninsert_breakpoints_at): Adjust to handle raw breakpoints.
5825 (reinsert_raw_breakpoint): Change parameter type to
5826 raw_breakpoint.
5827 (reinsert_breakpoints_at): Adjust to handle raw breakpoints
5828 instead.
5829 (check_breakpoints): Adjust. Use release_breakpoint.
5830 (breakpoint_here): Rewrite using find_raw_breakpoint_at.
5831 (breakpoint_inserted_here): Ditto.
5832 (check_mem_read): Adjust to iterate over raw breakpoints instead.
5833 Don't trust the breakpoint's shadow if it is not inserted.
5834 (check_mem_write): Adjust to iterate over raw breakpoints instead.
5835 (delete_all_breakpoints): Adjust.
5836 (free_all_breakpoints): Mark all breakpoints as uninserted, and
5837 use delete_breakpoint_1.
5838
5839 * mem-break.h (breakpoints_supported): Delete declaration.
5840 (set_gdb_breakpoint_at): Declare.
5841 (gdb_breakpoint_here): Declare.
5842 (delete_breakpoint_at): Delete.
5843 (delete_gdb_breakpoint_at): Declare.
5844
5845 * server.h (struct raw_breakpoint): Forward declare.
5846 (struct process_info): New field `raw_breakpoints'.
5847
5848 * linux-x86-low.c (x86_insert_point, x86_remote_point): Handle Z0
5849 breakpoints.
5850
6bf5e0ba
PA
58512010-03-24 Pedro Alves <pedro@codesourcery.com>
5852
5853 * linux-low.c (status_pending_p_callback): Fix comment.
5854 (linux_wait_for_event_1): Move most of the internal breakpoint
5855 handling from here...
5856 (linux_wait_1): ... to here.
5857 (count_events_callback): New.
5858 (select_singlestep_lwp_callback): New.
5859 (select_event_lwp_callback): New.
5860 (cancel_breakpoints_callback): New.
5861 (select_event_lwp): New.
5862 (linux_wait_1): Simplify internal breakpoint handling. Give equal
5863 priority to all LWPs that have had events that should be reported
5864 to the client. Cancel breakpoints when about to reporting the
5865 event to the client, not while stopping lwps. No longer cancel
5866 finished single-steps here.
5867 (cancel_finished_single_step): Delete.
5868 (cancel_finished_single_steps): Delete.
5869
414a389f
PA
58702010-03-24 Pedro Alves <pedro@codesourcery.com>
5871
5872 * mem-break.c (enum bkpt_type): New.
5873 (struct breakpoint): New field `type'.
5874 (set_breakpoint_at): Change return type to struct breakpoint
5875 pointer. Set type to `other_breakpoint' by default.
5876 (delete_breakpoint): Rewrite, supporting more than one breakpoint
5877 in the breakpoint list.
5878 (delete_reinsert_breakpoints): Only delete reinsert breakpoints.
5879 (reinsert_breakpoint): Rename to ...
5880 (reinsert_raw_breakpoint): ... this.
5881 (reinsert_breakpoints_at): Adjust.
5882 * mem-break.h (struct breakpoint): Declare.
5883 (set_breakpoint_at): Change return type to struct breakpoint
5884 pointer.
5885
2280c721
PA
58862010-03-24 Pedro Alves <pedro@codesourcery.com>
5887
5888 * server.c (handle_query): Assign, not compare.
5889
d50171e4
PA
58902010-03-24 Pedro Alves <pedro@codesourcery.com>
5891
5892 Teach linux gdbserver to step-over-breakpoints.
5893
5894 * linux-low.c (can_hardware_single_step): New.
5895 (supports_breakpoints): New.
5896 (handle_extended_wait): If stopping threads, read the stop pc of
5897 the new cloned LWP.
5898 (get_pc): New.
5899 (get_stop_pc): Add `lwp' parameter. Handle it. Bail out if the
5900 low target doesn't support retrieving the PC.
5901 (add_lwp): Set last_resume_kind to resume_continue.
5902 (linux_attach_lwp_1): Adjust comments. Always set stop_expected.
5903 (linux_attach): Don't clear stop_expected. Set the lwp's
5904 last_resume_kind to resume_stop.
5905 (linux_detach_one_lwp): Don't check for removed breakpoints.
5906 (check_removed_breakpoint): Delete.
5907 (status_pending_p): Rename to ...
5908 (status_pending_p_callback): ... this. Don't check for removed
5909 breakpoints. Don't consider threads that are stopped from GDB's
5910 perspective.
5911 (linux_wait_for_lwp): Always read the stop_pc here.
5912 (cancel_breakpoint): New.
5913 (step_over_bkpt): New global.
5914 (linux_wait_for_event_1): Implement stepping over breakpoints.
5915 (gdb_wants_lwp_stopped): New.
5916 (gdb_wants_all_stopped): New.
5917 (linux_wait_1): Tag threads as gdb-wants-stopped. Cancel finished
5918 single-step traps here. Store the thread's last reported target
5919 wait status.
5920 (send_sigstop): Don't clear stop_expected. Always set it,
5921 instead.
5922 (mark_lwp_dead): Remove reference to pending_is_breakpoint.
5923 (cancel_finished_single_step): New.
5924 (cancel_finished_single_steps): New.
5925 (wait_for_sigstop): Don't cancel finished single-step traps here.
5926 (linux_resume_one_lwp): Don't check for removed breakpoints.
5927 Don't set `step' on non-hardware step archs.
5928 (linux_set_resume_request): Ignore resume_stop requests if already
5929 stopping or stopped. Set the lwp's last_resume_kind.
5930 (resume_status_pending_p): Don't check for removed breakpoints.
5931 (need_step_over_p): New.
5932 (start_step_over): New.
5933 (finish_step_over): New.
5934 (linux_resume_one_thread): Always queue a sigstop for resume_stop
5935 requests. Clear the thread's last reported target waitstatus.
5936 Don't use the `suspended' flag. Don't consider pending breakpoints.
5937 (linux_resume): Start a step-over if necessary.
5938 (proceed_one_lwp): New.
5939 (proceed_all_lwps): New.
5940 (unstop_all_lwps): New.
5941 * linux-low.h (struct lwp_info): Rewrite comment for the
5942 `suspended' flag. Add the `stop_pc' field. Delete the
5943 `pending_stop_pc' field. Tweak the `stepping' flag's comment.
5944 Add `'last_resume_kind' and `need_step_over' fields.
5945 * inferiors.c (struct thread_info): Delete, moved elsewhere.
5946 * mem-break.c (struct breakpoint): Delete `reinserting' flag.
5947 Delete `breakpoint_to_reinsert' field. New flag `inserted'.
5948 (set_raw_breakpoint_at): New.
5949 (set_breakpoint_at): Rewrite to use it.
5950 (reinsert_breakpoint_handler): Delete.
5951 (set_reinsert_breakpoint): New.
5952 (reinsert_breakpoint_by_bp): Delete.
5953 (delete_reinsert_breakpoints): New.
5954 (uninsert_breakpoint): Rewrite.
5955 (uninsert_breakpoints_at): New.
5956 (reinsert_breakpoint): Rewrite.
5957 (reinsert_breakpoints_at): New.
5958 (check_breakpoints): Rewrite.
5959 (breakpoint_here): New.
5960 (breakpoint_inserted_here): New.
5961 (check_mem_read): Adjust.
5962 * mem-break.h (breakpoints_supported, breakpoint_here)
5963 (breakpoint_inserted_here, set_reinsert_breakpoint): Declare.
5964 (reinsert_breakpoint_by_bp): Delete declaration.
5965 (delete_reinsert_breakpoints): Declare.
5966 (reinsert_breakpoint): Delete declaration.
5967 (reinsert_breakpoints_at): Declare.
5968 (uninsert_breakpoint): Delete declaration.
5969 (uninsert_breakpoints_at): Declare.
5970 (check_breakpoints): Adjust prototype.
5971 * server.h: Adjust include order.
5972 (struct thread_info): Declare here. Add a `last_status' field.
5973
30ba68cb
MS
59742010-03-23 Michael Snyder <msnyder@vmware.com>
5975
5976 * server.c (crc32): New function.
5977 (handle_query): Add handling for 'qCRC:' request.
5978
b9a881c2
PA
59792010-03-23 Pedro Alves <pedro@codesourcery.com>
5980
5981 * linux-x86-low.c (x86_linux_prepare_to_resume): Clear DR6 if the
5982 lwp had been stopped by a watchpoint.
5983
e92d13d5
PA
59842010-03-16 Pedro Alves <pedro@codesourcery.com>
5985
5986 * server.h (internal_error): Declare.
5987 (gdb_assert, ASSERT_FUNCTION, gdb_assert_fail): Define.
5988 * utils.c (internal_error): New function.
5989
64daa791
AS
59902010-03-15 Andreas Schwab <schwab@redhat.com>
5991
5992 * configure.srv: Fix typo setting srv_regobj.
5993
f52cd8cd
PA
59942010-03-15 Pedro Alves <pedro@codesourcery.com>
5995
5996 * linux-low.c (fetch_register): Avoid passing a non string literal
5997 format to `error'.
5998 (usr_store_inferior_registers): Ditto.
5999
93ae6fdc
PA
60002010-03-14 Pedro Alves <pedro@codesourcery.com>
6001
6002 * linux-low.c (linux_write_memory): Bail out early if peeking
6003 memory failed.
6004
c3adc08c
PA
60052010-03-14 Pedro Alves <pedro@codesourcery.com>
6006
6007 * linux-low.h (struct lwp_info): New fields
6008 `stopped_by_watchpoint' and `stopped_data_address'.
6009 * linux-low.c (linux_wait_for_lwp): Check for watchpoint triggers
6010 here, and cache them in the lwp object.
6011 (wait_for_sigstop): Check stopped_by_watchpoint lwp field
6012 directly.
6013 (linux_resume_one_lwp): Clear the lwp's stopped_by_watchpoint
6014 field.
6015 (linux_stopped_by_watchpoint): Rewrite.
6016 (linux_stopped_data_address): Rewrite.
6017
bce522a2
PA
60182010-03-06 Simo Melenius <simo.melenius@iki.fi>
6019
6020 * linux-low.c (linux_wait_for_lwp): Fetch the regcache after
6021 switching the current inferior, not before.
6022
90884b2b
L
60232010-03-01 H.J. Lu <hongjiu.lu@intel.com>
6024
6025 * Makefile.in (clean): Replace reg-i386.c, reg-x86-64.c,
6026 reg-i386-linux.c and reg-x86-64-linux.c with i386.c, amd64.c,
6027 i386-linux.c and amd64-linux.c.
6028 (reg-i386.o): Removed.
6029 (reg-i386.c): Likewise.
6030 (reg-i386-linux.o): Likewise.
6031 (reg-i386-linux.c): Likewise.
6032 (reg-x86-64.o): Likewise.
6033 (reg-x86-64.c): Likewise.
6034 (reg-x86-64-linux.o): Likewise.
6035 (reg-x86-64-linux.c): Likewise.
6036 (i386.o): New.
6037 (i386.c): Likewise.
6038 (i386-linux.o): Likewise.
6039 (i386-linux.c): Likewise.
6040 (amd64.o): Likewise.
6041 (amd64.c): Likewise.
6042 (amd64-linux.o): Likewise.
6043 (amd64-linux.c): Likewise.
6044
6045 * configure.srv (srv_i386_regobj): New.
6046 (srv_i386_linux_regobj): Likewise.
6047 (srv_amd64_regobj): Likewise.
6048 (srv_amd64_linux_regobj): Likewise.
6049 (srv_i386_32bit_xmlfiles): Likewise.
6050 (srv_i386_64bit_xmlfiles): Likewise.
6051 (srv_i386_xmlfiles): Likewise.
6052 (srv_amd64_xmlfiles): Likewise.
6053 (srv_i386_linux_xmlfiles): Likewise.
6054 (srv_amd64_linux_xmlfiles): Likewise.
6055 (i[34567]86-*-cygwin*): Set srv_regobj to $srv_i386_regobj. Set
6056 srv_xmlfiles to $srv_i386_xmlfiles.
6057 (i[34567]86-*-mingw32ce*): Likewise.
6058 (i[34567]86-*-mingw*): Likewise.
6059 (i[34567]86-*-nto*): Likewise.
6060 (i[34567]86-*-linux*): Set srv_regobj to $srv_i386_linux_regobj
6061 and $srv_amd64_linux_regobj. Set srv_xmlfiles to
6062 $srv_i386_linux_xmlfiles and $srv_amd64_linux_xmlfiles.
6063 (x86_64-*-linux*): Likewise.
6064
6065 * linux-x86-low.c (init_registers_x86_64_linux): Removed.
6066 (init_registers_amd64_linux): New.
6067 (x86_arch_setup): Replace init_registers_x86_64_linux with
6068 init_registers_amd64_linux.
6069
193f13e6
MK
60702010-02-23 Maxim Kuvyrkov <maxim@codesourcery.com>
6071
6072 * configure.ac: Check for libdl. If it is not available link against
6073 static libthread_db.
6074 * configure: Regenerate.
6075
85d721b8
PA
60762010-02-22 Pedro Alves <pedro@codesourcery.com>
6077
6078 PR9605
6079
6080 * i386-low.c (i386_length_and_rw_bits): Throw a fatal error if
6081 handing a read watchpoint.
6082 (i386_low_insert_watchpoint): Read watchpoints aren't supported.
6083
6076632b
DE
60842010-02-12 Doug Evans <dje@google.com>
6085
6086 * linux-low.c (linux_supports_tracefork_flag): Document.
6087 (linux_look_up_symbols): Add comment.
6088
3327ccf7
L
60892010-02-03 H.J. Lu <hongjiu.lu@intel.com>
6090
6091 * regcache.c (supply_register): Clear regcache if buf is NULL.
6092
0718675c 60932010-02-02 Nicolas Roche <roche@sourceware.org>
3327ccf7 6094 Joel Brobecker <brobecker@adacore.com>
0718675c
JB
6095
6096 * inferiors.c (find_inferior): Add function documentation.
6097 (unloaded_dll): Handle the case where the unloaded dll has not
6098 been previously registered in the dll list.
6099
177321bd
DJ
61002010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
6101
6102 * linux-arm-low.c (thumb_breakpoint_len): Delete.
6103 (thumb2_breakpoint): New.
6104 (arm_breakpoint_at): Check for Thumb-2 breakpoints.
6105
2b009048
DJ
61062010-01-29 Daniel Jacobowitz <dan@codesourcery.com>
6107
6108 * linux-low.c (get_stop_pc): Check for SIGTRAP.
6109 (linux_wait_for_event_1): Handle SIGILL and SIGSEGV as possible
6110 breakpoints.
6111
3be029c7
PA
61122010-01-21 Pedro Alves <pedro@codesourcery.com>
6113
6114 * linux-ppc-low.c (ppc_arch_setup): Adjust to regcache changes.
6115
18f5de3b
JK
61162010-01-21 Jan Kratochvil <jan.kratochvil@redhat.com>
6117
6118 * linux-s390-low.c (s390_collect_ptrace_register)
6119 (s390_supply_ptrace_register): Adjust it for the new regcache parameter.
6120
3743bb4f
DE
61212010-01-21 Doug Evans <dje@google.com>
6122
14ce3065
DE
6123 * linux-low.c (PTRACE_ARG3_TYPE): Change from long to void*.
6124 (PTRACE_ARG4_TYPE): New macro.
6125 (handle_extended_wait): Cast ptrace arg4 to PTRACE_ARG4_TYPE.
6126 (linux_wait_for_event_1, linux_resume_one_lwp): Ditto.
6127 (fetch_register): Cast to uintptr_t before casting to PTRACE_ARG3_TYPE.
6128 (usr_store_inferior_registers): Ditto.
6129 (linux_read_memory, linux_write_memory): Ditto.
6130 (linux_test_for_tracefork): Ditto.
6131
3743bb4f
DE
6132 * linux-arm-low.c: Remove redundant include of gdb_proc_service.h.
6133 Only include elf.h if gdb_proc_service.h didn't include linux/elf.h.
6134
8b315be5
PA
61352010-01-21 Pedro Alves <pedro@codesourcery.com>
6136
6137 * proc-service.c (ps_lgetregs): Don't refetch registers from the
6138 target.
6139
85492558
PA
61402010-01-21 Pedro Alves <pedro@codesourcery.com>
6141
6142 * spu-low.c (spu_fetch_registers, spu_store_registers): Change
6143 prototype to take a regcache. Adjust.
6144
442ea881
PA
61452010-01-20 Pedro Alves <pedro@codesourcery.com>
6146
6147 * regcache.h (struct thread_info): Forward declare.
6148 (struct regcache): New.
6149 (new_register_cache): Adjust prototype.
6150 (get_thread_regcache): Declare.
6151 (free_register_cache): Adjust prototype.
6152 (registers_to_string, registers_from_string): Ditto.
6153 (supply_register, supply_register_by_name, collect_register)
6154 (collect_register_as_string, collect_register_by_name): Ditto.
6155 * regcache.c (struct inferior_regcache_data): Delete.
6156 (get_regcache): Rename to ...
6157 (get_thread_regcache): ... this. Adjust. Switch inferior before
6158 fetching registers.
6159 (regcache_invalidate_one): Adjust.
6160 (regcache_invalidate): Fix prototype.
6161 (new_register_cache): Return the new register cache.
6162 (free_register_cache): Change prototype.
6163 (realloc_register_cache): Adjust.
6164 (registers_to_string): Change prototype to take a regcache. Adjust.
6165 (registers_from_string): Ditto.
6166 (register_data): Ditto.
6167 (supply_register): Ditto.
6168 (supply_register_by_name): Ditto.
6169 (collect_register): Ditto.
6170 (collect_register_as_string): Ditto.
6171 (collect_register_by_name): Ditto.
6172 * server.c (process_serial_event): Adjust.
6173 * linux-low.h (regset_fill_func, regset_store_func): Change
6174 prototype.
6175 (get_pc, set_pc, collect_ptrace_register, supply_ptrace_register):
6176 Change prototype.
6177 * linux-low.c (get_stop_pc): Adjust.
6178 (check_removed_breakpoint): Adjust.
6179 (linux_wait_for_event): Adjust.
6180 (linux_resume_one_lwp): Adjust.
6181 (fetch_register): Add regcache parameter. Adjust.
6182 (usr_store_inferior_registers): Ditto.
6183 (regsets_fetch_inferior_registers): Ditto.
6184 (regsets_store_inferior_registers): Ditto.
6185 (linux_fetch_registers, linux_store_registers): Ditto.
6186 * i387-fp.c (i387_cache_to_fsave): Change prototype to take a
6187 regcache. Adjust.
43aaf8b6
PA
6188 (i387_fsave_to_cache, i387_cache_to_fxsave, i387_fxsave_to_cache):
6189 Ditto.
442ea881
PA
6190 * i387-fp.h (i387_cache_to_fsave, i387_fsave_to_cache): Change
6191 prototype to take a regcache.
6192 (i387_cache_to_fxsave, i387_fxsave_to_cache): Ditto.
6193 * remote-utils.c (convert_ascii_to_int, outreg)
6194 (prepare_resume_reply): Change prototype to take a regcache.
6195 Adjust.
6196 * target.h (struct target_ops) <fetch_registers, store_registers>:
6197 Change prototype to take a regcache.
6198 (fetch_inferior_registers, store_inferior_registers): Change
6199 prototype to take a regcache. Adjust.
6200 * proc-service.c (ps_lgetregs): Adjust.
6201 * linux-x86-low.c (x86_fill_gregset, x86_store_gregset)
6202 (x86_fill_fpregset, x86_store_fpregset, x86_fill_fpxregset)
6203 (x86_store_fpxregset, x86_get_pc, x86_set_pc): Change prototype to
6204 take a regcache. Adjust.
6205 * linux-arm-low.c (arm_fill_gregset, arm_store_gregset)
6206 (arm_fill_wmmxregset, arm_store_wmmxregset, arm_fill_vfpregset)
6207 (arm_store_vfpregset, arm_get_pc, arm_set_pc):
6208 (arm_breakpoint_at): Change prototype to take a regcache. Adjust.
6209 * linux-cris-low.c (cris_get_pc, cris_set_pc)
6210 (cris_cannot_fetch_register):
6211 (cris_breakpoint_at): Change prototype to take a regcache.
6212 Adjust.
6213 * linux-crisv32-low.c (cris_get_pc, cris_set_pc,
6214 cris_reinsert_addr, cris_write_data_breakpoint): Change prototype
6215 to take a regcache. Adjust.
6216 (cris_breakpoint_at, cris_insert_point, cris_remove_point):
6217 Adjust.
6218 * linux-m32r-low.c (m32r_get_pc, m32r_set_pc): Change prototype to
6219 take a regcache. Adjust.
6220 * linux-m68k-low.c (m68k_fill_gregset, m68k_store_gregset)
6221 (m68k_fill_fpregset, m68k_store_fpregset, m68k_get_pc,
6222 (m68k_set_pc): Change prototype to take a regcache. Adjust.
6223 * linux-mips-low.c (mips_get_pc):
6224 (mips_set_pc): Change prototype to take a regcache. Adjust.
6225 (mips_reinsert_addr): Adjust.
6226 (mips_collect_register): Change prototype to take a regcache.
6227 Adjust.
6228 (mips_supply_register):
6229 (mips_collect_register_32bit, mips_supply_register_32bit)
6230 (mips_fill_gregset, mips_store_gregset, mips_fill_fpregset)
6231 (mips_store_fpregset): Ditto.
43aaf8b6
PA
6232 * linux-ppc-low.c (ppc_supply_ptrace_register)
6233 (ppc_supply_ptrace_register): Ditto.
442ea881
PA
6234 (parse_spufs_run): Adjust.
6235 (ppc_get_pc, ppc_set_pc, ppc_fill_gregset, ppc_fill_vsxregset)
6236 (ppc_store_vsxregset, ppc_fill_vrregset, ppc_store_vrregset)
6237 (ppc_fill_evrregset, ppc_store_evrregset): Change prototype to
6238 take a regcache. Adjust.
6239 * linux-s390-low.c (s390_collect_ptrace_register)
6240 (s390_supply_ptrace_register, s390_fill_gregset, s390_get_pc)
6241 (s390_set_pc): Change prototype to take a regcache. Adjust.
6242 (s390_arch_setup): Adjust.
6243 * linux-sh-low.c (sh_get_pc, sh_breakpoint_at)
6244 (sh_fill_gregset): Change prototype to take a regcache. Adjust.
6245 * linux-sparc-low.c (sparc_fill_gregset_to_stack)
6246 (sparc_fill_gregset, sparc_store_gregset_from_stack)
6247 (sparc_store_gregset, sparc_get_pc): Change prototype to take a
6248 regcache. Adjust.
6249 (sparc_breakpoint_at): Adjust.
6250 * linux-xtensa-low.c (xtensa_fill_gregset):
6251 (xtensa_store_gregset):
6252 (xtensa_fill_xtregset, xtensa_store_xtregset, xtensa_get_pc)
6253 (xtensa_set_pc): Change prototype to take a regcache. Adjust.
6254 * nto-low.c (nto_fetch_registers, nto_store_registers): Change
6255 prototype to take a regcache. Adjust.
6256 * win32-arm-low.c (arm_fetch_inferior_register)
6257 (arm_store_inferior_register): Change prototype to take a
6258 regcache. Adjust.
6259 * win32-i386-low.c (i386_fetch_inferior_register)
6260 (i386_store_inferior_register): Change prototype to take a
6261 regcache. Adjust.
6262 * win32-low.c (child_fetch_inferior_registers)
6263 (child_store_inferior_registers): Change prototype to take a
6264 regcache. Adjust.
6265 (win32_wait): Adjust.
6266 (win32_fetch_inferior_registers): Change prototype to take a
6267 regcache. Adjust.
6268 (win32_store_inferior_registers): Adjust.
6269 * win32-low.h (struct win32_target_ops) <fetch_inferior_register,
6270 store_inferior_register>: Change prototype to take a regcache.
6271
60c3d7b0
DE
62722010-01-20 Doug Evans <dje@google.com>
6273
6274 * linux-low.c (linux_create_inferior): Wrap use of __SIGRTMIN in
6275 #ifdef.
6276 (linux_wait_for_event1, linux_init_signals): Ditto.
ec8ebe72 6277 (W_STOPCODE): Provide definition if missing.
60c3d7b0 6278
dc146f7c
VP
62792010-01-13 Vladimir Prus <vladimir@codesourcery.com>
6280
6281 * linux-low.c (linux_core_of_thread): New.
6282 (compare_ints, show_process, list_threads): New.
6283 (linux_qxfer_osdata): Report threads and cores.
6284 (linux_target_op): Register linux_core_of_thread.
6285 * remote-utils.c (prepare_resume_reply): Report the core.
6286 (buffer_xml_printf): Support %d specifier.
6287 * server.c (handle_threads_qxfer_proper, handle_threads_qxfer):
6288 New.
6289 (handle_query): Handle qXfer:threads. Announce availability
6290 thereof.
6291 * target.h (struct target_ops): New field core_of_thread.
6292
7803799a
UW
62932010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
6294
6295 * Makefile.in (clean): Remove new generated files.
6296 (reg-s390.o, reg-s390.c): Remove rules.
6297 (reg-s390x.o, reg-s390x.c): Likewise.
6298 (s390-linux32.o, s390-linux32.c): Add rules.
6299 (s390-linux64.o, s390-linux64.c): Likewise.
6300 (s390x-linux64.o, s390x-linux64.c): Likewise.
6301 * configure.srv (s390*-*-linux*): Update srv_regobj and srv_xmlfiles.
6302 * linux-s390-low.c: Include <elf.h>.
6303 (HWCAP_S390_HIGH_GPRS): Define if undefined.
6304 (init_registers_s390): Remove prototype.
6305 (init_registers_s390x): Likewise.
6306 (init_registers_s390_linux32): Add prototype.
6307 (init_registers_s390_linux64): Likewise.
6308 (init_registers_s390x_linux64): Likewise.
6309 (s390_num_regs_3264): New define.
6310 (s390_regmap_3264): New global variable.
6311 (s390_cannot_fetch_register): Remove obsolete check.
6312 (s390_cannot_store_register): Likewise.
6313 (s390_collect_ptrace_register): Handle upper/lower register halves.
6314 (s390_supply_ptrace_register): Likewise.
6315 (s390_fill_gregset): Update to register number changes.
6316 (s390_get_hwcap): New routine.
6317 (s390_arch_setup): Detect 32-bit process running on 64-bit system.
6318 Install appropriate regmap and register set.
6319
6e7ffa39
JB
63202010-01-01 Joel Brobecker <brobecker@adacore.com>
6321
6322 * server.c (gdbserver_version): Update copyright year to 2010.
6323 * gdbreplay.c (gdbreplay_version): Likewise.
6324
957f3f49
DE
63252009-12-28 Doug Evans <dje@google.com>
6326
6327 * linux-low.c: Delete inclusion of ansidecl.h, elf/common.h,
6328 elf/external.h. Include <elf.h> instead but only if necessary.
6329
ca5c370d
PA
63302009-12-28 Pedro Alves <pedro@codesourcery.com>
6331
6332 * linux-low.c (linux_remove_process): Remove `detaching'
6333 parameter. Don't release/detach from thread_db here.
6334 (linux_kill): Release/detach from thread_db here, ...
6335 (linux_detach): ... and here, before actually detaching.
6336 (linux_wait_1): ... and here, when a process exits.
6337 * thread-db.c (any_thread_of): New.
6338 (thread_db_free): Switch the current inferior to a thread of the
6339 passed in process.
6340
4ee62156
DE
63412009-12-21 Doug Evans <dje@google.com>
6342
d90e6a88
DE
6343 * linux-x86-low.c: Delete outdated comment about Elf32_Phdr.
6344
c5f62d5f
DE
6345 * linux-low.c (kill_lwp): Use __NR_tkill instead of SYS_tkill.
6346 Move definition of tkill_failed to ifdef __NR_tkill to avoid gcc
6347 warning ifndef __NR_tkill. Move setting of errno there too.
6348 Delete unnecessary resetting of errno after syscall.
6349 Minor comment changes to match gdb/linux-nat.c:kill_lwp.
6350
10e86dd7
DE
6351 * configure.ac: Check for dladdr.
6352 * config.in: Regenerate.
6353 * configure: Regenerate.
6354 * thread-db.c (dladdr_to_soname): Only define ifdef HAVE_DLADDR.
6355 (try_thread_db_load): Update.
6356
4ee62156
DE
6357 * linux-low.c (my_waitpid): Delete unnecessary prototype.
6358
00f515da
DE
63592009-12-18 Doug Evans <dje@google.com>
6360
e9464885
DE
6361 * event-loop.c: Include unistd.h if it exists.
6362
07d4f67e
DE
6363 * linux-low.c (my_waitpid): Move definition away from being in
6364 between linux_tracefork_child/linux_test_for_tracefork.
6365
00f515da
DE
6366 * gdb_proc_service.h (psaddr_t): Fix type.
6367 * thread-db.c (thread_db_info.td_thr_tls_get_addr_p): Fix
6368 signature to match glibc.
6369
1de1badb
DE
63702009-12-16 Doug Evans <dje@google.com>
6371
6372 * linux-low.c (linux_read_memory): Fix argument to read.
6373
aeeb81d1
PA
63742009-11-26 Pedro Alves <pedro@codesourcery.com>
6375
6376 * win32-low.c (get_child_debug_event): On EXIT_THREAD_DEBUG_EVENT
6377 events, don't leave current_inferior pointing at null.
6378
10357975
PA
63792009-11-26 Pedro Alves <pedro@codesourcery.com>
6380
6381 * win32-low.c (LOG): Delete.
6382 (OUTMSG): Output to stderr.
6383 (OUTMSG2): Conditionalize on `debug_threads' variable, instead of
6384 on compile time LOG macro.
6385 (win32_wait): Fix debug output.
6386
cf6e3471
PA
63872009-11-26 Pedro Alves <pedro@codesourcery.com>
6388
6389 * win32-low.c (win32_add_one_solib): If the dll name is
6390 "ntdll.dll", prepend the system directory to the dll path.
6391
0c85e18e
MK
63922009-11-17 Daniel Jacobowitz <dan@codesourcery.com>
6393
6394 * m68k-tdep.c (m68k_gdbarch_init): Reuse previous initialization.
6395
9ac544ce 63962009-11-17 Nathan Sidwell <nathan@codesourcery.com>
889bf7c5 6397 Vladimir Prus <vladimir@codesourcery.com>
9ac544ce
MK
6398
6399 * Makefile.in (reg-cf.o, reg-cf.c): New targets.
6400 * configure.ac: Check for __mcoldfire__ and set
6401 gdb_cv_m68k_is_coldfire.
6402 * configure.srv: Use gdb_cv_m68k_is_coldfire to select between
6403 reg-cf.o and reg-m68k.o.
6404 * configure: Regenerated.
6405
fd7dd3e6
PA
64062009-11-16 Pedro Alves <pedro@codesourcery.com>
6407
6408 * linux-low.c (linux_remove_process): Add `detaching' parameter.
6409 Pass it to thread_db_free.
6410 (linux_kill, linux_detach, linux_wait_1): Adjust to pass the
6411 proper `detaching' argument to linux_remove_process.
6412 * linux-low.h (thread_db_free): Add `detaching' parameter.
6413 * thread-db.c (thread_db_init): Pass false as `detaching' argument
6414 to thread_db_free.
6415 (thread_db_free): Add `detaching' parameter. Only
6416 call td_ta_clear_event if detaching from process.
6417
75aa492e
MK
64182009-11-12 Maxim Kuvyrkov <maxim@codesourcery.com>
6419
6420 * thread-db.c (thread_db_free): Fix typo.
6421
21e1bee4
PP
64222009-11-11 Paul Pluzhnikov <ppluzhnikov@google.com>
6423
6424 PR gdb/10838
6425 * thread-db.c (thread_db_free): Call td_ta_clear_event.
6426
8838b45e
NS
64272009-11-03 Nathan Sidwell <nathan@codesourcery.com>
6428
6429 * configure.ac (i[34567]86-*): Check if we're targetting x86-64
6430 with an i686 compiler.
6431 * configure.srv (i[34567]86-*-linux*): Pull in x86-64 handling if
6432 needed.
6433 * configure: Rebuilt.
6434
8a35fb51
SL
64352009-10-29 Sandra Loosemore <sandra@codesourcery.com>
6436
6437 PR gdb/10783
6438
6439 * server.c (handle_search_memory_1): Correct read_addr initialization
6440 in loop for searching subsequent chunks.
6441
96f15937
PP
64422009-10-29 Paul Pluzhnikov <ppluzhnikov@google.com>
6443
6444 * configure.ac: New --with-libthread-db option.
6445 * thread-db.c: Allow direct dependence on libthread_db.
6446 (thread_db_free): Adjust.
6447 * config.in: Regenerate.
6448 * configure: Likewise.
889bf7c5 6449
5f7d1694
PP
64502009-10-28 Paul Pluzhnikov <ppluzhnikov@google.com>
6451
6452 PR gdb/10757
6453 * thread-db.c (attach_thread): New function.
6454 (maybe_attach_thread): Return success/failure.
6455 (find_new_threads_callback): Adjust.
889bf7c5
PA
6456 (thread_db_find_new_threads): Loop until no new threads.
6457
88e3b899
PA
64582009-10-13 Pedro Alves <pedro@codesourcery.com>
6459
6460 * proc-service.c (ps_lgetregs): Formatting.
6461
cdbfd419
PP
64622009-10-08 Paul Pluzhnikov <ppluzhnikov@google.com>
6463
6464 * acinclude.m4: (SRV_CHECK_THREAD_DB, SRV_CHECK_TLS_GET_ADDR): Remove.
6465 * configure.ac: Adjust.
6466 * linux-low.h (struct process_info_private): Move members to struct
6467 thread_db.
6468 (thread_db_free, thread_db_handle_monitor_command): New prototype.
6469 * linux-low.c (linux_remove_process): Adjust.
6470 (linux_wait_for_event_1, linux_look_up_symbols): Likewise.
6471 * server.c (handle_query): Move code ...
6472 (handle_monitor_command): ... here. New function.
6473 * target.h (struct target_ops): New member.
6474 * thread-db.c (struct thread_db): New.
6475 (libthread_db_search_path): New variable.
6476 (thread_db_create_event, thread_db_enable_reporting)
6477 (find_one_thread, maybe_attach_thread, find_new_threads_callback)
6478 (thread_db_find_new_threads, (thread_db_get_tls_address): Adjust.
6479 (try_thread_db_load_1, dladdr_to_soname): New functions.
6480 (try_thread_db_load, thread_db_load_search): New functions.
6481 (thread_db_init): Search for libthread_db.
6482 (thread_db_free): New function.
6483 (thread_db_handle_monitor_command): Likewise.
6484 * config.in: Regenerate.
6485 * configure: Regenerate.
889bf7c5 6486
4168d2d6
UW
64872009-09-27 Ulrich Weigand <uweigand@de.ibm.com>
6488
6489 * spu-low.c (spu_kill): Wait for inferior to terminate.
6490 Call clear_inferiors.
6491 (spu_detach): Call clear_inferiors.
6492
81ecdfbb
RW
64932009-08-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
6494
6495 * aclocal.m4: Regenerate.
6496 * config.in: Likewise.
6497 * configure: Likewise.
6498
0b9ff2c0
UW
64992009-07-31 Ulrich Weigand <uweigand@de.ibm.com>
6500
6501 * linux-ppc-low.c (INSTR_SC, NR_spu_run): Define.
6502 (parse_spufs_run): New function.
6503 (ppc_get_pc, ppc_set_pc): Detect and handle SPU PC.
6504 (ppc_breakpoint_at): Handle SPU breakpoints.
6505
efcbbd14
UW
65062009-07-31 Ulrich Weigand <uweigand@de.ibm.com>
6507
6508 * linux-low.c: Include <sys/stat.h> and <sys/vfs.h>.
6509 (SPUFS_MAGIC): Define.
6510 (spu_enumerate_spu_ids): New function.
6511 (linux_qxfer_spu): New function.
6512 (linux_target_ops): Install linux_qxfer_spu.
6513
f4d9bade
UW
65142009-07-31 Ulrich Weigand <uweigand@de.ibm.com>
6515
6516 * configure.srv (powerpc*-*-linux*): Add powerpc-cell32l.o
6517 and powerpc-cell64l.o to srv_regobj. Add rs6000/powerpc-cell32l.xml
6518 and rs6000/powerpc-cell64l.xml to srv_xmlfiles.
6519 * Makefile.in (powerpc-cell32l.o, powerpc-cell32l.c): New rules.
6520 (powerpc-cell64l.o, powerpc-cell64l.c): Likewise.
6521 (clean): Handle powerpc-cell32l.c and powerpc-cell64l.c.
6522 * linux-ppc-low.c (PPC_FEATURE_CELL): Define.
6523 (init_registers_powerpc_cell32l): Add prototype.
6524 (init_registers_powerpc_cell64l): Likewise.
6525 (ppc_arch_setup): Detect Cell/B.E. architecture.
6526
96e946ca
RW
65272009-07-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
6528
6529 * Makefile.in (datarootdir): New variable.
6530
58d6951d
DJ
65312009-07-28 Daniel Jacobowitz <dan@codesourcery.com>
6532
6533 * linux-low.c (linux_write_memory): Update debugging output.
6534 * Makefile.in (clean): Add new descriptions.
6535 (arm-with-vfpv2.o, arm-with-vfpv2.c, arm-with-vfpv3.o)
6536 (arm-with-vfpv3.c, arm-with-neon.o, arm-with-neon.c): New rules.
6537 * configure.srv: Add new files for arm*-*-linux*.
6538 * linux-arm-low.c: Add new declarations.
6539 (PTRACE_GETVFPREGS, PTRACE_SETVFPREGS): Define if undefined.
6540 (arm_hwcap, HWCAP_VFP, HWCAP_IWMMXT, HWCAP_NEON, HWCAP_VFPv3)
6541 (HWCAP_VFPv3D16): New.
6542 (arm_fill_wmmxregset, arm_store_wmmxregset): Check HWCAP_IWMMXT
6543 instead of __IWMMXT__.
6544 (arm_fill_vfpregset, arm_store_vfpregset, arm_get_hwcap)
6545 (arm_arch_setup): New.
6546 (target_regsets): Remove #ifdef. Add VFP regset.
6547 (the_low_target): Use arm_arch_setup.
6548
12b42a12
DJ
65492009-07-28 Daniel Jacobowitz <dan@codesourcery.com>
6550
6551 * linux-low.c (linux_kill_one_lwp): Adjust kernel workaround to skip
6552 the main thread again.
6553
ac8c974e
AR
65542009-07-06 Aleksandar Ristovski <aristovski@qnx.com>
6555
6556 Adding Neutrino gdbserver.
6557 * configure: Regenerated.
6558 * configure.ac: Add case for srv_qnx and set LIBS accordingly.
6559 * configure.srv (i[34567]86-*-nto*): New target.
6560 * nto-low.c, nto-low.h, nto-x86-low.c: New files.
6561 * remote-utils.c [__QNX__]: Include sys/iomgr.h
6562 (nto_comctrl) [__QNX__]: New function.
6563 (enable_async_io, disable_async_io) [__QNX__]: Call nto_comctrl.
6564
4424e0c3 65652009-07-05 Danny Backx <dannybackx@users.sourceforge.net>
7437790a
PA
6566
6567 * configure.srv (i[34567]86-*-mingw32ce*): Add i386-low.o to
6568 srv_tgtobj.
6569
912cf4ba
PA
65702009-07-04 Danny Backx <dannybackx@users.sourceforge.net>
6571 Pedro Alves <pedro@codesourcery.com>
6572
6573 * win32-i386-low.c (i386_get_thread_context): Handle systems that
6574 don't support CONTEXT_EXTENDED_REGISTERS.
6575 (i386_win32_breakpoint, i386_win32_breakpoint_len): New.
6576 (the_low_target): Install them.
6577 * win32-low.c (get_child_debug_event): Handle WaitForDebugEvent
6578 failing with ERROR_PIPE_NOT_CONNECTED.
6579
aa5ca48f
DE
65802009-06-30 Doug Evans <dje@google.com>
6581 Pierre Muller <muller@ics.u-strasbg.fr>
6582
6583 Add h/w watchpoint support to x86-linux, win32-i386.
6584 * Makefile.in (SFILES): Add i386-low.c
6585 (i386_low_h): Define.
6586 (i386-low.o): Add dependencies.
6587 (linux-x86-low.o): Add i386-low.h dependency.
6588 (win32-i386-low.o): Ditto.
6589 * i386-low.c: New file.
6590 * i386-low.h: New file.
6591 * configure.srv (i[34567]86-*-cygwin*): Add i386-low.o to srv_tgtobj.
6592 (i[34567]86-*-linux*, i[34567]86-*-mingw*, x86_64-*-linux*): Ditto.
6593 * linux-low.c (linux_add_process): Initialize arch_private.
6594 (linux_remove_process): Free arch_private.
6595 (add_lwp): Initialize arch_private.
6596 (delete_lwp): Free arch_private.
6597 (linux_resume_one_lwp): Call the_low_target.prepare_to_resume if
6598 provided.
6599 * linux-low.h (process_info_private): New member arch_private.
6600 (lwp_info): New member arch_private.
6601 (linux_target_ops): New members new_process, new_thread,
6602 prepare_to_resume.
6603 (ptid_of): New macro.
6604 * linux-x86-low.c: Include stddef.h, i386-low.h.
6605 (arch_process_info): New struct.
6606 (arch_lwp_info): New struct.
6607 (x86_linux_dr_get, x86_linux_dr_set): New functions.
6608 (i386_dr_low_set_addr, i386_dr_low_set_control): New functions.
6609 (i386_dr_low_get_status): New function.
6610 (x86_insert_point, x86_remove_point): New functions.
6611 (x86_stopped_by_watchpoint): New function.
6612 (x86_stopped_data_address): New function.
6613 (x86_linux_new_process, x86_linux_new_thread): New functions.
6614 (x86_linux_prepare_to_resume): New function.
6615 (the_low_target): Add entries for insert_point, remove_point,
6616 stopped_by_watchpoint, stopped_data_address, new_process, new_thread,
6617 prepare_to_resume.
6618 * server.c (debug_hw_points): New global.
6619 (monitor_show_help): Document set debug-hw-points.
6620 (handle_query): Process "set debug-hw-points".
6621 * server.h (debug_hw_points): Declare.
6622 (paddress): Declare.
6623 * utils.c (NUMCELLS, CELLSIZE): New macros.
6624 (get_sell, xsnprintf, paddress): New functions.
6625 * win32-arm-low.c (the_low_target): Add entries for insert_point,
6626 remove_point, stopped_by_watchpoint, stopped_data_address.
6627 * win32-i386-low.c: Include i386-low.h.
6628 (debug_reg_state): Replaces dr.
6629 (i386_dr_low_set_addr, i386_dr_low_set_control): New functions.
6630 (i386_dr_low_get_status): New function.
6631 (i386_insert_point, i386_remove_point): New functions.
6632 (i386_stopped_by_watchpoint): New function.
6633 (i386_stopped_data_address): New function.
6634 (i386_initial_stuff): Update.
6635 (get_thread_context,set_thread_context,i386_thread_added): Update.
6636 (the_low_target): Add entries for insert_point,
6637 remove_point, stopped_by_watchpoint, stopped_data_address.
6638 * win32-low.c (win32_insert_watchpoint): New function.
6639 (win32_remove_watchpoint): New function.
6640 (win32_stopped_by_watchpoint): New function.
6641 (win32_stopped_data_address): New function.
6642 (win32_target_ops): Add entries for insert_watchpoint,
6643 remove_watchpoint, stopped_by_watchpoint, stopped_data_address.
6644 * win32-low.h (win32_target_ops): New members insert_point,
6645 remove_point, stopped_by_watchpoint, stopped_data_address.
6646
d993e290
PA
66472009-06-25 Pedro Alves <pedro@codesourcery.com>
6648
6649 * server.c (process_serial_event): Re-return unsupported, not
6650 error, if the type isn't recognized. Re-allow supporting only
6651 insert or remove packets. Also call require_running for
6652 breakpoints. Add missing break statement to default case. Tidy.
6653 * target.h (struct target_ops): Rename insert_watchpoint to
6654 insert_point, and remove_watchpoint to remove_point.
6655
6656 * linux-low.h (struct linux_target_ops): Likewise.
6657 * linux-low.c (linux_insert_watchpoint): Rename to ...
6658 (linux_insert_point): ... this. Adjust.
6659 (linux_remove_watchpoint): Rename to ...
6660 (linux_remove_point): ... this. Adjust.
6661 (linux_target_ops): Adjust.
6662 * linux-crisv32-low.c (cris_insert_watchpoint): Rename to ...
6663 (cris_insert_point): ... this.
6664 (cris_remove_watchpoint): Rename to ...
6665 (cris_remove_point): ... this.
6666 (the_low_target): Adjust.
6667
0f54c268
PM
66682009-06-24 Pierre Muller <muller@ics.u-strasbg.fr>
6669
6670 * server.c (handle_v_kill): Pass signal_pid to
6671 kill_inferior if multi_process is zero.
6672
c6314022
AR
66732009-06-23 Aleksandar Ristovski <aristovski@qnx.com>
6674
6675 * server.c (process_serial_event): Add support for Z0 and Z1 packet.
6676 * target.h (target_ops): Comment for *_watchpoint to make it clear
6677 the functions can get types '0' and '1'.
6678
4463ce24
AR
66792009-06-22 Aleksandar Ristovski <aristovski@qnx.com>
6680
6681 * linux-low.c (usr_fetch_inferior_registers): Remove check for regno 0.
6682 * proc-service.c (ps_lgetregs): Pass -1 to fetch all registers.
6683 * regcache.c (get_regcache): Likewise.
6684 * spu-low.c (spu_fetch_registers): Remove 0 to -1 conversion.
6685 * win32-low.c (child_fetch_inferior_registers): Remove check for
6686 regno 0.
6687
cf8fd78b
PA
66882009-06-19 Aleksandar Ristovski <aristovski@qnx.com>
6689 Pedro Alves <pedro@codesourcery.com>
6690
6691 * target.h (struct target_ops) <supports_multi_process>: New
6692 callback.
6693 (target_supports_multi_process): New.
6694 * server.c (handle_query): Even if GDB reports support, only
6695 enable multi-process if the target also supports it. Report
6696 multi-process support only if the target backend supports it.
6697 * linux-low.c (linux_supports_multi_process): New function.
6698 (linux_target_ops): Install it as target_supports_multi_process
6699 callback.
6700
47c0c975
DE
67012009-05-24 Doug Evans <dje@google.com>
6702
e09875d4
DE
6703 Global renaming of find_thread_pid to find_thread_ptid.
6704 * server.h (find_thread_ptid): Renamed from find_thread_pid.
6705 * inferiors.c (find_thread_ptid): Renamed from find_thread_pid.
6706 All callers updated.
6707
e27d73f6
DE
6708 * linux-low.c (handle_extended_wait): Use linux_resume_one_lwp
6709 to resume the newly created thread, don't call ptrace (PTRACE_CONT)
6710 directly.
6711
47c0c975
DE
6712 * linux-low.c (get_stop_pc): Print pc if debug_threads.
6713 (check_removed_breakpoint, linux_wait_for_lwp): Ditto.
6714 (linux_resume_one_lwp): Ditto.
6715
2acc282a
DE
67162009-05-23 Doug Evans <dje@google.com>
6717
6718 * linux-low.c (linux_resume_one_lwp): Change type of first arg
6719 from struct inferior_list_entry * to struct lwp_info *.
6720 All callers updated.
6721
9f1036c1
DE
67222009-05-13 Doug Evans <dje@google.com>
6723
6724 * linux-x86-low.c: Don't include assert.h.
6725 (x86_siginfo_fixup): Use fatal, not assert.
6726 (x86_arch_setup): Fix comment.
6727
d0722149
DE
67282009-05-12 Doug Evans <dje@google.com>
6729
6730 Biarch support for i386/amd64 gdbserver.
6731 * Makefile.in (SFILES): Remove linux-i386-low.c, linux-x86-64-low.c.
6732 Add linux-x86-low.c.
6733 (linux-i386-low.o, linux-x86-64-low.o): Delete.
6734 (linux-x86-low.o): Add.
6735 * linux-x86-64-low.c: Delete.
6736 * linux-i386-low.c: Delete.
6737 * linux-x86-low.c: New file.
6738 * configure.srv (i?86-linux srv_tgtobj): Replace linux-i386-low.o with
6739 linux-x86-low.o.
6740 (x86_64-linux srv_tgtobj): Replace linux-x86-64-low.o with
6741 linux-x86-low.o.
6742 (x86_64-linux srv_regobj): Add reg-i386-linux.o.
6743 * linux-low.c: Include ansidecl.h, elf/common.h, elf/external.h.
6744 (linux_child_pid_to_exec_file): New function.
6745 (elf_64_header_p, elf_64_file_p): New functions.
6746 (siginfo_fixup): New function.
6747 (linux_xfer_siginfo): New local inf_siginfo. Call siginfo_fixup to
6748 give target a chance to convert layout.
6749 * linux-low.h (linux_target_ops): New member siginfo_fixup.
6750 (linux_child_pid_to_exec_file, elf_64_file_p): Declare.
6751
fdeb2a12
DE
67522009-05-07 Doug Evans <dje@google.com>
6753
6754 * linux-low.c (regsets_fetch_inferior_registers): Fix memory leak.
6755 (regsets_store_inferior_registers): Ditto.
6756
a6dbe5df
PA
67572009-05-06 Pedro Alves <pedro@codesourcery.com>
6758
6759 PR server/10048
6760
6761 * linux-low.c (must_set_ptrace_flags): Delete.
6762 (linux_create_inferior): Set `lwp->must_set_ptrace_flags' instead
6763 of the global.
6764 (linux_attach_lwp_1): Don't set PTRACE_SETOPTIONS here. Set
6765 `lwp->must_set_ptrace_flags' instead.
ba42693b 6766 (linux_wait_for_event_1): Set ptrace options here.
a6dbe5df
PA
6767 (linux_wait_1): ... not here.
6768
5091eb23
DE
67692009-04-30 Doug Evans <dje@google.com>
6770
9f767825
DE
6771 * inferiors.c (started_inferior_callback): New function.
6772 (attached_inferior_callback): New function.
6773 (have_started_inferiors_p, have_attached_inferiors_p): New functions.
6774 * server.c (print_started_pid, print_attached_pid): New functions.
6775 (detach_or_kill_for_exit): New function.
6776 (main): Call it instead of for_each_inferior (kill_inferior_callback).
6777 * server.h (have_started_inferiors_p): Declare.
6778 (have_attached_inferiors_p): Declare.
6779
5091eb23
DE
6780 * inferiors.c (remove_process): Fix memory leak, free process.
6781 * linux-low.c (linux_remove_process): New function.
6782 (linux_kill): Call it instead of remove_process.
6783 (linux_detach, linux_wait_1): Ditto.
6784
155c8968
PA
67852009-04-19 Danny Backx <dannybackx@users.sourceforge.net>
6786
6787 * configure.srv: Add x86 Windows CE target.
6788
7fe519cb
UW
67892009-04-03 Ulrich Weigand <uweigand@de.ibm.com>
6790
6791 * inferiors.c (get_thread_process): Make global.
6792 * server.h (get_thread_process): Add prototype.
6793 * thread-db.c (find_one_thread): Use get_thread_process
6794 instead of current_process.
6795 (thread_db_get_tls_address): Do not crash if called when
6796 thread layer is not yet initialized.
6797
5472f405
UW
67982009-04-03 Ulrich Weigand <uweigand@de.ibm.com>
6799
6800 * remote-utils.c (prepare_resume_reply): Null-terminate packet.
6801 * spu-low.c (current_tid): Rename to ...
6802 (current_ptid): ... this.
6803 (fetch_ppc_register, fetch_ppc_memory, store_ppc_memory,
6804 spu_proc_xfer_spu, spu_resume, spu_request_interrupt): Use
6805 ptid_get_lwp (current_ptid) instead of current_tid.
6806 (spu_kill, spu_detach, spu_join, spu_wait): Use pid argument
6807 instead of current_tid. Use find_process_pid to verify pid
6808 argument is valid. Pass proper argument to remove_process.
6809 (spu_thread_alive): Compare current_ptid instead of current_tid.
6810 (spu_resume): Likewise.
6811
55ac2b99
PA
68122009-04-02 Pedro Alves <pedro@codesourcery.com>
6813
6814 * linux-low.c (usr_store_inferior_registers): Declare local `pid'
6815 variable.
6816
95954743
PA
68172009-04-01 Pedro Alves <pedro@codesourcery.com>
6818
6819 Implement the multiprocess extensions, and add linux multiprocess
6820 support.
6821
6822 * server.h (ULONGEST): Declare.
6823 (struct ptid, ptid_t): New.
6824 (minus_one_ptid, null_ptid): Declare.
6825 (ptid_build, pid_to_ptid, ptid_get_pid, ptid_get_lwp)
6826 (ptid_get_tid, ptid_equal, ptid_is_pid): Declare.
6827 (struct inferior_list_entry): Change `id' type from unsigned from
6828 to ptid_t.
6829 (struct sym_cache, struct breakpoint, struct
6830 process_info_private): Forward declare.
6831 (struct process_info): Declare.
6832 (current_process): Declare.
6833 (all_processes): Declare.
6834 (initialize_inferiors): Declare.
6835 (add_thread): Adjust to use ptid_t.
6836 (thread_id_to_gdb_id, thread_to_gdb_id, gdb_id_to_thread_id): Ditto.
6837 (add_process, remove_process, find_thread_pid): Declare.
6838 (find_inferior_id): Adjust to use ptid_t.
6839 (cont_thread, general_thread, step_thread): Change type to ptid_t.
6840 (multi_process): Declare.
6841 (push_event): Adjust to use ptid_t.
6842 (read_ptid, write_ptid): Declare.
6843 (prepare_resume_reply): Adjust to use ptid_t.
6844 (clear_symbol_cache): Declare.
6845 * inferiors.c (all_processes): New.
6846 (null_ptid, minus_one_ptid): New.
6847 (ptid_build, pid_to_ptid, ptid_get_pid, ptid_get_lwp)
6848 (ptid_get_tid, ptid_equal, ptid_is_pid): New.
6849 (add_thread): Change unsigned long to ptid. Remove gdb_id
6850 parameter. Adjust.
6851 (thread_id_to_gdb_id, thread_to_gdb_id): Change unsigned long to ptid.
6852 (gdb_id_to_thread): Rename to ...
6853 (find_thread_pid): ... this. Change unsigned long to ptid.
6854 (gdb_id_to_thread_id, find_inferior_id): Change unsigned long to ptid.
6855 (loaded_dll, pull_pid_from_list): Adjust.
6856 (add_process, remove_process, find_process_pid)
6857 (get_thread_process, current_process, initialize_inferiors): New.
6858 * target.h (struct thread_resume) <thread>: Change type to ptid_t.
6859 (struct target_waitstatus) <related_pid>: Ditto.
6860 (struct target_ops) <kill, detach>: Add `pid' argument. Change
6861 return type to int.
6862 (struct target_ops) <join>: Add `pid' argument.
6863 (struct target_ops) <thread_alive>: Change pid's type to ptid_t.
6864 (struct target_ops) <wait>: Add `ptid' field. Change return type
6865 to ptid.
6866 (kill_inferior, detach_inferior, join_inferior): Add `pid' argument.
6867 (mywait): Add `ptid' argument. Change return type to ptid_t.
6868 (target_pid_to_str): Declare.
6869 * target.c (set_desired_inferior): Adjust to use ptids.
6870 (mywait): Add new `ptid' argument. Adjust.
6871 (target_pid_to_str): New.
6872 * mem-break.h (free_all_breakpoints): Declare.
6873 * mem-break.c (breakpoints): Delelete.
6874 (set_breakpoint_at, delete_breakpoint, find_breakpoint_at)
6875 (check_mem_read, check_mem_write, delete_all_breakpoints): Adjust
6876 to use per-process breakpoint list.
6877 (free_all_breakpoints): New.
6878 * remote-utils.c (struct sym_cache) <name>: Drop `const'.
6879 (symbol_cache, all_symbols_looked_up): Delete.
6880 (hexchars): New.
6881 (ishex, unpack_varlen_hex, write_ptid, hex_or_minus_one,
6882 read_ptid): New.
6883 (prepare_resume_reply): Change ptid argument's type from unsigned
6884 long to ptid_t. Adjust. Implement W;process and X;process.
6885 (free_sym_cache, clear_symbol_cache): New.
6886 (look_up_one_symbol): Adjust to per-process symbol cache. *
6887 * server.c (cont_thread, general_thread, step_thread): Change type
6888 to ptid_t.
6889 (attached): Delete.
6890 (multi_process): New.
6891 (last_ptid): Change type to ptid_t.
6892 (struct vstop_notif) <ptid>: Change type to ptid_t.
6893 (queue_stop_reply, push_event): Change `ptid' argument's type to
6894 ptid_t.
6895 (discard_queued_stop_replies): Add `pid' argument.
6896 (start_inferior): Adjust to use ptids. Adjust to mywait interface
6897 changes. Don't reference the `attached' global.
6898 (attach_inferior): Adjust to mywait interface changes.
6899 (handle_query): Adjust to use ptids. Parse GDB's qSupported
6900 features. Handle and report "multiprocess+". Handle
6901 "qAttached:PID".
6902 (handle_v_cont): Adjust to use ptids. Adjust to mywait interface
6903 changes.
6904 (handle_v_kill): New.
6905 (handle_v_stopped): Adjust to use target_pid_to_str.
6906 (handle_v_requests): Allow multiple attaches and runs when
6907 multiprocess extensions are in effect. Handle "vKill".
6908 (myresume): Adjust to use ptids.
6909 (queue_stop_reply_callback): Add `arg' parameter. Handle it.
6910 (handle_status): Adjust to discard_queued_stop_replies interface
6911 change.
6912 (first_thread_of, kill_inferior_callback)
6913 (detach_or_kill_inferior_callback, join_inferiors_callback): New.
6914 (main): Call initialize_inferiors. Adjust to use ptids, killing
6915 and detaching from all inferiors. Handle multiprocess packet
6916 variants.
6917 * linux-low.h: Include gdb_proc_service.h.
6918 (struct process_info_private): New.
6919 (struct linux_target_ops) <pid_of>: Use ptid_get_pid.
6920 <lwpid_of>: Use ptid_get_lwp.
6921 (get_lwp_thread): Adjust.
6922 (struct lwp_info): Add `dead' member.
6923 (find_lwp_pid): Declare.
6924 * linux-low.c (thread_db_active): Delete.
6925 (new_inferior): Adjust comment.
6926 (inferior_pid): Delete.
6927 (linux_add_process): New.
6928 (handle_extended_wait): Adjust.
6929 (add_lwp): Change unsigned long to ptid.
6930 (linux_create_inferior): Add process to processes table. Adjust
6931 to use ptids. Don't set new_inferior here.
6932 (linux_attach_lwp): Rename to ...
6933 (linux_attach_lwp_1): ... this. Add `initial' argument. Handle
6934 it. Adjust to use ptids.
6935 (linux_attach_lwp): New.
6936 (linux_attach): Add process to processes table. Don't set
6937 new_inferior here.
6938 (struct counter): New.
6939 (second_thread_of_pid_p, last_thread_of_process_p): New.
6940 (linux_kill_one_lwp): Add `args' parameter. Handle it. Adjust to
6941 multiple processes.
6942 (linux_kill): Add `pid' argument. Handle it. Adjust to multiple
6943 processes. Remove process from process table.
6944 (linux_detach_one_lwp): Add `args' parameter. Handle it. Adjust
6945 to multiple processes.
6946 (any_thread_of): New.
6947 (linux_detach): Add `pid' argument, and handle it. Remove process
6948 from processes table.
6949 (linux_join): Add `pid' argument. Handle it.
6950 (linux_thread_alive): Change unsighed long argument to ptid_t.
6951 Consider dead lwps as not being alive.
6952 (status_pending_p): Rename `dummy' argument to `arg'. Filter out
6953 threads we're not interested in.
6954 (same_lwp, find_lwp_pid): New.
6955 (linux_wait_for_lwp): Change `pid' argument's type from int to
6956 ptid_t. Adjust.
6957 (linux_wait_for_event): Rename to ...
6958 (linux_wait_for_event_1): ... this. Change `pid' argument's type
6959 from int to ptid_t. Adjust.
6960 (linux_wait_for_event): New.
6961 (linux_wait_1): Add `ptid' argument. Change return type to
6962 ptid_t. Adjust. Use last_thread_of_process_p. Remove processes
6963 that exit from the process table.
6964 (linux_wait): Add `ptid' argument. Change return type to ptid_t.
6965 Adjust.
6966 (mark_lwp_dead): New.
6967 (wait_for_sigstop): Adjust to use ptids. If a process exits while
6968 stopping all threads, mark its main lwp as dead.
6969 (linux_set_resume_request, linux_resume_one_thread): Adjust to use
6970 ptids.
6971 (fetch_register, usr_store_inferior_registers)
6972 (regsets_fetch_inferior_registers)
6973 (regsets_store_inferior_registers, linux_read_memory)
6974 (linux_write_memory): Inline `inferior_pid'.
6975 (linux_look_up_symbols): Adjust to use per-process
6976 `thread_db_active'.
6977 (linux_request_interrupt): Adjust to use ptids.
6978 (linux_read_auxv): Inline `inferior_pid'.
6979 (initialize_low): Don't reference thread_db_active.
6980 * gdb_proc_service.h (struct ps_prochandle) <pid>: Remove.
6981 * proc-service.c (ps_lgetregs): Use find_lwp_pid.
6982 (ps_getpid): Return the pid of the current inferior.
6983 * thread-db.c (proc_handle, thread_agent): Delete.
6984 (thread_db_create_event, thread_db_enable_reporting): Adjust to
6985 per-process data.
6986 (find_one_thread): Change argument type to ptid_t. Adjust to
6987 per-process data.
6988 (maybe_attach_thread): Adjust to per-process data and ptids.
6989 (thread_db_find_new_threads): Ditto.
6990 (thread_db_init): Ditto.
6991 * spu-low.c (spu_create_inferior, spu_attach): Add process to
6992 processes table. Adjust to use ptids.
6993 (spu_kill, spu_detach): Adjust interface. Remove process from
6994 processes table.
6995 (spu_join, spu_thread_alive): Adjust interface.
6996 (spu_wait): Adjust interface. Remove process from processes
6997 table. Adjust to use ptids.
6998 * win32-low.c (current_inferior_tid): Delete.
6999 (current_inferior_ptid): New.
7000 (debug_event_ptid): New.
7001 (thread_rec): Take a ptid. Adjust.
7002 (child_add_thread): Add `pid' argument. Adjust to use ptids.
7003 (child_delete_thread): Ditto.
7004 (do_initial_child_stuff): Add `attached' argument. Add process to
7005 processes table.
7006 (child_fetch_inferior_registers, child_store_inferior_registers):
7007 Adjust.
7008 (win32_create_inferior): Pass 0 to do_initial_child_stuff.
7009 (win32_attach): Pass 1 to do_initial_child_stuff.
7010 (win32_kill): Adjust interface. Remove process from processes
7011 table.
7012 (win32_detach): Ditto.
7013 (win32_join): Adjust interface.
7014 (win32_thread_alive): Take a ptid.
7015 (win32_resume): Adjust to use ptids.
7016 (get_child_debug_event): Ditto.
7017 (win32_wait): Adjust interface. Remove exiting process from
7018 processes table.
7019
bd99dc85
PA
70202009-04-01 Pedro Alves <pedro@codesourcery.com>
7021
7022 Non-stop mode support.
7023
7024 * server.h (non_stop): Declare.
7025 (gdb_client_data, handler_func): Declare.
7026 (delete_file_handler, add_file_handler, start_event_loop):
7027 Declare.
7028 (handle_serial_event, handle_target_event, push_event)
7029 (putpkt_notif): Declare.
7030 * target.h (enum resume_kind): New.
7031 (struct thread_resume): Replace `step' field by `kind' field.
7032 (TARGET_WNOHANG): Define.
7033 (struct target_ops) <wait>: Add `options' argument.
7034 <supports_non_stop, async, start_non_stop>: New fields.
7035 (target_supports_non_stop, target_async): New.
7036 (start_non_stop): Declare.
7037 (mywait): Add `options' argument.
7038 * target.c (mywait): Add `options' argument. Print child exit
7039 notifications here.
7040 (start_non_stop): New.
7041 * server.c (non_stop, own_buf, mem_buf): New globals.
7042 (struct vstop_notif): New.
7043 (notif_queue): New global.
7044 (queue_stop_reply, push_event, discard_queued_stop_replies)
7045 (send_next_stop_reply): New.
7046 (start_inferior): Adjust to use resume_kind. Adjust to mywait
7047 interface changes.
7048 (attach_inferior): In non-stop mode, don't wait for the target
7049 here.
7050 (handle_general_set): Handle QNonStop.
7051 (handle_query): When handling qC, return the current general
7052 thread, instead of the first thread of the list.
7053 (handle_query): If the backend supports non-stop mode, include
7054 QNonStop+ in the qSupported query response.
7055 (handle_v_cont): Adjust to use resume_kind. Handle resume_stop
7056 and non-stop mode.
7057 (handle_v_attach, handle_v_run): Handle non-stop mode.
7058 (handle_v_stopped): New.
7059 (handle_v_requests): Report support for vCont;t. Handle vStopped.
7060 (myresume): Adjust to use resume_kind. Handle non-stop.
7061 (queue_stop_reply_callback): New.
7062 (handle_status): Handle non-stop mode.
7063 (main): Clear non_stop flag on reconnection. Use the event-loop.
7064 Refactor serial protocol handling from here ...
7065 (process_serial_event): ... to this new function. When GDB
7066 selects any thread, select one here. In non-stop mode, wait until
7067 GDB acks all pending events before exiting.
7068 (handle_serial_event, handle_target_event): New.
7069 * remote-utils.c (remote_open): Install remote_desc in the event
7070 loop.
7071 (remote_close): Remove remote_desc from the event loop.
7072 (putpkt_binary): Rename to...
7073 (putpkt_binary_1): ... this. Add `is_notic' argument. Handle it.
7074 (putpkt_binary): New as wrapper around putpkt_binary_1.
7075 (putpkt_notif): New.
7076 (prepare_resume_reply): In non-stop mode, don't change the
7077 general_thread.
7078 * event-loop.c: New.
7079 * Makefile.in (OBJ): Add event-loop.o.
7080 (event-loop.o): New rule.
7081
7082 * linux-low.h (pid_of): Moved here.
7083 (lwpid_of): New.
7084 (get_lwp_thread): Use lwpid_of.
7085 (struct lwp_info): Delete `lwpid' field. Add `suspended' field.
7086 * linux-low.c (pid_of): Delete.
7087 (inferior_pid): Use lwpid_of.
7088 (linux_event_pipe): New.
7089 (target_is_async_p): New.
7090 (delete_lwp): New.
7091 (handle_extended_wait): Use lwpid_of.
7092 (add_lwp): Don't set lwpid field.
7093 (linux_attach_lwp): Adjust debug output. Use lwpid_of.
7094 (linux_kill_one_lwp): If killing a running lwp, stop it first.
7095 Use lwpid_of. Adjust to linux_wait_for_event interface changes.
7096 (linux_detach_one_lwp): If detaching from a running lwp, stop it
7097 first. Adjust to linux_wait_for_event interface changes. Use
7098 lwpid_of.
7099 (linux_detach): Don't delete the main lwp here.
7100 (linux_join): Use my_waitpid. Avoid signal_pid. Use lwpid_of.
7101 (status_pending_p): Don't consider explicitly suspended lwps.
7102 (linux_wait_for_lwp): Take an integer pid instead of a lwp_info
7103 pointer. Add OPTIONS argument. Change return type to int. Use
7104 my_waitpid instead of sleeping. Handle WNOHANG. Use lwpid_of.
7105 (linux_wait_for_event): Take an integer pid instead of a lwp_info
7106 pointer. Add status pointer argument. Return a pid instead of a
7107 status. Use lwpid_of. Adjust to linux_wait_for_lwp interface
7108 changes. In non-stop mode, don't switch to a random thread.
7109 (linux_wait): Rename to...
7110 (linux_wait_1): ... this. Add target_options argument, and handle
7111 it. Adjust to use resume_kind. Use lwpid_of. In non-stop mode,
7112 don't handle the continue thread. Handle TARGET_WNOHANG. Merge
7113 clean exit and signal exit code. Don't stop all threads in
7114 non-stop mode. In all-stop mode, only stop all threads when
7115 reporting a stop to GDB. Handle explicit thread stop requests.
7116 (async_file_flush, async_file_mark): New.
7117 (linux_wait): New.
7118 (send_sigstop): Use lwpid_of.
7119 (wait_for_sigstop): Use lwpid_of. Adjust to linux_wait_for_event
7120 interface changes. In non-stop mode, don't switch to a random
7121 thread.
7122 (linux_resume_one_lwp): Use lwpid_of.
7123 (linux_continue_one_thread, linux_queue_one_thread): Merge into ...
7124 (linux_resume_one_thread): ... this. Handle resume_stop. In
7125 non-stop mode, don't look for pending flag in all threads.
7126 (resume_status_pending_p): Don't consider explicitly suspended
7127 threads.
7128 (my_waitpid): Reimplement. Emulate __WALL.
7129 (linux_request_interrupt, linux_read_offsets, linux_xfer_siginfo):
7130 Use lwpid_of.
7131 (sigchld_handler, linux_supports_non_stop, linux_async)
7132 (linux_start_non_stop): New.
7133 (linux_target_ops): Register linux_supports_non_stop, linux_async
7134 and linux_start_non_stop.
7135 (initialize_low): Install SIGCHLD handler.
7136 * thread-db.c (thread_db_create_event, find_one_thread)
7137 (thread_db_get_tls_address): Use lwpid_of.
7138 * win32-low.c (win32_detach): Adjust to use resume_kind.
7139 (win32_wait): Add `options' argument.
7140 * spu-low.c (spu_resume): Adjust to use resume_kind.
7141 (spu_wait): Add `options' argument.
7142
5b1c542e
PA
71432009-04-01 Pedro Alves <pedro@codesourcery.com>
7144
7145 Decouple target code from remote protocol.
7146
7147 * target.h (enum target_waitkind): New.
7148 (struct target_waitstatus): New.
7149 (struct target_ops) <wait>: Return an unsigned long. Take a
7150 target_waitstatus pointer instead of a char pointer.
7151 (mywait): Likewise.
7152 * target.c (mywait): Change prototype to return an unsigned long.
7153 Take a target_waitstatus pointer instead of a char pointer. Adjust.
7154 * server.h (thread_from_wait, old_thread_from_wait): Delete
7155 declarations.
7156 (prepare_resume_reply): Change prototype to take a
7157 target_waitstatus.
7158 * server.c (thread_from_wait, old_thread_from_wait): Delete.
7159 (last_status, last_ptid): New.
7160 (start_inferior): Remove "statusptr" argument. Adjust. Return a
7161 pid instead of a signal.
7162 (attach_inferior): Remove "status" and "signal" parameters.
7163 Adjust.
7164 (handle_query): For qGetTLSAddr, parse the thread id with strtol,
7165 not as an address.
7166 (handle_v_cont, handle_v_attach, handle_v_run, handle_v_kill)
7167 (handle_v_requests, myresume): Remove "status" and "signal"
7168 parameters. Adjust.
7169 (handle_status): New.
7170 (main): Delete local `status'. Adjust.
7171 * remote-utils.c: Include target.h.
7172 (prepare_resume_reply): Change prototype to take a
7173 target_waitstatus. Adjust.
7174
7175 * linux-low.c (linux_wait): Adjust to new target_ops->wait
7176 interface.
7177 * spu-low.c (spu_wait): Adjust.
7178 * win32-low.c (enum target_waitkind, struct target_waitstatus):
7179 Delete.
7180 (win32_wait): Adjust.
7181
2bd7c093
PA
71822009-04-01 Pedro Alves <pedro@codesourcery.com>
7183
7184 * target.h (struct thread_resume): Delete leave_stopped member.
7185 (struct target_ops): Add a `n' argument to the `resume' callback.
7186 * server.c (start_inferior): Adjust.
7187 (handle_v_cont, myresume): Adjust.
7188 * linux-low.c (check_removed_breakpoint): Adjust to resume
7189 interface change, and to removed leave_stopped field.
7190 (resume_ptr): Delete.
7191 (struct thread_resume_array): New.
7192 (linux_set_resume_request): Add new `arg' parameter. Adjust to
7193 resume interface change.
7194 (linux_continue_one_thread, linux_queue_one_thread)
7195 (resume_status_pending_p): Check if the resume field is NULL
7196 instead of checking the leave_stopped member.
7197 (linux_resume): Adjust to the target resume interface change.
7198 * spu-low.c (spu_resume): Adjust to the target resume interface
7199 change.
7200 * win32-low.c (win32_detach, win32_resume): Ditto.
7201
c35fafde
PA
72022009-04-01 Pedro Alves <pedro@codesourcery.com>
7203
7204 * linux-low.c (linux_wait_for_event): Don't clear the `stepping'
7205 flag.
7206 (wait_for_sigstop): Don't leave a finished single-step SIGTRAP
7207 pending.
7208 (linux_continue_one_thread): Only preserve the stepping flag if
7209 there's a pending breakpoint.
7210
0a59d50b
PA
72112009-03-31 Pedro Alves <pedro@codesourcery.com>
7212
7213 * server.c (main): After the inferior having exited, call
7214 remote_close before exiting gdbserver.
7215
f04c6d38
TJB
72162009-03-25 Thiago Jung Bauermann <bauerman@br.ibm.com>
7217
7218 Fix size of FPSCR in Power 7 processors.
7219 * linux-ppc-low.c (PPC_FEATURE_ARCH_2_05): Remove #define.
7220 (PPC_FEATURE_HAS_DFP): New #define.
7221 (ppc_arch_setup): Check for DFP feature instead of ISA 2.05 to decide on
7222 size of the FPSCR.
7223
78e5cee6
PA
72242009-03-23 Pedro Alves <pedro@codesourcery.com>
7225
7226 * server.c (handle_query) Whitespace and formatting.
7227
1b3f6016
PA
72282009-03-22 Pedro Alves <pedro@codesourcery.com>
7229
7230 * i387-fp.c, linux-arm-low.c, linux-cris-low.c,
7231 linux-crisv32-low.c, linux-i386-low.c, linux-low.c,
7232 linux-mips-low.c, linux-s390-low.c, linux-sparc-low.c,
7233 linux-x86-64-low.c, linux-xtensa-low.c, proc-service.c,
7234 regcache.c, remote-utils.c, server.c, spu-low.c, target.h,
7235 thread-db.c, win32-low.c, xtensa-xtregs.c, gdbreplay.c,
7236 Makefile.in, configure.ac: Fix whitespace throughout.
7237 * configure: Regenerate.
7238
a07b2135
PA
72392009-03-22 Pedro Alves <pedro@codesourcery.com>
7240
7241 * inferiors.c (find_inferior): Make it safe for the callback
7242 function to delete the currently iterated inferior.
7243
67cc2626
PA
72442009-03-22 Pedro Alves <pedro@codesourcery.com>
7245
7246 * Makefile.in (linuw_low_h): Move higher.
7247 (thread-db.o): Depend on $(linux_low_h).
7248
54a0b537
PA
72492009-03-17 Pedro Alves <pedro@codesourcery.com>
7250
7251 Rename "process" to "lwp" throughout.
7252
7253 * linux-low.c (all_processes): Rename to...
7254 (all_lwps): ... this.
7255 (inferior_pid, handle_extended_wait, get_stop_pc): Adjust.
7256 (add_process): Rename to ...
7257 (add_lwp): ... this. Adjust.
7258 (linux_create_inferior): Adjust.
7259 (linux_attach_lwp): Adjust.
7260 (linux_attach): Adjust.
7261 (linux_kill_one_process): Rename to ...
7262 (linux_kill_one_lwp): ... this. Adjust.
7263 (linux_kill): Adjust.
7264 (linux_detach_one_process): Rename to ...
7265 (linux_detach_one_lwp): ... this. Adjust.
7266 (linux_detach): Adjust.
7267 (check_removed_breakpoint): Adjust.
7268 (status_pending_p): Adjust.
7269 (linux_wait_for_process): Rename to ...
7270 (linux_wait_for_lwp): ... this. Adjust.
7271 (linux_wait_for_event): Adjust.
7272 (send_sigstop): Adjust.
7273 (wait_for_sigstop): Adjust.
7274 (stop_all_processes): Rename to ...
7275 (stop_all_lwps): ... this.
7276 (linux_resume_one_process): Rename to ...
7277 (linux_resume_one_lwp): ... this. Adjust.
7278 (linux_set_resume_request, linux_continue_one_thread)
7279 (linux_queue_one_thread, resume_status_pending_p)
7280 (usr_store_inferior_registers, regsets_store_inferior_registers)
7281 (linux_request_interrupt, linux_read_offsets, linux_xfer_siginfo):
7282 Adjust.
7283 * linux-low.h (get_process): Rename to ...
7284 (get_lwp): ... this. Adjust.
7285 (get_thread_process): Rename to ...
7286 (get_thread_lwp): ... this. Adjust.
7287 (get_process_thread): Rename to ...
7288 (get_lwp_thread): ... this. Adjust.
7289 (struct process_info): Rename to ...
7290 (struct lwp_info): ... this.
7291 (all_processes): Rename to ...
7292 (all_lwps): ... this.
7293 * proc-service.c (ps_lgetregs): Adjust.
7294 * thread-db.c (thread_db_create_event, find_one_thread)
7295 (maybe_attach_thread, thread_db_get_tls_address): Adjust.
7296
0b16c5cf
PA
72972009-03-14 Pedro Alves <pedro@codesourcery.com>
7298
7299 * server.c (handle_query): Handle "qAttached".
7300
32de4b9d
NS
73012009-03-13 Nathan Sidwell <nathan@codesourcery.com>
7302
7303 * Makefile.in, hostio-errno.c, errno.c, xtensa-xtregs.c: Change to
7304 GPLv3, update license URL.
7305
2aecd87f
DE
73062009-03-01 Doug Evans <dje@google.com>
7307
93efd302 7308 * Makefile.in (INCLUDE_CFLAGS): Add -I$(srcdir)/../common.
2aecd87f
DE
7309 (server_h): Add gdb_signals.h.
7310 (signals.o): Update.
7311 * server.h (target_signal_from_host,target_signal_to_host_p)
7312 (target_signal_to_host,target_signal_to_name): Moved to gdb_signals.h.
7313
86b1f9c5
PM
73142009-02-14 Pierre Muller <muller@ics.u-strasbg.fr>
7315
7316 * remote-utils.c (getpkt): Also generate remote-debug
7317 information if noack_mode is set.
7318
4aa995e1
PA
73192009-02-06 Pedro Alves <pedro@codesourcery.com>
7320
7321 * server.c (handle_query): Report qXfer:siginfo:read and
7322 qXfer:siginfo:write as supported and handle them.
7323 * target.h (struct target_ops) <qxfer_siginfo>: New field.
7324 * linux-low.c (linux_xfer_siginfo): New.
7325 (linux_target_ops): Set it.
7326
62709adf
PA
73272009-01-26 Pedro Alves <pedro@codesourcery.com>
7328
7329 * server.c (gdbserver_usage): Mention --remote-debug.
7330 (main): Accept '--remote-debug' switch.
7331
aef93bd7
DE
73322009-01-18 Doug Evans <dje@google.com>
7333
7334 * regcache.c (new_register_cache): No need to check result of xcalloc.
7335 * server.c (handle_search_memory): Back out calls to xmalloc,
7336 result is checked and error is returned to user upon failure.
7337 (handle_query): Ditto. Add more checks for result of malloc.
7338 (handle_v_cont): Check result of malloc, report error back to
7339 user upon failure.
7340 (handle_v_run): Ditto. Call freeargv.
7341 * server.h (freeargv): Declare.
7342 * utils.c (freeargv): New fn.
7343
54363045
DE
73442009-01-15 Doug Evans <dje@google.com>
7345
f626972c
DE
7346 * gdbreplay.c (perror_with_name): Make arg const char *.
7347 * server.h (target_signal_to_name): Make return type const char *.
0842e787 7348 * thread-db.c (thread_db_err_str): Make return type const char *.
f626972c 7349 * utils.c (perror_with_name): Make arg const char *.
54363045 7350
18aae699
PA
73512009-01-14 Pedro Alves <pedro@codesourcery.com>
7352
7353 * win32-low.c (get_child_debug_event): Issue a final DBG_CONTINUE
7354 when handling a EXIT_PROCESS_DEBUG_EVENT.
7355
ff703abe
JB
73562009-01-06 Joel Brobecker <brobecker@adacore.com>
7357
7358 * gdbreplay.c (gdbreplay_version): Update copyright year.
7359 * server.c (gdbserver_version): Likewise.
7360
f21cc1a2 73612009-01-05 Doug Evans <dje@google.com>
0e21c1ec
DE
7362
7363 * linux-low.c (linux_attach_lwp): Add some comments/fixmes.
f21cc1a2 7364 (handle_extended_wait): Improve comment.
0e21c1ec 7365
bca929d3
DE
73662008-12-13 Doug Evans <dje@google.com>
7367
7368 * utils.c (xmalloc,xcalloc,xstrdup): New fns.
7369 * server.h (ATTR_MALLOC): New macro.
7370 (xmalloc,xcalloc,xstrdup): Declare.
7371 * hostio.c: Replace malloc,calloc,strdup with xmalloc,xcalloc,xstrdup.
7372 * inferiors.c: Ditto.
7373 * linux-low.c: Ditto.
7374 * mem-break.c: Ditto.
7375 * regcache.c: Ditto.
7376 * remote-utils.c: Ditto.
7377 * server.c: Ditto.
7378 * target.c: Ditto.
7379 * win32-low.c: Ditto.
7380
97438e3f
DE
73812008-12-12 Doug Evans <dje@google.com>
7382
896c7fbb
DE
7383 * linux-low.c (linux_wait_for_process): Don't clobber current_inferior
7384 in debugging printf.
7385
97438e3f
DE
7386 * linux-low.c (handle_extended_wait): Simplify, use my_waitpid.
7387
e3b886f8
DE
73882008-12-09 Doug Evans <dje@google.com>
7389
7390 * linux-low.h (struct process_info): Delete member tid, unused.
7391 * thread-db.c (find_one_thread): Update.
7392 (maybe_attach_thread): Update.
7393
07e059b5
VP
73942008-12-02 Pedro Alves <pedro@codesourcery.com>
7395
889bf7c5
PA
7396 * target.h (struct target_ops): Add qxfer_osdata member.
7397 * linux-low.c: Include ctype.h and pwd.h and sys/types.h
7398 and dirent.h.
7399 (linux_qxfer_osdata): New functions.
7400 (linux_target_ops): Register linux_qxfer_osdata as qxfer_osdata
7401 callback.
7402 * server.c (handle_query): Handle "qXfer:osdata:read:".
7403 * remote-utils.c (buffer_grow, buffer_free, buffer_init, buffer_finish)
7404 (buffer_xml_printf): New functions.
7405 * server.h (struct buffer): New.
7406 (buffer_grow_str, buffer_grow_str0): New macros.
7407 (buffer_grow, buffer_free, buffer_init, buffer_finish)
7408 (buffer_xml_printf): Declare.
07e059b5 7409
4cab47ab
DE
74102008-11-24 Doug Evans <dje@google.com>
7411
7412 * Makefile.in (VERSION,DIST,LINT,LINTFLAGS): Delete, unused.
7413
f142445f
DJ
74142008-11-24 Daniel Jacobowitz <dan@codesourcery.com>
7415
7416 * server.c (handle_v_run): Always use the supplied argument list.
7417
d0107bb6 74182008-11-19 Bob Wilson <bob.wilson@acm.org>
889bf7c5 7419
d0107bb6
BW
7420 * xtensa-xtregs.c (XTENSA_ELF_XTREG_SIZE): Change to 4.
7421 (xtensa_regmap_table): Add entry for scompare1.
889bf7c5 7422
2c4ad781
TJB
74232008-11-18 Thiago Jung Bauermann <bauerman@br.ibm.com>
7424
7425 * Makefile.in (powerpc-isa205-32l.o, powerpc-isa205-32l.c,
7426 powerpc-isa205-altivec32l.o, powerpc-isa205-altivec32l.c,
7427 powerpc-isa205-vsx32l.o, powerpc-isa205-vsx32l.c,
7428 powerpc-isa205-64l.o, powerpc-isa205-64l.c,
7429 powerpc-isa205-altivec64l.o, powerpc-isa205-altivec64l.c,
7430 powerpc-isa205-vsx64l.o, powerpc-isa205-vsx64l.c): New targets.
7431 * configure.srv (powerpc*-*-linux*): Add ISA 2.05 object files and
7432 XML target descriptions.
7433 * linux-ppc-low.c (ppc_arch_setup): Init registers with 64-bit FPSCR
7434 when inferior is running on an ISA 2.05 or later processor. Add
7435 special case to return offset for full 64-bit slot of FPSCR when
7436 in 32-bits.
7437
dfb64f85
DJ
74382008-11-14 Daniel Gutson <dgutson@codesourcery.com>
7439
7440 * Makefile.in (SFILES, clean): Added sparc64 files.
7441 (reg-sparc64.o, reg-sparc64.c): New.
7442 * configure.srv (sparc*-*-linux*): New configuration.
7443 * linux-low.c (regsets_fetch_inferior_registers): Swap ptrace
7444 syscall arguments for SPARC.
7445 (regsets_store_inferior_registers): Likewise.
7446 * linux-sparc-low.c: New file.
7447
66b6e1dd
DE
74482008-10-21 Doug Evans <dje@google.com>
7449
7450 * Makefile.in (BFD_DIR,BFD,BFD_SRC,BFD_CFLAGS): Delete.
7451 (READLINE_DIR,READLINE_DEP): Delete.
7452 (INTERNAL_CFLAGS): Update.
7453 (LINTFLAGS): Update.
7454
9b710a42
PA
74552008-10-10 Pedro Alves <pedro@codesourcery.com>
7456
7457 * server.c (handle_v_run): If GDB didn't specify an argv, use the
7458 whole argv from the last run, not just argv[0].
7459
5822d809
PA
74602008-09-08 Pedro Alves <pedro@codesourcery.com>
7461
7462 * regcache.c (new_register_cache): Return NULL if the register
7463 cache size isn't known yet.
7464 (free_register_cache): Avoid dereferencing a NULL regcache.
7465
74aac56f
DJ
74662008-09-04 Daniel Jacobowitz <dan@codesourcery.com>
7467
7468 * configure.srv: Merge MIPS and MIPS64.
7469
400b20f5
MR
74702008-08-24 Maciej W. Rozycki <macro@linux-mips.org>
7471
7472 * Makefile.in (uninstall): Apply $(EXEEXT) too.
7473
677c5bb1
LM
74742008-08-18 Luis Machado <luisgpm@br.ibm.com>
7475
7476 * Makefile.in: Add required vsx dependencies.
7477
7478 * linux-ppc-low: Define PPC_FEATURE_HAS_VSX.
7479 Declare init_registers_powerpc_vsx32l.
7480 Declare init_registers_powerpc_vsx64l.
7481 Define PTRACE_GETVSXREGS and PTRACE_SETVSXREGS.
7482 (ppc_arch_setup): Check for VSX in hwcap.
7483 (ppc_fill_vsxregset): New function.
7484 (ppc_store_vsxregset): New function.
7485 Add new VSX entry in regset_info target_regsets.
7486
7487 * configure.srv: Add new VSX dependencies.
7488
a6f3e723
SL
74892008-08-12 Pedro Alves <pedro@codesourcery.com>
7490
7491 * remote-utils.c (noack_mode, transport_is_reliable): New globals.
7492 (remote_open): Set or clear transport_is_reliable.
7493 (putpkt_binary): Don't expect acks in noack mode.
7494 (getpkt): Don't send ack/nac in noack mode.
7495 * server.c (handle_general_set): Handle QStartNoAckMode.
7496 (handle_query): If connected by tcp pass QStartNoAckMode+ in
7497 qSupported.
7498 (main): Reset noack_mode on every connection.
7499 * server.h (noack_mode): Declare.
7500
a417dc56
RW
75012008-08-07 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
7502
7503 * Makefile.in (GDBREPLAY_OBS): New variable.
7504 (gdbreplay$(EXEEXT)): Use it to avoid unportable $^.
7505
3221518c
UW
75062008-08-05 Ulrich Weigand <uweigand@de.ibm.com>
7507 Daniel Jacobowitz <dan@codesourcery.com>
7508
7509 * linux-low.c (linux_resume_one_process): Ignore ESRCH.
7510 (usr_store_inferior_registers): Likewise.
7511 (regsets_store_inferior_registers): Likewise.
7512
ec56be1b
PA
75132008-07-31 Rolf Jansen <rj@surtec.com>
7514 Pedro Alves <pedro@codesourcery.com>
7515
7516 * configure.ac: Check for memmem declaration.
7517 * server.c [HAVE_MALLOC_H]: Include malloc.h.
7518 (disable_packet_vCont, disable_packet_Tthread, disable_packet_qC)
7519 (disable_packet_qfThreadInfo): Unconditionally compile.
7520 * server.h [!HAVE_DECL_MEMMEM]: Declare memmem.
7521 * configure, config.in: Regenerate.
7522
2fe5e3ff
DE
75232008-07-28 Doug Kwan <dougkwan@google.com>
7524
7525 * linux-low.c (sys/dir.h, sys/user.h): Remove includes.
7526 (linux_write_memory): Remove declaration of errno.
7527
836acd6d
UW
75282008-07-12 Ulrich Weigand <uweigand@de.ibm.com>
7529
7530 * linux-low.c (handle_extended_wait): Do not use "status"
7531 variable uninitialized.
7532
aeba519e
PA
75332008-07-07 Pedro Alves <pedro@codesourcery.com>
7534
7535 * server.c (handle_v_attach): Inhibit reporting dll changes.
7536
db42f210
PA
75372008-06-27 Pedro Alves <pedro@codesourcery.com>
7538
7539 * remote-utils.c (prepare_resume_reply): If requested, don't
7540 output "thread:TID" in the T stop reply.
7541
7542 * server.c (disable_packet_vCont, disable_packet_Tthread)
7543 (disable_packet_qC, disable_packet_qfThreadInfo): New globals.
7544 (handle_query): If requested, disable support for qC, qfThreadInfo
7545 and qsThreadInfo.
7546 (handle_v_requests): If requested, disable support for vCont.
7547 (gdbserver_show_disableable): New.
7548 (main): Handle --disable-packet and --disable-packet=LIST.
7549
7550 * server.h (disable_packet_vCont, disable_packet_Tthread)
7551 (disable_packet_qC, disable_packet_qfThreadInfo): Declare.
7552
8e4c5421
CD
75532008-06-20 Carlos O'Donell <carlos@codesourcery.com>
7554
7555 * server.c (gdbserver_usage): Mention --version.
7556
6e23a804
DJ
75572008-06-06 Daniel Jacobowitz <dan@codesourcery.com>
7558
7559 * Makefile.in (gdbreplay.o): New rule.
7560
90aa6a40
JM
75612008-06-06 Joseph Myers <joseph@codesourcery.com>
7562
7563 * gdbreplay.c (gdbreplay_version): Say gdbreplay in version
7564 message, not gdbserver.
7565
c16158bc 75662008-06-05 Vladimir Prus <vladimir@codesourcery.com>
889bf7c5
PA
7567 Nathan Sidwell <nathan@codesourcery.com>
7568 Joseph Myers <joseph@codesourcery.com>
c16158bc
JM
7569
7570 * acinclude.m4: Include ../../config/acx.m4.
7571 * configure.ac: Use ACX_PKGVERSION and ACX_BUGURL.
7572 * configure, config.in: Regenerate.
7573 * Makefile.in (gdbreplay$(EXEEXT)): Add version.o.
7574 * server.c (gdbserver_version): Print PKGVERSION.
7575 (gdbsrever_usage): Add stream parameter. Print REPORT_BUGS_TO.
7576 (main): Adjust gdbserver_usage calls.
7577 * gdbreplay.c (version, host_name): Add declarations.
7578 (gdbreplay_version, gdbreplay_usage): New.
7579 (main): Accept --version and --help options.
7580
aeb75bf5
DJ
75812008-06-04 Daniel Jacobowitz <dan@codesourcery.com>
7582
7583 * linux-arm-low.c (thumb_breakpoint, thumb_breakpoint_len): New.
7584 (arm_breakpoint_at): Handle Thumb.
7585 (the_low_target): Add comment.
7586
76b233dd
UW
75872008-05-29 Ulrich Weigand <uweigand@de.ibm.com>
7588
7589 * linux-ppc-low.c (ppc_collect_ptrace_register): Clear buffer.
7590
08388c79
DE
75912008-05-09 Doug Evans <dje@google.com>
7592
a3c83fae
DE
7593 * server.h (decode_search_memory_packet): Declare.
7594 * remote-utils.c (decode_search_memory_packet): New fn.
7595 * server.c (handle_search_memory_1): New fn.
08388c79
DE
7596 (handle_search_memory): New fn.
7597 (handle_query): Process qSearch:memory packets.
7598
bb9c3d36
UW
75992008-05-08 Ulrich Weigand <uweigand@de.ibm.com>
7600
7601 * regcache.c (registers_length): Remove.
7602 (set_register_cache): Verify that PBUFSIZ is large enough to hold a
7603 full register packet.
7604 * regcache.h (registers_length): Remove prototype.
7605 * server.h (PBUFSIZ): Define to 16384.
7606
7284e1be
UW
76072008-05-03 Ulrich Weigand <uweigand@de.ibm.com>
7608
7609 * configure.srv (powerpc*-*-linux*): Set srv_regobj to
7610 powerpc-32l.o, powerpc-altivec32l.o, powerpc-e500l.o,
7611 powerpc-64l.o, and powerpc-altivec64l.o.
7612 Remove rs6000/powerpc-32.xml, rs6000/powerpc-64.xml, and
7613 rs6000/powerpc-e500.xml; add rs6000/powerpc-32l.xml,
7614 rs6000/powerpc-altivec32l.xml, rs6000/powerpc-e500l.xml,
7615 rs6000/powerpc-64l.xml, rs6000/powerpc-altivec64l.xml,
7616 rs6000/power-linux.xml, and rs6000/power64-linux.xml
7617 to srv_xmlfiles.
7618
7619 * Makefile.in (reg-ppc.o, reg-ppc.c): Remove, replace by ...
7620 (powerpc-32l.o, powerpc-32l.c): ... these new rules.
7621 (powerpc-32.o, powerpc-32.c): Remove, replace by ...
7622 (powerpc-altivec32l.o, powerpc-altivec32l.c): ... these new rules.
7623 (powerpc-e500.o, powerpc-e500.c): Remove, replace by ...
7624 (powerpc-e500l.o, powerpc-e500l.c): ... these new rules.
7625 (reg-ppc64.o, reg-ppc64.c): Remove, replace by ...
7626 (powerpc-64l.o, powerpc-64l.c): ... these new rules.
7627 (powerpc-64.o, powerpc-64.c): Remove, replace by ...
7628 (powerpc-altivec64l.o, powerpc-altivec64l.c): ... these new rules.
7629 (clean): Update.
7630
7631 * linux-ppc-low.c (init_registers_ppc): Remove, replace by ...
7632 (init_registers_powerpc_32l): ... this new prototype.
7633 (init_registers_powerpc_32): Remove, replace by ...
7634 (init_registers_powerpc_altivec32l): ... this new prototype.
7635 (init_registers_powerpc_e500): Remove, replace by ...
7636 (init_registers_powerpc_e500l): ... this new prototype.
7637 (init_registers_ppc64): Remove, replace by ...
7638 (init_registers_powerpc_64l): ... this new prototype.
7639 (init_registers_powerpc_64): Remove, replace by ...
7640 (init_registers_powerpc_altivec64l): ... this new prototype.
7641 (ppc_num_regs): Set to 73.
7642 (PT_ORIG_R3, PT_TRAP): Define if necessary.
7643 (ppc_regmap, ppc_regmap_e500): Add values for orig_r3 and trap.
7644 (ppc_cannot_store_register): Handle orig_r3 and trap.
7645 (ppc_arch_setup): Update init_registers_... calls.
7646 (ppc_fill_gregset): Handle orig_r3 and trap.
7647
7648 * inferiors.c (clear_inferiors): Reset current_inferior.
7649
fdc59709
PB
76502008-04-23 Paolo Bonzini <bonzini@gnu.org>
7651
889bf7c5
PA
7652 * acinclude.m4: Add override.m4.
7653 * configure: Regenerate.
fdc59709 7654
c9b2f845
UW
76552008-04-21 Ulrich Weigand <uweigand@de.ibm.com>
7656
7657 * linux-ppc-low.c (ppc_arch_setup): Reset ppc_hwcap after the
7658 initial call to init_register_ppc64.
7659
550512b8
UW
76602008-04-21 Ulrich Weigand <uweigand@de.ibm.com>
7661
43aaf8b6
PA
7662 * configure.srv (powerpc64-*-linux*, powerpc-*-linux*): Merge into
7663 single powerpc*-*-linux* case.
550512b8
UW
7664 (s390-*-linux*, s390x-*-linux*): Merge into single s390*-*-linux* case.
7665
b6430ec3
UW
76662008-04-17 Ulrich Weigand <uweigand@de.ibm.com>
7667
7668 * configure.srv [powerpc64-*-linux*]: Remove powerpc-e500.o from
889bf7c5 7669 srv_regobj. Remove rs6000/powerpc-e500.xml and rs6000/power-spe.xml
b6430ec3
UW
7670 from reg_xmlfiles.
7671 * linux-ppc-low.c: Include <elf.h>.
7672 (PPC_FEATURE_HAS_ALTIVEC, PPC_FEATURE_HAS_SPE): Define.
7673 (ppc_hwcap): New global variable.
7674 (ppc_regmap): Remove __SPE__ #ifdef sections.
7675 (ppc_regmap_e500): New global variable.
7676 (ppc_cannot_store_register): Update __SPE__ special case.
7677 (ppc_get_hwcap): New function.
7678 (ppc_arch_setup): Use it to determine whether inferior supports
7679 AltiVec or SPE registers. Set the_low_target.regmap if appropriate.
7680 (ppc_fill_vrregset, ppc_store_vrregset): Define unconditionally.
7681 Do not access registers if target does not support AltiVec.
7682 (ppc_fill_evrregset, ppc_store_evrregset): Define unconditionally.
7683 Do not access registers if target does not support SPE.
7684 (target_regsets): Unconditionally include AltiVec and SPE regsets.
7685
52fa2412
UW
76862008-04-17 Daniel Jacobowitz <dan@codesourcery.com>
7687
7688 * linux-low.c (disabled_regsets, num_regsets): New.
7689 (use_regsets_p): Delete.
7690 (linux_wait_for_process): Clear disabled_regsets.
7691 (regsets_fetch_inferior_registers): Check and set it.
7692 (regsets_store_inferior_registers): Likewise.
7693 (linux_fetch_registers, linux_store_registers): Do not use
7694 use_regsets_p.
7695 (initialize_low): Allocate disabled_regsets.
7696
e28b3332
DJ
76972008-04-14 Daniel Jacobowitz <dan@codesourcery.com>
7698
7699 * Makefile.in (LIBOBJS): New.
7700 (OBS): Use LIBOBJS.
7701 (memmem.o): New rule.
7702 * configure.ac: Use AC_CONFIG_LIBOBJ_DIR and check for memmem.
7703 * configure: Regenerated.
7704
4536995d
UW
77052008-04-04 Ulrich Weigand <uweigand@de.ibm.com>
7706
7707 * server.c (handle_query): Never return "unsupported" for
7708 qXfer:features:read queries.
7709
221c031f
UW
77102008-03-27 Ulrich Weigand <uweigand@de.ibm.com>
7711
7712 * server.c (get_features_xml): Fix inverted condition.
7713 (handle_query): Always support qXfer:feature:read.
7714
ccd213ac
DJ
77152008-03-10 Daniel Jacobowitz <dan@codesourcery.com>
7716
7717 * server.c (wrapper_argv): New.
7718 (start_inferior): Handle wrapper_argv. If set, expect an extra
7719 trap.
7720 (gdbserver_usage): Document --wrapper.
7721 (main): Parse --wrapper.
7722
6fe305f7
UW
77232008-02-28 Ulrich Weigand <uweigand@de.ibm.com>
7724
7725 * configure.srv [powerpc64-*-linux*]: Add all files mentioned for
7726 powerpc-*-linux* to srv_regobj and reg_xmlfiles.
7727 * linux-ppc-low.c (ppc_get_pc): Support bi-arch operation.
7728 (ppc_set_pc): Likewise.
7729 (ppc_arch_setup): New function.
7730 (ppc_fill_gregset): Call ppc_collect_ptrace_register instead
7731 of collect_register.
889bf7c5 7732 (the_low_target): Use ppc_arch_setup as arch_setup initializer.
6fe305f7 7733
5b0a002e
UW
77342008-02-28 Ulrich Weigand <uweigand@de.ibm.com>
7735
7736 * configure.srv [powerpc64-*-linux*]: Use linux-ppc-low.o
7737 instead of linux-ppc64-low.o.
7738 * linux-ppc64-low.c: Remove file.
7739 * Makefile.in (SFILES): Remove linux-ppc64-low.c.
7740 (linux-ppc64-low.o): Remove rule.
7741
7742 * linux-ppc-low.c (init_registers_ppc64): Add prototype.
7743 (init_registers_powerpc_64): Likewise.
7744 (ppc_regmap): Conditionally define depending on __powerpc64__.
7745 (ppc_cannot_store_register): Do not special-case "fpscr" when
7746 compiled on __powerpc64__.
7747 (ppc_collect_ptrace_register): New function.
7748 (ppc_supply_ptrace_register): New function.
7749 (ppc_breakpoint): Change type to "unsigned int".
7750 (ppc_breakpoint_at): Change type of "insn" to "unsigned int".
7751 (the_low_target): Conditionally provide initializers for the
889bf7c5 7752 arch_setup member depending on __powerpc64__. Install
5b0a002e
UW
7753 collect_ptrace_register and supply_ptrace_register members.
7754
9b4b61c8
UW
77552008-02-28 Ulrich Weigand <uweigand@de.ibm.com>
7756
7757 * regcache.h (gdbserver_xmltarget): Add extern declaration.
7758 * server.c (gdbserver_xmltarget): Define.
7759 (get_features_xml): Use it to replace "target.xml" and arch_string.
7760
7761 * configure.srv: Remove srv_xmltarget. Add XML files that were
7762 mentioned there to srv_xmlfiles instead. Remove conditional tests
7763 on gdb_cv_arm_iwmmxt, gdb_cv_ppc_altivec, gdb_cv_ppc_spe; set
7764 srv_xmlfiles and srv_regobj to include all possible choices.
7765 * configure.ac (srv_xmltarget): Remove.
7766 (srv_xmlfiles): Do not add "target.xml".
7767 (gdb_cv_arm_iwmmxt, gdb_cv_ppc_altivec, gdb_cv_ppc_spe): Remove
7768 checks for supplementary target information.
7769 * configure: Regenerate.
7770 * Makefile.in (XML_TARGET): Remove.
7771 (target.xml): Remove rule.
7772 (clean): Do not clean up target.xml.
7773 (.PRECIOUS): Do not mention target.xml.
7774
7775 * target.h (struct target_ops): Remove arch_string member.
7776 * linux-low.c (linux_arch_string): Remove.
7777 (linux_target_ops): Remove arch_string initializer.
7778 * linux-low.h (struct linux_target_ops): Remove arch_string member.
7779 * linux-i386-low.c (the_low_target): Remove arch_string initializer.
7780 * linux-x86-64-low.c (the_low_target): Remove arch_string initializer.
7781 * spu-low.c (spu_arch_string): Remove.
7782 (spu_target_ops): Remove arch_string initializer.
7783 * win32-low.c (win32_arch_string): Remove.
7784 (win32_target_ops): Remove arch_string initializer.
7785 * win32-low.h (struct win32_target_ops): Remove arch_string member.
7786 * win32-arm-low.c (the_low_target): Remove arch_string initializer.
7787 * win32-i368-low.c (the_low_target): Remove arch_string initializer.
7788
ee1a7ae4
UW
77892008-02-27 Ulrich Weigand <uweigand@de.ibm.com>
7790
7791 * linux-low.h (struct linux_target_ops): Replace left_pad_xfer field
7792 by collect_ptrace_register and supply_ptrace_register hooks.
7793 * linux-low.c (fetch_register): Use supply_ptrace_register callback
7794 instead of checking for the_low_target.left_pad_xfer.
7795 (usr_store_inferior_registers): Use collect_ptrace_register callback
7796 instead of checking for the_low_target.left_pad_xfer.
7797
7798 * linux-s390-low.c (s390_collect_ptrace_register): New function.
7799 (s390_supply_ptrace_register): Likewise.
7800 (s390_fill_gregset): Call s390_collect_ptrace_register.
7801 (the_low_target): Update.
7802
7803 * linux-ppc64-low.c (ppc_collect_ptrace_register): New function.
7804 (ppc_supply_ptrace_register): Likewise.
7805 (the_low_target): Update.
7806
7807 * linux-i386-low.c (the_low_target): Update.
7808 * linux-x86-64-low.c (the_low_target): Update.
7809
d61ddec4
UW
78102008-02-27 Ulrich Weigand <uweigand@de.ibm.com>
7811
7812 * configure.srv [s390x-*-linux*]: Set srv_regobj to include both
7813 reg-s390.o and reg-s390x.o.
7814
7815 * linux-low.c (new_inferior): New global variable.
7816 (linux_create_inferior, linux_attach): Set it.
7817 (linux_wait_for_process): Call the_low_target.arch_setup after the
7818 target has stopped for the first time.
7819 (initialize_low): Do not call the_low_target.arch_setup.
7820
7821 * linux-s390-low.c (s390_get_pc): Support bi-arch operation.
7822 (s390_set_pc): Likewise.
7823 (s390_arch_setup): New function.
7824 (the_low_target): Use s390_arch_setup as arch_setup routine.
7825
7826 * regcache.c (realloc_register_cache): New function.
7827 (set_register_cache): Call it for each existing regcache.
7828
d05b4ac3
UW
78292008-02-27 Ulrich Weigand <uweigand@de.ibm.com>
7830
7831 * server.h (init_registers): Remove prototype.
7832
7833 * linux-low.h (struct linux_target_ops): Add arch_setup field.
7834 * linux-low.c (initialize_low): Call the_low_target.arch_setup ()
7835 instead of init_registers ().
7836 * linux-arm-low.c (init_registers_arm): Add prototype.
7837 (init_registers_arm_with_iwmmxt): Likewise.
7838 (the_low_target): Add initializer for arch_setup field.
7839 * linux-cris-low.c (init_registers_cris): Add prototype.
7840 (the_low_target): Add initializer for arch_setup field.
7841 * linux-crisv32-low.c (init_registers_crisv32): Add prototype.
7842 (the_low_target): Add initializer for arch_setup field.
7843 * linux-i386-low.c (init_registers_i386_linux): Add prototype.
7844 (the_low_target): Add initializer for arch_setup field.
7845 * linux-ia64-low.c (init_registers_ia64): Add prototype.
7846 (the_low_target): Add initializer for arch_setup field.
7847 * linux-m32r-low.c (init_registers_m32r): Add prototype.
7848 (the_low_target): Add initializer for arch_setup field.
7849 * linux-m68k-low.c (init_registers_m68k): Add prototype.
7850 (the_low_target): Add initializer for arch_setup field.
7851 * linux-mips-low.c (init_registers_mips_linux): Add prototype.
7852 (init_registers_mips64_linux): Likewise.
7853 (the_low_target): Add initializer for arch_setup field.
7854 * linux-ppc-low.c (init_registers_ppc): Add prototype.
7855 (init_registers_powerpc_32, init_registers_powerpc_e500): Likewise.
7856 (the_low_target): Add initializer for arch_setup field.
7857 * linux-ppc64-low.c (init_registers_ppc64): Add prototype.
7858 (init_registers_powerpc_64): Likewise.
7859 (the_low_target): Add initializer for arch_setup field.
7860 * linux-s390-low.c (init_registers_s390): Add prototype.
7861 (init_registers_s390x): Likewise.
7862 (the_low_target): Add initializer for arch_setup field.
7863 * linux-sh-low.c (init_registers_sh): Add prototype.
7864 (the_low_target): Add initializer for arch_setup field.
7865 * linux-x86-64-low.c (init_registers_x86_64_linux): Add prototype.
7866 (the_low_target): Add initializer for arch_setup field.
7867 * linux-xtensa-low.c (init_registers_xtensa): Add prototype.
7868 (the_low_target): Add initializer for arch_setup field.
7869
7870 * win32-low.h (struct win32_target_ops): Add arch_setup field.
7871 * win32-low.c (initialize_low): Call the_low_target.arch_setup ()
7872 instead of init_registers ().
7873 * win32-arm-low.c (init_registers_arm): Add prototype.
7874 (the_low_target): Add initializer for arch_setup field.
7875 * win32-i386-low.c (init_registers_i386): Add prototype.
7876 (the_low_target): Add initializer for arch_setup field.
7877
7878 * spu-low.c (init_registers_spu): Add prototype.
7879 (initialize_low): Call initialie_registers_spu () instead of
7880 initialize_registers ().
7881
fd96d250
PA
78822008-02-19 Pedro Alves <pedro@codesourcery.com>
7883
7884 * server.c (handle_v_requests): When handling the vRun and vAttach
7885 packets, if already debugging a process, don't kill it. Return an
7886 error instead.
7887
d41b6bb4
DJ
78882008-02-17 Daniel Jacobowitz <dan@codesourcery.com>
7889
7890 * server.c (handle_query): Correct length check.
7891
5ac588cf
PA
78922008-02-14 Pedro Alves <pedro_alves@portugalmail.pt>
7893
7894 * win32-low.c (do_initial_child_stuff): Add process handle
7895 parameter. Set current_process_handle and current_process_id from the
7896 parameters. Clear globals.
7897 (win32_create_inferior): Don't set current_process_handle and
7898 current_process_id here. Instead pass them on the call to
7899 do_initial_child_stuff.
7900 (win32_attach): Likewise.
7901 (win32_clear_inferiors): New.
7902 (win32_kill): Don't close the current process handle or the
7903 current thread handle here. Instead call win32_clear_inferiors.
7904 (win32_detach): Don't open a new handle to the process. Call
7905 win32_clear_inferiors.
7906 (win32_join): Don't rely on current_process_handle; open a new
7907 handle using the process id.
7908 (win32_wait): Call win32_clear_inferiors when the inferior process
7909 has exited.
7910
ecd7ecbc
DJ
79112008-02-14 Daniel Jacobowitz <dan@codesourcery.com>
7912
7913 * server.c (monitor_show_help): Add "exit".
7914
1525d545
MG
79152008-02-11 Maxim Grigoriev <maxim2405@gmail.com>
7916
ecd7ecbc 7917 * Makefile.in (SFILES): Add linux-xtensa-low.c.
1525d545
MG
7918 (clean): Add reg-xtensa.c.
7919 (linux-xtensa-low.o, reg-xtensa.o, reg-xtensa.c): New dependencies.
ecd7ecbc
DJ
7920 * configure.srv (xtensa*-*-linux*) New target.
7921 * linux-xtensa-low.c: New.
7922 * xtensa-xtregs.c: New.
1525d545 7923
59a016f0
PA
79242008-02-01 Pedro Alves <pedro_alves@portugalmail.pt>
7925
7926 * hostio.c: Don't include errno.h.
7927 (errno_to_fileio_errno): Move to hostio-errno.
7928 * hostio.c: (hostio_error): Remove the error parameter. Defer the
7929 error number outputting to the target->hostio_last_error callback.
7930 (hostio_packet_error): Use FILEIO_EINVAL directly.
7931 (handle_open, handle_pread, hostio_error, handle_unlink): Update
7932 calls to hostio_error.
7933 * hostio-errno.c: New.
7934 * server.h (hostio_last_error_from_errno): Declare.
7935 * target.h (target_ops): Add hostio_last_error member.
7936 * linux-low.c (linux_target_op): Register hostio_last_error_from_errno
7937 as hostio_last_error handler.
889bf7c5 7938 * spu-low.c (spu_target_ops): Likewise.
59a016f0
PA
7939 * win32-low.c [_WIN32_WCE] (win32_error_to_fileio_error)
7940 (wince_hostio_last_error): New functions.
7941 (win32_target_ops) [_WIN32_WCE]: Register wince_hostio_last_error
7942 as hostio_last_error handler.
7943 (win32_target_ops) [!_WIN32_WCE]: Register
7944 hostio_last_error_from_errno as hostio_last_error handler.
7945 * Makefile.in (SFILES): Add hostio.c and hostio-errno.c.
7946 (hostio-errno.o): New rule.
7947 * configure.ac (GDBSERVER_DEPFILES): Add $srv_hostio_err_objs.
7948 * configure.srv (srv_hostio_err_objs): New variable. Default to
7949 hostio-errno.o.
7950 (arm*-*-mingw32ce*): Set srv_hostio_err_objs to "".
7951 * configure: Regenerate.
7952
2d717e4f
DJ
79532008-01-29 Daniel Jacobowitz <dan@codesourcery.com>
7954
7955 * linux-low.c (linux_attach_lwp): Do not _exit after errors.
7956 (linux_kill, linux_detach): Clean up the process list.
7957 * remote-utils.c (remote_open): Improve port number parsing.
7958 (putpkt_binary, input_interrupt): Only send interrupts if the target
7959 is running.
7960 * server.c (extended_protocol): Make static.
7961 (attached): Define earlier.
7962 (exit_requested, response_needed, program_argv): New variables.
7963 (target_running): New.
7964 (start_inferior): Clear attached here.
7965 (attach_inferior): Set attached here.
7966 (require_running): Define.
7967 (handle_query): Use require_running and target_running. Implement
7968 "monitor exit".
7969 (handle_v_attach, handle_v_run): New.
7970 (handle_v_requests): Use require_running. Handle vAttach and vRun.
7971 (gdbserver_usage): Update.
7972 (main): Redo argument parsing. Handle --debug and --multi. Handle
7973 --attach along with other options or after the port. Save
7974 program_argv. Support no initial program. Resynchronize
7975 communication with GDB after an error. Handle "monitor exit".
7976 Use require_running and target_running. Always allow the extended
7977 protocol. Do not error out for Hc0 or Hc-1. Do not automatically
7978 restart in extended mode.
7979 * README: Refer to the GDB manual. Update --attach usage.
7980
7407e2de
AS
79812007-12-20 Andreas Schwab <schwab@suse.de>
7982
7983 * linux-low.c (STACK_SIZE): Define.
7984 (linux_tracefork_child): Use it. Use __clone2 on ia64.
7985 (linux_test_for_tracefork): Likewise.
7986
b65d95c5
DJ
79872007-12-18 Daniel Jacobowitz <dan@codesourcery.com>
7988
7989 * linux-low.c (linux_wait_for_event): Update messages. Do not
7990 reinsert auto-delete breakpoints.
7991 * mem-break.c (struct breakpoint): Change return type of handler to
7992 int.
7993 (set_breakpoint_at): Update handler type.
7994 (reinsert_breakpoint_handler): Return 1 instead of calling
7995 delete_breakpoint.
7996 (reinsert_breakpoint_by_bp): Check for the original breakpoint before
7997 setting a new one.
7998 (check_breakpoints): Delete auto-delete breakpoints and return 2.
7999 * mem-break.h (set_breakpoint_at): Update handler type.
8000 * thread-db.c (thread_db_create_event, thread_db_create_event): Update.
8001 * win32-low.c (auto_delete_breakpoint): New.
8002 (get_child_debug_event): Use it.
8003
4e799345
DJ
80042007-12-16 Daniel Jacobowitz <dan@codesourcery.com>
8005
8006 * configure.ac: Check for pread and pwrite.
8007 * hostio.c (handle_pread): Fall back to lseek and read.
8008 (handle_pwrite): Fall back to lseek and write.
8009 * config.in, configure: Regenerated.
8010
27524b67
DJ
80112007-12-07 Daniel Jacobowitz <dan@codesourcery.com>
8012
8013 * server.c (myresume): Add own_buf argument.
8014 (main): Update calls.
8015
a20d5e98
DJ
80162007-12-06 Daniel Jacobowitz <dan@codesourcery.com>
8017
8018 * linux-low.c (linux_wait, linux_resume): Do not handle async I/O.
8019 * remote-utils.c (remote_open): Do not call disable_async_io.
8020 (block_async_io): Delete.
8021 (unblock_async_io): Make static.
8022 (initialize_async_io): New.
8023 * server.c (handle_v_cont): Handle async I/O here.
8024 (myresume): Likewise. Move other common resume tasks here...
8025 (main): ... from here. Call initialize_async_io. Disable async
8026 I/O before the main loop.
8027 * server.h (initialize_async_io): Declare.
8028 (block_async_io, unblock_async_io): Delete prototypes.
8029 * spu-low.c (spu_resume, spu_wait): Do not handle async I/O here.
8030
b79d787e
DJ
80312007-12-06 Mick Davis <mickd@goanna.iinet.net.au>
8032
8033 * remote-utils.c (readchar): Allow binary data in received messages.
8034
d97903b2
PA
80352007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
8036
8037 * win32-low.c (attaching): New global.
8038 (win32_create_inferior): Clear the `attaching' global.
8039 (win32_attach): Set the `attaching' global.
8040 (get_child_debug_event) [_WIN32_WCE]: Stop the inferior when
8041 attaching. Only set a breakpoint at the entry point if not
8042 attaching.
8043
311de423
PA
80442007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
8045
8046 * server.c (main): Don't report dll events on the initial
8047 connection on attaches.
8048
6c2d16d2
PA
80492007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
8050
8051 * server.c (main): Relax numerical bases supported for the pid of
8052 the --attach command line argument.
8053
5ca906e6
PA
80542007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
8055
8056 * win32-low.c (win32_attach): Call OpenProcess before
8057 DebugActiveProcess, not after. Add last error output to error
8058 call.
8059
9c6c8194
PA
80602007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
8061
8062 * win32-low.c (win32_get_thread_context)
8063 (win32_set_thread_context): New functions.
8064 (thread_rec): Use win32_get_thread_context.
8065 (continue_one_thread, win32_resume): Use win32_set_thread_context.
8066 * win32-low.h (win32_thread_info) [_WIN32_WCE]: Add `base_context'
8067 field.
8068
4d5d1aaa
PA
80692007-12-03 Leo Zayas
8070 Pedro Alves <pedro_alves@portugalmail.pt>
8071
8072 * win32-low.c (soft_interrupt_requested, faked_breakpoint): New
8073 global variables.
8074 (child_add_thread): Minor cleanup.
8075 (child_continue): Resume artificially suspended threads before
8076 calling ContinueDebugEvent.
8077 (suspend_one_thread): New.
8078 (fake_breakpoint_event): New.
8079 (get_child_debug_event): Change return type to int. Check here if
8080 gdb sent an interrupt request. If a soft interrupt was requested,
8081 fake a breakpoint event. Return 0 if there is no event to handle,
8082 and 1 otherwise.
8083 (win32_wait): Don't check here if gdb sent an interrupt request.
8084 Ensure there is a valid event to handle.
8085 (win32_request_interrupt): Add soft interruption method as last
8086 resort.
8087
c436e841
PA
80882007-12-03 Leo Zayas
8089 Pedro Alves <pedro_alves@portugalmail.pt>
8090
8091 * win32-low.h (win32_thread_info): Add descriptions to the
8092 structure members. Replace `suspend_count' counter by a
8093 `suspended' flag.
8094 * win32-low.c (thread_rec): Update condition of when to get the
8095 context from the inferior. Rely on ContextFlags being set if it
8096 has already been retrieved. Only suspend the inferior thread if
8097 we haven't already. Warn if that fails.
8098 (continue_one_thread): s/suspend_count/suspended/. Only call
8099 ResumeThread once. Warn if that fails.
8100
e7b5fa67
PA
81012007-12-02 Pedro Alves <pedro_alves@portugalmail.pt>
8102
8103 * win32-low.c (win32_wait): Don't read from the inferior when it
8104 has already exited.
8105
a385171d
PA
81062007-12-02 Pedro Alves <pedro_alves@portugalmail.pt>
8107
8108 * Makefile.in (win32_low_h): New variable.
8109 (win32-low.o): Add dependency on $(win32_low_h).
8110 (win32-arm-low.o, win32-i386-low.o): New rules.
8111
f80c84b3
DJ
81122007-11-30 Daniel Jacobowitz <dan@codesourcery.com>
8113
8114 * hostio.c: Correct copyright year.
8115
a6b151f1
DJ
81162007-11-30 Daniel Jacobowitz <dan@codesourcery.com>
8117
8118 * Makefile.in (OBS): Add hostio.o.
8119 (hostio.o): New rule.
8120 * server.h (handle_vFile): Declare.
8121 * hostio.c: New file.
8122 * server.c (handle_v_requests): Take packet_len and new_packet_len
8123 for binary packets. Call handle_vFile.
8124 (main): Update call to handle_v_requests.
8125
f9387fc3
DJ
81262007-11-05 Daniel Jacobowitz <dan@codesourcery.com>
8127
8128 * linux-low.c: Include <sched.h>.
8129
51c2684e
DJ
81302007-11-01 Daniel Jacobowitz <dan@codesourcery.com>
8131
8132 * linux-low.c (linux_tracefork_grandchild): New.
8133 (linux_tracefork_child): Use clone.
8134 (linux_test_for_tracefork): Use clone; allocate and free a stack.
8135
75f83163
JB
81362007-10-31 Joel Brobecker <brobecker@adacore.com>
8137
8138 * Makefile.in: Use $(SHELL) instead of "sh" to call regdat.sh.
8139
da5898ce
DJ
81402007-10-24 Daniel Jacobowitz <dan@codesourcery.com>
8141
8142 * linux-low.c (handle_extended_wait): Handle unexpected signals.
8143
24a09b5f
DJ
81442007-10-23 Daniel Jacobowitz <dan@codesourcery.com>
8145
8146 * inferiors.c (change_inferior_id): Delete.
8147 (add_pid_to_list, pull_pid_from_list): New.
8148 * linux-low.c (PTRACE_SETOPTIONS, PTRACE_GETEVENTMSG)
8149 (PTRACE_O_TRACESYSGOOD, PTRACE_O_TRACEFORK, PTRACE_O_TRACEVFORK)
8150 (PTRACE_O_TRACECLONE, PTRACE_O_TRACEEXEC, PTRACE_O_TRACEVFORKDONE)
8151 (PTRACE_O_TRACEEXIT, PTRACE_EVENT_FORK, PTRACE_EVENT_VFORK)
8152 (PTRACE_EVENT_CLONE, PTRACE_EVENT_EXEC, PTRACE_EVENT_VFORK_DONE)
8153 (PTRACE_EVENT_EXIT, __WALL): Provide default definitions.
8154 (stopped_pids, thread_db_active, must_set_ptrace_flags): New variables.
8155 (using_threads): Always set to 1.
8156 (handle_extended_wait): New.
8157 (add_process): Do not set TID.
8158 (linux_create_inferior): Set must_set_ptrace_flags.
8159 (linux_attach_lwp): Remove TID argument. Do not check using_threads.
8160 Use PTRACE_SETOPTIONS. Call new_thread_notify. Update all callers.
8161 (linux_thread_alive): Rename TID argument to LWPID.
8162 (linux_wait_for_process): Handle unknown processes. Do not use TID.
8163 (linux_wait_for_event): Do not use TID or check using_threads. Update
8164 call to dead_thread_notify. Call handle_extended_wait.
8165 (linux_create_inferior): Use PTRACE_SETOPTIONS.
8166 (send_sigstop): Delete sigstop_sent.
8167 (wait_for_sigstop): Avoid TID.
8168 (linux_supports_tracefork_flag, linux_tracefork_child, my_waitpid)
8169 (linux_test_for_tracefork): New.
8170 (linux_lookup_signals): Use thread_db_active and
8171 linux_supports_tracefork_flag.
8172 (initialize_low): Use thread_db_active and linux_test_for_tracefork.
8173 * linux-low.h (get_process_thread): Avoid TID.
8174 (struct process_ifo): Move thread_known and tid to the end. Remove
8175 sigstop_sent.
8176 (linux_attach_lwp, thread_db_init): Update prototypes.
8177 * server.h (change_inferior_id): Delete prototype.
8178 (add_pid_to_list, pull_pid_from_list): New prototypes.
8179 * thread-db.c (thread_db_use_events): New.
8180 (find_first_thread): Rename to...
8181 (find_one_thread): ...this. Update callers and messages. Do not
8182 call fatal. Check thread_db_use_events. Do not call
8183 change_inferior_id or new_thread_notify.
8184 (maybe_attach_thread): Update. Do not call new_thread_notify.
8185 (thread_db_init): Set thread_db_use_events. Check use_events.
8186 * utils.c (fatal, warning): Correct message prefix.
8187
30ed0a8f
DJ
81882007-10-15 Daniel Jacobowitz <dan@codesourcery.com>
8189
8190 * Makefile.in (clean): Remove new files.
8191 (powerpc-32.o, powerpc-32.c, powerpc-e500.o, powerpc-e500.c)
8192 (powerpc-64.o, powerpc-64.c): New rules.
8193 * configure.srv: Use alternate register sets for powerpc64-*-linux*
8194 with AltiVec, powerpc-*-linux* with AltiVec, and powerpc-*-linux*
8195 with SPE.
8196 * linux-ppc-low.c (ppc_regmap): Do not fetch the FP registers for
8197 SPE targets.
8198 (ppc_cannot_store_register): Do not check for FPSCR for SPE targets.
8199 (PTRACE_GETVRREGS, PTRACE_SETVRREGS, SIZEOF_VRREGS, ppc_fill_vrregset)
8200 (ppc_store_vrregset, PTRACE_GETEVRREGS, PTRACE_SETEVRREGS)
8201 (struct gdb_evrregset_t, ppc_fill_evrregset, ppc_store_evrregset): New.
8202 (target_regsets): Add AltiVec and SPE register sets.
8203 * configure.ac: Check for AltiVec and SPE.
8204 * linux-ppc64-low.c (PTRACE_GETVRREGS, PTRACE_SETVRREGS, SIZEOF_VRREGS)
8205 (ppc_fill_vrregset, ppc_store_vrregset): New.
8206 (target_regsets): Add AltiVec register set.
8207 * configure: Regenerated.
8208
fd462a61
DJ
82092007-09-19 Daniel Jacobowitz <dan@codesourcery.com>
8210
8211 * linux-low.c (O_LARGEFILE): Define.
8212 (linux_read_memory): Use /proc/PID/mem.
8213 * configure.ac: Use AC_GNU_SOURCE. Check for pread64.
8214 * configure, config.in: Regenerated.
8215
69f223ed
DJ
82162007-09-04 Daniel Jacobowitz <dan@codesourcery.com>
8217
8218 * linux-low.c (linux_wait_for_event): Do not pass signals while
8219 single-stepping.
8220
aec18585
PA
82212007-09-03 Pedro Alves <pedro_alves@portugalmail.pt>
8222
8223 * win32-low.c (create_process): New.
8224 (win32_create_inferior): Use create_process instead of
8225 CreateProcess. If create_process failed retry appending an ".exe"
8226 suffix. Store the GetLastError result immediatelly after
8227 create_process calls and use it on the call to error.
8228
34d86ddd
PA
82292007-09-03 Pedro Alves <pedro_alves@portugalmail.pt>
8230
8231 * win32-low.c (handle_load_dll): Don't use toolhelp when waiting.
8232
5a0e3bd0
JB
82332007-08-23 Joel Brobecker <brobecker@adacore.com>
8234
8235 * configure.ac: Switch license to GPLv3.
8236
f88c79e6
MS
82372007-08-01 Michael Snyder <msnyder@access-company.com>
8238
8239 * remote-utils.c (putpkt_binary): Memory leak, free buf2.
8240
6b3d9b83
PA
82412007-07-31 Pedro Alves <pedro_alves@portugalmail.pt>
8242
8243 * win32-low.c (winapi_CloseToolhelp32Snapshot) [_WIN32_WCE]: New
8244 typedef.
8245 (win32_CloseToolhelp32Snapshot) [_WIN32_WCE]: New global var.
8246 (load_toolhelp) [_WIN32_WCE]: Load TOOLHELP.DLL. Get
8247 CloseToolhelp32Snapshot.
8248 (toolhelp_get_dll_name) [_WIN32_WCE]: Close the snapshot with
8249 CloseToolhelp32Snapshot.
8250
c588c53c
MS
82512007-07-27 Michael Snyder <michael.snyder@access-company.com>
8252
8253 * server.c (main): Check for inferior exit before main loop.
8254
aa0403d9
PA
82552007-07-18 Pedro Alves <pedro_alves@portugalmail.pt>
8256
8257 * remote-utils.c (remote_open): Set SO_KEEPALIVE on remote_desc
8258 instead of on tmp_desc.
8259
255e7678
DJ
82602007-07-17 Pedro Alves <pedro_alves@portugalmail.pt>
8261 Daniel Jacobowitz <dan@codesourcery.com>
8262
8263 * inferiors.c (all_dlls, dlls_changed, get_dll): New.
8264 (add_thread): Minor cleanups.
8265 (clear_inferiors): Move lower in the file. Clear the DLL
8266 list.
8267 (free_one_dll, match_dll, loaded_dll, unloaded_dll, clear_list): New.
8268 * remote-utils.c (prepare_resume_reply): Check dlls_changed.
8269 (xml_escape_text): New.
8270 * server.c (handle_query): Handle qXfer:libraries:read. Report it
8271 for qSupported.
8272 (handle_v_cont): Report errors.
8273 (gdbserver_version): Update.
8274 (main): Correct size of own_buf. Do not report initial DLL events.
8275 * server.h (struct dll_info, all_dlls, dlls_changed, loaded_dll)
8276 (unloaded_dll, xml_escape_text): New.
8277 * win32-low.c (enum target_waitkind): Update comments.
8278 (win32_add_one_solib, get_image_name, winapi_EnumProcessModules)
8279 (winapi_GetModuleInformation, winapi_GetModuleFileNameExA)
8280 (win32_EnumProcessModules, win32_GetModuleInformation)
8281 (win32_GetModuleFileNameExA, load_psapi, psapi_get_dll_name)
8282 (winapi_CreateToolhelp32Snapshot, winapi_Module32First)
8283 (winapi_Module32Next, win32_CreateToolhelp32Snapshot)
8284 (win32_Module32First, win32_Module32Next, load_toolhelp)
8285 (toolhelp_get_dll_name, handle_load_dll, handle_unload_dll): New.
8286 (get_child_debug_event): Handle DLL events.
8287 (win32_wait): Likewise.
8288
0d37add9
DJ
82892007-07-12 Daniel Jacobowitz <dan@codesourcery.com>
8290
8291 * configure.srv: Set srv_linux_regsets for sh*-*-linux*.
8292 * linux-sh-low.c (sh_fill_gregset, target_regsets): New.
8293
45e2715e
PA
82942007-07-08 Pedro Alves <pedro_alves@portugalmail.pt>
8295
8296 * win32-low.c (handle_output_debug_string): Ignore event if not
8297 waiting.
8298
c5674cf1
PA
82992007-07-08 Pedro Alves <pedro_alves@portugalmail.pt>
8300
8301 * win32-arm-low.c (arm_wince_breakpoint): Fix typo.
8302
2bbe3cc1
DJ
83032007-07-03 Daniel Jacobowitz <dan@codesourcery.com>
8304
8305 * remote-utils.c (look_up_one_symbol): Handle 'm' packets.
8306
ae13219e
DJ
83072007-07-02 Daniel Jacobowitz <dan@codesourcery.com>
8308
8309 * inferiors.c (change_inferior_id): Add comment.
8310 * linux-low.c (check_removed_breakpoint): Add an early
8311 prototype. Improve debug output.
8312 (linux_attach): Doc update.
8313 (linux_detach_one_process, linux_detach): Clean up before releasing
8314 each process.
8315 (send_sigstop, wait_for_sigstop): Improve comments and debug output.
8316 * linux-low.h (struct process_info): Doc improvement.
8317 * mem-break.c (delete_all_breakpoints): New.
8318 * mem-break.h (delete_all_breakpoints): New prototype.
8319 * thread-db.c (find_first_thread): New.
8320 (thread_db_create_event): Call it instead of
8321 thread_db_find_new_threads. Clean up unused variables.
8322 (maybe_attach_thread): Remove first thread handling.
8323 (thread_db_find_new_threads): Use find_first_thread.
8324 (thread_db_get_tls_address): Likewise.
8325
4105de34
DJ
83262007-06-27 Daniel Jacobowitz <dan@codesourcery.com>
8327
8328 * thread-db.c (thread_db_find_new_threads): Add prototype.
8329 (thread_db_create_event): Check for the main thread before adding
8330 a new thread.
8331 (maybe_attach_thread): Only enable event reporting if TID == 0.
8332 (thread_db_get_tls_address): Check for new threads.
8333
2b876972
DJ
83342007-06-20 Daniel Jacobowitz <dan@codesourcery.com>
8335
8336 * linux-low.c (linux_create_inferior): Try execv before execvp.
8337 * spu-low.c (spu_create_inferior): Likewise.
8338
7a245884
DJ
83392007-06-13 Mike Frysinger <vapier@gentoo.org>
8340
8341 * linux-low.c (linux_create_inferior): Change execv to execvp.
8342 * spu-low.c (spu_create_inferior): Likewies.
8343
117ce543
DJ
83442007-06-13 Daniel Jacobowitz <dan@codesourcery.com>
8345
8346 * Makefile.in (clean): Clean new files instead of deleted ones.
8347 (reg-mips.o, reg-mips.c, reg-mips64.o, reg-mips64.c): Delete.
8348 (mips-linux.o, mips-linux.c, mips64-linux.o, mips64-linux.c): New
8349 rules.
8350 * configure.srv: Specify XML files and new regformats for MIPS and
8351 MIPS64 GNU/Linux.
8352 * linux-mips-low.c (mips_num_regs): Set to only used registers.
8353 (mips_regmap): Do not fetch $0. Remove unused registers. Add
8354 an entry for the restart register.
8355 (mips_cannot_fetch_register, mips_cannot_store_register)
8356 (mips_reinsert_addr, mips_fill_fpregset, mips_store_fpregset): Update
8357 register names to match the XML descriptions.
8358 (mips_fill_gregset, mips_store_gregset): Likewise. Handle the
8359 restart register instead of $0.
8360
0e7f50da
UW
83612007-06-12 Ulrich Weigand <uweigand@de.ibm.com>
8362 Markus Deuling <deuling@de.ibm.com>
8363
8364 * remote-utils.c (decode_xfer_write): New function.
8365 * server.h (decode_xfer_write): Add prototype.
8366 * server.c (handle_query): Add PACKET_LEN argument. Support
8367 qXfer:spu:read and qXfer:spu:write packets.
8368 (main): Pass packet_len to handle_query.
8369 * spu-low.c (spu_target_ops): Add spu_proc_xfer_spu.
8370 * target.h (target_ops): Add qxfer_spu.
8371
374c1d38
UW
83722007-06-12 Ulrich Weigand <uweigand@de.ibm.com>
8373
8374 * spu-low.c (spu_proc_xfer_spu): Do not return failure when
8375 accessing non-seekable spufs files.
8376
bb63802a
UW
83772007-05-16 Markus Deuling <deuling@de.ibm.com>
8378
889bf7c5 8379 * server.c (handle_query): Add reply for qC packet.
bb63802a 8380
7390519e
PA
83812007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
8382 Leo Zayas <lerele@champenstudios@com>
8383
8384 * server.h (check_remote_input_interrupt_request): New function.
8385 * remote_utils.c (INVALID_DESCRIPTOR): New define.
8386 (remote_desc): Initialize with INVALID_DESCRIPTOR.
8387 (input_interrupt): Expose on USE_WIN32API too. Fix whitespace.
8388 (check_remote_input_interrupt_request): New function.
8389 * server.h (check_remote_input_interrupt_request): Declare.
3ecf0694 8390 * win32-low.c (winapi_DebugBreakProcess,
7390519e
PA
8391 winapi_GenerateConsoleCtrlEvent): New typedefs.
8392 (get_child_debug_event): Lower Win32 debug event polling from 1 sec
8393 to 250 ms.
8394 (win32_wait): Check for remote interrupt request
8395 with check_remote_input_interrupt_request.
8396 (win32_request_interrupt): New function.
8397 (win32_target_op): Set request_interrupt to win32_request_interrupt.
8398
34b34921
PA
83992007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
8400
8401 * win32-low.c (debug_registers_changed,
8402 debug_registers_used, CONTEXT_EXTENDED_REGISTERS,
8403 CONTEXT_FLOATING_POINT, CONTEXT_DEBUG_REGISTERS,
8404 CONTEXT_DEBUGGER, CONTEXT_DEBUGGER_DR): Delete.
8405 (thread_rec): Get context using the low target.
8406 (child_add_thread): Call thread_added on the low target,
8407 which does the same thing.
8408 (regptr): Delete.
8409 (do_initial_child_stuff): Remove debug registers references.
8410 Set context using the low target. Resume threads after
8411 setting the contexts.
8412 (child_continue): Remove dead variable. Remove debug
8413 registers references.
8414 (child_fetch_inferior_registers): Go through the low target.
8415 (do_child_store_inferior_registers): Remove.
8416 (child_store_inferior_registers): Go through the low target.
8417 (win32_resume): Remove debug registers references.
8418 Set context using the low target.
8419 (handle_exception): Change return type to void. Don't record
8420 context here. Set status to TARGET_WAITKIND_SPURIOUS on a
8421 first chance exception.
889bf7c5 8422 (get_child_debug_event): Change return type to void. Remove
34b34921
PA
8423 goto loop. Always return after waiting for debug event.
8424 (win32_wait): Convert to switch statement. Handle spurious
8425 events.
8426
8427 * win32-i386-low.c (debug_registers_changed,
8428 debug_registers_used): New.
8429 (initial_stuff): Rename to ...
8430 (i386_initial_stuff): ... this. Clear debug registers
8431 state variables.
8432 (store_debug_registers): Delete.
8433 (i386_get_thread_context): New.
8434 (load_debug_registers): Delete.
8435 (i386_set_thread_context): New.
8436 (i386_thread_added): New.
8437 (single_step): Rename to ...
8438 (i386_single_step): ... this.
8439 (do_fetch_inferior_registers): Rename to ...
8440 (i386_fetch_inferior_register): ... this.
8441 (i386_store_inferior_register): New.
8442 (the_low_target): Adapt to new interface.
8443
8444 * win32-arm-low.c (CONTEXT_FLOATING_POINT): Define.
8445 (arm_get_thread_context): New.
8446 (arm_set_thread_context): New.
8447 (regptr): New.
8448 (do_fetch_inferior_registers): Rename to ...
8449 (arm_fetch_inferior_register): ... this.
8450 (arm_store_inferior_register): New.
8451 (arm_wince_breakpoint): Reimplement as unsigned long.
8452 (arm_wince_breakpoint_len): Define.
8453 (the_low_target): Adapt to new interface.
8454
8455 * win32-low.h (target_ops): Remove regmap, store_debug_registers and
8456 load_debug_registers. Add get_thread_context, set_thread_context,
8457 thread_added and store_inferior_register. Rename
8458 fetch_inferior_registers to fetch_inferior_register.
8459 (regptr): Remove declaration.
8460
dd6953e1
PA
84612007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
8462
8463 * linux-low.c (linux_detach): Change return type to int. Return 0.
8464 * spu-low.c (spu_detach): Likewise.
8465
444d6139
PA
84662007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
8467
8468 * target.h (target_ops): Change return type of detach to int.
8469 Add join.
8470 (join_inferior): New.
8471 * server.c (main): Don't skip detach support on mingw32.
8472 If the inferior doesn't support detaching return error.
8473 Call join_inferior instead of using waitpid.
8474 * linux-low.c (linux_join): New.
8475 (linux_target_op): Add linux_join.
8476 * spu-low.c (spu_join): New.
8477 (spu_target_ops): Add spu_join.
8478 * win32-low.c (win32_detach): Adapt to new interface.
8479 Reopen current_process_handle before detaching. Issue a child
8480 resume before detaching.
8481 (win32_join): New.
8482 (win32_target_op): Add win32_join.
8483
1d5315fe
PA
84842007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
8485
8486 * win32-low.c (win32-attach): Fix return value.
8487 * target.h (target_ops): Describe ATTACH return values.
8488
bf914831
PA
84892007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
8490
8491 * win32-low.c (GETPROCADDRESS): Define.
8492 (winapi_DebugActiveProcessStop): Add WINAPI. typedef as pointer.
8493 (winapi_DebugSetProcessKillOnExit): Likewise.
8494 (win32_create_inferior): Force usage of ansi CreateProcessA.
8495 (win32_attach): Use GETPROCADDRESS.
8496 (win32_detach): Likewise.
8497
f72f3e60
PA
84982007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
8499
8500 * win32-low.c (win32_wait): Don't use WSTOPSIG.
8501
ed50f18f
PA
85022007-03-30 Pedro Alves <pedro_alves@portugalmail.pt>
8503
8504 * win32-low.c: Commit leftover changes from 2007-03-29.
8505
0c2ead7e
DJ
85062007-03-30 Daniel Jacobowitz <dan@codesourcery.com>
8507
8508 * i387-fp.c (struct i387_fsave, struct i387_fxsave): Make 16-bit
8509 fields short instead of int. Add explicit padding.
8510 (i387_cache_to_fsave): Remove unnecessary casts.
8511 (i387_fsave_to_cache): Doc fix.
8512 (i387_cache_to_fxsave): Remove unnecessary casts and masking.
8513
73725ff3
DJ
85142007-03-30 Daniel Jacobowitz <dan@codesourcery.com>
8515
8516 * i387-fp.c (i387_cache_to_fxsave): Reinitialize val2 before use.
8517 (i387_fxsave_to_cache): Check fp->ftag while building ftag value.
8518
d99f33d8
PA
85192007-03-29 Pedro Alves <pedro_alves@portugalmail.pt>
8520
8521 * configure.srv (arm*-*-mingw32ce*): Move near the other
8522 arm targets.
8523
68070c10
PA
85242007-03-29 Pedro Alves <pedro_alves@portugalmail.pt>
8525
2482afc6 8526 * configure.ac: Add errno checking.
68070c10
PA
8527 (AC_CHECK_HEADERS): Add errno.h, fcntl.h, signal.h,
8528 sys/file.h and malloc.h.
8529 (AC_CHECK_DECLS): Add perror.
8530 (srv_mingwce): Handle.
2482afc6 8531 * configure.srv (i[34567]86-*-cygwin*): Add
68070c10
PA
8532 win32-i386-low.o to srv_tgtobj.
8533 (i[34567]86-*-mingw*): Likewise.
8534 (arm*-*-mingw32ce*): Add case.
8535 * gdbreplay.c [HAVE_SYS_FILE_H, HAVE_SIGNAL_H,
8536 HAVE_FCNTL_H, HAVE_ERRNO_H, HAVE_MALLOC_H]: Check.
8537 [__MINGW32CE__] (strerror): New function.
8538 [__MINGW32CE__] (errno): Define to GetLastError.
8539 [__MINGW32CE__] (COUNTOF): New macro.
8540 (remote_open): Remove extra close call.
8541 * mem-break.c (delete_breakpoint_at): New function.
8542 * mem-break.h (delete_breakpoint_at): Declare.
8543 * remote-utils.c [HAVE_SYS_FILE_H, HAVE_SIGNAL_H,
8544 HAVE_FCNTL_H, HAVE_UNISTD_H, HAVE_ERRNO_H]: Check.
8545 [USE_WIN32API] (read, write): Add char* casts.
8546 * server.c [HAVE_UNISTD_H, HAVE_SIGNAL_H]: Check.
8547 * server.h: Include wincecompat.h on Windows CE.
8548 [HAVE_ERRNO_H]: Check.
8549 (perror): Declare if not declared.
8550 * utils.c: Add stdlib.h, errno.h and malloc.h includes.
8551 (perror_with_name): Remove errno declaration.
8552 * wincecompat.h: New.
8553 * wincecompat.c: New.
8554 * win32-low.h: New.
8555 * win32-arm-low.c: New.
8556 * win32-i386-low.c: New.
8557 (win32-low.c): Include mem-break.h and win32-low.h, and winnt.h.
8558 (OUTMSG2): Make it safe.
8559 (_T): New macro.
8560 (COUNTOF): New macro.
8561 (NUM_REGS): Get it from the low target.
8562 (CONTEXT_EXTENDED_REGISTERS, CONTEXT_FLOATING_POINT,
8563 CONTEXT_DEBUG_REGISTERS): Add fallbacks to 0.
8564 (thread_rec): Let low target handle debug registers.
8565 (child_add_thread): Likewise.
8566 (child_init_thread_list): Likewise.
8567 (continue_one_thread): Likewise.
8568 (regptr): New.
8569 (do_child_fetch_inferior_registers): Move to ...
8570 * win32-i386-low.c: ... here, and rename to ...
8571 (do_fetch_inferior_registers): ... this.
889bf7c5 8572 * win32-low.c (child_fetch_inferior_registers):
68070c10
PA
8573 Go through the low target.
8574 (do_child_store_inferior_registers): Use regptr.
8575 (strwinerror): New function.
8576 (win32_create_inferior): Handle Windows CE.
8577 Use strwinerror instead of strerror on Windows error
8578 codes. Add program to the error output.
8579 Don't close the main thread handle on Windows CE.
8580 (win32_attach): Use coredll.dll on Windows CE.
8581 (win32_kill): Close current process and current
8582 thread handles.
8583 (win32_detach): Use coredll.dll on Windows CE.
8584 (win32_resume): Let low target handle debug registers, and
8585 step request.
8586 (handle_exception): Add/Remove initial breakpoint. Avoid
8587 non-existant WSTOPSIG on Windows CE.
8588 (win32_read_inferior_memory): Cast to remove warning.
8589 (win32_arch_string): Go through the low target.
8590 (initialize_low): Call set_breakpoint_data with the low
8591 target's breakpoint.
8592 * win32-low.c (dr, FLAG_TRACE_BIT, FCS_REGNUM,
8593 FOP_REGNUM, mappings): Move to ...
8594 * win32-i386-low.c: ... here.
8595 * win32-low.c (win32_thread_info): Move to ...
8596 * win32-low.h: ... here.
8597 * Makefile.in (SFILES): Add win32-low.c, win32-i386-low.c,
8598 win32-arm-low.c and wincecompat.c.
8599 (all:): Add $EXEEXT.
8600 (install-only:): Likewise.
8601 (gdbserver:): Likewise.
8602 (gdbreplay:): Likewise.
8603 * config.in: Regenerate.
8604 * configure: Regenerate.
8605
41093d81
PA
86062007-03-28 Pedro Alves <pedro_alves@portugalmail.pt>
8607
8608 * win32-low.c: Rename typedef thread_info to
8609 win32_thread_info throughout.
8610
544afa54
PA
86112007-03-28 Pedro Alves <pedro_alves@portugalmail.pt>
8612
8613 * win32-i386-low.c: Rename to ...
8614 * win32-low.c: ... this.
8615 * configure.srv: Replace win32-i386-low.o with win32-low.o.
8616 * Makefile.in: Likewise.
8617
bce7165d
PA
86182007-03-27 Pedro Alves <pedro_alves@portugalmail.pt>
8619
8620 * remote-utils.c (monitor_output): Constify msg parameter.
8621 * server.h (monitor_output): Likewise.
8622 * win32-i386-low.c (handle_output_debug_string): New.
8623 (win32_kill): Handle OUTPUT_DEBUG_STRING_EVENT events using
8624 handle_output_debug_string.
8625 (get_child_debug_event): Likewise.
8626
506c7aa0
DJ
86272007-03-27 Mat Hostetter <mat@lcs.mit.edu>
8628
8629 * server.c (main): Correct strtoul check.
8630
42c81e2a
DJ
86312007-03-27 Jon Ringle <jon@ringle.org>
8632
8633 * linux-low.c: Check __ARCH_HAS_MMU__ also.
8634
9453113a
DJ
86352007-03-27 Brooks Moses <brooks.moses@codesourcery.com>
8636
8637 * Makefile.in: Add dummy "pdf" and "install-pdf" targets.
8638
64a69107
DJ
86392007-02-27 Daniel Jacobowitz <dan@codesourcery.com>
8640
8641 * terminal.h: Check HAVE_SGTTY_H.
8642
86432007-02-27 Mat Hostetter <mat@lcs.mit.edu>
6f8486da
DJ
8644
8645 * remote-utils.c (remote_open): Print out the assigned port number.
8646
c74d0ad8
DJ
86472007-02-26 Daniel Jacobowitz <dan@codesourcery.com>
8648
8649 * remote-utils.c (monitor_output): New function.
8650 * server.c (debug_threads): Define here.
8651 (monitor_show_help): New function.
8652 (handle_query): Handle qRcmd.
8653 (main): Do not handle 'd' packet.
8654 * server.h (debug_threads, remote_debug, monitor_output): Declare.
8655 * linux-low.c, spu-low.c, win32-i386-low.c: Remove definitions
8656 of debug_threads.
8657
de7c3b4a
PA
86582007-02-25 Pedro Alves <pedro_alves@portugalmail.pt>
8659
8660 * Makefile.in (EXEEXT): New.
8661 (clean): Use $(EXEEXT).
8662
ef57601b
PA
86632007-02-25 Pedro Alves <pedro_alves@portugalmail.pt>
8664
8665 * target.h (target_ops): Rename send_signal to request_interrupt,
8666 and remove enum target_signal parameter.
8667 * linux-low.c (linux_request_interrupt): Rename from
8668 linux_send_signal, and always send SIGINT.
8669 * spu-low.c (spu_request_interrupt): Rename from spu_send_signal,
8670 and always send SIGINT.
8671 * remote-utils.c (putpkt_binary): Call request_interrupt, instead
8672 of send_signal.
8673 (input_interrupt): Likewise.
8674
820f2bda
PA
86752007-02-25 Pedro Alves <pedro_alves@portugalmail.pt>
8676
8677 * server.c (get_features_xml): Check if target implemented
8678 arch_string.
8679 * win32-i386-low.c (win32_arch_string): New.
8680 (win32_target_ops): Add win32_arch_string as arch_string member.
8681
ab39bf24
UW
86822007-02-22 Markus Deuling <deuling@de.ibm.com>
8683
8684 * spu-low.c (spu_arch_string): New.
8685 (spu_target_ops): Add spu_arch_string.
8686
61ff6e04
DJ
86872007-02-16 Daniel Jacobowitz <dan@codesourcery.com>
8688
8689 * remote-utils.c: Remove HAVE_TERMINAL_H check.
8690 * configure.ac: Do not check for terminal.h.
8691 * configure, config.in: Regenerated.
8692
fb1e4ffc
DJ
86932007-02-08 Daniel Jacobowitz <dan@codesourcery.com>
8694
8695 * Makefile.in (OBS): Add $(XML_BUILTIN).
8696 (XML_DIR, XML_TARGET, XML_FILES, XML_BUILTIN): New.
8697 (clean): Update.
8698 (target.xml, xml-builtin.c, stamp-xml, arm-with-iwmmxt.o)
8699 (arm-with-iwmmxt.c): New.
8700 * config.in, configure: Regenerate.
8701 * configure.ac: Check for iWMMXt. Handle srv_xmltarget,
8702 srv_xmlbuiltin, and srv_xmlfiles. Define USE_XML.
8703 * configure.srv: Mention srv_xmltarget and srv_xmlfiles.
8704 (arm*-*-linux*): Add iWMMXt and regset support.
8705 * linux-arm-low.c (PTRACE_GETWMMXREGS, PTRACE_SETWMMXREGS): Define.
8706 (arm_fill_gregset, arm_store_gregset, arm_fill_wmmxregset)
8707 (arm_store_wmmxregset, target_regsets): New.
8708 * server.c (get_features_xml): Take annex argument. Check builtin
8709 XML documents.
8710 (handle_query): Handle multiple annexes.
8711
0f48aa01
DJ
87122007-01-29 Daniel Jacobowitz <dan@codesourcery.com>
8713
8714 * remote-utils.c [USE_WIN32API] (read, write): Define.
8715 (putpkt_binary, input_interrupt, readchar, getpkt): Use read and
8716 write.
8717
23181151
DJ
87182007-01-09 Daniel Jacobowitz <dan@codesourcery.com>
8719
8720 * linux-i386-low.c (the_low_target): Set arch_string.
8721 * linux-x86-64-low.c (the_low_target): Likewise.
8722 * linux-low.c (linux_arch_string): New.
8723 (linux_target_ops): Add it.
8724 * linux-low.h (struct linux_target_ops): Add arch_string.
8725 * server.c (write_qxfer_response): Use const void * for DATA.
8726 (get_features_xml): New.
8727 (handle_query): Handle qXfer:features:read. Report it for qSupported.
8728 * target.h (struct target_ops): Add arch_string method.
8729
9d606399
DJ
87302007-01-03 Denis Pilat <denis.pilat@st.com>
8731 Daniel Jacobowitz <dan@codesourcery.com>
8732
8733 * linux-low.c (linux_kill): Handle being called with no threads.
8734 * win32-i386-low.c (win32_kill): Likewise.
8735 (get_child_debug_event): Clear current_process_handle.
8736
87372006-12-30 Denis PILAT <denis.pilat@st.com>
8264bb58
DJ
8738 Daniel Jacobowitz <dan@codesourcery.com>
8739
8740 * remote-utils.c (remote_open): Check the type of specified
8741 serial port devices before opening them.
8742 * server.c (main): Kill the inferior if an error occurs during
8743 the first remote_open.
8744
a5e13d24
DJ
87452006-12-05 Markus Deuling <deuling@de.ibm.com>
8746
8747 * README: Update supported targets.
8748
186947f7
DJ
87492006-11-28 Daniel Jacobowitz <dan@codesourcery.com>
8750
8751 * Makefile.in (clean): Remove reg-mips64.c.
8752 (reg-mips64.c, reg-mips64.o): New rules.
8753 * configure.srv: Handle mips64. Include regset support for mips.
8754 * linux-mips-low.c (union mips_register): New.
8755 (mips_get_pc, mips_set_pc, mips_reinsert_addr): Use it.
8756 (mips_breakpoint, mips_breakpoint_at): Use int.
8757 (mips_collect_register, mips_supply_register)
8758 (mips_collect_register_32bit, mips_supply_register_32bit)
8759 (mips_fill_gregset, mips_store_gregset, mips_fill_fpregset)
8760 (mips_store_fpregset, target_regsets): New.
8761 * thread-db.c (thread_db_get_tls_address): Use uintptr_t.
8762
a13e2c95
UW
87632006-11-22 Ulrich Weigand <uweigand@de.ibm.com>
8764
8765 * configure.srv: Add target "spu*-*-*".
8766 * Makefile.in (clean): Remove reg-spu.c.
8767 (reg-spu.c, reg-spu.o, spu-low.o): Add dependencies.
8768 * spu-low.c: New file.
8769
cb7283db
DJ
87702006-11-16 Daniel Jacobowitz <dan@codesourcery.com>
8771
8772 * configure.ac: Correct td_thr_tls_get_addr test.
8773 * configure: Regenerated.
8774
89be2091
DJ
87752006-11-16 Daniel Jacobowitz <dan@codesourcery.com>
8776
8777 * linux-low.c (linux_wait_for_event): Reformat. Use the
8778 pass_signals array.
8779 * remote-utils.c (decode_address_to_semicolon): New.
8780 * server.c (pass_signals, handle_general_set): New.
8781 (handle_query): Mention QPassSignals for qSupported.
8782 (main): Call handle_general_set.
8783 * server.h (pass_signals, decode_address_to_semicolon): New.
8784
000ef4f0
DJ
87852006-11-06 Daniel Jacobowitz <dan@codesourcery.com>
8786
8787 * server.c (handle_query): Correct error handling for read_auxv.
8788
b7149293
UW
87892005-10-19 Ulrich Weigand <uweigand@de.ibm.com>
8790
8791 * configure.srv [s390-*-linux*, s390x-*-linux*]: Set srv_linux_regsets
8792 and srv_linux_thread_db to yes.
8793 * linux-s390-low.c (s390_fill_gregset): New function.
8794 (target_regsets): Define data structure.
8795
dae5f5cf
DJ
87962006-10-17 Daniel Jacobowitz <dan@codesourcery.com>
8797
8798 * acinclude.m4 (SRV_CHECK_TLS_GET_ADDR): New.
8799 * configure.ac: Use it. Define HAVE_TD_THR_TLS_GET_ADDR.
8800 * config.in, configure: Regenerated.
8801 * inferiors.c (gdb_id_to_thread): New function.
8802 (gdb_id_to_thread_id): Use it.
8803 * linux-low.c (linux_target_ops): Use thread_db_get_tls_address.
8804 * linux-low.h (struct process_info): Add th member.
8805 (thread_db_get_tls_address): New prototype.
8806 * remote-utils.c (decode_address): Make non-static.
8807 * server.c (handle_query): Handle qGetTLSAddr.
8808 * server.h (gdb_id_to_thread, decode_address): New prototypes.
8809 * target.h (struct target_ops): Add get_tls_address.
8810 * thread-db.c (maybe_attach_thread): Save the thread handle.
8811 (thread_db_get_tls_address): New.
8812
32ca6d61
DJ
88132006-09-28 Daniel Jacobowitz <dan@codesourcery.com>
8814
8815 * linux-low.c (PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Define.
8816 (linux_resume_one_process): Take a siginfo_t *. Update all
8817 callers. Queue it if necessary. Use PTRACE_SETSIGINFO.
8818 (struct pending_signals): Add a siginfo_t.
8819 (linux_wait_for_process): Always set last_status.
8820 (linux_wait_for_event): Use PTRACE_GETSIGINFO.
8821 (linux_queue_one_thread): Use PTRACE_GETSIGINFO.
8822 * linux-low.h (struct process_info): Add last_status.
8823
5ffff7c1
DJ
88242006-09-21 Daniel Jacobowitz <dan@codesourcery.com>
8825
8826 * remote-utils.c (try_rle): New function.
8827 (putpkt_binary): Use it.
8828
8695c747
DJ
88292006-08-19 Daniel Jacobowitz <dan@codesourcery.com>
8830
8831 * Makefile.in (clean): Clean reg-x86-64-linux.c.
8832 (reg-x86-64-linux.o, reg-x86-64-linux.c): New.
8833 * configure.srv (x86_64-*-linux*): Use reg-x86-64-linux.o.
8834 * linux-x86-64-low.c (x86_64_regmap): Include ORIG_RAX.
8835 (x86_64_fill_gregset, x86_64_store_gregset): Skip floating
8836 point registers.
8837
290fadea
RS
88382006-08-08 Richard Sandiford <richard@codesourcery.com>
8839
8840 * server.c (terminal_fd): New variable.
8841 (old_foreground_pgrp): Likewise.
8842 (restore_old_foreground_pgrp): New function.
8843 (start_inferior): Record the terminal file descriptor in terminal_fd
8844 and its original foreground group in old_foreground_pgrp. Register
8845 restore_old_foreground_pgrp with atexit().
8846
9f2e1e63
DJ
88472006-07-26 Daniel Jacobowitz <dan@codesourcery.com>
8848
8849 * server.c (handle_query): Correct qPart to qXfer.
8850
b80864fb
DJ
88512006-07-22 Daniel Jacobowitz <dan@codesourcery.com>
8852
8853 * configure.ac: Check for more headers which are missing on
8854 Windows. Automatically supply -lwsock32 and USE_WIN32API.
8855 * configure.srv: Add Cygwin and mingw32.
8856 * remote-utils.c: Don't include headers unconditionally which
8857 are missing on mingw32. Include <winsock.h> for mingw32.
8858 (remote_open): Adjust for mingw32 support. Flush
8859 standard error after writing to it.
8860 (remote_close, putpkt_binary, input_interrupt, block_async_io)
8861 (unblock_async_io, enable_async_io, disable_async_io)
8862 (readchar, getpkt): Update for Winsock support.
8863 (prepare_resume_reply): Expect a protocol signal number.
8864 * server.c: Disable <sys/wait.h> on mingw32.
8865 (start_inferior): Adjust for mingw32 support. Flush
8866 standard error after writing to it.
8867 (attach_inferior): Likewise. Use protocol signal
8868 numbers.
8869 (main): Skip 'D' packet on mingw32. Use protocol signal numbers
8870 and names.
8871 * win32-i386-low.c: New file.
8872 * Makefile.in (XM_CLIBS): Set.
8873 (gdbserver, gdbreplay): Use $(INTERNAL_CFLAGS).
8874 (win32-i386-low.o): New dependency rule.
8875 * linux-low.c (linux_wait): Use target signal numbers.
8876 * target.h (struct target_ops): Doc fix.
8877 * server.h (target_signal_to_name): New prototype.
8878 * gdbreplay.c: Don't include headers unconditionally which
8879 are missing on mingw32. Include <winsock.h> for mingw32.
8880 (remote_close, remote_open): Adjust for Winsock support.
8881 * configure, config.in: Regenerated.
8882
0876f84a
DJ
88832006-07-12 Daniel Jacobowitz <dan@codesourcery.com>
8884
8885 * server.c (decode_xfer_read, write_qxfer_response): New.
8886 (handle_query): Take a packet length argument. Handle
8887 qXfer:auxv:read instead of qPart:auxv:read. Mention it in
8888 the qSupported response.
8889 (main): Update call to handle_query.
8890
01f9e8fa
DJ
88912006-06-22 Daniel Jacobowitz <dan@codesourcery.com>
8892
8893 * remote-utils.c (remote_escape_output, remote_unescape_input): New.
8894 (putpkt_binary): Renamed from putpkt and adjusted for binary
8895 data.
8896 (putpkt): New wrapper for putpkt_binary.
8897 (readchar): Don't mask off the high bit.
8898 (decode_X_packet): New function.
8899 * server.c (main): Call putpkt_binary if a handler sets the packet
8900 length. Save the length of the incoming packet. Handle 'X'.
8901 * server.h (gdb_byte, remote_escape_output, decode_X_packet): New.
8902
be2a5f71
DJ
89032006-06-21 Daniel Jacobowitz <dan@codesourcery.com>
8904
8905 * server.c (handle_query): Handle qSupported.
8906
ea025f5f
DJ
89072006-05-30 Daniel Jacobowitz <dan@codesourcery.com>
8908
8909 * remote-utils.c (all_symbols_looked_up): New variable.
8910 (look_up_one_symbol): Check it.
8911 * server.h (look_up_one_symbol): New declaration.
8912 * thread-db.c (thread_db_init): Set all_symbols_looked_up.
8913
9308fc88
DJ
89142006-05-30 Daniel Jacobowitz <dan@codesourcery.com>
8915
8916 * Makefile.in (linux-arm-low.o): Update dependencies.
66f338c7 8917 * linux-arm-low.c: Include "gdb_proc_service.h".
9308fc88
DJ
8918 (PTRACE_GET_THREAD_AREA): Define.
8919 (ps_get_thread_area): New function.
8920
52fb6437
NS
89212006-05-09 Nathan Sidwell <nathan@codesourcery.com>
8922
8923 * configure.srv (m68k*-*-uclinux*): New target.
8924 * linux-low.c (linux_create_inferior): Use vfork on mmuless systems.
8925 (linux_resume_one_process): Remove extraneous cast.
8926 (linux_read_offsets): New.
8927 (linux_target_op): Add linux_read_offsets on mmuless systems.
8928 * server.c (handle_query): Add qOffsets logic.
8929 * target.h (struct target_ops): Add read_offsets.
8930
21b0f40c
DJ
89312006-03-15 Daniel Jacobowitz <dan@codesourcery.com>
8932
8933 * linux-mips-low.c: Include <sys/ptrace.h> and "gdb_proc_service.h".
8934 (PTRACE_GET_THREAD_AREA): Define.
8935 (ps_get_thread_area): New function.
8936 * Makefile.in (linux-i386-low.o, linux-mips-low.o)
8937 (linux-x86-64-low.o): Update.
8938
0050a760
DJ
89392006-03-15 Daniel Jacobowitz <dan@codesourcery.com>
8940
8941 * configure.ac: Remove checks for prfpregset_t.
8942 * gdb_proc_service.h: New file.
8943 * linux-i386-low.c, linux-x86-64-low.c, thread-db.c: Use the
8944 new "gdb_proc_service.h".
8945 * proc-service.c: Likewise.
8946 (ps_pglobal_lookup, ps_pdread, ps_pdwrite): Use psaddr_t.
8947 (ps_lgetfpregs, ps_lsetfpregs): Use a void* argument.
8948 * Makefile.in (gdb_proc_service_h): Updated.
8949 * configure, config.in: Regenerated.
8950
b92a518e
DJ
89512006-03-03 Daniel Jacobowitz <dan@codesourcery.com>
8952
8953 * remote-utils.c (prepare_resume_reply): Move declaration
8954 of gdb_id_from_wait to the top of the block.
8955
545587ee
DJ
89562006-02-15 Daniel Jacobowitz <dan@codesourcery.com>
8957
8958 * linux-low.c (regsets_store_inferior_registers): Read the regset
8959 from the target before filling it.
8960
9db87ebd
DJ
89612006-02-08 Daniel Jacobowitz <dan@codesourcery.com>
8962
8963 * server.c (attach_inferior): Return SIGTRAP for a successful
8964 attach.
8965
dd24457d
DJ
89662006-02-01 Daniel Jacobowitz <dan@codesourcery.com>
8967
8968 * Makefile.in (OBS): Add version.o.
8969 (STAGESTUFF): Delete.
8970 (version.o): Add dependencies.
8971 (version.c): Replace rule.
8972 (clean): Remove version.c.
8973 * server.c (gdbserver_version): New.
8974 (gdbserver_usage): Use printf.
8975 (main): Handle --version and --help.
8976 * server.h (version, host_name): Add declarations.
8977
6f0f660e
EZ
89782005-12-23 Eli Zaretskii <eliz@gnu.org>
8979
889bf7c5
PA
8980 * linux-arm-low.c:
8981 * linux-arm-low.c:
8982 * inferiors.c:
8983 * i387-fp.h:
8984 * i387-fp.c:
8985 * gdbreplay.c:
8986 * regcache.c:
8987 * proc-service.c:
8988 * mem-break.h:
8989 * mem-break.c:
8990 * linux-x86-64-low.c:
8991 * linux-sh-low.c:
8992 * linux-s390-low.c:
8993 * linux-ppc64-low.c:
8994 * linux-ppc-low.c:
8995 * linux-mips-low.c:
8996 * linux-m68k-low.c:
8997 * linux-m32r-low.c:
8998 * linux-low.h:
8999 * linux-low.c:
9000 * linux-ia64-low.c:
9001 * linux-i386-low.c:
9002 * linux-crisv32-low.c:
9003 * thread-db.c:
9004 * terminal.h:
9005 * target.h:
9006 * target.c:
9007 * server.h:
9008 * server.c:
9009 * remote-utils.c:
9010 * regcache.h:
9011 * utils.c:
9012 * Makefile.in:
9013 * configure.ac:
6f0f660e
EZ
9014 * gdbserver.1: Add (C) after Copyright. Update the FSF
9015 address.
9016
9d1fb177
DJ
90172005-11-13 Daniel Jacobowitz <dan@codesourcery.com>
9018
9019 * linux-arm-low.c (arm_eabi_breakpoint): New variable.
9020 (arm_breakpoint_at): Recognize both breakpoints.
9021 (the_low_target): Use the correct breakpoint instruction.
9022
011a70c2
DJ
90232005-11-02 Daniel Jacobowitz <dan@codesourcery.com>
9024
9025 * configure.srv (x86_64-*-linux*): Turn on thread_db support.
9026 * linux-x86-64-low.c (x86_64_breakpoint, x86_64_breakpoint_len)
9027 (x86_64_get_pc, x86_64_set_pc, x86_64_breakpoint_at): New.
9028 (the_low_target): Update.
9029
7fb85e41
AS
90302005-10-25 Andreas Schwab <schwab@suse.de>
9031
9032 * server.c (main): Allocate mem_buf with PBUFSIZ bytes.
9033
9034 * linux-ia64-low.c (ia64_regmap): Remove NAT registers.
9035 (ia64_num_regs): Reduce to 462.
9036
3db0444b
DJ
90372005-09-17 Daniel Jacobowitz <dan@codesourcery.com>
9038
9039 * acinclude.m4: Correct quoting.
9040 * aclocal.m4: Regenerated.
9041
9042 Suggested by SZOKOVACS Robert <szo@ies.hu>:
9043 * thread-db.c (thread_db_err_str): Handle TD_VERSION.
9044 (thread_db_init): Call thread_db_err_str.
9045 * configure.ac: Check for TD_VERSION.
9046 * config.in, configure: Regenerated.
9047
bee0189a
DJ
90482005-07-31 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9049
9050 * server.h (error, fatal, warning): Add ATTR_FORMAT.
9051
e9d25b98
DJ
90522005-07-13 Daniel Jacobowitz <dan@codesourcery.com>
9053
9054 * configure.ac: Define HAVE_LINUX_REGSETS even if PTRACE_GETREGS
9055 is not available. Define HAVE_PTRACE_GETREGS if it is.
9056 * config.in, configure: Regenerated.
9057 * configure.srv: Set srv_linux_regsets for PowerPC and PowerPC64.
9058 * linux-i386-low.c, linux-m68k-low.c: Update to use
9059 HAVE_PTRACE_GETREGS.
9060 * linux-low.c (regsets_fetch_inferior_registers)
9061 (regsets_store_inferior_registers): Only return 0 if we processed
9062 GENERAL_REGS.
9063 * linux-ppc-low.c (ppc_fill_gregset, target_regsets): New.
9064 * linux-ppc64-low.c (ppc_fill_gregset, target_regsets): New.
9065
a06660f7
DJ
90662005-07-13 Daniel Jacobowitz <dan@codesourcery.com>
9067
9068 * inferiors.c (struct thread_info): Add gdb_id.
9069 (add_thread): Add gdb_id argument.
9070 (thread_id_to_gdb_id, thread_to_gdb_id, gdb_id_to_thread_id): New.
9071 * linux-low.c (linux_create_inferior, linux_attach_lwp): Update
9072 calls to add_thread.
9073 * remote-utils.c (prepare_resume_reply: Use thread_to_gdb_id.
9074 * server.c (handle_query): Use thread_to_gdb_id.
9075 (handle_v_cont, main): Use gdb_id_to_thread_id.
9076 * server.h (add_thread): Update prototype.
9077 (thread_id_to_gdb_id, thread_to_gdb_id, gdb_id_to_thread_id): New
9078 prototypes.
9079
5a1f5858
DJ
90802005-07-13 Daniel Jacobowitz <dan@codesourcery.com>
9081
9082 * linux-low.c (fetch_register, usr_store_inferior_registers): Handle
9083 left-padded registers.
9084 * linux-low.h (struct linux_target_ops): Add left_pad_xfer.
9085 * linux-ppc64-low.c (the_low_target): Set left_pad_xfer.
9086
e122f1f5
SE
90872005-07-01 Steve Ellcey <sje@cup.hp.com>
9088
9089 * configure.ac (BFD_NEED_DECLARATION): Replace with AC_CHECK_DECLS.
9090 * configure: Regenerate.
9091 * config.in: Regenerate.
9092 * server.h (NEED_DECLARATION_STRERROR):
9093 Replace with !HAVE_DECL_STRERROR.
9094
d592fa2f
DJ
90952005-06-16 Daniel Jacobowitz <dan@codesourcery.com>
9096
9097 * linux-low.c (linux_wait, linux_send_signal): Don't test
9098 an unsigned long variable for > 0 if it could be MAX_ULONG.
9099 * server.c (myresume): Likewise.
9100 * target.c (set_desired_inferior): Likewise.
9101
ccbd4912
MK
91022005-06-13 Mark Kettenis <kettenis@gnu.org>
9103
9104 * configure.ac: Simplify and improve check for socklen_t.
9105 * configure, config.in: Regenerate.
9106
f450004a
DJ
91072005-06-12 Daniel Jacobowitz <dan@codesourcery.com>
9108
9109 * acconfig.h: Remove.
9110 * configure.ac: Add a test for socklen_t. Use three-argument
9111 AC_DEFINE throughout.
9112 * config.in: Regenerated using autoheader 2.59.
9113 * configure: Regenerated.
9114
9115 * gdbreplay.c (socklen_t): Provide a default.
9116 (remote_open): Use socklen_t.
9117 * remote-utils.c (socklen_t): Provide a default.
9118 (remote_open): Use socklen_t.
9119 (convert_int_to_ascii, convert_ascii_to_int, decode_M_packet): Use
9120 unsigned char.
9121
9122 * i387-fp.c (struct i387_fsave, struct i387_fxsave): Use unsigned
9123 char for buffers.
9124 * linux-low.c (linux_read_memory, linux_write_memory)
9125 (linux_read_auxv): Likewise.
9126 * mem-break.c (breakpoint_data, set_breakpoint_data, check_mem_read)
9127 (check_mem_write): Likewise.
9128 * mem-break.h (set_breakpoint_data, check_mem_read, check_mem_write):
9129 Likewise.
9130 * regcache.c (struct inferior_rgcache_data, registers_to_string)
9131 (registers_from_string, register_data): Likewise.
9132 * server.c (handle_query, main): Likewise.
9133 * server.h (convert_ascii_to_int, convert_int_to_ascii)
9134 (decode_M_packet): Likewise.
9135 * target.c (read_inferior_memory, write_inferior_memory): Likewise.
9136 * target.h (struct target_ops): Update read_memory, write_memory,
9137 and read_auxv.
9138 (read_inferior_memory, write_inferior_memory): Update.
9139 * linux-low.h (struct linux_target_ops): Change type of breakpoint
9140 to unsigned char *.
9141 * linux-arm-low.c, linux-cris-low.c, linux-crisv32-low.c,
9142 linux-i386-low.c, linux-m32r-low.c, linux-m68k-low.c,
9143 linux-mips-low.c, linux-ppc-low.c, linux-ppc64-low.c,
9144 linux-s390-low.c, linux-sh-low.c: Update for changes in
9145 read_inferior_memory and the_low_target->breakpoint.
9146
eee84df1
DJ
91472005-05-28 Daniel Jacobowitz <dan@codesourcery.com>
9148
9149 * Makefile.in (SFILES): Add linux-ppc64-low.c.
9150 (linux-ppc64-low.o, reg-ppc64.c, reg-ppc64.o): New targets.
9151 * configure.srv: Add powerpc64-*-linux*.
9152 * linux-ppc64-low.c: New file.
9153
45b134e5
OF
91542005-05-23 Orjan Friberg <orjanf@axis.com>
9155
9156 * linux-cris-low.c: New file with support for CRIS.
9157 * linux-crisv32-low.c: Ditto for CRISv32.
9158 * Makefile.in (SFILES): Add linux-cris-low.c, linux-crisv32-low.c.
9159 (clean): Add reg-cris.c and reg-crisv32.c.
889bf7c5 9160 Add linux-cris-low.o, linux-crisv32-low.o, reg-cris.o, reg-cris.c,
45b134e5
OF
9161 reg-crisv32.o, and reg-crisv32.c to make rules.
9162 * configure.srv: Add cris-*-linux* and crisv32-*-linux* to list of
9163 recognized targets.
9164
48d93c75
UW
91652005-05-16 Ulrich Weigand <uweigand@de.ibm.com>
9166
9167 * linux-low.c (fetch_register): Ensure buffer size is a multiple
9168 of sizeof (PTRACE_XFER_TYPE).
9169 (usr_store_inferior_registers): Likewise. Zero out excess bytes.
9170
e013ee27
OF
91712005-05-12 Orjan Friberg <orjanf@axis.com>
9172
889bf7c5 9173 * target.h (struct target_ops): Add insert_watchpoint,
e013ee27
OF
9174 remove_watchpoint, stopped_by_watchpoint, stopped_data_address function
9175 pointers for hardware watchpoint support.
9176 * linux-low.h (struct linux_target_ops): Ditto.
9177 * linux-low.c (linux_insert_watchpoint, linux_remove_watchpoint)
9178 (linux_stopped_by_watchpoint, linux_stopped_data_address): New. Add
9179 to linux_target_ops.
9180 * remote-utils.c (prepare_resume_reply): Add watchpoint information to
9181 reply packet.
9182 * server.c (main): Recognize 'Z' and 'z' packets.
9183
b0ded00b
UW
91842005-05-10 Ulrich Weigand <uweigand@de.ibm.com>
9185
9186 * linux-s390-low.c (s390_breakpoint, s390_breakpoint_len): Define.
9187 (s390_get_pc, s390_set_pc, s390_breakpoint_at): New functions.
9188 (the_low_target): Add new members.
9189
8643e2ad
DJ
91902005-05-04 Daniel Jacobowitz <dan@codesourcery.com>
9191
9192 * proc-service.c (ps_lgetregs): Search all_processes instead of
9193 all_threads.
9194
fc620387
DJ
91952005-05-04 Daniel Jacobowitz <dan@codesourcery.com>
9196
9197 * server.c (start_inferior): Change return type to int.
9198 (attach_inferior): Change sigptr to int *.
9199 (handle_v_cont, handle_v_requests): Change signal to int *.
9200 (main): Change signal to int.
9201
92022005-04-15 Kei Sakamoto <sakamoto.kei@renesas.com>
7cfbc4a0
KI
9203
9204 * Makefile.in: Add linux-m32r-low.o, reg-m32r.c and reg-m32r.o.
9205 * configure.srv: Add m32r*-*-linux*.
9206 * linux-m32r-low.c: New file.
9207
e0e76420
DJ
92082005-03-04 Daniel Jacobowitz <dan@codesourcery.com>
9209
9210 * Makefile.in (stamp-h): Set CONFIG_HEADERS explicitly.
9211
a1928bad
DJ
92122005-03-03 Daniel Jacobowitz <dan@codesourcery.com>
9213
9214 * inferiors.c (change_inferior_id, add_thread, find_inferior_id):
9215 Take unsigned long arguments for PIDs.
9216 * linux-low.c (add_process, linux_attach_lwp, linux_attach)
9217 (linux_thread_alive, linux_wait_for_event, kill_lwp, send_sigstop)
9218 (wait_for_sigstop, linux_resume_one_process)
9219 (regsets_fetch_inferior_registers, linux_send_signal)
9220 (linux_read_auxv): Likewise. Update the types of variables holding
9221 PIDs. Update format string specifiers.
9222 * linux-low.h (struct process_info, linux_attach_lwp): Likewise.
9223 * remote-utils.c (prepare_resume_reply): Likewise.
9224 * server.c (cont_thread, general_thread, step_thread)
9225 (thread_from_wait, old_thread_from_wait, signal_pid): Change type to
9226 unsigned long.
9227 (handle_query): Update format specifiers.
9228 (handle_v_cont, main): Use strtoul for thread IDs.
9229 * server.h (struct inferior_list_entry): Use unsigned long for ID.
9230 (add_thread, find_inferior_id, change_inferior_id, cont_thread)
9231 (general_thread, step_thread, thread_from_wait)
9232 (old_thread_from_wait): Update.
9233 * target.h (struct thread_resume): Use unsigned long for THREAD.
9234 (struct target_ops): Use unsigned long for arguments to attach and
9235 thread_alive.
9236
dcdb98d2
DJ
92372005-02-24 Daniel Jacobowitz <dan@codesourcery.com>
9238
9239 * acinclude.m4: Include bfd/bfd.m4 directly.
9240 * configure.ac: Use AC_ARG_PROGRAM. Suggested by Aron Griffis
9241 <agriffis@toolchain.org>.
9242 * aclocal.m4, configure: Regenerated.
9243
bec39cab
AC
92442005-01-07 Andrew Cagney <cagney@gnu.org>
9245
9246 * configure.ac: Rename configure.in, require autoconf 2.59.
9247 * configure: Re-generate.
9248
434c4c77
DJ
92492004-12-08 Daniel Jacobowitz <dan@debian.org>
9250
9251 * acinclude.m4 (SRV_CHECK_THREAD_DB): Add ps_get_thread_area. Reset
9252 LIBS when finished.
9253 * aclocal.m4: Regenerated.
9254 * configure: Regenerated.
9255
db1d3e1b
AS
92562004-11-21 Andreas Schwab <schwab@suse.de>
9257
9258 * linux-m68k-low.c (m68k_num_gregs): Define.
9259 (m68k_fill_gregset, m68k_store_gregset, m68k_fill_fpregset)
9260 (m68k_store_fpregset, target_regsets) [HAVE_LINUX_REGSETS]: New.
9261 (m68k_breakpoint, m68k_breakpoint_len, m68k_get_pc, m68k_set_pc)
9262 (m68k_breakpoint_at): New. Add to the_low_target.
9263
9264 * configure.srv (m68*-*-linux*): Set srv_linux_regsets and
9265 srv_linux_thread_db to yes.
9266
43360365
JB
92672004-10-20 Joel Brobecker <brobecker@gnat.com>
9268
9269 * linux-x86-64-low.c (ARCH_SET_GS): Add definition if missing.
9270 (ARCH_SET_FS): Likewise.
9271 (ARCH_GET_FS): Likewise.
9272 (ARCH_GET_GS): Likewise.
9273
fd500816
DJ
92742004-10-16 Daniel Jacobowitz <dan@debian.org>
9275
9276 * linux-i386-low.c (ps_get_thread_area): New.
9277 * linux-x86-64-low.c (ps_get_thread_area): New.
9278 * linux-low.c: Include <sys/syscall.h>.
9279 (linux_kill_one_process): Don't kill the first thread here.
9280 (linux_kill): Kill the first thread here.
9281 (kill_lwp): New function.
9282 (send_sigstop, linux_send_signal): Use it.
9283 * proc-service.c: Clean up #ifdefs.
9284 (fpregset_info): Delete.
9285 (ps_lgetregs): Update and enable implementation.
9286 (ps_lsetregs, ps_lgetfpregs, ps_lsetfpregs): Remove disabled
9287 implementations.
9288 * remote-utils.c (struct sym_cache, symbol_cache): New.
9289 (input_interrupt): Print a clearer message.
9290 (async_io_enabled): New variable.
9291 (enable_async_io, disable_async_io): Use it. Update comments.
9292 (look_up_one_symbol): Use the symbol cache.
9293 * thread-db.c (thread_db_look_up_symbols): New function.
9294 (thread_db_init): Update comments. Call thread_db_look_up_symbols.
9295
f6de3c42
DJ
92962004-10-16 Daniel Jacobowitz <dan@debian.org>
9297
9298 * configure.in: Test for -rdynamic.
9299 * configure: Regenerated.
9300 * Makefile (INTERNAL_LDFLAGS): New.
9301 (gdbserver, gdbreplay): Use it.
9302
2c0fc042
AC
93032004-09-02 Andrew Cagney <cagney@gnu.org>
9304
9305 * Makefile.in (TAGS): Replace TM_FILE with DEPRECATED_TM_FILE.
9306
075b3282
DJ
93072004-03-23 Daniel Jacobowitz <drow@mvista.com>
9308
9309 * linux-low.c (linux_wait): Clear all_processes list also.
9310
fa6a77dc
DJ
93112004-03-12 Daniel Jacobowitz <drow@mvista.com>
9312
9313 * linux-low.c: Include <errno.h>. Remove extern declaration of
9314 errno.
9315
6d782a97
DJ
93162004-03-12 Daniel Jacobowitz <drow@mvista.com>
9317
9318 * gdbreplay.c, server.h, utils.c: Update copyright years.
9319
3a7fb99b
DJ
93202004-03-04 Nathan J. Williams <nathanw@wasabisystems.com>
9321
9322 * server.c (main): Print child status or termination signal from
9323 variable 'signal', not 'sig'.
9324
c3e735a6
DJ
93252004-03-04 Nathan J. Williams <nathanw@wasabisystems.com>
9326
9327 * linux-low.c (linux_read_memory): Change return type to
9328 int. Check for and return error from ptrace().
9329 * target.c (read_inferior_memory): Change return type to int. Pass
9330 back return status from the_target->read_memory().
9331 * target.h (struct target_ops): Adapt *read_memory() prototype.
9332 Update comment.
9333 (read_inferior_memory): Adapt prototype.
9334 * server.c (main): Return an error packet if
9335 read_inferior_memory() returns an error.
9336
a59d1c82
DJ
93372004-03-04 Daniel Jacobowitz <drow@mvista.com>
9338
9339 * Makefile.in (distclean): Remove config.h, stamp-h, and config.log.
9340 Unify with other clean targets.
9341
dc3f8883
DJ
93422004-02-29 Daniel Jacobowitz <drow@mvista.com>
9343
9344 * server.c (handle_v_cont): Call set_desired_inferior.
9345
89a208da
DJ
93462004-02-29 Daniel Jacobowitz <drow@mvista.com>
9347
9348 * remote-utils.c (prepare_resume_reply): Always supply "thread:".
9349
62ea82f5
DJ
93502004-02-29 Daniel Jacobowitz <drow@mvista.com>
9351
9352 * linux-low.c (linux_wait): Unblock async I/O.
9353 (linux_resume): Block and enable async I/O.
9354 * remote-utils.c (block_async_io, unblock_async_io): New functions.
9355 * server.h (block_async_io, unblock_async_io): Add prototypes.
9356
6910d122
DJ
93572004-02-29 Daniel Jacobowitz <drow@mvista.com>
9358
9359 * remote-utils.c (remote_open): Print a status notice after
9360 opening a TCP port.
9361 * server.c (attach_inferior): Print a status notice after
9362 attaching.
9363
93642004-02-29 Daniel Jacobowitz <drow@mvista.com>
d677d77d
DJ
9365
9366 * linux-arm-low.c (arm_get_pc): Print out stop PC in debug mode.
9367
c89dc5d4
DJ
93682004-02-26 Daniel Jacobowitz <drow@mvista.com>
9369
9370 * remote-utils.c (write_enn): Use "E01" instead of "ENN" for the
9371 error packet.
9372 * server.c, target.h: Update copyright years.
9373
4b8dad4a
RM
93742004-02-25 Roland McGrath <roland@redhat.com>
9375
9376 * target.h (struct target_ops): New member `read_auxv'.
9377 * server.c (handle_query): Handle qPart:auxv:read: query using that.
9378 * linux-low.c (linux_read_auxv): New function.
9379 (linux_target_ops): Initialize `read_auxv' member to that.
9380
d7446758
JB
93812004-02-17 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
9382
9383 Committed by Jim Blandy <jimb@redhat.com>.
9384
9385 * linux-s390-low.c (s390_num_regs): Update.
4b8dad4a 9386 (s390_regmap): Remove control registers. Use __s390x__ predefine
d7446758
JB
9387 instead of GPR_SIZE to distiguish s390 and s390x targets.
9388
5544ad89
DJ
93892004-01-31 Daniel Jacobowitz <drow@mvista.com>
9390
9391 * linux-low.c: Update copyright year.
9392 (check_removed_breakpoint): Clear pending_is_breakpoint.
9393 (linux_set_resume_request, linux_queue_one_thread)
9394 (resume_status_pending_p): New functions.
9395 (linux_continue_one_thread): Use process->resume.
9396 (linux_resume): Only resume threads if there are no pending events.
9397 * linux-low.h (struct process_info): Add resume request
9398 pointer.
9399
2a68b70e
DJ
94002004-01-30 Daniel Jacobowitz <drow@mvista.com>
9401
9402 * regcache.c (new_register_cache): Clear the allocated register
9403 buffer. Suggested by Atsushi Nemoto <anemo@mba.ocn.ne.jp>.
9404
64386c31
DJ
94052003-10-13 Daniel Jacobowitz <drow@mvista.com>
9406
9407 * linux-low.c (linux_resume): Take a struct thread_resume *
9408 argument.
9409 (linux_wait): Update call.
9410 (resume_ptr): New static variable.
9411 (linux_continue_one_thread): Renamed from
9412 linux_continue_one_process. Use resume_ptr.
9413 (linux_resume): Use linux_continue_one_thread.
9414 * server.c (handle_v_cont, handle_v_requests): New functions.
9415 (myresume): New function.
9416 (main): Handle 'v' case.
9417 * target.h (struct thread_resume): New type.
9418 (struct target_ops): Change argument of "resume" to struct
9419 thread_resume *.
9420 (myresume): Delete macro.
9421
c938e9b0
L
94222003-08-08 H.J. Lu <hongjiu.lu@intel.com>
9423
9424 * Makefile.in (install-only): Create dest dir. Support DESTDIR.
9425 (uninstall): Support DESTDIR.
9426
7f313d07
BC
9427Mon Jul 21 20:09:34 UTC 2003 Brendan Conoboy <blc@redhat.com>
9428
9429 * configure.srv: Add xscale*linux copy of arm*linux entry.
9430
3b2fc2ea
DJ
94312003-07-24 Daniel Jacobowitz <drow@mvista.com>
9432
9433 * linux-arm-low.c (arm_reinsert_addr): New function.
9434 (the_low_target): Add arm_reinsert_addr.
9435
1c0a559e
MK
94362003-07-08 Mark Kettenis <kettenis@gnu.org>
9437
9438 * mem-break.c: Remove whitespace at end of file.
9439
43d5792c
DJ
94402003-06-28 Daniel Jacobowitz <drow@mvista.com>
9441
9442 * configure.in: Check whether we need to prototype strerror.
9443 * server.h: Optionally prototype strerror.
9444 * gdbreplay.c (perror_with_name): Use strerror.
9445 * linux-low.c (linux_attach_lwp): Use strerror.
9446 * utils.c (perror_with_name): Use strerror.
9447 * config.in, configure: Regenerated.
9448
c8a86edf
DJ
94492003-06-28 Daniel Jacobowitz <drow@mvista.com>
9450
9451 * linux-sh-low.c (sh_regmap): Fix FP register offsets, reported by
9452 SUGIOKA Toshinobu <sugioka@itonet.co.jp>.
9453
73d37363
DJ
94542003-06-20 Daniel Jacobowitz <drow@mvista.com>
9455
9456 * Makefile.in (SFILES): Update.
9457 * low-hppabsd.c, low-lynx.c, low-nbsd.c, low-sim.c, low-sparc.c,
9458 low-sun3.c: Remove files.
9459
6ad8ae5c
DJ
94602003-06-17 Daniel Jacobowitz <drow@mvista.com>
9461
9462 * linux-low.c: Move comment to linux_thread_alive where it belonged.
9463 (linux_detach_one_process, linux_detach): New functions.
9464 (linux_target_ops): Add linux_detach.
9465 * server.c (main): Handle 'D' packet.
9466 * target.h (struct target_ops): Add "detach" member.
9467 (detach_inferior): Define.
9468
1581182a
MK
94692003-06-13 Mark Kettenis <kettenis@gnu.org>
9470
9471 From Kelley Cook <kelleycook@wideopenwest.com>:
9472 * configure.srv: Accept i[34567]86 variants.
9473
e5379b03
DJ
94742003-06-05 Daniel Jacobowitz <drow@mvista.com>
9475
9476 * linux-low.c (linux_wait_for_event): Correct comment typos.
9477 (linux_resume_one_process): Call check_removed_breakpoint.
9478 (linux_send_signal): New function.
9479 (linux_target_ops): Add linux_send_signal.
9480 * remote-utils.c (putpkt, input_interrupt): Use send_signal instead
9481 of kill.
9482 * target.h (struct target_ops): Add send_signal.
9483
2ff29de4
JB
94842003-05-29 Jim Blandy <jimb@redhat.com>
9485
9486 * linux-low.c (usr_store_inferior_registers): Transfer buf in
9487 PTRACE_XFER_TYPE-sized chunks, not int-sized chunks. Otherwise,
9488 if 'int' is smaller than PTRACE_XFER_TYPE, you end up throwing
9489 away part of the register's value.
9490
254787d4
DJ
94912003-03-26 Daniel Jacobowitz <drow@mvista.com>
9492
9493 * linux-low.c (linux_create_inferior): Use __SIGRTMIN.
9494 (linux_wait_for_event, linux_init_signals): Likewise.
9495
94e10508
DJ
94962003-03-17 Daniel Jacobowitz <drow@mvista.com>
9497
9498 * configure.in: Check for stdlib.h.
9499 * configure: Regenerated.
9500 * config.in: Regenerated.
9501
4c0711e0
DJ
95022003-01-04 Andreas Schwab <schwab@suse.de>
9503
9504 * linux-m68k-low.c (m68k_num_regs): Define to 29 instead of 31.
9505
ef66e766
AC
95062003-01-02 Andrew Cagney <ac131313@redhat.com>
9507
9508 * Makefile.in: Remove obsolete code.
9509
a1358604
DJ
95102002-11-20 Daniel Jacobowitz <drow@mvista.com>
9511
9512 * linux-s390-low.c (s390_regmap): Check GPR_SIZE instead of
9513 defined(PT_FPR0_HI).
9514
23ce3b1c
DJ
95152002-11-17 Stuart Hughes <seh@zee2.com>
9516
9517 * linux-arm-low.c (arm_num_regs): Increase.
9518 (arm_regmap): Include status register.
9519
95202002-11-17 Daniel Jacobowitz <drow@mvista.com>
9521
9522 * linux-low.c (register_addr): Remove incorrect -1 check.
9523
a9fa9f7d
DJ
95242002-08-29 Daniel Jacobowitz <drow@mvista.com>
9525
9526 * linux-low.c (linux_create_inferior): Call setpgid. Return
9527 the new PID.
9528 (unstopped_p, linux_signal_pid): Remove.
9529 (linux_target_ops): Remove linux_signal_pid.
9530 * remote-utils.c (putpkt, input_interrupt): Use signal_pid
9531 global instead of target method.
9532 * target.h (struct target_ops): Remove signal_pid. Update comment
9533 for create_inferior.
9534 * server.c (signal_pid): New variable.
9535 (create_inferior): Set signal_pid. Block SIGTTOU and SIGTTIN in
4b8dad4a 9536 gdbserver. Set the child to be the foreground process group.
a9fa9f7d
DJ
9537 (attach_inferior): Set signal_pid.
9538
17574093
DJ
95392002-08-23 Daniel Jacobowitz <drow@mvista.com>
9540
9541 * ChangeLog: New file, with entries from gdb/ChangeLog after GDB 5.2.
9542
95432002-08-20 Jim Blandy <jimb@redhat.com>
9544
9545 * Makefile.in (LDFLAGS): Allow the configure script to establish a
9546 default for this.
9547
95482002-08-01 Andrew Cagney <cagney@redhat.com>
9549
9550 * Makefile.in: Make chill references obsolete.
9551
95522002-07-24 Kevin Buettner <kevinb@redhat.com>
9553
9554 * configure.in (unistd.h): Add to AC_CHECK_HEADERS list.
9555 * configure: Regenerate.
9556 * config.in: Regenerate.
9557
95582002-07-09 David O'Brien <obrien@FreeBSD.org>
9559
9560 * gdbreplay.c (stdlib.h, unistd.h): Conditionaly include.
9561 (perror_with_name, remote_close, remote_open, expect, play): Static.
9562
95632002-07-04 Michal Ludvig <mludvig@suse.cz>
9564
4b8dad4a 9565 * linux-x86-64-low.c (x86_64_regmap): Make it an array of
17574093
DJ
9566 byte offsets instead of an array of indexes.
9567 (x86_64_store_gregset, x86_64_store_fpregset): Parameter made const.
9568
95692002-06-13 Daniel Jacobowitz <drow@mvista.com>
9570
9571 * regcache.c: Add comment.
9572
95732002-06-11 Daniel Jacobowitz <drow@mvista.com>
9574
9575 * thread-db.c: New file.
9576 * proc-service.c: New file.
9577 * acinclude.m4: New file.
9578 * Makefile.in: Add GDBSERVER_LIBS, gdb_proc_service_h,
9579 proc-service.o, and thread-db.o.
9580 (linux-low.o): Add USE_THREAD_DB.
9581 * acconfig.h: Add HAVE_PRGREGSET_T, HAVE_PRFPREGSET_T,
9582 HAVE_LWPID_T, HAVE_PSADDR_T, and PRFPREGSET_T_BROKEN.
9583 * aclocal.m4: Regenerated.
9584 * config.in: Regenerated.
9585 * configure: Regenerated.
9586 * configure.in: Check for proc_service.h, sys/procfs.h,
9587 thread_db.h, and linux/elf.h headrs.
9588 Check for lwpid_t, psaddr_t, prgregset_t, prfpregset_t, and
9589 PRFPREGSET_T_BROKEN. Introduce srv_thread_depfiles and USE_THREAD_DB.
9590 Check for -lthread_db and thread support.
9591 * configure.srv: Enable thread_db support for ARM, i386, MIPS,
9592 PowerPC, and SuperH.
9593 * i387-fp.c: Constify arguments.
9594 * i387-fp.h: Likewise.
9595 * inferiors.c: (struct thread_info): Renamed from
9596 `struct inferior_info'. Remove PID member. Use generic inferior
9597 list header. All uses updated.
9598 (inferiors, signal_pid): Removed.
9599 (all_threads): New variable.
9600 (get_thread): Define.
9601 (add_inferior_to_list): New function.
9602 (for_each_inferior): New function.
9603 (change_inferior_id): New function.
9604 (add_inferior): Removed.
9605 (remove_inferior): New function.
9606 (add_thread): New function.
9607 (free_one_thread): New function.
9608 (remove_thread): New function.
9609 (clear_inferiors): Use for_each_inferior and free_one_thread.
9610 (find_inferior): New function.
9611 (find_inferior_id): New function.
9612 (inferior_target_data): Update argument type.
9613 (set_inferior_target_data): Likewise.
9614 (inferior_regcache_data): Likewise.
9615 (set_inferior_regcache_data): Likewise.
9616 * linux-low.c (linux_bp_reinsert): Remove.
9617 (all_processes, stopping_threads, using_thrads)
9618 (struct pending_signals, debug_threads, pid_of): New.
9619 (inferior_pid): Replace with macro.
9620 (struct inferior_linux_data): Remove.
9621 (get_stop_pc, add_process): New functions.
9622 (linux_create_inferior): Restore SIGRTMIN+1 before calling exec.
9623 Use add_process and add_thread.
9624 (linux_attach_lwp): New function, based on old linux_attach. Use
9625 add_process and add_thread. Set stop_expected for new threads.
9626 (linux_attach): New function.
9627 (linux_kill_one_process): New function.
9628 (linux_kill): Kill all LWPs.
9629 (linux_thread_alive): Use find_inferior_id.
9630 (check_removed_breakpoints, status_pending_p): New functions.
9631 (linux_wait_for_process): Renamed from linux_wait_for_one_inferior.
9632 Update. Use WNOHANG. Wait for cloned processes also. Update process
9633 struct for the found process.
9634 (linux_wait_for_event): New function.
9635 (linux_wait): Use it. Support LWPs.
9636 (send_sigstop, wait_for_sigstop, stop_all_processes)
9637 (linux_resume_one_process, linux_continue_one_process): New functions.
9638 (linux_resume): Support LWPs.
9639 (REGISTER_RAW_SIZE): Remove.
9640 (fetch_register): Use register_size instead. Call supply_register.
9641 (usr_store_inferior_registers): Likewise. Call collect_register.
9642 Fix recursive case.
9643 (regsets_fetch_inferior_registers): Improve error message.
9644 (regsets_store_inferior_registers): Add debugging.
9645 (linux_look_up_symbols): Call thread_db_init if USE_THREAD_DB.
9646 (unstopped_p, linux_signal_pid): New functions.
9647 (linux_target_ops): Add linux_signal_pid.
9648 (linux_init_signals): New function.
9649 (initialize_low): Call it. Initialize using_threads.
9650 * regcache.c (inferior_regcache_data): Add valid
9651 flag.
9652 (get_regcache): Fetch registers lazily. Add fetch argument
9653 and update all callers.
9654 (regcache_invalidate_one, regcache_invalidate): New
9655 functions.
9656 (new_register_cache): Renamed from create_register_cache.
9657 Return the new regcache.
9658 (free_register_cache): Change argument to a void *.
9659 (registers_to_string, registers_from_string): Call get_regcache
9660 with fetch flag set.
9661 (register_data): Make static. Pass fetch flag to get_regcache.
9662 (supply_register): Call get_regcache with fetch flag clear.
9663 (collect_register): Call get_regcache with fetch flag set.
9664 (collect_register_as_string): New function.
9665 * regcache.h: Update.
9666 * remote-utils.c (putpkt): Flush after debug output and use
9667 stderr.
9668 Handle input interrupts while waiting for an ACK.
9669 (input_interrupt): Use signal_pid method.
9670 (getpkt): Flush after debug output and use stderr.
9671 (outreg): Use collect_register_as_string.
9672 (new_thread_notify, dead_thread_notify): New functions.
9673 (prepare_resume_reply): Check using_threads. Set thread_from_wait
9674 and general_thread.
9675 (look_up_one_symbol): Flush after debug output.
9676 * server.c (step_thread, server_waiting): New variables.
9677 (start_inferior): Don't use signal_pid. Update call to mywait.
9678 (attach_inferior): Update call to mywait.
9679 (handle_query): Handle qfThreadInfo and qsThreadInfo.
9680 (main): Don't fetch/store registers explicitly. Use
9681 set_desired_inferior. Support proposed ``Hs'' packet. Update
9682 calls to mywait.
9683 * server.h: Update.
9684 (struct inferior_list, struct_inferior_list_entry): New.
9685 * target.c (set_desired_inferior): New.
9686 (write_inferior_memory): Constify.
9687 (mywait): New function.
9688 * target.h: Update.
9689 (struct target_ops): New signal_pid method.
9690 (mywait): Removed macro, added prototype.
9691
9692 * linux-low.h (regset_func): Removed.
9693 (regset_fill_func, regset_store_func): New.
9694 (enum regset_type): New.
9695 (struct regset_info): Add type field. Use new operation types.
9696 (struct linux_target_ops): stop_pc renamed to get_pc.
9697 Add decr_pc_after_break and breakpoint_at.
9698 (get_process, get_thread_proess, get_process_thread)
9699 (strut process_info, all_processes, linux_attach_lwp)
9700 (thread_db_init): New.
9701
9702 * linux-arm-low.c (arm_get_pc, arm_set_pc,
9703 arm_breakpoint, arm_breakpoint_len, arm_breakpoint_at): New.
9704 (the_low_target): Add new members.
9705 * linux-i386-low.c (i386_store_gregset, i386_store_fpregset)
9706 (i386_store_fpxregset): Constify.
9707 (target_regsets): Add new kind identifier.
9708 (i386_get_pc): Renamed from i386_stop_pc. Simplify.
9709 (i386_set_pc): Add debugging.
9710 (i386_breakpoint_at): New function.
9711 (the_low_target): Add new members.
9712 * linux-mips-low.c (mips_get_pc, mips_set_pc)
9713 (mips_breakpoint, mips_breakpoint_len, mips_reinsert_addr)
9714 (mips_breakpoint_at): New.
9715 (the_low_target): Add new members.
9716 * linux-ppc-low.c (ppc_get_pc, ppc_set_pc)
9717 (ppc_breakpoint, ppc_breakpoint_len, ppc_breakpoint_at): New.
9718 (the_low_target): Add new members.
9719 * linux-sh-low.c (sh_get_pc, sh_set_pc)
9720 (sh_breakpoint, sh_breakpoint_len, sh_breakpoint_at): New.
9721 (the_low_target): Add new members.
9722 * linux-x86-64-low.c (target_regsets): Add new kind
9723 identifier.
9724
97252002-05-15 Daniel Jacobowitz <drow@mvista.com>
9726
9727 From Martin Pool <mbp@samba.org>:
9728 * server.c (gdbserver_usage): New function.
9729 (main): Call it.
9730
97312002-05-14 Daniel Jacobowitz <drow@mvista.com>
9732
9733 * mem-break.c (reinsert_breakpoint_by_bp): Correct typo
9734 stop_at -> stop_pc.
9735
97362002-05-04 Andrew Cagney <ac131313@redhat.com>
9737
9738 * Makefile.in: Remove obsolete code.
9739
97402002-04-24 Michal Ludvig <mludvig@suse.cz>
9741
9742 * linux-low.c (regsets_fetch_inferior_registers),
9743 (regsets_store_inferior_registers): Removed cast to int from
9744 ptrace() calls.
9745 * regcache.h: Added declaration of struct inferior_info.
9746
97472002-04-20 Daniel Jacobowitz <drow@mvista.com>
9748
9749 * inferiors.c (struct inferior_info): Add regcache_data.
9750 (add_inferior): Call create_register_cache.
9751 (clear_inferiors): Call free_register_cache.
9752 (inferior_regcache_data, set_inferior_regcache_data): New functions.
9753 * regcache.c (struct inferior_regcache_data): New.
9754 (registers): Remove.
9755 (get_regcache): New function.
9756 (create_register_cache, free_register_cache): New functions.
9757 (set_register_cache): Don't initialize the register cache here.
9758 (registers_to_string, registers_from_string, register_data): Call
9759 get_regcache.
9760 * regcache.h: Add prototypes.
9761 * server.h: Likewise.
9762
97632002-04-20 Daniel Jacobowitz <drow@mvista.com>
9764
9765 * mem-break.c: New file.
9766 * mem-break.h: New file.
9767 * Makefile.in: Add mem-break.o rule; update server.h
9768 dependencies.
9769 * inferiors.c (struct inferior_info): Add target_data
9770 member.
9771 (clear_inferiors): Free target_data member if set.
9772 (inferior_target_data, set_inferior_target_data): New functions.
9773 * linux-i386-low.c (i386_breakpoint, i386_breakpoint_len)
9774 (i386_stop_pc, i386_set_pc): New. Add to the_low_target.
9775 * linux-low.c (linux_bp_reinsert): New variable.
9776 (struct inferior_linux_data): New.
9777 (linux_create_inferior): Use set_inferior_target_data.
9778 (linux_attach): Likewise. Call add_inferior.
9779 (linux_wait_for_one_inferior): New function.
9780 (linux_wait): Call it.
9781 (linux_write_memory): Add const.
9782 (initialize_low): Call set_breakpoint_data.
9783 * linux-low.h (struct linux_target_ops): Add breakpoint
9784 handling members.
9785 * server.c (attach_inferior): Remove extra add_inferior
9786 call.
9787 * server.h: Include mem-break.h. Update inferior.c
9788 prototypes.
9789 * target.c (read_inferior_memory)
9790 (write_inferior_memory): New functions.
9791 * target.h (read_inferior_memory)
9792 (write_inferior_memory): Change macros to prototypes.
9793 (struct target_ops): Update comments. Add const to write_memory
9794 definition.
9795
97962002-04-11 Daniel Jacobowitz <drow@mvista.com>
9797
9798 * linux-low.c (usr_store_inferior_registers): Support
9799 registers which are allowed to fail to store.
9800 * linux-low.h (linux_target_ops): Likewise.
9801 * linux-ppc-low.c (ppc_regmap): Support FPSCR.
9802 (ppc_cannot_store_register): FPSCR may not be storable.
9803
98042002-04-09 Daniel Jacobowitz <drow@mvista.com>
9805
9806 * server.h: Include <string.h> if HAVE_STRING_H.
9807 * ChangeLog: Correct paths in last ChangeLog entry.
9808
98092002-04-09 Daniel Jacobowitz <drow@mvista.com>
9810
9811 * linux-low.h: Remove obsolete prototypes.
9812 (struct linux_target_ops): New.
9813 (extern the_low_target): New.
9814 * linux-low.c (num_regs, regmap): Remove declarations.
9815 (register_addr): Use the_low_target explicitly.
9816 (fetch_register): Likewise.
9817 (usr_fetch_inferior_registers): Likewise.
9818 (usr_store_inferior_registers): Likewise.
9819 * linux-arm-low.c (num_regs): Remove.
9820 (arm_num_regs): Define.
9821 (arm_regmap): Renamed from regmap, made static.
9822 (arm_cannot_fetch_register): Renamed from cannot_fetch_register,
9823 made static.
9824 (arm_cannot_store_register): Renamed from cannot_store_register,
9825 made static.
9826 (the_low_target): New.
9827 * linux-i386-low.c (num_regs): Remove.
9828 (i386_num_regs): Define.
9829 (i386_regmap): Renamed from regmap, made static.
9830 (i386_cannot_fetch_register): Renamed from cannot_fetch_register,
9831 made static.
9832 (i386_cannot_store_register): Renamed from cannot_store_register,
9833 made static.
9834 (the_low_target): New.
9835 * linux-ia64-low.c (num_regs): Remove.
9836 (ia64_num_regs): Define.
9837 (ia64_regmap): Renamed from regmap, made static.
9838 (ia64_cannot_fetch_register): Renamed from cannot_fetch_register,
9839 made static.
9840 (ia64_cannot_store_register): Renamed from cannot_store_register,
9841 made static.
9842 (the_low_target): New.
9843 * linux-m68k-low.c (num_regs): Remove.
9844 (m68k_num_regs): Define.
9845 (m68k_regmap): Renamed from regmap, made static.
9846 (m68k_cannot_fetch_register): Renamed from cannot_fetch_register,
9847 made static.
9848 (m68k_cannot_store_register): Renamed from cannot_store_register,
9849 made static.
9850 (the_low_target): New.
9851 * linux-mips-low.c (num_regs): Remove.
9852 (mips_num_regs): Define.
9853 (mips_regmap): Renamed from regmap, made static.
9854 (mips_cannot_fetch_register): Renamed from cannot_fetch_register,
9855 made static.
9856 (mips_cannot_store_register): Renamed from cannot_store_register,
9857 made static.
9858 (the_low_target): New.
9859 * linux-ppc-low.c (num_regs): Remove.
9860 (ppc_num_regs): Define.
9861 (ppc_regmap): Renamed from regmap, made static.
9862 (ppc_cannot_fetch_register): Renamed from cannot_fetch_register,
9863 made static.
9864 (ppc_cannot_store_register): Renamed from cannot_store_register,
9865 made static.
9866 (the_low_target): New.
9867 * linux-s390-low.c (num_regs): Remove.
9868 (s390_num_regs): Define.
9869 (s390_regmap): Renamed from regmap, made static.
9870 (s390_cannot_fetch_register): Renamed from cannot_fetch_register,
9871 made static.
9872 (s390_cannot_store_register): Renamed from cannot_store_register,
9873 made static.
9874 (the_low_target): New.
9875 * linux-sh-low.c (num_regs): Remove.
9876 (sh_num_regs): Define.
9877 (sh_regmap): Renamed from regmap, made static.
9878 (sh_cannot_fetch_register): Renamed from cannot_fetch_register,
9879 made static.
9880 (sh_cannot_store_register): Renamed from cannot_store_register,
9881 made static.
9882 (the_low_target): New.
9883 * linux-x86-64-low.c (x86_64_regmap): Renamed from regmap.
9884 (the_low_target): New.
9885
98862002-04-09 Daniel Jacobowitz <drow@mvista.com>
9887
9888 * Makefile.in: Add stamp-h target.
9889 * configure.in: Create stamp-h.
9890 * configure: Regenerated.
9891
98922002-04-09 Daniel Jacobowitz <drow@mvista.com>
9893
9894 * inferiors.c: New file.
9895 * target.c: New file.
9896 * target.h: New file.
9897 * Makefile.in: Add target.o and inferiors.o. Update
9898 dependencies.
9899 * linux-low.c (inferior_pid): New static variable,
9900 moved from server.c.
9901 (linux_create_inferior): Renamed from create_inferior.
9902 Call add_inferior. Return 0 on success instead of a PID.
9903 (linux_attach): Renamed from myattach.
9904 (linux_kill): Renamed from kill_inferior. Call clear_inferiors ().
9905 (linux_thread_alive): Renamed from mythread_alive.
9906 (linux_wait): Renamed from mywait. Call clear_inferiors () if the
9907 child dies.
9908 (linux_resume): Renamed from myresume. Add missing ``return 0''.
9909 (regsets_store_inferior_registers): Correct error message.
9910 Add missing ``return 0''.
9911 (linux_fetch_registers): Renamed from fetch_inferior_registers.
9912 (linux_store_registers): Renamed from store_inferior_registers.
9913 (linux_read_memory): Renamed from read_inferior_memory.
9914 (linux_write_memory): Renamed from write_inferior_memory.
9915 (linux_target_ops): New structure.
9916 (initialize_low): Call set_target_ops ().
9917 * remote-utils.c (unhexify): New function.
9918 (hexify): New function.
9919 (input_interrupt): Send signals to ``signal_pid''.
9920 * server.c (inferior_pid): Remove.
9921 (start_inferior): Update create_inferior call.
9922 (attach_inferior): Call add_inferior.
9923 (handle_query): New function.
9924 (main): Call handle_query for `q' packets.
9925 * server.h: Include "target.h". Remove obsolete prototypes.
9926 Add prototypes for "inferiors.c", "target.c", hexify, and unhexify.
9927
99282002-04-09 Daniel Jacobowitz <drow@mvista.com>
9929
9930 * Makefile.in: Add WARN_CFLAGS. Update configury
9931 dependencies.
9932 * configure.in: Check for <string.h>
9933 * configure: Regenerate.
9934 * config.in: Regenerate.
9935 * gdbreplay.c: Include needed system headers.
9936 (remote_open): Remove strchr prototype.
9937 * linux-low.h: Correct #ifdef to HAVE_LINUX_USRREGS.
9938 * regcache.c (supply_register): Change buf argument to const void *.
9939 (supply_register_by_name): Likewise.
9940 (collect_register): Change buf argument to void *.
9941 (collect_register_by_name): Likewise.
9942 * regcache.h: Add missing prototypes.
9943 * remote-utils.c: Include <arpa/inet.h> for inet_ntoa.
9944 * server.c (handle_query): New function.
9945 (attached): New static variable, moved out of main.
9946 (main): Quiet longjmp clobber warnings.
9947 * server.h: Add ATTR_NORETURN and ATTR_FORMAT. Update prototypes.
9948 * utils.c (error): Remove NORETURN.
9949 (fatal): Likewise.
This page took 2.089234 seconds and 4 git commands to generate.