Lines Matching defs:encoder
662 const ArmEncodingMap *encoder = &EncodingMap[opcode];
665 uint32_t bits = opcode_is_wide ? encoder->xskeleton : encoder->wskeleton;
666 DCHECK(!opcode_is_wide || IS_WIDE(encoder->opcode));
669 ArmEncodingKind kind = encoder->field_loc[i].kind;
714 LOG(FATAL) << "Bad fmt for arg n. " << i << " of " << encoder->name
749 LOG(FATAL) << "Bad argument n. " << i << " of " << encoder->name
750 << "(" << UNWIDE(encoder->opcode) << ", " << encoder->fmt << ")"
753 LOG(WARNING) << "Bad argument n. " << i << " of " << encoder->name
767 value = (operand << encoder->field_loc[i].start) &
768 ((1 << (encoder->field_loc[i].end + 1)) - 1);
791 LOG(FATAL) << "Bad fmt for arg. " << i << " in " << encoder->name
797 DCHECK_EQ(encoder->size, 4);