reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/MC/MCParser/AsmParser.cpp
 5905       OS << StringRef(AsmStart, Len);
 5921         OS << "[";
 5923         OS << AR.IntelExp.BaseReg;
 5925         OS << (AR.IntelExp.hasBaseReg() ? " + " : "")
 5928           OS << " * $$" << AR.IntelExp.Scale;
 5930         OS << (AR.IntelExp.hasRegs() ? " + $$" : "$$") << AR.IntelExp.Imm;
 5932         OS << "]";
 5935       OS << Ctx.getAsmInfo()->getPrivateLabelPrefix() << AR.Label;
 5938       OS << '$' << InputIdx++;
 5941       OS << '$' << OutputIdx++;
 5946       case 8:  OS << "byte ptr "; break;
 5947       case 16: OS << "word ptr "; break;
 5948       case 32: OS << "dword ptr "; break;
 5949       case 64: OS << "qword ptr "; break;
 5950       case 80: OS << "xword ptr "; break;
 5951       case 128: OS << "xmmword ptr "; break;
 5952       case 256: OS << "ymmword ptr "; break;
 5956       OS << ".byte";
 5961       OS << ".align";
 5968       OS << ' ' << Val;
 5974       OS << ".even";
 5977       OS << "\n\t";
 5987     OS << StringRef(AsmStart, AsmEnd - AsmStart);
 5989   AsmString = OS.str();