Coverage Report

Created: 2026-07-12 09:22

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/binutils-gdb/opcodes/tilepro-dis.c
Line
Count
Source
1
/* tilepro-dis.c.  Disassembly routines for the TILEPro architecture.
2
   Copyright (C) 2011-2026 Free Software Foundation, Inc.
3
4
   This file is part of the GNU opcodes library.
5
6
   This program 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 of the License, or
9
   (at your option) any later version.
10
11
   This program is distributed in the hope that it will be useful,
12
   but WITHOUT ANY WARRANTY; without even the implied warranty of
13
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
   GNU General Public 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 <stddef.h>
23
#include <assert.h>
24
#include "bfd.h"
25
#include "elf/tilepro.h"
26
#include "elf-bfd.h"
27
#include "disassemble.h"
28
#include "opcode/tilepro.h"
29
30
31
2.66k
#define TREG_ZERO 63
32
33
static int
34
contains_insn (tilepro_mnemonic expected_mnemonic,
35
         int expected_first_operand,
36
         int expected_second_operand,
37
         bfd_vma memaddr,
38
         int *last_operand_ret,
39
         disassemble_info *info)
40
6.20k
{
41
6.20k
  struct tilepro_decoded_instruction
42
6.20k
    decoded[TILEPRO_MAX_INSTRUCTIONS_PER_BUNDLE];
43
6.20k
  bfd_byte opbuf[TILEPRO_BUNDLE_SIZE_IN_BYTES];
44
6.20k
  int i, num_instructions;
45
46
6.20k
  if ((*info->read_memory_func) (memaddr, opbuf,
47
6.20k
         TILEPRO_BUNDLE_SIZE_IN_BYTES, info) != 0)
48
    /* If we cannot even read the memory, it obviously does not have the
49
       instruction for which we are looking. */
50
4.48k
    return 0;
51
52
  /* Parse the instructions in the bundle. */
53
1.71k
  num_instructions = parse_insn_tilepro (bfd_getl64 (opbuf), memaddr, decoded);
54
55
5.43k
  for (i = 0; i < num_instructions; i++)
56
3.71k
    {
57
3.71k
      const struct tilepro_opcode *opcode = decoded[i].opcode;
58
59
3.71k
      if (opcode->mnemonic != expected_mnemonic)
60
3.52k
  continue;
61
62
195
      if (expected_first_operand != -1
63
195
    && decoded[i].operand_values[0] != expected_first_operand)
64
168
  continue;
65
66
27
      if (expected_second_operand != -1
67
27
    && decoded[i].operand_values[1] != expected_second_operand)
68
27
  continue;
69
70
0
      *last_operand_ret = decoded[i].operand_values[opcode->num_operands - 1];
71
0
      return 1;
72
27
    }
73
74
  /* No match. */
75
1.71k
  return 0;
76
1.71k
}
77
78
79
int
80
print_insn_tilepro (bfd_vma memaddr, disassemble_info *info)
81
38.0k
{
82
38.0k
  struct tilepro_decoded_instruction
83
38.0k
    decoded[TILEPRO_MAX_INSTRUCTIONS_PER_BUNDLE];
84
38.0k
  bfd_byte opbuf[TILEPRO_BUNDLE_SIZE_IN_BYTES];
85
38.0k
  int status, i, num_instructions, num_printed;
86
38.0k
  tilepro_mnemonic padding_mnemonic;
87
88
38.0k
  status = (*info->read_memory_func) (memaddr, opbuf,
89
38.0k
                                      TILEPRO_BUNDLE_SIZE_IN_BYTES, info);
90
38.0k
  if (status != 0)
91
145
    {
92
145
      (*info->memory_error_func) (status, memaddr, info);
93
145
      return -1;
94
145
    }
95
96
37.9k
  info->bytes_per_line = TILEPRO_BUNDLE_SIZE_IN_BYTES;
97
37.9k
  info->bytes_per_chunk = TILEPRO_BUNDLE_SIZE_IN_BYTES;
98
37.9k
  info->octets_per_byte = 1;
99
37.9k
  info->display_endian = BFD_ENDIAN_LITTLE;
100
101
  /* Parse the instructions in the bundle.  */
102
37.9k
  num_instructions = parse_insn_tilepro (bfd_getl64 (opbuf), memaddr, decoded);
103
104
  /* Print the instructions in the bundle.  */
105
37.9k
  info->fprintf_func (info->stream, "{ ");
106
37.9k
  num_printed = 0;
107
108
  /* Determine which nop opcode is used for padding and should be skipped.  */
109
37.9k
  padding_mnemonic = TILEPRO_OPC_FNOP;
110
79.8k
  for (i = 0; i < num_instructions; i++)
111
67.0k
    {
112
67.0k
      if (!decoded[i].opcode->can_bundle)
113
25.1k
  {
114
    /* Instructions that cannot be bundled are padded out with nops,
115
       rather than fnops. Displaying them is always clutter.  */
116
25.1k
    padding_mnemonic = TILEPRO_OPC_NOP;
117
25.1k
    break;
118
25.1k
  }
119
67.0k
    }
120
121
126k
  for (i = 0; i < num_instructions; i++)
122
88.7k
    {
123
88.7k
      const struct tilepro_opcode *opcode = decoded[i].opcode;
124
88.7k
      const char *name;
125
88.7k
      int j;
126
127
      /* Do not print out fnops, unless everything is an fnop, in
128
   which case we will print out just the last one.  */
129
88.7k
      if (opcode->mnemonic == padding_mnemonic
130
89
    && (num_printed > 0 || i + 1 < num_instructions))
131
89
  continue;
132
133
88.6k
      if (num_printed > 0)
134
50.6k
  info->fprintf_func (info->stream, " ; ");
135
88.6k
      ++num_printed;
136
137
88.6k
      name = opcode->name;
138
88.6k
      if (name == NULL)
139
34.5k
  name = "<invalid>";
140
88.6k
      info->fprintf_func (info->stream, "%s", name);
141
142
234k
      for (j = 0; j < opcode->num_operands; j++)
143
146k
  {
144
146k
    int num;
145
146k
    const struct tilepro_operand *op;
146
146k
    const char *spr_name;
147
148
146k
    if (j > 0)
149
92.2k
      info->fprintf_func (info->stream, ",");
150
146k
    info->fprintf_func (info->stream, " ");
151
152
146k
    num = decoded[i].operand_values[j];
153
154
146k
    op = decoded[i].operands[j];
155
146k
    switch (op->type)
156
146k
      {
157
111k
      case TILEPRO_OP_TYPE_REGISTER:
158
111k
        info->fprintf_func (info->stream, "%s",
159
111k
          tilepro_register_names[num]);
160
111k
        break;
161
162
253
      case TILEPRO_OP_TYPE_SPR:
163
253
        spr_name = get_tilepro_spr_name(num);
164
253
        if (spr_name != NULL)
165
80
    info->fprintf_func (info->stream, "%s", spr_name);
166
173
        else
167
173
    info->fprintf_func (info->stream, "%d", num);
168
253
        break;
169
170
28.9k
      case TILEPRO_OP_TYPE_IMMEDIATE:
171
28.9k
        {
172
28.9k
    bfd_vma addr = 0;
173
28.9k
    int found_addr = 0;
174
28.9k
    int addr_piece;
175
176
28.9k
    switch (opcode->mnemonic)
177
28.9k
      {
178
2.66k
      case TILEPRO_OPC_ADDLI:
179
2.66k
        if (contains_insn (TILEPRO_OPC_AULI,
180
2.66k
               decoded[i].operand_values[1],
181
2.66k
               TREG_ZERO,
182
2.66k
               memaddr - TILEPRO_BUNDLE_SIZE_IN_BYTES,
183
2.66k
               &addr_piece,
184
2.66k
               info))
185
0
          {
186
0
      addr = num + (addr_piece << 16);
187
0
      found_addr = 1;
188
0
          }
189
2.66k
        break;
190
191
3.53k
      case TILEPRO_OPC_AULI:
192
3.53k
        if (contains_insn (TILEPRO_OPC_MOVELI,
193
3.53k
               decoded[i].operand_values[1],
194
3.53k
               -1,
195
3.53k
               memaddr - TILEPRO_BUNDLE_SIZE_IN_BYTES,
196
3.53k
               &addr_piece,
197
3.53k
               info))
198
0
          {
199
0
      addr = (num << 16) + addr_piece;
200
0
      found_addr = 1;
201
0
          }
202
3.53k
        break;
203
204
22.7k
      default:
205
        /* Operand does not look like a constructed address.  */
206
22.7k
        break;
207
28.9k
      }
208
209
28.9k
    info->fprintf_func (info->stream, "%d", num);
210
211
28.9k
    if (found_addr)
212
0
      {
213
0
        info->fprintf_func (info->stream, " /* ");
214
0
        info->print_address_func (addr, info);
215
0
        info->fprintf_func (info->stream, " */");
216
0
      }
217
28.9k
        }
218
0
        break;
219
220
5.75k
      case TILEPRO_OP_TYPE_ADDRESS:
221
5.75k
        info->print_address_func ((bfd_vma)(unsigned int) num, info);
222
5.75k
        break;
223
224
0
      default:
225
0
        abort ();
226
146k
      }
227
146k
  }
228
88.6k
    }
229
37.9k
  info->fprintf_func (info->stream, " }");
230
231
37.9k
  return TILEPRO_BUNDLE_SIZE_IN_BYTES;
232
37.9k
}