Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/MC/MCParser/
H A DMCTargetAsmParser.h103 IntelExpr IntelExp; member
115 : AsmRewrite(AOK_IntelExpr, loc, len) { IntelExp = exp; } in AsmRewrite()
/freebsd/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DAsmParser.cpp6086 assert(AR.IntelExp.isValid() && "cannot write invalid intel expression"); in parseMSInlineAsm()
6087 if (AR.IntelExp.NeedBracs) in parseMSInlineAsm()
6089 if (AR.IntelExp.hasBaseReg()) in parseMSInlineAsm()
6090 OS << AR.IntelExp.BaseReg; in parseMSInlineAsm()
6091 if (AR.IntelExp.hasIndexReg()) in parseMSInlineAsm()
6092 OS << (AR.IntelExp.hasBaseReg() ? " + " : "") in parseMSInlineAsm()
6093 << AR.IntelExp.IndexReg; in parseMSInlineAsm()
6094 if (AR.IntelExp.Scale > 1) in parseMSInlineAsm()
6095 OS << " * $$" << AR.IntelExp.Scale; in parseMSInlineAsm()
6096 if (AR.IntelExp.hasOffset()) { in parseMSInlineAsm()
[all …]
H A DMasmParser.cpp6039 assert(AR.IntelExp.isValid() && "cannot write invalid intel expression"); in parseMSInlineAsm()
6040 if (AR.IntelExp.NeedBracs) in parseMSInlineAsm()
6042 if (AR.IntelExp.hasBaseReg()) in parseMSInlineAsm()
6043 OS << AR.IntelExp.BaseReg; in parseMSInlineAsm()
6044 if (AR.IntelExp.hasIndexReg()) in parseMSInlineAsm()
6045 OS << (AR.IntelExp.hasBaseReg() ? " + " : "") in parseMSInlineAsm()
6046 << AR.IntelExp.IndexReg; in parseMSInlineAsm()
6047 if (AR.IntelExp.Scale > 1) in parseMSInlineAsm()
6048 OS << " * $$" << AR.IntelExp.Scale; in parseMSInlineAsm()
6049 if (AR.IntelExp.hasOffset()) { in parseMSInlineAsm()
[all …]