Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/FileCheck/
H A DFileCheckImpl.h311 binop_eval_t EvalBinop; in NumericVariableUse()
314 BinaryOperation(StringRef ExpressionStr, binop_eval_t EvalBinop,
317 : ExpressionAST(ExpressionStr), EvalBinop(EvalBinop) {
323 /// using EvalBinop on the result of recursively evaluating the operands.
337 binop_eval_t EvalBinop; global() variable
340 BinaryOperation(StringRef ExpressionStr,binop_eval_t EvalBinop,std::unique_ptr<ExpressionAST> LeftOp,std::unique_ptr<ExpressionAST> RightOp) BinaryOperation() argument
H A DFileCheck.cpp228 Expected<APInt> MaybeResult = EvalBinop(LeftOp, RightOp, Overflow); in eval()
509 binop_eval_t EvalBinop; in parseBinop() local
512 EvalBinop = exprAdd; in parseBinop()
515 EvalBinop = exprSub; in parseBinop()
537 return std::make_unique<BinaryOperation>(Expr, EvalBinop, std::move(LeftOp), in parseBinop()