Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/
H A DRDFLiveness.cpp163 NodeAddr<PhiNode *> PA = IA; in getAllReachingDefs()
339 NodeAddr<PhiNode *> PA = DA.Addr->getOwner(DFG); in getAllReachingDefsRecImpl()
478 for (NodeAddr<PhiNode *> PhiA : Phis) { in computePhiInfo()
674 auto PA = DFG.addr<PhiNode *>(PhiUQ[i]); in computePhiInfo()
730 NodeAddr<PhiNode *> PA = DFG.addr<PhiNode *>(I.first); in computePhiInfo()
806 for (NodeAddr<PhiNode *> PA : Phis) { in computeLiveIns()
H A DRDFGraph.cpp251 OS << PrintNode<PhiNode *>(P.Obj, P.G); in operator <<()
1481 auto PA = addr<PhiNode *>(PhiQ[0]); in removeUnusedPhis()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DRDFGraph.h374 struct PhiNode;
390 using Phi = NodeAddr<PhiNode *>;
633 struct PhiNode : public InstrNode { struct
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86LoadValueInjectionLoadHardening.cpp373 NodeAddr<PhiNode *> Phi = Use.Addr->getOwner(DFG); in getGadgetGraph()
471 for (NodeAddr<PhiNode *> ArgPhi : in getGadgetGraph()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm-c/
H A DCore.h3769 void LLVMAddIncoming(LLVMValueRef PhiNode, LLVMValueRef *IncomingValues,
3775 unsigned LLVMCountIncoming(LLVMValueRef PhiNode);
3780 LLVMValueRef LLVMGetIncomingValue(LLVMValueRef PhiNode, unsigned Index);
3785 LLVMBasicBlockRef LLVMGetIncomingBlock(LLVMValueRef PhiNode, unsigned Index);
/freebsd-14.2/contrib/llvm-project/llvm/lib/IR/
H A DCore.cpp3003 void LLVMAddIncoming(LLVMValueRef PhiNode, LLVMValueRef *IncomingValues, in LLVMAddIncoming() argument
3005 PHINode *PhiVal = unwrap<PHINode>(PhiNode); in LLVMAddIncoming()
3010 unsigned LLVMCountIncoming(LLVMValueRef PhiNode) { in LLVMCountIncoming() argument
3011 return unwrap<PHINode>(PhiNode)->getNumIncomingValues(); in LLVMCountIncoming()
3014 LLVMValueRef LLVMGetIncomingValue(LLVMValueRef PhiNode, unsigned Index) { in LLVMGetIncomingValue() argument
3015 return wrap(unwrap<PHINode>(PhiNode)->getIncomingValue(Index)); in LLVMGetIncomingValue()
3018 LLVMBasicBlockRef LLVMGetIncomingBlock(LLVMValueRef PhiNode, unsigned Index) { in LLVMGetIncomingBlock() argument
3019 return wrap(unwrap<PHINode>(PhiNode)->getIncomingBlock(Index)); in LLVMGetIncomingBlock()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonOptAddrMode.cpp264 NodeAddr<PhiNode *> PA = UA.Addr->getOwner(*DFG); in getAllRealUses()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp3532 const auto *PhiNode = cast<PHINode>(UserInst); in CollectLoopInvariantFixupsAndFormulae() local
3535 for (unsigned int I = 0; I < PhiNode->getNumIncomingValues(); I++) { in CollectLoopInvariantFixupsAndFormulae()
3536 if (PhiNode->getIncomingValue(I) == ExpectedValue) { in CollectLoopInvariantFixupsAndFormulae()
3537 if (PhiNode->getIncomingBlock(I)->getTerminator()->isEHPad()) { in CollectLoopInvariantFixupsAndFormulae()