gdb/testsuite/
[deliverable/binutils-gdb.git] / gdb / gdbserver / ChangeLog
CommitLineData
c2d6af84
PA
12013-05-23 Yao Qi <yao@codesourcery.com>
2 Pedro Alves <palves@redhat.com>
3
4 * linux-low.c (lwp_in_step_range): New function.
5 (linux_wait_1): If the thread was range stepping and stopped
6 outside the stepping range, report the stop to GDB. Otherwise,
7 continue stepping. Add range stepping debug output.
8 (linux_set_resume_request): Copy the step range from the resume
9 request to the lwp.
10 (linux_supports_range_stepping): New.
11 (linux_target_ops) <supports_range_stepping>: Set to
12 linux_supports_range_stepping.
13 * linux-low.h (struct linux_target_ops)
14 <supports_range_stepping>: New field.
15 (struct lwp_info) <step_range_start, step_range_end>: New fields.
16 * linux-x86-low.c (x86_supports_range_stepping): New.
17 (the_low_target) <supports_range_stepping>: Set to
18 x86_supports_range_stepping.
19 * server.c (handle_v_cont): Handle 'r' action.
20 (handle_v_requests): Append ";r" if the target supports range
21 stepping.
22 * target.h (struct thread_resume) <step_range_start,
23 step_range_end>: New fields.
24 (struct target_ops) <supports_range_stepping>:
25 New field.
26 (target_supports_range_stepping): New macro.
27
58794e1a
JB
282013-05-17 Joel Brobecker <brobecker@adacore.com>
29
30 * lynx-low.c (lynx_resume): Fix null_ptid/minus_one_ptid
31 confusion in comment.
32
d631c5a7
JB
332013-05-17 Joel Brobecker <brobecker@adacore.com>
34
35 * lynx-low.c (struct process_info_private): New type.
36 (lynx_add_process): New function.
37 (lynx_create_inferior, lynx_attach): Replace calls to
38 add_process by calls to lynx_add_process.
39 (lynx_resume): If PTID is null, then try using
40 current_process()->private->last_wait_event_ptid.
41 Add comments.
42 (lynx_clear_inferiors): Delete. The contents of that function
43 has been inlined in lynx_mourn;
44 (lynx_wait_1): Save the ptid in the process's private data.
45 (lynx_mourn): Free the process' private data. Replace call
46 to lynx_clear_inferiors by call to clear_inferiors.
47
96f7a20f
YQ
482013-05-17 Yao Qi <yao@codesourcery.com>
49
50 * i386-low.c (i386_length_and_rw_bits): Move the comment to
51 the right place.
52
db0dfaa0
LM
532013-05-16 Luis Machado <lgustavo@codesourcery.com>
54
55 * linux-low.c: Move definition checks upwards for PT_TEXT_ADDR,
56 PT_DATA_ADDR and PT_TEXT_END_ADDR. Update comments.
57 (linux_read_offsets): Remove PT_TEXT_ADDR, PT_DATA_ADDR and
58 PT_TEXT_END_ADDR guards. Update comments.
59 (linux_target_op) <read_offsets>: Conditionally define to
60 linux_read_offsets if the target is UCLIBC and if it defines
61 PT_TEXT_ADDR, PT_DATA_ADDR and PT_TEXT_END_ADDR.
62
68f5f838
SL
632013-05-06 Sandra Loosemore <sandra@codesourcery.com>
64 Andrew Jenner <andrew@codesourcery.com>
65
66 * Makefile.in (SFILES): Add linux-nios2-low.c.
67 (clean): Add action to delete nios2-linux.c.
68 (nios2-linux.c): New rule.
69 * configure.srv: Add nios2*-*-linux*.
70 * linux-nios2-low.c: New.
71
1ebff1fd
HAQ
722013-05-03 Hafiz Abid Qadeer <abidh@codesourcery.com>
73
74 * tracepoint.c (cmd_qtinit): Call 'stop_tracing'.
75
f6150862
HZ
762013-04-25 Hui Zhu <hui@codesourcery.com>
77
78 PR gdb/15186
f6150862
HZ
79 * ax.c (ax_printf): Add fflush.
80
614c279d
TT
812013-04-22 Tom Tromey <tromey@redhat.com>
82
83 * Makefile.in (SFILES): Add filestuff.c.
84 (OBS): Add filestuff.o.
85 (filestuff.o): New target.
86 * config.in, configure: Rebuild.
87 * configure.ac: Check for fdwalk, pipe2.
88
7d4e5717
PA
892013-04-17 Pedro Alves <palves@redhat.com>
90
91 * configure.ac (USE_THREAD_DB): Delete variable.
92 (if test "$srv_linux_thread_db" = "yes"): AC_DEFINE USE_THREAD_DB.
93 Don't AC_SUBST USE_THREAD_DB.
94 * Makefile.in (INTERNAL_CFLAGS): Remove @USE_THREAD_DB@.
95 * config.in, configure: Regenerate.
96
d5c93e41
PA
972013-04-16 Pedro Alves <palves@redhat.com>
98
99 * linux-low.h (struct lwp_info) <thread_known>: Move under
100 the USE_THREAD_DB #ifdef.
101
04f5fe89
PA
1022013-04-16 Pedro Alves <palves@redhat.com>
103
104 * Makefile.in (INTERNAL_CFLAGS): Add @USE_THREAD_DB@.
105 (linux-low.o): Delete rule.
106 * linux-low.h: Always include "gdb_thread_db.h" instead of
107 conditionally including thread_db.h.
108 (struct lwp_info) <th>: Guard with #ifdef USE_THREAD_DB instead of
109 HAVE_THREAD_DB_H.
110
480b27bf
JK
1112013-04-07 Jan Kratochvil <jan.kratochvil@redhat.com>
112
113 * Makefile.in (install-only): Fix make install regression.
114
43662968
JK
1152013-04-05 Jan Kratochvil <jan.kratochvil@redhat.com>
116
117 Convert man pages to texinfo, new gdbinit.5 texinfo page.
118 * Makefile.in (install-only): Remove $(man1dir) and gdbserver.1
119 installation.
120 * gdbserver.1: Remove.
121
3e74e146
PA
1222013-03-22 Pedro Alves <palves@redhat.com>
123
124 * linux-low.c (handle_extended_wait): Don't call
125 linux_enable_event_reporting.
126
a8347a2a
TT
1272013-03-15 Tony Theodore <tonyt@logyst.com>
128
129 PR build/9098:
130 * Makefile.in (SHELL): Use @SHELL@.
131
eeb56fa7
SDJ
1322013-03-14 Sergio Durigan Junior <sergiodj@redhat.com>
133
134 * tracepoint.c (cmd_qtv): Initialize `val' with zero, silencing
135 compiler warning.
136
4fa7e2ff
JB
1372013-03-13 Joel Brobecker <brobecker@adacore.com>
138
139 * linux-low.c (linux_target_ops) [!HAVE_LINUX_BTRACE]:
140 Remove extraneous NULL element.
141
8ddb1965
YQ
1422013-03-13 Yao Qi <yao@codesourcery.com>
143
144 * tracepoint.c (traceframe_read_tsv): Look for the last matched
145 'V' block in trace frame.
146
9accd112
MM
1472013-03-11 Markus Metzger <markus.t.metzger@intel.com>
148
149 * target.h (struct target_ops): Add btrace ops.
150 (target_supports_btrace): New macro.
151 (target_enable_btrace): New macro.
152 (target_disable_btrace): New macro.
153 (target_read_btrace): New macro.
154 * gdbthread.h (struct thread_info): Add btrace field.
155 * server.c: Include btrace-common.h.
156 (handle_btrace_general_set): New function.
157 (handle_btrace_enable): New function.
158 (handle_btrace_disable): New function.
159 (handle_general_set): Call handle_btrace_general_set.
160 (handle_qxfer_btrace): New function.
161 (struct qxfer qxfer_packets[]): Add btrace entry.
162 * inferiors.c (remove_thread): Disable btrace.
163 * linux-low: Include linux-btrace.h.
164 (linux_low_enable_btrace): New function.
165 (linux_low_read_btrace): New function.
166 (linux_target_ops): Add btrace ops.
167 * configure.srv (i[34567]86-*-linux*): Add linux-btrace.o.
168 Add srv_linux_btrace=yes.
169 (x86_64-*-linux*): Add linux-btrace.o.
170 Add srv_linux_btrace=yes.
171 * configure.ac: Define HAVE_LINUX_BTRACE.
172 * config.in: Regenerated.
173 * configure: Regenerated.
174
5cc22e4c
MM
1752013-03-11 Markus Metzger <markus.t.metzger@intel.com>
176
177 * server.c (handle_qxfer): Preserve error message if -3 is
178 returned.
179 (qxfer): Document the -3 return value.
180
7c97f91e
MM
1812013-03-11 Markus Metzger <markus.t.metzger@intel.com>
182
183 * Makefile.in (SFILES): Add $(srcdir)/common/linux-btrace.c.
184 (linux_btrace_h): New variable.
185 (linux-btrace.o): New rule.
186
be9a119c 1872013-03-08 Stan Shebs <stan@codesourcery.com>
f6f899bf
HAQ
188 Hafiz Abid Qadeer <abidh@codesourcery.com>
189
190 * tracepoint.c (trace_buffer_size): New global.
191 (DEFAULT_TRACE_BUFFER_SIZE): New define.
192 (init_trace_buffer): Change to one-argument function. Allocate
193 trace buffer memory.
194 (handle_tracepoint_general_set): Call cmd_bigqtbuffer_size to
195 handle QTBuffer:size packet.
196 (cmd_bigqtbuffer_size): New function.
197 (initialize_tracepoint): Call init_trace_buffer with
198 DEFAULT_TRACE_BUFFER_SIZE.
199 * server.c (handle_query): Add QTBuffer:size in the
200 supported packets.
201
e64f7499
YQ
2022013-03-07 Yao Qi <yao@codesourcery.com>
203
204 * tracepoint.c (cur_action, cur_step_action): Make them unsigned.
205 (cmd_qtfp): Initialize cur_action and cur_step_action 0 instead
206 of -1.
207 (cmd_qtsp): Adjust condition. Do post increment.
208 Set cur_action and cur_step_action back to 0.
209
f0ae6fc3
PA
2102013-03-07 Jeremy Bennett <jeremy.bennett@embecosm.com>
211
212 PR server/15236
213 * linux-low.c (linux_write_memory): Return early success if LEN is
214 zero.
215
b5b0b0af
CV
2162013-03-05 Corinna Vinschen <vinschen@redhat.de>
217
334ad4a8 218 * configure.srv: Add x86_64-*-cygwin* as target.
b5b0b0af 219
589bc927
TT
2202013-02-28 Tom Tromey <tromey@redhat.com>
221
222 * configure.ac: Invoke AC_SYS_LARGEFILE.
223 * configure, config.in: Rebuild.
224
dfe07582
CV
2252013-02-28 Corinna Vinschen <vinschen@redhat.com>
226
227 * win32-low.c: Throughout, fix format strings and casts of
228 printf-like functions to avoid type related warnings on all
229 platforms.
230 (get_child_debug_event): Print dwDebugEventCode as hex since
231 that's how it's usually documented.
232
736cd585
YQ
2332013-02-28 Yao Qi <yao@codesourcery.com>
234
235 * tracepoint.c (cmd_qtbuffer): Call phex_nz instead of
236 pulongest.
237
e1f58301
JW
2382013-02-27 Jiong Wang <jiwang@tilera.com>
239
240 * Makefile.in (clean): Remove reg-tilegx.c, reg-tilegx32.c.
241 (reg-tilegx32.c): New rule.
242 * configure.srv (tilegx-*-linux*): Add reg-tilegx32.o to srv_regobj.
243 * linux-tile-low.c (tile_arch_setup): New function. Invoke
244 different register info initializer according to elf class.
245 (init_registers_tilgx32): New function. The tilegx32 register info
246 initializer.
247 (tile_fill_gregset): Use "uint_reg_t" to represent register size.
248 (tile_store_gregset): Likewise.
249
d171ca78
YQ
2502013-02-27 Yao Qi <yao@codesourcery.com>
251
252 * server.c (process_point_options): Print debug message when
253 debug_threads is true.
254
282bbdf3
YQ
2552013-02-26 Yao Qi <yao@codesourcery.com>
256
257 * tracepoint.c (cmd_qtbuffer): Don't set '\0' in OWN_BUF.
258
aca22551
PA
2592013-02-19 Pedro Alves <palves@redhat.com>
260 Kai Tietz <ktietz@redhat.com>
261
262 PR gdb/15161
263
264 * server.c (handle_query) <CRC check>: Use unpack_varlen_hex
265 instead of strtoul to extract address from packet.
266 (process_serial_event) <'z'>: Likewise.
267
4f3cee1c
YQ
2682013-02-18 Yao Qi <yao@codesourcery.com>
269
270 * linux-bfin-low.c (the_low_target): Use NULL instead of 0.
271
8e1d55a3
PA
2722013-02-14 Pedro Alves <palves@redhat.com>
273
274 Plug memory leak.
275
276 * tracepoint.c (cmd_qtnotes): Free TRACING_USER_NAME,
277 TRACING_NOTES and TRACING_STOP_NOTE before clobbering.
278
458820da
PA
2792013-02-14 Pedro Alves <palves@redhat.com>
280
281 * tracepoint.c (cmd_qtdpsrc): Use savestring.
282
baea0dae
PA
2832013-02-14 Pedro Alves <palves@redhat.com>
284
285 * tracepoint.c (save_string): Delete.
286 (add_tracepoint_action): Use savestring instead of save_string.
287
0b1afbb3
PA
2882013-02-12 Pedro Alves <palves@redhat.com>
289
290 * linux-xtensa-low.c: Ditto.
291 * xtensa-xtregs.c: Ditto.
292
8a4ac37e
PA
2932013-02-12 Sanimir Agovic <sanimir.agovic@intel.com>
294
295 * thread-db.c (thread_db_get_tls_address): NULL pointer check
296 thread_db.
297
148de6bb
MS
2982013-02-07 Marcus Shawcroft <marcus.shawcroft@arm.com>
299
300 * linux-aarch64-low.c (aarch64_arch_setup): Clamp
301 aarch64_num_wp_regs and aarch64_num_bp_regs to
302 AARCH64_HWP_MAX_NUM and AARCH64_HBP_MAX_NUM respectively.
303
55fac6e0
MS
3042013-02-07 Marcus Shawcroft <marcus.shawcroft@arm.com>
305
306 * linux-aarch64-low.c (ps_get_thread_area): Replace
307 PTRACE_GET_THREAD_AREA with PTRACE_GETREGSET.
308
176eb98c
MS
3092013-02-04 Jim MacArthur <jim.macarthur@arm.com>
310 Marcus Shawcroft <marcus.shawcroft@arm.com>
311 Nigel Stephens <nigel.stephens@arm.com>
312 Yufeng Zhang <yufeng.zhang@arm.com>
313
314 * Makefile.in (clean): Remove aarch64.c and aarch64-without-fpu.c.
315 (aarch64.c, aarch64-without-fpu.c): New targets.
316 * configure.srv (aarch64*-*-linux*): New.
317 * linux-aarch64-low.c: New file.
318
56f7af9c
MS
3192013-02-04 Marcus Shawcroft <marcus.shawcroft@arm.com>
320
43aaf8b6 321 * linux-low.c (handle_extended_wait, linux_create_inferior)
56f7af9c
MS
322 (linux_attach_lwp_1, linux_kill_one_lwp, linux_attach_one_lwp)
323 (dequeue_one_deferred_signal, linux_resume_one_thread)
324 (fetch_register, linux_write_memory, linux_enable_event_reporting)
325 (linux_tracefork_grandchild, linux_test_for_tracefork)
326 (linux_read_offsets, linux_xfer_siginfo, linux_xfer_siginfo): Add
327 PTRACE_ARG3_TYPE and PTRACE_ARG4_TYPE cast to ptrace arguments
328 where the argument is 0.
329
60f662b0
YQ
3302013-01-25 Yao Qi <yao@codesourcery.com>
331
332 * event-loop.c: Include "queue.h".
333 (gdb_event_p): New typedef.
334 (struct gdb_event) <next_event>: Remove.
335 (event_queue): Change to QUEUE(gdb_event_p).
336 (async_queue_event): Remove.
337 (gdb_event_xfree): New.
338 (initialize_event_loop): New.
339 (process_event): Use API from QUEUE.
340 (wait_for_event): Likewise.
341 * server.c (main): Call initialize_event_loop.
342 * server.h (initialize_event_loop): Declare.
343
5ae4861a
YQ
3442013-01-18 Yao Qi <yao@codesourcery.com>
345
346 * ax.h (struct eval_agent_expr_context): New.
347 (gdb_eval_agent_expr): Update declaration.
348 * ax.c (gdb_eval_agent_expr): Remove argument REGCACHE and
349 TFRAME. Add new argument CTX.
350 * server.h (struct eval_agent_expr_context): Declare.
351 (agent_mem_read, agent_tsv_read): Update declaration.
352 (agent_mem_read_string): Likewise.
353 * tracepoint.c (eval_tracepoint_agent_expr): Remove.
354 (add_traceframe_block): Add new argument TPOINT.
355 Increase TPOINT->traceframe_usage.
356 (do_action_at_tracepoint): Call gdb_eval_agent_expr instead of
357 eval_tracepoint_agent_expr.
358 (condition_true_at_tracepoint): Likewise.
359 (agent_mem_read): Remove argument TFRAME. Add argument CTX.
360 (agent_mem_read_string, agent_tsv_read): Likewise.
361
85e00e85
YQ
3622013-01-16 Yao Qi <yao@codesourcery.com>
363
364 * linux-low.c (linux_resume_one_lwp): Don't check
365 'lwp->bp_reinsert != 0'.
366
4039cf45
JB
3672013-01-07 Joel Brobecker <brobecker@adacore.com>
368 Pedro Alves <palves@redhat.com>
369
370 * lynx-low.c (ptrace_request_to_str): Define a temporary
371 macro and use it to simplify this function's implementation.
372
9044dee2
JB
3732013-01-07 Joel Brobecker <brobecker@adacore.com>
374
375 * lynx-low.c (lynx_resume): Call perror_with_name if lynx_ptrace
376 sets errno.
377
e6352c8f
JB
3782013-01-07 Joel Brobecker <brobecker@adacore.com>
379
380 * configure.srv (i[34567]86-*-lynxos*): Set srv_xmlfiles.
381
50681a27
JB
3822013-01-07 Joel Brobecker <brobecker@adacore.com>
383
384 * configure.srv (powerpc-*-lynxos*): Set srv_xmlfiles.
385
3f6e77ef
JB
3862013-01-07 Joel Brobecker <brobecker@adacore.com>
387
388 * lynx-low.c (lynx_resume): Use the resume_info parameter
389 to determine the ptid for the lynx_ptrace call, unless
390 it is equal to minus_one_ptid, in which case we use the
391 ptid of the current_inferior.
392 (lynx_wait_1): After having received a thread create/exit
393 event, resume the inferior's execution using the signaling
394 thread's ptid, rather than the old ptid.
395
7fda33ae
JB
3962013-01-07 Joel Brobecker <brobecker@adacore.com>
397
398 * lynx-low.c (lynx_resume): Delete variable ret.
399
b9786c74
JB
4002013-01-01 Joel Brobecker <brobecker@adacore.com>
401
402 * gdbreplay.c (gdbreplay_version): Update copyright year.
403 * server.c (gdbserver_version): Likewise.
404
8b93d60f
JB
4052012-12-17 Joel Brobecker <brobecker@adacore.com>
406
407 * lynx-low.c (lynx_wait_1): Add debug trace before adding
408 new thread.
409
037335a7
JB
4102012-12-17 Joel Brobecker <brobecker@adacore.com>
411
412 * lynx-low.c (ptrace_request_to_str): Add handling for
413 PTRACE_GETTRACESIG.
414
52d4cbd8
JB
4152012-12-17 Joel Brobecker <brobecker@adacore.com>
416
417 * lynx-low.c (lynx_attach): Delete variable new_process.
418
ab8f6ca9
JB
4192012-12-17 Joel Brobecker <brobecker@adacore.com>
420
421 * lynx-low.c (lynx_create_inferior): Delete variable
422 new_process.
423
78cbc024
JB
4242012-12-17 Joel Brobecker <brobecker@adacore.com>
425
426 * lynx-low.c (ptrace_request_to_str): Do not handle
427 PTRACE_GETTHREADLIST if this macro does not exist.
428
14a00470
YQ
4292012-12-15 Yao Qi <yao@codesourcery.com>
430
431 * Makefile.in (OBS): Add notif.o.
432 * notif.c, notif.h: New.
433 * server.c: Include "notif.h".
434 (struct vstop_notif) <next>: Remove.
435 <base>: New field.
436 (queue_stop_reply): Update.
437 (push_event, send_next_stop_reply): Remove.
438 (discard_queued_stop_replies): Update.
439 (notif_stop): New variable.
440 (handle_v_stopped): Remove.
441 (handle_v_requests): Don't call handle_v_stopped. Call
442 handle_ack_notif instead.
443 (queue_stop_reply_callback): Call notif_event_enque instead
444 of queue_stop_reply.
445 (handle_status): Don't call send_next_stop_reply, call
446 notif_write_event instead.
447 (kill_inferior_callback): Likewise.
448 (detach_or_kill_inferior_callback): Likewise.
449 (main): Call initialize_notif.
450 (process_serial_event): Call QUEUE_is_empty.
451 (handle_target_event): Call notif_push instead of push event.
452 * server.h (push_event): Remove declaration.
453
61c125b9
TT
4542012-12-10 Tom Tromey <tromey@redhat.com>
455
456 * Makefile.in (DEPMODE, DEPDIR, depcomp, COMPILE.pre)
457 (COMPILE.post, COMPILE, POSTCOMPILE, IPAGENT_COMPILE): New
458 macros.
459 (.c.o): Rewrite.
460 (ax-ipa.o, tracepoint-ipa.o, utils-ipa.o, format-ipa.o)
461 (common-utils-ipa.o, remote-utils-ipa.o, regcache-ipa.o)
462 (i386-linux-ipa.o, linux-i386-ipa.o, linux-amd64-ipa.o)
463 (amd64-linux-ipa.o, ax.o): Rewrite.
464 (event-loop.o, hostio.o, hostio-errno.o, inferiors.o, mem-break.o)
465 (proc-service.o, regcache.o, remote-utils.o, server.o, target.o)
466 (thread-db.o, tracepoint.o, utils.o, gdbreplay.o, dll.o): Remove.
467 (signals.o, linux-procfs.o, linux-ptrace.o, common-utils.o, vec.o)
468 (gdb_vecs.o, xml-utils.o, linux-osdata.o, ptid.o, buffer.o)
469 (format.o, agent.o, vasprintf.o, vsnprintf.o): Rewrite.
470 (i386-low.o, i387-fp.o, linux-low.o, linux-arm-low.o)
471 (linux-bfin-low.o, linux-cris-low.o, linux-crisv32-low.o)
472 (linux-ia64-low.o, linux-m32r-low.o, linux-mips-low.o)
473 (linux-ppc-low.o, linux-s390-low.o, linux-sh-low.o)
474 (linux-tic6x-low.o, linux-x86-low.o, linux-xtensa-low.o)
475 (linux-tile-low.o, lynx-low.o, lynx-ppc-low.o, nto-low.o)
476 (nto-x86-low.o, linux-low.o, win32-low.o, win32-arm-low.o)
477 (win32-i386-low.o, spu-low.o, reg-arm.o, arm-with-iwmmxt.o)
478 (arm-with-vfpv2.o, arm-with-vfpv3.o, arm-with-neon.o, reg-bfin.o)
479 (reg-cris.o, reg-crisv32.o, i386.o, i386-linux.o, i386-avx.o)
480 (i386-avx-linux.o, i386-mmx.o, i386-mmx-linux.o, reg-ia64.o)
481 (reg-m32r.o, reg-m68k.o, reg-cf.o, mips-linux.o, mips-dsp-linux.o)
482 (mips64-linux.o, mips64-dsp-linux.o, powerpc-32.o, powerpc-32l.o)
483 (powerpc-altivec32l.o, powerpc-cell32l.o, powerpc-vsx32l.o)
484 (powerpc-isa205-32l.o, powerpc-isa205-altivec32l.o)
485 (powerpc-isa205-vsx32l.o, powerpc-e500l.o, powerpc-64l.o)
486 (powerpc-altivec64l.o, powerpc-cell64l.o, powerpc-vsx64l.o)
487 (powerpc-isa205-64l.o, powerpc-isa205-altivec64l.o)
488 (powerpc-isa205-vsx64l.o, s390-linux32.o, s390-linux32v1.o)
489 (s390-linux32v2.o, s390-linux64.o, s390-linux64v1.o)
490 (s390-linux64v2.o, s390x-linux64.o, s390x-linux64v1.o)
491 (s390x-linux64v2.o, tic6x-c64xp-linux.o, tic6x-c64x-linux.o)
492 (tic6x-c62x-linux.o, reg-sh.o, reg-sparc64.o, reg-spu.o, amd64.o)
493 (amd64-linux.o, amd64-avx.o, amd64-avx-linux.o, x32.o)
494 (x32-linux.o, x32-avx.o, x32-avx-linux.o, reg-xtensa.o)
495 (reg-tilegx.o): Remove.
496 (all_object_files): New macro.
497 Include .deps files.
498 * aclocal.m4, configure: Rebuild.
499 * acinclude.m4: Include depstand.m4, lead-dot.m4.
500 * configure.ac: Invoke ZW_CREATE_DEPDIR,
501 ZW_PROG_COMPILER_DEPENDENCIES. Compute GMAKE condition.
502
e90e9ad9
TT
5032012-12-05 Tom Tromey <tromey@redhat.com>
504
505 PR gdb/14917:
506 * server.h (current_insn_ptr, emit_error): Declare 'extern'.
507
02d403bf 5082012-11-28 Markus Metzger <markus.t.metzger@intel.com>
945bf713
MM
509
510 * configure.ac: Check for linux/perf_event.h.
511 * config.in: Regenerated.
512 * configure: Regenerated.
513
0270a750
PA
5142012-11-26 Maxime Villard <rustyBSD@gmx.fr>
515
516 * hostio.c (handle_readlink): Decrease buffer size
517 parameter passed to readlink by one byte.
518
8c29b58e
YQ
5192012-11-26 Yao Qi <yao@codesourcery.com>
520
521 * configure.ac (build_warnings): Append '-Wempty-body'.
522 * configure: Regenerated.
523 * linux-low.c (linux_create_inferior): Use braces for empty 'if'
524 body.
525
8bdce1ff
PM
5262012-11-15 Pierre Muller <muller@sourceware.org>
527
528 * configure.ac (AC_CHECK_HEADERS): Add wait.h header.
529 * config.in: Regenerate.
530 * configure: Regenerate.
531 * linux-low.c: Use "gdb_stat.h" header instead of <sys/stat.h> header.
532 Use "gdb_wait.h" header instead of <sys/wait.h> header.
533 * lynx-low.c: Use "gdb_wait.h" header instead of <sys/wait.h> header.
534 * remote-utils.c: Use "gdb_stat.h" header instead of <sys/stat.h>
535 header.
536 * server.c: Remove HAVE_WAIT_H conditional. Use "gdb_wait.h" header
537 instead of <sys/wait.h> header.
538 * spu-low.c: Use "gdb_wait.h" header instead of <sys/wait.h> header.
539
02d403bf 5402012-11-13 Markus Metzger <markus.t.metzger@intel.com>
3ba6ad0f
MM
541
542 * Makefile.in: (INTERNAL_CFLAGS): Add -DGDBSERVER
543 (various make rules): Remove -DGDBSERVER
544
fbd5db48
YQ
5452012-11-09 Yao Qi <yao@codesourcery.com>
546
547 * spu-low.c (current_ptid): Move it to ..
548 * gdbthread.h: ... here. New.
549 * remote-utils.c (read_ptid): Use macro 'current_ptid'.
550 * server.c (myresume, process_serial_event): Likewise.
551 * thread-db.c (thread_db_find_new_threads): Likewise.
552 * tracepoint.c (run_inferior_command): Likewise.
553
b3dc46ff
AB
5542012-10-01 Andrew Burgess <aburgess@broadcom.com>
555
556 * server.c (handle_search_memory_1): Include access length in
557 warning message.
558
07c04788
HPN
5592012-09-05 Michael Brandt <michael.brandt@axis.com>
560
561 * linux-crisv32-low.c: Fix compile errors.
562
918d227b
YQ
5632012-09-04 Yao Qi <yao@codesourcery.com>
564
565 * tracepoint.c (cmd_qtsv): Adjust debug message.
566 Don't check CUR_TPOINT.
567
18c1b81a
YQ
5682012-08-28 Yao Qi <yao@codesourcery.com>
569
570 * ax.c, tracepoint.c: Replace ATTR_FORMAT with ATTRIBUTE_PRINTF.
571 * server.h: Include 'libiberty.h' and 'ansidecl.h'.
572 (ATTR_NORETURN, ATTR_FORMAT, ATTR_MALLOC): Remove.
573 Remove declarations of xmalloc, xreallloc, xstrdup and
574 freeargv.
575 * Makefile.in (libiberty_h): New.
576 (server_h): Append dependencies 'libiberty.h' and 'ansidecl.h'.
577 (linux-bfin-low.o): Append dependency 'libiberty.h'.
578
dc82f37b
YQ
5792012-08-23 Yao Qi <yao@codesourcery.com>
580
581 * server.h: Remove declaration of 'xsnprintf'.
582
406b1477
KS
5832012-08-22 Keith Seitz <keiths@redhat.com>
584
585 * server.h: Include build-gnulib-gbserver/config.h.
586 * gdbreplay.c: Likewise.
587
e6712ff1
DE
5882012-08-08 Doug Evans <dje@google.com>
589
590 * Makefile.in (SFILES): Add gdb_vecs.c.
591 (OBS): Add gdb_vecs.o.
592 (gdb_vecs_h, host_defs_h): New variables.
593 (thread-db.o): Add $(gdb_vecs_h) dependency.
594 (gdb_vecs.o): New rule.
595 * thread-db.c: #include "gdb_vecs.h".
596 (thread_db_load_search): Use a vector to iterate over path elements.
597 Handle text appearing after "$pdir".
598
599 * configure.ac: Add check for strstr.
600 * config.in: Regenerate.
601 * configure: Regenerate.
602
7c3270ae
UW
6032012-08-02 Ulrich Weigand <ulrich.weigand@linaro.org>
604
605 * hostio.c (handle_pread): If pread fails, fall back to attempting
606 lseek/read.
607 (handle_pwrite): Likewise for pwrite.
608
b62e2b27
UW
6092012-08-01 Ulrich Weigand <ulrich.weigand@linaro.org>
610
611 * linux-arm-low.c (arm_linux_hw_point_initialize): Distinguish
612 between unsupported TYPE and unimplementable ADDR/LEN combination.
613 (arm_insert_point): Act on new return value.
614
78a99e91
PA
6152012-07-31 Pedro Alves <palves@redhat.com>
616
617 * server.c (process_point_options): Only skip tokens if we find
618 one that is unrecognized. Don't treat 'X' specially while
619 skipping unrecognized tokens.
620
fcf303ab
UW
6212012-07-30 Ulrich Weigand <ulrich.weigand@linaro.org>
622
623 * linux-arm-low.c (arm_linux_hw_point_initialize): Do not attempt
624 to 4-byte-align HW breakpoint addresses for Thumb.
625
7255706c
YQ
6262012-07-27 Yao Qi <yao@codesourcery.com>
627
628 PR remote/14161.
629
630 * server.h: Declare gdb_agent_about_to_close.
631 * target.c (kill_inferior): Include "agent.h".
632 New. Send command 'kill'.
633 * target.h (kill_inferior): Removed macro.
634 * tracepoint.c (gdb_agent_about_to_close): New.
635 (gdb_agent_helper_thread): Handle command 'close'.
636 Wait endlessly until the inferior stops.
637 Install gdb_agent_remove_socket to atexit hook.
638 (agent_socket_name): New static variable.
639 (gdb_agent_socket_init): Replace local variable 'name' with
640 'agent_socket_name'.
641 (gdb_agent_remove_socket): New.
642
5a3f286f
YQ
6432012-07-27 Yao Qi <yao@codesourcery.com>
644
645 * server.c (process_point_options): Stop at 'X' when parsing.
646
961bd387
ME
6472012-07-19 Michael Eager <eager@eagercon.com>
648
649 * i386-low.c (Z_packet_to_hw_type): Add Z_PACKET_HW_BP, translate
650 to hw_execute.
651 * linux-x86-low.c (x86_insert_point, x86_remove_point):
652 Call i386_low_insert_watchpoint, i386_low_remove_watchpoint to add/del
653 hardware breakpoint.
654
aa7c7447
JK
6552012-07-07 Jan Kratochvil <jan.kratochvil@redhat.com>
656
657 * gdbserver/linux-low.c (initialize_low): Call
658 linux_ptrace_init_warnings.
659
7f216e7c
DE
6602012-07-02 Doug Evans <dje@google.com>
661
662 * mem-break.c (gdb_no_commands_at_breakpoint): Fix cast from
663 pointer to int.
664
d3ce09f5
SS
6652012-07-02 Stan Shebs <stan@codesourcery.com>
666
667 * Makefile.in (WARN_CFLAGS_NO_FORMAT): Define.
668 (ax.o): Add it to build rule.
669 (ax-ipa.o): Ditto.
670 (OBS): Add format.o.
671 (IPA_OBS): Add format.o.
672 * server.c (handle_query): Claim support for breakpoint commands.
673 (process_point_options): Add command case.
674 (process_serial_event): Leave running if there are printfs in
675 effect.
676 * mem-break.h (any_persistent_commands): Declare.
677 (add_breakpoint_commands): Declare.
678 (gdb_no_commands_at_breakpoint): Declare.
679 (run_breakpoint_commands): Declare.
680 * mem-break.c (struct point_command_list): New struct.
681 (struct breakpoint): New field command_list.
682 (any_persistent_commands): New function.
683 (add_commands_to_breakpoint): New function.
684 (add_breakpoint_commands): New function.
685 (gdb_no_commands_at_breakpoint): New function.
686 (run_breakpoint_commands): New function.
687 * linux-low.c (linux_wait_1): Test for and run breakpoint commands
688 locally.
689 * ax.c: Include format.h.
690 (ax_printf): New function.
691 (gdb_eval_agent_expr): Add printf opcode.
692
2f8f6aed
YQ
6932012-06-13 Yao Qi <yao@codesourcery.com>
694
695 * server.c (start_inferior): Remove duplicated writes to fields
696 'last_resume_kind' and 'last_status' of 'current_inferior'.
697
0c9070b3
YQ
6982012-06-12 Yao Qi <yao@codesourcery.com>
699 Pedro Alves <palves@redhat.com>
700
701 * linux-low.c (linux_set_resume_request): Simplify predicate. Add
702 comment.
703 * server.c (handle_v_cont): Extend comment.
704
c52daf70
YQ
7052012-06-11 Yao Qi <yao@codesourcery.com>
706
707 * linux-low.c (linux_attach): Add 'static'.
708
d38bbb0a
YQ
7092012-06-06 Yao Qi <yao@codesourcery.com>
710
711 * ax.c (gdb_eval_agent_expr): Print `top' in hex.
712
89dc0afd
JK
7132012-06-01 Jan Kratochvil <jan.kratochvil@redhat.com>
714
715 Fix gcc -flto compilation warning.
716 * server.c (main): Make variable multi_mode and attach volatile.
717
75f62ce7
TJB
7182012-05-30 Thiago Jung Bauermann <thiago.bauermann@linaro.org>
719
720 * linux-low.c (get_r_debug): Disable code using DT_MIPS_RLD_MAP
721 if the platform doesn't know about it.
722
65f479b6
PA
7232012-05-30 Jeff Kenton <jkenton@tilera.com>
724
725 * Makefile.in (SFILES): Add linux-tile-low.c.
726 (linux-tile-low.o, reg-tilegx.o, reg-tilegx.c): New rules.
727 * configure.srv: Handle tilegx-*-linux*.
728 * linux-tile-low.c: New file.
729
0c5bf5a9
JK
7302012-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
731
732 * linux-low.c (linux_qxfer_libraries_svr4): Return -1 if R_DEBUG is -1.
733
a493e3e2
PA
7342012-05-24 Pedro Alves <palves@redhat.com>
735
736 PR gdb/7205
737
43aaf8b6 738 Replace TARGET_SIGNAL_ with GDB_SIGNAL_ throughout.
a493e3e2 739
2ea28649
PA
7402012-05-24 Pedro Alves <palves@redhat.com>
741
742 PR gdb/7205
743
744 Replace target_signal with gdb_signal throughout.
745
8d409d16
MR
7462012-05-22 Maciej W. Rozycki <macro@codesourcery.com>
747
748 * linux-low.c (linux_store_registers): Avoid the copying sequence
749 when no data has been retrieved by ptrace.
750
23512c01
MGD
7512012-05-22 Will Deacon <will.deacon@arm.com>
752
753 * linux-low (__UCLIBC__ && !(__UCLIBC_HAS_MMU__ || __ARCH_HAS_MMU__)):
754 Include asm/ptrace.h.
755 (PT_TEXT_ADDR, PT_DATA_ADDR, PT_TEXT_END_ADDR): Define only if not
756 already defined.
757
4934b29e
MR
7582012-05-21 Maciej W. Rozycki <macro@codesourcery.com>
759
760 * linux-low.c (linux_store_registers): Don't re-retrieve data
761 with ptrace that has already been obtained from /proc. Always
762 copy any data retrieved with ptrace to the buffer supplied.
763
bde24c0a
PA
7642012-05-11 Yao Qi <yao@codesourcery.com>
765 Pedro Alves <palves@redhat.com>
766
767 * linux-low.c (enum stopping_threads_kind): New.
768 (stopping_threads): Change type to `enum stopping_threads_kind'.
769 (handle_extended_wait): If stopping and suspending threads, leave
770 the new_lwp suspended too.
771 (linux_wait_for_event): Adjust.
772 (stop_all_lwps): Set `stopping_threads' to
773 STOPPING_AND_SUSPENDING_THREADS or STOPPING_THREADS depending on
774 whether we're suspending threads or just stopping them. Assert no
775 recursion happens.
776
623b6bdf
YQ
7772012-04-29 Yao Qi <yao@codesourcery.com>
778
779 * server.h: Move some code to ...
780 * gdbthread.h: ... here. New.
781 * Makefile.in (inferiors.o, regcache.o): Depends on gdbthread.h
782 (remote-utils.o, server.o, target.o tracepoint.o): Likewise.
783 (nto-low.o, win32-low.o): Likewise.
784 * inferiors.c, linux-low.h, nto-low.c: Include gdbthread.h.
785 * regcache.c, remote-utils.c, server.c: Likewise.
786 * target.c, tracepoint.c, win32-low.c: Likewise.
787
f15f9948
TJB
7882012-04-24 Thiago Jung Bauermann <thiago.bauermann@linaro.org>
789
790 * linux-low.h (PTRACE_ARG3_TYPE): Move macro from linux-low.c.
791 (PTRACE_ARG4_TYPE): Likewise.
792 (PTRACE_XFER_TYPE): Likewise.
793 * linux-arm-low.c (arm_prepare_to_resume): Cast third argument of
794 ptrace to PTRACE_ARG3_TYPE.
795 * linux-low.c (PTRACE_ARG3_TYPE): Move macro to linux-low.h.
796 (PTRACE_ARG4_TYPE): Likewise.
797 (PTRACE_XFER_TYPE): Likewise.
798 (linux_detach_one_lwp): Cast fourth argument of
799 ptrace to long then PTRACE_ARG4_TYPE.
800 (regsets_fetch_inferior_registers): Cast third argument of
801 ptrace to long then PTRACE_ARG3_TYPE.
802 (regsets_store_inferior_registers): Likewise.
803
38ea300a
PA
8042012-04-20 Pedro Alves <palves@redhat.com>
805
806 * configure: Regenerate.
807
c971b7fa
PA
8082012-04-19 Pedro Alves <palves@redhat.com>
809
43aaf8b6 810 * Makefile.in (GNULIB_BUILDDIR): New.
c971b7fa 811 (LIBGNU, INCGNU, GNULIB_H): Adjust.
43aaf8b6
PA
812 (SUBDIRS, CLEANDIRS, REQUIRED_SUBDIRS): New.
813 (all, install-only, uninstall, clean-info, all-lib, clean): No
814 longer pass GNULIB_FLAGS_TO_PASS. Use subdir_do.
815 (maintainer-clean realclean distclean): Use subdir_do.
816 (subdir_do): New.
817 (gnulib/import/Makefile): Adjust. Replace gnulib/import with
c971b7fa 818 $(GNULIB_BUILDDIR). Don't pass argument to config.status.
43aaf8b6
PA
819 * acinclude.m4: Include acx_configure_dir.m4.
820 * configure.ac: Remove gl_EARLY, gl_INIT, and AM_INIT_AUTOMAKE
821 calls. Call AC_PROG_RANLIB. Configure gnulib using
822 ACX_CONFIGURE_DIR.
823 (GNULIB): New.
824 (GNULIB_STDINT_H): Adjust.
825 (AC_OUTPUT): Don't output gnulib/Makefile anymore.
826 * gdbreplay.c: Include build-gnulib/config.h.
827 * server.h: Likewise.
828 * aclocal.m4: Regenerate.
829 * config.in: Regenerate.
830 * configure: Regenerate.
c971b7fa 831
809277f8
PA
8322012-04-19 Pedro Alves <palves@redhat.com>
833
834 * Makefile.in (LIBGNU, INCGNU): Adjust.
835 (GNULIB_FLAGS_TO_PASS, GNULIB_H): Adjust.
836 (all, install-only, uninstall, clean-info, all-lib, clean)
837 (maintainer-clean, Makefile, gnulib/Makefile): Adjust.
838 * configure.ac: Adjust AC_OUTPUT output.
839 * aclocal.m4: Regenerate.
840 * configure: Regenerate.
841
fd9bb8b8
PA
8422012-04-19 Pedro Alves <palves@redhat.com>
843
844 * Makefile.in (generated_files): New.
845 (server_h): Remove the explicit dependency on config.h, and depend
846 on $generated_files.
847
1c298c66
PA
8482012-04-19 Pedro Alves <palves@redhat.com>
849
850 * Makefile.in (INCGNU): Add -Ignulib.
851
57c4b50b
PA
8522012-04-19 Pedro Alves <palves@redhat.com>
853
854 * Makefile.in (GNULIB_INCLUDE_DIR): Rename to ...
855 (INCGNU): ... this, and spell out -I here.
856 (GNULIB_LIB): Rename to ...
857 (LIBGNU): ... this.
858 (INCLUDE_CFLAGS, gdbserver$(EXEEXT), $(GNULIB_LIB) rule): Adjust.
859
1030e047
PA
8602012-04-19 Pedro Alves <palves@redhat.com>
861
862 * config.in: Regenerate.
863
447d4319
PA
8642012-04-19 Pedro Alves <palves@redhat.com>
865
866 * configure.ac: Remove AC_CHECK_DECLS check for memmem.
867 * server.h (memmem): Remove declaration.
868 * config.in: Regenerate.
869 * configure: Regenerate.
870
aad9eab9
YQ
8712012-04-19 Yao Qi <yao@codesourcery.com>
872
873 * Makefile.in (SFILES): Add common/vec.c.
874 (OBS): Add vec.o.
875 (vec.o): New rule.
876
3e10640f
YQ
8772012-04-19 Yao Qi <yao@codesourcery.com>
878
879 * remote-utils.c (prepare_resume_reply): Replace with macro
880 target_core_of_thread.
881 * server.c (handle_qxfer_threads_proper): Likewise.
882 * target.h (traget_core_of_thread): New macro.
883
71622373
PA
8842012-04-18 Pedro Alves <palves@redhat.com>
885
886 * aclocal.m4: Regenerate.
887 * configure: Regenerate.
888
80d26939
YQ
8892012-04-16 Yao Qi <yao@codesourcery.com>
890
891 * tracepoint.c (cmd_qtstart): Download tracepoints even when they are
892 duplicated on address.
893
42476b70
YQ
8942012-04-16 Yao Qi <yao@codesourcery.com>
895
896 * tracepoint.c (COPY_FIELD_TO_BUF): New macro.
897 (struct tracepoint_action_ops) <send>: New field.
898 (m_tracepoint_action_send, r_tracepoint_action_send): New.
899 (agent_expr_send, x_tracepoint_action_send): New.
900 (l_tracepoint_action_send): New.
901 (cmd_qtdp): Download and install tracepoint
902 according to `use_agent'.
903 (run_inferior_command): Add one more parameter `len'.
904 Update callers.
905 (tracepoint_send_agent): New.
906 (cmd_qtdp, cmd_qtstart): Call tracepoint_send_agent.
907
7bc83639
YQ
9082012-04-16 Yao Qi <yao@codesourcery.com>
909
910 * tracepoint.c (download_tracepoints): Moved to ...
911 (cmd_qtstart): ... here.
912
5f18041e
YQ
9132012-04-14 Yao Qi <yao@codesourcery.com>
914
915 * tracepoint.c: Include inttypes.h.
916 (struct collect_memory_action): Use sized types.
917 (struct tracepoint): Likewise.
918 (cmd_qtdp, stop_tracing): Update print specifiers.
919 (cmd_qtp, response_tracepoint): Likewise.
920 (collect_data_at_tracepoint): Likewise.
921 (collect_data_at_step): Likewise.
922
55a8c076
YQ
9232012-04-14 Yao Qi <yao@codesourcery.com>
924
925 Import gnulib module inttypes.
926 * aclocal.m4, config.in, configure: Regenerated.
927
dc750257
YQ
9282012-04-14 Yao Qi <yao@codesourcery.com>
929
930 * Makefile.in (maintainer-clean, realclean, distclean): Remove
931 Makefile and config.status at last.
932
0ab5faf9
YQ
9332012-04-13 Yao Qi <yao@codesourcery.com>
934
935 * tracepoint.c: Include stdint.h unconditionally.
936
18f5fd81
TJB
9372012-04-13 Thiago Jung Bauermann <thiago.bauermann@linaro.org>
938
939 * acinclude.m4 (GDBSERVER_HAVE_THREAD_DB_TYPE): New macro based
940 on BFD_HAVE_SYS_PROCFS_TYPE.
941 * configure.ac: Look for lwpid_t and psaddr_t in libthread_db.h.
942 * configure: Regenerate.
943 * config.in: Likewise.
944
4d47af5c
L
9452012-04-13 H.J. Lu <hongjiu.lu@intel.com>
946
947 * Makefile.in (clean): Also remove x32.c x32-linux.c
948 x32-avx.c x32-avx-linux.c.
949 (x32.o): New target.
950 (x32.c): Likewise.
951 (x32-linux.o): Likewise.
952 (x32-linux.c): Likewise.
953 (x32-avx.o): Likewise.
954 (x32-avx.c): Likewise.
955 (x32-avx-linux.o): Likewise.
956 (x32-avx-linux.c): Likewise.
957
958 * configure.srv (srv_amd64_regobj): Add x32.o x32-avx.o.
959 (srv_amd64_linux_regobj): Add x32-linux.o x32-avx-linux.o.
960 (srv_i386_64bit_xmlfiles): Add i386/x32-core.xml.
961 (srv_amd64_xmlfiles): Add i386/x32.xml i386/x32-avx.xml.
962 (srv_amd64_linux_xmlfiles): Add i386/x32-linux.xml
963 i386/x32-avx-linux.xml.
964
965 * linux-x86-low.c (init_registers_x32_linux): New prototype.
966 (init_registers_x32_avx_linux): Likwise.
967 (x86_linux_update_xmltarget): Call init_registers_x32_linux
968 or init_registers_x32_avx_linux if linux_is_elf64 is false.
969
ecedbe58
PA
9702012-04-13 Pedro Alves <palves@redhat.com>
971
972 * Makefile.in (GNULIB_FLAGS_TO_PASS): New.
973 (FLAGS_TO_PASS): Don't change or set $top_srcdir, $srcdir and VPATH.
974 (all, uninstall, clean-info, all-lib, clean, maintainer-clean)
975 (realclean, distclean): Explicitly pass $GNULIB_FLAGS_TO_PASS to
976 the sub-make.
977
c92b5177
L
9782012-04-12 H.J. Lu <hongjiu.lu@intel.com>
979
980 * linux-x86-low.c (compat_x32_clock_t): New.
981 (compat_x32_siginfo_t): Likewise.
982 (compat_x32_siginfo_from_siginfo): Likewise.
983 (siginfo_from_compat_x32_siginfo): Likewise.
984 (linux_is_elf64): Likewise.
985 (x86_siginfo_fixup): Call compat_x32_siginfo_from_siginfo
986 and siginfo_from_compat_x32_siginfo for x32.
987 (x86_arch_setup): Set linux_is_elf64.
988
214d508e
L
9892012-04-12 H.J. Lu <hongjiu.lu@intel.com>
990
991 PR gdb/13969
992 * linux-low.c (linux_pid_exe_is_elf_64_file): Also return the
993 e_machine field.
994 (linux_qxfer_libraries_svr4): Update call to elf_64_file_p.
995 * linux-low.h (linux_pid_exe_is_elf_64_file): Updated.
996 * linux-x86-low.c (x86_arch_setup): Check if GDBserver is
997 compatible with process.
998
c9a1864a
YQ
9992012-04-12 Yao Qi <yao@codesourcery.com>
1000
1001 * Makefile.in: Define abs_top_srcdir and abs_srcdir.
1002 (INCLUDE_CFLAGS): Append GNULIB_INCLUDE_DIR.
1003 (install-only, install-info, clean): Handle sub dir gnulib.
1004 (all-lib, am--refresh): New targets.
1005 (memmem.o): Remove target.
1006 * configure.ac: Remove AC_CONFIG_LIBOBJ_DIR.
1007 Invoke gl_EARLY. Invoke AC_CHECK_PROGS for make.
1008 (AC_REPLACE_FUNCS): Remove memmem.
1009 Invoke gl_INIT and AM_INIT_AUTOMAKE.
1010 (AC_OUTPUT): Generate Makefile in gnulib/.
1011 * aclocal.m4, config.in, configure: Regenerated.
1012
367ba2c2
MR
10132012-04-10 Maciej W. Rozycki <macro@codesourcery.com>
1014
1015 * linux-low.c (get_r_debug): Handle DT_MIPS_RLD_MAP.
1016
9d236627
PA
10172012-04-05 Pedro Alves <palves@redhat.com>
1018
1019 -Werror=strict-aliasing
1020
1021 * spu-low.c (parse_spufs_run): Avoid dereferencing type-punned
1022 pointer.
1023
111217b3
PA
10242012-04-04 Pedro Alves <palves@redhat.com>
1025
1026 * linux-sparc-low.c (sparc_fill_gregset_to_stack)
1027 (sparc_store_gregset_from_stack, sparc_store_gregset)
1028 (sparc_breakpoint_at): Fix formatting.
1029
8365dcf5
TJB
10302012-03-30 Thiago Jung Bauermann <thiago.bauermann@linaro.org>
1031
1032 * configure.ac: Check whether Elf32_auxv_t and Elf64_auxv_t
1033 are available.
1034 * linux-low.c [HAVE_ELF32_AUXV_T] (Elf32_auxv_t): Add typedef.
1035 [HAVE_ELF64_AUXV_T] (Elf64_auxv_t): Likewise.
1036 * config.in: Regenerate.
1037 * configure: Likewise.
1038
689cc2ae
PA
10392012-03-29 Pedro Alves <palves@redhat.com>
1040
1041 * linux-low.c (regsets_store_inferior_registers) [__sparc__]:
1042 Correct ptrace arguments.
1043
c14dfd32
PA
10442012-03-28 Pedro Alves <palves@redhat.com>
1045
1046 * linux-ia64-low.c (ia64_regmap): Map IA64_EC_REGNUM to PT_AR_EC.
1047 (IA64_GR0_REGNUM, IA64_FR0_REGNUM)
1048 (IA64_FR1_REGNUM): New defines.
1049 (ia64_fetch_register): New.
1050 (the_low_target): Install it.
1051 * linux-low.h (struct linux_target_ops) <fetch_register>: New
1052 field.
1053 * linux-low.c (linux_fetch_registers): Try the
1054 the_low_target.fetch_register hook first.
1055
1056 * linux-arm-low.c (the_low_target): Adjust.
1057 * linux-bfin-low.c (the_low_target): Adjust.
1058 * linux-cris-low.c (the_low_target): Adjust.
1059 * linux-crisv32-low.c (the_low_target): Adjust.
1060 * linux-m32r-low.c (the_low_target): Adjust.
1061 * linux-m68k-low.c (the_low_target): Adjust.
1062 * linux-mips-low.c (the_low_target): Adjust.
1063 * linux-ppc-low.c (the_low_target): Adjust.
1064 * linux-s390-low.c (the_low_target): Adjust.
1065 * linux-sh-low.c (the_low_target): Adjust.
1066 * linux-sparc-low.c (the_low_target): Adjust.
1067 * linux-tic6x-low.c (the_low_target): Adjust.
1068 * linux-x86-low.c (the_low_target): Adjust.
1069 * linux-xtensa-low.c (the_low_target): Adjust.
1070
63c88e13
PA
10712012-03-26 Pedro Alves <palves@redhat.com>
1072
1073 * server.c (handle_qxfer_libraries): Don't bail early if
1074 the_target->qxfer_libraries_svr4 is not NULL.
1075
fb723180
PA
10762012-03-26 Pedro Alves <palves@redhat.com>
1077
1078 * linux-low.c (linux_qxfer_libraries_svr4): Fix pasto in comment.
1079
0afae3cf
PA
10802012-03-23 Pedro Alves <palves@redhat.com>
1081
1082 * linux-low.c (linux_qxfer_libraries_svr4): Terminate the
1083 "library-list-svr4" element's start tag when the the DSO list is
1084 empty.
1085
485f1ee4
PA
10862012-03-23 Pedro Alves <palves@redhat.com>
1087
1088 * linux-low.c (read_one_ptr): Read the inferior's pointer through
1089 a variable whose type size is the same as the inferior's pointer
1090 size.
1091
a5362b9a
TS
10922012-03-21 Thomas Schwinge <thomas@codesourcery.com>
1093
1094 * linux-arm-low.c (arm_stopped_by_watchpoint): Use siginfo_t instead of
1095 struct siginfo.
1096 * linux-low.c (siginfo_fixup, linux_xfer_siginfo): Likewise.
1097 * linux-x86-low.c (x86_siginfo_fixup): Likewise.
1098 * linux-low.h: Include <signal.h>.
1099 (struct siginfo): Remove forward declaration.
1100 (struct linux_target_ops) <siginfo_fixup>: Use siginfo_t instead of
1101 struct siginfo.
1102
d226c142
MF
11032012-03-21 Mike Frysinger <vapier@gentoo.org>
1104
1105 * .gitignore: Ignore more files.
1106
122f36ef
PA
11072012-03-19 Pedro Alves <palves@redhat.com>
1108 Jan Kratochvil <jan.kratochvil@redhat.com>
1109
1110 * server.c (cont_thread, general_thread): Add describing comments.
1111 (start_inferior): Clear `cont_thread'.
1112 (handle_v_cont): Don't set `cont_thread' if resuming all threads
1113 of a process.
1114
fc3e5175
YQ
11152012-03-15 Yao Qi <yao@codesourcery.com>
1116
1117 * tracepoint.c (install_tracepoint): Move duplicated tracepoint
1118 handling to ...
1119 (cmd_qtdp): ... here.
1120
8d0d92cd
YQ
11212012-03-15 Yao Qi <yao@codesourcery.com>
1122
1123 * tracepoint.c (struct tracepoint_action_ops): New.
1124 (struct tracepoint_action) [!IN_PROCESS_AGENT] <ops>: New field.
1125 (m_tracepoint_action_download): New.
1126 (r_tracepoint_action_download): New.
1127 (x_tracepoint_action_download): New.
1128 (l_tracepoint_action_download): New.
1129 (add_tracepoint_action): Install `action->ops' according type.
1130 (download_tracepoint_1): Move code `download' function pointer
1131 of various tracepoint_action_ops.
1132
87b0bb13
JK
11332012-03-13 Jan Kratochvil <jan.kratochvil@redhat.com>
1134
1135 * linux-low.c (linux_attach_lwp_1): New variable buffer. Call
1136 linux_ptrace_attach_warnings.
1137
5f572dec
JK
11382012-03-13 Jan Kratochvil <jan.kratochvil@redhat.com>
1139
1140 * Makefile.in (linux-ptrace.o): New.
1141 * configure.srv (arm*-*-linux*, bfin-*-*linux*, crisv32-*-linux*)
1142 (cris-*-linux*, i[34567]86-*-linux*, ia64-*-linux*, m32r*-*-linux*)
1143 (m68*-*-linux*, m68*-*-uclinux*, mips*-*-linux*, powerpc*-*-linux*)
1144 (s390*-*-linux*, sh*-*-linux*, sparc*-*-linux*, tic6x-*-uclinux)
1145 (x86_64-*-linux*, xtensa*-*-linux*): Add linux-ptrace.o to SRV_TGTOBJ
1146 of these targets.
1147 * linux-low.c (linux_attach_lwp_1): Remove redundent else clause.
1148
f4647387
YQ
11492012-03-08 Yao Qi <yao@codesourcery.com>
1150 Pedro Alves <palves@redhat.com>
1151
1152 Fix PR server/13392.
1153 * linux-x86-low.c (amd64_install_fast_tracepoint_jump_pad): Check
1154 offset of JMP insn.
1155 * tracepoint.c (remove_tracepoint): New.
1156 (cmd_qtdp): Call remove_tracepoint when failed to install.
1157
9b224c5e
PA
11582012-03-07 Pedro Alves <palves@redhat.com>
1159
1160 * linux-low.c (get_detach_signal): New.
1161 (linux_detach_one_lwp): Get rid of a pending SIGSTOP with SIGCONT.
1162 Pass on pending signals to PTRACE_DETACH. Check the result of the
1163 ptrace call.
1164 * server.c (program_signals, program_signals_p): New.
1165 (handle_general_set): Handle QProgramSignals.
1166 * server.h (program_signals, program_signals_p): Declare.
1167
e237a7e2
JK
11682012-03-05 Pedro Alves <palves@redhat.com>
1169 Jan Kratochvil <jan.kratochvil@redhat.com>
1170
1171 * linux-low.c (get_dynamic): Don't warn when PT_PHDR isn't found.
1172 New comment why.
1173
5808517f
YQ
11742012-03-03 Yao Qi <yao@codesourcery.com>
1175
1176 * tracepoint.c (tracepoint_look_up_symbols): Update call to
1177 agent_look_up_symbols.
1178
58b4daa5
YQ
11792012-03-03 Yao Qi <yao@codesourcery.com>
1180
1181 * Makefile.in (linux-low.o): Keep dependence on agent.h.
1182 (linux-x86-low.o): Likewise.
1183 * server.h: Remove in_process_agent_loaded.
1184 * tracepoint.c (in_process_agent_loaded): Removed. Moved it
1185 common/agent.c.
1186 Update callers.
1187
8ffcbaaf
YQ
11882012-03-03 Yao Qi <yao@codesourcery.com>
1189
1190 * tracepoint.c (gdb_agent_capability): New global.
1191 (in_process_agent_loaded_ust): Renamed to
1192 `in_process_agent_supports_ust'.
1193 Update callers.
1194 (in_process_agent_supports_ust): Call agent_capability_check.
1195 (clear_installed_tracepoints): Assert that agent supports
1196 agent.
1197
d1feda86
YQ
11982012-03-03 Yao Qi <yao@codesourcery.com>
1199
1200 * linux-low.c (linux_supports_agent): New.
1201 (linux_target_ops): Initialize field `supports_agent' with
1202 linux_supports_agent.
1203 * target.h (struct target_ops) <supports_agent>: New.
1204 (target_supports_agent): New macro.
1205 * server.c (handle_general_set): Handle packet 'QAgent'.
1206 (handle_query): Send `QAgent+'.
1207 * Makefile.in (server.o): Depends on agent.h.
1208
2fa291ac
YQ
12092012-03-03 Yao Qi <yao@codesourcery.com>
1210
1211 * Makefile.in (OBS): Add agent.o.
1212 Add new rule for agent.o.
1213 Track dependence of tracepoint.c on agent.h.
1214 * tracepoint.c (run_inferior_command_1):
1215 (run_inferior_command): Call agent_run_command.
1216 (gdb_ust_connect_sync_socket): Deleted. Move it to
1217 common/agent.c.
1218 (resume_thread, stop_thread): Likewise.
1219 (gdb_ust_socket_init): Renamed to ...
1220 (gdb_agent_socket_init): ... New.
1221 (gdb_ust_thread): Renamed to ...
1222 (gdb_agent_helper_thread): ... New.
1223 (gdb_ust_init): Move some code to ...
1224 (gdb_agent_init): ... here. New.
1225 [HAVE_UST]: Call gdb_ust_init.
1226 (initialize_tracepoint_ftlib): Call gdb_agent_init.
1227 * configure.ac: Add `sys/un.h' to AC_CHECK_HEADERS.
1228 * config.in, configure: Regenerated.
1229
05044653
PA
12302012-03-02 Pedro Alves <palves@redhat.com>
1231
1232 * inferiors.c (add_pid_to_list, pull_pid_from_list): Delete.
1233 * linux-low.c (struct simple_pid_list): New.
1234 (stopped_pids): New a struct simple_pid_list pointer.
1235 (add_to_pid_list, pull_pid_from_list): New.
1236 (handle_extended_wait): Don't assume the first signal new children
1237 report is SIGSTOP. Adjust call to pull_pid_from_list.
1238 (linux_wait_for_lwp): Adjust.
1239
8d00225b
YQ
12402012-03-02 Yao Qi <yao@codesourcery.com>
1241
1242 * tracepoint.c (do_action_at_tracepoint): Write `stop_pc' in
1243 debug log.
1244
19560ba5
YQ
12452012-03-02 Yao Qi <yao@codesourcery.com>
1246
1247 * tracepoint.c (collect_ust_data_at_tracepoint): Remove parameters
1248 `stop_pc' and `tpoint'. Update caller.
1249
1faeff08
MR
12502012-03-01 Maciej W. Rozycki <macro@codesourcery.com>
1251
1252 * linux-low.h (linux_target_ops): Add regset_bitmap member.
1253 * linux-low.c (use_linux_regsets): New macro.
1254 [!HAVE_LINUX_REGSETS] (regsets_fetch_inferior_registers): Likewise.
1255 [!HAVE_LINUX_REGSETS] (regsets_store_inferior_registers): Likewise.
1256 (linux_register_in_regsets): New function.
1257 (usr_fetch_inferior_registers): Skip registers covered by
1258 regsets.
1259 (usr_store_inferior_registers): Likewise.
1260 (usr_fetch_inferior_registers): New macro.
1261 (usr_store_inferior_registers): Likewise.
1262 (linux_fetch_registers): Handle mixed regset/non-regset targets.
1263 (linux_store_registers): Likewise.
1264 * linux-mips-low.c (init_registers_mips_dsp_linux): New
1265 prototype.
1266 (init_registers_mips64_dsp_linux): Likewise.
1267 (init_registers_mips_linux): New macro.
1268 (init_registers_mips_dsp_linux): Likewise.
1269 (mips_dsp_num_regs): Likewise.
1270 (DSP_BASE, DSP_CONTROL): New fallback macros.
1271 (mips_base_regs): New macro.
1272 (mips_regmap): Use it. Fix the size.
1273 (mips_dsp_regmap): New variable.
1274 (mips_dsp_regset_bitmap): Likewise.
1275 (mips_arch_setup): New function.
1276 (mips_cannot_fetch_register): Use the_low_target.regmap rather
1277 than mips_regmap.
1278 (mips_cannot_store_register): Likewise.
1279 (the_low_target): Update .arch_setup, .num_regs and .regmap
1280 initializers. Add .regset_bitmap initializer.
1281 * linux-arm-low.c (the_low_target): Add .regset_bitmap
1282 initializer.
1283 * linux-bfin-low.c (the_low_target): Likewise.
1284 * linux-cris-low.c (the_low_target): Likewise.
1285 * linux-crisv32-low.c (the_low_target): Likewise.
1286 * linux-ia64-low.c (the_low_target): Likewise.
1287 * linux-m32r-low.c (the_low_target): Likewise.
1288 * linux-m68k-low.c (the_low_target): Likewise.
1289 * linux-ppc-low.c (the_low_target): Likewise.
1290 * linux-s390-low.c (the_low_target): Likewise.
1291 * linux-sh-low.c (the_low_target): Likewise.
1292 * linux-sparc-low.c (the_low_target): Likewise.
1293 * linux-tic6x-low.c (the_low_target): Likewise.
1294 * linux-x86-low.c (the_low_target): Likewise.
1295 * linux-xtensa-low.c (the_low_target): Likewise.
1296 * configure.srv <mips*-*-linux*>: Add mips-dsp-linux.o and
1297 mips64-dsp-linux.o to srv_regobj. Add mips-dsp-linux.xml,
1298 mips64-dsp-linux.xml, mips-dsp.xml and mips64-dsp.xml to
1299 srv_xmlfiles.
1300 * Makefile.in (mips-dsp-linux.o, mips-dsp-linux.c): New targets.
1301 (mips64-dsp-linux.o, mips64-dsp-linux.c): Likewise.
1302
c03e6ccc
YQ
13032012-02-29 Yao Qi <yao@codesourcery.com>
1304 Pedro Alves <palves@redhat.com>
1305
1306 * linux-low.c: (linux_wait_1): Call unsuspend_all_lwps when
1307 `step_over_finished' is true.
1308
644cebc9
PA
13092012-02-27 Pedro Alves <palves@redhat.com>
1310
1311 * linux-low.c (pid_is_stopped): Delete, moved to common/.
1312 (linux_attach_lwp_1): Adjust to use linux_proc_pid_is_stopped.
1313
c14d7ab2
PA
13142012-02-27 Pedro Alves <palves@redhat.com>
1315
1316 PR server/9684
1317 * linux-low.c (pid_is_stopped): New.
1318 (linux_attach_lwp_1): Handle attaching to 'T (stopped)' processes.
1319
412c89dd
LM
13202012-02-25 Luis Machado <lgustavo@codesourcery.com>
1321
1322 * mem-break.c (clear_gdb_breakpoint_conditions): Fix de-allocation
1323 of conditions.
1324
b745defe
MR
13252012-02-24 Maciej W. Rozycki <macro@codesourcery.com>
1326
1327 * linux-mips-low.c (mips_regmap): Correct the index of $f9.
1328
9f3a5c85
LM
13292012-02-24 Luis Machado <lgustavo@codesourcery>
1330
1331 * server.c (handle_query): Advertise support for target-side
1332 breakpoint condition evaluation.
1333 (process_point_options): New function.
1334 (process_serial_event): When inserting a breakpoint, check for
1335 a target-side condition that should be evaluated.
1336
1337 * mem-break.c: Include regcache.h and ax.h.
1338 (point_cond_list_t): New data structure.
1339 (breakpoint) <cond_list>: New field.
1340 (find_gdb_breakpoint_at): Make non-static.
1341 (delete_gdb_breakpoint_at): Clear any target-side
1342 conditions.
1343 (clear_gdb_breakpoint_conditions): New function.
1344 (add_condition_to_breakpoint): Likewise.
1345 (add_breakpoint_condition): Likewise.
1346 (gdb_condition_true_at_breakpoint): Likewise.
1347 (gdb_breakpoint_here): Return result directly instead
1348 of going through a local variable.
1349
1350 * mem-break.h (find_gdb_breakpoint_at): New prototype.
1351 (clear_gdb_breakpoint_conditions): Likewise.
1352 (add_breakpoint_condition): Likewise.
1353 (gdb_condition_true_at_breakpoint): Likewise.
1354
1355 * linux-low.c (linux_wait_1): Evaluate target-side breakpoint condition.
1356 (need_step_over_p): Take target-side breakpoint condition into
1357 consideration.
1358
5e1dc496
LM
13592012-02-24 Luis Machado <lgustavo@codesourcery>
1360
1361 * server.h: Include tracepoint.h.
1362 (agent_mem_read, agent_get_trace_state_variable_value,
1363 agent_set_trace_state_variable_value,
1364 agent_tsv_read, agent_mem_read_string, get_get_tsv_func_addr,
1365 get_set_tsv_func_addr): New prototypes.
1366
1367 * ax.h: New include file.
1368 * ax.c: New source file.
1369
1370 * tracepoint.c: Include ax.h.
1371 (gdb_agent_op, gdb_agent_op_names, gdb_agent_op_sizes,
1372 agent_expr, eval_result_type): Move to ax.h.
1373 (parse_agent_expr): Rename to ...
1374 (gdb_parse_agent_expr): ... this, make it non-static and move
1375 to ax.h.
1376 (unparse_agent_expr) Rename to ...
1377 (gdb_unparse_agent_expr): ... this, make it non-static and move
1378 to ax.h.
1379 (eval_agent_expr): Rename to ...
1380 (eval_tracepoint_agent_expr): ... this.
1381 (agent_mem_read, agent_mem_read_string, agent_tsv_read): Remove
1382 forward declarations.
1383 (add_tracepoint_action): Call gdb_parse_agent_expr (...).
1384 (agent_get_trace_state_variable_value): New function.
1385 (agent_set_trace_state_variable_value): New function.
1386 (cmd_qtdp): Call gdb_parse_agent_expr (...).
1387 (response_tracepoint): Call gdb_unparse_agent_expr (...).
1388 (do_action_at_tracepoint): Call eval_tracepoint_agent_expr (...).
1389 (condition_true_at_tracepoint): Likewise.
1390 (parse_agent_expr): Rename to ...
1391 (gdb_parse_agent_expr): ... this and move to ax.c.
1392 (unparse_agent_expr): Rename to ...
1393 (gdb_unparse_agent_expr): ... this and move to ax.c.
1394 (gdb_agent_op_name): Move to ax.c.
1395 (eval_agent_expr): Rename to ...
1396 (gdb_eval_agent_expr): ... this, use regcache passed as parameter
1397 and move to ax.c.
1398 (eval_tracepoint_agent_expr): New function.
1399 (agent_mem_read, agent_mem_read_string, agent_tsv_read): Make
43aaf8b6 1400 non-static.
5e1dc496
LM
1401 (current_insn_ptr, emit_error, struct bytecode_address): Move to
1402 ax.c.
1403 (emit_prologue, emit_epilogue, emit_add, emit_sub, emit_mul, emit_lsh,
1404 emit_rsh_signed, emit_rsh_unsigned, emit_ext, emit_log_not,
1405 emit_bit_and, emit_bit_or, emit_bit_xor, emit_bit_not, emit_equal,
1406 emit_less_signed, emit_less_unsigned, emit_ref, emit_if_goto,
1407 emit_goto, write_goto_address, emit_const, emit_reg, emit_pop,
1408 emit_stack, emit_zero_ext, emit_swap, emit_stack_adjust,
1409 emit_int_call_1, emit_void_call_2, emit_eq_goto, emit_ne_goto,
1410 emit_lt_goto, emit_ge_goto, emit_gt_goto, emit_le_goto): Move to ax.c.
1411 (get_get_tsv_func_addr, get_set_tsv_func_addr): New functions.
1412 (compile_bytecodes): Remove forward declaration.
1413 (is_goto_target): Move to ax.c.
1414 (compile_bytecodes): Move to ax.c and call
1415 agent_get_trace_state_variable_value (...) and
1416 agent_set_trace_state_variable_value (...).
1417
1418 * Makefile.in: Update ax.c and IPA dependencies.
1419
277e4e52
PA
14202012-02-24 Pedro Alves <palves@redhat.com>
1421
1422 * tracepoint.c (cmd_bigqtbuffer): Rename as ...
1423 (cmd_bigqtbuffer_circular): ... this. Only handle
1424 'QTBuffer:circular:'.
1425 (handle_tracepoint_general_set): Adjust.
1426
bf4c19f7
YQ
14272012-02-16 Yao Qi <yao@codesourcery.com>
1428
1429 * inferiors.c: Move code to ...
1430 * dll.c: .... here. New.
1431 * server.h: Declare clear_dlls.
1432 * Makefile.in (SFILES): Add dll.c.
1433 (OBS): Add dll.o
1434 (dll.o): New rule.
1435
d73f2619
YQ
14362012-02-11 Yao Qi <yao@codesourcery.com>
1437
1438 * server.c: (handle_monitor_command): Add a new parameter
1439 `own_buf'.
1440 (handle_query): Update caller.
1441
f8255c2a
JB
14422012-02-09 Joel Brobecker <brobecker@adacore.com>
1443
1444 * configure.ac: Add readlink to AC_CHECK_FUNCS list.
1445 * configure, config.in: Regenerate.
1446 * hostio.c: Provide an alternate implementation if HAVE_READLINK
1447 is not defined.
1448
da84f473
PA
14492012-02-02 Pedro Alves <palves@redhat.com>
1450
1451 Try SIGKILL first, then PTRACE_KILL.
1452 * linux-low.c (linux_kill_one_lwp): New.
1453 (linux_kill_one_lwp): Rename to ...
1454 (kill_one_lwp_callback): ... this. Use the new
1455 linux_kill_one_lwp.
1456
e886a173
PA
14572012-02-02 Pedro Alves <palves@redhat.com>
1458
1459 * tracepoint.c (cmd_qtminftpilen): Return 0 if there's no current
1460 inferior.
1461
be07f1a2
PA
14622012-01-27 Pedro Alves <palves@redhat.com>
1463
1464 * linux-low.c (linux_child_pid_to_exec_file): Delete.
1465 (elf_64_file_p): Make static.
1466 (linux_pid_exe_is_elf_64_file): New.
1467 * linux-low.h (linux_child_pid_to_exec_file, elf_64_file_p):
1468 Delete declarations.
1469 (linux_pid_exe_is_elf_64_file): Declare.
1470 * linux-x86-low.c (x86_arch_setup): Use
1471 linux_pid_exe_is_elf_64_file.
1472
d8301ad1
JK
14732012-01-25 Jan Kratochvil <jan.kratochvil@redhat.com>
1474
1475 * linux-low.c (linux_wait_for_event_1): Rename to ...
1476 (linux_wait_for_event): ... here and merge it with former
1477 linux_wait_for_event - new variable wait_ptid, use it.
1478 (linux_wait_for_event): Remove - merge it to linux_wait_for_event_1.
1479
01b17894
PA
14802012-01-23 Pedro Alves <palves@redhat.com>
1481
1482 * server.c (main): Avoid yet another case of infinite loop while
1483 detaching/killing after a longjmp.
1484
e825046f
JK
14852012-01-20 Jan Kratochvil <jan.kratochvil@redhat.com>
1486
1487 Code cleanup.
1488 * linux-low.c (linux_wait_for_event_1): Use ptid_is_pid.
1489
b9e7b9c3
UW
14902012-01-20 Ulrich Weigand <ulrich.weigand@linaro.org>
1491
1492 * hostio.c (handle_readlink): New function.
1493 (handle_vFile): Call it to handle "vFile:readlink" packets.
1494
901f9912
UW
14952012-01-20 Pedro Alves <palves@redhat.com>
1496 Ulrich Weigand <ulrich.weigand@linaro.org>
1497
1498 * server.c (handle_v_requests): Only support vAttach and vRun to
1499 start multiple processes when in extended protocol mode.
1500
fc1ab1a0
PA
15012012-01-17 Pedro Alves <palves@redhat.com>
1502
1503 * tracepoint.c (initialize_tracepoint): Use mmap instead of
1504 memalign plus mprotect to allocate the scratch buffer.
1505
7d5d4e98
PA
15062012-01-13 Pedro Alves <palves@redhat.com>
1507
1508 * server.c (attach_inferior): Clear `cont_thread'.
1509
f128d5e9
PA
15102012-01-13 Pedro Alves <palves@redhat.com>
1511
1512 * server.c (main): Avoid infinite loop while detaching/killing
1513 after a longjmp.
1514
06db92f0
DE
15152012-01-09 Doug Evans <dje@google.com>
1516
1517 * server.c (start_inferior): Set last_ptid in --wrapper case.
1518
32d92999
YQ
15192012-01-06 Yao Qi <yao@codesourcery.com>
1520
1521 * tracepoint.c [IN_PROCESS_AGENT] (debug_threads): Macro
1522 defined.
1523 [IN_PROCESS_AGENT] (debug_agent): New global variable.
1524
5e0a92a9
YQ
15252012-01-04 Yao Qi <yao@codesourcery.com>
1526
1527 * tracepoint.c (cmd_qtdp): Print debug message
1528 for static tracepoint.
1529
ae639e8c
YQ
15302012-01-04 Yao Qi <yao@codesourcery.com>
1531
1532 * tracepoint.c (trace_vdebug): Differentiate debug message
1533 between gdbserver and IPA.
1534
f72429c5
YQ
15352012-01-03 Yao Qi <yao@codesourcery.com>
1536
1537 * tracepoint.c (tracepoint_was_hit): Don't collect for
1538 static tracepoint.
1539
12c3e59c
JB
15402012-01-02 Joel Brobecker <brobecker@adacore.com>
1541
1542 * terminal.h: Reformat copyright header.
1543
67827812
JB
15442012-01-02 Joel Brobecker <brobecker@adacore.com>
1545
1546 * server.c (gdbserver_version): Update copyright year.
1547 * gdbreplay.c (gdbreplay_version): Likewise.
1548
3e52c33d
JK
15492011-12-18 Jan Kratochvil <jan.kratochvil@redhat.com>
1550
1551 * linux-low.c (linux_create_inferior): Put empty if clause for write.
1552
1553 Revert:
1554 2011-12-18 Hui Zhu <teawater@gmail.com>
1555 * linux-low.c (linux_create_inferior): Save return value to ret.
1556
66f1260e
HZ
15572011-12-18 Hui Zhu <teawater@gmail.com>
1558
1559 * linux-low.c (linux_create_inferior): Save return value to ret.
1560
e77616d7
DE
15612011-12-16 Doug Evans <dje@google.com>
1562
e7b06c57
DE
1563 * linux-low.c (linux_create_inferior): If stdio connection,
1564 redirect stdin from /dev/null, stdout to stderr.
1565 * remote-utils.c (remote_is_stdio): New static global.
1566 (remote_connection_is_stdio): New function.
1567 (remote_prepare): Handle stdio connection.
1568 (remote_open): Ditto.
1569 (remote_close): Don't close stdin for stdio connections.
1570 (read_prim,write_prim): New functions. Replace all calls to
1571 read/write to these.
1572 * server.c (main): Watch for "-" argument. Move call to
1573 remote_prepare before start_inferior.
1574 * server.h (STDIO_CONNECTION_NAME): New macro.
1575 (remote_connection_is_stdio): Declare.
1576
e77616d7
DE
1577 * remote-utils.c (prepare_resume_reply): Remove extraneous \n
1578 in debugging output.
1579
82067193
YQ
15802011-12-15 Yao Qi <yao@codesourcery.com>
1581
1582 * tracepoint.c: Include sys/syscall.h.
1583 (gdb_ust_thread): Remove preprocessor conditional.
1584
82bfbe7e
PA
15852011-12-14 Pedro Alves <pedro@codesourcery.com>
1586
1587 * linux-low.c (linux_detach_one_lwp): Call
1588 the_low_target.prepare_to_resume before detaching.
1589
712c6575
YQ
15902011-12-14 Yao Qi <yao@codesourcery.com>
1591
1592 * tracepoint.c (gdb_ust_thread): Don't ignore return value
1593 of write.
1594
d54d1edf
YQ
15952011-12-14 Yao Qi <yao@codesourcery.com>
1596
1597 * i386-low.c (i386_low_stopped_data_address): Initialize local
1598 variable `control'.
1599
6210a125
PA
16002011-12-13 Pedro Alves <pedro@codesourcery.com>
1601
1602 PR remote/13492
1603
1604 * i386-low.c (i386_low_stopped_data_address): Avoid fetching
1605 DR_CONTROL unless necessary. Extend comments.
1606 * linux-x86-low.c (x86_linux_prepare_to_resume): Don't write to
1607 DR0-3 if not used. If any watchpoint was set, clear DR_STATUS.
1608
2ece8244
YQ
16092011-12-13 Yao Qi <yao@codesourcery.com>
1610
1611 * tracepoint.c (trace_buffer_alloc): Replace magic numbers with
1612 macros.
1613 (upload_fast_traceframes, upload_fast_traceframes): Likewise.
1614
784867a5
JK
16152011-12-08 Jan Kratochvil <jan.kratochvil@redhat.com>
1616
1617 * linux-low.c (linux_kill): Skip PTRACE_KILL if LWP does not exist.
1618 Print new debug message for such case.
1619
6bf36717
JK
16202011-12-06 Jan Kratochvil <jan.kratochvil@redhat.com>
1621
1622 Fix overlapping memcpy.
1623 * mem-break.c (set_raw_breakpoint_at): New variable buf. Use it for
1624 the read_inferior_memory transfer.
1625 (delete_fast_tracepoint_jump): New variable buf. Use it for the
1626 write_inferior_memory transfer.
1627 (set_fast_tracepoint_jump): New variable buf. Use it for the
1628 read_inferior_memory and write_inferior_memory transfers.
1629 (uninsert_fast_tracepoint_jumps_at, reinsert_fast_tracepoint_jumps_at)
1630 (delete_raw_breakpoint, uninsert_raw_breakpoint): New variable buf.
1631 Use it for the write_inferior_memory transfer.
1632 (check_mem_read, check_mem_write): New gdb_asserts for overlapping
1633 buffers.
1634
50275556
MR
16352011-12-06 Maciej W. Rozycki <macro@codesourcery.com>
1636
1637 * linux-low.c (fetch_register, store_register): Make code
1638 consistent, fix formatting.
1639
7325beb4
MR
16402011-12-06 Maciej W. Rozycki <macro@codesourcery.com>
1641
1642 * linux-low.c (usr_store_inferior_registers): Factor out code
1643 to handle individual registers into...
1644 (store_register): ... this new function.
1645
c642a434
UW
16462011-12-06 Ulrich Weigand <uweigand@de.ibm.com>
1647
1648 * Makefile.in (s390-linux32v1.o, s390-linux32v1.c): New rules.
1649 (s390-linux32v2.o, s390-linux32v2.c): Likewise.
1650 (s390-linux64v1.o, s390-linux64v1.c): Likewise.
1651 (s390-linux64v2.o, s390-linux64v2.c): Likewise.
1652 (s390x-linux64v1.o, s390x-linux64v1.c): Likewise.
1653 (s390x-linux64v2.o, s390x-linux64v2.c): Likewise.
1654 * configure.srv [s390*-*-linux*] (srv_regobj): Add new objects.
1655 (srv_xmlfiles): Add new XML files.
1656
1657 * linux-s390-low.c: Include "elf/common.h", <sys/ptrace.h>,
1658 and <sys/uio.h>.
1659 (PTRACE_GETREGSET, PTRACE_SETREGSET): Define if undefined.
1660 (init_registers_s390_linux32v1): Add prototype.
1661 (init_registers_s390_linux32v2): Likewise.
1662 (init_registers_s390_linux64v1): Likewise.
1663 (init_registers_s390_linux64v2): Likewise.
1664 (init_registers_s390x_linux64v1): Likewise.
1665 (init_registers_s390x_linux64v2): Likewise.
1666 (s390_num_regs): Increment to 52.
1667 (s390_regmap): Add orig_r2 register.
1668 (s390_num_regs_3264): Increment to 68.
1669 (s390_regmap_3264): Add orig_r2 register.
1670 (s390_collect_ptrace_register): Handle orig_r2 register.
1671 (s390_supply_ptrace_register): Likewise.
1672 (s390_fill_last_break): New function.
1673 (s390_store_last_break): Likewise.
1674 (s390_fill_system_call): New function.
1675 (s390_store_system_call): Likewise.
1676 (target_regsets): Handle NT_S390_LAST_BREAK and NT_S390_SYSTEM_CALL
1677 register sets.
1678 (s390_check_regset): New function.
1679 (s390_arch_setup): Check for presence of NT_S390_LAST_BREAK and
1680 NT_S390_SYSTEM_CALL regsets and use appropriate description.
1681 Update target_regsets for available register sets.
1682
2268b414
JK
16832011-12-02 Paul Pluzhnikov <ppluzhnikov@google.com>
1684 Jan Kratochvil <jan.kratochvil@redhat.com>
1685
1686 * linux-low.c (get_phdr_phnum_from_proc_auxv, get_dynamic, get_r_debug)
1687 (read_one_ptr, struct link_map_offsets, linux_qxfer_libraries_svr4):
1688 New.
1689 (struct linux_target_ops): Install linux_qxfer_libraries_svr4.
1690 * linux-low.h (struct process_info_private): New member r_debug.
1691 * server.c (handle_qxfer_libraries): Call
1692 the_target->qxfer_libraries_svr4.
1693 (handle_qxfer_libraries_svr4): New function.
1694 (qxfer_packets): New entry "libraries-svr4".
1695 (handle_query): Check QXFER_LIBRARIES_SVR4 and report libraries-svr4.
1696 * target.h (struct target_ops): New member qxfer_libraries_svr4.
1697 * remote.c (remote_xfer_partial): Call add_packet_config_cmd for
1698 PACKET_qXfer_libraries_svr4.
1699
d6db1fab
UW
17002011-11-30 Ulrich Weigand <uweigand@de.ibm.com>
1701
1702 * linux-s390-low.c (s390_collect_ptrace_register): Fully convert
1703 PSW address/mask between 8-byte and 16-byte formats.
1704 (s390_supply_ptrace_register): Likewise.
1705 (s390_get_pc, s390_set_pc): 4-byte PSW address always includes
1706 basic addressing mode bit.
1707
242f5f1c
SS
17082011-11-24 Stan Shebs <stan@codesourcery.com>
1709
1710 * tracepoint.c (cmd_qtstatus): Use plongest instead of %llx.
1711
f196051f
SS
17122011-11-17 Stan Shebs <stan@codesourcery.com>
1713
1714 * tracepoint.c (struct tracepoint): New field traceframe_usage.
1715 (tracing_start_time): New global.
1716 (tracing_stop_time): New global.
1717 (tracing_user_name): New global.
1718 (tracing_notes): New global.
1719 (tracing_stop_note): New global.
1720 (cmd_qtstart): Set traceframe_usage, start_time.
1721 (stop_tracing): Set stop_time.
1722 (cmd_qtstatus): Report additional status.
1723 (cmd_qtp): New function.
1724 (handle_tracepoint_query): Call it.
1725 (cmd_qtnotes): New function.
1726 (handle_tracepoint_general_set): Call it.
1727 (get_timestamp): Rename from tsv_get_timestamp.
1728
405f8e94
SS
17292011-11-14 Stan Shebs <stan@codesourcery.com>
1730 Kwok Cheung Yeung <kcy@codesourcery.com>
1731
1732 * linux-x86-low.c (small_jump_insn): New.
1733 (i386_install_fast_tracepoint_jump_pad): Add arguments for
1734 trampoline and error message, build a trampoline and issue a small
1735 jump instruction to it.
1736 (x86_install_fast_tracepoint_jump_pad): Add arguments for
1737 trampoline and error message.
1738 (x86_get_min_fast_tracepoint_insn_len): New.
1739 (the_low_target): Add call to x86_get_min_fast_tracepoint_insn_len.
1740 * linux-low.h (struct linux_target_ops): Add arguments to
1741 install_fast_tracepoint_jump_pad operation, add new operation.
1742 * linux-low.c (linux_install_fast_tracepoint_jump_pad): Add
1743 arguments.
1744 (linux_get_min_fast_tracepoint_insn_len): New function.
1745 (linux_target_op): Add new operation.
1746 * tracepoint.c (gdb_trampoline_buffer): New IPA variable.
1747 (gdb_trampoline_buffer_end): Ditto.
1748 (gdb_trampoline_buffer_error): Ditto.
1749 (struct ipa_sym_addresses): Add fields for new IPA variables.
1750 (symbol_list): Add entries for new IPA variables.
1751 (struct tracepoint): Add fields to hold the address range of the
1752 trampoline used by the tracepoint.
1753 (trampoline_buffer_head): New static variable.
1754 (trampoline_buffer_tail): Ditto.
1755 (claim_trampoline_space): New function.
1756 (have_fast_tracepoint_trampoline_buffer): New function.
1757 (clone_fast_tracepoint): Fill in trampoline fields of tracepoint
1758 structure.
1759 (install_fast_tracepoint): Ditto, also add error buffer argument.
1760 (cmd_qtminftpilen): New function.
1761 (handle_tracepoint_query): Add response to qTMinFTPILen packet.
1762 (fast_tracepoint_from_trampoline_address): New function.
1763 (fast_tracepoint_collecting): Handle trampoline as part of jump
1764 pad space.
1765 (set_trampoline_buffer_space): New function.
1766 (initialize_tracepoint): Initialize new IPA variables.
1767 * target.h (struct target_ops): Add arguments to
1768 install_fast_tracepoint_jump_pad operation, add new
1769 get_min_fast_tracepoint_insn_len operation.
1770 (target_get_min_fast_tracepoint_insn_len): New.
1771 (install_fast_tracepoint_jump_pad): Add arguments.
1772 * server.h (IPA_BUFSIZ): Define.
1773 * linux-i386-ipa.c: Include extra header files.
1774 (initialize_fast_tracepoint_trampoline_buffer): New function.
1775 (initialize_low_tracepoint): Call it.
1776 * server.h (set_trampoline_buffer_space): Declare.
1777 (claim_trampoline_space): Ditto.
1778 (have_fast_tracepoint_trampoline_buffer): Ditto.
1779
1e4d1764
YQ
17802011-11-14 Yao Qi <yao@codesourcery.com>
1781
1782 * server.c (handle_query): Handle InstallInTrace for qSupported.
1783 * tracepoint.c (add_tracepoint): Sort list.
1784 (install_tracepoint, download_tracepoint): New.
1785 (cmd_qtdp): Call them to install and download tracepoints.
1786 (sort_tracepoints): Removed.
1787 (cmd_qtstart): Update.
1788
5c73ff4e
YQ
17892011-11-14 Yao Qi <yao@codesourcery.com>
1790
1791 * mem-break.c (inc_ref_fast_tracepoint_jump): New.
1792 * mem-break.h: Declare.
1793 * tracepoint.c (cmd_qtstart): Move some code to ...
1794 (clone_fast_tracepoint, install_fast_tracepoint): ... here.
1795 New.
1796 (download_tracepoints): Move some code to ...
1797 (download_tracepoint_1): ... here. New.
1798
86a30030
YQ
17992011-11-08 Yao Qi <yao@codesourcery.com>
1800
1801 * remote-utils.c (relocate_instruction): A comment fix.
1802
8d26e50c
JB
18032011-11-07 Joel Brobecker <brobecker@adacore.com>
1804
1805 * win32-i386-low.c (dr_status_mirror, dr_control_mirror): Delete.
1806 (i386_dr_low_get_control, i386_dr_low_get_status): Use
1807 dr_status_mirror and dr_control_mirror from debug_reg_state.
1808 (i386_dr_low_get_status): Use debug_reg_state.dr_status_mirror
1809 (i386_initial_stuff): Remove use of deleted globals.
1810 (i386_get_thread_context, i386_set_thread_context,
1811 i386_thread_added): Use dr_status_mirror and dr_control_mirror
1812 from debug_reg_state.
1813
a59306a3
YQ
18142011-11-05 Yao Qi <yao@codesourcery.com>
1815
1816 * tracepoint.c (gdb_collect): Loop over tracepoints of same
1817 address as TPOINT's.
1818
3065dfb6
SS
18192011-11-02 Stan Shebs <stan@codesourcery.com>
1820
1821 * tracepoint.c (agent_mem_read_string): New function.
1822 (eval_agent_expr): Call it for tracenz.
1823 * server.c (handle_query): Report support for tracenz.
1824
fd0d8c7c
YQ
18252011-11-02 Yao Qi <yao@codesourcery.com>
1826
1827 * tracepoint.c (cmd_qtstart): Remove unused local variables.
1828
609086b1
YQ
18292011-11-02 Yao Qi <yao@codesourcery.com>
1830
1831 * target.h: Fix a typo in comment.
1832
b9fd1791
PA
18332011-10-31 Pedro Alves <pedro@codesourcery.com>
1834
1835 * mem-break.c (check_mem_write): Add `myaddr' parameter. Don't
1836 clobber the breakpoints' shadows with fast tracepoint jumps.
1837 * mem-break.h (check_mem_write): Add `myaddr' parameter.
1838 * target.c (write_inferior_memory): Also pass MYADDR down to
1839 check_mem_write.
1840
03583c20
UW
18412011-10-07 Ulrich Weigand <ulrich.weigand@linaro.org>
1842
1843 * configure.ac: Check support for personality routine.
1844 * configure: Regenerate.
1845 * config.in: Likewise.
1846 * linux-low.c: Include <sys/personality.h>.
1847 Define ADDR_NO_RANDOMIZE if necessary.
1848 (linux_create_inferior): Disable address space randomization when
1849 forking inferior, if requested.
1850 (linux_supports_disable_randomization): New function.
1851 (linux_target_ops): Install it.
1852 * server.h (disable_randomization): Declare.
1853 * server.c (disable_randomization): New global variable.
1854 (handle_general_set): Handle QDisableRandomization.
1855 (handle_query): Likewise for qSupported.
1856 (main): Support --disable-randomization and --no-disable-randomization
1857 command line arguments.
1858 * target.h (struct target_ops): Add supports_disable_randomization.
1859 (target_supports_disable_randomization): New macro.
1860
723b724b
MF
18612011-09-29 Mike Frysinger <vapier@gentoo.org>
1862
1863 * linux-low.c (target_loadseg): Add defined PTRACE_GETFDPIC to the
1864 ifdef check.
1865 [PT_GETDSBT] (target_loadmap): Wrap in a defined PT_GETDSBT check.
1866 [!PT_GETDSBT] (target_loadmap): New definition.
1867 (LINUX_LOADMAP, LINUX_LOADMAP_EXEC, LINUX_LOADMAP_INTERP): Define.
1868 (linux_read_loadmap): Change PTRACE_GETDSBT_EXEC to
1869 LINUX_LOADMAP_EXEC, PTRACE_GETDSBT_INTERP to LINUX_LOADMAP_INTERP,
1870 and PT_GETDSBT to LINUX_LOADMAP.
1871 [!PT_GETDSBT] (linux_read_loadmap): Define to NULL.
1872 (linux_target_ops): Delete unnecessary ifdef PT_GETDSBT check.
1873
55329a5c 18742011-09-21 Ulrich Weigand <ulrich.weigand@linaro.org>
71487fd7
UW
1875
1876 * linux-arm-low.c (struct arm_linux_hwbp_cap): Remove.
1877 (arm_linux_hwbp_cap): New static variable.
1878 (arm_linux_get_hwbp_cap): Replace by ...
1879 (arm_linux_init_hwbp_cap): ... this new function.
1880 (arm_linux_get_hw_breakpoint_count): Use arm_linux_hwbp_cap.
1881 (arm_linux_get_hw_watchpoint_count): Likewise.
1882 (arm_linux_get_hw_watchpoint_max_length): Likewise.
1883 (arm_arch_setup): Call arm_linux_init_hwbp_cap.
1884 (arm_prepare_to_resume): Use perror_with_name instead of error.
1885
55329a5c 18862011-09-21 Ulrich Weigand <ulrich.weigand@linaro.org>
09b4ad9f
UW
1887
1888 * linux-arm-low.c: Include <signal.h>.
1889 (PTRACE_GETHBPREGS, PTRACE_SETHBPREGS): Define if necessary.
1890 (struct arm_linux_hwbp_cap): New data type.
1891 (arm_hwbp_type, arm_hwbp_control_t): New typedefs.
1892 (struct arm_linux_hw_breakpoint): New data type.
1893 (MAX_BPTS, MAX_WPTS): Define.
1894 (struct arch_process_info, struct arch_lwp_info): New data types.
1895 (arm_linux_get_hwbp_cap): New function.
1896 (arm_linux_get_hw_breakpoint_count): Likewise.
1897 (arm_linux_get_hw_watchpoint_count): Likewise.
1898 (arm_linux_get_hw_watchpoint_max_length): Likewise.
1899 (arm_hwbp_control_initialize): Likewise.
1900 (arm_hwbp_control_is_enabled): Likewise.
1901 (arm_hwbp_control_is_initialized): Likewise.
1902 (arm_hwbp_control_disable): Likewise.
1903 (arm_linux_hw_breakpoint_equal): Likewise.
1904 (arm_linux_hw_point_initialize): Likewise.
1905 (struct update_registers_data): New data structure.
1906 (update_registers_callback: New function.
1907 (arm_insert_point): Likewise.
1908 (arm_remove_point): Likewise.
1909 (arm_stopped_by_watchpoint): Likewise.
1910 (arm_stopped_data_address): Likewise.
1911 (arm_new_process): Likewise.
1912 (arm_new_thread): Likewise.
1913 (arm_prepare_to_resume): Likewise.
1914 (the_low_target): Register arm_insert_point, arm_remove_point,
1915 arm_stopped_by_watchpoint, arm_stopped_data_address, arm_new_process,
1916 arm_new_thread, and arm_prepare_to_resume.
1917
6b9801d4
SS
19182011-09-15 Stan Shebs <stan@codesourcery.com>
1919
1920 * server.h (struct emit_ops): Add compare-goto fields.
1921 * tracepoint.c (gdb_agent_op_sizes): New table.
1922 (emit_eq_goto): New function.
1923 (emit_ne_goto): New function.
1924 (emit_lt_goto): New function.
1925 (emit_le_goto): New function.
1926 (emit_gt_goto): New function.
1927 (emit_ge_goto): New function.
1928 (is_goto_target): New function.
1929 (compile_bytecodes): Recognize special cases of compare-goto
1930 combinations and call specialized emitters for them.
1931 * linux-x86-low.c (amd64_emit_eq_goto): New function.
1932 (amd64_emit_ne_goto): New function.
1933 (amd64_emit_lt_goto): New function.
1934 (amd64_emit_le_goto): New function.
1935 (amd64_emit_gt_goto): New function.
1936 (amd64_emit_ge_goto): New function.
1937 (amd64_emit_ops): Add the new functions.
1938 (i386_emit_eq_goto): New function.
1939 (i386_emit_ne_goto): New function.
1940 (i386_emit_lt_goto): New function.
1941 (i386_emit_le_goto): New function.
1942 (i386_emit_gt_goto): New function.
1943 (i386_emit_ge_goto): New function.
1944 (i386_emit_ops): Add the new functions.
1945
bf15cbda
SS
19462011-09-08 Stan Shebs <stan@codesourcery.com>
1947
1948 * linux-x86-low.c (i386_emit_prologue): Save %ebx.
1949 (i386_emit_epilogue): Restore %ebx.
1950
943ca1dd
JZ
19512011-08-31 Jie Zhang <jzhang918@gmail.com>
1952
1953 * server.c (step_thread): Remove definition.
1954 (process_serial_event): Don't handle Hs.
1955 * server.h (step_thread): Remove declaration.
1956 * target.c (set_desired_inferior): Remove use of step_thread.
1957
e3deef73
LM
19582011-08-24 Luis Machado <lgustavo@codesourcery.com>
1959
1960 * linux-low.c: Include linux-procfs.h.
1961 (linux_attach_lwp_1): Update comments.
1962 (linux_attach): Scan for existing threads when attaching to a
1963 process that is the tgid.
1964 * Makefile.in: Update dependencies.
1965
13da1c97
LM
19662011-08-24 Luis Machado <lgustavo@codesourcery.com>
1967
1968 * configure.srv: Add linux-procfs.o dependencies.
1969
881127c9
YQ
19702011-08-14 Yao Qi <yao@codesourcery.com>
1971
1972 * target.h (struct target_ops): Fix indent.
1973 * win32-low.c (win32_target_ops): Fix comment.
1974
58dbd541
YQ
19752011-08-14 Andrew Jenner <andrew@codesourcery.com>
1976 Yao Qi <yao@codesourcery.com>
1977
1978 * Makefile.in (clean): Remove tic6x-*.c files.
1979 (linux-tic6x-low.o, tic6x-c62x-linux.o, tic6x-c64x-linux.o): New rules.
1980 (tic6x-c64xp-linux.o, tic6x-c62x-linux.c, tic6x-c64x-linux.c): Likewise.
1981 (tic6x-c64xp-linux.c): Likewise.
1982 * configure.srv: Add support for tic6x-*-uclinux.
1983 * linux-tic6x-low.c: New.
1984 * linux-low.c (PT_TEXT_ADDR, PT_DATA_ADDR, PT_TEXT_END_ADDR): Define.
1985
78d85199
YQ
19862011-08-14 Andrew Stubbs <ams@codesourcery.com>
1987 Yao Qi <yao@codesourcery.com>
1988
1989 * target.h (struct target_ops): Add read_loadmap.
1990 * linux-low.c (struct target_loadseg): New type.
1991 (struct target_loadmap): New type.
1992 (linux_read_loadmap): New function.
1993 (linux_target_ops): Add linux_read_loadmap.
1994 * server.c (handle_query): Support qXfer:fdpic:read packet.
43aaf8b6
PA
1995 * win32-low.c (win32_target_ops): Initialize field `read_loadmap'
1996 to NULL.
78d85199 1997
a959a88d
EZ
19982011-08-05 Eli Zaretskii <eliz@gnu.org>
1999
2000 * win32-low.c: Include <stdint.h>.
2001
1ced966e
PA
20022011-07-22 Pedro Alves <pedro@codesourcery.com>
2003
2004 * i386-low.c (i386_insert_aligned_watchpoint): Don't pass the info
2005 to the inferior here.
2006 (i386_remove_aligned_watchpoint): Ditto.
2007 (i386_handle_nonaligned_watchpoint): Return immediate on fail to
2008 fit part of the watchpoint in the debug registers.
2009 (i386_update_inferior_debug_regs): New.
2010 (i386_low_insert_watchpoint): Work on a local mirror of the debug
2011 registers, and only update the inferior on success.
2012 (i386_low_remove_watchpoint): Ditto.
2013
d26e3629
KY
20142011-07-22 Kwok Cheung Yeung <kcy@codesourcery.com>
2015
2016 * linux-low.c (compare_ints, unique, list_threads, show_process,
2017 linux_core_of_thread): Delete.
2018 (linux_target_ops): Change linux_core_of_thread to
2019 linux_common_core_of_thread.
2020 (linux_qxfer_osdata): Defer to linux_common_xfer_osdata.
2021 * utils.c (malloc_failure): Change type of argument.
2022 (xmalloc, xrealloc, xcalloc, xsnprintf): Delete.
2023 * Makefile.in (SFILES): Add common/common-utils.c, common/xml-utils.c,
2024 common/linux-osdata.c, common/ptid.c and common/buffer.c.
2025 (OBS): Add xml-utils.o, common-utils.o, ptid.o and buffer.o.
2026 (IPA_OBJS): Add common-utils-ipa.o.
2027 (ptid_h, linux_osdata_h): New macros.
2028 (server_h): Add common/common-utils.h, common/xml-utils.h,
2029 common/buffer.h, common/gdb_assert.h, common/gdb_locale.h and
2030 common/ptid.h.
2031 (common-utils-ipa.o, common-utils.o, xml-utils.o, linux-osdata.o,
2032 ptid.o, buffer.o): New rules.
2033 (linux-low.o): Add common/linux-osdata.h as a dependency.
2034 * configure.srv (srv_tgtobj): Add linux-osdata.o to Linux targets.
2035 * configure.ac: Add AC_HEADER_DIRENT check.
2036 * config.in: Regenerate.
2037 * configure: Regenerate.
2038 * remote-utils.c (xml_escape_text): Delete.
2039 (buffer_grow, buffer_free, buffer_init, buffer_finish,
2040 buffer_xml_printf): Move to common/buffer.c.
2041 * server.c (main): Remove call to initialize_inferiors.
2042 * server.h (struct ptid, ptid_t, minus_one_ptid, null_ptid,
2043 ptid_build, pid_to_ptid, ptid_get_pid, ptid_get_lwp, ptid_get_tid,
2044 ptid_equal, ptid_is_pid, initialize_inferiors, xml_escape_text,
2045 internal_error, gdb_assert, gdb_assert_fail): Delete.
2046 (struct buffer, buffer_grow, buffer_free, buffer_init, buffer_finish,
2047 buffer_xml_printf, buffer_grow_str, buffer_grow_str0): Move to
2048 common/buffer.h.
2049 * inferiors.c (null_ptid, minus_one_ptid, ptid_build, pid_to_ptid,
2050 ptid_get_pid, ptid_get_lwp, ptid_get_tid, ptid_equal, ptid_is_pid,
2051 initialize_inferiors): Delete.
2052
2275a1a7
PA
20532011-07-20 Pedro Alves <pedro@codesourcery.com>
2054
2055 * tracepoint.c (tracepoint_look_up_symbols): Return upon the first
2056 symbol error.
2057
0a5b1e09
PA
20582011-05-31 Pedro Alves <pedro@codesourcery.com>
2059
2060 * linux-x86-low.c (i386_dr_low_get_addr): Fix off by one in
2061 assertion.
2062 * win32-i386-low.c (i386_dr_low_get_addr): Ditto.
2063
6938fd34
YQ
20642011-05-26 Yao Qi <yao@codesourcery.com>
2065
2066 * Makefile.in (thread-db.o): Track dependence to
2067 common/gdb_thread_db.h.
2068 * thread-db.c: include gdb_thread_db.h from right place.
2069
b481f9e0
TT
20702011-05-16 Adrian Cornish <gnu@bluedreamer.com>
2071
2072 * linux-i386-ipa.c (supply_static_tracepoint_registers): Pass
2073 __FILE__ and __LINE__ to internal_error.
2074
98a5dd13
DE
20752011-05-13 Doug Evans <dje@google.com>
2076
2077 * thread-db.c (try_thread_db_load_from_sdir): New function.
2078 (try_thread_db_load_from_dir): New function.
2079 (thread_db_load_search): Handle $sdir, ignore $pdir.
2080 Remove trying of system directories if search of
2081 libthread-db-search-path fails, that is now done via $sdir.
2082
d248b706
KY
20832011-05-12 Kwok Cheung Yeung <kcy@codesourcery.com>
2084
2085 * server.c (handle_query): Add EnableDisableTracepoints to the list
2086 of supported features.
43aaf8b6 2087 * tracepoint.c (clear_installed_tracepoints): Uninstall disabled
d248b706 2088 tracepoints.
43aaf8b6
PA
2089 (cmd_qtenable_disable): New.
2090 (cmd_qtstart): Install tracepoints even if disabled.
2091 (handle_tracepoint_general_set): Add call to cmd_qtenable_disable on
2092 receiving a QTEnable or QTDisable packet.
2093 (gdb_collect): Skip data collection if fast tracepoint is disabled.
2094 (ust_marker_to_static_tracepoint): Do not ignore disabled static
2095 tracepoints.
2096 (gdb_probe): Skip data collection if static tracepoint is disabled.
d248b706 2097
84e578fb
DE
20982011-05-10 Doug Evans <dje@google.com>
2099
2100 * thread-db.c (thread_db_handle_monitor_command): Handle elided path.
2101
71f55dd8
DE
21022011-05-04 Doug Evans <dje@google.com>
2103
2104 * linux-low.c (linux_join): Skip process lookup.
2105 * spu-low.c (spu_join): Ditto.
2106 * server.c (join_inferiors_callback): Delete.
2107 (process_serial_event): For 'D' packet (detach) call join_inferior
2108 directly.
2109
4d393d60
JM
21102011-05-04 Joseph Myers <joseph@codesourcery.com>
2111
2112 * README: Don't mention xscale*-*-linux*.
2113 * configure.srv (xscale*-*-linux*): Don't handle target.
2114
b00ad6ff
NF
21152011-04-27 Nathan Froyd <froydnj@codesourcery.com>
2116
2117 * linux-x86-low.c (amd64_emit_const): Call memcpy instead of
2118 casting pointers.
2119 (amd64_emit_reg, amd64_emit_int_call_1, amd64_emit_void_call_2):
2120 (i386_emit_const, i386_emit_reg, i386_emit_int_call_1):
2121 (i386_emit_void_call_2): Likewise.
2122
af96c192
YQ
21232011-04-26 Yao Qi <yao@codesourcery.com>
2124
43aaf8b6
PA
2125 * linux-low.c: Move common macros to linux-ptrace.h.
2126 Include linux-ptrace.h.
af96c192
YQ
2127 * Makefile.in (linux_ptrace_h): New.
2128 (linux-low.o): Depends on linux-ptrace.h.
2129
03f2bd59
JK
21302011-04-24 Jan Kratochvil <jan.kratochvil@redhat.com>
2131
2132 * remote-utils.c (handle_accept_event): Close LISTEN_DESC only if
2133 RUN_ONCE. Comment for the LISTEN_DESC delete_file_handler call.
2134 (remote_prepare): New function with most of the TCP code from ...
2135 (remote_open): ... here. Detect PORT here unconditionally. Move also
2136 setting transport_is_reliable.
2137 * server.c (run_once): New variable.
2138 (gdbserver_usage): Document it.
2139 (main): Set run_once for `--once'. Call remote_prepare. Exit after
2140 the first run if RUN_ONCE.
2141 * server.h (run_once, remote_prepare): New declarations.
2142
7a9dd1b2
TT
21432011-04-19 Tom Tromey <tromey@redhat.com>
2144
2145 * win32-low.c (handle_load_dll): Remove duplicate "the".
2146
81239425
PM
21472011-04-07 Pierre Muller <muller@ics.u-strasbg.fr>
2148
2149 Remove support for old Cygwin 1.5 versions.
2150 * win32-low.c (win32_create_inferior): Use new cygwin_path_list
2151 function to avoid warning.
2152 (win32_add_one_solib): Use cygwin_conv_path function to avoid
2153 warning.
2154
9e0627f1
PM
21552011-03-18 Pierre Muller <muller@ics.u-strasbg.fr>
2156
2157 * gdbserver/server.h (Macro _): Define it if not available.
2158
588eebee
MS
21592011-03-14 Michael Snyder <msnyder@vmware.com>
2160
348af9f7 2161 * hostio.c (handle_close): Remove unnecessary null test.
588eebee 2162
43f70d4c
JB
21632011-03-10 Joel Brobecker <brobecker@adacore.com>
2164
2165 * Makefile.in (maintainer-clean realclean distclean): Remove
2166 "make ... subdir_do" command.
2167
348af9f7
MS
21682011-03-10 Michael Snyder <msnyder@vmware.com>
2169
2170 * tracepoint.c (tracepoint_finish_step): Fix loop variable.
2171
2172 * server.c (handle_v_run): Free alloced buffer on early return.
2173
e637a4f5
YQ
21742011-03-09 Yao Qi <yao@codesourcery.com>
2175
2176 Revert:
2177 2011-03-04 Yao Qi <yao@codesourcery.com>
2178
2179 * Makefile.in: Remove GNU make feature --directory.
2180
2181 2011-03-05 Yao Qi <yao@codesourcery.com>
2182
2183 * Makefile.in (CLEANDIRS, REQUIRED_SUBDIRS): New variable.
2184 (subdir_do): New make target. Copied from gdb/Makefile.
2185 (maintainer-clean, realclean, distclean, clean): Call corresponding
2186 make targets in common/Makefile.
2187
2188 2011-02-11 Yao Qi <yao@codesourcery.com>
2189
2190 * configure.ac: Call AC_PROG_RANLIB.
2191 * Makefile.in: Remove signals.o from OBS. Link libcommon.a.
2192 * configure: Regenerate.
2193
e6edda56
JK
21942011-03-07 Jan Kratochvil <jan.kratochvil@redhat.com>
2195
2196 * remote-utils.c (putpkt_binary_1): Calculate BUF2 size dynamically.
2197
e5141119
JB
21982011-03-06 Yao Qi <yao@codesourcery.com>
2199
2200 * Makefile.in (REQUIRED_SUBDIRS): Remove $(LIBCOMMON_DIR).
2201
64794aa4
JB
22022011-03-05 Yao Qi <yao@codesourcery.com>
2203
2204 * Makefile.in (CLEANDIRS, REQUIRED_SUBDIRS): New variable.
2205 (subdir_do): New make target. Copied from gdb/Makefile.
2206 (maintainer-clean, realclean, distclean, clean): Call corresponding
2207 make targets in common/Makefile.
2208
7a762829
YQ
22092011-03-04 Yao Qi <yao@codesourcery.com>
2210
2211 * Makefile.in: Remove GNU make feature --directory.
2212
348af9f7
MS
22132011-03-04 Michael Snyder <msnyder@vmware.com>
2214
2215 * server.c (queue_stop_reply): Call xmalloc not malloc.
2216
22172011-03-02 Michael Snyder <msnyder@vmware.com>
2218
2219 * linux-arm-low.c (arm_arch_setup): Replace malloc with xmalloc.
2220
9f72fee2
MS
22212011-02-28 Michael Snyder <msnyder@vmware.com>
2222
588eebee
MS
2223 * tracepoint.c (cmd_qtv): Discard unused value 'packet'.
2224 (cmd_qtframe): Ditto.
2225 (cmd_qtbuffer): Ditto.
2226 (cmd_bigqtbuffer): Ditto.
2227
9f72fee2
MS
2228 * utils.c (decimal2str): Initialize 'width' to nine, then
2229 don't mess with it.
2230
8040bd49
UW
22312011-02-28 Ulrich Weigand <uweigand@de.ibm.com>
2232
2233 * hostio.c (require_data): Free *data, not data.
2234
7e52cbd0
JK
22352011-02-28 Jan Kratochvil <jan.kratochvil@redhat.com>
2236
2237 * hostio.c (require_data): Use free, not xfree.
2238
9130f83e
MS
22392011-02-27 Michael Snyder <msnyder@vmware.com>
2240
4b812f4e
MS
2241 * server.c (handle_query): Discard unused value.
2242
9130f83e
MS
2243 * hostio.c (require_data): Free malloc memory before returning
2244 error.
2245
69d37113
MS
22462011-02-26 Michael Snyder <msnyder@vmware.com>
2247
2248 * linux-low.c (list_threads): Call closedir for dirent.
2249
35f5825a
MS
22502011-02-27 Michael Snyder <msnyder@vmware.com>
2251
2a589cef
MS
2252 * i386-low.c (i386-length_and_rw_bits): Comment the fact that
2253 a case statement falls through.
2254
0adea5f7
MS
2255 * linux-low.c (linux_xfer_siginfo): Fix fencepost error.
2256
35f5825a
MS
2257 * linux-amd64-ipa.c (gdb_agent_get_raw_reg): Fix fencepost error
2258 in comparison.
2259
238f1c74
MS
22602011-02-26 Michael Snyder <msnyder@vmware.com>
2261
2262 * utils.c (decimal2str): Eliminate dead code and dead param.
2263 (pulongest): Drop dead param from call to decimal2str.
2264 (plongest): Ditto.
2265
633ff500
JB
22662011-02-24 Joel Brobecker <brobecker@adacore.com>
2267
2268 Revert the following patch (not approved yet):
2269 2011-02-21 Hui Zhu <teawater@gmail.com>
2270 * tracepoint.c (tp_printf): New function.
2271 (eval_agent_expr): Handle gdb_agent_op_printf.
2272
f9c6ff72
HZ
22732011-02-21 Hui Zhu <teawater@gmail.com>
2274
2275 * tracepoint.c (tp_printf): New function.
2276 (eval_agent_expr): Handle gdb_agent_op_printf.
2277
94d5e490
TT
22782011-02-18 Tom Tromey <tromey@redhat.com>
2279
2280 * Makefile.in (tracepoint-ipa.o): Depend on ax.def.
2281 (tracepoint.o): Likewise.
2282 * tracepoint.c (enum gdb_agent_op): Use ax.def.
2283 (gdb_agent_op_names): Likewise.
2284
c7f96d2b
TT
22852011-02-18 Tom Tromey <tromey@redhat.com>
2286
2287 * tracepoint.c (enum gdb_agent_op) <gdb_agent_op_pick,
2288 gdb_agent_op_rot>: New constants.
2289 (gdb_agent_op_names): Add pick and roll.
2290 (eval_agent_expr) <gdb_agent_op_pick, gdb_agent_op_rot>: New
2291 cases.
2292
0feedb2c
JK
22932011-02-15 Jan Kratochvil <jan.kratochvil@redhat.com>
2294
2295 * aclocal.m4: Regenerated with aclocal-1.11.1.
2296
b3b9301e
PA
22972011-02-14 Pedro Alves <pedro@codesourcery.com>
2298
2299 * server.c (handle_qxfer_traceframe_info): New.
2300 (qxfer_packets): Register "traceframe-info".
2301 (handle_query): Report support for qXfer:traceframe-info:read+.
2302 * tracepoint.c (match_blocktype): New.
2303 (traceframe_find_block_type): Rename to ...
2304 (traceframe_walk_blocks): ... this. Add callback filter argument,
2305 and use it.
2306 (traceframe_find_block_type): New, reimplemented on top of
2307 traceframe_walk_blocks.
2308 (build_traceframe_info_xml): New.
2309 (traceframe_read_info): New.
2310 * server.h (traceframe_read_info): Declare.
2311
4f3e6fb7
YQ
23122011-02-11 Yao Qi <yao@codesourcery.com>
2313
2314 * configure.ac: Call AC_PROG_RANLIB.
2315 * Makefile.in: Remove signals.o from OBS. Link libcommon.a.
2316 * configure: Regenerate.
2317
764880b7
PA
23182011-02-07 Pedro Alves <pedro@codesourcery.com>
2319
2320 * server.c (gdb_read_memory): Change return semantics to allow
2321 partial transfers.
2322 (handle_search_memory_1): Adjust.
2323 (process_serial_event) <'m' packet>: Handle partial transfers.
2324 * tracepoint.c (traceframe_read_mem): Handle partial transfers.
2325
1c79eb8a
PA
23262011-01-28 Pedro Alves <pedro@codesourcery.com>
2327
2328 * regcache.c (init_register_cache): Initialize
2329 regcache->register_status.
2330 (free_register_cache): Release regcache->register_status.
2331 (regcache_cpy): Copy register_status.
2332 (registers_to_string): Print 'x's for unavailable registers.
2333 (supply_register): Mark the register's status valid or
2334 unavailable, depending on whether a buffer was passed in or not.
2335 (supply_register_zeroed): New.
2336 (supply_regblock): Mark the registers' status valid or
2337 unavailable, depending on whether a buffer was passed in or not.
2338 * regcache.h (REG_UNAVAILABLE, REG_VALID): New defines.
2339 (struct regcache): New `register_status' field.
2340 (supply_register_zeroed): Declare.
2341 * i387-fp.c (i387_xsave_to_cache): Zero out registers using
2342 supply_register_zeroed, rather than passing a NULL buffer to
2343 supply_register.
2344 * tracepoint.c (fetch_traceframe_registers): Update comment.
2345
85724a0e
PA
23462011-01-28 Pedro Alves <pedro@codesourcery.com>
2347
2348 * i387-fp.c (i387_xsave_to_cache): Make passing NULL as register
2349 buffer explicit.
2350
d08aafef
PA
23512011-01-25 Pedro Alves <pedro@codesourcery.com>
2352
2353 * server.h (decode_xfer_write): Change prototype.
2354 * remote-utils.c (decode_xfer_write): Remove `annex' parameter,
2355 and don't extract the annex here.
2356 * server.c (decode_xfer_read): Remove `annex' parameter,
2357 and don't extract the annex here.
2358 (decode_xfer): New.
2359 (struct qxfer): New.
2360 (handle_qxfer_auxv, handle_qxfer_features, handle_qxfer_libraries)
2361 (handle_qxfer_osdata, handle_qxfer_siginfo, handle_qxfer_spu)
2362 (handle_qxfer_statictrace): New functions, abstracted out from
2363 handle_query, and made to use the struct qxfer interface.
2364 (handle_threads_qxfer_proper): Rename to ...
2365 (handle_qxfer_threads_proper): ... this.
2366 (handle_threads_qxfer): Rename to ...
2367 (handle_qxfer_threads): ... this. Adjust.
2368 (qxfer_packets): New array.
2369 (handle_qxfer): New function.
2370 (handle_query): Use handle_qxfer.
2371
493e2a69
MS
23722011-01-05 Michael Snyder <msnyder@msnyder-server.eng.vmware.com>
2373
2374 * gdbreplay.c: Shorten lines of >= 80 columns.
2375 * linux-low.c: Ditto.
2376 * linux-ppc-low.c: Ditto.
2377 * linux-s390-low.c: Ditto.
2378 * linux-sparc-low.c: Ditto.
2379 * linux-x86-low.c: Ditto.
2380 * linux-xtensa-low.c: Ditto.
2381 * mem-break.c: Ditto.
2382 * nto-low.c: Ditto.
2383 * regcache.h: Ditto.
2384 * remote-utils.c: Ditto.
2385 * server.c: Ditto.
2386 * server.h: Ditto.
2387 * thread-db.c: Ditto.
2388 * tracepoint.c: Ditto.
2389 * utils.c: Ditto.
2390 * win32-low.h: Ditto.
2391
44944448
JB
23922011-01-05 Joel Brobecker <brobecker@adacore.com>
2393
2394 * gdbserver/configure.ac, gdbserver/gdbserver.1: Copyright year
2395 update.
2396
71ce852c
JB
23972011-01-01 Joel Brobecker <brobecker@adacore.com>
2398
2399 * server.c (gdbserver_version): Update copyright year in version
2400 output.
2401 * gdbreplay.c (gdbreplay_version): Ditto.
2402
eb826dc6
MF
24032010-12-29 Jie Zhang <jie.zhang@analog.com>
2404
2405 * configure.srv (bfin-*-*linux*): Handle Blackfin/Linux targets.
2406 * linux-bfin-low.c: New file.
2407 * linux-low.c: Define PT_TEXT_ADDR, PT_TEXT_END_ADDR, and
2408 PT_DATA_ADDR for BFIN targets.
2409 * Makefile.in (SFILES): Add linux-bfin-low.c.
2410 (clean): Remove reg-bfin.c.
2411 (linux-bfin-low.o, reg-bfin.o, reg-bfin.c): New targets.
2412 * README: Mention supported Blackfin targets.
2413
39ab222a
MF
24142010-12-23 Mike Frysinger <vapier@gentoo.org>
2415
2416 * .gitignore: New file.
2417
a1f2ce7d
MF
24182010-11-16 Mike Frysinger <vapier@gentoo.org>
2419
2420 * linux-low.c (linux_tracefork_child): Add char* cast to arg.
2421
f474844c
JZ
24222010-10-22 Jie Zhang <jie@codesourcery.com>
2423
2424 * Makefile.in: Add FLAGS_TO_PASS variable.
2425 (install): Remove dependency of install-only and recursively
2426 invoke make for install-only.
2427
f1048712
DE
24282010-10-04 Doug Evans <dje@google.com>
2429
2430 * Makefile.in (uninstall): Use $(DESTDIR).
2431
b53a1623
PA
24322010-09-24 Pedro Alves <pedro@codesourcery.com>
2433
e6ee044d
PA
2434 PR gdb/11842
2435
b53a1623
PA
2436 * linux-x86-low.c (compat_siginfo_from_siginfo)
2437 (siginfo_from_compat_siginfo): Also copy si_pid and si_uid when
2438 si_code is < 0. Check for si_code == SI_TIMER before checking for
2439 si_code < 0.
2440
fa1bd1e4
JB
24412010-09-13 Joel Brobecker <brobecker@adacore.com>
2442
2443 * lynx-i386-low.c: New file.
2444 * configure.srv: Add handling of i[34567]86-*-lynxos* targets.
2445
47fac8f8
JB
24462010-09-13 Joel Brobecker <brobecker@adacore.com>
2447
2448 * lynx-low.c (ptrace_request_to_str): Remove handling for
2449 request values that have been removed in LynxOS 5.x.
2450
1adfc54d
JB
24512010-09-13 Joel Brobecker <brobecker@adacore.com>
2452
2453 * lynx-low.c, lynx-ppc-loc.c: Include <sys/ptrace.h> instead of
2454 <ptrace.h>
2455
c2a66c29
NS
24562010-09-09 Nathan Sidwell <nathan@codesourcery.com>
2457
2458 * configure.ac: Add --enable-inprocess-agent option.
2459 * configure: Rebuilt.
2460
32fcada3
YQ
24612010-09-06 Yao Qi <yao@codesourcery.com>
2462
2463 * linux-low.c (linux_kill): Remove unused variable.
2464 (linux_stabilize_threads): Likewise.
2465 * server.c (start_inferior): Likewise.
2466 (queue_stop_reply_callback): Likewise.
2467 * tracepoint.c (do_action_at_tracepoint): Likewise.
2468
0cccb683
YQ
24692010-09-06 Yao Qi <yao@codesourcery.com>
2470
2471 * linux-low.c (maybe_move_out_of_jump_pad): Restore current_inferior
2472 on return.
2473
423ec54c
JK
24742010-09-06 Jan Kratochvil <jan.kratochvil@redhat.com>
2475
2476 * target.c (mywait) <TARGET_WAITKIND_EXITED>: Fix to use INTEGER.
2477
12ac6819
PA
24782010-09-06 Pedro Alves <pedro@codesourcery.com>
2479
2480 * Makefile.in (install-only): Replace $IPA_DEPFILES with
2481 "$(IPA_DEPFILES)".
2482
8ed54b31
JB
24832010-09-01 Joel Brobecker <brobecker@adacore.com>
2484
2485 * gdbserver/lynx-low.c, gdbserver/lynx-low.h,
2486 gdbserver/lynx-ppc-low.c: New files.
2487 * Makefile.in (lynx_low_h): New variable.
2488 (lynx-low.o, lynx-ppc-low.o): New rules.
2489 * configure.ac: On LynxOS, link with -lnetinet.
2490 * configure.srv: Add handling of powerpc-*-lynxos* targets.
2491 * configure: regenerate.
2492
bb0116a4
JB
24932010-09-01 Joel Brobecker <brobecker@adacore.com>
2494
2495 * Makefile.in (vasprintf.o, vsnprintf.o): New rules.
2496 * configure.ac: Add check for vasprintf and vsnprintf.
2497 * configure, config.in: Regenerate.
2498 * server.h (vasprintf, vsnprintf): Add conditional declarations.
2499
a778ab81 25002010-09-01 Joel Brobecker <brobecker@adacore.com>
2501
2502 * gdbreplay.c: Move include of alloca.h up, next to include of
2503 malloc.h.
2504 * server.h: Add include of malloc.h.
2505 * mem-break.c: Remove include of malloc.h.
2506 * server.c, tracepoint.c, utils.c, win32-low.c: Likewise.
2507
8b034a19 25082010-09-01 Joel Brobecker <brobecker@adacore.com>
2509
2510 * Makefile.in (memmem.o): Build with -Wno-error.
2511
25122010-09-01 Joel Brobecker <brobecker@adacore.com>
2513
2514 * utils.c (xsnprintf): Make non-static.
2515 * server.h: Add xsnprintf declaration.
2516 * linux-low.c, nto-low.c, target.c, thread-db.c, tracepoint.c:
2517 replace calls to snprintf by calls to xsnprintf throughout.
2518
25192010-09-01 Joel Brobecker <brobecker@adacore.com>
2520
2521 * configure.ac: Add configure check for alloca.
2522 * configure, config.in: Regenerate.
2523 * server.h: Include alloca.h if it exists.
2524 * gdbreplay.c: Include alloca.h if it exists.
2525
1a981360
PA
25262010-08-28 Pedro Alves <pedro@codesourcery.com>
2527
2528 * linux-low.c (__SIGRTMIN): Define if not already defined.
2529 (linux_create_inferior): Check for __ANDROID__ rather than
2530 __SIGRTMIN.
2531 (enqueue_one_deferred_signal): Don't requeue non-RT signals that
2532 are already deferred.
2533 (linux_wait_1): Check for __ANDROID__ rather than __SIGRTMIN.
2534 (linux_resume_one_thread): Don't queue a SIGSTOP if the lwp is
2535 stopped and already has a pending signal to report.
2536 (proceed_one_lwp): : Don't queue a SIGSTOP if the lwp already has
2537 a pending signal to report or is moving out of a jump pad.
2538 (linux_init_signals): Check for __ANDROID__ rather than
2539 __SIGRTMIN.
2540
b4d51a55
PA
25412010-08-28 Pedro Alves <pedro@codesourcery.com>
2542
2543 * linux-low.c (linux_stabilize_threads): Wrap debug output in a
2544 debug_threads check. Avoid a linear search when not doing debug
2545 output.
2546
ec48365d
PA
25472010-08-27 Pedro Alves <pedro@codesourcery.com>
2548
2549 * event-loop.c (event_handle_func): Adjust to use gdb_fildes_t.
2550 (struct gdb_event) <fd>: Change type to gdb_fildes_t.
2551 (struct file_handler) <fd>: Change type to gdb_fildes_t.
2552 (process_event): Change local fd's type to gdb_fildes_t.
2553 (create_file_handler): Adjust prototype.
2554 (delete_file_handler): Adjust prototype.
2555 (handle_file_event): Adjust prototype. Use pfildes.
2556 (create_file_event): Adjsut prototype.
2557 * remote-utils.c (remote_desc, listen_desc): Change type to
2558 gdb_fildes_t.
2559 * server.h: New gdb_fildes_t typedef.
2560 [USE_WIN32API]: Include winsock2.h.
2561 (delete_file_handler, add_file_handler): Adjust prototypes.
2562 (pfildes): Declare.
2563 * utils.c (pfildes): New.
2564
854d88f0
PA
25652010-08-27 Pedro Alves <pedro@codesourcery.com>
2566
2567 * configure.ac (build_warnings): Add -Wno-char-subscripts.
2568 * configure: Regenerate.
2569
0146f85b
PA
25702010-08-27 Pedro Alves <pedro@codesourcery.com>
2571
2572 * linux-low.c (linux_unprepare_to_access_memory): Rename to ...
2573 (linux_done_accessing_memory): ... this.
2574 (linux_target_ops): Adjust.
2575 * linux-x86-low.c (x86_insert_point, x86_remove_point): Adjust.
2576 * nto-low.c (nto_target_ops): Adjust comment.
2577 * server.c (gdb_read_memory, gdb_write_memory): Adjust.
2578 * spu-low.c (spu_target_ops): Adjust comment.
2579 * target.h (target_ops): Rename unprepare_to_access_memory field
2580 to done_accessing_memory.
2581 (unprepare_to_access_memory): Rename to ...
2582 (done_accessing_memory): ... this.
2583
90d74c30
PA
25842010-08-26 Pedro Alves <pedro@codesourcery.com>
2585
2586 * linux-low.c (linux_prepare_to_access_memory): New.
2587 (linux_unprepare_to_access_memory): New.
2588 (linux_target_ops): Install them.
2589 * server.c (read_memory): Rename to ...
2590 (gdb_read_memory): ... this. Use
2591 prepare_to_access_memory/prepare_to_access_memory.
2592 (write_memory): Rename to ...
2593 (gdb_write_memory): ... this. Use
2594 prepare_to_access_memory/prepare_to_access_memory.
2595 (handle_search_memory_1): Adjust.
2596 (process_serial_event): Adjust.
2597 * target.h (struct target_ops): New fields
2598 prepare_to_access_memory and unprepare_to_access_memory.
2599 (prepare_to_access_memory, unprepare_to_access_memory): New.
2600 * linux-x86-low.c (x86_insert_point, x86_remove_point): Use
2601 prepare_to_access_memory/prepare_to_access_memory.
2602 * nto-low.c (nto_target_ops): Adjust.
2603 * spu-low.c (spu_target_ops): Adjust.
2604 * win32-low.c (win32_target_ops): Adjust.
2605
fd467969
PA
26062010-08-26 Pedro Alves <pedro@codesourcery.com>
2607
2608 * Makefile.in (WARN_CFLAGS): Get it from configure.
2609 (WERROR_CFLAGS): New.
2610 (INTERNAL_CFLAGS): Add WERROR_CFLAGS.
2611 * configure.ac: Introduce --enable-werror, which adds -Werror to
2612 the compiler command line. Enabled by default. Disable with
2613 --disable-werror. Add -Wdeclaration-after-statement
2614 Wpointer-arith and -Wformat-nonliteral to warning flags.
2615 * configure: Regenerate.
2616
331e2f5f
PA
26172010-08-26 Pedro Alves <pedro@codesourcery.com>
2618
2619 * mem-break.c [HAVE_MALLOC_H]: Include malloc.h.
2620
e581f2b4
PA
26212010-08-26 Pedro Alves <pedro@codesourcery.com>
2622
2623 * gdbreplay.c (remote_error): New.
2624 (gdbchar): New.
2625 (expect): Use gdbchar. Check for error reading from GDB.
2626 Clarify sync error output.
2627 (play): Check for errors writing to GDB.
2628 * linux-low.c (sigchld_handler): Really ignore `write' errors.
2629 * remote-utils.c (getpkt): Check for errors writing to the remote
2630 descriptor.
2631
3c11dd79
PA
26322010-08-25 Pedro Alves <pedro@codesourcery.com>
2633
2634 * linux-low.c (linux_wait_1): Move non-debugging code out of
2635 `debug_threads' control.
2636
d20a8ad9
PA
26372010-08-25 Pedro Alves <pedro@codesourcery.com>
2638
2639 * linux-low.c (linux_wait_1): Don't set last_status here.
2640 * server.c (push_event, queue_stop_reply_callback): Assert we're
2641 not pushing a TARGET_WAITKIND_IGNORE event.
2642 (start_inferior, start_inferior, attach_inferior, handle_v_cont)
2643 (myresume, handle_target_event): Set the thread's last_resume_kind
2644 and last_status from the target returned status.
2645
964e4306
PA
26462010-08-25 Pedro Alves <pedro@codesourcery.com>
2647
2648 PR threads/10729
2649
2650 * linux-x86-low.c (update_debug_registers_callback): New.
2651 (i386_dr_low_set_addr): Use it.
2652 (i386_dr_low_get_addr): New.
2653 (i386_dr_low_set_control): Use update_debug_registers_callback.
2654 (i386_dr_low_get_control): New.
2655 (i386_dr_low_get_status): Adjust.
2656 * linux-low.c (linux_stop_lwp): New.
2657 * linux-low.h (linux_stop_lwp): Declare.
2658
2659 * i386-low.c (I386_DR_GET_RW_LEN): Take the dr7 contents as
2660 argument instead of a i386_debug_reg_state.
2661 (I386_DR_WATCH_HIT): Take the dr6 contents as argument instead of
2662 a i386_debug_reg_state.
2663 (i386_insert_aligned_watchpoint): Adjust.
2664 (i386_remove_aligned_watchpoint): Adjust.
2665 (i386_low_stopped_data_address): Read the debug registers from the
2666 inferior instead of from the mirrors.
2667 * i386-low.h (struct i386_debug_reg_state): Extend comment.
2668 (i386_dr_low_get_addr): Declare.
2669 (i386_dr_low_get_control): Declare.
2670 (i386_dr_low_get_status): Change prototype.
2671
2672 * win32-i386-low.c (dr_status_mirror, dr_control_mirror): New globals.
2673 (i386_dr_low_get_addr): New.
2674 (i386_dr_low_get_control): New.
2675 (i386_dr_low_get_status): Adjust prototype. Return
2676 dr_status_mirror.
2677 (i386_initial_stuff): Clear dr_status_mirror and
2678 dr_control_mirror.
2679 (i386_get_thread_context): Adjust.
2680 (i386_set_thread_context): Adjust.
2681 (i386_thread_added): Adjust.
2682
5f21a75b
PA
26832010-08-24 Pedro Alves <pedro@codesourcery.com>
2684
2685 * linux-low.h (linux_thread_area): Delete declaration.
2686
3e4c1235
TS
26872010-08-11 Thomas Schwinge <thomas@codesourcery.com>
2688
2689 * linux-low.c (linux_wait_1): Correctly return the ptid of the child
2690 after its termination.
2691
1971b033
PA
26922010-08-09 Pedro Alves <pedro@codesourcery.com>
2693
2694 * linux-low.c (gdb_wants_lwp_stopped): Delete.
2695 (gdb_wants_all_stopped): Delete.
2696 (linux_wait_1): Don't call them.
2697 * server.c (handle_v_cont): Tag all threads as want-stopped.
2698 (gdb_wants_thread_stopped): Fix comments. Tag the thread that
2699 stopped as "client-wants-stopped".
2700
310444ac
PA
27012010-07-31 Pedro Alves <pedro@codesourcery.com>
2702
2703 * Makefile.in (signals_h): New.
2704 (server_h): Depend on it.
2705 (server.o): Don't depend on $(signals_def).
2706 (signals.o): Depend on $(signals_def).
2707
a19cae16
JK
27082010-07-31 Jan Kratochvil <jan.kratochvil@redhat.com>
2709
2710 * Makefile.in (signals_def): New.
2711 (server_h): Append include/gdb/signals.h and signals_def.
2712 (server.o): Append signals_def.
2713
30d50328
JK
27142010-07-25 Jan Kratochvil <jan.kratochvil@redhat.com>
2715
2716 * server.c (handle_target_event): Use target_signal_to_host for
2717 resume_info.sig initialization.
2718 * target.h (struct thread_resume) <sig>: New comment.
2719
5c3216e2
OS
27202010-07-20 Ozkan Sezer <sezeroz@gmail.com>
2721
c6f46ca0
OS
2722 * server.c (handle_query): strcpy() the returned string from paddress()
2723 instead of sprintf().
5c3216e2
OS
2724 * utils.c (paddress): Return phex_nz().
2725
6bd31874
JB
27262010-07-07 Joel Brobecker <brobecker@adacore.com>
2727
2728 * server.c (handle_v_cont): Call mourn_inferior if process
2729 just exited.
2730 (myresume): Likewise.
2731
0fb4aa4b
PA
27322010-07-01 Pedro Alves <pedro@codesourcery.com>
2733
2734 Static tracepoints, and integration with UST.
2735
2736 * configure.ac: Handle --with-ust. substitute ustlibs and ustinc.
2737 * mem-break.c (uninsert_all_breakpoints)
2738 (reinsert_all_breakpoints): New.
2739 * mem-break.h (reinsert_all_breakpoints, uninsert_all_breakpoints):
2740 * tracepoint.c (ust_loaded, helper_thread_id, cmd_buf): New.
2741 (gdb_agent_ust_loaded, helper_thread_id)
2742 (gdb_agent_helper_thread_id): New macros.
2743 (struct ipa_sym_addresses): Add addr_ust_loaded,
2744 addr_helper_thread_id, addr_cmd_buf.
2745 (symbol_list): Add ust_loaded, helper_thread_id, cmd_buf.
2746 (in_process_agent_loaded_ust): New.
2747 (write_e_ust_not_loaded): New.
2748 (maybe_write_ipa_ust_not_loaded): New.
2749 (struct collect_static_trace_data_action): New.
2750 (enum tracepoint_type) <static_tracepoint>: New.
2751 (struct tracepoint) <handle>: Mention static tracepoints.
2752 (struct static_tracepoint_ctx): New.
2753 (CMD_BUF_SIZE): New.
2754 (add_tracepoint_action): Handle static tracepoint actions.
2755 (unprobe_marker_at): New.
2756 (clear_installed_tracepoints): Handle static tracepoints.
2757 (cmd_qtdp): Handle static tracepoints.
2758 (probe_marker_at): New.
2759 (cmd_qtstart): Handle static tracepoints.
2760 (response_tracepoint): Handle static tracepoints.
2761 (cmd_qtfstm, cmd_qtsstm, cmd_qtstmat): New.
2762 (handle_tracepoint_query): Handle qTfSTM, qTsSTM and qTSTMat.
2763 (get_context_regcache): Handle static tracepoints.
2764 (do_action_at_tracepoint): Handle static tracepoint actions.
2765 (traceframe_find_block_type): Handle static trace data blocks.
2766 (traceframe_read_sdata): New.
2767 (download_tracepoints): Download static tracepoint actions.
2768 [HAVE_UST] Include ust/ust.h, dlfcn.h, sys/socket.h, and sys/un.h.
2769 (GDB_PROBE_NAME): New.
2770 (ust_ops): New.
2771 (GET_UST_SYM): New.
2772 (USTF): New.
2773 (dlsym_ust): New.
2774 (ust_marker_to_static_tracepoint): New.
2775 (gdb_probe): New.
2776 (collect_ust_data_at_tracepoint): New.
2777 (gdb_ust_probe): New.
2778 (UNIX_PATH_MAX, SOCK_DIR): New.
2779 (gdb_ust_connect_sync_socket): New.
2780 (resume_thread, stop_thread): New.
2781 (run_inferior_command): New.
2782 (init_named_socket): New.
2783 (gdb_ust_socket_init): New.
2784 (cstr_to_hexstr): New.
2785 (next_st): New.
2786 (first_marker, next_marker): New.
2787 (response_ust_marker): New.
2788 (cmd_qtfstm, cmd_qtsstm): New.
2789 (unprobe_marker_at, probe_marker_at): New.
2790 (cmd_qtstmat, gdb_ust_thread): New.
2791 (gdb_ust_init): New.
2792 (initialize_tracepoint_ftlib): Call gdb_ust_init.
2793 * linux-amd64-ipa.c [HAVE_UST]: Include ust/processor.h
2794 (ST_REGENTRY): New.
2795 (x86_64_st_collect_regmap): New.
2796 (X86_64_NUM_ST_COLLECT_GREGS): New.
2797 (AMD64_RIP_REGNUM): New.
2798 (supply_static_tracepoint_registers): New.
2799 * linux-i386-ipa.c [HAVE_UST]: Include ust/processor.h
2800 (ST_REGENTRY): New.
2801 (i386_st_collect_regmap): New.
2802 (i386_NUM_ST_COLLECT_GREGS): New.
2803 (supply_static_tracepoint_registers): New.
2804 * server.c (handle_query): Handle qXfer:statictrace:read.
2805 <qSupported>: Report support for StaticTracepoints, and
2806 qXfer:statictrace:read features.
2807 * server.h (traceframe_read_sdata)
2808 (supply_static_tracepoint_registers): Declare.
2809 * remote-utils.c (convert_int_to_ascii, hexchars, ishex, tohex)
2810 (unpack_varlen_hex): Include in IPA build.
2811 * Makefile.in (ustlibs, ustinc): New.
2812 (IPA_OBJS): Add remote-utils-ipa.o.
2813 ($(IPA_LIB)): Link -ldl and -lpthread.
2814 (UST_CFLAGS): New.
2815 (IPAGENT_CFLAGS): Add UST_CFLAGS.
2816 * config.in, configure: Regenerate.
2817
9e4344e5
PA
28182010-06-20 Ian Lance Taylor <iant@google.com>
2819 Pedro Alves <pedro@codesourcery.com>
2820
2821 * linux-x86-low.c (always_true): Delete.
2822 (EMIT_ASM, EMIT_ASM32): Use an uncondition asm jmp instead of
2823 trying to fool the compiler with always_true.
2824
c6beb2cb
PA
28252010-06-20 Pedro Alves <pedro@codesourcery.com>
2826
2827 * tracepoint.c (condition_true_at_tracepoint): Don't run compiled
2828 conditions in gdbserver.
2829
d2ed6730
UW
28302010-06-19 Ulrich Weigand <uweigand@de.ibm.com>
2831
2832 * spu-low.c (spu_read_memory): Wrap around local store limit.
2833 (spu_write_memory): Likewise.
2834
4e29fb54
PA
28352010-06-15 Pedro Alves <pedro@codesourcery.com>
2836
2837 * linux-x86-low.c (amd64_emit_const, amd64_emit_void_call_2)
2838 (i386_emit_const, i386_emit_void_call_2): Replace int64_t uses with
2839 LONGEST uses.
2840 * server.h (struct emit_ops): Replace int64_t uses with LONGEST
2841 uses.
2842 * tracepoint.c (emit_const, emit_void_call_2): Replace int64_t
2843 uses with LONGEST uses.
2844
6a271cae
PA
28452010-06-14 Stan Shebs <stan@codesourcery.com>
2846 Pedro Alves <pedro@codesourcery.com>
2847
2848 Bytecode compiler.
2849
2850 * linux-x86-low.c: Include limits.h.
2851 (add_insns): New.
2852 (always_true): New.
2853 (EMIT_ASM): New.
2854 (EMIT_ASM32): New.
2855 (amd64_emit_prologue, amd64_emit_epilogue, amd64_emit_add)
2856 (amd64_emit_sub, amd64_emit_mul, amd64_emit_lsh)
2857 (amd64_emit_rsh_signed, amd64_emit_rsh_unsigned, amd64_emit_ext,
2858 (amd64_emit_log_not, amd64_emit_bit_and, amd64_emit_bit_or)
2859 (amd64_emit_bit_xor, amd64_emit_bit_not, amd64_emit_equal,
2860 (amd64_emit_less_signed, amd64_emit_less_unsigned, amd64_emit_ref,
2861 (amd64_emit_if_goto, amd64_emit_goto, amd64_write_goto_address)
2862 (amd64_emit_const, amd64_emit_call, amd64_emit_reg)
2863 (amd64_emit_pop, amd64_emit_stack_flush, amd64_emit_zero_ext)
2864 (amd64_emit_swap, amd64_emit_stack_adjust, amd64_emit_int_call_1)
2865 (amd64_emit_void_call_2): New.
2866 (amd64_emit_ops): New.
2867 (i386_emit_prologue, i386_emit_epilogue, i386_emit_add)
2868 (i386_emit_sub,i386_emit_mul, i386_emit_lsh, i386_emit_rsh_signed)
2869 (i386_emit_rsh_unsigned, i386_emit_ext, i386_emit_log_not)
2870 (i386_emit_bit_and, i386_emit_bit_or, i386_emit_bit_xor)
2871 (i386_emit_bit_not, i386_emit_equal, i386_emit_less_signed)
2872 (i386_emit_less_unsigned, i386_emit_ref, i386_emit_if_goto)
2873 (i386_emit_goto, i386_write_goto_address, i386_emit_const)
2874 (i386_emit_call, i386_emit_reg, i386_emit_pop)
2875 (i386_emit_stack_flush, i386_emit_zero_ext, i386_emit_swap)
2876 (i386_emit_stack_adjust, i386_emit_int_call_1)
2877 (i386_emit_void_call_2): New.
2878 (i386_emit_ops): New.
2879 (x86_emit_ops): New.
2880 (the_low_target): Install x86_emit_ops.
2881 * server.h (struct emit_ops): New.
2882 (get_raw_reg_func_addr): Declare.
2883 (current_insn_ptr, emit_error): Declare.
2884 * tracepoint.c (get_raw_reg, get_trace_state_variable_value)
2885 (set_trace_state_variable_value): New defines.
2886 (struct ipa_sym_addresses): New fields addr_get_raw_reg,
2887 addr_get_trace_state_variable_value and
2888 addr_set_trace_state_variable_value.
2889 (symbol_list): New fields for get_raw_reg,
2890 get_trace_state_variable_value and set_trace_state_variable_value.
2891 (condfn): New typedef.
2892 (struct tracepoint): New field `compiled_cond'.
2893 (do_action_at_tracepoint): Clear compiled_cond.
2894 (get_trace_state_variable_value, set_trace_state_variable_value):
2895 Export in the IPA.
2896 (condition_true_at_tracepoint): If there's a compiled condition,
2897 run that.
2898 (current_insn_ptr, emit_error): New globals.
2899 (struct bytecode_address): New.
2900 (get_raw_reg_func_addr): New.
2901 (emit_prologue, emit_epilogue, emit_add, emit_sub, emit_mul)
2902 (emit_lsh, emit_rsh_signed, emit_rsh_unsigned, emit_ext)
2903 (emit_log_not, emit_bit_and, emit_bit_or, emit_bit_xor)
2904 (emit_bit_not, emit_equal, emit_less_signed, emit_less_unsigned)
2905 (emit_ref, emit_if_goto, emit_goto, write_goto_address, emit_const)
2906 (emit_reg, emit_pop, emit_stack_flush, emit_zero_ext, emit_swap)
2907 (emit_stack_adjust, emit_int_call_1, emit_void_call_2): New.
2908 (compile_tracepoint_condition, compile_bytecodes): New.
2909 * target.h (emit_ops): Forward declare.
2910 (struct target_ops): New field emit_ops.
2911 (target_emit_ops): New.
2912 * linux-amd64-ipa.c (gdb_agent_get_raw_reg): New.
2913 * linux-i386-ipa.c (gdb_agent_get_raw_reg): New.
2914 * linux-low.c (linux_emit_ops): New.
2915 (linux_target_ops): Install it.
2916 * linux-low.h (struct linux_target_ops): New field emit_ops.
2917
92b72907
UW
29182010-06-14 Ulrich Weigand <uweigand@de.ibm.com>
2919
2920 * linux-ppc-low.c (ppc_arch_setup): Use private regcache to test MSR.
2921 * linux-s390-low.c (ppc_arch_setup): Use private regcache to test PSW.
2922
fa593d66
PA
29232010-06-01 Pedro Alves <pedro@codesourcery.com>
2924 Stan Shebs <stan@codesourcery.com>
2925
2926 * Makefile.in (IPA_DEPFILES, extra_libraries): New.
2927 (all): Depend on $(extra_libraries).
2928 (install-only): Install the IPA.
2929 (IPA_OBJS, IPA_LIB): New.
2930 (clean): Remove the IPA lib.
2931 (IPAGENT_CFLAGS): New.
2932 (tracepoint-ipa.o, utils-ipa.o, remote-utils-ipa.o)
2933 (regcache-ipa.o, i386-linux-ipa.o, linux-i386-ipa.o)
2934 (linux-amd64-ipa.o, amd64-linux-ipa.o): New rules.
2935 * linux-amd64-ipa.c, linux-i386-ipa.c: New files.
2936 * configure.ac: Check for atomic builtins support in the compiler.
2937 (IPA_DEPFILES, extra_libraries): Define.
2938 * configure.srv (ipa_obj): Add description.
2939 (ipa_i386_linux_regobj, ipa_amd64_linux_regobj): Define.
2940 (i[34567]86-*-linux*): Set ipa_obj.
2941 (x86_64-*-linux*): Set ipa_obj.
2942 * linux-low.c (stabilizing_threads): New.
2943 (supports_fast_tracepoints): New.
2944 (linux_detach): Stabilize threads before detaching.
2945 (handle_tracepoints): Handle internal tracing breakpoints. Assert
2946 the lwp is either not stabilizing, or is moving out of a jump pad.
2947 (linux_fast_tracepoint_collecting): New.
2948 (maybe_move_out_of_jump_pad): New.
2949 (enqueue_one_deferred_signal): New.
2950 (dequeue_one_deferred_signal): New.
2951 (linux_wait_for_event_1): If moving out of a jump pad, defer
2952 pending signals to later.
2953 (linux_stabilize_threads): New.
2954 (linux_wait_1): Check if threads need moving out of jump pads, and
2955 do it if so.
2956 (stuck_in_jump_pad_callback): New.
2957 (move_out_of_jump_pad_callback): New.
2958 (lwp_running): New.
2959 (linux_resume_one_lwp): Handle moving out of jump pads.
2960 (linux_set_resume_request): Dequeue deferred signals.
2961 (need_step_over_p): Also step over fast tracepoint jumps.
2962 (start_step_over): Also uninsert fast tracepoint jumps.
2963 (finish_step_over): Also reinsert fast tracepoint jumps.
2964 (linux_install_fast_tracepoint_jump): New.
2965 (linux_target_ops): Install linux_stabilize_threads and
2966 linux_install_fast_tracepoint_jump_pad.
2967 * linux-low.h (linux_target_ops) <get_thread_area,
2968 install_fast_tracepoint_jump_pad>: New fields.
2969 (struct lwp_info) <collecting_fast_tracepoint,
2970 pending_signals_to_report, exit_jump_pad_bkpt>: New fields.
2971 (linux_get_thread_area): Declare.
2972 * linux-x86-low.c (jump_insn): New.
2973 (x86_get_thread_area): New.
2974 (append_insns): New.
2975 (push_opcode): New.
2976 (amd64_install_fast_tracepoint_jump_pad): New.
2977 (i386_install_fast_tracepoint_jump_pad): New.
2978 (x86_install_fast_tracepoint_jump_pad): New.
2979 (the_low_target): Install x86_get_thread_area and
2980 x86_install_fast_tracepoint_jump_pad.
2981 * mem-break.c (set_raw_breakpoint_at): Use read_inferior_memory.
2982 (struct fast_tracepoint_jump): New.
2983 (fast_tracepoint_jump_insn): New.
2984 (fast_tracepoint_jump_shadow): New.
2985 (find_fast_tracepoint_jump_at): New.
2986 (fast_tracepoint_jump_here): New.
2987 (delete_fast_tracepoint_jump): New.
2988 (set_fast_tracepoint_jump): New.
2989 (uninsert_fast_tracepoint_jumps_at): New.
2990 (reinsert_fast_tracepoint_jumps_at): New.
2991 (set_breakpoint_at): Use write_inferior_memory.
2992 (uninsert_raw_breakpoint): Use write_inferior_memory.
2993 (check_mem_read): Mask out fast tracepoint jumps.
2994 (check_mem_write): Mask out fast tracepoint jumps.
2995 * mem-break.h (struct fast_tracepoint_jump): Forward declare.
2996 (set_fast_tracepoint_jump): Declare.
2997 (delete_fast_tracepoint_jump)
2998 (fast_tracepoint_jump_here, uninsert_fast_tracepoint_jumps_at)
2999 (reinsert_fast_tracepoint_jumps_at): Declare.
3000 * regcache.c: Don't compile many functions when building the
3001 in-process agent library.
3002 (init_register_cache) [IN_PROCESS_AGENT]: Don't allow allocating
3003 the register buffer in the heap.
3004 (free_register_cache): If the register buffer isn't owned by the
3005 regcache, don't free it.
3006 (set_register_cache) [IN_PROCESS_AGENT]: Don't re-alocate
3007 pre-existing register caches.
3008 * remote-utils.c (convert_int_to_ascii): Constify `from' parameter
3009 type.
3010 (convert_ascii_to_int): : Constify `from' parameter type.
3011 (decode_M_packet, decode_X_packet): Replace the `to' parameter by
3012 a `to_p' pointer to pointer parameter. If TO_P is NULL, malloc
3013 the needed buffer in-place.
3014 (relocate_instruction): New.
3015 * server.c (handle_query) <qSymbols>: If the target supports
3016 tracepoints, give it a chance of looking up symbols. Report
3017 support for fast tracepoints.
3018 (handle_status): Stabilize threads.
3019 (process_serial_event): Adjust.
3020 * server.h (struct fast_tracepoint_jump): Forward declare.
3021 (struct process_info) <fast_tracepoint_jumps>: New field.
3022 (convert_ascii_to_int, convert_int_to_ascii): Adjust.
3023 (decode_X_packet, decode_M_packet): Adjust.
3024 (relocate_instruction): Declare.
3025 (in_process_agent_loaded): Declare.
3026 (tracepoint_look_up_symbols): Declare.
3027 (struct fast_tpoint_collect_status): Declare.
3028 (fast_tracepoint_collecting): Declare.
3029 (force_unlock_trace_buffer): Declare.
3030 (handle_tracepoint_bkpts): Declare.
3031 (initialize_low_tracepoint)
3032 (supply_fast_tracepoint_registers) [IN_PROCESS_AGENT]: Declare.
3033 * target.h (struct target_ops) <stabilize_threads,
3034 install_fast_tracepoint_jump_pad>: New fields.
3035 (stabilize_threads, install_fast_tracepoint_jump_pad): New.
3036 * tracepoint.c [HAVE_MALLOC_H]: Include malloc.h.
3037 [HAVE_STDINT_H]: Include stdint.h.
3038 (trace_debug_1): Rename to ...
3039 (trace_vdebug): ... this.
3040 (trace_debug): Rename to ...
3041 (trace_debug_1): ... this. Add `level' parameter.
3042 (trace_debug): New.
3043 (ATTR_USED, ATTR_NOINLINE): New.
3044 (IP_AGENT_EXPORT): New.
3045 (gdb_tp_heap_buffer, gdb_jump_pad_buffer, gdb_jump_pad_buffer_end)
3046 (collecting, gdb_collect, stop_tracing, flush_trace_buffer)
3047 (about_to_request_buffer_space, trace_buffer_is_full)
3048 (stopping_tracepoint, expr_eval_result, error_tracepoint)
3049 (tracepoints, tracing, trace_buffer_ctrl, trace_buffer_ctrl_curr)
3050 (trace_buffer_lo, trace_buffer_hi, traceframe_read_count)
3051 (traceframe_write_count, traceframes_created)
3052 (trace_state_variables)
3053 New renaming defines.
3054 (struct ipa_sym_addresses): New.
3055 (STRINGIZE_1, STRINGIZE, IPA_SYM): New.
3056 (symbol_list): New.
3057 (ipa_sym_addrs): New.
3058 (all_tracepoint_symbols_looked_up): New.
3059 (in_process_agent_loaded): New.
3060 (write_e_ipa_not_loaded): New.
3061 (maybe_write_ipa_not_loaded): New.
3062 (tracepoint_look_up_symbols): New.
3063 (debug_threads) [IN_PROCESS_AGENT]: New.
3064 (read_inferior_memory) [IN_PROCESS_AGENT]: New.
3065 (UNKNOWN_SIDE_EFFECTS): New.
3066 (stop_tracing): New.
3067 (flush_trace_buffer): New.
3068 (stop_tracing_bkpt): New.
3069 (flush_trace_buffer_bkpt): New.
3070 (read_inferior_integer): New.
3071 (read_inferior_uinteger): New.
3072 (read_inferior_data_pointer): New.
3073 (write_inferior_data_pointer): New.
3074 (write_inferior_integer): New.
3075 (write_inferior_uinteger): New.
3076 (struct collect_static_trace_data_action): Delete.
3077 (enum tracepoint_type): New.
3078 (struct tracepoint) <type>: New field `type'.
43aaf8b6
PA
3079 <actions_str, step_actions, step_actions_str>: Only include in
3080 GDBserver.
fa593d66
PA
3081 <orig_size, obj_addr_on_target, adjusted_insn_addr>
3082 <adjusted_insn_addr_end, jump_pad, jump_pad_end>: New fields.
3083 (tracepoints): Use IP_AGENT_EXPORT.
3084 (last_tracepoint): Don't include in the IPA.
3085 (stopping_tracepoint): Use IP_AGENT_EXPORT.
3086 (trace_buffer_is_full): Use IP_AGENT_EXPORT.
3087 (alloced_trace_state_variables): New.
3088 (trace_state_variables): Use IP_AGENT_EXPORT.
3089 (traceframe_t): Delete unused variable.
3090 (circular_trace_buffer): Don't include in the IPA.
3091 (trace_buffer_start): Delete.
3092 (struct trace_buffer_control): New.
3093 (trace_buffer_free): Delete.
3094 (struct ipa_trace_buffer_control): New.
3095 (GDBSERVER_FLUSH_COUNT_MASK, GDBSERVER_FLUSH_COUNT_MASK_PREV)
3096 (GDBSERVER_FLUSH_COUNT_MASK_CURR, GDBSERVER_UPDATED_FLUSH_COUNT_BIT):
3097 New.
3098 (trace_buffer_ctrl): New.
3099 (TRACE_BUFFER_CTRL_CURR): New.
3100 (trace_buffer_start, trace_buffer_free, trace_buffer_end_free):
3101 Reimplement as macros.
3102 (trace_buffer_wrap): Delete.
3103 (traceframe_write_count, traceframe_read_count)
3104 (traceframes_created, tracing): Use IP_AGENT_EXPORT.
3105 (struct tracepoint_hit_ctx) <type>: New field.
3106 (struct fast_tracepoint_ctx): New.
3107 (memory_barrier): New.
3108 (cmpxchg): New.
3109 (record_tracepoint_error): Update atomically in the IPA.
3110 (clear_inferior_trace_buffer): New.
3111 (about_to_request_buffer_space): New.
3112 (trace_buffer_alloc): Handle GDBserver and inferior simulatenous
3113 updating the same buffer.
3114 (add_tracepoint): Default the tracepoint's type to trap
3115 tracepoint, and orig_size to -1.
3116 (get_trace_state_variable) [IN_PROCESS_AGENT]: Handle allocated
3117 internal variables.
3118 (create_trace_state_variable): New parameter `gdb'. Handle it.
3119 (clear_installed_tracepoints): Clear fast tracepoint jumps.
3120 (cmd_qtdp): Handle fast tracepoints.
3121 (cmd_qtdv): Adjust.
3122 (max_jump_pad_size): New.
3123 (gdb_jump_pad_head): New.
3124 (get_jump_space_head): New.
3125 (claim_jump_space): New.
3126 (sort_tracepoints): New.
3127 (MAX_JUMP_SIZE): New.
3128 (cmd_qtstart): Handle fast tracepoints. Sync tracepoints with the
3129 IPA.
3130 (stop_tracing) [IN_PROCESS_AGENT]: Don't include the tdisconnected
3131 support. Upload fast traceframes, and delete internal IPA
3132 breakpoints.
3133 (stop_tracing_handler): New.
3134 (flush_trace_buffer_handler): New.
3135 (cmd_qtstop): Upload fast tracepoints.
3136 (response_tracepoint): Handle fast tracepoints.
3137 (tracepoint_finished_step): Upload fast traceframes. Set the
3138 tracepoint hit context's tracepoint type.
3139 (handle_tracepoint_bkpts): New.
3140 (tracepoint_was_hit): Set the tracepoint hit context's tracepoint
3141 type. Add comment about fast tracepoints.
3142 (collect_data_at_tracepoint) [IN_PROCESS_AGENT]: Don't access the
3143 non-existing action_str field.
3144 (get_context_regcache): Handle fast tracepoints.
3145 (do_action_at_tracepoint) [!IN_PROCESS_AGENT]: Don't write the PC
3146 to the regcache.
3147 (fast_tracepoint_from_jump_pad_address): New.
3148 (fast_tracepoint_from_ipa_tpoint_address): New.
3149 (collecting_t): New.
3150 (force_unlock_trace_buffer): New.
3151 (fast_tracepoint_collecting): New.
3152 (collecting): New.
3153 (gdb_collect): New.
3154 (write_inferior_data_ptr): New.
3155 (target_tp_heap): New.
3156 (target_malloc): New.
3157 (download_agent_expr): New.
3158 (UALIGN): New.
3159 (download_tracepoints): New.
3160 (download_trace_state_variables): New.
3161 (upload_fast_traceframes): New.
3162 (IPA_FIRST_TRACEFRAME): New.
3163 (IPA_NEXT_TRACEFRAME_1): New.
3164 (IPA_NEXT_TRACEFRAME): New.
3165 [IN_PROCESS_AGENT]: Include sys/mman.h and fcntl.h.
3166 [IN_PROCESS_AGENT] (gdb_tp_heap_buffer, gdb_jump_pad_buffer)
3167 (gdb_jump_pad_buffer_end): New.
3168 [IN_PROCESS_AGENT] (initialize_tracepoint_ftlib): New.
3169 (initialize_tracepoint): Adjust.
3170 [IN_PROCESS_AGENT]: Allocate the IPA heap, and jump pad scratch
3171 buffer. Initialize the low module.
3172 * utils.c (PREFIX, TOOLNAME): New.
3173 (malloc_failure): Use PREFIX.
3174 (error): In the IPA, an error causes an exit.
3175 (fatal, warning): Use PREFIX.
3176 (internal_error): Use TOOLNAME.
3177 (NUMCELLS): Increase to 10.
3178 * configure, config.in: Regenerate.
3179
d149dd1d
PA
31802010-06-01 Pedro Alves <pedro@codesourcery.com>
3181
3182 * server.c (handle_query) <qSupported>: Do two passes over the
3183 qSupported string to avoid nesting strtok.
3184
f6528abd
JK
31852010-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
3186
3187 * Makefile.in (SFILES): Add $(srcdir)/proc-service.list.
3188 (CDEPS): New.
3189 * configure.ac (RDYNAMIC): New AC_MSG_CHECKING wrapping. Test also
3190 -Wl,--dynamic-list.
3191 * configure: Regenerate.
3192 * proc-service.list: New.
3193
ca2a87a0
JK
31942010-05-28 Jan Kratochvil <jan.kratochvil@redhat.com>
3195
3196 * linux-low.c (linux_core_of_thread): Fix crash on invalid CONTENT.
3197 New comment.
3198
363a6e9f
OS
31992010-05-26 Ozkan Sezer <sezeroz@gmail.com>
3200
3201 * gdbreplay.c (remote_open): Check error return from socket() call by
3202 its equality to -1 not by it being negative.
3203 * remote-utils.c (remote_open): Likewise.
3204
d23b6cb1
PA
32052010-05-23 Pedro Alves <pedro@codesourcery.com>
3206
3207 * config.h: Regenerate.
3208
28d3cf85
MK
32092010-05-19 Maxim Kuvyrkov <maxim@codesourcery.com>
3210
3211 * linux-m68k-low.c (ps_get_thread_area): Don't define if kernel
3212 doesn't provide PTRACE_GET_THREAD_AREA.
3213
fea36a59
MK
32142010-05-19 Maxim Kuvyrkov <maxim@codesourcery.com>
3215
3216 * linux-m68k-low.c: Include <asm/ptrace.h>
3217 (ps_get_thread_area): Implement.
3218
24b066ba
DE
32192010-05-03 Doug Evans <dje@google.com>
3220
3221 * event-loop.c (struct callback_event): New struct.
3222 (callback_list): New global.
3223 (append_callback_event, delete_callback_event): New functions.
3224 (process_callback): New function.
3225 (start_event_loop): Call it.
3226 * remote-utils.c (NOT_SCHEDULED): Define.
3227 (readchar_buf, readchar_bufcnt, readchar_bufp): New static globals,
3228 moved out of readchar.
3229 (readchar): Rewrite. Call reschedule before returning.
3230 (reset_readchar): New function.
3231 (remote_close): Call it.
3232 (process_remaining, reschedule): New functions.
3233 * server.h (callback_handler_func): New typedef.
3234 (append_callback_event, delete_callback_event): Declare.
3235
9836d6ea
PA
32362010-05-03 Pedro Alves <pedro@codesourcery.com>
3237
3238 * proc-service.c (ps_pglobal_lookup): Use
3239 thread_db_look_up_one_symbol.
3240 * remote-utils.c (look_up_one_symbol): Add new `may_ask_gdb'
3241 parameter. Use it instead of all_symbols_looked_up.
3242 * server.h (struct process_info) <all_symbols_looked_up>: Delete
3243 field.
3244 (all_symbols_looked_up): Don't declare.
3245 (look_up_one_symbol): Add new `may_ask_gdb' parameter.
3246 * thread-db.c (struct thread_db) <all_symbols_looked_up>: New
3247 field.
3248 (thread_db_look_up_symbols): Adjust call to look_up_one_symbol.
3249 Set all_symbols_looked_up here.
3250 (thread_db_look_up_one_symbol): New.
3251 (thread_db_get_tls_address): Adjust.
3252 (thread_db_load_search, try_thread_db_load_1): Always allocate the
3253 thread_db object on the heap, and tentatively set it in the
3254 process structure.
3255 (thread_db_init): Don't set all_symbols_looked_up here.
3256 * linux-low.h (thread_db_look_up_one_symbol): Declare.
3257
7984d532
PA
32582010-05-03 Pedro Alves <pedro@codesourcery.com>
3259
3260 * linux-low.c (linux_kill, linux_detach): Adjust.
3261 (status_pending_p_callback): Remove redundant statement. Check
3262 for !TARGET_WAITIKIND_IGNORE, instead of
3263 TARGET_WAITKIND_STOPPED.
3264 (handle_tracepoints): Make sure LWP is locked. Adjust.
3265 (linux_wait_for_event_1): Adjust.
3266 (linux_cancel_breakpoints): New.
3267 (unsuspend_one_lwp): New.
3268 (unsuspend_all_lwps): New.
3269 (linux_wait_1): If finishing a step-over, unsuspend all lwps.
3270 (send_sigstop_callback): Change return type to int, add new
3271 `except' parameter and handle it.
3272 (suspend_and_send_sigstop_callback): New.
3273 (stop_all_lwps): Add new `suspend' and `expect' parameters, and
3274 pass them down. If SUSPEND, also increment the lwp's suspend
3275 count.
3276 (linux_resume_one_lwp): Add notice about resuming a suspended LWP.
3277 (need_step_over_p): Don't consider suspended LWPs.
3278 (start_step_over): Adjust.
3279 (proceed_one_lwp): Change return type to int, add new `except'
3280 parameter and handle it.
3281 (unsuspend_and_proceed_one_lwp): New.
3282 (proceed_all_lwps): Use find_inferior instead of
3283 for_each_inferior.
3284 (unstop_all_lwps): Add `unsuspend' parameter. If UNSUSPEND, them
3285 also decrement the suspend count of LWPs. Pass `except' down,
3286 instead of hacking its suspend count.
3287 (linux_pause_all): Add `freeze' parameter. Adjust.
3288 (linux_unpause_all): New.
3289 (linux_target_ops): Install linux_unpause_all.
3290 * server.c (handle_status): Adjust.
3291 * target.h (struct target_ops): New fields `unpause_all' and
3292 `cancel_breakpoints'. Add new parameter to `pause_all'.
3293 (pause_all): Add new `freeze' parameter.
3294 (unpause_all): New.
3295 (cancel_breakpoints): New.
3296 * tracepoint.c (clear_installed_tracepoints): Pause threads, and
3297 cancel breakpoints.
3298 (cmd_qtstart): Pause threads.
3299 (stop_tracing): Pause threads, and cancel breakpoints.
3300 * win32-low.c (win32_target_ops): Adjust.
3301
e471f25b
PA
33022010-05-03 Pedro Alves <pedro@codesourcery.com>
3303
3304 * linux-low.c (linux_wait_for_event_1): Move passing the signal to
3305 the inferior right away from here...
3306 (linux_wait_1): ... to here, and adjust to check the thread's
3307 last_resume_kind instead of the lwp's step or stop_expected flags.
3308
1915ef4f
PA
33092010-05-02 Pedro Alves <pedro@codesourcery.com>
3310
3311 * README: Use consistent `GDB' and `GDBserver' spellings.
3312
f9e39928
PA
33132010-05-02 Pedro Alves <pedro@codesourcery.com>
3314
3315 * linux-low.c (linux_kill_one_lwp): Assume the lwp is stopped.
3316 (linux_kill): Stop all lwps here. Don't delete the main lwp here.
3317 (linux_detach_one_lwp): Assume the lwp is stopped.
3318 (any_thread_of): Delete.
3319 (linux_detach): Stop all lwps here. Don't blindly delete all
3320 breakpoints.
3321 (delete_lwp_callback): New.
3322 (linux_mourn): Delete all lwps of the process that is gone.
3323 (linux_wait_1): Don't delete the last lwp of the process here.
3324 * mem-break.h (mark_breakpoints_out): Declare.
3325 * mem-break.c (mark_breakpoints_out): New.
3326 (free_all_breakpoints): Use it.
3327 * server.c (handle_target_event): If the process is gone, mark
3328 breakpoints out.
3329 * thread-db.c (struct thread_db) <create_bp>: New field.
3330 (thread_db_enable_reporting): Fix prototype. Store a thread event
3331 breakpoint reference in the thread_db struct.
3332 (thread_db_load_search): Clear the thread_db object.
3333 (try_thread_db_load_1): Ditto.
3334 (switch_to_process): New.
3335 (disable_thread_event_reporting): Use it.
3336 (remove_thread_event_breakpoints): New.
3337 (thread_db_detach, thread_db_mourn): Use it.
3338
1e7fc18c
PA
33392010-05-01 Pedro Alves <pedro@codesourcery.com>
3340
3341 * linux-low.c (linux_enable_event_reporting): New.
3342 (linux_wait_for_event_1, handle_extended_wait): Use it.
3343
02fc4de7
PA
33442010-04-30 Pedro Alves <pedro@codesourcery.com>
3345
3346 * linux-low.c (linux_kill_one_lwp, linux_kill)
3347 (linux_detach_one_lwp): Adjust to send_sigstop interface change.
3348 (send_sigstop): Take an lwp_info as parameter instead. Queue a
3349 SIGSTOP even if the LWP is stopped.
3350 (send_sigstop_callback): New.
3351 (stop_all_lwps): Use send_sigstop_callback instead.
3352 (linux_resume_one_thread): Adjust.
3353 (proceed_one_lwp): Still proceed an LWP that the client has
3354 requested to stop, if we haven't reported it as stopped yet. Make
3355 sure that LWPs the client want stopped, have a pending SIGSTOP.
3356
bc3b5632
DE
33572010-04-26 Doug Evans <dje@google.com>
3358
ae1ada35
DE
3359 * server.c (handle_general_set): Make static.
3360
bc3b5632
DE
3361 * remote-utils.c (putpkt_binary_1): Call readchar instead of read.
3362 Print received char after testing for error/eof instead of before.
3363 (input_interrupt): Tweak comment.
3364
65730243
DE
33652010-04-23 Doug Evans <dje@google.com>
3366
3367 * server.c (start_inferior): Print inferior argv if --debug.
3368
a8ae7dc0
AR
33692010-04-21 Aleksandar Ristovski <aristovski@qnx.com>
3370
3371 * Makefile.in (nto_low_h nto-low.o nto-x86-low.o): New dependency lists.
3372 * nto-x86-low.c: Include server.h
3373
1c07cc19
PM
33742010-04-20 Pierre Muller <muller@ics.u-strasbg.fr>
3375
3376 * win32-i386-low.c: Use __x86_64__ macro instead of __x86_64 to
3377 be consistent with other sources of this directory.
3378 (init_registers_amd64): Correct name of source file of this function
3379 in the comment.
3380
e0a61e09
PM
33812010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
3382
3383 * configure.srv (x86_64-*-mingw*): New configuration for Windows
3384 64-bit executables.
3385
54709339
PM
33862010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
3387
3388 * win32-i386-low.c: Add 64-bit support.
3389 (CONTEXT_EXTENDED_REGISTERS): Set macro to zero if not exisiting.
3390 (init_registers_amd64): Declare.
3391 (mappings): Add 64-bit version of array.
3392 (init_windows_x86): New function.
3393 (the_low_target): Change init_arch field to init_windows_x86.
3394
e8f0053d
PM
33952010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
3396
3397 * win32-low.c: Adapt to support also 64-bit architecture.
3398 (child_xfer_memory): Use uintptr_t type for local variable `addr'.
3399 (get_image_name): Use SIZE_T type for local variable `done'.
3400 (psapi_get_dll_name): Use LPVOID type for parameter `BaseAddress'.
3401 (toolhelp_get_dll_name): Idem.
3402 (handle_load_dll): Use CORE_ADDR type for local variable `load_addr'.
3403 Use uintptr_t typecast to avoid warning.
3404 (handle_unload_dll): Use uintptr_t typecast to avoid warning.
3405 (handle_exception): Use phex_nz to avoid warning.
3406 (win32_wait): Remove unused local variable `process'.
3407
c481e77e
PM
34082010-04-19 Pierre Muller <muller@ics.u-strasbg.fr>
3409
3410 * configure.srv (srv_amd64_regobj): Replace `x86-64-avx.o' by
3411 `amd64-avx.o'.
3412
12ea4b69
PM
34132010-04-17 Pierre Muller <muller@ics.u-strasbg.fr>
3414
3415 * configure.ac: Use `ws2_32' library for srv_mingw.
3416 * configure: Regenerate.
3417 * gdbreplay.c: Include winsock2.h instead of winsock.h.
3418 * remote-utils.c: Likewise.
3419
f6d1620c
L
34202010-04-17 H.J. Lu <hongjiu.lu@intel.com>
3421
3422 * linux-x86-low.c (xmltarget_amd64_linux_no_xml): Define only
3423 if __x86_64__ is defined.
3424
8e642873
PM
34252010-04-16 Pierre Muller <muller@ics.u-strasbg.fr>
3426
3427 * configure: Regenerate.
3428
711e434b
PM
34292010-04-16 Pierre Muller <muller@ics.u-strasbg.fr>
3430
3431 * server.c (handle_query): Handle 'qGetTIBAddr' query.
3432 * target.h (target_ops): New get_tib_address field.
3433 * win32-low.h (win32_thread_info): Add thread_local_base field.
3434 * win32-low.c (child_add_thread): Add tlb argument.
3435 Set thread_local_base field to TLB.
3436 (get_child_debug_event): Adapt to child_add_thread change.
3437 (win32_get_tib_address): New function.
3438 (win32_target_ops): Set get_tib_address field to
3439 win32_get_tib_address.
3440 * linux-low.c (linux_target_ops): Set get_tib_address field to NULL.
3441
505106cd
PA
34422010-04-12 Pedro Alves <pedro@codesourcery.com>
3443
505106cd
PA
3444 * linux-low.c (linux_mourn): Also remove the process.
3445 * server.c (handle_target_event): Don't remove the process here.
3446 * nto-low.c (nto_mourn): New.
3447 (nto_target_ops): Install it.
3448 * spu-low.c (spu_mourn): New.
3449 (spu_target_ops): Install it.
3450 * win32-low.c (win32_mourn): New.
3451 (win32_target_ops): Install it.
3452
e8470a06
PA
34532010-04-12 Pedro Alves <pedro@codesourcery.com>
3454
3455 * server.h (buffer_xml_printf): Remove redundant `;'.
3456
45ba0d02
PA
34572010-04-12 Pedro Alves <pedro@codesourcery.com>
3458
3459 * regcache.c (set_register_cache): Invalidate regcaches before
3460 changing the register cache layout.
3461 (regcache_invalidate_one): Allow a NULL regcache.
3462 * linux-x86-low.c (x86_linux_update_xmltarget): Invalidate
3463 regcaches before changing the register cache layout or the target
3464 regsets.
3465
59e04013
L
34662010-04-12 H.J. Lu <hongjiu.lu@intel.com>
3467
3468 * linux-x86-low.c (x86_linux_update_xmltarget): Avoid unused
3469 variable warning on Linux/x86-64.
3470
8336d594
PA
34712010-04-11 Pedro Alves <pedro@codesourcery.com>
3472
3473 GDBserver disconnected tracing support.
3474
3475 * linux-low.c (linux_remove_process): Delete.
3476 (add_lwp): Don't set last_resume_kind here.
3477 (linux_kill): Use `mourn'.
3478 (linux_detach): Use `thread_db_detach', and `mourn'.
3479 (linux_mourn): New.
3480 (linux_attach_lwp_1): Adjust comment.
3481 (linux_attach): last_resume_kind moved the thread_info; adjust.
3482 (status_pending_p_callback): Adjust.
3483 (linux_wait_for_event_1): Adjust.
3484 (count_events_callback, select_singlestep_lwp_callback)
3485 (select_event_lwp_callback, cancel_breakpoints_callback)
3486 (db_wants_lwp_stopped, linux_wait_1, need_step_over_p)
3487 (proceed_one_lwp): Adjust.
3488 (linux_async): Add debug output.
3489 (linux_thread_stopped): New.
3490 (linux_pause_all): New.
3491 (linux_target_ops): Install linux_mourn, linux_thread_stopped and
3492 linux_pause_all.
3493 * linux-low.h (struct lwp_info): Delete last_resume_kind field.
3494 (thread_db_free): Delete declaration.
3495 (thread_db_detach, thread_db_mourn): Declare.
3496 * thread-db.c (thread_db_init): Use thread_db_mourn.
3497 (thread_db_free): Delete, split in two.
3498 (disable_thread_event_reporting): New.
3499 (thread_db_detach): New.
3500 (thread_db_mourn): New.
3501
3502 * server.h (struct thread_info) <last_resume_kind>: New field.
3503 <attached>: Add comment.
3504 <gdb_detached>: New field.
3505 (handler_func): Change return type to int.
3506 (handle_serial_event, handle_target_event): Ditto.
3507 (gdb_connected): Declare.
3508 (tracing): Delete.
3509 (disconnected_tracing): Declare.
3510 (stop_tracing): Declare.
3511
3512 * server.c (handle_query) <qSupported>: Report support for
3513 disconnected tracing.
3514 (queue_stop_reply_callback): Account for running threads.
3515 (gdb_wants_thread_stopped): New.
3516 (gdb_wants_all_threads_stopped): New.
3517 (gdb_reattached_process): New.
3518 (handle_status): Clear the `gdb_detached' flag of all processes.
3519 In all-stop, stop all threads.
3520 (main): Be sure to leave tfind mode. Handle disconnected tracing.
3521 (process_serial_event): If the remote connection breaks, or if an
3522 exit was forced with "monitor exit", force an event loop exit.
3523 Handle disconnected tracing on detach.
3524 (handle_serial_event): Adjust.
3525 (handle_target_event): If GDB isn't connected, forward events back
3526 to the inferior, unless the last process exited, in which case,
3527 exit gdbserver. Adjust interface.
3528
3529 * remote-utils.c (remote_open): Don't block in accept. Instead
3530 register an event loop source on the listen socket file
3531 descriptor. Refactor bits into ...
3532 (listen_desc): ... this new global.
3533 (gdb_connected): ... this new function.
3534 (enable_async_notification): ... this new function.
3535 (handle_accept_event): ... this new function.
3536 (remote_close): Clear remote_desc.
3537
3538 * inferiors.c (add_thread): Set the new thread's last_resume_kind.
3539
3540 * target.h (struct target_ops) <mourn, thread_stopped, pause_all>:
3541 New fields.
3542 (mourn_inferior): Define.
3543 (target_process_qsupported): Avoid the dangling else problem.
3544 (thread_stopped): Define.
3545 (pause_all): Define.
3546 (target_waitstatus_to_string): Declare.
3547 * target.c (target_waitstatus_to_string): New.
3548
3549 * tracepoint.c (tracing): Make extern.
3550 (disconnected_tracing): New.
3551 (stop_tracing): Make extern. Handle tracing stops due to GDB
3552 disconnecting.
3553 (cmd_qtdisconnected): New.
3554 (cmd_qtstatus): Report disconnected tracing status in trace reply.
3555 (handle_tracepoint_general_set): Handle QTDisconnected.
3556
3557 * event-loop.c (event_handler_func): Change return type to int.
3558 (process_event): Bail out if the event handler wants the event
3559 loop to stop.
3560 (handle_file_event): Ditto.
3561 (start_event_loop): Bail out if the event handler wants the event
3562 loop to stop.
3563
3564 * nto-low.c (nto_target_ops): Adjust.
3565 * spu-low.c (spu_wait): Don't remove the process here.
3566 (spu_target_ops): Adjust.
3567 * win32-low.c (win32_wait): Don't remove the process here.
3568 (win32_target_ops): Adjust.
3569
5d267c4c
PA
35702010-04-11 Pedro Alves <pedro@codesourcery.com>
3571
3572 * regcache.c (realloc_register_cache): Invalidate inferior's
3573 regcache before recreating it.
3574
623ccd72
PA
35752010-04-09 Pedro Alves <pedro@codesourcery.com>
3576
3577 * tracepoint.c (cmd_qtstatus): Report trace buffer circularity.
3578
219f2f23
PA
35792010-04-09 Stan Shebs <stan@codesourcery.com>
3580 Pedro Alves <pedro@codesourcery.com>
3581
3582 * server.h (LONGEST): New.
3583 (struct thread_info) <while_stepping>: New field.
3584 (unpack_varlen_hex, xrealloc, pulongest, plongest, phex_nz):
3585 Declare.
3586 (initialize_tracepoint, handle_tracepoint_general_set)
3587 (handle_tracepoint_query, tracepoint_finished_step)
3588 (tracepoint_was_hit, release_while_stepping_state_list):
3589 (current_traceframe): Declare.
3590 * server.c (handle_general_set): Handle tracepoint packets.
3591 (read_memory): New.
3592 (write_memory): New.
3593 (handle_search_memory_1): Use read_memory.
3594 (handle_query): Report support for conditional tracepoints, trace
3595 state variables, and tracepoint sources. Handle tracepoint
3596 queries.
3597 (main): Initialize the tracepoints module.
3598 (process_serial_event): Handle traceframe reads/writes.
3599
3600 * linux-low.c (handle_tracepoints): New.
3601 (linux_wait_1): Call it.
3602 (linux_resume_one_lwp): Handle while-stepping.
3603 (linux_supports_tracepoints, linux_read_pc, linux_write_pc): New.
3604 (linux_target_ops): Install them.
3605 * linux-low.h (struct linux_target_ops) <supports_tracepoints>:
3606 New field.
3607 * linux-x86-low.c (x86_supports_tracepoints): New.
3608 (the_low_target). Install it.
3609
3610 * mem-break.h (delete_breakpoint): Declare.
3611 * mem-break.c (delete_breakpoint): Make external.
3612
3613 * target.h (struct target_ops): Add `supports_tracepoints',
3614 `read_pc', and `write_pc' fields.
3615 (target_supports_tracepoints): Define.
3616 * utils.c (xrealloc, decimal2str, pulongest, plongest, thirty_two)
3617 (phex_nz): New.
3618
3619 * regcache.h (struct regcache) <registers_owned>: New field.
3620 (init_register_cache, regcache_cpy): Declare.
3621 (regcache_read_pc, regcache_write_pc): Declare.
3622 (register_cache_size): Declare.
3623 (supply_regblock): Declare.
3624 * regcache.c (init_register_cache): New.
3625 (new_register_cache): Use it.
3626 (regcache_cpy): New.
3627 (register_cache_size): New.
3628 (supply_regblock): New.
3629 (regcache_read_pc, regcache_write_pc): New.
889bf7c5 3630
219f2f23
PA
3631 * tracepoint.c: New.
3632
3633 * Makefile.in (OBS): Add tracepoint.o.
3634 (tracepoint.o): New rule.
3635
3a13a53b
L
36362010-04-08 H.J. Lu <hongjiu.lu@intel.com>
3637
3638 * Makefile.in (clean): Also remove i386-mmx.c i386-mmx-linux.c.
3639 (i386-mmx.o): New.
3640 (i386-mmx.c): Likewise.
3641 (i386-mmx-linux.o): Likewise.
3642 (i386-mmx-linux.c): Likewise.
3643
3644 * configure.srv (srv_i386_regobj): Add i386-mmx.o.
3645 (srv_i386_linux_regobj): Add i386-mmx-linux.o.
3646 (srv_i386_xmlfiles): Add i386/i386-mmx.xml.
3647 (srv_i386_linux_xmlfiles): Add i386/i386-mmx-linux.xml.
3648
3649 * linux-x86-low.c (init_registers_i386_mmx_linux): New.
3650 (x86_linux_update_xmltarget): Call init_registers_i386_mmx_linux
3651 and return if ptrace PTRACE_GETFPXREGS failed in 32bit.
3652
1570b33e
L
36532010-04-07 H.J. Lu <hongjiu.lu@intel.com>
3654
3655 * Makefile.in (clean): Updated.
3656 (i386-avx.o): New.
3657 (i386-avx.c): Likewise.
3658 (i386-avx-linux.o): Likewise.
3659 (i386-avx-linux.c): Likewise.
3660 (amd64-avx.o): Likewise.
3661 (amd64-avx.c): Likewise.
3662 (amd64-avx-linux.o): Likewise.
3663 (amd64-avx-linux.c): Likewise.
3664
3665 * configure.srv (srv_i386_regobj): Add i386-avx.o.
3666 (srv_i386_linux_regobj): Add i386-avx-linux.o.
3667 (srv_amd64_regobj): Add amd64-avx.o.
3668 (srv_amd64_linux_regobj): Add amd64-avx-linux.o.
3669 (srv_i386_32bit_xmlfiles): Add i386/32bit-avx.xml.
3670 (srv_i386_64bit_xmlfiles): Add i386/64bit-avx.xml.
3671 (srv_i386_xmlfiles): Add i386/i386-avx.xml.
3672 (srv_amd64_xmlfiles): Add i386/amd64-avx.xml.
3673 (srv_i386_linux_xmlfiles): Add i386/i386-avx-linux.xml.
3674 (srv_amd64_linux_xmlfiles): Add i386/amd64-avx-linux.xml.
3675
3676 * i387-fp.c: Include "i386-xstate.h".
3677 (i387_xsave): New.
3678 (i387_cache_to_xsave): Likewise.
3679 (i387_xsave_to_cache): Likewise.
3680 (x86_xcr0): Likewise.
3681
3682 * i387-fp.h (i387_cache_to_xsave): Likewise.
3683 (i387_xsave_to_cache): Likewise.
3684 (x86_xcr0): Likewise.
3685
3686 * linux-arm-low.c (target_regsets): Initialize nt_type to 0.
3687 * linux-crisv32-low.c (target_regsets): Likewise.
3688 * linux-m68k-low.c (target_regsets): Likewise.
3689 * linux-mips-low.c (target_regsets): Likewise.
3690 * linux-ppc-low.c (target_regsets): Likewise.
3691 * linux-s390-low.c (target_regsets): Likewise.
3692 * linux-sh-low.c (target_regsets): Likewise.
3693 * linux-sparc-low.c (target_regsets): Likewise.
3694 * linux-xtensa-low.c (target_regsets): Likewise.
3695
3696 * linux-low.c: Include <sys/uio.h>.
3697 (regsets_fetch_inferior_registers): Support nt_type.
3698 (regsets_store_inferior_registers): Likewise.
3699 (linux_process_qsupported): New.
3700 (linux_target_ops): Add linux_process_qsupported.
3701
3702 * linux-low.h (regset_info): Add nt_type.
3703 (linux_target_ops): Add process_qsupported.
3704
3705 * linux-x86-low.c: Include "i386-xstate.h", "elf/common.h"
3706 and <sys/uio.h>.
3707 (init_registers_i386_avx_linux): New.
3708 (init_registers_amd64_avx_linux): Likewise.
3709 (xmltarget_i386_linux_no_xml): Likewise.
3710 (xmltarget_amd64_linux_no_xml): Likewise.
3711 (PTRACE_GETREGSET): Likewise.
3712 (PTRACE_SETREGSET): Likewise.
3713 (x86_fill_xstateregset): Likewise.
3714 (x86_store_xstateregset): Likewise.
3715 (use_xml): Likewise.
3716 (x86_linux_update_xmltarget): Likewise.
3717 (x86_linux_process_qsupported): Likewise.
3718 (target_regsets): Add NT_X86_XSTATE entry and Initialize nt_type.
3719 (x86_arch_setup): Don't call init_registers_amd64_linux nor
3720 init_registers_i386_linux here. Call
3721 x86_linux_update_xmltarget.
3722 (the_low_target): Add x86_linux_process_qsupported.
3723
3724 * server.c (handle_query): Call target_process_qsupported.
3725
3726 * target.h (target_ops): Add process_qsupported.
3727 (target_process_qsupported): New.
3728
fc7238bb
PA
37292010-04-03 Pedro Alves <pedro@codesourcery.com>
3730
3731 * inferiors.c (add_thread): Set last_status kind to
3732 TARGET_WAITKIND_IGNORE.
3733 * linux-low.c (cancel_breakpoint): Remove unnecessary regcache
3734 fetch. Use ptid_of. Avoid unnecessary get_lwp_thread calls.
3735 (linux_wait_1): Move `thread' local definition to block that uses
3736 it. Don't NULL initialize `event_child'.
3737 (linux_resume_one_thread): Avoid unnecessary get_lwp_thread calls.
3738 Alway set the thread's last_status to TARGET_WAITKIND_IGNORE.
3739 * linux-x86-low.c (x86_breakpoint_at): Read raw memory.
3740
bdabb078
PA
37412010-04-01 Pedro Alves <pedro@codesourcery.com>
3742
3743 * linux-low.c (get_stop_pc): Don't adjust the PC if stopped with
3744 an extended waitstatus, or by a watchpoint.
3745 (cancel_breakpoints_callback): Don't cancel a breakpoint if the
3746 thread was stepping or has been stopped by a watchpoint.
3747
d3bbe7a0
PA
37482010-04-01 Pedro Alves <pedro@codesourcery.com>
3749
3750 * mem-break.c (struct raw_breakpoint): New field shlib_disabled.
3751 (set_gdb_breakpoint_at): If GDB is inserting a breakpoint on top
3752 of another, then delete the previous, and validate all
3753 breakpoints.
3754 (validate_inserted_breakpoint): New.
3755 (delete_disabled_breakpoints): New.
3756 (validate_breakpoints): New.
3757 (check_mem_read): Validate breakpoints before trusting their
3758 shadow. Delete disabled breakpoints.
3759 (check_mem_write): Validate breakpoints before trusting they
3760 should be inserted. Delete disabled breakpoints.
3761 * mem-break.h (validate_breakpoints):
3762 * server.c (handle_query): Validate breakpoints when we see a
3763 qSymbol query.
3764
8b07ae33
PA
37652010-04-01 Pedro Alves <pedro@codesourcery.com>
3766
3767 * linux-low.c (linux_wait_1): Avoid setting need_step_over is
3768 there's a GDB breakpoint at stop_pc. Always report a trap to GDB
3769 if we could tell there's a GDB breakpoint at stop_pc.
3770 (need_step_over_p): Don't do a step over if we find a GDB
3771 breakpoint at the resume PC.
3772
3773 * mem-break.c (struct raw_breakpoint): New.
3774 (enum bkpt_type): New type `gdb_breakpoint'.
3775 (struct breakpoint): Delete the `PC', `old_data' and `inserted'
3776 fields. New field `raw'.
3777 (find_raw_breakpoint_at): New.
3778 (set_raw_breakpoint_at): Handle refcounting. Create a raw
3779 breakpoint instead.
3780 (set_breakpoint_at): Adjust.
3781 (delete_raw_breakpoint): New.
3782 (release_breakpoint): New.
3783 (delete_breakpoint): Rename to...
3784 (delete_breakpoint_1): ... this. Add proc parameter. Use
3785 release_breakpoint. Return ENOENT.
3786 (delete_breakpoint): Reimplement.
3787 (find_breakpoint_at): Delete.
3788 (find_gdb_breakpoint_at): New.
3789 (delete_breakpoint_at): Delete.
3790 (set_gdb_breakpoint_at): New.
3791 (delete_gdb_breakpoint_at): New.
3792 (gdb_breakpoint_here): New.
3793 (set_reinsert_breakpoint): Use release_breakpoint.
3794 (uninsert_breakpoint): Rename to ...
3795 (uninsert_raw_breakpoint): ... this.
3796 (uninsert_breakpoints_at): Adjust to handle raw breakpoints.
3797 (reinsert_raw_breakpoint): Change parameter type to
3798 raw_breakpoint.
3799 (reinsert_breakpoints_at): Adjust to handle raw breakpoints
3800 instead.
3801 (check_breakpoints): Adjust. Use release_breakpoint.
3802 (breakpoint_here): Rewrite using find_raw_breakpoint_at.
3803 (breakpoint_inserted_here): Ditto.
3804 (check_mem_read): Adjust to iterate over raw breakpoints instead.
3805 Don't trust the breakpoint's shadow if it is not inserted.
3806 (check_mem_write): Adjust to iterate over raw breakpoints instead.
3807 (delete_all_breakpoints): Adjust.
3808 (free_all_breakpoints): Mark all breakpoints as uninserted, and
3809 use delete_breakpoint_1.
3810
3811 * mem-break.h (breakpoints_supported): Delete declaration.
3812 (set_gdb_breakpoint_at): Declare.
3813 (gdb_breakpoint_here): Declare.
3814 (delete_breakpoint_at): Delete.
3815 (delete_gdb_breakpoint_at): Declare.
3816
3817 * server.h (struct raw_breakpoint): Forward declare.
3818 (struct process_info): New field `raw_breakpoints'.
3819
3820 * linux-x86-low.c (x86_insert_point, x86_remote_point): Handle Z0
3821 breakpoints.
3822
6bf5e0ba
PA
38232010-03-24 Pedro Alves <pedro@codesourcery.com>
3824
3825 * linux-low.c (status_pending_p_callback): Fix comment.
3826 (linux_wait_for_event_1): Move most of the internal breakpoint
3827 handling from here...
3828 (linux_wait_1): ... to here.
3829 (count_events_callback): New.
3830 (select_singlestep_lwp_callback): New.
3831 (select_event_lwp_callback): New.
3832 (cancel_breakpoints_callback): New.
3833 (select_event_lwp): New.
3834 (linux_wait_1): Simplify internal breakpoint handling. Give equal
3835 priority to all LWPs that have had events that should be reported
3836 to the client. Cancel breakpoints when about to reporting the
3837 event to the client, not while stopping lwps. No longer cancel
3838 finished single-steps here.
3839 (cancel_finished_single_step): Delete.
3840 (cancel_finished_single_steps): Delete.
3841
414a389f
PA
38422010-03-24 Pedro Alves <pedro@codesourcery.com>
3843
3844 * mem-break.c (enum bkpt_type): New.
3845 (struct breakpoint): New field `type'.
3846 (set_breakpoint_at): Change return type to struct breakpoint
3847 pointer. Set type to `other_breakpoint' by default.
3848 (delete_breakpoint): Rewrite, supporting more than one breakpoint
3849 in the breakpoint list.
3850 (delete_reinsert_breakpoints): Only delete reinsert breakpoints.
3851 (reinsert_breakpoint): Rename to ...
3852 (reinsert_raw_breakpoint): ... this.
3853 (reinsert_breakpoints_at): Adjust.
3854 * mem-break.h (struct breakpoint): Declare.
3855 (set_breakpoint_at): Change return type to struct breakpoint
3856 pointer.
3857
2280c721
PA
38582010-03-24 Pedro Alves <pedro@codesourcery.com>
3859
3860 * server.c (handle_query): Assign, not compare.
3861
d50171e4
PA
38622010-03-24 Pedro Alves <pedro@codesourcery.com>
3863
3864 Teach linux gdbserver to step-over-breakpoints.
3865
3866 * linux-low.c (can_hardware_single_step): New.
3867 (supports_breakpoints): New.
3868 (handle_extended_wait): If stopping threads, read the stop pc of
3869 the new cloned LWP.
3870 (get_pc): New.
3871 (get_stop_pc): Add `lwp' parameter. Handle it. Bail out if the
3872 low target doesn't support retrieving the PC.
3873 (add_lwp): Set last_resume_kind to resume_continue.
3874 (linux_attach_lwp_1): Adjust comments. Always set stop_expected.
3875 (linux_attach): Don't clear stop_expected. Set the lwp's
3876 last_resume_kind to resume_stop.
3877 (linux_detach_one_lwp): Don't check for removed breakpoints.
3878 (check_removed_breakpoint): Delete.
3879 (status_pending_p): Rename to ...
3880 (status_pending_p_callback): ... this. Don't check for removed
3881 breakpoints. Don't consider threads that are stopped from GDB's
3882 perspective.
3883 (linux_wait_for_lwp): Always read the stop_pc here.
3884 (cancel_breakpoint): New.
3885 (step_over_bkpt): New global.
3886 (linux_wait_for_event_1): Implement stepping over breakpoints.
3887 (gdb_wants_lwp_stopped): New.
3888 (gdb_wants_all_stopped): New.
3889 (linux_wait_1): Tag threads as gdb-wants-stopped. Cancel finished
3890 single-step traps here. Store the thread's last reported target
3891 wait status.
3892 (send_sigstop): Don't clear stop_expected. Always set it,
3893 instead.
3894 (mark_lwp_dead): Remove reference to pending_is_breakpoint.
3895 (cancel_finished_single_step): New.
3896 (cancel_finished_single_steps): New.
3897 (wait_for_sigstop): Don't cancel finished single-step traps here.
3898 (linux_resume_one_lwp): Don't check for removed breakpoints.
3899 Don't set `step' on non-hardware step archs.
3900 (linux_set_resume_request): Ignore resume_stop requests if already
3901 stopping or stopped. Set the lwp's last_resume_kind.
3902 (resume_status_pending_p): Don't check for removed breakpoints.
3903 (need_step_over_p): New.
3904 (start_step_over): New.
3905 (finish_step_over): New.
3906 (linux_resume_one_thread): Always queue a sigstop for resume_stop
3907 requests. Clear the thread's last reported target waitstatus.
3908 Don't use the `suspended' flag. Don't consider pending breakpoints.
3909 (linux_resume): Start a step-over if necessary.
3910 (proceed_one_lwp): New.
3911 (proceed_all_lwps): New.
3912 (unstop_all_lwps): New.
3913 * linux-low.h (struct lwp_info): Rewrite comment for the
3914 `suspended' flag. Add the `stop_pc' field. Delete the
3915 `pending_stop_pc' field. Tweak the `stepping' flag's comment.
3916 Add `'last_resume_kind' and `need_step_over' fields.
3917 * inferiors.c (struct thread_info): Delete, moved elsewhere.
3918 * mem-break.c (struct breakpoint): Delete `reinserting' flag.
3919 Delete `breakpoint_to_reinsert' field. New flag `inserted'.
3920 (set_raw_breakpoint_at): New.
3921 (set_breakpoint_at): Rewrite to use it.
3922 (reinsert_breakpoint_handler): Delete.
3923 (set_reinsert_breakpoint): New.
3924 (reinsert_breakpoint_by_bp): Delete.
3925 (delete_reinsert_breakpoints): New.
3926 (uninsert_breakpoint): Rewrite.
3927 (uninsert_breakpoints_at): New.
3928 (reinsert_breakpoint): Rewrite.
3929 (reinsert_breakpoints_at): New.
3930 (check_breakpoints): Rewrite.
3931 (breakpoint_here): New.
3932 (breakpoint_inserted_here): New.
3933 (check_mem_read): Adjust.
3934 * mem-break.h (breakpoints_supported, breakpoint_here)
3935 (breakpoint_inserted_here, set_reinsert_breakpoint): Declare.
3936 (reinsert_breakpoint_by_bp): Delete declaration.
3937 (delete_reinsert_breakpoints): Declare.
3938 (reinsert_breakpoint): Delete declaration.
3939 (reinsert_breakpoints_at): Declare.
3940 (uninsert_breakpoint): Delete declaration.
3941 (uninsert_breakpoints_at): Declare.
3942 (check_breakpoints): Adjust prototype.
3943 * server.h: Adjust include order.
3944 (struct thread_info): Declare here. Add a `last_status' field.
3945
30ba68cb
MS
39462010-03-23 Michael Snyder <msnyder@vmware.com>
3947
3948 * server.c (crc32): New function.
3949 (handle_query): Add handling for 'qCRC:' request.
3950
b9a881c2
PA
39512010-03-23 Pedro Alves <pedro@codesourcery.com>
3952
3953 * linux-x86-low.c (x86_linux_prepare_to_resume): Clear DR6 if the
3954 lwp had been stopped by a watchpoint.
3955
e92d13d5
PA
39562010-03-16 Pedro Alves <pedro@codesourcery.com>
3957
3958 * server.h (internal_error): Declare.
3959 (gdb_assert, ASSERT_FUNCTION, gdb_assert_fail): Define.
3960 * utils.c (internal_error): New function.
3961
64daa791
AS
39622010-03-15 Andreas Schwab <schwab@redhat.com>
3963
3964 * configure.srv: Fix typo setting srv_regobj.
3965
f52cd8cd
PA
39662010-03-15 Pedro Alves <pedro@codesourcery.com>
3967
3968 * linux-low.c (fetch_register): Avoid passing a non string literal
3969 format to `error'.
3970 (usr_store_inferior_registers): Ditto.
3971
93ae6fdc
PA
39722010-03-14 Pedro Alves <pedro@codesourcery.com>
3973
3974 * linux-low.c (linux_write_memory): Bail out early if peeking
3975 memory failed.
3976
c3adc08c
PA
39772010-03-14 Pedro Alves <pedro@codesourcery.com>
3978
3979 * linux-low.h (struct lwp_info): New fields
3980 `stopped_by_watchpoint' and `stopped_data_address'.
3981 * linux-low.c (linux_wait_for_lwp): Check for watchpoint triggers
3982 here, and cache them in the lwp object.
3983 (wait_for_sigstop): Check stopped_by_watchpoint lwp field
3984 directly.
3985 (linux_resume_one_lwp): Clear the lwp's stopped_by_watchpoint
3986 field.
3987 (linux_stopped_by_watchpoint): Rewrite.
3988 (linux_stopped_data_address): Rewrite.
3989
bce522a2
PA
39902010-03-06 Simo Melenius <simo.melenius@iki.fi>
3991
3992 * linux-low.c (linux_wait_for_lwp): Fetch the regcache after
3993 switching the current inferior, not before.
3994
90884b2b
L
39952010-03-01 H.J. Lu <hongjiu.lu@intel.com>
3996
3997 * Makefile.in (clean): Replace reg-i386.c, reg-x86-64.c,
3998 reg-i386-linux.c and reg-x86-64-linux.c with i386.c, amd64.c,
3999 i386-linux.c and amd64-linux.c.
4000 (reg-i386.o): Removed.
4001 (reg-i386.c): Likewise.
4002 (reg-i386-linux.o): Likewise.
4003 (reg-i386-linux.c): Likewise.
4004 (reg-x86-64.o): Likewise.
4005 (reg-x86-64.c): Likewise.
4006 (reg-x86-64-linux.o): Likewise.
4007 (reg-x86-64-linux.c): Likewise.
4008 (i386.o): New.
4009 (i386.c): Likewise.
4010 (i386-linux.o): Likewise.
4011 (i386-linux.c): Likewise.
4012 (amd64.o): Likewise.
4013 (amd64.c): Likewise.
4014 (amd64-linux.o): Likewise.
4015 (amd64-linux.c): Likewise.
4016
4017 * configure.srv (srv_i386_regobj): New.
4018 (srv_i386_linux_regobj): Likewise.
4019 (srv_amd64_regobj): Likewise.
4020 (srv_amd64_linux_regobj): Likewise.
4021 (srv_i386_32bit_xmlfiles): Likewise.
4022 (srv_i386_64bit_xmlfiles): Likewise.
4023 (srv_i386_xmlfiles): Likewise.
4024 (srv_amd64_xmlfiles): Likewise.
4025 (srv_i386_linux_xmlfiles): Likewise.
4026 (srv_amd64_linux_xmlfiles): Likewise.
4027 (i[34567]86-*-cygwin*): Set srv_regobj to $srv_i386_regobj. Set
4028 srv_xmlfiles to $srv_i386_xmlfiles.
4029 (i[34567]86-*-mingw32ce*): Likewise.
4030 (i[34567]86-*-mingw*): Likewise.
4031 (i[34567]86-*-nto*): Likewise.
4032 (i[34567]86-*-linux*): Set srv_regobj to $srv_i386_linux_regobj
4033 and $srv_amd64_linux_regobj. Set srv_xmlfiles to
4034 $srv_i386_linux_xmlfiles and $srv_amd64_linux_xmlfiles.
4035 (x86_64-*-linux*): Likewise.
4036
4037 * linux-x86-low.c (init_registers_x86_64_linux): Removed.
4038 (init_registers_amd64_linux): New.
4039 (x86_arch_setup): Replace init_registers_x86_64_linux with
4040 init_registers_amd64_linux.
4041
193f13e6
MK
40422010-02-23 Maxim Kuvyrkov <maxim@codesourcery.com>
4043
4044 * configure.ac: Check for libdl. If it is not available link against
4045 static libthread_db.
4046 * configure: Regenerate.
4047
85d721b8
PA
40482010-02-22 Pedro Alves <pedro@codesourcery.com>
4049
4050 PR9605
4051
4052 * i386-low.c (i386_length_and_rw_bits): Throw a fatal error if
4053 handing a read watchpoint.
4054 (i386_low_insert_watchpoint): Read watchpoints aren't supported.
4055
6076632b
DE
40562010-02-12 Doug Evans <dje@google.com>
4057
4058 * linux-low.c (linux_supports_tracefork_flag): Document.
4059 (linux_look_up_symbols): Add comment.
4060
3327ccf7
L
40612010-02-03 H.J. Lu <hongjiu.lu@intel.com>
4062
4063 * regcache.c (supply_register): Clear regcache if buf is NULL.
4064
0718675c 40652010-02-02 Nicolas Roche <roche@sourceware.org>
3327ccf7 4066 Joel Brobecker <brobecker@adacore.com>
0718675c
JB
4067
4068 * inferiors.c (find_inferior): Add function documentation.
4069 (unloaded_dll): Handle the case where the unloaded dll has not
4070 been previously registered in the dll list.
4071
177321bd
DJ
40722010-02-01 Daniel Jacobowitz <dan@codesourcery.com>
4073
4074 * linux-arm-low.c (thumb_breakpoint_len): Delete.
4075 (thumb2_breakpoint): New.
4076 (arm_breakpoint_at): Check for Thumb-2 breakpoints.
4077
2b009048
DJ
40782010-01-29 Daniel Jacobowitz <dan@codesourcery.com>
4079
4080 * linux-low.c (get_stop_pc): Check for SIGTRAP.
4081 (linux_wait_for_event_1): Handle SIGILL and SIGSEGV as possible
4082 breakpoints.
4083
3be029c7
PA
40842010-01-21 Pedro Alves <pedro@codesourcery.com>
4085
4086 * linux-ppc-low.c (ppc_arch_setup): Adjust to regcache changes.
4087
18f5de3b
JK
40882010-01-21 Jan Kratochvil <jan.kratochvil@redhat.com>
4089
4090 * linux-s390-low.c (s390_collect_ptrace_register)
4091 (s390_supply_ptrace_register): Adjust it for the new regcache parameter.
4092
3743bb4f
DE
40932010-01-21 Doug Evans <dje@google.com>
4094
14ce3065
DE
4095 * linux-low.c (PTRACE_ARG3_TYPE): Change from long to void*.
4096 (PTRACE_ARG4_TYPE): New macro.
4097 (handle_extended_wait): Cast ptrace arg4 to PTRACE_ARG4_TYPE.
4098 (linux_wait_for_event_1, linux_resume_one_lwp): Ditto.
4099 (fetch_register): Cast to uintptr_t before casting to PTRACE_ARG3_TYPE.
4100 (usr_store_inferior_registers): Ditto.
4101 (linux_read_memory, linux_write_memory): Ditto.
4102 (linux_test_for_tracefork): Ditto.
4103
3743bb4f
DE
4104 * linux-arm-low.c: Remove redundant include of gdb_proc_service.h.
4105 Only include elf.h if gdb_proc_service.h didn't include linux/elf.h.
4106
8b315be5
PA
41072010-01-21 Pedro Alves <pedro@codesourcery.com>
4108
4109 * proc-service.c (ps_lgetregs): Don't refetch registers from the
4110 target.
4111
85492558
PA
41122010-01-21 Pedro Alves <pedro@codesourcery.com>
4113
4114 * spu-low.c (spu_fetch_registers, spu_store_registers): Change
4115 prototype to take a regcache. Adjust.
4116
442ea881
PA
41172010-01-20 Pedro Alves <pedro@codesourcery.com>
4118
4119 * regcache.h (struct thread_info): Forward declare.
4120 (struct regcache): New.
4121 (new_register_cache): Adjust prototype.
4122 (get_thread_regcache): Declare.
4123 (free_register_cache): Adjust prototype.
4124 (registers_to_string, registers_from_string): Ditto.
4125 (supply_register, supply_register_by_name, collect_register)
4126 (collect_register_as_string, collect_register_by_name): Ditto.
4127 * regcache.c (struct inferior_regcache_data): Delete.
4128 (get_regcache): Rename to ...
4129 (get_thread_regcache): ... this. Adjust. Switch inferior before
4130 fetching registers.
4131 (regcache_invalidate_one): Adjust.
4132 (regcache_invalidate): Fix prototype.
4133 (new_register_cache): Return the new register cache.
4134 (free_register_cache): Change prototype.
4135 (realloc_register_cache): Adjust.
4136 (registers_to_string): Change prototype to take a regcache. Adjust.
4137 (registers_from_string): Ditto.
4138 (register_data): Ditto.
4139 (supply_register): Ditto.
4140 (supply_register_by_name): Ditto.
4141 (collect_register): Ditto.
4142 (collect_register_as_string): Ditto.
4143 (collect_register_by_name): Ditto.
4144 * server.c (process_serial_event): Adjust.
4145 * linux-low.h (regset_fill_func, regset_store_func): Change
4146 prototype.
4147 (get_pc, set_pc, collect_ptrace_register, supply_ptrace_register):
4148 Change prototype.
4149 * linux-low.c (get_stop_pc): Adjust.
4150 (check_removed_breakpoint): Adjust.
4151 (linux_wait_for_event): Adjust.
4152 (linux_resume_one_lwp): Adjust.
4153 (fetch_register): Add regcache parameter. Adjust.
4154 (usr_store_inferior_registers): Ditto.
4155 (regsets_fetch_inferior_registers): Ditto.
4156 (regsets_store_inferior_registers): Ditto.
4157 (linux_fetch_registers, linux_store_registers): Ditto.
4158 * i387-fp.c (i387_cache_to_fsave): Change prototype to take a
4159 regcache. Adjust.
43aaf8b6
PA
4160 (i387_fsave_to_cache, i387_cache_to_fxsave, i387_fxsave_to_cache):
4161 Ditto.
442ea881
PA
4162 * i387-fp.h (i387_cache_to_fsave, i387_fsave_to_cache): Change
4163 prototype to take a regcache.
4164 (i387_cache_to_fxsave, i387_fxsave_to_cache): Ditto.
4165 * remote-utils.c (convert_ascii_to_int, outreg)
4166 (prepare_resume_reply): Change prototype to take a regcache.
4167 Adjust.
4168 * target.h (struct target_ops) <fetch_registers, store_registers>:
4169 Change prototype to take a regcache.
4170 (fetch_inferior_registers, store_inferior_registers): Change
4171 prototype to take a regcache. Adjust.
4172 * proc-service.c (ps_lgetregs): Adjust.
4173 * linux-x86-low.c (x86_fill_gregset, x86_store_gregset)
4174 (x86_fill_fpregset, x86_store_fpregset, x86_fill_fpxregset)
4175 (x86_store_fpxregset, x86_get_pc, x86_set_pc): Change prototype to
4176 take a regcache. Adjust.
4177 * linux-arm-low.c (arm_fill_gregset, arm_store_gregset)
4178 (arm_fill_wmmxregset, arm_store_wmmxregset, arm_fill_vfpregset)
4179 (arm_store_vfpregset, arm_get_pc, arm_set_pc):
4180 (arm_breakpoint_at): Change prototype to take a regcache. Adjust.
4181 * linux-cris-low.c (cris_get_pc, cris_set_pc)
4182 (cris_cannot_fetch_register):
4183 (cris_breakpoint_at): Change prototype to take a regcache.
4184 Adjust.
4185 * linux-crisv32-low.c (cris_get_pc, cris_set_pc,
4186 cris_reinsert_addr, cris_write_data_breakpoint): Change prototype
4187 to take a regcache. Adjust.
4188 (cris_breakpoint_at, cris_insert_point, cris_remove_point):
4189 Adjust.
4190 * linux-m32r-low.c (m32r_get_pc, m32r_set_pc): Change prototype to
4191 take a regcache. Adjust.
4192 * linux-m68k-low.c (m68k_fill_gregset, m68k_store_gregset)
4193 (m68k_fill_fpregset, m68k_store_fpregset, m68k_get_pc,
4194 (m68k_set_pc): Change prototype to take a regcache. Adjust.
4195 * linux-mips-low.c (mips_get_pc):
4196 (mips_set_pc): Change prototype to take a regcache. Adjust.
4197 (mips_reinsert_addr): Adjust.
4198 (mips_collect_register): Change prototype to take a regcache.
4199 Adjust.
4200 (mips_supply_register):
4201 (mips_collect_register_32bit, mips_supply_register_32bit)
4202 (mips_fill_gregset, mips_store_gregset, mips_fill_fpregset)
4203 (mips_store_fpregset): Ditto.
43aaf8b6
PA
4204 * linux-ppc-low.c (ppc_supply_ptrace_register)
4205 (ppc_supply_ptrace_register): Ditto.
442ea881
PA
4206 (parse_spufs_run): Adjust.
4207 (ppc_get_pc, ppc_set_pc, ppc_fill_gregset, ppc_fill_vsxregset)
4208 (ppc_store_vsxregset, ppc_fill_vrregset, ppc_store_vrregset)
4209 (ppc_fill_evrregset, ppc_store_evrregset): Change prototype to
4210 take a regcache. Adjust.
4211 * linux-s390-low.c (s390_collect_ptrace_register)
4212 (s390_supply_ptrace_register, s390_fill_gregset, s390_get_pc)
4213 (s390_set_pc): Change prototype to take a regcache. Adjust.
4214 (s390_arch_setup): Adjust.
4215 * linux-sh-low.c (sh_get_pc, sh_breakpoint_at)
4216 (sh_fill_gregset): Change prototype to take a regcache. Adjust.
4217 * linux-sparc-low.c (sparc_fill_gregset_to_stack)
4218 (sparc_fill_gregset, sparc_store_gregset_from_stack)
4219 (sparc_store_gregset, sparc_get_pc): Change prototype to take a
4220 regcache. Adjust.
4221 (sparc_breakpoint_at): Adjust.
4222 * linux-xtensa-low.c (xtensa_fill_gregset):
4223 (xtensa_store_gregset):
4224 (xtensa_fill_xtregset, xtensa_store_xtregset, xtensa_get_pc)
4225 (xtensa_set_pc): Change prototype to take a regcache. Adjust.
4226 * nto-low.c (nto_fetch_registers, nto_store_registers): Change
4227 prototype to take a regcache. Adjust.
4228 * win32-arm-low.c (arm_fetch_inferior_register)
4229 (arm_store_inferior_register): Change prototype to take a
4230 regcache. Adjust.
4231 * win32-i386-low.c (i386_fetch_inferior_register)
4232 (i386_store_inferior_register): Change prototype to take a
4233 regcache. Adjust.
4234 * win32-low.c (child_fetch_inferior_registers)
4235 (child_store_inferior_registers): Change prototype to take a
4236 regcache. Adjust.
4237 (win32_wait): Adjust.
4238 (win32_fetch_inferior_registers): Change prototype to take a
4239 regcache. Adjust.
4240 (win32_store_inferior_registers): Adjust.
4241 * win32-low.h (struct win32_target_ops) <fetch_inferior_register,
4242 store_inferior_register>: Change prototype to take a regcache.
4243
60c3d7b0
DE
42442010-01-20 Doug Evans <dje@google.com>
4245
4246 * linux-low.c (linux_create_inferior): Wrap use of __SIGRTMIN in
4247 #ifdef.
4248 (linux_wait_for_event1, linux_init_signals): Ditto.
ec8ebe72 4249 (W_STOPCODE): Provide definition if missing.
60c3d7b0 4250
dc146f7c
VP
42512010-01-13 Vladimir Prus <vladimir@codesourcery.com>
4252
4253 * linux-low.c (linux_core_of_thread): New.
4254 (compare_ints, show_process, list_threads): New.
4255 (linux_qxfer_osdata): Report threads and cores.
4256 (linux_target_op): Register linux_core_of_thread.
4257 * remote-utils.c (prepare_resume_reply): Report the core.
4258 (buffer_xml_printf): Support %d specifier.
4259 * server.c (handle_threads_qxfer_proper, handle_threads_qxfer):
4260 New.
4261 (handle_query): Handle qXfer:threads. Announce availability
4262 thereof.
4263 * target.h (struct target_ops): New field core_of_thread.
4264
7803799a
UW
42652010-01-04 Ulrich Weigand <uweigand@de.ibm.com>
4266
4267 * Makefile.in (clean): Remove new generated files.
4268 (reg-s390.o, reg-s390.c): Remove rules.
4269 (reg-s390x.o, reg-s390x.c): Likewise.
4270 (s390-linux32.o, s390-linux32.c): Add rules.
4271 (s390-linux64.o, s390-linux64.c): Likewise.
4272 (s390x-linux64.o, s390x-linux64.c): Likewise.
4273 * configure.srv (s390*-*-linux*): Update srv_regobj and srv_xmlfiles.
4274 * linux-s390-low.c: Include <elf.h>.
4275 (HWCAP_S390_HIGH_GPRS): Define if undefined.
4276 (init_registers_s390): Remove prototype.
4277 (init_registers_s390x): Likewise.
4278 (init_registers_s390_linux32): Add prototype.
4279 (init_registers_s390_linux64): Likewise.
4280 (init_registers_s390x_linux64): Likewise.
4281 (s390_num_regs_3264): New define.
4282 (s390_regmap_3264): New global variable.
4283 (s390_cannot_fetch_register): Remove obsolete check.
4284 (s390_cannot_store_register): Likewise.
4285 (s390_collect_ptrace_register): Handle upper/lower register halves.
4286 (s390_supply_ptrace_register): Likewise.
4287 (s390_fill_gregset): Update to register number changes.
4288 (s390_get_hwcap): New routine.
4289 (s390_arch_setup): Detect 32-bit process running on 64-bit system.
4290 Install appropriate regmap and register set.
4291
6e7ffa39
JB
42922010-01-01 Joel Brobecker <brobecker@adacore.com>
4293
4294 * server.c (gdbserver_version): Update copyright year to 2010.
4295 * gdbreplay.c (gdbreplay_version): Likewise.
4296
957f3f49
DE
42972009-12-28 Doug Evans <dje@google.com>
4298
4299 * linux-low.c: Delete inclusion of ansidecl.h, elf/common.h,
4300 elf/external.h. Include <elf.h> instead but only if necessary.
4301
ca5c370d
PA
43022009-12-28 Pedro Alves <pedro@codesourcery.com>
4303
4304 * linux-low.c (linux_remove_process): Remove `detaching'
4305 parameter. Don't release/detach from thread_db here.
4306 (linux_kill): Release/detach from thread_db here, ...
4307 (linux_detach): ... and here, before actually detaching.
4308 (linux_wait_1): ... and here, when a process exits.
4309 * thread-db.c (any_thread_of): New.
4310 (thread_db_free): Switch the current inferior to a thread of the
4311 passed in process.
4312
4ee62156
DE
43132009-12-21 Doug Evans <dje@google.com>
4314
d90e6a88
DE
4315 * linux-x86-low.c: Delete outdated comment about Elf32_Phdr.
4316
c5f62d5f
DE
4317 * linux-low.c (kill_lwp): Use __NR_tkill instead of SYS_tkill.
4318 Move definition of tkill_failed to ifdef __NR_tkill to avoid gcc
4319 warning ifndef __NR_tkill. Move setting of errno there too.
4320 Delete unnecessary resetting of errno after syscall.
4321 Minor comment changes to match gdb/linux-nat.c:kill_lwp.
4322
10e86dd7
DE
4323 * configure.ac: Check for dladdr.
4324 * config.in: Regenerate.
4325 * configure: Regenerate.
4326 * thread-db.c (dladdr_to_soname): Only define ifdef HAVE_DLADDR.
4327 (try_thread_db_load): Update.
4328
4ee62156
DE
4329 * linux-low.c (my_waitpid): Delete unnecessary prototype.
4330
00f515da
DE
43312009-12-18 Doug Evans <dje@google.com>
4332
e9464885
DE
4333 * event-loop.c: Include unistd.h if it exists.
4334
07d4f67e
DE
4335 * linux-low.c (my_waitpid): Move definition away from being in
4336 between linux_tracefork_child/linux_test_for_tracefork.
4337
00f515da
DE
4338 * gdb_proc_service.h (psaddr_t): Fix type.
4339 * thread-db.c (thread_db_info.td_thr_tls_get_addr_p): Fix
4340 signature to match glibc.
4341
1de1badb
DE
43422009-12-16 Doug Evans <dje@google.com>
4343
4344 * linux-low.c (linux_read_memory): Fix argument to read.
4345
aeeb81d1
PA
43462009-11-26 Pedro Alves <pedro@codesourcery.com>
4347
4348 * win32-low.c (get_child_debug_event): On EXIT_THREAD_DEBUG_EVENT
4349 events, don't leave current_inferior pointing at null.
4350
10357975
PA
43512009-11-26 Pedro Alves <pedro@codesourcery.com>
4352
4353 * win32-low.c (LOG): Delete.
4354 (OUTMSG): Output to stderr.
4355 (OUTMSG2): Conditionalize on `debug_threads' variable, instead of
4356 on compile time LOG macro.
4357 (win32_wait): Fix debug output.
4358
cf6e3471
PA
43592009-11-26 Pedro Alves <pedro@codesourcery.com>
4360
4361 * win32-low.c (win32_add_one_solib): If the dll name is
4362 "ntdll.dll", prepend the system directory to the dll path.
4363
0c85e18e
MK
43642009-11-17 Daniel Jacobowitz <dan@codesourcery.com>
4365
4366 * m68k-tdep.c (m68k_gdbarch_init): Reuse previous initialization.
4367
9ac544ce 43682009-11-17 Nathan Sidwell <nathan@codesourcery.com>
889bf7c5 4369 Vladimir Prus <vladimir@codesourcery.com>
9ac544ce
MK
4370
4371 * Makefile.in (reg-cf.o, reg-cf.c): New targets.
4372 * configure.ac: Check for __mcoldfire__ and set
4373 gdb_cv_m68k_is_coldfire.
4374 * configure.srv: Use gdb_cv_m68k_is_coldfire to select between
4375 reg-cf.o and reg-m68k.o.
4376 * configure: Regenerated.
4377
fd7dd3e6
PA
43782009-11-16 Pedro Alves <pedro@codesourcery.com>
4379
4380 * linux-low.c (linux_remove_process): Add `detaching' parameter.
4381 Pass it to thread_db_free.
4382 (linux_kill, linux_detach, linux_wait_1): Adjust to pass the
4383 proper `detaching' argument to linux_remove_process.
4384 * linux-low.h (thread_db_free): Add `detaching' parameter.
4385 * thread-db.c (thread_db_init): Pass false as `detaching' argument
4386 to thread_db_free.
4387 (thread_db_free): Add `detaching' parameter. Only
4388 call td_ta_clear_event if detaching from process.
4389
75aa492e
MK
43902009-11-12 Maxim Kuvyrkov <maxim@codesourcery.com>
4391
4392 * thread-db.c (thread_db_free): Fix typo.
4393
21e1bee4
PP
43942009-11-11 Paul Pluzhnikov <ppluzhnikov@google.com>
4395
4396 PR gdb/10838
4397 * thread-db.c (thread_db_free): Call td_ta_clear_event.
4398
8838b45e
NS
43992009-11-03 Nathan Sidwell <nathan@codesourcery.com>
4400
4401 * configure.ac (i[34567]86-*): Check if we're targetting x86-64
4402 with an i686 compiler.
4403 * configure.srv (i[34567]86-*-linux*): Pull in x86-64 handling if
4404 needed.
4405 * configure: Rebuilt.
4406
8a35fb51
SL
44072009-10-29 Sandra Loosemore <sandra@codesourcery.com>
4408
4409 PR gdb/10783
4410
4411 * server.c (handle_search_memory_1): Correct read_addr initialization
4412 in loop for searching subsequent chunks.
4413
96f15937
PP
44142009-10-29 Paul Pluzhnikov <ppluzhnikov@google.com>
4415
4416 * configure.ac: New --with-libthread-db option.
4417 * thread-db.c: Allow direct dependence on libthread_db.
4418 (thread_db_free): Adjust.
4419 * config.in: Regenerate.
4420 * configure: Likewise.
889bf7c5 4421
5f7d1694
PP
44222009-10-28 Paul Pluzhnikov <ppluzhnikov@google.com>
4423
4424 PR gdb/10757
4425 * thread-db.c (attach_thread): New function.
4426 (maybe_attach_thread): Return success/failure.
4427 (find_new_threads_callback): Adjust.
889bf7c5
PA
4428 (thread_db_find_new_threads): Loop until no new threads.
4429
88e3b899
PA
44302009-10-13 Pedro Alves <pedro@codesourcery.com>
4431
4432 * proc-service.c (ps_lgetregs): Formatting.
4433
cdbfd419
PP
44342009-10-08 Paul Pluzhnikov <ppluzhnikov@google.com>
4435
4436 * acinclude.m4: (SRV_CHECK_THREAD_DB, SRV_CHECK_TLS_GET_ADDR): Remove.
4437 * configure.ac: Adjust.
4438 * linux-low.h (struct process_info_private): Move members to struct
4439 thread_db.
4440 (thread_db_free, thread_db_handle_monitor_command): New prototype.
4441 * linux-low.c (linux_remove_process): Adjust.
4442 (linux_wait_for_event_1, linux_look_up_symbols): Likewise.
4443 * server.c (handle_query): Move code ...
4444 (handle_monitor_command): ... here. New function.
4445 * target.h (struct target_ops): New member.
4446 * thread-db.c (struct thread_db): New.
4447 (libthread_db_search_path): New variable.
4448 (thread_db_create_event, thread_db_enable_reporting)
4449 (find_one_thread, maybe_attach_thread, find_new_threads_callback)
4450 (thread_db_find_new_threads, (thread_db_get_tls_address): Adjust.
4451 (try_thread_db_load_1, dladdr_to_soname): New functions.
4452 (try_thread_db_load, thread_db_load_search): New functions.
4453 (thread_db_init): Search for libthread_db.
4454 (thread_db_free): New function.
4455 (thread_db_handle_monitor_command): Likewise.
4456 * config.in: Regenerate.
4457 * configure: Regenerate.
889bf7c5 4458
4168d2d6
UW
44592009-09-27 Ulrich Weigand <uweigand@de.ibm.com>
4460
4461 * spu-low.c (spu_kill): Wait for inferior to terminate.
4462 Call clear_inferiors.
4463 (spu_detach): Call clear_inferiors.
4464
81ecdfbb
RW
44652009-08-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4466
4467 * aclocal.m4: Regenerate.
4468 * config.in: Likewise.
4469 * configure: Likewise.
4470
0b9ff2c0
UW
44712009-07-31 Ulrich Weigand <uweigand@de.ibm.com>
4472
4473 * linux-ppc-low.c (INSTR_SC, NR_spu_run): Define.
4474 (parse_spufs_run): New function.
4475 (ppc_get_pc, ppc_set_pc): Detect and handle SPU PC.
4476 (ppc_breakpoint_at): Handle SPU breakpoints.
4477
efcbbd14
UW
44782009-07-31 Ulrich Weigand <uweigand@de.ibm.com>
4479
4480 * linux-low.c: Include <sys/stat.h> and <sys/vfs.h>.
4481 (SPUFS_MAGIC): Define.
4482 (spu_enumerate_spu_ids): New function.
4483 (linux_qxfer_spu): New function.
4484 (linux_target_ops): Install linux_qxfer_spu.
4485
f4d9bade
UW
44862009-07-31 Ulrich Weigand <uweigand@de.ibm.com>
4487
4488 * configure.srv (powerpc*-*-linux*): Add powerpc-cell32l.o
4489 and powerpc-cell64l.o to srv_regobj. Add rs6000/powerpc-cell32l.xml
4490 and rs6000/powerpc-cell64l.xml to srv_xmlfiles.
4491 * Makefile.in (powerpc-cell32l.o, powerpc-cell32l.c): New rules.
4492 (powerpc-cell64l.o, powerpc-cell64l.c): Likewise.
4493 (clean): Handle powerpc-cell32l.c and powerpc-cell64l.c.
4494 * linux-ppc-low.c (PPC_FEATURE_CELL): Define.
4495 (init_registers_powerpc_cell32l): Add prototype.
4496 (init_registers_powerpc_cell64l): Likewise.
4497 (ppc_arch_setup): Detect Cell/B.E. architecture.
4498
96e946ca
RW
44992009-07-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4500
4501 * Makefile.in (datarootdir): New variable.
4502
58d6951d
DJ
45032009-07-28 Daniel Jacobowitz <dan@codesourcery.com>
4504
4505 * linux-low.c (linux_write_memory): Update debugging output.
4506 * Makefile.in (clean): Add new descriptions.
4507 (arm-with-vfpv2.o, arm-with-vfpv2.c, arm-with-vfpv3.o)
4508 (arm-with-vfpv3.c, arm-with-neon.o, arm-with-neon.c): New rules.
4509 * configure.srv: Add new files for arm*-*-linux*.
4510 * linux-arm-low.c: Add new declarations.
4511 (PTRACE_GETVFPREGS, PTRACE_SETVFPREGS): Define if undefined.
4512 (arm_hwcap, HWCAP_VFP, HWCAP_IWMMXT, HWCAP_NEON, HWCAP_VFPv3)
4513 (HWCAP_VFPv3D16): New.
4514 (arm_fill_wmmxregset, arm_store_wmmxregset): Check HWCAP_IWMMXT
4515 instead of __IWMMXT__.
4516 (arm_fill_vfpregset, arm_store_vfpregset, arm_get_hwcap)
4517 (arm_arch_setup): New.
4518 (target_regsets): Remove #ifdef. Add VFP regset.
4519 (the_low_target): Use arm_arch_setup.
4520
12b42a12
DJ
45212009-07-28 Daniel Jacobowitz <dan@codesourcery.com>
4522
4523 * linux-low.c (linux_kill_one_lwp): Adjust kernel workaround to skip
4524 the main thread again.
4525
ac8c974e
AR
45262009-07-06 Aleksandar Ristovski <aristovski@qnx.com>
4527
4528 Adding Neutrino gdbserver.
4529 * configure: Regenerated.
4530 * configure.ac: Add case for srv_qnx and set LIBS accordingly.
4531 * configure.srv (i[34567]86-*-nto*): New target.
4532 * nto-low.c, nto-low.h, nto-x86-low.c: New files.
4533 * remote-utils.c [__QNX__]: Include sys/iomgr.h
4534 (nto_comctrl) [__QNX__]: New function.
4535 (enable_async_io, disable_async_io) [__QNX__]: Call nto_comctrl.
4536
4424e0c3 45372009-07-05 Danny Backx <dannybackx@users.sourceforge.net>
7437790a
PA
4538
4539 * configure.srv (i[34567]86-*-mingw32ce*): Add i386-low.o to
4540 srv_tgtobj.
4541
912cf4ba
PA
45422009-07-04 Danny Backx <dannybackx@users.sourceforge.net>
4543 Pedro Alves <pedro@codesourcery.com>
4544
4545 * win32-i386-low.c (i386_get_thread_context): Handle systems that
4546 don't support CONTEXT_EXTENDED_REGISTERS.
4547 (i386_win32_breakpoint, i386_win32_breakpoint_len): New.
4548 (the_low_target): Install them.
4549 * win32-low.c (get_child_debug_event): Handle WaitForDebugEvent
4550 failing with ERROR_PIPE_NOT_CONNECTED.
4551
aa5ca48f
DE
45522009-06-30 Doug Evans <dje@google.com>
4553 Pierre Muller <muller@ics.u-strasbg.fr>
4554
4555 Add h/w watchpoint support to x86-linux, win32-i386.
4556 * Makefile.in (SFILES): Add i386-low.c
4557 (i386_low_h): Define.
4558 (i386-low.o): Add dependencies.
4559 (linux-x86-low.o): Add i386-low.h dependency.
4560 (win32-i386-low.o): Ditto.
4561 * i386-low.c: New file.
4562 * i386-low.h: New file.
4563 * configure.srv (i[34567]86-*-cygwin*): Add i386-low.o to srv_tgtobj.
4564 (i[34567]86-*-linux*, i[34567]86-*-mingw*, x86_64-*-linux*): Ditto.
4565 * linux-low.c (linux_add_process): Initialize arch_private.
4566 (linux_remove_process): Free arch_private.
4567 (add_lwp): Initialize arch_private.
4568 (delete_lwp): Free arch_private.
4569 (linux_resume_one_lwp): Call the_low_target.prepare_to_resume if
4570 provided.
4571 * linux-low.h (process_info_private): New member arch_private.
4572 (lwp_info): New member arch_private.
4573 (linux_target_ops): New members new_process, new_thread,
4574 prepare_to_resume.
4575 (ptid_of): New macro.
4576 * linux-x86-low.c: Include stddef.h, i386-low.h.
4577 (arch_process_info): New struct.
4578 (arch_lwp_info): New struct.
4579 (x86_linux_dr_get, x86_linux_dr_set): New functions.
4580 (i386_dr_low_set_addr, i386_dr_low_set_control): New functions.
4581 (i386_dr_low_get_status): New function.
4582 (x86_insert_point, x86_remove_point): New functions.
4583 (x86_stopped_by_watchpoint): New function.
4584 (x86_stopped_data_address): New function.
4585 (x86_linux_new_process, x86_linux_new_thread): New functions.
4586 (x86_linux_prepare_to_resume): New function.
4587 (the_low_target): Add entries for insert_point, remove_point,
4588 stopped_by_watchpoint, stopped_data_address, new_process, new_thread,
4589 prepare_to_resume.
4590 * server.c (debug_hw_points): New global.
4591 (monitor_show_help): Document set debug-hw-points.
4592 (handle_query): Process "set debug-hw-points".
4593 * server.h (debug_hw_points): Declare.
4594 (paddress): Declare.
4595 * utils.c (NUMCELLS, CELLSIZE): New macros.
4596 (get_sell, xsnprintf, paddress): New functions.
4597 * win32-arm-low.c (the_low_target): Add entries for insert_point,
4598 remove_point, stopped_by_watchpoint, stopped_data_address.
4599 * win32-i386-low.c: Include i386-low.h.
4600 (debug_reg_state): Replaces dr.
4601 (i386_dr_low_set_addr, i386_dr_low_set_control): New functions.
4602 (i386_dr_low_get_status): New function.
4603 (i386_insert_point, i386_remove_point): New functions.
4604 (i386_stopped_by_watchpoint): New function.
4605 (i386_stopped_data_address): New function.
4606 (i386_initial_stuff): Update.
4607 (get_thread_context,set_thread_context,i386_thread_added): Update.
4608 (the_low_target): Add entries for insert_point,
4609 remove_point, stopped_by_watchpoint, stopped_data_address.
4610 * win32-low.c (win32_insert_watchpoint): New function.
4611 (win32_remove_watchpoint): New function.
4612 (win32_stopped_by_watchpoint): New function.
4613 (win32_stopped_data_address): New function.
4614 (win32_target_ops): Add entries for insert_watchpoint,
4615 remove_watchpoint, stopped_by_watchpoint, stopped_data_address.
4616 * win32-low.h (win32_target_ops): New members insert_point,
4617 remove_point, stopped_by_watchpoint, stopped_data_address.
4618
d993e290
PA
46192009-06-25 Pedro Alves <pedro@codesourcery.com>
4620
4621 * server.c (process_serial_event): Re-return unsupported, not
4622 error, if the type isn't recognized. Re-allow supporting only
4623 insert or remove packets. Also call require_running for
4624 breakpoints. Add missing break statement to default case. Tidy.
4625 * target.h (struct target_ops): Rename insert_watchpoint to
4626 insert_point, and remove_watchpoint to remove_point.
4627
4628 * linux-low.h (struct linux_target_ops): Likewise.
4629 * linux-low.c (linux_insert_watchpoint): Rename to ...
4630 (linux_insert_point): ... this. Adjust.
4631 (linux_remove_watchpoint): Rename to ...
4632 (linux_remove_point): ... this. Adjust.
4633 (linux_target_ops): Adjust.
4634 * linux-crisv32-low.c (cris_insert_watchpoint): Rename to ...
4635 (cris_insert_point): ... this.
4636 (cris_remove_watchpoint): Rename to ...
4637 (cris_remove_point): ... this.
4638 (the_low_target): Adjust.
4639
0f54c268
PM
46402009-06-24 Pierre Muller <muller@ics.u-strasbg.fr>
4641
4642 * server.c (handle_v_kill): Pass signal_pid to
4643 kill_inferior if multi_process is zero.
4644
c6314022
AR
46452009-06-23 Aleksandar Ristovski <aristovski@qnx.com>
4646
4647 * server.c (process_serial_event): Add support for Z0 and Z1 packet.
4648 * target.h (target_ops): Comment for *_watchpoint to make it clear
4649 the functions can get types '0' and '1'.
4650
4463ce24
AR
46512009-06-22 Aleksandar Ristovski <aristovski@qnx.com>
4652
4653 * linux-low.c (usr_fetch_inferior_registers): Remove check for regno 0.
4654 * proc-service.c (ps_lgetregs): Pass -1 to fetch all registers.
4655 * regcache.c (get_regcache): Likewise.
4656 * spu-low.c (spu_fetch_registers): Remove 0 to -1 conversion.
4657 * win32-low.c (child_fetch_inferior_registers): Remove check for
4658 regno 0.
4659
cf8fd78b
PA
46602009-06-19 Aleksandar Ristovski <aristovski@qnx.com>
4661 Pedro Alves <pedro@codesourcery.com>
4662
4663 * target.h (struct target_ops) <supports_multi_process>: New
4664 callback.
4665 (target_supports_multi_process): New.
4666 * server.c (handle_query): Even if GDB reports support, only
4667 enable multi-process if the target also supports it. Report
4668 multi-process support only if the target backend supports it.
4669 * linux-low.c (linux_supports_multi_process): New function.
4670 (linux_target_ops): Install it as target_supports_multi_process
4671 callback.
4672
47c0c975
DE
46732009-05-24 Doug Evans <dje@google.com>
4674
e09875d4
DE
4675 Global renaming of find_thread_pid to find_thread_ptid.
4676 * server.h (find_thread_ptid): Renamed from find_thread_pid.
4677 * inferiors.c (find_thread_ptid): Renamed from find_thread_pid.
4678 All callers updated.
4679
e27d73f6
DE
4680 * linux-low.c (handle_extended_wait): Use linux_resume_one_lwp
4681 to resume the newly created thread, don't call ptrace (PTRACE_CONT)
4682 directly.
4683
47c0c975
DE
4684 * linux-low.c (get_stop_pc): Print pc if debug_threads.
4685 (check_removed_breakpoint, linux_wait_for_lwp): Ditto.
4686 (linux_resume_one_lwp): Ditto.
4687
2acc282a
DE
46882009-05-23 Doug Evans <dje@google.com>
4689
4690 * linux-low.c (linux_resume_one_lwp): Change type of first arg
4691 from struct inferior_list_entry * to struct lwp_info *.
4692 All callers updated.
4693
9f1036c1
DE
46942009-05-13 Doug Evans <dje@google.com>
4695
4696 * linux-x86-low.c: Don't include assert.h.
4697 (x86_siginfo_fixup): Use fatal, not assert.
4698 (x86_arch_setup): Fix comment.
4699
d0722149
DE
47002009-05-12 Doug Evans <dje@google.com>
4701
4702 Biarch support for i386/amd64 gdbserver.
4703 * Makefile.in (SFILES): Remove linux-i386-low.c, linux-x86-64-low.c.
4704 Add linux-x86-low.c.
4705 (linux-i386-low.o, linux-x86-64-low.o): Delete.
4706 (linux-x86-low.o): Add.
4707 * linux-x86-64-low.c: Delete.
4708 * linux-i386-low.c: Delete.
4709 * linux-x86-low.c: New file.
4710 * configure.srv (i?86-linux srv_tgtobj): Replace linux-i386-low.o with
4711 linux-x86-low.o.
4712 (x86_64-linux srv_tgtobj): Replace linux-x86-64-low.o with
4713 linux-x86-low.o.
4714 (x86_64-linux srv_regobj): Add reg-i386-linux.o.
4715 * linux-low.c: Include ansidecl.h, elf/common.h, elf/external.h.
4716 (linux_child_pid_to_exec_file): New function.
4717 (elf_64_header_p, elf_64_file_p): New functions.
4718 (siginfo_fixup): New function.
4719 (linux_xfer_siginfo): New local inf_siginfo. Call siginfo_fixup to
4720 give target a chance to convert layout.
4721 * linux-low.h (linux_target_ops): New member siginfo_fixup.
4722 (linux_child_pid_to_exec_file, elf_64_file_p): Declare.
4723
fdeb2a12
DE
47242009-05-07 Doug Evans <dje@google.com>
4725
4726 * linux-low.c (regsets_fetch_inferior_registers): Fix memory leak.
4727 (regsets_store_inferior_registers): Ditto.
4728
a6dbe5df
PA
47292009-05-06 Pedro Alves <pedro@codesourcery.com>
4730
4731 PR server/10048
4732
4733 * linux-low.c (must_set_ptrace_flags): Delete.
4734 (linux_create_inferior): Set `lwp->must_set_ptrace_flags' instead
4735 of the global.
4736 (linux_attach_lwp_1): Don't set PTRACE_SETOPTIONS here. Set
4737 `lwp->must_set_ptrace_flags' instead.
ba42693b 4738 (linux_wait_for_event_1): Set ptrace options here.
a6dbe5df
PA
4739 (linux_wait_1): ... not here.
4740
5091eb23
DE
47412009-04-30 Doug Evans <dje@google.com>
4742
9f767825
DE
4743 * inferiors.c (started_inferior_callback): New function.
4744 (attached_inferior_callback): New function.
4745 (have_started_inferiors_p, have_attached_inferiors_p): New functions.
4746 * server.c (print_started_pid, print_attached_pid): New functions.
4747 (detach_or_kill_for_exit): New function.
4748 (main): Call it instead of for_each_inferior (kill_inferior_callback).
4749 * server.h (have_started_inferiors_p): Declare.
4750 (have_attached_inferiors_p): Declare.
4751
5091eb23
DE
4752 * inferiors.c (remove_process): Fix memory leak, free process.
4753 * linux-low.c (linux_remove_process): New function.
4754 (linux_kill): Call it instead of remove_process.
4755 (linux_detach, linux_wait_1): Ditto.
4756
155c8968
PA
47572009-04-19 Danny Backx <dannybackx@users.sourceforge.net>
4758
4759 * configure.srv: Add x86 Windows CE target.
4760
7fe519cb
UW
47612009-04-03 Ulrich Weigand <uweigand@de.ibm.com>
4762
4763 * inferiors.c (get_thread_process): Make global.
4764 * server.h (get_thread_process): Add prototype.
4765 * thread-db.c (find_one_thread): Use get_thread_process
4766 instead of current_process.
4767 (thread_db_get_tls_address): Do not crash if called when
4768 thread layer is not yet initialized.
4769
5472f405
UW
47702009-04-03 Ulrich Weigand <uweigand@de.ibm.com>
4771
4772 * remote-utils.c (prepare_resume_reply): Null-terminate packet.
4773 * spu-low.c (current_tid): Rename to ...
4774 (current_ptid): ... this.
4775 (fetch_ppc_register, fetch_ppc_memory, store_ppc_memory,
4776 spu_proc_xfer_spu, spu_resume, spu_request_interrupt): Use
4777 ptid_get_lwp (current_ptid) instead of current_tid.
4778 (spu_kill, spu_detach, spu_join, spu_wait): Use pid argument
4779 instead of current_tid. Use find_process_pid to verify pid
4780 argument is valid. Pass proper argument to remove_process.
4781 (spu_thread_alive): Compare current_ptid instead of current_tid.
4782 (spu_resume): Likewise.
4783
55ac2b99
PA
47842009-04-02 Pedro Alves <pedro@codesourcery.com>
4785
4786 * linux-low.c (usr_store_inferior_registers): Declare local `pid'
4787 variable.
4788
95954743
PA
47892009-04-01 Pedro Alves <pedro@codesourcery.com>
4790
4791 Implement the multiprocess extensions, and add linux multiprocess
4792 support.
4793
4794 * server.h (ULONGEST): Declare.
4795 (struct ptid, ptid_t): New.
4796 (minus_one_ptid, null_ptid): Declare.
4797 (ptid_build, pid_to_ptid, ptid_get_pid, ptid_get_lwp)
4798 (ptid_get_tid, ptid_equal, ptid_is_pid): Declare.
4799 (struct inferior_list_entry): Change `id' type from unsigned from
4800 to ptid_t.
4801 (struct sym_cache, struct breakpoint, struct
4802 process_info_private): Forward declare.
4803 (struct process_info): Declare.
4804 (current_process): Declare.
4805 (all_processes): Declare.
4806 (initialize_inferiors): Declare.
4807 (add_thread): Adjust to use ptid_t.
4808 (thread_id_to_gdb_id, thread_to_gdb_id, gdb_id_to_thread_id): Ditto.
4809 (add_process, remove_process, find_thread_pid): Declare.
4810 (find_inferior_id): Adjust to use ptid_t.
4811 (cont_thread, general_thread, step_thread): Change type to ptid_t.
4812 (multi_process): Declare.
4813 (push_event): Adjust to use ptid_t.
4814 (read_ptid, write_ptid): Declare.
4815 (prepare_resume_reply): Adjust to use ptid_t.
4816 (clear_symbol_cache): Declare.
4817 * inferiors.c (all_processes): New.
4818 (null_ptid, minus_one_ptid): New.
4819 (ptid_build, pid_to_ptid, ptid_get_pid, ptid_get_lwp)
4820 (ptid_get_tid, ptid_equal, ptid_is_pid): New.
4821 (add_thread): Change unsigned long to ptid. Remove gdb_id
4822 parameter. Adjust.
4823 (thread_id_to_gdb_id, thread_to_gdb_id): Change unsigned long to ptid.
4824 (gdb_id_to_thread): Rename to ...
4825 (find_thread_pid): ... this. Change unsigned long to ptid.
4826 (gdb_id_to_thread_id, find_inferior_id): Change unsigned long to ptid.
4827 (loaded_dll, pull_pid_from_list): Adjust.
4828 (add_process, remove_process, find_process_pid)
4829 (get_thread_process, current_process, initialize_inferiors): New.
4830 * target.h (struct thread_resume) <thread>: Change type to ptid_t.
4831 (struct target_waitstatus) <related_pid>: Ditto.
4832 (struct target_ops) <kill, detach>: Add `pid' argument. Change
4833 return type to int.
4834 (struct target_ops) <join>: Add `pid' argument.
4835 (struct target_ops) <thread_alive>: Change pid's type to ptid_t.
4836 (struct target_ops) <wait>: Add `ptid' field. Change return type
4837 to ptid.
4838 (kill_inferior, detach_inferior, join_inferior): Add `pid' argument.
4839 (mywait): Add `ptid' argument. Change return type to ptid_t.
4840 (target_pid_to_str): Declare.
4841 * target.c (set_desired_inferior): Adjust to use ptids.
4842 (mywait): Add new `ptid' argument. Adjust.
4843 (target_pid_to_str): New.
4844 * mem-break.h (free_all_breakpoints): Declare.
4845 * mem-break.c (breakpoints): Delelete.
4846 (set_breakpoint_at, delete_breakpoint, find_breakpoint_at)
4847 (check_mem_read, check_mem_write, delete_all_breakpoints): Adjust
4848 to use per-process breakpoint list.
4849 (free_all_breakpoints): New.
4850 * remote-utils.c (struct sym_cache) <name>: Drop `const'.
4851 (symbol_cache, all_symbols_looked_up): Delete.
4852 (hexchars): New.
4853 (ishex, unpack_varlen_hex, write_ptid, hex_or_minus_one,
4854 read_ptid): New.
4855 (prepare_resume_reply): Change ptid argument's type from unsigned
4856 long to ptid_t. Adjust. Implement W;process and X;process.
4857 (free_sym_cache, clear_symbol_cache): New.
4858 (look_up_one_symbol): Adjust to per-process symbol cache. *
4859 * server.c (cont_thread, general_thread, step_thread): Change type
4860 to ptid_t.
4861 (attached): Delete.
4862 (multi_process): New.
4863 (last_ptid): Change type to ptid_t.
4864 (struct vstop_notif) <ptid>: Change type to ptid_t.
4865 (queue_stop_reply, push_event): Change `ptid' argument's type to
4866 ptid_t.
4867 (discard_queued_stop_replies): Add `pid' argument.
4868 (start_inferior): Adjust to use ptids. Adjust to mywait interface
4869 changes. Don't reference the `attached' global.
4870 (attach_inferior): Adjust to mywait interface changes.
4871 (handle_query): Adjust to use ptids. Parse GDB's qSupported
4872 features. Handle and report "multiprocess+". Handle
4873 "qAttached:PID".
4874 (handle_v_cont): Adjust to use ptids. Adjust to mywait interface
4875 changes.
4876 (handle_v_kill): New.
4877 (handle_v_stopped): Adjust to use target_pid_to_str.
4878 (handle_v_requests): Allow multiple attaches and runs when
4879 multiprocess extensions are in effect. Handle "vKill".
4880 (myresume): Adjust to use ptids.
4881 (queue_stop_reply_callback): Add `arg' parameter. Handle it.
4882 (handle_status): Adjust to discard_queued_stop_replies interface
4883 change.
4884 (first_thread_of, kill_inferior_callback)
4885 (detach_or_kill_inferior_callback, join_inferiors_callback): New.
4886 (main): Call initialize_inferiors. Adjust to use ptids, killing
4887 and detaching from all inferiors. Handle multiprocess packet
4888 variants.
4889 * linux-low.h: Include gdb_proc_service.h.
4890 (struct process_info_private): New.
4891 (struct linux_target_ops) <pid_of>: Use ptid_get_pid.
4892 <lwpid_of>: Use ptid_get_lwp.
4893 (get_lwp_thread): Adjust.
4894 (struct lwp_info): Add `dead' member.
4895 (find_lwp_pid): Declare.
4896 * linux-low.c (thread_db_active): Delete.
4897 (new_inferior): Adjust comment.
4898 (inferior_pid): Delete.
4899 (linux_add_process): New.
4900 (handle_extended_wait): Adjust.
4901 (add_lwp): Change unsigned long to ptid.
4902 (linux_create_inferior): Add process to processes table. Adjust
4903 to use ptids. Don't set new_inferior here.
4904 (linux_attach_lwp): Rename to ...
4905 (linux_attach_lwp_1): ... this. Add `initial' argument. Handle
4906 it. Adjust to use ptids.
4907 (linux_attach_lwp): New.
4908 (linux_attach): Add process to processes table. Don't set
4909 new_inferior here.
4910 (struct counter): New.
4911 (second_thread_of_pid_p, last_thread_of_process_p): New.
4912 (linux_kill_one_lwp): Add `args' parameter. Handle it. Adjust to
4913 multiple processes.
4914 (linux_kill): Add `pid' argument. Handle it. Adjust to multiple
4915 processes. Remove process from process table.
4916 (linux_detach_one_lwp): Add `args' parameter. Handle it. Adjust
4917 to multiple processes.
4918 (any_thread_of): New.
4919 (linux_detach): Add `pid' argument, and handle it. Remove process
4920 from processes table.
4921 (linux_join): Add `pid' argument. Handle it.
4922 (linux_thread_alive): Change unsighed long argument to ptid_t.
4923 Consider dead lwps as not being alive.
4924 (status_pending_p): Rename `dummy' argument to `arg'. Filter out
4925 threads we're not interested in.
4926 (same_lwp, find_lwp_pid): New.
4927 (linux_wait_for_lwp): Change `pid' argument's type from int to
4928 ptid_t. Adjust.
4929 (linux_wait_for_event): Rename to ...
4930 (linux_wait_for_event_1): ... this. Change `pid' argument's type
4931 from int to ptid_t. Adjust.
4932 (linux_wait_for_event): New.
4933 (linux_wait_1): Add `ptid' argument. Change return type to
4934 ptid_t. Adjust. Use last_thread_of_process_p. Remove processes
4935 that exit from the process table.
4936 (linux_wait): Add `ptid' argument. Change return type to ptid_t.
4937 Adjust.
4938 (mark_lwp_dead): New.
4939 (wait_for_sigstop): Adjust to use ptids. If a process exits while
4940 stopping all threads, mark its main lwp as dead.
4941 (linux_set_resume_request, linux_resume_one_thread): Adjust to use
4942 ptids.
4943 (fetch_register, usr_store_inferior_registers)
4944 (regsets_fetch_inferior_registers)
4945 (regsets_store_inferior_registers, linux_read_memory)
4946 (linux_write_memory): Inline `inferior_pid'.
4947 (linux_look_up_symbols): Adjust to use per-process
4948 `thread_db_active'.
4949 (linux_request_interrupt): Adjust to use ptids.
4950 (linux_read_auxv): Inline `inferior_pid'.
4951 (initialize_low): Don't reference thread_db_active.
4952 * gdb_proc_service.h (struct ps_prochandle) <pid>: Remove.
4953 * proc-service.c (ps_lgetregs): Use find_lwp_pid.
4954 (ps_getpid): Return the pid of the current inferior.
4955 * thread-db.c (proc_handle, thread_agent): Delete.
4956 (thread_db_create_event, thread_db_enable_reporting): Adjust to
4957 per-process data.
4958 (find_one_thread): Change argument type to ptid_t. Adjust to
4959 per-process data.
4960 (maybe_attach_thread): Adjust to per-process data and ptids.
4961 (thread_db_find_new_threads): Ditto.
4962 (thread_db_init): Ditto.
4963 * spu-low.c (spu_create_inferior, spu_attach): Add process to
4964 processes table. Adjust to use ptids.
4965 (spu_kill, spu_detach): Adjust interface. Remove process from
4966 processes table.
4967 (spu_join, spu_thread_alive): Adjust interface.
4968 (spu_wait): Adjust interface. Remove process from processes
4969 table. Adjust to use ptids.
4970 * win32-low.c (current_inferior_tid): Delete.
4971 (current_inferior_ptid): New.
4972 (debug_event_ptid): New.
4973 (thread_rec): Take a ptid. Adjust.
4974 (child_add_thread): Add `pid' argument. Adjust to use ptids.
4975 (child_delete_thread): Ditto.
4976 (do_initial_child_stuff): Add `attached' argument. Add process to
4977 processes table.
4978 (child_fetch_inferior_registers, child_store_inferior_registers):
4979 Adjust.
4980 (win32_create_inferior): Pass 0 to do_initial_child_stuff.
4981 (win32_attach): Pass 1 to do_initial_child_stuff.
4982 (win32_kill): Adjust interface. Remove process from processes
4983 table.
4984 (win32_detach): Ditto.
4985 (win32_join): Adjust interface.
4986 (win32_thread_alive): Take a ptid.
4987 (win32_resume): Adjust to use ptids.
4988 (get_child_debug_event): Ditto.
4989 (win32_wait): Adjust interface. Remove exiting process from
4990 processes table.
4991
bd99dc85
PA
49922009-04-01 Pedro Alves <pedro@codesourcery.com>
4993
4994 Non-stop mode support.
4995
4996 * server.h (non_stop): Declare.
4997 (gdb_client_data, handler_func): Declare.
4998 (delete_file_handler, add_file_handler, start_event_loop):
4999 Declare.
5000 (handle_serial_event, handle_target_event, push_event)
5001 (putpkt_notif): Declare.
5002 * target.h (enum resume_kind): New.
5003 (struct thread_resume): Replace `step' field by `kind' field.
5004 (TARGET_WNOHANG): Define.
5005 (struct target_ops) <wait>: Add `options' argument.
5006 <supports_non_stop, async, start_non_stop>: New fields.
5007 (target_supports_non_stop, target_async): New.
5008 (start_non_stop): Declare.
5009 (mywait): Add `options' argument.
5010 * target.c (mywait): Add `options' argument. Print child exit
5011 notifications here.
5012 (start_non_stop): New.
5013 * server.c (non_stop, own_buf, mem_buf): New globals.
5014 (struct vstop_notif): New.
5015 (notif_queue): New global.
5016 (queue_stop_reply, push_event, discard_queued_stop_replies)
5017 (send_next_stop_reply): New.
5018 (start_inferior): Adjust to use resume_kind. Adjust to mywait
5019 interface changes.
5020 (attach_inferior): In non-stop mode, don't wait for the target
5021 here.
5022 (handle_general_set): Handle QNonStop.
5023 (handle_query): When handling qC, return the current general
5024 thread, instead of the first thread of the list.
5025 (handle_query): If the backend supports non-stop mode, include
5026 QNonStop+ in the qSupported query response.
5027 (handle_v_cont): Adjust to use resume_kind. Handle resume_stop
5028 and non-stop mode.
5029 (handle_v_attach, handle_v_run): Handle non-stop mode.
5030 (handle_v_stopped): New.
5031 (handle_v_requests): Report support for vCont;t. Handle vStopped.
5032 (myresume): Adjust to use resume_kind. Handle non-stop.
5033 (queue_stop_reply_callback): New.
5034 (handle_status): Handle non-stop mode.
5035 (main): Clear non_stop flag on reconnection. Use the event-loop.
5036 Refactor serial protocol handling from here ...
5037 (process_serial_event): ... to this new function. When GDB
5038 selects any thread, select one here. In non-stop mode, wait until
5039 GDB acks all pending events before exiting.
5040 (handle_serial_event, handle_target_event): New.
5041 * remote-utils.c (remote_open): Install remote_desc in the event
5042 loop.
5043 (remote_close): Remove remote_desc from the event loop.
5044 (putpkt_binary): Rename to...
5045 (putpkt_binary_1): ... this. Add `is_notic' argument. Handle it.
5046 (putpkt_binary): New as wrapper around putpkt_binary_1.
5047 (putpkt_notif): New.
5048 (prepare_resume_reply): In non-stop mode, don't change the
5049 general_thread.
5050 * event-loop.c: New.
5051 * Makefile.in (OBJ): Add event-loop.o.
5052 (event-loop.o): New rule.
5053
5054 * linux-low.h (pid_of): Moved here.
5055 (lwpid_of): New.
5056 (get_lwp_thread): Use lwpid_of.
5057 (struct lwp_info): Delete `lwpid' field. Add `suspended' field.
5058 * linux-low.c (pid_of): Delete.
5059 (inferior_pid): Use lwpid_of.
5060 (linux_event_pipe): New.
5061 (target_is_async_p): New.
5062 (delete_lwp): New.
5063 (handle_extended_wait): Use lwpid_of.
5064 (add_lwp): Don't set lwpid field.
5065 (linux_attach_lwp): Adjust debug output. Use lwpid_of.
5066 (linux_kill_one_lwp): If killing a running lwp, stop it first.
5067 Use lwpid_of. Adjust to linux_wait_for_event interface changes.
5068 (linux_detach_one_lwp): If detaching from a running lwp, stop it
5069 first. Adjust to linux_wait_for_event interface changes. Use
5070 lwpid_of.
5071 (linux_detach): Don't delete the main lwp here.
5072 (linux_join): Use my_waitpid. Avoid signal_pid. Use lwpid_of.
5073 (status_pending_p): Don't consider explicitly suspended lwps.
5074 (linux_wait_for_lwp): Take an integer pid instead of a lwp_info
5075 pointer. Add OPTIONS argument. Change return type to int. Use
5076 my_waitpid instead of sleeping. Handle WNOHANG. Use lwpid_of.
5077 (linux_wait_for_event): Take an integer pid instead of a lwp_info
5078 pointer. Add status pointer argument. Return a pid instead of a
5079 status. Use lwpid_of. Adjust to linux_wait_for_lwp interface
5080 changes. In non-stop mode, don't switch to a random thread.
5081 (linux_wait): Rename to...
5082 (linux_wait_1): ... this. Add target_options argument, and handle
5083 it. Adjust to use resume_kind. Use lwpid_of. In non-stop mode,
5084 don't handle the continue thread. Handle TARGET_WNOHANG. Merge
5085 clean exit and signal exit code. Don't stop all threads in
5086 non-stop mode. In all-stop mode, only stop all threads when
5087 reporting a stop to GDB. Handle explicit thread stop requests.
5088 (async_file_flush, async_file_mark): New.
5089 (linux_wait): New.
5090 (send_sigstop): Use lwpid_of.
5091 (wait_for_sigstop): Use lwpid_of. Adjust to linux_wait_for_event
5092 interface changes. In non-stop mode, don't switch to a random
5093 thread.
5094 (linux_resume_one_lwp): Use lwpid_of.
5095 (linux_continue_one_thread, linux_queue_one_thread): Merge into ...
5096 (linux_resume_one_thread): ... this. Handle resume_stop. In
5097 non-stop mode, don't look for pending flag in all threads.
5098 (resume_status_pending_p): Don't consider explicitly suspended
5099 threads.
5100 (my_waitpid): Reimplement. Emulate __WALL.
5101 (linux_request_interrupt, linux_read_offsets, linux_xfer_siginfo):
5102 Use lwpid_of.
5103 (sigchld_handler, linux_supports_non_stop, linux_async)
5104 (linux_start_non_stop): New.
5105 (linux_target_ops): Register linux_supports_non_stop, linux_async
5106 and linux_start_non_stop.
5107 (initialize_low): Install SIGCHLD handler.
5108 * thread-db.c (thread_db_create_event, find_one_thread)
5109 (thread_db_get_tls_address): Use lwpid_of.
5110 * win32-low.c (win32_detach): Adjust to use resume_kind.
5111 (win32_wait): Add `options' argument.
5112 * spu-low.c (spu_resume): Adjust to use resume_kind.
5113 (spu_wait): Add `options' argument.
5114
5b1c542e
PA
51152009-04-01 Pedro Alves <pedro@codesourcery.com>
5116
5117 Decouple target code from remote protocol.
5118
5119 * target.h (enum target_waitkind): New.
5120 (struct target_waitstatus): New.
5121 (struct target_ops) <wait>: Return an unsigned long. Take a
5122 target_waitstatus pointer instead of a char pointer.
5123 (mywait): Likewise.
5124 * target.c (mywait): Change prototype to return an unsigned long.
5125 Take a target_waitstatus pointer instead of a char pointer. Adjust.
5126 * server.h (thread_from_wait, old_thread_from_wait): Delete
5127 declarations.
5128 (prepare_resume_reply): Change prototype to take a
5129 target_waitstatus.
5130 * server.c (thread_from_wait, old_thread_from_wait): Delete.
5131 (last_status, last_ptid): New.
5132 (start_inferior): Remove "statusptr" argument. Adjust. Return a
5133 pid instead of a signal.
5134 (attach_inferior): Remove "status" and "signal" parameters.
5135 Adjust.
5136 (handle_query): For qGetTLSAddr, parse the thread id with strtol,
5137 not as an address.
5138 (handle_v_cont, handle_v_attach, handle_v_run, handle_v_kill)
5139 (handle_v_requests, myresume): Remove "status" and "signal"
5140 parameters. Adjust.
5141 (handle_status): New.
5142 (main): Delete local `status'. Adjust.
5143 * remote-utils.c: Include target.h.
5144 (prepare_resume_reply): Change prototype to take a
5145 target_waitstatus. Adjust.
5146
5147 * linux-low.c (linux_wait): Adjust to new target_ops->wait
5148 interface.
5149 * spu-low.c (spu_wait): Adjust.
5150 * win32-low.c (enum target_waitkind, struct target_waitstatus):
5151 Delete.
5152 (win32_wait): Adjust.
5153
2bd7c093
PA
51542009-04-01 Pedro Alves <pedro@codesourcery.com>
5155
5156 * target.h (struct thread_resume): Delete leave_stopped member.
5157 (struct target_ops): Add a `n' argument to the `resume' callback.
5158 * server.c (start_inferior): Adjust.
5159 (handle_v_cont, myresume): Adjust.
5160 * linux-low.c (check_removed_breakpoint): Adjust to resume
5161 interface change, and to removed leave_stopped field.
5162 (resume_ptr): Delete.
5163 (struct thread_resume_array): New.
5164 (linux_set_resume_request): Add new `arg' parameter. Adjust to
5165 resume interface change.
5166 (linux_continue_one_thread, linux_queue_one_thread)
5167 (resume_status_pending_p): Check if the resume field is NULL
5168 instead of checking the leave_stopped member.
5169 (linux_resume): Adjust to the target resume interface change.
5170 * spu-low.c (spu_resume): Adjust to the target resume interface
5171 change.
5172 * win32-low.c (win32_detach, win32_resume): Ditto.
5173
c35fafde
PA
51742009-04-01 Pedro Alves <pedro@codesourcery.com>
5175
5176 * linux-low.c (linux_wait_for_event): Don't clear the `stepping'
5177 flag.
5178 (wait_for_sigstop): Don't leave a finished single-step SIGTRAP
5179 pending.
5180 (linux_continue_one_thread): Only preserve the stepping flag if
5181 there's a pending breakpoint.
5182
0a59d50b
PA
51832009-03-31 Pedro Alves <pedro@codesourcery.com>
5184
5185 * server.c (main): After the inferior having exited, call
5186 remote_close before exiting gdbserver.
5187
f04c6d38
TJB
51882009-03-25 Thiago Jung Bauermann <bauerman@br.ibm.com>
5189
5190 Fix size of FPSCR in Power 7 processors.
5191 * linux-ppc-low.c (PPC_FEATURE_ARCH_2_05): Remove #define.
5192 (PPC_FEATURE_HAS_DFP): New #define.
5193 (ppc_arch_setup): Check for DFP feature instead of ISA 2.05 to decide on
5194 size of the FPSCR.
5195
78e5cee6
PA
51962009-03-23 Pedro Alves <pedro@codesourcery.com>
5197
5198 * server.c (handle_query) Whitespace and formatting.
5199
1b3f6016
PA
52002009-03-22 Pedro Alves <pedro@codesourcery.com>
5201
5202 * i387-fp.c, linux-arm-low.c, linux-cris-low.c,
5203 linux-crisv32-low.c, linux-i386-low.c, linux-low.c,
5204 linux-mips-low.c, linux-s390-low.c, linux-sparc-low.c,
5205 linux-x86-64-low.c, linux-xtensa-low.c, proc-service.c,
5206 regcache.c, remote-utils.c, server.c, spu-low.c, target.h,
5207 thread-db.c, win32-low.c, xtensa-xtregs.c, gdbreplay.c,
5208 Makefile.in, configure.ac: Fix whitespace throughout.
5209 * configure: Regenerate.
5210
a07b2135
PA
52112009-03-22 Pedro Alves <pedro@codesourcery.com>
5212
5213 * inferiors.c (find_inferior): Make it safe for the callback
5214 function to delete the currently iterated inferior.
5215
67cc2626
PA
52162009-03-22 Pedro Alves <pedro@codesourcery.com>
5217
5218 * Makefile.in (linuw_low_h): Move higher.
5219 (thread-db.o): Depend on $(linux_low_h).
5220
54a0b537
PA
52212009-03-17 Pedro Alves <pedro@codesourcery.com>
5222
5223 Rename "process" to "lwp" throughout.
5224
5225 * linux-low.c (all_processes): Rename to...
5226 (all_lwps): ... this.
5227 (inferior_pid, handle_extended_wait, get_stop_pc): Adjust.
5228 (add_process): Rename to ...
5229 (add_lwp): ... this. Adjust.
5230 (linux_create_inferior): Adjust.
5231 (linux_attach_lwp): Adjust.
5232 (linux_attach): Adjust.
5233 (linux_kill_one_process): Rename to ...
5234 (linux_kill_one_lwp): ... this. Adjust.
5235 (linux_kill): Adjust.
5236 (linux_detach_one_process): Rename to ...
5237 (linux_detach_one_lwp): ... this. Adjust.
5238 (linux_detach): Adjust.
5239 (check_removed_breakpoint): Adjust.
5240 (status_pending_p): Adjust.
5241 (linux_wait_for_process): Rename to ...
5242 (linux_wait_for_lwp): ... this. Adjust.
5243 (linux_wait_for_event): Adjust.
5244 (send_sigstop): Adjust.
5245 (wait_for_sigstop): Adjust.
5246 (stop_all_processes): Rename to ...
5247 (stop_all_lwps): ... this.
5248 (linux_resume_one_process): Rename to ...
5249 (linux_resume_one_lwp): ... this. Adjust.
5250 (linux_set_resume_request, linux_continue_one_thread)
5251 (linux_queue_one_thread, resume_status_pending_p)
5252 (usr_store_inferior_registers, regsets_store_inferior_registers)
5253 (linux_request_interrupt, linux_read_offsets, linux_xfer_siginfo):
5254 Adjust.
5255 * linux-low.h (get_process): Rename to ...
5256 (get_lwp): ... this. Adjust.
5257 (get_thread_process): Rename to ...
5258 (get_thread_lwp): ... this. Adjust.
5259 (get_process_thread): Rename to ...
5260 (get_lwp_thread): ... this. Adjust.
5261 (struct process_info): Rename to ...
5262 (struct lwp_info): ... this.
5263 (all_processes): Rename to ...
5264 (all_lwps): ... this.
5265 * proc-service.c (ps_lgetregs): Adjust.
5266 * thread-db.c (thread_db_create_event, find_one_thread)
5267 (maybe_attach_thread, thread_db_get_tls_address): Adjust.
5268
0b16c5cf
PA
52692009-03-14 Pedro Alves <pedro@codesourcery.com>
5270
5271 * server.c (handle_query): Handle "qAttached".
5272
32de4b9d
NS
52732009-03-13 Nathan Sidwell <nathan@codesourcery.com>
5274
5275 * Makefile.in, hostio-errno.c, errno.c, xtensa-xtregs.c: Change to
5276 GPLv3, update license URL.
5277
2aecd87f
DE
52782009-03-01 Doug Evans <dje@google.com>
5279
93efd302 5280 * Makefile.in (INCLUDE_CFLAGS): Add -I$(srcdir)/../common.
2aecd87f
DE
5281 (server_h): Add gdb_signals.h.
5282 (signals.o): Update.
5283 * server.h (target_signal_from_host,target_signal_to_host_p)
5284 (target_signal_to_host,target_signal_to_name): Moved to gdb_signals.h.
5285
86b1f9c5
PM
52862009-02-14 Pierre Muller <muller@ics.u-strasbg.fr>
5287
5288 * remote-utils.c (getpkt): Also generate remote-debug
5289 information if noack_mode is set.
5290
4aa995e1
PA
52912009-02-06 Pedro Alves <pedro@codesourcery.com>
5292
5293 * server.c (handle_query): Report qXfer:siginfo:read and
5294 qXfer:siginfo:write as supported and handle them.
5295 * target.h (struct target_ops) <qxfer_siginfo>: New field.
5296 * linux-low.c (linux_xfer_siginfo): New.
5297 (linux_target_ops): Set it.
5298
62709adf
PA
52992009-01-26 Pedro Alves <pedro@codesourcery.com>
5300
5301 * server.c (gdbserver_usage): Mention --remote-debug.
5302 (main): Accept '--remote-debug' switch.
5303
aef93bd7
DE
53042009-01-18 Doug Evans <dje@google.com>
5305
5306 * regcache.c (new_register_cache): No need to check result of xcalloc.
5307 * server.c (handle_search_memory): Back out calls to xmalloc,
5308 result is checked and error is returned to user upon failure.
5309 (handle_query): Ditto. Add more checks for result of malloc.
5310 (handle_v_cont): Check result of malloc, report error back to
5311 user upon failure.
5312 (handle_v_run): Ditto. Call freeargv.
5313 * server.h (freeargv): Declare.
5314 * utils.c (freeargv): New fn.
5315
54363045
DE
53162009-01-15 Doug Evans <dje@google.com>
5317
f626972c
DE
5318 * gdbreplay.c (perror_with_name): Make arg const char *.
5319 * server.h (target_signal_to_name): Make return type const char *.
0842e787 5320 * thread-db.c (thread_db_err_str): Make return type const char *.
f626972c 5321 * utils.c (perror_with_name): Make arg const char *.
54363045 5322
18aae699
PA
53232009-01-14 Pedro Alves <pedro@codesourcery.com>
5324
5325 * win32-low.c (get_child_debug_event): Issue a final DBG_CONTINUE
5326 when handling a EXIT_PROCESS_DEBUG_EVENT.
5327
ff703abe
JB
53282009-01-06 Joel Brobecker <brobecker@adacore.com>
5329
5330 * gdbreplay.c (gdbreplay_version): Update copyright year.
5331 * server.c (gdbserver_version): Likewise.
5332
f21cc1a2 53332009-01-05 Doug Evans <dje@google.com>
0e21c1ec
DE
5334
5335 * linux-low.c (linux_attach_lwp): Add some comments/fixmes.
f21cc1a2 5336 (handle_extended_wait): Improve comment.
0e21c1ec 5337
bca929d3
DE
53382008-12-13 Doug Evans <dje@google.com>
5339
5340 * utils.c (xmalloc,xcalloc,xstrdup): New fns.
5341 * server.h (ATTR_MALLOC): New macro.
5342 (xmalloc,xcalloc,xstrdup): Declare.
5343 * hostio.c: Replace malloc,calloc,strdup with xmalloc,xcalloc,xstrdup.
5344 * inferiors.c: Ditto.
5345 * linux-low.c: Ditto.
5346 * mem-break.c: Ditto.
5347 * regcache.c: Ditto.
5348 * remote-utils.c: Ditto.
5349 * server.c: Ditto.
5350 * target.c: Ditto.
5351 * win32-low.c: Ditto.
5352
97438e3f
DE
53532008-12-12 Doug Evans <dje@google.com>
5354
896c7fbb
DE
5355 * linux-low.c (linux_wait_for_process): Don't clobber current_inferior
5356 in debugging printf.
5357
97438e3f
DE
5358 * linux-low.c (handle_extended_wait): Simplify, use my_waitpid.
5359
e3b886f8
DE
53602008-12-09 Doug Evans <dje@google.com>
5361
5362 * linux-low.h (struct process_info): Delete member tid, unused.
5363 * thread-db.c (find_one_thread): Update.
5364 (maybe_attach_thread): Update.
5365
07e059b5
VP
53662008-12-02 Pedro Alves <pedro@codesourcery.com>
5367
889bf7c5
PA
5368 * target.h (struct target_ops): Add qxfer_osdata member.
5369 * linux-low.c: Include ctype.h and pwd.h and sys/types.h
5370 and dirent.h.
5371 (linux_qxfer_osdata): New functions.
5372 (linux_target_ops): Register linux_qxfer_osdata as qxfer_osdata
5373 callback.
5374 * server.c (handle_query): Handle "qXfer:osdata:read:".
5375 * remote-utils.c (buffer_grow, buffer_free, buffer_init, buffer_finish)
5376 (buffer_xml_printf): New functions.
5377 * server.h (struct buffer): New.
5378 (buffer_grow_str, buffer_grow_str0): New macros.
5379 (buffer_grow, buffer_free, buffer_init, buffer_finish)
5380 (buffer_xml_printf): Declare.
07e059b5 5381
4cab47ab
DE
53822008-11-24 Doug Evans <dje@google.com>
5383
5384 * Makefile.in (VERSION,DIST,LINT,LINTFLAGS): Delete, unused.
5385
f142445f
DJ
53862008-11-24 Daniel Jacobowitz <dan@codesourcery.com>
5387
5388 * server.c (handle_v_run): Always use the supplied argument list.
5389
d0107bb6 53902008-11-19 Bob Wilson <bob.wilson@acm.org>
889bf7c5 5391
d0107bb6
BW
5392 * xtensa-xtregs.c (XTENSA_ELF_XTREG_SIZE): Change to 4.
5393 (xtensa_regmap_table): Add entry for scompare1.
889bf7c5 5394
2c4ad781
TJB
53952008-11-18 Thiago Jung Bauermann <bauerman@br.ibm.com>
5396
5397 * Makefile.in (powerpc-isa205-32l.o, powerpc-isa205-32l.c,
5398 powerpc-isa205-altivec32l.o, powerpc-isa205-altivec32l.c,
5399 powerpc-isa205-vsx32l.o, powerpc-isa205-vsx32l.c,
5400 powerpc-isa205-64l.o, powerpc-isa205-64l.c,
5401 powerpc-isa205-altivec64l.o, powerpc-isa205-altivec64l.c,
5402 powerpc-isa205-vsx64l.o, powerpc-isa205-vsx64l.c): New targets.
5403 * configure.srv (powerpc*-*-linux*): Add ISA 2.05 object files and
5404 XML target descriptions.
5405 * linux-ppc-low.c (ppc_arch_setup): Init registers with 64-bit FPSCR
5406 when inferior is running on an ISA 2.05 or later processor. Add
5407 special case to return offset for full 64-bit slot of FPSCR when
5408 in 32-bits.
5409
dfb64f85
DJ
54102008-11-14 Daniel Gutson <dgutson@codesourcery.com>
5411
5412 * Makefile.in (SFILES, clean): Added sparc64 files.
5413 (reg-sparc64.o, reg-sparc64.c): New.
5414 * configure.srv (sparc*-*-linux*): New configuration.
5415 * linux-low.c (regsets_fetch_inferior_registers): Swap ptrace
5416 syscall arguments for SPARC.
5417 (regsets_store_inferior_registers): Likewise.
5418 * linux-sparc-low.c: New file.
5419
66b6e1dd
DE
54202008-10-21 Doug Evans <dje@google.com>
5421
5422 * Makefile.in (BFD_DIR,BFD,BFD_SRC,BFD_CFLAGS): Delete.
5423 (READLINE_DIR,READLINE_DEP): Delete.
5424 (INTERNAL_CFLAGS): Update.
5425 (LINTFLAGS): Update.
5426
9b710a42
PA
54272008-10-10 Pedro Alves <pedro@codesourcery.com>
5428
5429 * server.c (handle_v_run): If GDB didn't specify an argv, use the
5430 whole argv from the last run, not just argv[0].
5431
5822d809
PA
54322008-09-08 Pedro Alves <pedro@codesourcery.com>
5433
5434 * regcache.c (new_register_cache): Return NULL if the register
5435 cache size isn't known yet.
5436 (free_register_cache): Avoid dereferencing a NULL regcache.
5437
74aac56f
DJ
54382008-09-04 Daniel Jacobowitz <dan@codesourcery.com>
5439
5440 * configure.srv: Merge MIPS and MIPS64.
5441
400b20f5
MR
54422008-08-24 Maciej W. Rozycki <macro@linux-mips.org>
5443
5444 * Makefile.in (uninstall): Apply $(EXEEXT) too.
5445
677c5bb1
LM
54462008-08-18 Luis Machado <luisgpm@br.ibm.com>
5447
5448 * Makefile.in: Add required vsx dependencies.
5449
5450 * linux-ppc-low: Define PPC_FEATURE_HAS_VSX.
5451 Declare init_registers_powerpc_vsx32l.
5452 Declare init_registers_powerpc_vsx64l.
5453 Define PTRACE_GETVSXREGS and PTRACE_SETVSXREGS.
5454 (ppc_arch_setup): Check for VSX in hwcap.
5455 (ppc_fill_vsxregset): New function.
5456 (ppc_store_vsxregset): New function.
5457 Add new VSX entry in regset_info target_regsets.
5458
5459 * configure.srv: Add new VSX dependencies.
5460
a6f3e723
SL
54612008-08-12 Pedro Alves <pedro@codesourcery.com>
5462
5463 * remote-utils.c (noack_mode, transport_is_reliable): New globals.
5464 (remote_open): Set or clear transport_is_reliable.
5465 (putpkt_binary): Don't expect acks in noack mode.
5466 (getpkt): Don't send ack/nac in noack mode.
5467 * server.c (handle_general_set): Handle QStartNoAckMode.
5468 (handle_query): If connected by tcp pass QStartNoAckMode+ in
5469 qSupported.
5470 (main): Reset noack_mode on every connection.
5471 * server.h (noack_mode): Declare.
5472
a417dc56
RW
54732008-08-07 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
5474
5475 * Makefile.in (GDBREPLAY_OBS): New variable.
5476 (gdbreplay$(EXEEXT)): Use it to avoid unportable $^.
5477
3221518c
UW
54782008-08-05 Ulrich Weigand <uweigand@de.ibm.com>
5479 Daniel Jacobowitz <dan@codesourcery.com>
5480
5481 * linux-low.c (linux_resume_one_process): Ignore ESRCH.
5482 (usr_store_inferior_registers): Likewise.
5483 (regsets_store_inferior_registers): Likewise.
5484
ec56be1b
PA
54852008-07-31 Rolf Jansen <rj@surtec.com>
5486 Pedro Alves <pedro@codesourcery.com>
5487
5488 * configure.ac: Check for memmem declaration.
5489 * server.c [HAVE_MALLOC_H]: Include malloc.h.
5490 (disable_packet_vCont, disable_packet_Tthread, disable_packet_qC)
5491 (disable_packet_qfThreadInfo): Unconditionally compile.
5492 * server.h [!HAVE_DECL_MEMMEM]: Declare memmem.
5493 * configure, config.in: Regenerate.
5494
2fe5e3ff
DE
54952008-07-28 Doug Kwan <dougkwan@google.com>
5496
5497 * linux-low.c (sys/dir.h, sys/user.h): Remove includes.
5498 (linux_write_memory): Remove declaration of errno.
5499
836acd6d
UW
55002008-07-12 Ulrich Weigand <uweigand@de.ibm.com>
5501
5502 * linux-low.c (handle_extended_wait): Do not use "status"
5503 variable uninitialized.
5504
aeba519e
PA
55052008-07-07 Pedro Alves <pedro@codesourcery.com>
5506
5507 * server.c (handle_v_attach): Inhibit reporting dll changes.
5508
db42f210
PA
55092008-06-27 Pedro Alves <pedro@codesourcery.com>
5510
5511 * remote-utils.c (prepare_resume_reply): If requested, don't
5512 output "thread:TID" in the T stop reply.
5513
5514 * server.c (disable_packet_vCont, disable_packet_Tthread)
5515 (disable_packet_qC, disable_packet_qfThreadInfo): New globals.
5516 (handle_query): If requested, disable support for qC, qfThreadInfo
5517 and qsThreadInfo.
5518 (handle_v_requests): If requested, disable support for vCont.
5519 (gdbserver_show_disableable): New.
5520 (main): Handle --disable-packet and --disable-packet=LIST.
5521
5522 * server.h (disable_packet_vCont, disable_packet_Tthread)
5523 (disable_packet_qC, disable_packet_qfThreadInfo): Declare.
5524
8e4c5421
CD
55252008-06-20 Carlos O'Donell <carlos@codesourcery.com>
5526
5527 * server.c (gdbserver_usage): Mention --version.
5528
6e23a804
DJ
55292008-06-06 Daniel Jacobowitz <dan@codesourcery.com>
5530
5531 * Makefile.in (gdbreplay.o): New rule.
5532
90aa6a40
JM
55332008-06-06 Joseph Myers <joseph@codesourcery.com>
5534
5535 * gdbreplay.c (gdbreplay_version): Say gdbreplay in version
5536 message, not gdbserver.
5537
c16158bc 55382008-06-05 Vladimir Prus <vladimir@codesourcery.com>
889bf7c5
PA
5539 Nathan Sidwell <nathan@codesourcery.com>
5540 Joseph Myers <joseph@codesourcery.com>
c16158bc
JM
5541
5542 * acinclude.m4: Include ../../config/acx.m4.
5543 * configure.ac: Use ACX_PKGVERSION and ACX_BUGURL.
5544 * configure, config.in: Regenerate.
5545 * Makefile.in (gdbreplay$(EXEEXT)): Add version.o.
5546 * server.c (gdbserver_version): Print PKGVERSION.
5547 (gdbsrever_usage): Add stream parameter. Print REPORT_BUGS_TO.
5548 (main): Adjust gdbserver_usage calls.
5549 * gdbreplay.c (version, host_name): Add declarations.
5550 (gdbreplay_version, gdbreplay_usage): New.
5551 (main): Accept --version and --help options.
5552
aeb75bf5
DJ
55532008-06-04 Daniel Jacobowitz <dan@codesourcery.com>
5554
5555 * linux-arm-low.c (thumb_breakpoint, thumb_breakpoint_len): New.
5556 (arm_breakpoint_at): Handle Thumb.
5557 (the_low_target): Add comment.
5558
76b233dd
UW
55592008-05-29 Ulrich Weigand <uweigand@de.ibm.com>
5560
5561 * linux-ppc-low.c (ppc_collect_ptrace_register): Clear buffer.
5562
08388c79
DE
55632008-05-09 Doug Evans <dje@google.com>
5564
a3c83fae
DE
5565 * server.h (decode_search_memory_packet): Declare.
5566 * remote-utils.c (decode_search_memory_packet): New fn.
5567 * server.c (handle_search_memory_1): New fn.
08388c79
DE
5568 (handle_search_memory): New fn.
5569 (handle_query): Process qSearch:memory packets.
5570
bb9c3d36
UW
55712008-05-08 Ulrich Weigand <uweigand@de.ibm.com>
5572
5573 * regcache.c (registers_length): Remove.
5574 (set_register_cache): Verify that PBUFSIZ is large enough to hold a
5575 full register packet.
5576 * regcache.h (registers_length): Remove prototype.
5577 * server.h (PBUFSIZ): Define to 16384.
5578
7284e1be
UW
55792008-05-03 Ulrich Weigand <uweigand@de.ibm.com>
5580
5581 * configure.srv (powerpc*-*-linux*): Set srv_regobj to
5582 powerpc-32l.o, powerpc-altivec32l.o, powerpc-e500l.o,
5583 powerpc-64l.o, and powerpc-altivec64l.o.
5584 Remove rs6000/powerpc-32.xml, rs6000/powerpc-64.xml, and
5585 rs6000/powerpc-e500.xml; add rs6000/powerpc-32l.xml,
5586 rs6000/powerpc-altivec32l.xml, rs6000/powerpc-e500l.xml,
5587 rs6000/powerpc-64l.xml, rs6000/powerpc-altivec64l.xml,
5588 rs6000/power-linux.xml, and rs6000/power64-linux.xml
5589 to srv_xmlfiles.
5590
5591 * Makefile.in (reg-ppc.o, reg-ppc.c): Remove, replace by ...
5592 (powerpc-32l.o, powerpc-32l.c): ... these new rules.
5593 (powerpc-32.o, powerpc-32.c): Remove, replace by ...
5594 (powerpc-altivec32l.o, powerpc-altivec32l.c): ... these new rules.
5595 (powerpc-e500.o, powerpc-e500.c): Remove, replace by ...
5596 (powerpc-e500l.o, powerpc-e500l.c): ... these new rules.
5597 (reg-ppc64.o, reg-ppc64.c): Remove, replace by ...
5598 (powerpc-64l.o, powerpc-64l.c): ... these new rules.
5599 (powerpc-64.o, powerpc-64.c): Remove, replace by ...
5600 (powerpc-altivec64l.o, powerpc-altivec64l.c): ... these new rules.
5601 (clean): Update.
5602
5603 * linux-ppc-low.c (init_registers_ppc): Remove, replace by ...
5604 (init_registers_powerpc_32l): ... this new prototype.
5605 (init_registers_powerpc_32): Remove, replace by ...
5606 (init_registers_powerpc_altivec32l): ... this new prototype.
5607 (init_registers_powerpc_e500): Remove, replace by ...
5608 (init_registers_powerpc_e500l): ... this new prototype.
5609 (init_registers_ppc64): Remove, replace by ...
5610 (init_registers_powerpc_64l): ... this new prototype.
5611 (init_registers_powerpc_64): Remove, replace by ...
5612 (init_registers_powerpc_altivec64l): ... this new prototype.
5613 (ppc_num_regs): Set to 73.
5614 (PT_ORIG_R3, PT_TRAP): Define if necessary.
5615 (ppc_regmap, ppc_regmap_e500): Add values for orig_r3 and trap.
5616 (ppc_cannot_store_register): Handle orig_r3 and trap.
5617 (ppc_arch_setup): Update init_registers_... calls.
5618 (ppc_fill_gregset): Handle orig_r3 and trap.
5619
5620 * inferiors.c (clear_inferiors): Reset current_inferior.
5621
fdc59709
PB
56222008-04-23 Paolo Bonzini <bonzini@gnu.org>
5623
889bf7c5
PA
5624 * acinclude.m4: Add override.m4.
5625 * configure: Regenerate.
fdc59709 5626
c9b2f845
UW
56272008-04-21 Ulrich Weigand <uweigand@de.ibm.com>
5628
5629 * linux-ppc-low.c (ppc_arch_setup): Reset ppc_hwcap after the
5630 initial call to init_register_ppc64.
5631
550512b8
UW
56322008-04-21 Ulrich Weigand <uweigand@de.ibm.com>
5633
43aaf8b6
PA
5634 * configure.srv (powerpc64-*-linux*, powerpc-*-linux*): Merge into
5635 single powerpc*-*-linux* case.
550512b8
UW
5636 (s390-*-linux*, s390x-*-linux*): Merge into single s390*-*-linux* case.
5637
b6430ec3
UW
56382008-04-17 Ulrich Weigand <uweigand@de.ibm.com>
5639
5640 * configure.srv [powerpc64-*-linux*]: Remove powerpc-e500.o from
889bf7c5 5641 srv_regobj. Remove rs6000/powerpc-e500.xml and rs6000/power-spe.xml
b6430ec3
UW
5642 from reg_xmlfiles.
5643 * linux-ppc-low.c: Include <elf.h>.
5644 (PPC_FEATURE_HAS_ALTIVEC, PPC_FEATURE_HAS_SPE): Define.
5645 (ppc_hwcap): New global variable.
5646 (ppc_regmap): Remove __SPE__ #ifdef sections.
5647 (ppc_regmap_e500): New global variable.
5648 (ppc_cannot_store_register): Update __SPE__ special case.
5649 (ppc_get_hwcap): New function.
5650 (ppc_arch_setup): Use it to determine whether inferior supports
5651 AltiVec or SPE registers. Set the_low_target.regmap if appropriate.
5652 (ppc_fill_vrregset, ppc_store_vrregset): Define unconditionally.
5653 Do not access registers if target does not support AltiVec.
5654 (ppc_fill_evrregset, ppc_store_evrregset): Define unconditionally.
5655 Do not access registers if target does not support SPE.
5656 (target_regsets): Unconditionally include AltiVec and SPE regsets.
5657
52fa2412
UW
56582008-04-17 Daniel Jacobowitz <dan@codesourcery.com>
5659
5660 * linux-low.c (disabled_regsets, num_regsets): New.
5661 (use_regsets_p): Delete.
5662 (linux_wait_for_process): Clear disabled_regsets.
5663 (regsets_fetch_inferior_registers): Check and set it.
5664 (regsets_store_inferior_registers): Likewise.
5665 (linux_fetch_registers, linux_store_registers): Do not use
5666 use_regsets_p.
5667 (initialize_low): Allocate disabled_regsets.
5668
e28b3332
DJ
56692008-04-14 Daniel Jacobowitz <dan@codesourcery.com>
5670
5671 * Makefile.in (LIBOBJS): New.
5672 (OBS): Use LIBOBJS.
5673 (memmem.o): New rule.
5674 * configure.ac: Use AC_CONFIG_LIBOBJ_DIR and check for memmem.
5675 * configure: Regenerated.
5676
4536995d
UW
56772008-04-04 Ulrich Weigand <uweigand@de.ibm.com>
5678
5679 * server.c (handle_query): Never return "unsupported" for
5680 qXfer:features:read queries.
5681
221c031f
UW
56822008-03-27 Ulrich Weigand <uweigand@de.ibm.com>
5683
5684 * server.c (get_features_xml): Fix inverted condition.
5685 (handle_query): Always support qXfer:feature:read.
5686
ccd213ac
DJ
56872008-03-10 Daniel Jacobowitz <dan@codesourcery.com>
5688
5689 * server.c (wrapper_argv): New.
5690 (start_inferior): Handle wrapper_argv. If set, expect an extra
5691 trap.
5692 (gdbserver_usage): Document --wrapper.
5693 (main): Parse --wrapper.
5694
6fe305f7
UW
56952008-02-28 Ulrich Weigand <uweigand@de.ibm.com>
5696
5697 * configure.srv [powerpc64-*-linux*]: Add all files mentioned for
5698 powerpc-*-linux* to srv_regobj and reg_xmlfiles.
5699 * linux-ppc-low.c (ppc_get_pc): Support bi-arch operation.
5700 (ppc_set_pc): Likewise.
5701 (ppc_arch_setup): New function.
5702 (ppc_fill_gregset): Call ppc_collect_ptrace_register instead
5703 of collect_register.
889bf7c5 5704 (the_low_target): Use ppc_arch_setup as arch_setup initializer.
6fe305f7 5705
5b0a002e
UW
57062008-02-28 Ulrich Weigand <uweigand@de.ibm.com>
5707
5708 * configure.srv [powerpc64-*-linux*]: Use linux-ppc-low.o
5709 instead of linux-ppc64-low.o.
5710 * linux-ppc64-low.c: Remove file.
5711 * Makefile.in (SFILES): Remove linux-ppc64-low.c.
5712 (linux-ppc64-low.o): Remove rule.
5713
5714 * linux-ppc-low.c (init_registers_ppc64): Add prototype.
5715 (init_registers_powerpc_64): Likewise.
5716 (ppc_regmap): Conditionally define depending on __powerpc64__.
5717 (ppc_cannot_store_register): Do not special-case "fpscr" when
5718 compiled on __powerpc64__.
5719 (ppc_collect_ptrace_register): New function.
5720 (ppc_supply_ptrace_register): New function.
5721 (ppc_breakpoint): Change type to "unsigned int".
5722 (ppc_breakpoint_at): Change type of "insn" to "unsigned int".
5723 (the_low_target): Conditionally provide initializers for the
889bf7c5 5724 arch_setup member depending on __powerpc64__. Install
5b0a002e
UW
5725 collect_ptrace_register and supply_ptrace_register members.
5726
9b4b61c8
UW
57272008-02-28 Ulrich Weigand <uweigand@de.ibm.com>
5728
5729 * regcache.h (gdbserver_xmltarget): Add extern declaration.
5730 * server.c (gdbserver_xmltarget): Define.
5731 (get_features_xml): Use it to replace "target.xml" and arch_string.
5732
5733 * configure.srv: Remove srv_xmltarget. Add XML files that were
5734 mentioned there to srv_xmlfiles instead. Remove conditional tests
5735 on gdb_cv_arm_iwmmxt, gdb_cv_ppc_altivec, gdb_cv_ppc_spe; set
5736 srv_xmlfiles and srv_regobj to include all possible choices.
5737 * configure.ac (srv_xmltarget): Remove.
5738 (srv_xmlfiles): Do not add "target.xml".
5739 (gdb_cv_arm_iwmmxt, gdb_cv_ppc_altivec, gdb_cv_ppc_spe): Remove
5740 checks for supplementary target information.
5741 * configure: Regenerate.
5742 * Makefile.in (XML_TARGET): Remove.
5743 (target.xml): Remove rule.
5744 (clean): Do not clean up target.xml.
5745 (.PRECIOUS): Do not mention target.xml.
5746
5747 * target.h (struct target_ops): Remove arch_string member.
5748 * linux-low.c (linux_arch_string): Remove.
5749 (linux_target_ops): Remove arch_string initializer.
5750 * linux-low.h (struct linux_target_ops): Remove arch_string member.
5751 * linux-i386-low.c (the_low_target): Remove arch_string initializer.
5752 * linux-x86-64-low.c (the_low_target): Remove arch_string initializer.
5753 * spu-low.c (spu_arch_string): Remove.
5754 (spu_target_ops): Remove arch_string initializer.
5755 * win32-low.c (win32_arch_string): Remove.
5756 (win32_target_ops): Remove arch_string initializer.
5757 * win32-low.h (struct win32_target_ops): Remove arch_string member.
5758 * win32-arm-low.c (the_low_target): Remove arch_string initializer.
5759 * win32-i368-low.c (the_low_target): Remove arch_string initializer.
5760
ee1a7ae4
UW
57612008-02-27 Ulrich Weigand <uweigand@de.ibm.com>
5762
5763 * linux-low.h (struct linux_target_ops): Replace left_pad_xfer field
5764 by collect_ptrace_register and supply_ptrace_register hooks.
5765 * linux-low.c (fetch_register): Use supply_ptrace_register callback
5766 instead of checking for the_low_target.left_pad_xfer.
5767 (usr_store_inferior_registers): Use collect_ptrace_register callback
5768 instead of checking for the_low_target.left_pad_xfer.
5769
5770 * linux-s390-low.c (s390_collect_ptrace_register): New function.
5771 (s390_supply_ptrace_register): Likewise.
5772 (s390_fill_gregset): Call s390_collect_ptrace_register.
5773 (the_low_target): Update.
5774
5775 * linux-ppc64-low.c (ppc_collect_ptrace_register): New function.
5776 (ppc_supply_ptrace_register): Likewise.
5777 (the_low_target): Update.
5778
5779 * linux-i386-low.c (the_low_target): Update.
5780 * linux-x86-64-low.c (the_low_target): Update.
5781
d61ddec4
UW
57822008-02-27 Ulrich Weigand <uweigand@de.ibm.com>
5783
5784 * configure.srv [s390x-*-linux*]: Set srv_regobj to include both
5785 reg-s390.o and reg-s390x.o.
5786
5787 * linux-low.c (new_inferior): New global variable.
5788 (linux_create_inferior, linux_attach): Set it.
5789 (linux_wait_for_process): Call the_low_target.arch_setup after the
5790 target has stopped for the first time.
5791 (initialize_low): Do not call the_low_target.arch_setup.
5792
5793 * linux-s390-low.c (s390_get_pc): Support bi-arch operation.
5794 (s390_set_pc): Likewise.
5795 (s390_arch_setup): New function.
5796 (the_low_target): Use s390_arch_setup as arch_setup routine.
5797
5798 * regcache.c (realloc_register_cache): New function.
5799 (set_register_cache): Call it for each existing regcache.
5800
d05b4ac3
UW
58012008-02-27 Ulrich Weigand <uweigand@de.ibm.com>
5802
5803 * server.h (init_registers): Remove prototype.
5804
5805 * linux-low.h (struct linux_target_ops): Add arch_setup field.
5806 * linux-low.c (initialize_low): Call the_low_target.arch_setup ()
5807 instead of init_registers ().
5808 * linux-arm-low.c (init_registers_arm): Add prototype.
5809 (init_registers_arm_with_iwmmxt): Likewise.
5810 (the_low_target): Add initializer for arch_setup field.
5811 * linux-cris-low.c (init_registers_cris): Add prototype.
5812 (the_low_target): Add initializer for arch_setup field.
5813 * linux-crisv32-low.c (init_registers_crisv32): Add prototype.
5814 (the_low_target): Add initializer for arch_setup field.
5815 * linux-i386-low.c (init_registers_i386_linux): Add prototype.
5816 (the_low_target): Add initializer for arch_setup field.
5817 * linux-ia64-low.c (init_registers_ia64): Add prototype.
5818 (the_low_target): Add initializer for arch_setup field.
5819 * linux-m32r-low.c (init_registers_m32r): Add prototype.
5820 (the_low_target): Add initializer for arch_setup field.
5821 * linux-m68k-low.c (init_registers_m68k): Add prototype.
5822 (the_low_target): Add initializer for arch_setup field.
5823 * linux-mips-low.c (init_registers_mips_linux): Add prototype.
5824 (init_registers_mips64_linux): Likewise.
5825 (the_low_target): Add initializer for arch_setup field.
5826 * linux-ppc-low.c (init_registers_ppc): Add prototype.
5827 (init_registers_powerpc_32, init_registers_powerpc_e500): Likewise.
5828 (the_low_target): Add initializer for arch_setup field.
5829 * linux-ppc64-low.c (init_registers_ppc64): Add prototype.
5830 (init_registers_powerpc_64): Likewise.
5831 (the_low_target): Add initializer for arch_setup field.
5832 * linux-s390-low.c (init_registers_s390): Add prototype.
5833 (init_registers_s390x): Likewise.
5834 (the_low_target): Add initializer for arch_setup field.
5835 * linux-sh-low.c (init_registers_sh): Add prototype.
5836 (the_low_target): Add initializer for arch_setup field.
5837 * linux-x86-64-low.c (init_registers_x86_64_linux): Add prototype.
5838 (the_low_target): Add initializer for arch_setup field.
5839 * linux-xtensa-low.c (init_registers_xtensa): Add prototype.
5840 (the_low_target): Add initializer for arch_setup field.
5841
5842 * win32-low.h (struct win32_target_ops): Add arch_setup field.
5843 * win32-low.c (initialize_low): Call the_low_target.arch_setup ()
5844 instead of init_registers ().
5845 * win32-arm-low.c (init_registers_arm): Add prototype.
5846 (the_low_target): Add initializer for arch_setup field.
5847 * win32-i386-low.c (init_registers_i386): Add prototype.
5848 (the_low_target): Add initializer for arch_setup field.
5849
5850 * spu-low.c (init_registers_spu): Add prototype.
5851 (initialize_low): Call initialie_registers_spu () instead of
5852 initialize_registers ().
5853
fd96d250
PA
58542008-02-19 Pedro Alves <pedro@codesourcery.com>
5855
5856 * server.c (handle_v_requests): When handling the vRun and vAttach
5857 packets, if already debugging a process, don't kill it. Return an
5858 error instead.
5859
d41b6bb4
DJ
58602008-02-17 Daniel Jacobowitz <dan@codesourcery.com>
5861
5862 * server.c (handle_query): Correct length check.
5863
5ac588cf
PA
58642008-02-14 Pedro Alves <pedro_alves@portugalmail.pt>
5865
5866 * win32-low.c (do_initial_child_stuff): Add process handle
5867 parameter. Set current_process_handle and current_process_id from the
5868 parameters. Clear globals.
5869 (win32_create_inferior): Don't set current_process_handle and
5870 current_process_id here. Instead pass them on the call to
5871 do_initial_child_stuff.
5872 (win32_attach): Likewise.
5873 (win32_clear_inferiors): New.
5874 (win32_kill): Don't close the current process handle or the
5875 current thread handle here. Instead call win32_clear_inferiors.
5876 (win32_detach): Don't open a new handle to the process. Call
5877 win32_clear_inferiors.
5878 (win32_join): Don't rely on current_process_handle; open a new
5879 handle using the process id.
5880 (win32_wait): Call win32_clear_inferiors when the inferior process
5881 has exited.
5882
ecd7ecbc
DJ
58832008-02-14 Daniel Jacobowitz <dan@codesourcery.com>
5884
5885 * server.c (monitor_show_help): Add "exit".
5886
1525d545
MG
58872008-02-11 Maxim Grigoriev <maxim2405@gmail.com>
5888
ecd7ecbc 5889 * Makefile.in (SFILES): Add linux-xtensa-low.c.
1525d545
MG
5890 (clean): Add reg-xtensa.c.
5891 (linux-xtensa-low.o, reg-xtensa.o, reg-xtensa.c): New dependencies.
ecd7ecbc
DJ
5892 * configure.srv (xtensa*-*-linux*) New target.
5893 * linux-xtensa-low.c: New.
5894 * xtensa-xtregs.c: New.
1525d545 5895
59a016f0
PA
58962008-02-01 Pedro Alves <pedro_alves@portugalmail.pt>
5897
5898 * hostio.c: Don't include errno.h.
5899 (errno_to_fileio_errno): Move to hostio-errno.
5900 * hostio.c: (hostio_error): Remove the error parameter. Defer the
5901 error number outputting to the target->hostio_last_error callback.
5902 (hostio_packet_error): Use FILEIO_EINVAL directly.
5903 (handle_open, handle_pread, hostio_error, handle_unlink): Update
5904 calls to hostio_error.
5905 * hostio-errno.c: New.
5906 * server.h (hostio_last_error_from_errno): Declare.
5907 * target.h (target_ops): Add hostio_last_error member.
5908 * linux-low.c (linux_target_op): Register hostio_last_error_from_errno
5909 as hostio_last_error handler.
889bf7c5 5910 * spu-low.c (spu_target_ops): Likewise.
59a016f0
PA
5911 * win32-low.c [_WIN32_WCE] (win32_error_to_fileio_error)
5912 (wince_hostio_last_error): New functions.
5913 (win32_target_ops) [_WIN32_WCE]: Register wince_hostio_last_error
5914 as hostio_last_error handler.
5915 (win32_target_ops) [!_WIN32_WCE]: Register
5916 hostio_last_error_from_errno as hostio_last_error handler.
5917 * Makefile.in (SFILES): Add hostio.c and hostio-errno.c.
5918 (hostio-errno.o): New rule.
5919 * configure.ac (GDBSERVER_DEPFILES): Add $srv_hostio_err_objs.
5920 * configure.srv (srv_hostio_err_objs): New variable. Default to
5921 hostio-errno.o.
5922 (arm*-*-mingw32ce*): Set srv_hostio_err_objs to "".
5923 * configure: Regenerate.
5924
2d717e4f
DJ
59252008-01-29 Daniel Jacobowitz <dan@codesourcery.com>
5926
5927 * linux-low.c (linux_attach_lwp): Do not _exit after errors.
5928 (linux_kill, linux_detach): Clean up the process list.
5929 * remote-utils.c (remote_open): Improve port number parsing.
5930 (putpkt_binary, input_interrupt): Only send interrupts if the target
5931 is running.
5932 * server.c (extended_protocol): Make static.
5933 (attached): Define earlier.
5934 (exit_requested, response_needed, program_argv): New variables.
5935 (target_running): New.
5936 (start_inferior): Clear attached here.
5937 (attach_inferior): Set attached here.
5938 (require_running): Define.
5939 (handle_query): Use require_running and target_running. Implement
5940 "monitor exit".
5941 (handle_v_attach, handle_v_run): New.
5942 (handle_v_requests): Use require_running. Handle vAttach and vRun.
5943 (gdbserver_usage): Update.
5944 (main): Redo argument parsing. Handle --debug and --multi. Handle
5945 --attach along with other options or after the port. Save
5946 program_argv. Support no initial program. Resynchronize
5947 communication with GDB after an error. Handle "monitor exit".
5948 Use require_running and target_running. Always allow the extended
5949 protocol. Do not error out for Hc0 or Hc-1. Do not automatically
5950 restart in extended mode.
5951 * README: Refer to the GDB manual. Update --attach usage.
5952
7407e2de
AS
59532007-12-20 Andreas Schwab <schwab@suse.de>
5954
5955 * linux-low.c (STACK_SIZE): Define.
5956 (linux_tracefork_child): Use it. Use __clone2 on ia64.
5957 (linux_test_for_tracefork): Likewise.
5958
b65d95c5
DJ
59592007-12-18 Daniel Jacobowitz <dan@codesourcery.com>
5960
5961 * linux-low.c (linux_wait_for_event): Update messages. Do not
5962 reinsert auto-delete breakpoints.
5963 * mem-break.c (struct breakpoint): Change return type of handler to
5964 int.
5965 (set_breakpoint_at): Update handler type.
5966 (reinsert_breakpoint_handler): Return 1 instead of calling
5967 delete_breakpoint.
5968 (reinsert_breakpoint_by_bp): Check for the original breakpoint before
5969 setting a new one.
5970 (check_breakpoints): Delete auto-delete breakpoints and return 2.
5971 * mem-break.h (set_breakpoint_at): Update handler type.
5972 * thread-db.c (thread_db_create_event, thread_db_create_event): Update.
5973 * win32-low.c (auto_delete_breakpoint): New.
5974 (get_child_debug_event): Use it.
5975
4e799345
DJ
59762007-12-16 Daniel Jacobowitz <dan@codesourcery.com>
5977
5978 * configure.ac: Check for pread and pwrite.
5979 * hostio.c (handle_pread): Fall back to lseek and read.
5980 (handle_pwrite): Fall back to lseek and write.
5981 * config.in, configure: Regenerated.
5982
27524b67
DJ
59832007-12-07 Daniel Jacobowitz <dan@codesourcery.com>
5984
5985 * server.c (myresume): Add own_buf argument.
5986 (main): Update calls.
5987
a20d5e98
DJ
59882007-12-06 Daniel Jacobowitz <dan@codesourcery.com>
5989
5990 * linux-low.c (linux_wait, linux_resume): Do not handle async I/O.
5991 * remote-utils.c (remote_open): Do not call disable_async_io.
5992 (block_async_io): Delete.
5993 (unblock_async_io): Make static.
5994 (initialize_async_io): New.
5995 * server.c (handle_v_cont): Handle async I/O here.
5996 (myresume): Likewise. Move other common resume tasks here...
5997 (main): ... from here. Call initialize_async_io. Disable async
5998 I/O before the main loop.
5999 * server.h (initialize_async_io): Declare.
6000 (block_async_io, unblock_async_io): Delete prototypes.
6001 * spu-low.c (spu_resume, spu_wait): Do not handle async I/O here.
6002
b79d787e
DJ
60032007-12-06 Mick Davis <mickd@goanna.iinet.net.au>
6004
6005 * remote-utils.c (readchar): Allow binary data in received messages.
6006
d97903b2
PA
60072007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
6008
6009 * win32-low.c (attaching): New global.
6010 (win32_create_inferior): Clear the `attaching' global.
6011 (win32_attach): Set the `attaching' global.
6012 (get_child_debug_event) [_WIN32_WCE]: Stop the inferior when
6013 attaching. Only set a breakpoint at the entry point if not
6014 attaching.
6015
311de423
PA
60162007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
6017
6018 * server.c (main): Don't report dll events on the initial
6019 connection on attaches.
6020
6c2d16d2
PA
60212007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
6022
6023 * server.c (main): Relax numerical bases supported for the pid of
6024 the --attach command line argument.
6025
5ca906e6
PA
60262007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
6027
6028 * win32-low.c (win32_attach): Call OpenProcess before
6029 DebugActiveProcess, not after. Add last error output to error
6030 call.
6031
9c6c8194
PA
60322007-12-03 Pedro Alves <pedro_alves@portugalmail.pt>
6033
6034 * win32-low.c (win32_get_thread_context)
6035 (win32_set_thread_context): New functions.
6036 (thread_rec): Use win32_get_thread_context.
6037 (continue_one_thread, win32_resume): Use win32_set_thread_context.
6038 * win32-low.h (win32_thread_info) [_WIN32_WCE]: Add `base_context'
6039 field.
6040
4d5d1aaa
PA
60412007-12-03 Leo Zayas
6042 Pedro Alves <pedro_alves@portugalmail.pt>
6043
6044 * win32-low.c (soft_interrupt_requested, faked_breakpoint): New
6045 global variables.
6046 (child_add_thread): Minor cleanup.
6047 (child_continue): Resume artificially suspended threads before
6048 calling ContinueDebugEvent.
6049 (suspend_one_thread): New.
6050 (fake_breakpoint_event): New.
6051 (get_child_debug_event): Change return type to int. Check here if
6052 gdb sent an interrupt request. If a soft interrupt was requested,
6053 fake a breakpoint event. Return 0 if there is no event to handle,
6054 and 1 otherwise.
6055 (win32_wait): Don't check here if gdb sent an interrupt request.
6056 Ensure there is a valid event to handle.
6057 (win32_request_interrupt): Add soft interruption method as last
6058 resort.
6059
c436e841
PA
60602007-12-03 Leo Zayas
6061 Pedro Alves <pedro_alves@portugalmail.pt>
6062
6063 * win32-low.h (win32_thread_info): Add descriptions to the
6064 structure members. Replace `suspend_count' counter by a
6065 `suspended' flag.
6066 * win32-low.c (thread_rec): Update condition of when to get the
6067 context from the inferior. Rely on ContextFlags being set if it
6068 has already been retrieved. Only suspend the inferior thread if
6069 we haven't already. Warn if that fails.
6070 (continue_one_thread): s/suspend_count/suspended/. Only call
6071 ResumeThread once. Warn if that fails.
6072
e7b5fa67
PA
60732007-12-02 Pedro Alves <pedro_alves@portugalmail.pt>
6074
6075 * win32-low.c (win32_wait): Don't read from the inferior when it
6076 has already exited.
6077
a385171d
PA
60782007-12-02 Pedro Alves <pedro_alves@portugalmail.pt>
6079
6080 * Makefile.in (win32_low_h): New variable.
6081 (win32-low.o): Add dependency on $(win32_low_h).
6082 (win32-arm-low.o, win32-i386-low.o): New rules.
6083
f80c84b3
DJ
60842007-11-30 Daniel Jacobowitz <dan@codesourcery.com>
6085
6086 * hostio.c: Correct copyright year.
6087
a6b151f1
DJ
60882007-11-30 Daniel Jacobowitz <dan@codesourcery.com>
6089
6090 * Makefile.in (OBS): Add hostio.o.
6091 (hostio.o): New rule.
6092 * server.h (handle_vFile): Declare.
6093 * hostio.c: New file.
6094 * server.c (handle_v_requests): Take packet_len and new_packet_len
6095 for binary packets. Call handle_vFile.
6096 (main): Update call to handle_v_requests.
6097
f9387fc3
DJ
60982007-11-05 Daniel Jacobowitz <dan@codesourcery.com>
6099
6100 * linux-low.c: Include <sched.h>.
6101
51c2684e
DJ
61022007-11-01 Daniel Jacobowitz <dan@codesourcery.com>
6103
6104 * linux-low.c (linux_tracefork_grandchild): New.
6105 (linux_tracefork_child): Use clone.
6106 (linux_test_for_tracefork): Use clone; allocate and free a stack.
6107
75f83163
JB
61082007-10-31 Joel Brobecker <brobecker@adacore.com>
6109
6110 * Makefile.in: Use $(SHELL) instead of "sh" to call regdat.sh.
6111
da5898ce
DJ
61122007-10-24 Daniel Jacobowitz <dan@codesourcery.com>
6113
6114 * linux-low.c (handle_extended_wait): Handle unexpected signals.
6115
24a09b5f
DJ
61162007-10-23 Daniel Jacobowitz <dan@codesourcery.com>
6117
6118 * inferiors.c (change_inferior_id): Delete.
6119 (add_pid_to_list, pull_pid_from_list): New.
6120 * linux-low.c (PTRACE_SETOPTIONS, PTRACE_GETEVENTMSG)
6121 (PTRACE_O_TRACESYSGOOD, PTRACE_O_TRACEFORK, PTRACE_O_TRACEVFORK)
6122 (PTRACE_O_TRACECLONE, PTRACE_O_TRACEEXEC, PTRACE_O_TRACEVFORKDONE)
6123 (PTRACE_O_TRACEEXIT, PTRACE_EVENT_FORK, PTRACE_EVENT_VFORK)
6124 (PTRACE_EVENT_CLONE, PTRACE_EVENT_EXEC, PTRACE_EVENT_VFORK_DONE)
6125 (PTRACE_EVENT_EXIT, __WALL): Provide default definitions.
6126 (stopped_pids, thread_db_active, must_set_ptrace_flags): New variables.
6127 (using_threads): Always set to 1.
6128 (handle_extended_wait): New.
6129 (add_process): Do not set TID.
6130 (linux_create_inferior): Set must_set_ptrace_flags.
6131 (linux_attach_lwp): Remove TID argument. Do not check using_threads.
6132 Use PTRACE_SETOPTIONS. Call new_thread_notify. Update all callers.
6133 (linux_thread_alive): Rename TID argument to LWPID.
6134 (linux_wait_for_process): Handle unknown processes. Do not use TID.
6135 (linux_wait_for_event): Do not use TID or check using_threads. Update
6136 call to dead_thread_notify. Call handle_extended_wait.
6137 (linux_create_inferior): Use PTRACE_SETOPTIONS.
6138 (send_sigstop): Delete sigstop_sent.
6139 (wait_for_sigstop): Avoid TID.
6140 (linux_supports_tracefork_flag, linux_tracefork_child, my_waitpid)
6141 (linux_test_for_tracefork): New.
6142 (linux_lookup_signals): Use thread_db_active and
6143 linux_supports_tracefork_flag.
6144 (initialize_low): Use thread_db_active and linux_test_for_tracefork.
6145 * linux-low.h (get_process_thread): Avoid TID.
6146 (struct process_ifo): Move thread_known and tid to the end. Remove
6147 sigstop_sent.
6148 (linux_attach_lwp, thread_db_init): Update prototypes.
6149 * server.h (change_inferior_id): Delete prototype.
6150 (add_pid_to_list, pull_pid_from_list): New prototypes.
6151 * thread-db.c (thread_db_use_events): New.
6152 (find_first_thread): Rename to...
6153 (find_one_thread): ...this. Update callers and messages. Do not
6154 call fatal. Check thread_db_use_events. Do not call
6155 change_inferior_id or new_thread_notify.
6156 (maybe_attach_thread): Update. Do not call new_thread_notify.
6157 (thread_db_init): Set thread_db_use_events. Check use_events.
6158 * utils.c (fatal, warning): Correct message prefix.
6159
30ed0a8f
DJ
61602007-10-15 Daniel Jacobowitz <dan@codesourcery.com>
6161
6162 * Makefile.in (clean): Remove new files.
6163 (powerpc-32.o, powerpc-32.c, powerpc-e500.o, powerpc-e500.c)
6164 (powerpc-64.o, powerpc-64.c): New rules.
6165 * configure.srv: Use alternate register sets for powerpc64-*-linux*
6166 with AltiVec, powerpc-*-linux* with AltiVec, and powerpc-*-linux*
6167 with SPE.
6168 * linux-ppc-low.c (ppc_regmap): Do not fetch the FP registers for
6169 SPE targets.
6170 (ppc_cannot_store_register): Do not check for FPSCR for SPE targets.
6171 (PTRACE_GETVRREGS, PTRACE_SETVRREGS, SIZEOF_VRREGS, ppc_fill_vrregset)
6172 (ppc_store_vrregset, PTRACE_GETEVRREGS, PTRACE_SETEVRREGS)
6173 (struct gdb_evrregset_t, ppc_fill_evrregset, ppc_store_evrregset): New.
6174 (target_regsets): Add AltiVec and SPE register sets.
6175 * configure.ac: Check for AltiVec and SPE.
6176 * linux-ppc64-low.c (PTRACE_GETVRREGS, PTRACE_SETVRREGS, SIZEOF_VRREGS)
6177 (ppc_fill_vrregset, ppc_store_vrregset): New.
6178 (target_regsets): Add AltiVec register set.
6179 * configure: Regenerated.
6180
fd462a61
DJ
61812007-09-19 Daniel Jacobowitz <dan@codesourcery.com>
6182
6183 * linux-low.c (O_LARGEFILE): Define.
6184 (linux_read_memory): Use /proc/PID/mem.
6185 * configure.ac: Use AC_GNU_SOURCE. Check for pread64.
6186 * configure, config.in: Regenerated.
6187
69f223ed
DJ
61882007-09-04 Daniel Jacobowitz <dan@codesourcery.com>
6189
6190 * linux-low.c (linux_wait_for_event): Do not pass signals while
6191 single-stepping.
6192
aec18585
PA
61932007-09-03 Pedro Alves <pedro_alves@portugalmail.pt>
6194
6195 * win32-low.c (create_process): New.
6196 (win32_create_inferior): Use create_process instead of
6197 CreateProcess. If create_process failed retry appending an ".exe"
6198 suffix. Store the GetLastError result immediatelly after
6199 create_process calls and use it on the call to error.
6200
34d86ddd
PA
62012007-09-03 Pedro Alves <pedro_alves@portugalmail.pt>
6202
6203 * win32-low.c (handle_load_dll): Don't use toolhelp when waiting.
6204
5a0e3bd0
JB
62052007-08-23 Joel Brobecker <brobecker@adacore.com>
6206
6207 * configure.ac: Switch license to GPLv3.
6208
f88c79e6
MS
62092007-08-01 Michael Snyder <msnyder@access-company.com>
6210
6211 * remote-utils.c (putpkt_binary): Memory leak, free buf2.
6212
6b3d9b83
PA
62132007-07-31 Pedro Alves <pedro_alves@portugalmail.pt>
6214
6215 * win32-low.c (winapi_CloseToolhelp32Snapshot) [_WIN32_WCE]: New
6216 typedef.
6217 (win32_CloseToolhelp32Snapshot) [_WIN32_WCE]: New global var.
6218 (load_toolhelp) [_WIN32_WCE]: Load TOOLHELP.DLL. Get
6219 CloseToolhelp32Snapshot.
6220 (toolhelp_get_dll_name) [_WIN32_WCE]: Close the snapshot with
6221 CloseToolhelp32Snapshot.
6222
c588c53c
MS
62232007-07-27 Michael Snyder <michael.snyder@access-company.com>
6224
6225 * server.c (main): Check for inferior exit before main loop.
6226
aa0403d9
PA
62272007-07-18 Pedro Alves <pedro_alves@portugalmail.pt>
6228
6229 * remote-utils.c (remote_open): Set SO_KEEPALIVE on remote_desc
6230 instead of on tmp_desc.
6231
255e7678
DJ
62322007-07-17 Pedro Alves <pedro_alves@portugalmail.pt>
6233 Daniel Jacobowitz <dan@codesourcery.com>
6234
6235 * inferiors.c (all_dlls, dlls_changed, get_dll): New.
6236 (add_thread): Minor cleanups.
6237 (clear_inferiors): Move lower in the file. Clear the DLL
6238 list.
6239 (free_one_dll, match_dll, loaded_dll, unloaded_dll, clear_list): New.
6240 * remote-utils.c (prepare_resume_reply): Check dlls_changed.
6241 (xml_escape_text): New.
6242 * server.c (handle_query): Handle qXfer:libraries:read. Report it
6243 for qSupported.
6244 (handle_v_cont): Report errors.
6245 (gdbserver_version): Update.
6246 (main): Correct size of own_buf. Do not report initial DLL events.
6247 * server.h (struct dll_info, all_dlls, dlls_changed, loaded_dll)
6248 (unloaded_dll, xml_escape_text): New.
6249 * win32-low.c (enum target_waitkind): Update comments.
6250 (win32_add_one_solib, get_image_name, winapi_EnumProcessModules)
6251 (winapi_GetModuleInformation, winapi_GetModuleFileNameExA)
6252 (win32_EnumProcessModules, win32_GetModuleInformation)
6253 (win32_GetModuleFileNameExA, load_psapi, psapi_get_dll_name)
6254 (winapi_CreateToolhelp32Snapshot, winapi_Module32First)
6255 (winapi_Module32Next, win32_CreateToolhelp32Snapshot)
6256 (win32_Module32First, win32_Module32Next, load_toolhelp)
6257 (toolhelp_get_dll_name, handle_load_dll, handle_unload_dll): New.
6258 (get_child_debug_event): Handle DLL events.
6259 (win32_wait): Likewise.
6260
0d37add9
DJ
62612007-07-12 Daniel Jacobowitz <dan@codesourcery.com>
6262
6263 * configure.srv: Set srv_linux_regsets for sh*-*-linux*.
6264 * linux-sh-low.c (sh_fill_gregset, target_regsets): New.
6265
45e2715e
PA
62662007-07-08 Pedro Alves <pedro_alves@portugalmail.pt>
6267
6268 * win32-low.c (handle_output_debug_string): Ignore event if not
6269 waiting.
6270
c5674cf1
PA
62712007-07-08 Pedro Alves <pedro_alves@portugalmail.pt>
6272
6273 * win32-arm-low.c (arm_wince_breakpoint): Fix typo.
6274
2bbe3cc1
DJ
62752007-07-03 Daniel Jacobowitz <dan@codesourcery.com>
6276
6277 * remote-utils.c (look_up_one_symbol): Handle 'm' packets.
6278
ae13219e
DJ
62792007-07-02 Daniel Jacobowitz <dan@codesourcery.com>
6280
6281 * inferiors.c (change_inferior_id): Add comment.
6282 * linux-low.c (check_removed_breakpoint): Add an early
6283 prototype. Improve debug output.
6284 (linux_attach): Doc update.
6285 (linux_detach_one_process, linux_detach): Clean up before releasing
6286 each process.
6287 (send_sigstop, wait_for_sigstop): Improve comments and debug output.
6288 * linux-low.h (struct process_info): Doc improvement.
6289 * mem-break.c (delete_all_breakpoints): New.
6290 * mem-break.h (delete_all_breakpoints): New prototype.
6291 * thread-db.c (find_first_thread): New.
6292 (thread_db_create_event): Call it instead of
6293 thread_db_find_new_threads. Clean up unused variables.
6294 (maybe_attach_thread): Remove first thread handling.
6295 (thread_db_find_new_threads): Use find_first_thread.
6296 (thread_db_get_tls_address): Likewise.
6297
4105de34
DJ
62982007-06-27 Daniel Jacobowitz <dan@codesourcery.com>
6299
6300 * thread-db.c (thread_db_find_new_threads): Add prototype.
6301 (thread_db_create_event): Check for the main thread before adding
6302 a new thread.
6303 (maybe_attach_thread): Only enable event reporting if TID == 0.
6304 (thread_db_get_tls_address): Check for new threads.
6305
2b876972
DJ
63062007-06-20 Daniel Jacobowitz <dan@codesourcery.com>
6307
6308 * linux-low.c (linux_create_inferior): Try execv before execvp.
6309 * spu-low.c (spu_create_inferior): Likewise.
6310
7a245884
DJ
63112007-06-13 Mike Frysinger <vapier@gentoo.org>
6312
6313 * linux-low.c (linux_create_inferior): Change execv to execvp.
6314 * spu-low.c (spu_create_inferior): Likewies.
6315
117ce543
DJ
63162007-06-13 Daniel Jacobowitz <dan@codesourcery.com>
6317
6318 * Makefile.in (clean): Clean new files instead of deleted ones.
6319 (reg-mips.o, reg-mips.c, reg-mips64.o, reg-mips64.c): Delete.
6320 (mips-linux.o, mips-linux.c, mips64-linux.o, mips64-linux.c): New
6321 rules.
6322 * configure.srv: Specify XML files and new regformats for MIPS and
6323 MIPS64 GNU/Linux.
6324 * linux-mips-low.c (mips_num_regs): Set to only used registers.
6325 (mips_regmap): Do not fetch $0. Remove unused registers. Add
6326 an entry for the restart register.
6327 (mips_cannot_fetch_register, mips_cannot_store_register)
6328 (mips_reinsert_addr, mips_fill_fpregset, mips_store_fpregset): Update
6329 register names to match the XML descriptions.
6330 (mips_fill_gregset, mips_store_gregset): Likewise. Handle the
6331 restart register instead of $0.
6332
0e7f50da
UW
63332007-06-12 Ulrich Weigand <uweigand@de.ibm.com>
6334 Markus Deuling <deuling@de.ibm.com>
6335
6336 * remote-utils.c (decode_xfer_write): New function.
6337 * server.h (decode_xfer_write): Add prototype.
6338 * server.c (handle_query): Add PACKET_LEN argument. Support
6339 qXfer:spu:read and qXfer:spu:write packets.
6340 (main): Pass packet_len to handle_query.
6341 * spu-low.c (spu_target_ops): Add spu_proc_xfer_spu.
6342 * target.h (target_ops): Add qxfer_spu.
6343
374c1d38
UW
63442007-06-12 Ulrich Weigand <uweigand@de.ibm.com>
6345
6346 * spu-low.c (spu_proc_xfer_spu): Do not return failure when
6347 accessing non-seekable spufs files.
6348
bb63802a
UW
63492007-05-16 Markus Deuling <deuling@de.ibm.com>
6350
889bf7c5 6351 * server.c (handle_query): Add reply for qC packet.
bb63802a 6352
7390519e
PA
63532007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
6354 Leo Zayas <lerele@champenstudios@com>
6355
6356 * server.h (check_remote_input_interrupt_request): New function.
6357 * remote_utils.c (INVALID_DESCRIPTOR): New define.
6358 (remote_desc): Initialize with INVALID_DESCRIPTOR.
6359 (input_interrupt): Expose on USE_WIN32API too. Fix whitespace.
6360 (check_remote_input_interrupt_request): New function.
6361 * server.h (check_remote_input_interrupt_request): Declare.
3ecf0694 6362 * win32-low.c (winapi_DebugBreakProcess,
7390519e
PA
6363 winapi_GenerateConsoleCtrlEvent): New typedefs.
6364 (get_child_debug_event): Lower Win32 debug event polling from 1 sec
6365 to 250 ms.
6366 (win32_wait): Check for remote interrupt request
6367 with check_remote_input_interrupt_request.
6368 (win32_request_interrupt): New function.
6369 (win32_target_op): Set request_interrupt to win32_request_interrupt.
6370
34b34921
PA
63712007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
6372
6373 * win32-low.c (debug_registers_changed,
6374 debug_registers_used, CONTEXT_EXTENDED_REGISTERS,
6375 CONTEXT_FLOATING_POINT, CONTEXT_DEBUG_REGISTERS,
6376 CONTEXT_DEBUGGER, CONTEXT_DEBUGGER_DR): Delete.
6377 (thread_rec): Get context using the low target.
6378 (child_add_thread): Call thread_added on the low target,
6379 which does the same thing.
6380 (regptr): Delete.
6381 (do_initial_child_stuff): Remove debug registers references.
6382 Set context using the low target. Resume threads after
6383 setting the contexts.
6384 (child_continue): Remove dead variable. Remove debug
6385 registers references.
6386 (child_fetch_inferior_registers): Go through the low target.
6387 (do_child_store_inferior_registers): Remove.
6388 (child_store_inferior_registers): Go through the low target.
6389 (win32_resume): Remove debug registers references.
6390 Set context using the low target.
6391 (handle_exception): Change return type to void. Don't record
6392 context here. Set status to TARGET_WAITKIND_SPURIOUS on a
6393 first chance exception.
889bf7c5 6394 (get_child_debug_event): Change return type to void. Remove
34b34921
PA
6395 goto loop. Always return after waiting for debug event.
6396 (win32_wait): Convert to switch statement. Handle spurious
6397 events.
6398
6399 * win32-i386-low.c (debug_registers_changed,
6400 debug_registers_used): New.
6401 (initial_stuff): Rename to ...
6402 (i386_initial_stuff): ... this. Clear debug registers
6403 state variables.
6404 (store_debug_registers): Delete.
6405 (i386_get_thread_context): New.
6406 (load_debug_registers): Delete.
6407 (i386_set_thread_context): New.
6408 (i386_thread_added): New.
6409 (single_step): Rename to ...
6410 (i386_single_step): ... this.
6411 (do_fetch_inferior_registers): Rename to ...
6412 (i386_fetch_inferior_register): ... this.
6413 (i386_store_inferior_register): New.
6414 (the_low_target): Adapt to new interface.
6415
6416 * win32-arm-low.c (CONTEXT_FLOATING_POINT): Define.
6417 (arm_get_thread_context): New.
6418 (arm_set_thread_context): New.
6419 (regptr): New.
6420 (do_fetch_inferior_registers): Rename to ...
6421 (arm_fetch_inferior_register): ... this.
6422 (arm_store_inferior_register): New.
6423 (arm_wince_breakpoint): Reimplement as unsigned long.
6424 (arm_wince_breakpoint_len): Define.
6425 (the_low_target): Adapt to new interface.
6426
6427 * win32-low.h (target_ops): Remove regmap, store_debug_registers and
6428 load_debug_registers. Add get_thread_context, set_thread_context,
6429 thread_added and store_inferior_register. Rename
6430 fetch_inferior_registers to fetch_inferior_register.
6431 (regptr): Remove declaration.
6432
dd6953e1
PA
64332007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
6434
6435 * linux-low.c (linux_detach): Change return type to int. Return 0.
6436 * spu-low.c (spu_detach): Likewise.
6437
444d6139
PA
64382007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
6439
6440 * target.h (target_ops): Change return type of detach to int.
6441 Add join.
6442 (join_inferior): New.
6443 * server.c (main): Don't skip detach support on mingw32.
6444 If the inferior doesn't support detaching return error.
6445 Call join_inferior instead of using waitpid.
6446 * linux-low.c (linux_join): New.
6447 (linux_target_op): Add linux_join.
6448 * spu-low.c (spu_join): New.
6449 (spu_target_ops): Add spu_join.
6450 * win32-low.c (win32_detach): Adapt to new interface.
6451 Reopen current_process_handle before detaching. Issue a child
6452 resume before detaching.
6453 (win32_join): New.
6454 (win32_target_op): Add win32_join.
6455
1d5315fe
PA
64562007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
6457
6458 * win32-low.c (win32-attach): Fix return value.
6459 * target.h (target_ops): Describe ATTACH return values.
6460
bf914831
PA
64612007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
6462
6463 * win32-low.c (GETPROCADDRESS): Define.
6464 (winapi_DebugActiveProcessStop): Add WINAPI. typedef as pointer.
6465 (winapi_DebugSetProcessKillOnExit): Likewise.
6466 (win32_create_inferior): Force usage of ansi CreateProcessA.
6467 (win32_attach): Use GETPROCADDRESS.
6468 (win32_detach): Likewise.
6469
f72f3e60
PA
64702007-05-10 Pedro Alves <pedro_alves@portugalmail.pt>
6471
6472 * win32-low.c (win32_wait): Don't use WSTOPSIG.
6473
ed50f18f
PA
64742007-03-30 Pedro Alves <pedro_alves@portugalmail.pt>
6475
6476 * win32-low.c: Commit leftover changes from 2007-03-29.
6477
0c2ead7e
DJ
64782007-03-30 Daniel Jacobowitz <dan@codesourcery.com>
6479
6480 * i387-fp.c (struct i387_fsave, struct i387_fxsave): Make 16-bit
6481 fields short instead of int. Add explicit padding.
6482 (i387_cache_to_fsave): Remove unnecessary casts.
6483 (i387_fsave_to_cache): Doc fix.
6484 (i387_cache_to_fxsave): Remove unnecessary casts and masking.
6485
73725ff3
DJ
64862007-03-30 Daniel Jacobowitz <dan@codesourcery.com>
6487
6488 * i387-fp.c (i387_cache_to_fxsave): Reinitialize val2 before use.
6489 (i387_fxsave_to_cache): Check fp->ftag while building ftag value.
6490
d99f33d8
PA
64912007-03-29 Pedro Alves <pedro_alves@portugalmail.pt>
6492
6493 * configure.srv (arm*-*-mingw32ce*): Move near the other
6494 arm targets.
6495
68070c10
PA
64962007-03-29 Pedro Alves <pedro_alves@portugalmail.pt>
6497
2482afc6 6498 * configure.ac: Add errno checking.
68070c10
PA
6499 (AC_CHECK_HEADERS): Add errno.h, fcntl.h, signal.h,
6500 sys/file.h and malloc.h.
6501 (AC_CHECK_DECLS): Add perror.
6502 (srv_mingwce): Handle.
2482afc6 6503 * configure.srv (i[34567]86-*-cygwin*): Add
68070c10
PA
6504 win32-i386-low.o to srv_tgtobj.
6505 (i[34567]86-*-mingw*): Likewise.
6506 (arm*-*-mingw32ce*): Add case.
6507 * gdbreplay.c [HAVE_SYS_FILE_H, HAVE_SIGNAL_H,
6508 HAVE_FCNTL_H, HAVE_ERRNO_H, HAVE_MALLOC_H]: Check.
6509 [__MINGW32CE__] (strerror): New function.
6510 [__MINGW32CE__] (errno): Define to GetLastError.
6511 [__MINGW32CE__] (COUNTOF): New macro.
6512 (remote_open): Remove extra close call.
6513 * mem-break.c (delete_breakpoint_at): New function.
6514 * mem-break.h (delete_breakpoint_at): Declare.
6515 * remote-utils.c [HAVE_SYS_FILE_H, HAVE_SIGNAL_H,
6516 HAVE_FCNTL_H, HAVE_UNISTD_H, HAVE_ERRNO_H]: Check.
6517 [USE_WIN32API] (read, write): Add char* casts.
6518 * server.c [HAVE_UNISTD_H, HAVE_SIGNAL_H]: Check.
6519 * server.h: Include wincecompat.h on Windows CE.
6520 [HAVE_ERRNO_H]: Check.
6521 (perror): Declare if not declared.
6522 * utils.c: Add stdlib.h, errno.h and malloc.h includes.
6523 (perror_with_name): Remove errno declaration.
6524 * wincecompat.h: New.
6525 * wincecompat.c: New.
6526 * win32-low.h: New.
6527 * win32-arm-low.c: New.
6528 * win32-i386-low.c: New.
6529 (win32-low.c): Include mem-break.h and win32-low.h, and winnt.h.
6530 (OUTMSG2): Make it safe.
6531 (_T): New macro.
6532 (COUNTOF): New macro.
6533 (NUM_REGS): Get it from the low target.
6534 (CONTEXT_EXTENDED_REGISTERS, CONTEXT_FLOATING_POINT,
6535 CONTEXT_DEBUG_REGISTERS): Add fallbacks to 0.
6536 (thread_rec): Let low target handle debug registers.
6537 (child_add_thread): Likewise.
6538 (child_init_thread_list): Likewise.
6539 (continue_one_thread): Likewise.
6540 (regptr): New.
6541 (do_child_fetch_inferior_registers): Move to ...
6542 * win32-i386-low.c: ... here, and rename to ...
6543 (do_fetch_inferior_registers): ... this.
889bf7c5 6544 * win32-low.c (child_fetch_inferior_registers):
68070c10
PA
6545 Go through the low target.
6546 (do_child_store_inferior_registers): Use regptr.
6547 (strwinerror): New function.
6548 (win32_create_inferior): Handle Windows CE.
6549 Use strwinerror instead of strerror on Windows error
6550 codes. Add program to the error output.
6551 Don't close the main thread handle on Windows CE.
6552 (win32_attach): Use coredll.dll on Windows CE.
6553 (win32_kill): Close current process and current
6554 thread handles.
6555 (win32_detach): Use coredll.dll on Windows CE.
6556 (win32_resume): Let low target handle debug registers, and
6557 step request.
6558 (handle_exception): Add/Remove initial breakpoint. Avoid
6559 non-existant WSTOPSIG on Windows CE.
6560 (win32_read_inferior_memory): Cast to remove warning.
6561 (win32_arch_string): Go through the low target.
6562 (initialize_low): Call set_breakpoint_data with the low
6563 target's breakpoint.
6564 * win32-low.c (dr, FLAG_TRACE_BIT, FCS_REGNUM,
6565 FOP_REGNUM, mappings): Move to ...
6566 * win32-i386-low.c: ... here.
6567 * win32-low.c (win32_thread_info): Move to ...
6568 * win32-low.h: ... here.
6569 * Makefile.in (SFILES): Add win32-low.c, win32-i386-low.c,
6570 win32-arm-low.c and wincecompat.c.
6571 (all:): Add $EXEEXT.
6572 (install-only:): Likewise.
6573 (gdbserver:): Likewise.
6574 (gdbreplay:): Likewise.
6575 * config.in: Regenerate.
6576 * configure: Regenerate.
6577
41093d81
PA
65782007-03-28 Pedro Alves <pedro_alves@portugalmail.pt>
6579
6580 * win32-low.c: Rename typedef thread_info to
6581 win32_thread_info throughout.
6582
544afa54
PA
65832007-03-28 Pedro Alves <pedro_alves@portugalmail.pt>
6584
6585 * win32-i386-low.c: Rename to ...
6586 * win32-low.c: ... this.
6587 * configure.srv: Replace win32-i386-low.o with win32-low.o.
6588 * Makefile.in: Likewise.
6589
bce7165d
PA
65902007-03-27 Pedro Alves <pedro_alves@portugalmail.pt>
6591
6592 * remote-utils.c (monitor_output): Constify msg parameter.
6593 * server.h (monitor_output): Likewise.
6594 * win32-i386-low.c (handle_output_debug_string): New.
6595 (win32_kill): Handle OUTPUT_DEBUG_STRING_EVENT events using
6596 handle_output_debug_string.
6597 (get_child_debug_event): Likewise.
6598
506c7aa0
DJ
65992007-03-27 Mat Hostetter <mat@lcs.mit.edu>
6600
6601 * server.c (main): Correct strtoul check.
6602
42c81e2a
DJ
66032007-03-27 Jon Ringle <jon@ringle.org>
6604
6605 * linux-low.c: Check __ARCH_HAS_MMU__ also.
6606
9453113a
DJ
66072007-03-27 Brooks Moses <brooks.moses@codesourcery.com>
6608
6609 * Makefile.in: Add dummy "pdf" and "install-pdf" targets.
6610
64a69107
DJ
66112007-02-27 Daniel Jacobowitz <dan@codesourcery.com>
6612
6613 * terminal.h: Check HAVE_SGTTY_H.
6614
66152007-02-27 Mat Hostetter <mat@lcs.mit.edu>
6f8486da
DJ
6616
6617 * remote-utils.c (remote_open): Print out the assigned port number.
6618
c74d0ad8
DJ
66192007-02-26 Daniel Jacobowitz <dan@codesourcery.com>
6620
6621 * remote-utils.c (monitor_output): New function.
6622 * server.c (debug_threads): Define here.
6623 (monitor_show_help): New function.
6624 (handle_query): Handle qRcmd.
6625 (main): Do not handle 'd' packet.
6626 * server.h (debug_threads, remote_debug, monitor_output): Declare.
6627 * linux-low.c, spu-low.c, win32-i386-low.c: Remove definitions
6628 of debug_threads.
6629
de7c3b4a
PA
66302007-02-25 Pedro Alves <pedro_alves@portugalmail.pt>
6631
6632 * Makefile.in (EXEEXT): New.
6633 (clean): Use $(EXEEXT).
6634
ef57601b
PA
66352007-02-25 Pedro Alves <pedro_alves@portugalmail.pt>
6636
6637 * target.h (target_ops): Rename send_signal to request_interrupt,
6638 and remove enum target_signal parameter.
6639 * linux-low.c (linux_request_interrupt): Rename from
6640 linux_send_signal, and always send SIGINT.
6641 * spu-low.c (spu_request_interrupt): Rename from spu_send_signal,
6642 and always send SIGINT.
6643 * remote-utils.c (putpkt_binary): Call request_interrupt, instead
6644 of send_signal.
6645 (input_interrupt): Likewise.
6646
820f2bda
PA
66472007-02-25 Pedro Alves <pedro_alves@portugalmail.pt>
6648
6649 * server.c (get_features_xml): Check if target implemented
6650 arch_string.
6651 * win32-i386-low.c (win32_arch_string): New.
6652 (win32_target_ops): Add win32_arch_string as arch_string member.
6653
ab39bf24
UW
66542007-02-22 Markus Deuling <deuling@de.ibm.com>
6655
6656 * spu-low.c (spu_arch_string): New.
6657 (spu_target_ops): Add spu_arch_string.
6658
61ff6e04
DJ
66592007-02-16 Daniel Jacobowitz <dan@codesourcery.com>
6660
6661 * remote-utils.c: Remove HAVE_TERMINAL_H check.
6662 * configure.ac: Do not check for terminal.h.
6663 * configure, config.in: Regenerated.
6664
fb1e4ffc
DJ
66652007-02-08 Daniel Jacobowitz <dan@codesourcery.com>
6666
6667 * Makefile.in (OBS): Add $(XML_BUILTIN).
6668 (XML_DIR, XML_TARGET, XML_FILES, XML_BUILTIN): New.
6669 (clean): Update.
6670 (target.xml, xml-builtin.c, stamp-xml, arm-with-iwmmxt.o)
6671 (arm-with-iwmmxt.c): New.
6672 * config.in, configure: Regenerate.
6673 * configure.ac: Check for iWMMXt. Handle srv_xmltarget,
6674 srv_xmlbuiltin, and srv_xmlfiles. Define USE_XML.
6675 * configure.srv: Mention srv_xmltarget and srv_xmlfiles.
6676 (arm*-*-linux*): Add iWMMXt and regset support.
6677 * linux-arm-low.c (PTRACE_GETWMMXREGS, PTRACE_SETWMMXREGS): Define.
6678 (arm_fill_gregset, arm_store_gregset, arm_fill_wmmxregset)
6679 (arm_store_wmmxregset, target_regsets): New.
6680 * server.c (get_features_xml): Take annex argument. Check builtin
6681 XML documents.
6682 (handle_query): Handle multiple annexes.
6683
0f48aa01
DJ
66842007-01-29 Daniel Jacobowitz <dan@codesourcery.com>
6685
6686 * remote-utils.c [USE_WIN32API] (read, write): Define.
6687 (putpkt_binary, input_interrupt, readchar, getpkt): Use read and
6688 write.
6689
23181151
DJ
66902007-01-09 Daniel Jacobowitz <dan@codesourcery.com>
6691
6692 * linux-i386-low.c (the_low_target): Set arch_string.
6693 * linux-x86-64-low.c (the_low_target): Likewise.
6694 * linux-low.c (linux_arch_string): New.
6695 (linux_target_ops): Add it.
6696 * linux-low.h (struct linux_target_ops): Add arch_string.
6697 * server.c (write_qxfer_response): Use const void * for DATA.
6698 (get_features_xml): New.
6699 (handle_query): Handle qXfer:features:read. Report it for qSupported.
6700 * target.h (struct target_ops): Add arch_string method.
6701
9d606399
DJ
67022007-01-03 Denis Pilat <denis.pilat@st.com>
6703 Daniel Jacobowitz <dan@codesourcery.com>
6704
6705 * linux-low.c (linux_kill): Handle being called with no threads.
6706 * win32-i386-low.c (win32_kill): Likewise.
6707 (get_child_debug_event): Clear current_process_handle.
6708
67092006-12-30 Denis PILAT <denis.pilat@st.com>
8264bb58
DJ
6710 Daniel Jacobowitz <dan@codesourcery.com>
6711
6712 * remote-utils.c (remote_open): Check the type of specified
6713 serial port devices before opening them.
6714 * server.c (main): Kill the inferior if an error occurs during
6715 the first remote_open.
6716
a5e13d24
DJ
67172006-12-05 Markus Deuling <deuling@de.ibm.com>
6718
6719 * README: Update supported targets.
6720
186947f7
DJ
67212006-11-28 Daniel Jacobowitz <dan@codesourcery.com>
6722
6723 * Makefile.in (clean): Remove reg-mips64.c.
6724 (reg-mips64.c, reg-mips64.o): New rules.
6725 * configure.srv: Handle mips64. Include regset support for mips.
6726 * linux-mips-low.c (union mips_register): New.
6727 (mips_get_pc, mips_set_pc, mips_reinsert_addr): Use it.
6728 (mips_breakpoint, mips_breakpoint_at): Use int.
6729 (mips_collect_register, mips_supply_register)
6730 (mips_collect_register_32bit, mips_supply_register_32bit)
6731 (mips_fill_gregset, mips_store_gregset, mips_fill_fpregset)
6732 (mips_store_fpregset, target_regsets): New.
6733 * thread-db.c (thread_db_get_tls_address): Use uintptr_t.
6734
a13e2c95
UW
67352006-11-22 Ulrich Weigand <uweigand@de.ibm.com>
6736
6737 * configure.srv: Add target "spu*-*-*".
6738 * Makefile.in (clean): Remove reg-spu.c.
6739 (reg-spu.c, reg-spu.o, spu-low.o): Add dependencies.
6740 * spu-low.c: New file.
6741
cb7283db
DJ
67422006-11-16 Daniel Jacobowitz <dan@codesourcery.com>
6743
6744 * configure.ac: Correct td_thr_tls_get_addr test.
6745 * configure: Regenerated.
6746
89be2091
DJ
67472006-11-16 Daniel Jacobowitz <dan@codesourcery.com>
6748
6749 * linux-low.c (linux_wait_for_event): Reformat. Use the
6750 pass_signals array.
6751 * remote-utils.c (decode_address_to_semicolon): New.
6752 * server.c (pass_signals, handle_general_set): New.
6753 (handle_query): Mention QPassSignals for qSupported.
6754 (main): Call handle_general_set.
6755 * server.h (pass_signals, decode_address_to_semicolon): New.
6756
000ef4f0
DJ
67572006-11-06 Daniel Jacobowitz <dan@codesourcery.com>
6758
6759 * server.c (handle_query): Correct error handling for read_auxv.
6760
b7149293
UW
67612005-10-19 Ulrich Weigand <uweigand@de.ibm.com>
6762
6763 * configure.srv [s390-*-linux*, s390x-*-linux*]: Set srv_linux_regsets
6764 and srv_linux_thread_db to yes.
6765 * linux-s390-low.c (s390_fill_gregset): New function.
6766 (target_regsets): Define data structure.
6767
dae5f5cf
DJ
67682006-10-17 Daniel Jacobowitz <dan@codesourcery.com>
6769
6770 * acinclude.m4 (SRV_CHECK_TLS_GET_ADDR): New.
6771 * configure.ac: Use it. Define HAVE_TD_THR_TLS_GET_ADDR.
6772 * config.in, configure: Regenerated.
6773 * inferiors.c (gdb_id_to_thread): New function.
6774 (gdb_id_to_thread_id): Use it.
6775 * linux-low.c (linux_target_ops): Use thread_db_get_tls_address.
6776 * linux-low.h (struct process_info): Add th member.
6777 (thread_db_get_tls_address): New prototype.
6778 * remote-utils.c (decode_address): Make non-static.
6779 * server.c (handle_query): Handle qGetTLSAddr.
6780 * server.h (gdb_id_to_thread, decode_address): New prototypes.
6781 * target.h (struct target_ops): Add get_tls_address.
6782 * thread-db.c (maybe_attach_thread): Save the thread handle.
6783 (thread_db_get_tls_address): New.
6784
32ca6d61
DJ
67852006-09-28 Daniel Jacobowitz <dan@codesourcery.com>
6786
6787 * linux-low.c (PTRACE_GETSIGINFO, PTRACE_SETSIGINFO): Define.
6788 (linux_resume_one_process): Take a siginfo_t *. Update all
6789 callers. Queue it if necessary. Use PTRACE_SETSIGINFO.
6790 (struct pending_signals): Add a siginfo_t.
6791 (linux_wait_for_process): Always set last_status.
6792 (linux_wait_for_event): Use PTRACE_GETSIGINFO.
6793 (linux_queue_one_thread): Use PTRACE_GETSIGINFO.
6794 * linux-low.h (struct process_info): Add last_status.
6795
5ffff7c1
DJ
67962006-09-21 Daniel Jacobowitz <dan@codesourcery.com>
6797
6798 * remote-utils.c (try_rle): New function.
6799 (putpkt_binary): Use it.
6800
8695c747
DJ
68012006-08-19 Daniel Jacobowitz <dan@codesourcery.com>
6802
6803 * Makefile.in (clean): Clean reg-x86-64-linux.c.
6804 (reg-x86-64-linux.o, reg-x86-64-linux.c): New.
6805 * configure.srv (x86_64-*-linux*): Use reg-x86-64-linux.o.
6806 * linux-x86-64-low.c (x86_64_regmap): Include ORIG_RAX.
6807 (x86_64_fill_gregset, x86_64_store_gregset): Skip floating
6808 point registers.
6809
290fadea
RS
68102006-08-08 Richard Sandiford <richard@codesourcery.com>
6811
6812 * server.c (terminal_fd): New variable.
6813 (old_foreground_pgrp): Likewise.
6814 (restore_old_foreground_pgrp): New function.
6815 (start_inferior): Record the terminal file descriptor in terminal_fd
6816 and its original foreground group in old_foreground_pgrp. Register
6817 restore_old_foreground_pgrp with atexit().
6818
9f2e1e63
DJ
68192006-07-26 Daniel Jacobowitz <dan@codesourcery.com>
6820
6821 * server.c (handle_query): Correct qPart to qXfer.
6822
b80864fb
DJ
68232006-07-22 Daniel Jacobowitz <dan@codesourcery.com>
6824
6825 * configure.ac: Check for more headers which are missing on
6826 Windows. Automatically supply -lwsock32 and USE_WIN32API.
6827 * configure.srv: Add Cygwin and mingw32.
6828 * remote-utils.c: Don't include headers unconditionally which
6829 are missing on mingw32. Include <winsock.h> for mingw32.
6830 (remote_open): Adjust for mingw32 support. Flush
6831 standard error after writing to it.
6832 (remote_close, putpkt_binary, input_interrupt, block_async_io)
6833 (unblock_async_io, enable_async_io, disable_async_io)
6834 (readchar, getpkt): Update for Winsock support.
6835 (prepare_resume_reply): Expect a protocol signal number.
6836 * server.c: Disable <sys/wait.h> on mingw32.
6837 (start_inferior): Adjust for mingw32 support. Flush
6838 standard error after writing to it.
6839 (attach_inferior): Likewise. Use protocol signal
6840 numbers.
6841 (main): Skip 'D' packet on mingw32. Use protocol signal numbers
6842 and names.
6843 * win32-i386-low.c: New file.
6844 * Makefile.in (XM_CLIBS): Set.
6845 (gdbserver, gdbreplay): Use $(INTERNAL_CFLAGS).
6846 (win32-i386-low.o): New dependency rule.
6847 * linux-low.c (linux_wait): Use target signal numbers.
6848 * target.h (struct target_ops): Doc fix.
6849 * server.h (target_signal_to_name): New prototype.
6850 * gdbreplay.c: Don't include headers unconditionally which
6851 are missing on mingw32. Include <winsock.h> for mingw32.
6852 (remote_close, remote_open): Adjust for Winsock support.
6853 * configure, config.in: Regenerated.
6854
0876f84a
DJ
68552006-07-12 Daniel Jacobowitz <dan@codesourcery.com>
6856
6857 * server.c (decode_xfer_read, write_qxfer_response): New.
6858 (handle_query): Take a packet length argument. Handle
6859 qXfer:auxv:read instead of qPart:auxv:read. Mention it in
6860 the qSupported response.
6861 (main): Update call to handle_query.
6862
01f9e8fa
DJ
68632006-06-22 Daniel Jacobowitz <dan@codesourcery.com>
6864
6865 * remote-utils.c (remote_escape_output, remote_unescape_input): New.
6866 (putpkt_binary): Renamed from putpkt and adjusted for binary
6867 data.
6868 (putpkt): New wrapper for putpkt_binary.
6869 (readchar): Don't mask off the high bit.
6870 (decode_X_packet): New function.
6871 * server.c (main): Call putpkt_binary if a handler sets the packet
6872 length. Save the length of the incoming packet. Handle 'X'.
6873 * server.h (gdb_byte, remote_escape_output, decode_X_packet): New.
6874
be2a5f71
DJ
68752006-06-21 Daniel Jacobowitz <dan@codesourcery.com>
6876
6877 * server.c (handle_query): Handle qSupported.
6878
ea025f5f
DJ
68792006-05-30 Daniel Jacobowitz <dan@codesourcery.com>
6880
6881 * remote-utils.c (all_symbols_looked_up): New variable.
6882 (look_up_one_symbol): Check it.
6883 * server.h (look_up_one_symbol): New declaration.
6884 * thread-db.c (thread_db_init): Set all_symbols_looked_up.
6885
9308fc88
DJ
68862006-05-30 Daniel Jacobowitz <dan@codesourcery.com>
6887
6888 * Makefile.in (linux-arm-low.o): Update dependencies.
66f338c7 6889 * linux-arm-low.c: Include "gdb_proc_service.h".
9308fc88
DJ
6890 (PTRACE_GET_THREAD_AREA): Define.
6891 (ps_get_thread_area): New function.
6892
52fb6437
NS
68932006-05-09 Nathan Sidwell <nathan@codesourcery.com>
6894
6895 * configure.srv (m68k*-*-uclinux*): New target.
6896 * linux-low.c (linux_create_inferior): Use vfork on mmuless systems.
6897 (linux_resume_one_process): Remove extraneous cast.
6898 (linux_read_offsets): New.
6899 (linux_target_op): Add linux_read_offsets on mmuless systems.
6900 * server.c (handle_query): Add qOffsets logic.
6901 * target.h (struct target_ops): Add read_offsets.
6902
21b0f40c
DJ
69032006-03-15 Daniel Jacobowitz <dan@codesourcery.com>
6904
6905 * linux-mips-low.c: Include <sys/ptrace.h> and "gdb_proc_service.h".
6906 (PTRACE_GET_THREAD_AREA): Define.
6907 (ps_get_thread_area): New function.
6908 * Makefile.in (linux-i386-low.o, linux-mips-low.o)
6909 (linux-x86-64-low.o): Update.
6910
0050a760
DJ
69112006-03-15 Daniel Jacobowitz <dan@codesourcery.com>
6912
6913 * configure.ac: Remove checks for prfpregset_t.
6914 * gdb_proc_service.h: New file.
6915 * linux-i386-low.c, linux-x86-64-low.c, thread-db.c: Use the
6916 new "gdb_proc_service.h".
6917 * proc-service.c: Likewise.
6918 (ps_pglobal_lookup, ps_pdread, ps_pdwrite): Use psaddr_t.
6919 (ps_lgetfpregs, ps_lsetfpregs): Use a void* argument.
6920 * Makefile.in (gdb_proc_service_h): Updated.
6921 * configure, config.in: Regenerated.
6922
b92a518e
DJ
69232006-03-03 Daniel Jacobowitz <dan@codesourcery.com>
6924
6925 * remote-utils.c (prepare_resume_reply): Move declaration
6926 of gdb_id_from_wait to the top of the block.
6927
545587ee
DJ
69282006-02-15 Daniel Jacobowitz <dan@codesourcery.com>
6929
6930 * linux-low.c (regsets_store_inferior_registers): Read the regset
6931 from the target before filling it.
6932
9db87ebd
DJ
69332006-02-08 Daniel Jacobowitz <dan@codesourcery.com>
6934
6935 * server.c (attach_inferior): Return SIGTRAP for a successful
6936 attach.
6937
dd24457d
DJ
69382006-02-01 Daniel Jacobowitz <dan@codesourcery.com>
6939
6940 * Makefile.in (OBS): Add version.o.
6941 (STAGESTUFF): Delete.
6942 (version.o): Add dependencies.
6943 (version.c): Replace rule.
6944 (clean): Remove version.c.
6945 * server.c (gdbserver_version): New.
6946 (gdbserver_usage): Use printf.
6947 (main): Handle --version and --help.
6948 * server.h (version, host_name): Add declarations.
6949
6f0f660e
EZ
69502005-12-23 Eli Zaretskii <eliz@gnu.org>
6951
889bf7c5
PA
6952 * linux-arm-low.c:
6953 * linux-arm-low.c:
6954 * inferiors.c:
6955 * i387-fp.h:
6956 * i387-fp.c:
6957 * gdbreplay.c:
6958 * regcache.c:
6959 * proc-service.c:
6960 * mem-break.h:
6961 * mem-break.c:
6962 * linux-x86-64-low.c:
6963 * linux-sh-low.c:
6964 * linux-s390-low.c:
6965 * linux-ppc64-low.c:
6966 * linux-ppc-low.c:
6967 * linux-mips-low.c:
6968 * linux-m68k-low.c:
6969 * linux-m32r-low.c:
6970 * linux-low.h:
6971 * linux-low.c:
6972 * linux-ia64-low.c:
6973 * linux-i386-low.c:
6974 * linux-crisv32-low.c:
6975 * thread-db.c:
6976 * terminal.h:
6977 * target.h:
6978 * target.c:
6979 * server.h:
6980 * server.c:
6981 * remote-utils.c:
6982 * regcache.h:
6983 * utils.c:
6984 * Makefile.in:
6985 * configure.ac:
6f0f660e
EZ
6986 * gdbserver.1: Add (C) after Copyright. Update the FSF
6987 address.
6988
9d1fb177
DJ
69892005-11-13 Daniel Jacobowitz <dan@codesourcery.com>
6990
6991 * linux-arm-low.c (arm_eabi_breakpoint): New variable.
6992 (arm_breakpoint_at): Recognize both breakpoints.
6993 (the_low_target): Use the correct breakpoint instruction.
6994
011a70c2
DJ
69952005-11-02 Daniel Jacobowitz <dan@codesourcery.com>
6996
6997 * configure.srv (x86_64-*-linux*): Turn on thread_db support.
6998 * linux-x86-64-low.c (x86_64_breakpoint, x86_64_breakpoint_len)
6999 (x86_64_get_pc, x86_64_set_pc, x86_64_breakpoint_at): New.
7000 (the_low_target): Update.
7001
7fb85e41
AS
70022005-10-25 Andreas Schwab <schwab@suse.de>
7003
7004 * server.c (main): Allocate mem_buf with PBUFSIZ bytes.
7005
7006 * linux-ia64-low.c (ia64_regmap): Remove NAT registers.
7007 (ia64_num_regs): Reduce to 462.
7008
3db0444b
DJ
70092005-09-17 Daniel Jacobowitz <dan@codesourcery.com>
7010
7011 * acinclude.m4: Correct quoting.
7012 * aclocal.m4: Regenerated.
7013
7014 Suggested by SZOKOVACS Robert <szo@ies.hu>:
7015 * thread-db.c (thread_db_err_str): Handle TD_VERSION.
7016 (thread_db_init): Call thread_db_err_str.
7017 * configure.ac: Check for TD_VERSION.
7018 * config.in, configure: Regenerated.
7019
bee0189a
DJ
70202005-07-31 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
7021
7022 * server.h (error, fatal, warning): Add ATTR_FORMAT.
7023
e9d25b98
DJ
70242005-07-13 Daniel Jacobowitz <dan@codesourcery.com>
7025
7026 * configure.ac: Define HAVE_LINUX_REGSETS even if PTRACE_GETREGS
7027 is not available. Define HAVE_PTRACE_GETREGS if it is.
7028 * config.in, configure: Regenerated.
7029 * configure.srv: Set srv_linux_regsets for PowerPC and PowerPC64.
7030 * linux-i386-low.c, linux-m68k-low.c: Update to use
7031 HAVE_PTRACE_GETREGS.
7032 * linux-low.c (regsets_fetch_inferior_registers)
7033 (regsets_store_inferior_registers): Only return 0 if we processed
7034 GENERAL_REGS.
7035 * linux-ppc-low.c (ppc_fill_gregset, target_regsets): New.
7036 * linux-ppc64-low.c (ppc_fill_gregset, target_regsets): New.
7037
a06660f7
DJ
70382005-07-13 Daniel Jacobowitz <dan@codesourcery.com>
7039
7040 * inferiors.c (struct thread_info): Add gdb_id.
7041 (add_thread): Add gdb_id argument.
7042 (thread_id_to_gdb_id, thread_to_gdb_id, gdb_id_to_thread_id): New.
7043 * linux-low.c (linux_create_inferior, linux_attach_lwp): Update
7044 calls to add_thread.
7045 * remote-utils.c (prepare_resume_reply: Use thread_to_gdb_id.
7046 * server.c (handle_query): Use thread_to_gdb_id.
7047 (handle_v_cont, main): Use gdb_id_to_thread_id.
7048 * server.h (add_thread): Update prototype.
7049 (thread_id_to_gdb_id, thread_to_gdb_id, gdb_id_to_thread_id): New
7050 prototypes.
7051
5a1f5858
DJ
70522005-07-13 Daniel Jacobowitz <dan@codesourcery.com>
7053
7054 * linux-low.c (fetch_register, usr_store_inferior_registers): Handle
7055 left-padded registers.
7056 * linux-low.h (struct linux_target_ops): Add left_pad_xfer.
7057 * linux-ppc64-low.c (the_low_target): Set left_pad_xfer.
7058
e122f1f5
SE
70592005-07-01 Steve Ellcey <sje@cup.hp.com>
7060
7061 * configure.ac (BFD_NEED_DECLARATION): Replace with AC_CHECK_DECLS.
7062 * configure: Regenerate.
7063 * config.in: Regenerate.
7064 * server.h (NEED_DECLARATION_STRERROR):
7065 Replace with !HAVE_DECL_STRERROR.
7066
d592fa2f
DJ
70672005-06-16 Daniel Jacobowitz <dan@codesourcery.com>
7068
7069 * linux-low.c (linux_wait, linux_send_signal): Don't test
7070 an unsigned long variable for > 0 if it could be MAX_ULONG.
7071 * server.c (myresume): Likewise.
7072 * target.c (set_desired_inferior): Likewise.
7073
ccbd4912
MK
70742005-06-13 Mark Kettenis <kettenis@gnu.org>
7075
7076 * configure.ac: Simplify and improve check for socklen_t.
7077 * configure, config.in: Regenerate.
7078
f450004a
DJ
70792005-06-12 Daniel Jacobowitz <dan@codesourcery.com>
7080
7081 * acconfig.h: Remove.
7082 * configure.ac: Add a test for socklen_t. Use three-argument
7083 AC_DEFINE throughout.
7084 * config.in: Regenerated using autoheader 2.59.
7085 * configure: Regenerated.
7086
7087 * gdbreplay.c (socklen_t): Provide a default.
7088 (remote_open): Use socklen_t.
7089 * remote-utils.c (socklen_t): Provide a default.
7090 (remote_open): Use socklen_t.
7091 (convert_int_to_ascii, convert_ascii_to_int, decode_M_packet): Use
7092 unsigned char.
7093
7094 * i387-fp.c (struct i387_fsave, struct i387_fxsave): Use unsigned
7095 char for buffers.
7096 * linux-low.c (linux_read_memory, linux_write_memory)
7097 (linux_read_auxv): Likewise.
7098 * mem-break.c (breakpoint_data, set_breakpoint_data, check_mem_read)
7099 (check_mem_write): Likewise.
7100 * mem-break.h (set_breakpoint_data, check_mem_read, check_mem_write):
7101 Likewise.
7102 * regcache.c (struct inferior_rgcache_data, registers_to_string)
7103 (registers_from_string, register_data): Likewise.
7104 * server.c (handle_query, main): Likewise.
7105 * server.h (convert_ascii_to_int, convert_int_to_ascii)
7106 (decode_M_packet): Likewise.
7107 * target.c (read_inferior_memory, write_inferior_memory): Likewise.
7108 * target.h (struct target_ops): Update read_memory, write_memory,
7109 and read_auxv.
7110 (read_inferior_memory, write_inferior_memory): Update.
7111 * linux-low.h (struct linux_target_ops): Change type of breakpoint
7112 to unsigned char *.
7113 * linux-arm-low.c, linux-cris-low.c, linux-crisv32-low.c,
7114 linux-i386-low.c, linux-m32r-low.c, linux-m68k-low.c,
7115 linux-mips-low.c, linux-ppc-low.c, linux-ppc64-low.c,
7116 linux-s390-low.c, linux-sh-low.c: Update for changes in
7117 read_inferior_memory and the_low_target->breakpoint.
7118
eee84df1
DJ
71192005-05-28 Daniel Jacobowitz <dan@codesourcery.com>
7120
7121 * Makefile.in (SFILES): Add linux-ppc64-low.c.
7122 (linux-ppc64-low.o, reg-ppc64.c, reg-ppc64.o): New targets.
7123 * configure.srv: Add powerpc64-*-linux*.
7124 * linux-ppc64-low.c: New file.
7125
45b134e5
OF
71262005-05-23 Orjan Friberg <orjanf@axis.com>
7127
7128 * linux-cris-low.c: New file with support for CRIS.
7129 * linux-crisv32-low.c: Ditto for CRISv32.
7130 * Makefile.in (SFILES): Add linux-cris-low.c, linux-crisv32-low.c.
7131 (clean): Add reg-cris.c and reg-crisv32.c.
889bf7c5 7132 Add linux-cris-low.o, linux-crisv32-low.o, reg-cris.o, reg-cris.c,
45b134e5
OF
7133 reg-crisv32.o, and reg-crisv32.c to make rules.
7134 * configure.srv: Add cris-*-linux* and crisv32-*-linux* to list of
7135 recognized targets.
7136
48d93c75
UW
71372005-05-16 Ulrich Weigand <uweigand@de.ibm.com>
7138
7139 * linux-low.c (fetch_register): Ensure buffer size is a multiple
7140 of sizeof (PTRACE_XFER_TYPE).
7141 (usr_store_inferior_registers): Likewise. Zero out excess bytes.
7142
e013ee27
OF
71432005-05-12 Orjan Friberg <orjanf@axis.com>
7144
889bf7c5 7145 * target.h (struct target_ops): Add insert_watchpoint,
e013ee27
OF
7146 remove_watchpoint, stopped_by_watchpoint, stopped_data_address function
7147 pointers for hardware watchpoint support.
7148 * linux-low.h (struct linux_target_ops): Ditto.
7149 * linux-low.c (linux_insert_watchpoint, linux_remove_watchpoint)
7150 (linux_stopped_by_watchpoint, linux_stopped_data_address): New. Add
7151 to linux_target_ops.
7152 * remote-utils.c (prepare_resume_reply): Add watchpoint information to
7153 reply packet.
7154 * server.c (main): Recognize 'Z' and 'z' packets.
7155
b0ded00b
UW
71562005-05-10 Ulrich Weigand <uweigand@de.ibm.com>
7157
7158 * linux-s390-low.c (s390_breakpoint, s390_breakpoint_len): Define.
7159 (s390_get_pc, s390_set_pc, s390_breakpoint_at): New functions.
7160 (the_low_target): Add new members.
7161
8643e2ad
DJ
71622005-05-04 Daniel Jacobowitz <dan@codesourcery.com>
7163
7164 * proc-service.c (ps_lgetregs): Search all_processes instead of
7165 all_threads.
7166
fc620387
DJ
71672005-05-04 Daniel Jacobowitz <dan@codesourcery.com>
7168
7169 * server.c (start_inferior): Change return type to int.
7170 (attach_inferior): Change sigptr to int *.
7171 (handle_v_cont, handle_v_requests): Change signal to int *.
7172 (main): Change signal to int.
7173
71742005-04-15 Kei Sakamoto <sakamoto.kei@renesas.com>
7cfbc4a0
KI
7175
7176 * Makefile.in: Add linux-m32r-low.o, reg-m32r.c and reg-m32r.o.
7177 * configure.srv: Add m32r*-*-linux*.
7178 * linux-m32r-low.c: New file.
7179
e0e76420
DJ
71802005-03-04 Daniel Jacobowitz <dan@codesourcery.com>
7181
7182 * Makefile.in (stamp-h): Set CONFIG_HEADERS explicitly.
7183
a1928bad
DJ
71842005-03-03 Daniel Jacobowitz <dan@codesourcery.com>
7185
7186 * inferiors.c (change_inferior_id, add_thread, find_inferior_id):
7187 Take unsigned long arguments for PIDs.
7188 * linux-low.c (add_process, linux_attach_lwp, linux_attach)
7189 (linux_thread_alive, linux_wait_for_event, kill_lwp, send_sigstop)
7190 (wait_for_sigstop, linux_resume_one_process)
7191 (regsets_fetch_inferior_registers, linux_send_signal)
7192 (linux_read_auxv): Likewise. Update the types of variables holding
7193 PIDs. Update format string specifiers.
7194 * linux-low.h (struct process_info, linux_attach_lwp): Likewise.
7195 * remote-utils.c (prepare_resume_reply): Likewise.
7196 * server.c (cont_thread, general_thread, step_thread)
7197 (thread_from_wait, old_thread_from_wait, signal_pid): Change type to
7198 unsigned long.
7199 (handle_query): Update format specifiers.
7200 (handle_v_cont, main): Use strtoul for thread IDs.
7201 * server.h (struct inferior_list_entry): Use unsigned long for ID.
7202 (add_thread, find_inferior_id, change_inferior_id, cont_thread)
7203 (general_thread, step_thread, thread_from_wait)
7204 (old_thread_from_wait): Update.
7205 * target.h (struct thread_resume): Use unsigned long for THREAD.
7206 (struct target_ops): Use unsigned long for arguments to attach and
7207 thread_alive.
7208
dcdb98d2
DJ
72092005-02-24 Daniel Jacobowitz <dan@codesourcery.com>
7210
7211 * acinclude.m4: Include bfd/bfd.m4 directly.
7212 * configure.ac: Use AC_ARG_PROGRAM. Suggested by Aron Griffis
7213 <agriffis@toolchain.org>.
7214 * aclocal.m4, configure: Regenerated.
7215
bec39cab
AC
72162005-01-07 Andrew Cagney <cagney@gnu.org>
7217
7218 * configure.ac: Rename configure.in, require autoconf 2.59.
7219 * configure: Re-generate.
7220
434c4c77
DJ
72212004-12-08 Daniel Jacobowitz <dan@debian.org>
7222
7223 * acinclude.m4 (SRV_CHECK_THREAD_DB): Add ps_get_thread_area. Reset
7224 LIBS when finished.
7225 * aclocal.m4: Regenerated.
7226 * configure: Regenerated.
7227
db1d3e1b
AS
72282004-11-21 Andreas Schwab <schwab@suse.de>
7229
7230 * linux-m68k-low.c (m68k_num_gregs): Define.
7231 (m68k_fill_gregset, m68k_store_gregset, m68k_fill_fpregset)
7232 (m68k_store_fpregset, target_regsets) [HAVE_LINUX_REGSETS]: New.
7233 (m68k_breakpoint, m68k_breakpoint_len, m68k_get_pc, m68k_set_pc)
7234 (m68k_breakpoint_at): New. Add to the_low_target.
7235
7236 * configure.srv (m68*-*-linux*): Set srv_linux_regsets and
7237 srv_linux_thread_db to yes.
7238
43360365
JB
72392004-10-20 Joel Brobecker <brobecker@gnat.com>
7240
7241 * linux-x86-64-low.c (ARCH_SET_GS): Add definition if missing.
7242 (ARCH_SET_FS): Likewise.
7243 (ARCH_GET_FS): Likewise.
7244 (ARCH_GET_GS): Likewise.
7245
fd500816
DJ
72462004-10-16 Daniel Jacobowitz <dan@debian.org>
7247
7248 * linux-i386-low.c (ps_get_thread_area): New.
7249 * linux-x86-64-low.c (ps_get_thread_area): New.
7250 * linux-low.c: Include <sys/syscall.h>.
7251 (linux_kill_one_process): Don't kill the first thread here.
7252 (linux_kill): Kill the first thread here.
7253 (kill_lwp): New function.
7254 (send_sigstop, linux_send_signal): Use it.
7255 * proc-service.c: Clean up #ifdefs.
7256 (fpregset_info): Delete.
7257 (ps_lgetregs): Update and enable implementation.
7258 (ps_lsetregs, ps_lgetfpregs, ps_lsetfpregs): Remove disabled
7259 implementations.
7260 * remote-utils.c (struct sym_cache, symbol_cache): New.
7261 (input_interrupt): Print a clearer message.
7262 (async_io_enabled): New variable.
7263 (enable_async_io, disable_async_io): Use it. Update comments.
7264 (look_up_one_symbol): Use the symbol cache.
7265 * thread-db.c (thread_db_look_up_symbols): New function.
7266 (thread_db_init): Update comments. Call thread_db_look_up_symbols.
7267
f6de3c42
DJ
72682004-10-16 Daniel Jacobowitz <dan@debian.org>
7269
7270 * configure.in: Test for -rdynamic.
7271 * configure: Regenerated.
7272 * Makefile (INTERNAL_LDFLAGS): New.
7273 (gdbserver, gdbreplay): Use it.
7274
2c0fc042
AC
72752004-09-02 Andrew Cagney <cagney@gnu.org>
7276
7277 * Makefile.in (TAGS): Replace TM_FILE with DEPRECATED_TM_FILE.
7278
075b3282
DJ
72792004-03-23 Daniel Jacobowitz <drow@mvista.com>
7280
7281 * linux-low.c (linux_wait): Clear all_processes list also.
7282
fa6a77dc
DJ
72832004-03-12 Daniel Jacobowitz <drow@mvista.com>
7284
7285 * linux-low.c: Include <errno.h>. Remove extern declaration of
7286 errno.
7287
6d782a97
DJ
72882004-03-12 Daniel Jacobowitz <drow@mvista.com>
7289
7290 * gdbreplay.c, server.h, utils.c: Update copyright years.
7291
3a7fb99b
DJ
72922004-03-04 Nathan J. Williams <nathanw@wasabisystems.com>
7293
7294 * server.c (main): Print child status or termination signal from
7295 variable 'signal', not 'sig'.
7296
c3e735a6
DJ
72972004-03-04 Nathan J. Williams <nathanw@wasabisystems.com>
7298
7299 * linux-low.c (linux_read_memory): Change return type to
7300 int. Check for and return error from ptrace().
7301 * target.c (read_inferior_memory): Change return type to int. Pass
7302 back return status from the_target->read_memory().
7303 * target.h (struct target_ops): Adapt *read_memory() prototype.
7304 Update comment.
7305 (read_inferior_memory): Adapt prototype.
7306 * server.c (main): Return an error packet if
7307 read_inferior_memory() returns an error.
7308
a59d1c82
DJ
73092004-03-04 Daniel Jacobowitz <drow@mvista.com>
7310
7311 * Makefile.in (distclean): Remove config.h, stamp-h, and config.log.
7312 Unify with other clean targets.
7313
dc3f8883
DJ
73142004-02-29 Daniel Jacobowitz <drow@mvista.com>
7315
7316 * server.c (handle_v_cont): Call set_desired_inferior.
7317
89a208da
DJ
73182004-02-29 Daniel Jacobowitz <drow@mvista.com>
7319
7320 * remote-utils.c (prepare_resume_reply): Always supply "thread:".
7321
62ea82f5
DJ
73222004-02-29 Daniel Jacobowitz <drow@mvista.com>
7323
7324 * linux-low.c (linux_wait): Unblock async I/O.
7325 (linux_resume): Block and enable async I/O.
7326 * remote-utils.c (block_async_io, unblock_async_io): New functions.
7327 * server.h (block_async_io, unblock_async_io): Add prototypes.
7328
6910d122
DJ
73292004-02-29 Daniel Jacobowitz <drow@mvista.com>
7330
7331 * remote-utils.c (remote_open): Print a status notice after
7332 opening a TCP port.
7333 * server.c (attach_inferior): Print a status notice after
7334 attaching.
7335
73362004-02-29 Daniel Jacobowitz <drow@mvista.com>
d677d77d
DJ
7337
7338 * linux-arm-low.c (arm_get_pc): Print out stop PC in debug mode.
7339
c89dc5d4
DJ
73402004-02-26 Daniel Jacobowitz <drow@mvista.com>
7341
7342 * remote-utils.c (write_enn): Use "E01" instead of "ENN" for the
7343 error packet.
7344 * server.c, target.h: Update copyright years.
7345
4b8dad4a
RM
73462004-02-25 Roland McGrath <roland@redhat.com>
7347
7348 * target.h (struct target_ops): New member `read_auxv'.
7349 * server.c (handle_query): Handle qPart:auxv:read: query using that.
7350 * linux-low.c (linux_read_auxv): New function.
7351 (linux_target_ops): Initialize `read_auxv' member to that.
7352
d7446758
JB
73532004-02-17 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
7354
7355 Committed by Jim Blandy <jimb@redhat.com>.
7356
7357 * linux-s390-low.c (s390_num_regs): Update.
4b8dad4a 7358 (s390_regmap): Remove control registers. Use __s390x__ predefine
d7446758
JB
7359 instead of GPR_SIZE to distiguish s390 and s390x targets.
7360
5544ad89
DJ
73612004-01-31 Daniel Jacobowitz <drow@mvista.com>
7362
7363 * linux-low.c: Update copyright year.
7364 (check_removed_breakpoint): Clear pending_is_breakpoint.
7365 (linux_set_resume_request, linux_queue_one_thread)
7366 (resume_status_pending_p): New functions.
7367 (linux_continue_one_thread): Use process->resume.
7368 (linux_resume): Only resume threads if there are no pending events.
7369 * linux-low.h (struct process_info): Add resume request
7370 pointer.
7371
2a68b70e
DJ
73722004-01-30 Daniel Jacobowitz <drow@mvista.com>
7373
7374 * regcache.c (new_register_cache): Clear the allocated register
7375 buffer. Suggested by Atsushi Nemoto <anemo@mba.ocn.ne.jp>.
7376
64386c31
DJ
73772003-10-13 Daniel Jacobowitz <drow@mvista.com>
7378
7379 * linux-low.c (linux_resume): Take a struct thread_resume *
7380 argument.
7381 (linux_wait): Update call.
7382 (resume_ptr): New static variable.
7383 (linux_continue_one_thread): Renamed from
7384 linux_continue_one_process. Use resume_ptr.
7385 (linux_resume): Use linux_continue_one_thread.
7386 * server.c (handle_v_cont, handle_v_requests): New functions.
7387 (myresume): New function.
7388 (main): Handle 'v' case.
7389 * target.h (struct thread_resume): New type.
7390 (struct target_ops): Change argument of "resume" to struct
7391 thread_resume *.
7392 (myresume): Delete macro.
7393
c938e9b0
L
73942003-08-08 H.J. Lu <hongjiu.lu@intel.com>
7395
7396 * Makefile.in (install-only): Create dest dir. Support DESTDIR.
7397 (uninstall): Support DESTDIR.
7398
7f313d07
BC
7399Mon Jul 21 20:09:34 UTC 2003 Brendan Conoboy <blc@redhat.com>
7400
7401 * configure.srv: Add xscale*linux copy of arm*linux entry.
7402
3b2fc2ea
DJ
74032003-07-24 Daniel Jacobowitz <drow@mvista.com>
7404
7405 * linux-arm-low.c (arm_reinsert_addr): New function.
7406 (the_low_target): Add arm_reinsert_addr.
7407
1c0a559e
MK
74082003-07-08 Mark Kettenis <kettenis@gnu.org>
7409
7410 * mem-break.c: Remove whitespace at end of file.
7411
43d5792c
DJ
74122003-06-28 Daniel Jacobowitz <drow@mvista.com>
7413
7414 * configure.in: Check whether we need to prototype strerror.
7415 * server.h: Optionally prototype strerror.
7416 * gdbreplay.c (perror_with_name): Use strerror.
7417 * linux-low.c (linux_attach_lwp): Use strerror.
7418 * utils.c (perror_with_name): Use strerror.
7419 * config.in, configure: Regenerated.
7420
c8a86edf
DJ
74212003-06-28 Daniel Jacobowitz <drow@mvista.com>
7422
7423 * linux-sh-low.c (sh_regmap): Fix FP register offsets, reported by
7424 SUGIOKA Toshinobu <sugioka@itonet.co.jp>.
7425
73d37363
DJ
74262003-06-20 Daniel Jacobowitz <drow@mvista.com>
7427
7428 * Makefile.in (SFILES): Update.
7429 * low-hppabsd.c, low-lynx.c, low-nbsd.c, low-sim.c, low-sparc.c,
7430 low-sun3.c: Remove files.
7431
6ad8ae5c
DJ
74322003-06-17 Daniel Jacobowitz <drow@mvista.com>
7433
7434 * linux-low.c: Move comment to linux_thread_alive where it belonged.
7435 (linux_detach_one_process, linux_detach): New functions.
7436 (linux_target_ops): Add linux_detach.
7437 * server.c (main): Handle 'D' packet.
7438 * target.h (struct target_ops): Add "detach" member.
7439 (detach_inferior): Define.
7440
1581182a
MK
74412003-06-13 Mark Kettenis <kettenis@gnu.org>
7442
7443 From Kelley Cook <kelleycook@wideopenwest.com>:
7444 * configure.srv: Accept i[34567]86 variants.
7445
e5379b03
DJ
74462003-06-05 Daniel Jacobowitz <drow@mvista.com>
7447
7448 * linux-low.c (linux_wait_for_event): Correct comment typos.
7449 (linux_resume_one_process): Call check_removed_breakpoint.
7450 (linux_send_signal): New function.
7451 (linux_target_ops): Add linux_send_signal.
7452 * remote-utils.c (putpkt, input_interrupt): Use send_signal instead
7453 of kill.
7454 * target.h (struct target_ops): Add send_signal.
7455
2ff29de4
JB
74562003-05-29 Jim Blandy <jimb@redhat.com>
7457
7458 * linux-low.c (usr_store_inferior_registers): Transfer buf in
7459 PTRACE_XFER_TYPE-sized chunks, not int-sized chunks. Otherwise,
7460 if 'int' is smaller than PTRACE_XFER_TYPE, you end up throwing
7461 away part of the register's value.
7462
254787d4
DJ
74632003-03-26 Daniel Jacobowitz <drow@mvista.com>
7464
7465 * linux-low.c (linux_create_inferior): Use __SIGRTMIN.
7466 (linux_wait_for_event, linux_init_signals): Likewise.
7467
94e10508
DJ
74682003-03-17 Daniel Jacobowitz <drow@mvista.com>
7469
7470 * configure.in: Check for stdlib.h.
7471 * configure: Regenerated.
7472 * config.in: Regenerated.
7473
4c0711e0
DJ
74742003-01-04 Andreas Schwab <schwab@suse.de>
7475
7476 * linux-m68k-low.c (m68k_num_regs): Define to 29 instead of 31.
7477
ef66e766
AC
74782003-01-02 Andrew Cagney <ac131313@redhat.com>
7479
7480 * Makefile.in: Remove obsolete code.
7481
a1358604
DJ
74822002-11-20 Daniel Jacobowitz <drow@mvista.com>
7483
7484 * linux-s390-low.c (s390_regmap): Check GPR_SIZE instead of
7485 defined(PT_FPR0_HI).
7486
23ce3b1c
DJ
74872002-11-17 Stuart Hughes <seh@zee2.com>
7488
7489 * linux-arm-low.c (arm_num_regs): Increase.
7490 (arm_regmap): Include status register.
7491
74922002-11-17 Daniel Jacobowitz <drow@mvista.com>
7493
7494 * linux-low.c (register_addr): Remove incorrect -1 check.
7495
a9fa9f7d
DJ
74962002-08-29 Daniel Jacobowitz <drow@mvista.com>
7497
7498 * linux-low.c (linux_create_inferior): Call setpgid. Return
7499 the new PID.
7500 (unstopped_p, linux_signal_pid): Remove.
7501 (linux_target_ops): Remove linux_signal_pid.
7502 * remote-utils.c (putpkt, input_interrupt): Use signal_pid
7503 global instead of target method.
7504 * target.h (struct target_ops): Remove signal_pid. Update comment
7505 for create_inferior.
7506 * server.c (signal_pid): New variable.
7507 (create_inferior): Set signal_pid. Block SIGTTOU and SIGTTIN in
4b8dad4a 7508 gdbserver. Set the child to be the foreground process group.
a9fa9f7d
DJ
7509 (attach_inferior): Set signal_pid.
7510
17574093
DJ
75112002-08-23 Daniel Jacobowitz <drow@mvista.com>
7512
7513 * ChangeLog: New file, with entries from gdb/ChangeLog after GDB 5.2.
7514
75152002-08-20 Jim Blandy <jimb@redhat.com>
7516
7517 * Makefile.in (LDFLAGS): Allow the configure script to establish a
7518 default for this.
7519
75202002-08-01 Andrew Cagney <cagney@redhat.com>
7521
7522 * Makefile.in: Make chill references obsolete.
7523
75242002-07-24 Kevin Buettner <kevinb@redhat.com>
7525
7526 * configure.in (unistd.h): Add to AC_CHECK_HEADERS list.
7527 * configure: Regenerate.
7528 * config.in: Regenerate.
7529
75302002-07-09 David O'Brien <obrien@FreeBSD.org>
7531
7532 * gdbreplay.c (stdlib.h, unistd.h): Conditionaly include.
7533 (perror_with_name, remote_close, remote_open, expect, play): Static.
7534
75352002-07-04 Michal Ludvig <mludvig@suse.cz>
7536
4b8dad4a 7537 * linux-x86-64-low.c (x86_64_regmap): Make it an array of
17574093
DJ
7538 byte offsets instead of an array of indexes.
7539 (x86_64_store_gregset, x86_64_store_fpregset): Parameter made const.
7540
75412002-06-13 Daniel Jacobowitz <drow@mvista.com>
7542
7543 * regcache.c: Add comment.
7544
75452002-06-11 Daniel Jacobowitz <drow@mvista.com>
7546
7547 * thread-db.c: New file.
7548 * proc-service.c: New file.
7549 * acinclude.m4: New file.
7550 * Makefile.in: Add GDBSERVER_LIBS, gdb_proc_service_h,
7551 proc-service.o, and thread-db.o.
7552 (linux-low.o): Add USE_THREAD_DB.
7553 * acconfig.h: Add HAVE_PRGREGSET_T, HAVE_PRFPREGSET_T,
7554 HAVE_LWPID_T, HAVE_PSADDR_T, and PRFPREGSET_T_BROKEN.
7555 * aclocal.m4: Regenerated.
7556 * config.in: Regenerated.
7557 * configure: Regenerated.
7558 * configure.in: Check for proc_service.h, sys/procfs.h,
7559 thread_db.h, and linux/elf.h headrs.
7560 Check for lwpid_t, psaddr_t, prgregset_t, prfpregset_t, and
7561 PRFPREGSET_T_BROKEN. Introduce srv_thread_depfiles and USE_THREAD_DB.
7562 Check for -lthread_db and thread support.
7563 * configure.srv: Enable thread_db support for ARM, i386, MIPS,
7564 PowerPC, and SuperH.
7565 * i387-fp.c: Constify arguments.
7566 * i387-fp.h: Likewise.
7567 * inferiors.c: (struct thread_info): Renamed from
7568 `struct inferior_info'. Remove PID member. Use generic inferior
7569 list header. All uses updated.
7570 (inferiors, signal_pid): Removed.
7571 (all_threads): New variable.
7572 (get_thread): Define.
7573 (add_inferior_to_list): New function.
7574 (for_each_inferior): New function.
7575 (change_inferior_id): New function.
7576 (add_inferior): Removed.
7577 (remove_inferior): New function.
7578 (add_thread): New function.
7579 (free_one_thread): New function.
7580 (remove_thread): New function.
7581 (clear_inferiors): Use for_each_inferior and free_one_thread.
7582 (find_inferior): New function.
7583 (find_inferior_id): New function.
7584 (inferior_target_data): Update argument type.
7585 (set_inferior_target_data): Likewise.
7586 (inferior_regcache_data): Likewise.
7587 (set_inferior_regcache_data): Likewise.
7588 * linux-low.c (linux_bp_reinsert): Remove.
7589 (all_processes, stopping_threads, using_thrads)
7590 (struct pending_signals, debug_threads, pid_of): New.
7591 (inferior_pid): Replace with macro.
7592 (struct inferior_linux_data): Remove.
7593 (get_stop_pc, add_process): New functions.
7594 (linux_create_inferior): Restore SIGRTMIN+1 before calling exec.
7595 Use add_process and add_thread.
7596 (linux_attach_lwp): New function, based on old linux_attach. Use
7597 add_process and add_thread. Set stop_expected for new threads.
7598 (linux_attach): New function.
7599 (linux_kill_one_process): New function.
7600 (linux_kill): Kill all LWPs.
7601 (linux_thread_alive): Use find_inferior_id.
7602 (check_removed_breakpoints, status_pending_p): New functions.
7603 (linux_wait_for_process): Renamed from linux_wait_for_one_inferior.
7604 Update. Use WNOHANG. Wait for cloned processes also. Update process
7605 struct for the found process.
7606 (linux_wait_for_event): New function.
7607 (linux_wait): Use it. Support LWPs.
7608 (send_sigstop, wait_for_sigstop, stop_all_processes)
7609 (linux_resume_one_process, linux_continue_one_process): New functions.
7610 (linux_resume): Support LWPs.
7611 (REGISTER_RAW_SIZE): Remove.
7612 (fetch_register): Use register_size instead. Call supply_register.
7613 (usr_store_inferior_registers): Likewise. Call collect_register.
7614 Fix recursive case.
7615 (regsets_fetch_inferior_registers): Improve error message.
7616 (regsets_store_inferior_registers): Add debugging.
7617 (linux_look_up_symbols): Call thread_db_init if USE_THREAD_DB.
7618 (unstopped_p, linux_signal_pid): New functions.
7619 (linux_target_ops): Add linux_signal_pid.
7620 (linux_init_signals): New function.
7621 (initialize_low): Call it. Initialize using_threads.
7622 * regcache.c (inferior_regcache_data): Add valid
7623 flag.
7624 (get_regcache): Fetch registers lazily. Add fetch argument
7625 and update all callers.
7626 (regcache_invalidate_one, regcache_invalidate): New
7627 functions.
7628 (new_register_cache): Renamed from create_register_cache.
7629 Return the new regcache.
7630 (free_register_cache): Change argument to a void *.
7631 (registers_to_string, registers_from_string): Call get_regcache
7632 with fetch flag set.
7633 (register_data): Make static. Pass fetch flag to get_regcache.
7634 (supply_register): Call get_regcache with fetch flag clear.
7635 (collect_register): Call get_regcache with fetch flag set.
7636 (collect_register_as_string): New function.
7637 * regcache.h: Update.
7638 * remote-utils.c (putpkt): Flush after debug output and use
7639 stderr.
7640 Handle input interrupts while waiting for an ACK.
7641 (input_interrupt): Use signal_pid method.
7642 (getpkt): Flush after debug output and use stderr.
7643 (outreg): Use collect_register_as_string.
7644 (new_thread_notify, dead_thread_notify): New functions.
7645 (prepare_resume_reply): Check using_threads. Set thread_from_wait
7646 and general_thread.
7647 (look_up_one_symbol): Flush after debug output.
7648 * server.c (step_thread, server_waiting): New variables.
7649 (start_inferior): Don't use signal_pid. Update call to mywait.
7650 (attach_inferior): Update call to mywait.
7651 (handle_query): Handle qfThreadInfo and qsThreadInfo.
7652 (main): Don't fetch/store registers explicitly. Use
7653 set_desired_inferior. Support proposed ``Hs'' packet. Update
7654 calls to mywait.
7655 * server.h: Update.
7656 (struct inferior_list, struct_inferior_list_entry): New.
7657 * target.c (set_desired_inferior): New.
7658 (write_inferior_memory): Constify.
7659 (mywait): New function.
7660 * target.h: Update.
7661 (struct target_ops): New signal_pid method.
7662 (mywait): Removed macro, added prototype.
7663
7664 * linux-low.h (regset_func): Removed.
7665 (regset_fill_func, regset_store_func): New.
7666 (enum regset_type): New.
7667 (struct regset_info): Add type field. Use new operation types.
7668 (struct linux_target_ops): stop_pc renamed to get_pc.
7669 Add decr_pc_after_break and breakpoint_at.
7670 (get_process, get_thread_proess, get_process_thread)
7671 (strut process_info, all_processes, linux_attach_lwp)
7672 (thread_db_init): New.
7673
7674 * linux-arm-low.c (arm_get_pc, arm_set_pc,
7675 arm_breakpoint, arm_breakpoint_len, arm_breakpoint_at): New.
7676 (the_low_target): Add new members.
7677 * linux-i386-low.c (i386_store_gregset, i386_store_fpregset)
7678 (i386_store_fpxregset): Constify.
7679 (target_regsets): Add new kind identifier.
7680 (i386_get_pc): Renamed from i386_stop_pc. Simplify.
7681 (i386_set_pc): Add debugging.
7682 (i386_breakpoint_at): New function.
7683 (the_low_target): Add new members.
7684 * linux-mips-low.c (mips_get_pc, mips_set_pc)
7685 (mips_breakpoint, mips_breakpoint_len, mips_reinsert_addr)
7686 (mips_breakpoint_at): New.
7687 (the_low_target): Add new members.
7688 * linux-ppc-low.c (ppc_get_pc, ppc_set_pc)
7689 (ppc_breakpoint, ppc_breakpoint_len, ppc_breakpoint_at): New.
7690 (the_low_target): Add new members.
7691 * linux-sh-low.c (sh_get_pc, sh_set_pc)
7692 (sh_breakpoint, sh_breakpoint_len, sh_breakpoint_at): New.
7693 (the_low_target): Add new members.
7694 * linux-x86-64-low.c (target_regsets): Add new kind
7695 identifier.
7696
76972002-05-15 Daniel Jacobowitz <drow@mvista.com>
7698
7699 From Martin Pool <mbp@samba.org>:
7700 * server.c (gdbserver_usage): New function.
7701 (main): Call it.
7702
77032002-05-14 Daniel Jacobowitz <drow@mvista.com>
7704
7705 * mem-break.c (reinsert_breakpoint_by_bp): Correct typo
7706 stop_at -> stop_pc.
7707
77082002-05-04 Andrew Cagney <ac131313@redhat.com>
7709
7710 * Makefile.in: Remove obsolete code.
7711
77122002-04-24 Michal Ludvig <mludvig@suse.cz>
7713
7714 * linux-low.c (regsets_fetch_inferior_registers),
7715 (regsets_store_inferior_registers): Removed cast to int from
7716 ptrace() calls.
7717 * regcache.h: Added declaration of struct inferior_info.
7718
77192002-04-20 Daniel Jacobowitz <drow@mvista.com>
7720
7721 * inferiors.c (struct inferior_info): Add regcache_data.
7722 (add_inferior): Call create_register_cache.
7723 (clear_inferiors): Call free_register_cache.
7724 (inferior_regcache_data, set_inferior_regcache_data): New functions.
7725 * regcache.c (struct inferior_regcache_data): New.
7726 (registers): Remove.
7727 (get_regcache): New function.
7728 (create_register_cache, free_register_cache): New functions.
7729 (set_register_cache): Don't initialize the register cache here.
7730 (registers_to_string, registers_from_string, register_data): Call
7731 get_regcache.
7732 * regcache.h: Add prototypes.
7733 * server.h: Likewise.
7734
77352002-04-20 Daniel Jacobowitz <drow@mvista.com>
7736
7737 * mem-break.c: New file.
7738 * mem-break.h: New file.
7739 * Makefile.in: Add mem-break.o rule; update server.h
7740 dependencies.
7741 * inferiors.c (struct inferior_info): Add target_data
7742 member.
7743 (clear_inferiors): Free target_data member if set.
7744 (inferior_target_data, set_inferior_target_data): New functions.
7745 * linux-i386-low.c (i386_breakpoint, i386_breakpoint_len)
7746 (i386_stop_pc, i386_set_pc): New. Add to the_low_target.
7747 * linux-low.c (linux_bp_reinsert): New variable.
7748 (struct inferior_linux_data): New.
7749 (linux_create_inferior): Use set_inferior_target_data.
7750 (linux_attach): Likewise. Call add_inferior.
7751 (linux_wait_for_one_inferior): New function.
7752 (linux_wait): Call it.
7753 (linux_write_memory): Add const.
7754 (initialize_low): Call set_breakpoint_data.
7755 * linux-low.h (struct linux_target_ops): Add breakpoint
7756 handling members.
7757 * server.c (attach_inferior): Remove extra add_inferior
7758 call.
7759 * server.h: Include mem-break.h. Update inferior.c
7760 prototypes.
7761 * target.c (read_inferior_memory)
7762 (write_inferior_memory): New functions.
7763 * target.h (read_inferior_memory)
7764 (write_inferior_memory): Change macros to prototypes.
7765 (struct target_ops): Update comments. Add const to write_memory
7766 definition.
7767
77682002-04-11 Daniel Jacobowitz <drow@mvista.com>
7769
7770 * linux-low.c (usr_store_inferior_registers): Support
7771 registers which are allowed to fail to store.
7772 * linux-low.h (linux_target_ops): Likewise.
7773 * linux-ppc-low.c (ppc_regmap): Support FPSCR.
7774 (ppc_cannot_store_register): FPSCR may not be storable.
7775
77762002-04-09 Daniel Jacobowitz <drow@mvista.com>
7777
7778 * server.h: Include <string.h> if HAVE_STRING_H.
7779 * ChangeLog: Correct paths in last ChangeLog entry.
7780
77812002-04-09 Daniel Jacobowitz <drow@mvista.com>
7782
7783 * linux-low.h: Remove obsolete prototypes.
7784 (struct linux_target_ops): New.
7785 (extern the_low_target): New.
7786 * linux-low.c (num_regs, regmap): Remove declarations.
7787 (register_addr): Use the_low_target explicitly.
7788 (fetch_register): Likewise.
7789 (usr_fetch_inferior_registers): Likewise.
7790 (usr_store_inferior_registers): Likewise.
7791 * linux-arm-low.c (num_regs): Remove.
7792 (arm_num_regs): Define.
7793 (arm_regmap): Renamed from regmap, made static.
7794 (arm_cannot_fetch_register): Renamed from cannot_fetch_register,
7795 made static.
7796 (arm_cannot_store_register): Renamed from cannot_store_register,
7797 made static.
7798 (the_low_target): New.
7799 * linux-i386-low.c (num_regs): Remove.
7800 (i386_num_regs): Define.
7801 (i386_regmap): Renamed from regmap, made static.
7802 (i386_cannot_fetch_register): Renamed from cannot_fetch_register,
7803 made static.
7804 (i386_cannot_store_register): Renamed from cannot_store_register,
7805 made static.
7806 (the_low_target): New.
7807 * linux-ia64-low.c (num_regs): Remove.
7808 (ia64_num_regs): Define.
7809 (ia64_regmap): Renamed from regmap, made static.
7810 (ia64_cannot_fetch_register): Renamed from cannot_fetch_register,
7811 made static.
7812 (ia64_cannot_store_register): Renamed from cannot_store_register,
7813 made static.
7814 (the_low_target): New.
7815 * linux-m68k-low.c (num_regs): Remove.
7816 (m68k_num_regs): Define.
7817 (m68k_regmap): Renamed from regmap, made static.
7818 (m68k_cannot_fetch_register): Renamed from cannot_fetch_register,
7819 made static.
7820 (m68k_cannot_store_register): Renamed from cannot_store_register,
7821 made static.
7822 (the_low_target): New.
7823 * linux-mips-low.c (num_regs): Remove.
7824 (mips_num_regs): Define.
7825 (mips_regmap): Renamed from regmap, made static.
7826 (mips_cannot_fetch_register): Renamed from cannot_fetch_register,
7827 made static.
7828 (mips_cannot_store_register): Renamed from cannot_store_register,
7829 made static.
7830 (the_low_target): New.
7831 * linux-ppc-low.c (num_regs): Remove.
7832 (ppc_num_regs): Define.
7833 (ppc_regmap): Renamed from regmap, made static.
7834 (ppc_cannot_fetch_register): Renamed from cannot_fetch_register,
7835 made static.
7836 (ppc_cannot_store_register): Renamed from cannot_store_register,
7837 made static.
7838 (the_low_target): New.
7839 * linux-s390-low.c (num_regs): Remove.
7840 (s390_num_regs): Define.
7841 (s390_regmap): Renamed from regmap, made static.
7842 (s390_cannot_fetch_register): Renamed from cannot_fetch_register,
7843 made static.
7844 (s390_cannot_store_register): Renamed from cannot_store_register,
7845 made static.
7846 (the_low_target): New.
7847 * linux-sh-low.c (num_regs): Remove.
7848 (sh_num_regs): Define.
7849 (sh_regmap): Renamed from regmap, made static.
7850 (sh_cannot_fetch_register): Renamed from cannot_fetch_register,
7851 made static.
7852 (sh_cannot_store_register): Renamed from cannot_store_register,
7853 made static.
7854 (the_low_target): New.
7855 * linux-x86-64-low.c (x86_64_regmap): Renamed from regmap.
7856 (the_low_target): New.
7857
78582002-04-09 Daniel Jacobowitz <drow@mvista.com>
7859
7860 * Makefile.in: Add stamp-h target.
7861 * configure.in: Create stamp-h.
7862 * configure: Regenerated.
7863
78642002-04-09 Daniel Jacobowitz <drow@mvista.com>
7865
7866 * inferiors.c: New file.
7867 * target.c: New file.
7868 * target.h: New file.
7869 * Makefile.in: Add target.o and inferiors.o. Update
7870 dependencies.
7871 * linux-low.c (inferior_pid): New static variable,
7872 moved from server.c.
7873 (linux_create_inferior): Renamed from create_inferior.
7874 Call add_inferior. Return 0 on success instead of a PID.
7875 (linux_attach): Renamed from myattach.
7876 (linux_kill): Renamed from kill_inferior. Call clear_inferiors ().
7877 (linux_thread_alive): Renamed from mythread_alive.
7878 (linux_wait): Renamed from mywait. Call clear_inferiors () if the
7879 child dies.
7880 (linux_resume): Renamed from myresume. Add missing ``return 0''.
7881 (regsets_store_inferior_registers): Correct error message.
7882 Add missing ``return 0''.
7883 (linux_fetch_registers): Renamed from fetch_inferior_registers.
7884 (linux_store_registers): Renamed from store_inferior_registers.
7885 (linux_read_memory): Renamed from read_inferior_memory.
7886 (linux_write_memory): Renamed from write_inferior_memory.
7887 (linux_target_ops): New structure.
7888 (initialize_low): Call set_target_ops ().
7889 * remote-utils.c (unhexify): New function.
7890 (hexify): New function.
7891 (input_interrupt): Send signals to ``signal_pid''.
7892 * server.c (inferior_pid): Remove.
7893 (start_inferior): Update create_inferior call.
7894 (attach_inferior): Call add_inferior.
7895 (handle_query): New function.
7896 (main): Call handle_query for `q' packets.
7897 * server.h: Include "target.h". Remove obsolete prototypes.
7898 Add prototypes for "inferiors.c", "target.c", hexify, and unhexify.
7899
79002002-04-09 Daniel Jacobowitz <drow@mvista.com>
7901
7902 * Makefile.in: Add WARN_CFLAGS. Update configury
7903 dependencies.
7904 * configure.in: Check for <string.h>
7905 * configure: Regenerate.
7906 * config.in: Regenerate.
7907 * gdbreplay.c: Include needed system headers.
7908 (remote_open): Remove strchr prototype.
7909 * linux-low.h: Correct #ifdef to HAVE_LINUX_USRREGS.
7910 * regcache.c (supply_register): Change buf argument to const void *.
7911 (supply_register_by_name): Likewise.
7912 (collect_register): Change buf argument to void *.
7913 (collect_register_by_name): Likewise.
7914 * regcache.h: Add missing prototypes.
7915 * remote-utils.c: Include <arpa/inet.h> for inet_ntoa.
7916 * server.c (handle_query): New function.
7917 (attached): New static variable, moved out of main.
7918 (main): Quiet longjmp clobber warnings.
7919 * server.h: Add ATTR_NORETURN and ATTR_FORMAT. Update prototypes.
7920 * utils.c (error): Remove NORETURN.
7921 (fatal): Likewise.
This page took 1.429511 seconds and 4 git commands to generate.