Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/FileCheck/
H A DFileCheck.cpp204 Expected<ExpressionValue> llvm::operator+(const ExpressionValue &LeftOperand, in operator +() argument
206 if (LeftOperand.isNegative() && RightOperand.isNegative()) { in operator +()
207 int64_t LeftValue = cantFail(LeftOperand.getSignedValue()); in operator +()
217 if (LeftOperand.isNegative()) in operator +()
218 return RightOperand - LeftOperand.getAbsolute(); in operator +()
222 return LeftOperand - RightOperand.getAbsolute(); in operator +()
225 uint64_t LeftValue = cantFail(LeftOperand.getUnsignedValue()); in operator +()
235 Expected<ExpressionValue> llvm::operator-(const ExpressionValue &LeftOperand, in operator -() argument
238 if (LeftOperand.isNegative() && !RightOperand.isNegative()) { in operator -()
239 int64_t LeftValue = cantFail(LeftOperand.getSignedValue()); in operator -()
[all …]
H A DFileCheckImpl.h354 std::unique_ptr<ExpressionAST> LeftOperand;
367 LeftOperand = std::move(LeftOp); in BinaryOperation()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
H A DLegalizerHelper.cpp1849 auto LeftOperand = MIRBuilder.buildInstr(ExtOp, {WideTy}, {LHS}); in widenScalarMulo() local
1853 {LeftOperand, RightOperand}); in widenScalarMulo()