Lines Matching refs:Depth
133 LLVM_NODISCARD Value *Negator::visitImpl(Value *V, unsigned Depth) { in visitImpl() argument
256 if (Depth > NegatorMaxDepth) { in visitImpl()
266 Value *NegOp = negate(I->getOperand(0), Depth + 1); in visitImpl()
277 negate(std::get<0>(I), Depth + 1))) // Early return. in visitImpl()
300 Value *NegOp1 = negate(I->getOperand(1), Depth + 1); in visitImpl()
303 Value *NegOp2 = negate(I->getOperand(2), Depth + 1); in visitImpl()
313 Value *NegOp0 = negate(I->getOperand(0), Depth + 1); in visitImpl()
316 Value *NegOp1 = negate(I->getOperand(1), Depth + 1); in visitImpl()
325 Value *NegVector = negate(EEI->getVectorOperand(), Depth + 1); in visitImpl()
335 Value *NegVector = negate(IEI->getOperand(0), Depth + 1); in visitImpl()
338 Value *NegNewElt = negate(IEI->getOperand(1), Depth + 1); in visitImpl()
346 Value *NegOp = negate(I->getOperand(0), Depth + 1); in visitImpl()
353 if (Value *NegOp0 = negate(I->getOperand(0), Depth + 1)) in visitImpl()
381 if (Value *NegOp = negate(Op, Depth + 1)) { in visitImpl()
422 if (Value *NegOp1 = negate(Ops[1], Depth + 1)) { in visitImpl()
425 } else if (Value *NegOp0 = negate(Ops[0], Depth + 1)) { in visitImpl()
440 LLVM_NODISCARD Value *Negator::negate(Value *V, unsigned Depth) { in negate() argument
441 NegatorMaxDepthVisited.updateMax(Depth); in negate()
470 Value *NegatedV = visitImpl(V, Depth); in negate()