1 /* Disassemble ft32 instructions.
2 Copyright (C) 2013-2017 Free Software Foundation, Inc.
3 Contributed by FTDI (support@ftdichip.com)
5 This file is part of the GNU opcodes library.
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)
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.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
20 MA 02110-1301, USA. */
27 #include "opcode/ft32.h"
28 #include "disassemble.h"
30 extern const ft32_opc_info_t ft32_opc_info[128];
32 static fprintf_ftype fpr;
36 sign_extend(int bit, int value)
38 int onebit = (1 << bit);
39 return (value & (onebit - 1)) - (value & onebit);
43 ft32_opcode(bfd_vma addr ATTRIBUTE_UNUSED,
45 struct disassemble_info *info)
47 const ft32_opc_info_t *oo;
49 for (oo = ft32_opc_info; oo->name; oo++)
50 if ((iword & oo->mask) == oo->bits)
54 if (ft32_decode_shortcode((unsigned int)addr, iword, sc))
56 ft32_opcode(addr, sc[0], info);
58 ft32_opcode(addr, sc[1], info);
66 fpr (stream, "%s", oo->name);
69 fpr (stream, ".%c ", "bsl"[(iword >> FT32_FLD_DW_BIT) & 3]);
85 imm = ((iword >> FT32_FLD_CB_BIT) & ((1 << FT32_FLD_CB_SIZ) - 1)) << 4;
86 imm |= ((iword >> FT32_FLD_CV_BIT) & ((1 << FT32_FLD_CV_SIZ) - 1));
89 case 0x00: fpr(stream, "nz"); break;
90 case 0x01: fpr(stream, "z"); break;
91 case 0x10: fpr(stream, "ae"); break;
92 case 0x11: fpr(stream, "b"); break;
93 case 0x20: fpr(stream, "no"); break;
94 case 0x21: fpr(stream, "o"); break;
95 case 0x30: fpr(stream, "ns"); break;
96 case 0x31: fpr(stream, "s"); break;
97 case 0x40: fpr(stream, "lt"); break;
98 case 0x41: fpr(stream, "gte"); break;
99 case 0x50: fpr(stream, "lte"); break;
100 case 0x51: fpr(stream, "gt"); break;
101 case 0x60: fpr(stream, "be"); break;
102 case 0x61: fpr(stream, "a"); break;
103 default: fpr(stream, "%d,$r30,%d", (imm >> 4), (imm & 1)); break;
107 imm = (iword >> FT32_FLD_CB_BIT) & ((1 << FT32_FLD_CB_SIZ) - 1);
108 fpr(stream, "%d", imm);
111 fpr(stream, "$r%d", (iword >> FT32_FLD_R_D_BIT) & 0x1f);
114 imm = (iword >> FT32_FLD_CR_BIT) & ((1 << FT32_FLD_CR_SIZ) - 1);
115 fpr(stream, "$r%d", 28 + imm);
118 imm = (iword >> FT32_FLD_CV_BIT) & ((1 << FT32_FLD_CV_SIZ) - 1);
119 fpr(stream, "%d", imm);
122 fpr(stream, "$r%d", (iword >> FT32_FLD_R_1_BIT) & 0x1f);
125 imm = (iword >> FT32_FLD_RIMM_BIT) & ((1 << FT32_FLD_RIMM_SIZ) - 1);
127 fpr(stream, "%d", sign_extend(9, imm));
129 fpr(stream, "$r%d", imm & 0x1f);
132 fpr(stream, "$r%d", (iword >> FT32_FLD_R_2_BIT) & 0x1f);
135 imm = iword & ((1 << FT32_FLD_K20_SIZ) - 1);
136 fpr(stream, "%d", sign_extend(19, imm));
139 imm = (iword & ((1 << FT32_FLD_PA_SIZ) - 1)) << 2;
140 info->print_address_func ((bfd_vma) imm, info);
143 imm = iword & ((1 << FT32_FLD_AA_SIZ) - 1);
144 info->print_address_func ((1 << 23) | (bfd_vma) imm, info);
147 imm = iword & ((1 << FT32_FLD_K16_SIZ) - 1);
148 fpr(stream, "%d", imm);
151 imm = iword & ((1 << FT32_FLD_K15_SIZ) - 1);
152 fpr(stream, "%d", sign_extend(14, imm));
154 case FT32_FLD_R_D_POST:
155 fpr(stream, "$r%d", (iword >> FT32_FLD_R_D_BIT) & 0x1f);
157 case FT32_FLD_R_1_POST:
158 fpr(stream, "$r%d", (iword >> FT32_FLD_R_1_BIT) & 0x1f);
178 print_insn_ft32 (bfd_vma addr, struct disassemble_info *info)
181 stream = info->stream;
185 fpr = info->fprintf_func;
187 if ((status = info->read_memory_func (addr, buffer, 4, info)))
190 iword = bfd_getl32 (buffer);
192 fpr (stream, "%08x ", iword);
194 ft32_opcode(addr, iword, info);
199 info->memory_error_func (status, addr, info);