Searched refs:iword (Results 1 – 4 of 4) sorted by relevance
/toolchain/binutils/binutils-2.27/opcodes/ |
D | ft32-dis.c | 41 unsigned int iword; in print_insn_ft32() local 49 iword = bfd_getl32 (buffer); in print_insn_ft32() 52 if ((iword & oo->mask) == oo->bits) in print_insn_ft32() 60 fpr (stream, "%08x %s", iword, oo->name); in print_insn_ft32() 63 fpr (stream, ".%c ", "bsl"[(iword >> FT32_FLD_DW_BIT) & 3]); in print_insn_ft32() 79 imm = ((iword >> FT32_FLD_CB_BIT) & ((1 << FT32_FLD_CB_SIZ) - 1)) << 4; in print_insn_ft32() 80 imm |= ((iword >> FT32_FLD_CV_BIT) & ((1 << FT32_FLD_CV_SIZ) - 1)); in print_insn_ft32() 101 imm = (iword >> FT32_FLD_CB_BIT) & ((1 << FT32_FLD_CB_SIZ) - 1); in print_insn_ft32() 105 fpr(stream, "$r%d", (iword >> FT32_FLD_R_D_BIT) & 0x1f); in print_insn_ft32() 108 imm = (iword >> FT32_FLD_CR_BIT) & ((1 << FT32_FLD_CR_SIZ) - 1); in print_insn_ft32() [all …]
|
D | moxie-dis.c | 50 unsigned short iword; in print_insn_moxie() local 57 iword = bfd_getb16 (buffer); in print_insn_moxie() 59 iword = bfd_getl16 (buffer); in print_insn_moxie() 62 if ((iword & (1<<15)) == 0) in print_insn_moxie() 65 opcode = &moxie_form1_opc_info[iword >> 8]; in print_insn_moxie() 73 reg_names[OP_A(iword)]); in print_insn_moxie() 77 reg_names[OP_A(iword)], in print_insn_moxie() 78 reg_names[OP_B(iword)]); in print_insn_moxie() 90 reg_names[OP_A(iword)], imm); in print_insn_moxie() 123 reg_names[OP_A(iword)], reg_names[OP_B(iword)]); in print_insn_moxie() [all …]
|
/toolchain/binutils/binutils-2.27/gas/config/ |
D | tc-moxie.c | 163 unsigned short iword = 0; in md_assemble() local 197 iword = (1<<15) | (opcode->opcode << 12); in md_assemble() 204 iword += (reg << 8); in md_assemble() 218 iword = opcode->opcode << 8; in md_assemble() 228 iword += (dest << 4) + src; in md_assemble() 236 iword = opcode->opcode << 8; in md_assemble() 248 iword += (regnum << 4); in md_assemble() 270 iword = opcode->opcode << 8; in md_assemble() 288 iword = opcode->opcode << 8; in md_assemble() 295 iword = opcode->opcode << 8; in md_assemble() [all …]
|
/toolchain/binutils/binutils-2.27/gas/ |
D | ChangeLog-9295 | 1581 iword rather than expr8 and expr16. When recognizing 'M', use
|