Home
last modified time | relevance | path

Searched refs:IntelExp (Results 1 – 3 of 3) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/MC/MCParser/
H A DMCTargetAsmParser.h102 IntelExpr IntelExp; member
110 : AsmRewrite(AOK_IntelExpr, loc, len) { IntelExp = exp; } in AsmRewrite()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
H A DAsmParser.cpp6073 assert(AR.IntelExp.isValid() && "cannot write invalid intel expression"); in parseMSInlineAsm()
6074 if (AR.IntelExp.NeedBracs) in parseMSInlineAsm()
6076 if (AR.IntelExp.hasBaseReg()) in parseMSInlineAsm()
6077 OS << AR.IntelExp.BaseReg; in parseMSInlineAsm()
6078 if (AR.IntelExp.hasIndexReg()) in parseMSInlineAsm()
6079 OS << (AR.IntelExp.hasBaseReg() ? " + " : "") in parseMSInlineAsm()
6080 << AR.IntelExp.IndexReg; in parseMSInlineAsm()
6081 if (AR.IntelExp.Scale > 1) in parseMSInlineAsm()
6082 OS << " * $$" << AR.IntelExp.Scale; in parseMSInlineAsm()
6083 if (AR.IntelExp.hasOffset()) { in parseMSInlineAsm()
[all …]
H A DMasmParser.cpp7206 assert(AR.IntelExp.isValid() && "cannot write invalid intel expression"); in parseMSInlineAsm()
7207 if (AR.IntelExp.NeedBracs) in parseMSInlineAsm()
7209 if (AR.IntelExp.hasBaseReg()) in parseMSInlineAsm()
7210 OS << AR.IntelExp.BaseReg; in parseMSInlineAsm()
7211 if (AR.IntelExp.hasIndexReg()) in parseMSInlineAsm()
7212 OS << (AR.IntelExp.hasBaseReg() ? " + " : "") in parseMSInlineAsm()
7213 << AR.IntelExp.IndexReg; in parseMSInlineAsm()
7214 if (AR.IntelExp.Scale > 1) in parseMSInlineAsm()
7215 OS << " * $$" << AR.IntelExp.Scale; in parseMSInlineAsm()
7216 if (AR.IntelExp.hasOffset()) { in parseMSInlineAsm()
[all …]