reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Transforms/InstCombine/InstCombineCompares.cpp
 2334   if (!match(Div->getOperand(1), m_APInt(C2)))
 2345   bool DivIsSigned = Div->getOpcode() == Instruction::SDiv;
 2372   APInt RangeSize = Div->isExact() ? APInt(C2->getBitWidth(), 1) : *C2;
 2413     if (Div->isExact())
 2440   Value *X = Div->getOperand(0);
 2449                             ConstantInt::get(Div->getType(), LoBound));
 2453                             ConstantInt::get(Div->getType(), HiBound));
 2462                             ConstantInt::get(Div->getType(), LoBound));
 2466                             ConstantInt::get(Div->getType(), HiBound));
 2476       return new ICmpInst(Pred, X, ConstantInt::get(Div->getType(), LoBound));
 2485                             ConstantInt::get(Div->getType(), HiBound));
 2487                           ConstantInt::get(Div->getType(), HiBound));