reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
85 assert((DivInst->getOpcode() == Instruction::UDiv || 86 DivInst->getOpcode() == Instruction::SDiv) && 88 assert(DivInst->getType() == RemInst->getType() && "Types should match."); 94 Type *getType() const { return DivInst->getType(); } 97 bool isSigned() const { return DivInst->getOpcode() == Instruction::SDiv; } 100 Value *getDividend() const { return DivInst->getOperand(0); } 101 Value *getDivisor() const { return DivInst->getOperand(1); } 194 auto &DivInst = E.DivInst;