Lines Matching defs:NullCheckList
168 SmallVectorImpl<NullCheck> &NullCheckList);
171 void rewriteNullChecks(ArrayRef<NullCheck> NullCheckList);
307 SmallVector<NullCheck, 16> NullCheckList;
310 analyzeBlockForNullChecks(MBB, NullCheckList);
312 if (!NullCheckList.empty())
313 rewriteNullChecks(NullCheckList);
315 return !NullCheckList.empty();
551 /// NullCheckList and return true, else return false.
553 MachineBasicBlock &MBB, SmallVectorImpl<NullCheck> &NullCheckList) {
688 NullCheckList.emplace_back(&MI, MBP.ConditionDef, &MBB, NotNullSucc,
754 /// Rewrite the null checks in NullCheckList into implicit null checks.
756 ArrayRef<ImplicitNullChecks::NullCheck> NullCheckList) {
759 for (const auto &NC : NullCheckList) {