Searched defs:DivRemPairWorklistEntry (Results 1 – 1 of 1) sorted by relevance
76 struct DivRemPairWorklistEntry { struct78 AssertingVH<Instruction> DivInst;82 AssertingVH<Instruction> RemInst;84 DivRemPairWorklistEntry(Instruction *DivInst_, Instruction *RemInst_) in DivRemPairWorklistEntry() function95 Type *getType() const { return DivInst->getType(); } in getType()98 bool isSigned() const { return DivInst->getOpcode() == Instruction::SDiv; } in isSigned()101 Value *getDividend() const { return DivInst->getOperand(0); } in getDividend()102 Value *getDivisor() const { return DivInst->getOperand(1); } in getDivisor()104 bool isRemExpanded() const { in isRemExpanded()