Home | History | Annotate | Download | only in a64

Lines Matching defs:reg_type

1332   char reg_type;
1335 reg_type = instr->SixtyFourBits() ? 'x' : 'w';
1338 reg_type = ((instr->FPType() & 1) == 0) ? 's' : 'd';
1341 reg_type = format[0] + 0x20;
1344 if ((reg_num != kZeroRegCode) || (reg_type == 's') || (reg_type == 'd')) {
1346 AppendToOutput("%c%d", reg_type, reg_num);
1349 AppendToOutput("%s", (reg_type == 'w') ? "wsp" : "sp");
1352 AppendToOutput("%czr", reg_type);
1650 char reg_type = ((ext == UXTW) || (ext == SXTW)) ? 'w' : 'x';
1654 AppendToOutput("%czr", reg_type);
1656 AppendToOutput("%c%d", reg_type, rm);