case MachineOperand::MO_ConstantPoolIndex:
case MachineOperand::MO_GlobalAddress:
case MachineOperand::MO_ExternalSymbol: {
- bool isMemOp = Modifier && !strcmp(Modifier, "mem");
- if (!isMemOp) O << '$';
-
+ O << '$';
printSymbolOperand(MO);
break;
}
} else {
assert(DispSpec.isGlobal() || DispSpec.isCPI() ||
DispSpec.isJTI() || DispSpec.isSymbol());
- printOperand(MI, Op+3, "mem");
+ printSymbolOperand(MI->getOperand(Op+3));
}
if (HasParenPart) {
if (ExtraCode && ExtraCode[0]) {
if (ExtraCode[1] != 0) return true; // Unknown modifier.
+ const MachineOperand &MO = MI->getOperand(OpNo);
+
switch (ExtraCode[0]) {
default: return true; // Unknown modifier.
case 'c': // Don't print "$" before a global var name or constant.
- if (MI->getOperand(OpNo).isImm())
- O << MI->getOperand(OpNo).getImm();
+ if (MO.isImm())
+ O << MO.getImm();
+ else if (MO.isGlobal() || MO.isCPI() || MO.isJTI() || MO.isSymbol())
+ printSymbolOperand(MO);
else
- printOperand(MI, OpNo, "mem");
+ printOperand(MI, OpNo);
return false;
case 'A': // Print '*' before a register (it must be a register)
- if (MI->getOperand(OpNo).isReg()) {
+ if (MO.isReg()) {
O << '*';
printOperand(MI, OpNo);
return false;
case 'w': // Print HImode register
case 'k': // Print SImode register
case 'q': // Print DImode register
- if (MI->getOperand(OpNo).isReg())
- return printAsmMRegister(MI->getOperand(OpNo), ExtraCode[0]);
+ if (MO.isReg())
+ return printAsmMRegister(MO, ExtraCode[0]);
printOperand(MI, OpNo);
return false;
print_pcrel_imm(MI, OpNo);
return false;
- case 'n': { // Negate the immediate or print a '-' before the operand.
+ case 'n': // Negate the immediate or print a '-' before the operand.
// Note: this is a temporary solution. It should be handled target
// independently as part of the 'MC' work.
- const MachineOperand &MO = MI->getOperand(OpNo);
if (MO.isImm()) {
O << -MO.getImm();
return false;
}
O << '-';
}
- }
}
printOperand(MI, OpNo);