Home
last modified time | relevance | path

Searched refs:IsEHPad (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DFixupStatepointCallerSaved.cpp355 auto IsEHPad = [](MachineBasicBlock *B) { return B->isEHPad(); }; in StatepointState() local
357 assert(llvm::count_if(MBB->successors(), IsEHPad) < 2 && "multiple EHPads"); in StatepointState()
359 auto It = llvm::find_if(MBB->successors(), IsEHPad); in StatepointState()
H A DMachineBlockPlacement.cpp1721 bool IsEHPad = WorkList[0]->isEHPad(); in selectBestCandidateBlock() local
1726 assert(MBB->isEHPad() == IsEHPad && in selectBestCandidateBlock()
1759 if (BestBlock && (IsEHPad ^ (BestFreq >= CandidateFreq))) in selectBestCandidateBlock()
H A DRDFGraph.cpp1634 bool IsEHPad = SB->isEHPad(); in linkBlockRefs() local
1638 if (IsEHPad) { in linkBlockRefs()
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/
H A DELFTypes.h872 bool IsEHPad : 1; // If this is an exception handling block.
879 HasTailCall == Other.HasTailCall && IsEHPad == Other.IsEHPad &&
888 (static_cast<uint32_t>(IsEHPad) << 2) |
924 bool isEHPad() const { return MD.IsEHPad; }
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMachineBasicBlock.h186 bool IsEHPad = false;
631 bool isEHPad() const { return IsEHPad; }
635 void setIsEHPad(bool V = true) { IsEHPad = V; }