Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/include/llvm/MC/MCParser/
H A DMCTargetAsmParser.h104 IntelExpr IntelExp; member
116 : AsmRewrite(AOK_IntelExpr, loc, len) { IntelExp = exp; } in AsmRewrite()
/openbsd-src/gnu/llvm/llvm/lib/MC/MCParser/
H A DAsmParser.cpp6131 assert(AR.IntelExp.isValid() && "cannot write invalid intel expression"); in parseMSInlineAsm()
6132 if (AR.IntelExp.NeedBracs) in parseMSInlineAsm()
6134 if (AR.IntelExp.hasBaseReg()) in parseMSInlineAsm()
6135 OS << AR.IntelExp.BaseReg; in parseMSInlineAsm()
6136 if (AR.IntelExp.hasIndexReg()) in parseMSInlineAsm()
6137 OS << (AR.IntelExp.hasBaseReg() ? " + " : "") in parseMSInlineAsm()
6138 << AR.IntelExp.IndexReg; in parseMSInlineAsm()
6139 if (AR.IntelExp.Scale > 1) in parseMSInlineAsm()
6140 OS << " * $$" << AR.IntelExp.Scale; in parseMSInlineAsm()
6141 if (AR.IntelExp.hasOffset()) { in parseMSInlineAsm()
[all …]
H A DMasmParser.cpp7535 assert(AR.IntelExp.isValid() && "cannot write invalid intel expression"); in parseMSInlineAsm()
7536 if (AR.IntelExp.NeedBracs) in parseMSInlineAsm()
7538 if (AR.IntelExp.hasBaseReg()) in parseMSInlineAsm()
7539 OS << AR.IntelExp.BaseReg; in parseMSInlineAsm()
7540 if (AR.IntelExp.hasIndexReg()) in parseMSInlineAsm()
7541 OS << (AR.IntelExp.hasBaseReg() ? " + " : "") in parseMSInlineAsm()
7542 << AR.IntelExp.IndexReg; in parseMSInlineAsm()
7543 if (AR.IntelExp.Scale > 1) in parseMSInlineAsm()
7544 OS << " * $$" << AR.IntelExp.Scale; in parseMSInlineAsm()
7545 if (AR.IntelExp.hasOffset()) { in parseMSInlineAsm()
[all …]