main.c 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332
  1. /* This file is part of the program psim.
  2. Copyright (C) 1994-1997, Andrew Cagney <cagney@highland.com.au>
  3. This program is free software; you can redistribute it and/or modify
  4. it under the terms of the GNU General Public License as published by
  5. the Free Software Foundation; either version 3 of the License, or
  6. (at your option) any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with this program; if not, see <http://www.gnu.org/licenses/>.
  13. */
  14. #include <stdarg.h>
  15. #include <stdio.h>
  16. #include <fcntl.h>
  17. #include <signal.h>
  18. #include "psim.h"
  19. #include "options.h"
  20. #include "device.h" /* FIXME: psim should provide the interface */
  21. #include "events.h" /* FIXME: psim should provide the interface */
  22. #include "bfd.h"
  23. #include "gdb/callback.h"
  24. #include "gdb/remote-sim.h"
  25. #ifdef HAVE_STDLIB_H
  26. #include <stdlib.h>
  27. #endif
  28. #ifdef HAVE_UNISTD_H
  29. #include <unistd.h>
  30. #endif
  31. #ifdef HAVE_STRING_H
  32. #include <string.h>
  33. #else
  34. #ifdef HAVE_STRINGS_H
  35. #include <strings.h>
  36. #endif
  37. #endif
  38. #include <errno.h>
  39. #if !defined(O_NDELAY) || !defined(F_GETFL) || !defined(F_SETFL)
  40. #undef WITH_STDIO
  41. #define WITH_STDIO DO_USE_STDIO
  42. #endif
  43. extern char **environ;
  44. static psim *simulation = NULL;
  45. void
  46. sim_io_poll_quit (void)
  47. {
  48. /* nothing to do */
  49. }
  50. void
  51. sim_io_printf_filtered(const char *msg, ...)
  52. {
  53. va_list ap;
  54. va_start(ap, msg);
  55. vprintf(msg, ap);
  56. va_end(ap);
  57. }
  58. void
  59. error (const char *msg, ...)
  60. {
  61. va_list ap;
  62. va_start(ap, msg);
  63. vprintf(msg, ap);
  64. printf("\n");
  65. va_end(ap);
  66. /* any final clean up */
  67. if (ppc_trace[trace_print_info] && simulation != NULL)
  68. psim_print_info (simulation, ppc_trace[trace_print_info]);
  69. exit (1);
  70. }
  71. int
  72. sim_io_write_stdout(const char *buf,
  73. int sizeof_buf)
  74. {
  75. switch (CURRENT_STDIO) {
  76. case DO_USE_STDIO:
  77. {
  78. int i;
  79. for (i = 0; i < sizeof_buf; i++) {
  80. putchar(buf[i]);
  81. }
  82. return i;
  83. }
  84. break;
  85. case DONT_USE_STDIO:
  86. return write(1, buf, sizeof_buf);
  87. break;
  88. default:
  89. error("sim_io_write_stdout: invalid switch\n");
  90. }
  91. return 0;
  92. }
  93. int
  94. sim_io_write_stderr(const char *buf,
  95. int sizeof_buf)
  96. {
  97. switch (CURRENT_STDIO) {
  98. case DO_USE_STDIO:
  99. {
  100. int i;
  101. for (i = 0; i < sizeof_buf; i++) {
  102. fputc(buf[i], stderr);
  103. }
  104. return i;
  105. }
  106. break;
  107. case DONT_USE_STDIO:
  108. return write(2, buf, sizeof_buf);
  109. break;
  110. default:
  111. error("sim_io_write_stdout: invalid switch\n");
  112. }
  113. return 0;
  114. }
  115. int
  116. sim_io_read_stdin(char *buf,
  117. int sizeof_buf)
  118. {
  119. switch (CURRENT_STDIO) {
  120. case DO_USE_STDIO:
  121. if (sizeof_buf > 1) {
  122. if (fgets(buf, sizeof_buf, stdin) != NULL)
  123. return strlen(buf);
  124. }
  125. else if (sizeof_buf == 1) {
  126. char b[2];
  127. if (fgets(b, sizeof(b), stdin) != NULL) {
  128. memcpy(buf, b, strlen(b));
  129. return strlen(b);
  130. }
  131. }
  132. else if (sizeof_buf == 0)
  133. return 0;
  134. return sim_io_eof;
  135. break;
  136. case DONT_USE_STDIO:
  137. #if defined(O_NDELAY) && defined(F_GETFL) && defined(F_SETFL)
  138. {
  139. /* check for input */
  140. int flags;
  141. int status;
  142. int nr_read;
  143. int result;
  144. /* get the old status */
  145. flags = fcntl(0, F_GETFL, 0);
  146. if (flags == -1) {
  147. perror("sim_io_read_stdin");
  148. return sim_io_eof;
  149. }
  150. /* temp, disable blocking IO */
  151. status = fcntl(0, F_SETFL, flags | O_NDELAY);
  152. if (status == -1) {
  153. perror("sim_io_read_stdin");
  154. return sim_io_eof;
  155. }
  156. /* try for input */
  157. nr_read = read(0, buf, sizeof_buf);
  158. if (nr_read > 0
  159. || (nr_read == 0 && sizeof_buf == 0))
  160. result = nr_read;
  161. else if (nr_read == 0)
  162. result = sim_io_eof;
  163. else { /* nr_read < 0 */
  164. if (errno == EAGAIN)
  165. result = sim_io_not_ready;
  166. else
  167. result = sim_io_eof;
  168. }
  169. /* return to regular vewing */
  170. status = fcntl(0, F_SETFL, flags);
  171. if (status == -1) {
  172. perror("sim_io_read_stdin");
  173. return sim_io_eof;
  174. }
  175. return result;
  176. }
  177. break;
  178. #endif
  179. default:
  180. error("sim_io_read_stdin: invalid switch\n");
  181. break;
  182. }
  183. return 0;
  184. }
  185. void
  186. sim_io_flush_stdoutput(void)
  187. {
  188. switch (CURRENT_STDIO) {
  189. case DO_USE_STDIO:
  190. fflush (stdout);
  191. break;
  192. case DONT_USE_STDIO:
  193. break;
  194. default:
  195. error("sim_io_flush_stdoutput: invalid switch\n");
  196. break;
  197. }
  198. }
  199. void
  200. sim_io_error (SIM_DESC sd, const char *msg, ...)
  201. {
  202. va_list ap;
  203. va_start(ap, msg);
  204. vprintf(msg, ap);
  205. printf("\n");
  206. va_end(ap);
  207. /* any final clean up */
  208. if (ppc_trace[trace_print_info] && simulation != NULL)
  209. psim_print_info (simulation, ppc_trace[trace_print_info]);
  210. exit (1);
  211. }
  212. void *
  213. zalloc(long size)
  214. {
  215. void *memory = malloc(size);
  216. if (memory == NULL)
  217. error("zalloc failed\n");
  218. memset(memory, 0, size);
  219. return memory;
  220. }
  221. /* When a CNTRL-C occures, queue an event to shut down the simulation */
  222. static RETSIGTYPE
  223. cntrl_c(int sig)
  224. {
  225. psim_stop (simulation);
  226. }
  227. int
  228. main(int argc, char **argv)
  229. {
  230. const char *name_of_file;
  231. char *arg_;
  232. psim_status status;
  233. device *root = psim_tree();
  234. /* parse the arguments */
  235. argv = psim_options(root, argv + 1);
  236. if (argv[0] == NULL) {
  237. if (ppc_trace[trace_opts]) {
  238. print_options ();
  239. return 0;
  240. } else {
  241. psim_usage(0, 0);
  242. }
  243. }
  244. name_of_file = argv[0];
  245. if (ppc_trace[trace_opts])
  246. print_options ();
  247. /* create the simulator */
  248. simulation = psim_create(name_of_file, root);
  249. /* fudge the environment so that _=prog-name */
  250. arg_ = (char*)zalloc(strlen(argv[0]) + strlen("_=") + 1);
  251. strcpy(arg_, "_=");
  252. strcat(arg_, argv[0]);
  253. putenv(arg_);
  254. /* initialize it */
  255. psim_init(simulation);
  256. psim_stack(simulation, argv, environ);
  257. {
  258. RETSIGTYPE (*prev) ();
  259. prev = signal(SIGINT, cntrl_c);
  260. psim_run(simulation);
  261. signal(SIGINT, prev);
  262. }
  263. /* any final clean up */
  264. if (ppc_trace[trace_print_info])
  265. psim_print_info (simulation, ppc_trace[trace_print_info]);
  266. /* why did we stop */
  267. status = psim_get_status(simulation);
  268. switch (status.reason) {
  269. case was_continuing:
  270. error("psim: continuing while stopped!\n");
  271. return 0;
  272. case was_trap:
  273. error("psim: no trap insn\n");
  274. return 0;
  275. case was_exited:
  276. return status.signal;
  277. case was_signalled:
  278. printf ("%s: Caught signal %d at address 0x%lx\n",
  279. name_of_file, (int)status.signal,
  280. (long)status.program_counter);
  281. return status.signal;
  282. default:
  283. error("unknown halt condition\n");
  284. return 0;
  285. }
  286. }