Optimize branches to non-weak symbols with visibility
[deliverable/binutils-gdb.git] / sim / arm / communicate.c
1 /* communicate.c -- ARMulator RDP comms code: ARM6 Instruction Emulator.
2 Copyright (C) 1994 Advanced RISC Machines Ltd.
3
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 3 of the License, or
7 (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, see <http://www.gnu.org/licenses/>. */
16
17 /**************************************************************************/
18 /* Functions to read and write characters or groups of characters */
19 /* down sockets or pipes. Those that return a value return -1 on failure */
20 /* and 0 on success. */
21 /**************************************************************************/
22
23 #include <sys/time.h>
24 #include <sys/types.h>
25 #include <sys/socket.h>
26 #include <netinet/in.h>
27
28 #include "armdefs.h"
29
30 /* The socket to the debugger */
31 int debugsock;
32
33 /* The maximum number of file descriptors */
34 extern int nfds;
35
36 /* The socket handle */
37 extern int sockethandle;
38
39 /* Read and Write routines down a pipe or socket */
40
41 /****************************************************************/
42 /* Read an individual character. */
43 /* All other read functions rely on this one. */
44 /* It waits 15 seconds until there is a character available: if */
45 /* no character is available, then it timeouts and returns -1. */
46 /****************************************************************/
47 int
48 MYread_char (int sock, unsigned char *c)
49 {
50 int i;
51 fd_set readfds;
52 struct timeval timeout = { 15, 0 };
53 struct sockaddr_in isa;
54
55 retry:
56
57 FD_ZERO (&readfds);
58 FD_SET (sock, &readfds);
59
60 i = select (nfds, &readfds, (fd_set *) 0, (fd_set *) 0, &timeout);
61
62 if (i < 0)
63 {
64 perror ("select");
65 exit (1);
66 }
67
68 if (!i)
69 {
70 fprintf (stderr, "read: Timeout\n");
71 return -1;
72 }
73
74 if ((i = read (sock, c, 1)) < 1)
75 {
76 if (!i && sock == debugsock)
77 {
78 fprintf (stderr, "Connection with debugger severed.\n");
79 /* This shouldn't be necessary for a detached armulator, but
80 the armulator cannot be cold started a second time, so
81 this is probably preferable to locking up. */
82 return -1;
83 fprintf (stderr, "Waiting for connection from debugger...");
84 debugsock = accept (sockethandle, &isa, &i);
85 if (debugsock == -1)
86 { /* Now we are in serious trouble... */
87 perror ("accept");
88 return -1;
89 }
90 fprintf (stderr, " done.\nConnection Established.\n");
91 sock = debugsock;
92 goto retry;
93 }
94 perror ("read");
95 return -1;
96 }
97
98 #ifdef DEBUG
99 if (sock == debugsock)
100 fprintf (stderr, "<%02x ", *c);
101 #endif
102
103 return 0;
104 }
105
106 /****************************************************************/
107 /* Read an individual character. */
108 /* It waits until there is a character available. Returns -1 if */
109 /* an error occurs. */
110 /****************************************************************/
111 int
112 MYread_charwait (int sock, unsigned char *c)
113 {
114 int i;
115 fd_set readfds;
116 struct sockaddr_in isa;
117
118 retry:
119
120 FD_ZERO (&readfds);
121 FD_SET (sock, &readfds);
122
123 i = select (nfds, &readfds,
124 (fd_set *) 0, (fd_set *) 0, (struct timeval *) 0);
125
126 if (i < 0)
127 {
128 perror ("select");
129 exit (-1);
130 }
131
132 if ((i = read (sock, c, 1)) < 1)
133 {
134 if (!i && sock == debugsock)
135 {
136 fprintf (stderr, "Connection with debugger severed.\n");
137 return -1;
138 fprintf (stderr, "Waiting for connection from debugger...");
139 debugsock = accept (sockethandle, &isa, &i);
140 if (debugsock == -1)
141 { /* Now we are in serious trouble... */
142 perror ("accept");
143 return -1;
144 }
145 fprintf (stderr, " done.\nConnection Established.\n");
146 sock = debugsock;
147 goto retry;
148 }
149 perror ("read");
150 return -1;
151 }
152
153 #ifdef DEBUG
154 if (sock == debugsock)
155 fprintf (stderr, "<%02x ", *c);
156 #endif
157
158 return 0;
159 }
160
161 void
162 MYwrite_char (int sock, unsigned char c)
163 {
164
165 if (write (sock, &c, 1) < 1)
166 perror ("write");
167 #ifdef DEBUG
168 if (sock == debugsock)
169 fprintf (stderr, ">%02x ", c);
170 #endif
171 }
172
173 int
174 MYread_word (int sock, ARMword * here)
175 {
176 unsigned char a, b, c, d;
177
178 if (MYread_char (sock, &a) < 0)
179 return -1;
180 if (MYread_char (sock, &b) < 0)
181 return -1;
182 if (MYread_char (sock, &c) < 0)
183 return -1;
184 if (MYread_char (sock, &d) < 0)
185 return -1;
186 *here = a | b << 8 | c << 16 | d << 24;
187 return 0;
188 }
189
190 void
191 MYwrite_word (int sock, ARMword i)
192 {
193 MYwrite_char (sock, i & 0xff);
194 MYwrite_char (sock, (i & 0xff00) >> 8);
195 MYwrite_char (sock, (i & 0xff0000) >> 16);
196 MYwrite_char (sock, (i & 0xff000000) >> 24);
197 }
198
199 void
200 MYwrite_string (int sock, char *s)
201 {
202 int i;
203 for (i = 0; MYwrite_char (sock, s[i]), s[i]; i++);
204 }
205
206 int
207 MYread_FPword (int sock, char *putinhere)
208 {
209 int i;
210 for (i = 0; i < 16; i++)
211 if (MYread_char (sock, &putinhere[i]) < 0)
212 return -1;
213 return 0;
214 }
215
216 void
217 MYwrite_FPword (int sock, char *fromhere)
218 {
219 int i;
220 for (i = 0; i < 16; i++)
221 MYwrite_char (sock, fromhere[i]);
222 }
223
224 /* Takes n bytes from source and those n bytes */
225 /* down to dest */
226 int
227 passon (int source, int dest, int n)
228 {
229 char *p;
230 int i;
231
232 p = (char *) malloc (n);
233 if (!p)
234 {
235 perror ("Out of memory\n");
236 exit (1);
237 }
238 if (n)
239 {
240 for (i = 0; i < n; i++)
241 if (MYread_char (source, &p[i]) < 0)
242 return -1;
243
244 #ifdef DEBUG
245 if (dest == debugsock)
246 for (i = 0; i < n; i++)
247 fprintf (stderr, ")%02x ", (unsigned char) p[i]);
248 #endif
249
250 write (dest, p, n);
251 }
252 free (p);
253 return 0;
254 }
This page took 0.049753 seconds and 4 git commands to generate.