summaryrefslogtreecommitdiff
path: root/sim/ppc/main.c
blob: 5ce3a0de226c2f03e0be8bb3e496c805e4f52ead (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
/*  This file is part of the program psim.

    Copyright (C) 1994-1995, Andrew Cagney <cagney@highland.com.au>

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.
 
    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
    */


#include <stdarg.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>

#include "psim.h"

extern char **environ;
extern char *optarg;
extern int optind;
extern int optopt;
extern int opterr;

void
printf_filtered(const char *msg, ...)
{
  va_list ap;
  va_start(ap, msg);
  vprintf(msg, ap);
}

void
error (char *msg, ...)
{
  va_list ap;
  va_start(ap, msg);
  vprintf(msg, ap);
  exit (1);
}

void *
zalloc(long size)
{
  void *memory = malloc(size);
  if (memory == NULL)
    error("zmalloc failed\n");
  bzero(memory, size);
  return memory;
}

void
zfree(void *chunk)
{
  free(chunk);
}

static void
usage(void)
{
  error ("Usage: psim [ -a -p -c -C -s -i -t ] <image> [ <image-args> ... ]\n");
}

int
main(int argc, char **argv)
{
  psim *system;
  const char *name_of_file;
  char *arg_;
  unsigned_word stack_pointer;
  psim_status status;
  int letter;
  int i;
  int print_info = 0;

  /* check for arguments -- note sim_calls.c also contains argument processing
     code for the simulator linked within gdb.  */
  while ((letter = getopt (argc, argv, "acCiIpst")) != EOF)
    {
      switch (letter) {
      case 'a':
	for (i = 0; i < nr_trace; i++)
	  trace[i] = 1;
	break;
      case 'p':
	trace[trace_cpu] = trace[trace_semantics] = 1;
	break;
      case 'c':
	trace[trace_core] = 1;
	break;
      case 'C':
	trace[trace_console_device] = 1;
	break;
      case 's':
	trace[trace_create_stack] = 1;
	break;
      case 'i':
	trace[trace_icu_device] = 1;
	break;
      case 'I':
	print_info = 1;
	break;
      case 't':
	trace[trace_device_tree] = 1;
	break;
      default:
	usage();
      }
    }

  if (optind >= argc)
    usage();
  name_of_file = argv[optind];

  /* create the simulator */
  system = psim_create(name_of_file, ((WITH_SMP > 0) ? WITH_SMP : 1));

  /* fudge the environment so that _=prog-name */
  arg_ = (char*)zalloc(strlen(argv[optind]) + strlen("_=") + 1);
  strcpy(arg_, "_=");
  strcat(arg_, argv[optind]);
  putenv(arg_);

  /* initialize it */
  psim_load(system);
  psim_stack(system, &argv[optind], environ);

  psim_run(system);

  if (print_info)
    psim_print_info (system, 1);

  /* why did we stop */
  status = psim_get_status(system);
  switch (status.reason) {
  case was_continuing:
    error("psim: continuing while stoped!\n");
    return 0;
  case was_trap:
    error("psim: no trap insn\n");
    return 0;
  case was_exited:
    return status.signal;
  case was_signalled:
    return status.signal;
  default:
    error("unknown halt condition\n");
    return 0;
  }
}