Searched refs:LeftOperand (Results 1 – 3 of 3) sorted by relevance
204 Expected<ExpressionValue> llvm::operator+(const ExpressionValue &LeftOperand, in operator +() argument206 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 -() argument238 if (LeftOperand.isNegative() && !RightOperand.isNegative()) { in operator -()239 int64_t LeftValue = cantFail(LeftOperand.getSignedValue()); in operator -()[all …]
354 std::unique_ptr<ExpressionAST> LeftOperand;367 LeftOperand = std::move(LeftOp); in BinaryOperation()
1994 auto LeftOperand = MIRBuilder.buildInstr(ExtOp, {WideTy}, {LHS}); in widenScalarMulo() local1998 {LeftOperand, RightOperand}); in widenScalarMulo()