reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
5898 AsmRewriteKind Kind = AR.Kind; 5900 const char *Loc = AR.Loc.getPointer(); 5909 AsmStart = Loc + AR.Len; 5919 assert(AR.IntelExp.isValid() && "cannot write invalid intel expression"); 5920 if (AR.IntelExp.NeedBracs) 5922 if (AR.IntelExp.hasBaseReg()) 5923 OS << AR.IntelExp.BaseReg; 5924 if (AR.IntelExp.hasIndexReg()) 5925 OS << (AR.IntelExp.hasBaseReg() ? " + " : "") 5926 << AR.IntelExp.IndexReg; 5927 if (AR.IntelExp.Scale > 1) 5928 OS << " * $$" << AR.IntelExp.Scale; 5929 if (AR.IntelExp.Imm || !AR.IntelExp.hasRegs()) 5929 if (AR.IntelExp.Imm || !AR.IntelExp.hasRegs()) 5930 OS << (AR.IntelExp.hasRegs() ? " + $$" : "$$") << AR.IntelExp.Imm; 5930 OS << (AR.IntelExp.hasRegs() ? " + $$" : "$$") << AR.IntelExp.Imm; 5931 if (AR.IntelExp.NeedBracs) 5935 OS << Ctx.getAsmInfo()->getPrivateLabelPrefix() << AR.Label; 5944 switch (AR.Val) { 5967 unsigned Val = AR.Val; 5982 AsmStart = Loc + AR.Len + AdditionalSkip;