Home | History | Annotate | Download | only in arm

Lines Matching refs:reg_num

1141                 uint32_t reg_num = RegStorage::RegNum(operand);
1143 value = ((reg_num & 0x10) >> 4) << encoder->field_loc[i].end;
1145 value |= (reg_num & 0x0f) << encoder->field_loc[i].start;
1151 uint32_t reg_num = RegStorage::RegNum(operand);
1153 value = (reg_num & 0x1) << encoder->field_loc[i].end;
1155 value |= ((reg_num & 0x1e) >> 1) << encoder->field_loc[i].start;