Lines Matching refs:EntryTy
106 enum class EntryTy { enum
127 EntryTy Ty;
129 FactOrCheck(EntryTy Ty, DomTreeNode *DTN, Instruction *Inst) in FactOrCheck()
136 Ty(EntryTy::UseCheck) {} in FactOrCheck()
141 NumOut(DTN->getDFSNumOut()), Ty(EntryTy::ConditionFact) {} in FactOrCheck()
150 return FactOrCheck(EntryTy::InstFact, DTN, Inst); in getInstFact()
158 return FactOrCheck(EntryTy::InstCheck, DTN, CI); in getCheck()
162 return Ty == EntryTy::InstCheck || Ty == EntryTy::UseCheck; in isCheck()
166 if (Ty == EntryTy::UseCheck) in getContextInst()
173 if (Ty == EntryTy::InstCheck) in getInstructionToSimplify()
179 bool isConditionFact() const { return Ty == EntryTy::ConditionFact; } in isConditionFact()