Home
last modified time | relevance | path

Searched refs:PInfo (Results 1 – 11 of 11) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DConsumed.cpp439 setStateForVarOrTmp(ConsumedStateMap *StateMap, const PropagationInfo &PInfo, in setStateForVarOrTmp() argument
441 assert(PInfo.isVar() || PInfo.isTmp()); in setStateForVarOrTmp()
443 if (PInfo.isVar()) in setStateForVarOrTmp()
444 StateMap->setState(PInfo.getVar(), State); in setStateForVarOrTmp()
446 StateMap->setState(PInfo.getTmp(), State); in setStateForVarOrTmp()
487 void checkCallability(const PropagationInfo &PInfo,
541 PropagationInfo& PInfo = Entry->second; in copyInfo() local
542 ConsumedState CS = PInfo.getAsState(StateMap); in copyInfo()
545 if (NS != CS_None && PInfo.isPointerToValue()) in copyInfo()
546 setStateForVarOrTmp(StateMap, PInfo, NS); in copyInfo()
[all …]
/freebsd/contrib/llvm-project/libunwind/src/
H A DFrameHeaderCache.hpp64 bool cacheNeedsReset(dl_phdr_info *PInfo) { in cacheNeedsReset() argument
75 if (PInfo->dlpi_adds != LastAdds || PInfo->dlpi_subs != LastSubs) { in cacheNeedsReset()
79 LastAdds = PInfo->dlpi_adds; in cacheNeedsReset()
80 LastSubs = PInfo->dlpi_subs; in cacheNeedsReset()
88 bool find(dl_phdr_info *PInfo, size_t, void *data) { in find() argument
89 if (cacheNeedsReset(PInfo) || MostRecentlyUsed == nullptr) in find()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DPredicateInfo.cpp91 PredicateBase *PInfo = nullptr; member
128 assert(A.PInfo && B.PInfo && "Must be predicate info def"); in operator ()()
139 return ::getBlockEdge(VD.PInfo); in getBlockEdge()
169 assert((!A.PInfo || !A.U) && (!B.PInfo || !B.U) && in comparePHIRelated()
181 assert(VD.PInfo && "No use, and no predicateinfo should not occur"); in getDefOrUser()
182 assert(isa<PredicateAssume>(VD.PInfo) && in getDefOrUser()
184 return cast<PredicateAssume>(VD.PInfo)->AssumeInst->getNextNode(); in getDefOrUser()
265 if (Top.LocalNum == LN_Last && Top.PInfo) { in stackIsInScope()
273 if (EdgePred != getBranchBlock(Top.PInfo)) in stackIsInScope()
277 return DT.dominates(getBlockEdge(Top.PInfo), *VDUse.U); in stackIsInScope()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVInsertWriteVXRM.cpp371 const BlockData &PInfo = BlockInfo[P->getNumber()]; in emitWriteVXRM() local
373 if (PInfo.AvailableOut.isStatic() && in emitWriteVXRM()
374 PInfo.AvailableOut.getVXRMImm() == in emitWriteVXRM()
380 if (PInfo.AnticipatedOut.isStatic() && in emitWriteVXRM()
381 PInfo.AnticipatedOut.getVXRMImm() == in emitWriteVXRM()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopUnrollPass.cpp797 shouldPragmaUnroll(Loop *L, const PragmaInfo &PInfo, in shouldPragmaUnroll() argument
805 if (PInfo.UserUnrollCount) { in shouldPragmaUnroll()
812 if (PInfo.PragmaCount > 0) { in shouldPragmaUnroll()
813 if ((UP.AllowRemainder || (TripMultiple % PInfo.PragmaCount == 0))) in shouldPragmaUnroll()
814 return PInfo.PragmaCount; in shouldPragmaUnroll()
817 if (PInfo.PragmaFullUnroll && TripCount != 0) { in shouldPragmaUnroll()
829 if (PInfo.PragmaEnableUnroll && !TripCount && MaxTripCount && in shouldPragmaUnroll()
942 PragmaInfo PInfo(UserUnrollCount, PragmaFullUnroll, PragmaCount, in computeUnrollCount() local
958 if (auto UnrollFactor = shouldPragmaUnroll(L, PInfo, TripMultiple, TripCount, in computeUnrollCount()
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DDAGISelMatcherGen.cpp417 const SDNodeInfo &PInfo = CGP.getSDNodeInfo(Root.getOperator()); in EmitOperatorMatchCode() local
422 PInfo.getNumOperands() > 1 || PInfo.hasProperty(SDNPHasChain) || in EmitOperatorMatchCode()
423 PInfo.hasProperty(SDNPInGlue) || PInfo.hasProperty(SDNPOptInGlue); in EmitOperatorMatchCode()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DGenericDomTreeConstruction.h260 const InfoRec *PInfo = VInfo; in eval() local
261 const InfoRec *PLabelInfo = NumToInfo[PInfo->Label]; in eval()
264 VInfo->Parent = PInfo->Parent; in eval()
267 VInfo->Label = PInfo->Label; in eval()
270 PInfo = VInfo; in eval()
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DThumb2SizeReduction.cpp1053 const MBBInfo &PInfo = BlockInfo[Pred->getNumber()]; in ReduceMBB() local
1054 if (!PInfo.Visited) { in ReduceMBB()
1058 if (PInfo.HighLatencyCPSR) { in ReduceMBB()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineVerifier.cpp3293 BBInfo &PInfo = MBBInfoMap[Pred]; in calcRegsRequired() local
3294 if (PInfo.addRequired(MInfo.vregsLiveIn)) in calcRegsRequired()
3309 BBInfo &PInfo = MBBInfoMap[Pred]; in calcRegsRequired() local
3310 if (PInfo.addRequired(Reg)) in calcRegsRequired()
3471 BBInfo &PInfo = MBBInfoMap[Pred]; in visitMachineFunctionAfter() local
3472 if (!PInfo.regsLiveOut.count(LiveInReg)) { in visitMachineFunctionAfter()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DMemoryDependenceAnalysis.cpp1452 NonLocalDepInfo &PInfo = It->second.NonLocalDeps; in removeCachedNonLocalPointerDependencies() local
1454 for (const NonLocalDepEntry &DE : PInfo) { in removeCachedNonLocalPointerDependencies()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIRegisterInfo.cpp1885 MachinePointerInfo PInfo = BasePtrInfo.getWithOffset(RegOffset); in buildSpillLoadStore() local
1887 MF->getMachineMemOperand(PInfo, MMO->getFlags(), RemEltSize, in buildSpillLoadStore()