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.h102 IntelExpr IntelExp; member
114 : AsmRewrite(AOK_IntelExpr, loc, len) { IntelExp = exp; } in AsmRewrite()
/freebsd/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DAsmParser.cpp6150 assert(AR.IntelExp.isValid() && "cannot write invalid intel expression"); in parseMSInlineAsm()
6151 if (AR.IntelExp.NeedBracs) in parseMSInlineAsm()
6153 if (AR.IntelExp.hasBaseReg()) in parseMSInlineAsm()
6154 OS << AR.IntelExp.BaseReg; in parseMSInlineAsm()
6155 if (AR.IntelExp.hasIndexReg()) in parseMSInlineAsm()
6156 OS << (AR.IntelExp.hasBaseReg() ? " + " : "") in parseMSInlineAsm()
6157 << AR.IntelExp.IndexReg; in parseMSInlineAsm()
6158 if (AR.IntelExp.Scale > 1) in parseMSInlineAsm()
6159 OS << " * $$" << AR.IntelExp.Scale; in parseMSInlineAsm()
6160 if (AR.IntelExp.hasOffset()) { in parseMSInlineAsm()
[all …]
H A DMasmParser.cpp7503 assert(AR.IntelExp.isValid() && "cannot write invalid intel expression"); in parseMSInlineAsm()
7504 if (AR.IntelExp.NeedBracs) in parseMSInlineAsm()
7506 if (AR.IntelExp.hasBaseReg()) in parseMSInlineAsm()
7507 OS << AR.IntelExp.BaseReg; in parseMSInlineAsm()
7508 if (AR.IntelExp.hasIndexReg()) in parseMSInlineAsm()
7509 OS << (AR.IntelExp.hasBaseReg() ? " + " : "") in parseMSInlineAsm()
7510 << AR.IntelExp.IndexReg; in parseMSInlineAsm()
7511 if (AR.IntelExp.Scale > 1) in parseMSInlineAsm()
7512 OS << " * $$" << AR.IntelExp.Scale; in parseMSInlineAsm()
7513 if (AR.IntelExp.hasOffset()) { in parseMSInlineAsm()
[all …]