Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/FileCheck/
H A DFileCheck.cpp157 const APInt &RightOperand, bool &Overflow) { in exprAdd() argument
158 return LeftOperand.sadd_ov(RightOperand, Overflow); in exprAdd()
162 const APInt &RightOperand, bool &Overflow) { in exprSub() argument
163 return LeftOperand.ssub_ov(RightOperand, Overflow); in exprSub()
167 const APInt &RightOperand, bool &Overflow) { in exprMul() argument
168 return LeftOperand.smul_ov(RightOperand, Overflow); in exprMul()
174 if (RightOperand.isZero()) in exprDiv()
177 return LeftOperand.sdiv_ov(RightOperand, Overflow); in exprDiv()
183 return LeftOperand.slt(RightOperand) ? RightOperand : LeftOperand; in exprMax()
190 return RightOperand; in exprMin()
[all …]
H A DFileCheckImpl.h308 std::unique_ptr<ExpressionAST> RightOperand; variable
319 RightOperand = std::move(RightOp); in BinaryOperation()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DLegalizerHelper.cpp2265 auto RightOperand = MIRBuilder.buildInstr(ExtOp, {WideTy}, {RHS}); in widenScalarMulo() local
2277 {LeftOperand, RightOperand}); in widenScalarMulo()
2279 Mulo = MIRBuilder.buildInstr(MulOpc, {WideTy}, {LeftOperand, RightOperand}); in widenScalarMulo()