Searched refs:fieldLoc (Results 1 – 3 of 3) sorted by relevance
1077 switch(encoder->fieldLoc[i].kind) { in assembleInstructions()1081 value = ((operand & 0xF0) >> 4) << encoder->fieldLoc[i].end; in assembleInstructions()1082 value |= (operand & 0x0F) << encoder->fieldLoc[i].start; in assembleInstructions()1118 value = (operand << encoder->fieldLoc[i].start) & in assembleInstructions()1119 ((1 << (encoder->fieldLoc[i].end + 1)) - 1); in assembleInstructions()1128 encoder->fieldLoc[i].end; in assembleInstructions()1131 encoder->fieldLoc[i].start; in assembleInstructions()1139 encoder->fieldLoc[i].end; in assembleInstructions()1142 encoder->fieldLoc[i].start; in assembleInstructions()
734 } fieldLoc[4]; member
403 if (EncodingMap[opcode].fieldLoc[2].kind == kFmtShift) in opRegRegShift()