summaryrefslogtreecommitdiff
path: root/sim/mn10200/gencode.c
blob: 8ba873eb2248ec1ce9c76c39e6ad76fda9adc9e8 (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
#include "mn10200_sim.h"

static void write_header PARAMS ((void));
static void write_opcodes PARAMS ((void));
static void write_template PARAMS ((void));

int
main (argc, argv)
     int argc;
     char *argv[];
{
  if ((argc > 1) && (strcmp (argv[1], "-h") == 0))
    write_header();
  else if ((argc > 1) && (strcmp (argv[1], "-t") == 0))
    write_template ();
  else
    write_opcodes();
  return 0;
}


static void
write_header ()
{
  struct mn10200_opcode *opcode;

  for (opcode = (struct mn10200_opcode *)mn10200_opcodes; opcode->name; opcode++)
    printf("void OP_%X PARAMS ((unsigned long, unsigned long));\t\t/* %s */\n",
	   opcode->opcode, opcode->name);
}


/* write_template creates a file all required functions, ready */
/* to be filled out */

static void
write_template ()
{
  struct mn10200_opcode *opcode;
  int i,j;

  printf ("#include \"mn10200_sim.h\"\n");
  printf ("#include \"simops.h\"\n");

  for (opcode = (struct mn10200_opcode *)mn10200_opcodes; opcode->name; opcode++)
    {
      printf("/* %s */\nvoid\nOP_%X (insn, extension)\n     unsigned long insn, extension;\n{\n", opcode->name, opcode->opcode);
	  
      /* count operands */
      j = 0;
      for (i = 0; i < 6; i++)
	{
	  int flags = mn10200_operands[opcode->operands[i]].flags;

	  if (flags)
	    j++;
	}
      switch (j)
	{
	case 0:
	  printf ("printf(\"   %s\\n\");\n", opcode->name);
	  break;
	case 1:
	  printf ("printf(\"   %s\\t%%x\\n\", OP[0]);\n", opcode->name);
	  break;
	case 2:
	  printf ("printf(\"   %s\\t%%x,%%x\\n\",OP[0],OP[1]);\n",
		  opcode->name);
	  break;
	case 3:
	  printf ("printf(\"   %s\\t%%x,%%x,%%x\\n\",OP[0],OP[1],OP[2]);\n",
		  opcode->name);
	  break;
	default:
	  fprintf (stderr,"Too many operands: %d\n", j);
	}
      printf ("}\n\n");
    }
}

static void
write_opcodes ()
{
  struct mn10200_opcode *opcode;
  int i, j;
  int numops;
  
  /* write out opcode table */
  printf ("#include \"mn10200_sim.h\"\n");
  printf ("#include \"simops.h\"\n\n");
  printf ("struct simops Simops[] = {\n");
  
  for (opcode = (struct mn10200_opcode *)mn10200_opcodes; opcode->name; opcode++)
    {
      int size;

      if (opcode->format == FMT_1)
	size = 1;
      else if (opcode->format == FMT_2 || opcode->format == FMT_4)
	size = 2;
      else if (opcode->format == FMT_3 || opcode->format == FMT_5)
	size = 3;
      else if (opcode->format == FMT_6)
	size = 4;
      else if (opcode->format == FMT_7)
	size = 5;
      else
	abort ();

      printf ("  { 0x%x,0x%x,OP_%X,%d,%d,",
	      opcode->opcode, opcode->mask, opcode->opcode,
	      size, opcode->format);
      
      /* count operands */
      j = 0;
      for (i = 0; i < 6; i++)
	{
	  int flags = mn10200_operands[opcode->operands[i]].flags;

	  if (flags)
	    j++;
	}
      printf ("%d,{",j);
	  
      j = 0;
      numops = 0;
      for (i = 0; i < 6; i++)
	{
	  int flags = mn10200_operands[opcode->operands[i]].flags;
	  int shift = mn10200_operands[opcode->operands[i]].shift;

	  if (flags)
	    {
	      if (j)
		printf (", ");
	      printf ("%d,%d,%d", shift,
		      mn10200_operands[opcode->operands[i]].bits,flags);
	      j = 1;
	      numops++;
	    }
	}

      switch (numops)
	{
	case 0:
	  printf ("0,0,0");
	case 1:
	  printf (",0,0,0");
	}

      printf ("}},\n");
    }
  printf ("{ 0,0,NULL,0,0,0,{0,0,0,0,0,0}},\n};\n");
}