Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/FileCheck/
H A DFileCheck.cpp155 Expected<APInt> llvm::exprAdd(const APInt &LeftOperand, in exprAdd() argument
157 return LeftOperand.sadd_ov(RightOperand, Overflow); in exprAdd()
160 Expected<APInt> llvm::exprSub(const APInt &LeftOperand, in exprSub() argument
162 return LeftOperand.ssub_ov(RightOperand, Overflow); in exprSub()
165 Expected<APInt> llvm::exprMul(const APInt &LeftOperand, in exprMul() argument
167 return LeftOperand.smul_ov(RightOperand, Overflow); in exprMul()
170 Expected<APInt> llvm::exprDiv(const APInt &LeftOperand, in exprDiv() argument
176 return LeftOperand.sdiv_ov(RightOperand, Overflow); in exprDiv()
179 Expected<APInt> llvm::exprMax(const APInt &LeftOperand, in exprMax() argument
182 return LeftOperand.slt(RightOperand) ? RightOperand : LeftOperand; in exprMax()
[all …]
H A DFileCheckImpl.h311 std::unique_ptr<ExpressionAST> LeftOperand;
324 LeftOperand = std::move(LeftOp); in BinaryOperation()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DLegalizerHelper.cpp2626 auto LeftOperand = MIRBuilder.buildInstr(ExtOp, {WideTy}, {LHS}); in widenScalarMulo() local
2639 {LeftOperand, RightOperand}); in widenScalarMulo()
2641 Mulo = MIRBuilder.buildInstr(MulOpc, {WideTy}, {LeftOperand, RightOperand}); in widenScalarMulo()