Lines Matching refs:Depth
133 LLVM_NODISCARD Value *Negator::visitImpl(Value *V, unsigned Depth) { in visitImpl() argument
284 if (Depth > NegatorMaxDepth) { in visitImpl()
294 Value *NegOp = negate(I->getOperand(0), Depth + 1); in visitImpl()
305 negate(std::get<0>(I), Depth + 1))) // Early return. in visitImpl()
328 Value *NegOp1 = negate(I->getOperand(1), Depth + 1); in visitImpl()
331 Value *NegOp2 = negate(I->getOperand(2), Depth + 1); in visitImpl()
341 Value *NegOp0 = negate(I->getOperand(0), Depth + 1); in visitImpl()
344 Value *NegOp1 = negate(I->getOperand(1), Depth + 1); in visitImpl()
353 Value *NegVector = negate(EEI->getVectorOperand(), Depth + 1); in visitImpl()
363 Value *NegVector = negate(IEI->getOperand(0), Depth + 1); in visitImpl()
366 Value *NegNewElt = negate(IEI->getOperand(1), Depth + 1); in visitImpl()
374 Value *NegOp = negate(I->getOperand(0), Depth + 1); in visitImpl()
381 if (Value *NegOp0 = negate(I->getOperand(0), Depth + 1)) in visitImpl()
409 if (Value *NegOp = negate(Op, Depth + 1)) { in visitImpl()
450 if (Value *NegOp1 = negate(Ops[1], Depth + 1)) { in visitImpl()
453 } else if (Value *NegOp0 = negate(Ops[0], Depth + 1)) { in visitImpl()
468 LLVM_NODISCARD Value *Negator::negate(Value *V, unsigned Depth) { in negate() argument
469 NegatorMaxDepthVisited.updateMax(Depth); in negate()
498 Value *NegatedV = visitImpl(V, Depth); in negate()