Coverage Report

Created: 2023-08-28 06:31

/src/binutils-gdb/opcodes/mcore-dis.c
Line
Count
Source (jump to first uncovered line)
1
/* Disassemble Motorola M*Core instructions.
2
   Copyright (C) 1993-2023 Free Software Foundation, Inc.
3
4
   This file is part of the GNU opcodes library.
5
6
   This library is free software; you can redistribute it and/or modify
7
   it under the terms of the GNU General Public License as published by
8
   the Free Software Foundation; either version 3, or (at your option)
9
   any later version.
10
11
   It is distributed in the hope that it will be useful, but WITHOUT
12
   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13
   or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
14
   License for more details.
15
16
   You should have received a copy of the GNU General Public License
17
   along with this program; if not, write to the Free Software
18
   Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
19
   MA 02110-1301, USA.  */
20
21
#include "sysdep.h"
22
#include <stdio.h>
23
#include "libiberty.h"
24
#define STATIC_TABLE
25
#define DEFINE_TABLE
26
27
#include "mcore-opc.h"
28
#include "disassemble.h"
29
30
/* Mask for each mcore_opclass: */
31
static const unsigned short imsk[] = {
32
    /* O0  */ 0xFFFF,
33
    /* OT  */ 0xFFFC,
34
    /* O1  */ 0xFFF0,
35
    /* OC  */ 0xFE00,
36
    /* O2  */ 0xFF00,
37
    /* X1  */ 0xFFF0,
38
    /* OI  */ 0xFE00,
39
    /* OB  */ 0xFE00,
40
41
    /* OMa */ 0xFFF0,
42
    /* SI  */ 0xFE00,
43
    /* I7  */ 0xF800,
44
    /* LS  */ 0xF000,
45
    /* BR  */ 0xF800,
46
    /* BL  */ 0xFF00,
47
    /* LR  */ 0xF000,
48
    /* LJ  */ 0xFF00,
49
50
    /* RM  */ 0xFFF0,
51
    /* RQ  */ 0xFFF0,
52
    /* JSR */ 0xFFF0,
53
    /* JMP */ 0xFFF0,
54
    /* OBRa*/ 0xFFF0,
55
    /* OBRb*/ 0xFF80,
56
    /* OBRc*/ 0xFF00,
57
    /* OBR2*/ 0xFE00,
58
59
    /* O1R1*/ 0xFFF0,
60
    /* OMb */ 0xFF80,
61
    /* OMc */ 0xFF00,
62
    /* SIa */ 0xFE00,
63
64
  /* MULSH */ 0xFF00,
65
  /* OPSR  */ 0xFFF8,   /* psrset/psrclr */
66
67
    /* JC  */ 0,    /* JC,JU,JL don't appear in object */
68
    /* JU  */ 0,
69
    /* JL  */ 0,
70
    /* RSI */ 0,
71
    /* DO21*/ 0,
72
    /* OB2 */ 0     /* OB2 won't appear in object.  */
73
};
74
75
static const char *grname[] = {
76
 "r0",  "r1",  "r2",  "r3",  "r4",  "r5",  "r6",  "r7",
77
 "r8",  "r9", "r10", "r11", "r12", "r13", "r14", "r15"
78
};
79
80
static const char X[] = "??";
81
82
static const char *crname[] = {
83
  "psr",  "vbr", "epsr", "fpsr", "epc",  "fpc",  "ss0",  "ss1",
84
  "ss2",  "ss3", "ss4",  "gcr",  "gsr",     X,      X,      X,
85
     X,      X,      X,      X,      X,     X,      X,      X,
86
     X,      X,      X,      X,      X,     X,      X,      X
87
};
88
89
static const unsigned isiz[] = { 2, 0, 1, 0 };
90
91
int
92
print_insn_mcore (bfd_vma memaddr,
93
      struct disassemble_info *info)
94
270k
{
95
270k
  unsigned char ibytes[4];
96
270k
  fprintf_ftype print_func = info->fprintf_func;
97
270k
  void *stream = info->stream;
98
270k
  unsigned int inst;
99
270k
  unsigned int i;
100
270k
  int status;
101
102
270k
  info->bytes_per_chunk = 2;
103
104
270k
  status = info->read_memory_func (memaddr, ibytes, 2, info);
105
106
270k
  if (status != 0)
107
98
    {
108
98
      info->memory_error_func (status, memaddr, info);
109
98
      return -1;
110
98
    }
111
112
270k
  if (info->endian == BFD_ENDIAN_BIG)
113
1.83k
    inst = (ibytes[0] << 8) | ibytes[1];
114
268k
  else if (info->endian == BFD_ENDIAN_LITTLE)
115
268k
    inst = (ibytes[1] << 8) | ibytes[0];
116
0
  else
117
0
    abort ();
118
119
  /* Just a linear search of the table.  */
120
23.5M
  for (i = 0; i < ARRAY_SIZE (mcore_table); i++)
121
23.5M
    if (mcore_table[i].inst == (inst & imsk[mcore_table[i].opclass]))
122
234k
      break;
123
124
270k
  if (i == ARRAY_SIZE (mcore_table))
125
35.4k
    (*print_func) (stream, ".short 0x%04x", inst);
126
234k
  else
127
234k
    {
128
234k
      const char *name = grname[inst & 0x0F];
129
130
234k
      (*print_func) (stream, "%s", mcore_table[i].name);
131
132
234k
      switch (mcore_table[i].opclass)
133
234k
  {
134
33.8k
  case O0:
135
33.8k
    break;
136
137
593
  case OT:
138
593
    (*print_func) (stream, "\t%d", inst & 0x3);
139
593
    break;
140
141
8.00k
  case O1:
142
8.47k
  case JMP:
143
8.75k
  case JSR:
144
8.75k
    (*print_func) (stream, "\t%s", name);
145
8.75k
    break;
146
147
4.17k
  case OC:
148
4.17k
    (*print_func) (stream, "\t%s, %s", name, crname[(inst >> 4) & 0x1F]);
149
4.17k
    break;
150
151
71
  case O1R1:
152
71
    (*print_func) (stream, "\t%s, r1", name);
153
71
    break;
154
155
769
  case MULSH:
156
22.9k
  case O2:
157
22.9k
    (*print_func) (stream, "\t%s, %s", name, grname[(inst >> 4) & 0xF]);
158
22.9k
    break;
159
160
1.90k
  case X1:
161
1.90k
    (*print_func) (stream, "\tr1, %s", name);
162
1.90k
    break;
163
164
5.84k
  case OI:
165
5.84k
    (*print_func) (stream, "\t%s, %d", name, ((inst >> 4) & 0x1F) + 1);
166
5.84k
    break;
167
168
1.42k
  case RM:
169
1.42k
    (*print_func) (stream, "\t%s-r15, (r0)", name);
170
1.42k
    break;
171
172
1.41k
  case RQ:
173
1.41k
    (*print_func) (stream, "\tr4-r7, (%s)", name);
174
1.41k
    break;
175
176
10.5k
  case OB:
177
10.7k
  case OBRa:
178
11.0k
  case OBRb:
179
12.2k
  case OBRc:
180
12.2k
  case SI:
181
18.0k
  case SIa:
182
18.2k
  case OMa:
183
18.4k
  case OMb:
184
19.2k
  case OMc:
185
19.2k
    (*print_func) (stream, "\t%s, %d", name, (inst >> 4) & 0x1F);
186
19.2k
    break;
187
188
8.66k
  case I7:
189
8.66k
    (*print_func) (stream, "\t%s, %d", name, (inst >> 4) & 0x7F);
190
8.66k
    break;
191
192
66.2k
  case LS:
193
66.2k
    (*print_func) (stream, "\t%s, (%s, %d)", grname[(inst >> 8) & 0xF],
194
66.2k
       name, ((inst >> 4) & 0xF) << isiz[(inst >> 13) & 3]);
195
66.2k
    break;
196
197
42.0k
  case BR:
198
42.0k
    {
199
42.0k
      uint32_t val = ((inst & 0x3FF) ^ 0x400) - 0x400;
200
201
42.0k
      val = memaddr + 2 + (val << 1);
202
42.0k
      (*print_func) (stream, "\t0x%x", val);
203
204
42.0k
      if (strcmp (mcore_table[i].name, "bsr") == 0)
205
25.5k
        {
206
    /* For bsr, we'll try to get a symbol for the target.  */
207
25.5k
    if (info->print_address_func && val != 0)
208
25.5k
      {
209
25.5k
        (*print_func) (stream, "\t// ");
210
25.5k
        info->print_address_func (val, info);
211
25.5k
      }
212
25.5k
        }
213
42.0k
    }
214
42.0k
    break;
215
216
1.77k
  case BL:
217
1.77k
    {
218
1.77k
      uint32_t val = memaddr + 2 + ((inst | ~0xF) << 1);
219
220
1.77k
      (*print_func) (stream, "\t%s, 0x%x",
221
1.77k
         grname[(inst >> 4) & 0xF], val);
222
1.77k
    }
223
1.77k
    break;
224
225
12.1k
  case LR:
226
12.1k
    {
227
12.1k
      uint32_t val;
228
229
12.1k
      val = (memaddr + 2 + ((inst & 0xFF) << 2)) & ~3;
230
231
      /* We are not reading an instruction, so allow
232
         reads to extend beyond the next symbol.  */
233
12.1k
      info->stop_vma = 0;
234
12.1k
      status = info->read_memory_func (val, ibytes, 4, info);
235
12.1k
      if (status != 0)
236
1.34k
        {
237
1.34k
    info->memory_error_func (status, memaddr, info);
238
1.34k
    break;
239
1.34k
        }
240
241
10.7k
      if (info->endian == BFD_ENDIAN_LITTLE)
242
10.7k
        val = (((unsigned) ibytes[3] << 24) | (ibytes[2] << 16)
243
10.7k
         | (ibytes[1] << 8) | (ibytes[0]));
244
16
      else
245
16
        val = (((unsigned) ibytes[0] << 24) | (ibytes[1] << 16)
246
16
         | (ibytes[2] << 8) | (ibytes[3]));
247
248
      /* Removed [] around literal value to match ABI syntax 12/95.  */
249
10.7k
      (*print_func) (stream, "\t%s, 0x%X", grname[(inst >> 8) & 0xF], val);
250
251
10.7k
      if (val == 0)
252
1.04k
        (*print_func) (stream, "\t// from address pool at 0x%x",
253
1.04k
           (uint32_t) (memaddr + 2
254
1.04k
           + ((inst & 0xFF) << 2)) & ~3);
255
10.7k
    }
256
0
    break;
257
258
2.73k
  case LJ:
259
2.73k
    {
260
2.73k
      uint32_t val;
261
262
2.73k
      val = (memaddr + 2 + ((inst & 0xFF) << 2)) & ~3;
263
264
      /* We are not reading an instruction, so allow
265
         reads to extend beyond the next symbol.  */
266
2.73k
      info->stop_vma = 0;
267
2.73k
      status = info->read_memory_func (val, ibytes, 4, info);
268
2.73k
      if (status != 0)
269
440
        {
270
440
    info->memory_error_func (status, memaddr, info);
271
440
    break;
272
440
        }
273
274
2.29k
      if (info->endian == BFD_ENDIAN_LITTLE)
275
2.29k
        val = (((unsigned) ibytes[3] << 24) | (ibytes[2] << 16)
276
2.29k
         | (ibytes[1] << 8) | (ibytes[0]));
277
7
      else
278
7
        val = (((unsigned) ibytes[0] << 24) | (ibytes[1] << 16)
279
7
         | (ibytes[2] << 8) | (ibytes[3]));
280
281
      /* Removed [] around literal value to match ABI syntax 12/95.  */
282
2.29k
      (*print_func) (stream, "\t0x%X", val);
283
      /* For jmpi/jsri, we'll try to get a symbol for the target.  */
284
2.29k
      if (info->print_address_func && val != 0)
285
2.10k
        {
286
2.10k
    (*print_func) (stream, "\t// ");
287
2.10k
    info->print_address_func (val, info);
288
2.10k
        }
289
198
      else
290
198
        {
291
198
    (*print_func) (stream, "\t// from address pool at 0x%x",
292
198
             (uint32_t) (memaddr + 2
293
198
             + ((inst & 0xFF) << 2)) & ~3);
294
198
        }
295
2.29k
    }
296
0
    break;
297
298
0
  case OPSR:
299
0
    {
300
0
      static char *fields[] = {
301
0
        "af", "ie",    "fe",    "fe,ie",
302
0
        "ee", "ee,ie", "ee,fe", "ee,fe,ie"
303
0
      };
304
305
0
      (*print_func) (stream, "\t%s", fields[inst & 0x7]);
306
0
    }
307
0
    break;
308
309
671
  default:
310
    /* If the disassembler lags the instruction set.  */
311
671
    (*print_func) (stream, "\tundecoded operands, inst is 0x%04x", inst);
312
671
    break;
313
234k
  }
314
234k
    }
315
316
  /* Say how many bytes we consumed.  */
317
270k
  return 2;
318
270k
}