Home
last modified time | relevance | path

Searched refs:getStage (Results 1 – 12 of 12) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DModuloSchedule.cpp31 OS << "[stage " << getStage(MI) << " @" << getCycle(MI) << "c] " << *MI; in print()
80 int DefStage = Schedule.getStage(MI); in expand()
87 int UseStage = Schedule.getStage(UseMI); in expand()
140 unsigned StageNum = Schedule.getStage(CI); in generatePipelinedLoop()
224 if (Schedule.getStage(&*BBI) == StageNum) { in generateProlog()
303 if ((unsigned)Schedule.getStage(In) == StageNum) { in generateEpilog()
405 int StageScheduled = Schedule.getStage(&*BBI); in generateExistingPhis()
406 int LoopValStage = Schedule.getStage(MRI.getVRegDef(LoopVal)); in generateExistingPhis()
463 int PhiStage = Schedule.getStage(InstOp1); in generateExistingPhis()
469 int PhiOpStage = Schedule.getStage(InstOp1); in generateExistingPhis()
[all …]
H A DRegAllocGreedy.h86 LiveRangeStage getStage(Register Reg) const { return Info[Reg].Stage; } in getStage() function
88 LiveRangeStage getStage(const LiveInterval &VirtReg) const { in getStage() function
89 return getStage(VirtReg.reg()); in getStage()
105 return getStage(Reg); in getOrInitStage()
H A DRegAllocEvictionAdvisor.cpp207 bool CanSplit = RA.getExtraInfo().getStage(B) < RS_Spill; in shouldEvict()
279 if (RA.getExtraInfo().getStage(*Intf) == RS_Done) in canEvictInterferenceBasedOnCost()
H A DRegAllocGreedy.cpp442 LiveRangeStage Stage = RA.getExtraInfo().getStage(LI); in getPriority()
1377 if (ExtraInfo->getStage(VirtReg) >= RS_Split2) in trySplitAroundHintReg()
1781 bool ProgressRequired = ExtraInfo->getStage(VirtReg) >= RS_Split2; in tryLocalSplit()
1939 if (ExtraInfo->getStage(VirtReg) >= RS_Spill) in trySplit()
1961 if (ExtraInfo->getStage(VirtReg) < RS_Split2) { in trySplit()
2032 if (((ExtraInfo->getStage(*Intf) == RS_Done && in mayRecolorAllInterferences()
2103 assert((ExtraInfo->getStage(VirtReg) >= RS_Done || !VirtReg.isSpillable()) && in tryLastChanceRecoloring()
2322 if (ExtraInfo->getStage(VirtReg) == RS_Spill && VirtReg.isSpillable()) { in tryAssignCSRFirstTime()
2334 if (ExtraInfo->getStage(VirtReg) < RS_Split) { in tryAssignCSRFirstTime()
2584 LiveRangeStage Stage = ExtraInfo->getStage(VirtReg); in selectOrSplitImpl()
H A DMLRegallocEvictAdvisor.cpp
H A DMLRegAllocEvictAdvisor.cpp706 if (RA.getExtraInfo().getStage(*Intf) == RS_Done) in loadInterferenceFeatures()
963 MaxStage, static_cast<int64_t>(RA.getExtraInfo().getStage(LI))); in extractFeatures()
965 MinStage, static_cast<int64_t>(RA.getExtraInfo().getStage(LI))); in extractFeatures()
H A DMLRegallocPriorityAdvisor.cpp
H A DMLRegAllocPriorityAdvisor.cpp330 LiveRangeStage Stage = RA.getExtraInfo().getStage(LI); in getPriorityImpl()
/freebsd/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/
H A DDWARFLinkerImpl.cpp539 CU->getStage() == CompileUnit::Stage::LivenessAnalysisDone) in link()
597 if (CU.getStage() >= DoUntilStage) in linkSingleCompileUnit()
600 switch (CU.getStage()) { in linkSingleCompileUnit()
1056 if (ModuleUnit.Unit->getStage() != CompileUnit::Stage::Skipped) in forEachObjectSectionsSet()
1066 if (CU->getStage() != CompileUnit::Stage::Skipped) in forEachObjectSectionsSet()
1079 if (ModuleUnit.Unit->getStage() != CompileUnit::Stage::Skipped) in forEachCompileAndTypeUnit()
1085 if (CU->getStage() != CompileUnit::Stage::Skipped) in forEachCompileAndTypeUnit()
1094 if (ModuleUnit.Unit->getStage() != CompileUnit::Stage::Skipped) in forEachCompileUnit()
1100 if (CU->getStage() != CompileUnit::Stage::Skipped) in forEachCompileUnit()
H A DDWARFLinkerCompileUnit.cpp76 if (getStage() < Stage::Loaded) in maybeResetToLoadedStage()
93 if (getStage() < Stage::Cloned) { in maybeResetToLoadedStage()
401 enum Stage ReferredCUStage = RefCU->getStage(); in resolveDIEReference()
H A DDWARFLinkerCompileUnit.h98 Stage getStage() const { return Stage; } in getStage() function
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DModuloSchedule.h135 int getStage(MachineInstr *MI) { in getStage() function
361 unsigned getStage(MachineInstr *MI) { in getStage() function
364 return Schedule.getStage(MI); in getStage()