Home
last modified time | relevance | path

Searched refs:parseBinOpRHS (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DAsmParser.cpp358 bool parseBinOpRHS(unsigned Precedence, const MCExpr *&Res, SMLoc &EndLoc);
1463 if (TS.parsePrimaryExpr(Res, EndLoc) || parseBinOpRHS(1, Res, EndLoc)) in parseExpression()
1498 return parseParenExpr(Res, EndLoc) || parseBinOpRHS(1, Res, EndLoc); in parseParenExpression()
1682 bool AsmParser::parseBinOpRHS(unsigned Precedence, const MCExpr *&Res, in parseBinOpRHS() function in AsmParser
1705 if (TokPrec < NextTokPrec && parseBinOpRHS(TokPrec + 1, RHS, EndLoc)) in parseBinOpRHS()
H A DMasmParser.cpp633 bool parseBinOpRHS(unsigned Precedence, const MCExpr *&Res, SMLoc &EndLoc);
1644 parseBinOpRHS(1, Res, EndLoc)) in parseExpression()
1658 return parseParenExpr(Res, EndLoc) || parseBinOpRHS(1, Res, EndLoc); in parseParenExpression()
1762 bool MasmParser::parseBinOpRHS(unsigned Precedence, const MCExpr *&Res, in parseBinOpRHS() function in MasmParser
1802 if (TokPrec < NextTokPrec && parseBinOpRHS(TokPrec + 1, RHS, EndLoc)) in parseBinOpRHS()