Lines Matching defs:os
53 MemoryReg::printOffset(std::ostream &os) const
56 os << "-";
57 printIntReg(os, index);
61 ccprintf(os, " LSL #%d", shiftAmt);
64 ccprintf(os, " LSR #%d", (shiftAmt == 0) ? 32 : shiftAmt);
67 ccprintf(os, " ASR #%d", (shiftAmt == 0) ? 32 : shiftAmt);
71 ccprintf(os, " RRX");
73 ccprintf(os, " ROR #%d", shiftAmt);
164 Memory::printInst(std::ostream &os, AddrMode addrMode) const
166 printMnemonic(os);
167 printDest(os);
168 os << ", [";
169 printIntReg(os, base);
171 os << ", ";
172 printOffset(os);
173 os << "]";
175 os << "!";
178 os << "] ";
179 printOffset(os);