Home | History | Annotate | Download | only in arm64

Lines Matching defs:reg_type

1326   char reg_type;
1329 reg_type = instr->SixtyFourBits() ? 'x' : 'w';
1332 reg_type = ((instr->FPType() & 1) == 0) ? 's' : 'd';
1335 reg_type = format[0] + 0x20;
1338 if ((reg_num != kZeroRegCode) || (reg_type == 's') || (reg_type == 'd')) {
1342 if ((reg_type == 'x') && (reg_num == 27)) {
1344 } else if ((reg_type == 'x') && (reg_num == 28)) {
1346 } else if ((reg_type == 'x') && (reg_num == 29)) {
1348 } else if ((reg_type == 'x') && (reg_num == 30)) {
1351 AppendToOutput("%c%d", reg_type, reg_num);
1355 AppendToOutput("%s", (reg_type == 'w') ? "wcsp" : "csp");
1358 AppendToOutput("%czr", reg_type);
1658 char reg_type = ((ext == UXTW) || (ext == SXTW)) ? 'w' : 'x';
1662 AppendToOutput("%czr", reg_type);
1664 AppendToOutput("%c%d", reg_type, rm);