Home
last modified time | relevance | path

Searched refs:isPHIDef (Results 1 – 14 of 14) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DCalcSpillWeights.cpp93 if (VNI->isPHIDef()) in isRematerializable()
120 if (VNI->isPHIDef()) in isRematerializable()
H A DSplitKit.cpp174 if (!VNI->isPHIDef() && !VNI->isUnused()) in analyzeUses()
1213 assert(ParentVNI->isPHIDef() && "Non-phi defined at block start?"); in transferValues()
1282 if (V->isUnused() || !V->isPHIDef()) in extendPHIKillRanges()
1298 if (V->isUnused() || !V->isPHIDef()) in extendPHIKillRanges()
1448 if (S.valno->isPHIDef()) in deleteRematVictims()
1470 if (!ParentVNI.isPHIDef()) { in forceRecomputeVNI()
1489 if (!VNI.isPHIDef()) in forceRecomputeVNI()
H A DRegisterCoalescer.cpp843 if (AValNo->isPHIDef()) in removeCopyByCommutingDef()
1112 if (!AValNo->isPHIDef()) in removePartialRedundancy()
1303 if (ValNo->isPHIDef() || ValNo->isUnused()) in reMaterializeTrivialDef()
1710 if (((V && V->isPHIDef()) || (!V && !DstLI.liveAt(Idx)))) { in eliminateUndefCopy()
2667 while (!VNI->isPHIDef()) { in followCopyChain()
2752 if (VNI->isPHIDef()) { in analyzeValue()
2839 if (VNI->isPHIDef()) in analyzeValue()
2900 if (VNI->isPHIDef()) in analyzeValue()
3157 if (!VNI->isPHIDef()) { in resolveConflicts()
3273 return Q.valueIn() && Q.valueIn()->isPHIDef() && Q.valueIn() == Q.valueOut(); in isLiveThrough()
[all …]
H A DLiveIntervalCalc.cpp115 if (!VNI->isUnused() && !VNI->isPHIDef()) in constructMainRangeFromSubranges()
H A DLiveIntervals.cpp425 if (!VNI->isPHIDef() || VNI->def != BlockStart || in extendSegmentsToUses()
542 if ((I == LI.begin() || std::prev(I)->end < Def) && !VNI->isPHIDef()) { in computeDeadValues()
550 if (VNI->isPHIDef()) { in computeDeadValues()
628 if (VNI->isPHIDef()) { in shrinkToUses()
863 if (PHI->isUnused() || !PHI->isPHIDef()) in hasPHIKill()
H A DLiveInterval.cpp888 if (VNI->isPHIDef()) in stripValuesNotDefiningMask()
1022 if (vni->isPHIDef()) in print()
1324 if (VNI->isPHIDef()) { in Classify()
H A DRenameIndependentSubregs.cpp320 if (VNI.isUnused() || !VNI.isPHIDef()) in computeMainRangesFixFlags()
H A DInlineSpiller.cpp465 if (SrcVNI->isPHIDef()) in hoistSpillInsideBB()
566 if (VNI->isPHIDef()) { in markValueUsed()
742 if (VNI->isUnused() || VNI->isPHIDef() || UsedValues.count(VNI)) in reMaterializeAll()
H A DMachineVerifier.cpp3430 if (VNI->isPHIDef()) { in verifyLiveRangeValue()
3538 if (!Reg.isVirtual() && VNI->isPHIDef() && S.start == VNI->def && in verifyLiveRangeSegment()
3645 if (S.start == VNI->def && !VNI->isPHIDef()) { in verifyLiveRangeSegment()
3670 bool IsPHI = VNI->isPHIDef() && in verifyLiveRangeSegment()
H A DMachineScheduler.cpp1612 if (!LRQ.valueIn()->isPHIDef()) in computeCyclicCriticalPath()
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVInsertVSETVLI.cpp589 if (!LIS || getAVLVNInfo()->isPHIDef()) in getAVLDefMI()
1157 if (Info.getAVLVNInfo()->isPHIDef()) in insertVSETVLI()
1376 if (!Valno->isPHIDef() || LIS->getMBBFromIndex(Valno->def) != &MBB) in needVSETVLIPHI()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIOptimizeExecMaskingPreRA.cpp193 return VNI->isPHIDef(); in optimizeVcndVcmpPair()
H A DSIWholeQuadMode.cpp357 if (Value->isPHIDef()) { in markDefs()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DLiveInterval.h78 bool isPHIDef() const { return def.isBlock(); } in isPHIDef() function