Home
last modified time | relevance | path

Searched refs:SwitchLowering (Results 1 – 8 of 8) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Coroutines/
H A DCoroInternal.h164 SwitchLoweringStorage SwitchLowering; member
188 return SwitchLowering.IndexField; in getSwitchIndexField()
260 return SwitchLowering.PromiseAlloca; in getPromiseAlloca()
H A DCoroutines.cpp374 this->SwitchLowering.HasFinalSuspend = HasFinalSuspend; in buildFrom()
375 this->SwitchLowering.ResumeSwitch = nullptr; in buildFrom()
376 this->SwitchLowering.PromiseAlloca = SwitchId->getPromise(); in buildFrom()
377 this->SwitchLowering.ResumeEntryBlock = nullptr; in buildFrom()
510 SwitchLowering.HasFinalSuspend && in buildFrom()
H A DCoroFrame.cpp964 unsigned IndexIndex = Shape.SwitchLowering.IndexField; in buildFrameDebugInfo()
1011 {Shape.SwitchLowering.IndexAlign, Shape.SwitchLowering.IndexOffset}}); in buildFrameDebugInfo()
1175 Shape.SwitchLowering.IndexField = IndexField.LayoutFieldIndex; in buildFrameType()
1176 Shape.SwitchLowering.IndexAlign = IndexField.Alignment.value(); in buildFrameType()
1177 Shape.SwitchLowering.IndexOffset = IndexField.Offset; in buildFrameType()
2487 if (AI == Shape.SwitchLowering.PromiseAlloca) { in collectFrameAllocas()
2593 Shape.SwitchLowering.PromiseAlloca) { in buildCoroutineFrame()
2692 Shape.SwitchLowering.PromiseAlloca == &I) in buildCoroutineFrame()
H A DCoroSplit.cpp354 Shape.SwitchLowering.ResumeSwitch = Switch; in createResumeEntryBlock()
424 Shape.SwitchLowering.ResumeEntryBlock = NewEntry; in createResumeEntryBlock()
439 Shape.SwitchLowering.HasFinalSuspend); in handleFinalSuspend()
440 auto *Switch = cast<SwitchInst>(VMap[Shape.SwitchLowering.ResumeSwitch]); in handleFinalSuspend()
714 cast<BasicBlock>(VMap[Shape.SwitchLowering.ResumeEntryBlock]); in replaceEntryBlock()
999 if (Shape.SwitchLowering.HasFinalSuspend) in create()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DSwitchLoweringUtils.h249 class SwitchLowering {
251 SwitchLowering(FunctionLoweringInfo &funcinfo) : FuncInfo(funcinfo) {} in SwitchLowering() function
292 virtual ~SwitchLowering() = default;
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/
H A DSwitchLoweringUtils.cpp46 void SwitchCG::SwitchLowering::findJumpTables(CaseClusterVector &Clusters, in findJumpTables()
190 bool SwitchCG::SwitchLowering::buildJumpTable(const CaseClusterVector &Clusters, in buildJumpTable()
265 void SwitchCG::SwitchLowering::findBitTestClusters(CaseClusterVector &Clusters, in findBitTestClusters()
364 bool SwitchCG::SwitchLowering::buildBitTests(CaseClusterVector &Clusters, in buildBitTests()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/
H A DIRTranslator.h590 class GISelSwitchLowering : public SwitchCG::SwitchLowering {
593 : SwitchLowering(funcinfo), IRT(irt) { in GISelSwitchLowering()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.h394 class SDAGSwitchLowering : public SwitchCG::SwitchLowering {
397 : SwitchCG::SwitchLowering(funcinfo), SDB(sdb) {} in SDAGSwitchLowering()