Coverage Report

Created: 2026-07-12 09:22

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/binutils-gdb/opcodes/pru-dis.c
Line
Count
Source
1
/* TI PRU disassemble routines
2
   Copyright (C) 2014-2026 Free Software Foundation, Inc.
3
   Contributed by Dimitar Dimitrov <dimitar@dinux.eu>
4
5
   This file is part of the GNU opcodes library.
6
7
   This library is free software; you can redistribute it and/or modify
8
   it under the terms of the GNU General Public License as published by
9
   the Free Software Foundation; either version 3, or (at your option)
10
   any later version.
11
12
   It is distributed in the hope that it will be useful, but WITHOUT
13
   ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14
   or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public
15
   License for more details.
16
17
   You should have received a copy of the GNU General Public License
18
   along with this file; see the file COPYING.  If not, write to the
19
   Free Software Foundation, 51 Franklin Street - Fifth Floor, Boston,
20
   MA 02110-1301, USA.  */
21
22
#include "sysdep.h"
23
#include "disassemble.h"
24
#include "opcode/pru.h"
25
#include "libiberty.h"
26
#include <string.h>
27
#include <assert.h>
28
29
/* No symbol table is available when this code runs out in an embedded
30
   system as when it is used for disassembler support in a monitor.  */
31
#if !defined (EMBEDDED_ENV)
32
#define SYMTAB_AVAILABLE 1
33
#include "elf-bfd.h"
34
#include "elf/pru.h"
35
#endif
36
37
/* Length of PRU instruction in bytes.  */
38
273k
#define INSNLEN 4
39
40
/* Return a pointer to an pru_opcode struct for a given instruction
41
   opcode, or NULL if there is an error.  */
42
const struct pru_opcode *
43
pru_find_opcode (unsigned long opcode)
44
68.4k
{
45
68.4k
  const struct pru_opcode *p;
46
68.4k
  const struct pru_opcode *op = NULL;
47
68.4k
  const struct pru_opcode *pseudo_op = NULL;
48
49
3.89M
  for (p = pru_opcodes; p < &pru_opcodes[NUMOPCODES]; p++)
50
3.83M
    {
51
3.83M
      if ((p->mask & opcode) == p->match)
52
59.3k
  {
53
59.3k
    if ((p->pinfo & PRU_INSN_MACRO) == PRU_INSN_MACRO)
54
185
      pseudo_op = p;
55
59.1k
    else if ((p->pinfo & PRU_INSN_LDI32) == PRU_INSN_LDI32)
56
1.41k
      /* ignore - should be caught with regular patterns */;
57
57.7k
    else
58
57.7k
      op = p;
59
59.3k
  }
60
3.83M
    }
61
62
68.4k
  return pseudo_op ? pseudo_op : op;
63
68.4k
}
64
65
/* There are 32 regular registers, each with 8 possible subfield selectors.  */
66
#define NUMREGNAMES (32 * 8)
67
68
static void
69
pru_print_insn_arg_indreg (unsigned int r, unsigned int sel,
70
         unsigned int mode,
71
         disassemble_info *info)
72
109k
{
73
109k
  const char *fmtstr;
74
109k
  unsigned int i = r * RSEL_NUM_ITEMS + sel;
75
109k
  assert (i < (unsigned int)pru_num_regs);
76
109k
  assert (i < NUMREGNAMES);
77
78
109k
  switch (mode)
79
109k
    {
80
108k
    case MVI_OP_MODE_DIRECT:   fmtstr = "%s"; break;
81
393
    case MVI_OP_MODE_INDIRECT:   fmtstr = "*%s"; break;
82
179
    case MVI_OP_MODE_INDIRECT_POSTINC: fmtstr = "*%s++"; break;
83
83
    case MVI_OP_MODE_INDIRECT_PREDEC: fmtstr = "*--%s"; break;
84
0
    default:        fmtstr = "<invalid>%s"; break;
85
109k
    }
86
109k
  (*info->fprintf_func) (info->stream, fmtstr, pru_regs[i].name);
87
109k
}
88
89
static void
90
pru_print_insn_arg_reg (unsigned int r, unsigned int sel,
91
      disassemble_info *info)
92
108k
{
93
108k
  pru_print_insn_arg_indreg (r, sel, MVI_OP_MODE_DIRECT, info);
94
108k
}
95
96
/* The function pru_print_insn_arg uses the character pointed
97
   to by ARGPTR to determine how it print the next token or separator
98
   character in the arguments to an instruction.  */
99
static int
100
pru_print_insn_arg (const char *argptr,
101
          unsigned long opcode, bfd_vma address,
102
          disassemble_info *info)
103
287k
{
104
287k
  long offs = 0;
105
287k
  unsigned long i = 0;
106
287k
  unsigned long io = 0;
107
108
287k
  switch (*argptr)
109
287k
    {
110
115k
    case ',':
111
115k
      (*info->fprintf_func) (info->stream, "%c ", *argptr);
112
115k
      break;
113
21.2k
    case 'd':
114
21.2k
      pru_print_insn_arg_reg (GET_INSN_FIELD (RD, opcode),
115
21.2k
            GET_INSN_FIELD (RDSEL, opcode),
116
21.2k
            info);
117
21.2k
      break;
118
16.3k
    case 'D':
119
      /* The first 4 values for RDB and RSEL are the same, so we
120
   can reuse some code.  */
121
16.3k
      pru_print_insn_arg_reg (GET_INSN_FIELD (RD, opcode),
122
16.3k
            GET_INSN_FIELD (RDB, opcode),
123
16.3k
            info);
124
16.3k
      break;
125
31.9k
    case 's':
126
31.9k
      pru_print_insn_arg_reg (GET_INSN_FIELD (RS1, opcode),
127
31.9k
            GET_INSN_FIELD (RS1SEL, opcode),
128
31.9k
            info);
129
31.9k
      break;
130
12.1k
    case 'S':
131
12.1k
      pru_print_insn_arg_reg (GET_INSN_FIELD (RS1, opcode),
132
12.1k
            RSEL_31_0,
133
12.1k
            info);
134
12.1k
      break;
135
47.4k
    case 'b':
136
47.4k
      io = GET_INSN_FIELD (IO, opcode);
137
138
47.4k
      if (io)
139
22.2k
  {
140
22.2k
    i = GET_INSN_FIELD (IMM8, opcode);
141
22.2k
    (*info->fprintf_func) (info->stream, "%ld", i);
142
22.2k
  }
143
25.1k
      else
144
25.1k
  {
145
25.1k
  pru_print_insn_arg_reg (GET_INSN_FIELD (RS2, opcode),
146
25.1k
        GET_INSN_FIELD (RS2SEL, opcode),
147
25.1k
        info);
148
25.1k
  }
149
47.4k
      break;
150
1.34k
    case 'B':
151
1.34k
      io = GET_INSN_FIELD (IO, opcode);
152
153
1.34k
      if (io)
154
642
  {
155
642
    i = GET_INSN_FIELD (IMM8, opcode) + 1;
156
642
    (*info->fprintf_func) (info->stream, "%ld", i);
157
642
  }
158
706
      else
159
706
  {
160
706
  pru_print_insn_arg_reg (GET_INSN_FIELD (RS2, opcode),
161
706
        GET_INSN_FIELD (RS2SEL, opcode),
162
706
        info);
163
706
  }
164
1.34k
      break;
165
1.55k
    case 'j':
166
1.55k
      io = GET_INSN_FIELD (IO, opcode);
167
168
1.55k
      if (io)
169
565
  {
170
    /* For the sake of pretty-printing, dump text addresses with
171
       their "virtual" offset that we use for distinguishing
172
       PMEM vs DMEM. This is needed for printing the correct text
173
       labels.  */
174
565
    bfd_vma text_offset = address & ~0x3fffff;
175
565
    i = GET_INSN_FIELD (IMM16, opcode) * 4;
176
565
    (*info->print_address_func) (i + text_offset, info);
177
565
  }
178
989
      else
179
989
  {
180
989
    pru_print_insn_arg_reg (GET_INSN_FIELD (RS2, opcode),
181
989
        GET_INSN_FIELD (RS2SEL, opcode),
182
989
        info);
183
989
  }
184
1.55k
      break;
185
1.41k
    case 'W':
186
1.41k
      i = GET_INSN_FIELD (IMM16, opcode);
187
1.41k
      (*info->fprintf_func) (info->stream, "%ld", i);
188
1.41k
      break;
189
13.5k
    case 'o':
190
13.5k
      offs = GET_BROFF_SIGNED (opcode) * 4;
191
13.5k
      (*info->print_address_func) (address + offs, info);
192
13.5k
      break;
193
1.34k
    case 'O':
194
1.34k
      offs = GET_INSN_FIELD (LOOP_JMPOFFS, opcode) * 4;
195
1.34k
      (*info->print_address_func) (address + offs, info);
196
1.34k
      break;
197
15.6k
    case 'l':
198
15.6k
      i = GET_BURSTLEN (opcode);
199
15.6k
      if (i < LSSBBO_BYTECOUNT_R0_BITS7_0)
200
9.95k
  (*info->fprintf_func) (info->stream, "%ld", i + 1);
201
5.66k
      else
202
5.66k
  {
203
5.66k
    i -= LSSBBO_BYTECOUNT_R0_BITS7_0;
204
5.66k
    (*info->fprintf_func) (info->stream, "r0.b%ld", i);
205
5.66k
  }
206
15.6k
      break;
207
519
    case 'm':
208
519
      pru_print_insn_arg_indreg (GET_INSN_FIELD (RD, opcode),
209
519
         GET_INSN_FIELD (RDSEL, opcode),
210
519
         GET_INSN_FIELD (MVI_RD_MODE, opcode),
211
519
         info);
212
519
      break;
213
519
    case 'M':
214
519
      pru_print_insn_arg_indreg (GET_INSN_FIELD (RS1, opcode),
215
519
         GET_INSN_FIELD (RS1SEL, opcode),
216
519
         GET_INSN_FIELD (MVI_RS1_MODE, opcode),
217
519
         info);
218
519
      break;
219
726
    case 'n':
220
726
      i = GET_INSN_FIELD (XFR_LENGTH, opcode);
221
726
      if (i < LSSBBO_BYTECOUNT_R0_BITS7_0)
222
479
  (*info->fprintf_func) (info->stream, "%ld", i + 1);
223
247
      else
224
247
  {
225
247
    i -= LSSBBO_BYTECOUNT_R0_BITS7_0;
226
247
    (*info->fprintf_func) (info->stream, "r0.b%ld", i);
227
247
  }
228
726
      break;
229
3.47k
    case 'c':
230
3.47k
      i = GET_INSN_FIELD (CB, opcode);
231
3.47k
      (*info->fprintf_func) (info->stream, "%ld", i);
232
3.47k
      break;
233
904
    case 't':
234
904
      i = GET_INSN_FIELD (TSKMGR_MODE, opcode);
235
904
      (*info->fprintf_func) (info->stream, "%ld", i);
236
904
      break;
237
1.56k
    case 'w':
238
1.56k
      i = GET_INSN_FIELD (WAKEONSTATUS, opcode);
239
1.56k
      (*info->fprintf_func) (info->stream, "%ld", i);
240
1.56k
      break;
241
723
    case 'x':
242
723
      i = GET_INSN_FIELD (XFR_WBA, opcode);
243
723
      (*info->fprintf_func) (info->stream, "%ld", i);
244
723
      break;
245
0
    default:
246
0
      (*info->fprintf_func) (info->stream, "unknown");
247
0
      break;
248
287k
    }
249
287k
  return 0;
250
287k
}
251
252
/* pru_disassemble does all the work of disassembling a PRU
253
   instruction opcode.  */
254
static int
255
pru_disassemble (bfd_vma address, unsigned long opcode,
256
       disassemble_info *info)
257
68.4k
{
258
68.4k
  const struct pru_opcode *op;
259
260
68.4k
  info->bytes_per_line = INSNLEN;
261
68.4k
  info->bytes_per_chunk = INSNLEN;
262
68.4k
  info->display_endian = info->endian;
263
68.4k
  info->insn_info_valid = 1;
264
68.4k
  info->branch_delay_insns = 0;
265
68.4k
  info->data_size = 0;
266
68.4k
  info->insn_type = dis_nonbranch;
267
68.4k
  info->target = 0;
268
68.4k
  info->target2 = 0;
269
270
  /* Find the major opcode and use this to disassemble
271
     the instruction and its arguments.  */
272
68.4k
  op = pru_find_opcode (opcode);
273
274
68.4k
  if (op != NULL)
275
57.7k
    {
276
57.7k
      (*info->fprintf_func) (info->stream, "%s", op->name);
277
278
57.7k
      const char *argstr = op->args;
279
57.7k
      if (argstr != NULL && *argstr != '\0')
280
57.0k
  {
281
57.0k
    (*info->fprintf_func) (info->stream, "\t");
282
344k
    while (*argstr != '\0')
283
287k
      {
284
287k
        pru_print_insn_arg (argstr, opcode, address, info);
285
287k
        ++argstr;
286
287k
      }
287
57.0k
  }
288
57.7k
    }
289
10.7k
  else
290
10.7k
    {
291
      /* Handle undefined instructions.  */
292
10.7k
      info->insn_type = dis_noninsn;
293
10.7k
      (*info->fprintf_func) (info->stream, "0x%lx", opcode);
294
10.7k
    }
295
  /* Tell the caller how far to advance the program counter.  */
296
68.4k
  return INSNLEN;
297
68.4k
}
298
299
300
/* print_insn_pru is the main disassemble function for PRU.  */
301
int
302
print_insn_pru (bfd_vma address, disassemble_info *info)
303
68.5k
{
304
68.5k
  bfd_byte buffer[INSNLEN];
305
68.5k
  int status;
306
307
68.5k
  status = (*info->read_memory_func) (address, buffer, INSNLEN, info);
308
68.5k
  if (status == 0)
309
68.4k
    {
310
68.4k
      unsigned long insn;
311
68.4k
      insn = (unsigned long) bfd_getl32 (buffer);
312
68.4k
      status = pru_disassemble (address, insn, info);
313
68.4k
    }
314
96
  else
315
96
    {
316
96
      (*info->memory_error_func) (status, address, info);
317
96
      status = -1;
318
96
    }
319
68.5k
  return status;
320
68.5k
}