Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/FileCheck/
H A DFileCheck.cpp156 const APInt &RightOperand, bool &Overflow) { in exprAdd() argument
157 return LeftOperand.sadd_ov(RightOperand, Overflow); in exprAdd()
161 const APInt &RightOperand, bool &Overflow) { in exprSub() argument
162 return LeftOperand.ssub_ov(RightOperand, Overflow); in exprSub()
166 const APInt &RightOperand, bool &Overflow) { in exprMul() argument
167 return LeftOperand.smul_ov(RightOperand, Overflow); in exprMul()
171 const APInt &RightOperand, bool &Overflow) { in exprDiv() argument
173 if (RightOperand.isZero()) in exprDiv()
176 return LeftOperand.sdiv_ov(RightOperand, Overflow); in exprDiv()
180 const APInt &RightOperand, bool &Overflow) { in exprMax() argument
[all …]
H A DFileCheckImpl.h314 std::unique_ptr<ExpressionAST> RightOperand; variable
325 RightOperand = std::move(RightOp); in BinaryOperation()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DLegalizerHelper.cpp2627 auto RightOperand = MIRBuilder.buildInstr(ExtOp, {WideTy}, {RHS}); in widenScalarMulo() local
2639 {LeftOperand, RightOperand}); in widenScalarMulo()
2641 Mulo = MIRBuilder.buildInstr(MulOpc, {WideTy}, {LeftOperand, RightOperand}); in widenScalarMulo()