Home
last modified time | relevance | path

Searched defs:DivRemPairWorklistEntry (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DDivRemPairs.cpp76 struct DivRemPairWorklistEntry { struct
78 AssertingVH<Instruction> DivInst;
82 AssertingVH<Instruction> RemInst;
84 DivRemPairWorklistEntry(Instruction *DivInst_, Instruction *RemInst_) in DivRemPairWorklistEntry() function
95 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()