Lines Matching refs:EntryTy
107 enum class EntryTy { enum
128 EntryTy Ty;
130 FactOrCheck(EntryTy Ty, DomTreeNode *DTN, Instruction *Inst) in FactOrCheck()
137 Ty(EntryTy::UseCheck) {} in FactOrCheck()
142 NumOut(DTN->getDFSNumOut()), Ty(EntryTy::ConditionFact) {} in FactOrCheck()
151 return FactOrCheck(EntryTy::InstFact, DTN, Inst); in getInstFact()
159 return FactOrCheck(EntryTy::InstCheck, DTN, CI); in getCheck()
163 return Ty == EntryTy::InstCheck || Ty == EntryTy::UseCheck; in isCheck()
167 if (Ty == EntryTy::UseCheck) in getContextInst()
174 if (Ty == EntryTy::InstCheck) in getInstructionToSimplify()
180 bool isConditionFact() const { return Ty == EntryTy::ConditionFact; } in isConditionFact()