Home
last modified time | relevance | path

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

/freebsd/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/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/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86LoadValueInjectionLoadHardening.cpp373 NodeAddr<PhiNode *> Phi = Use.Addr->getOwner(DFG); in getGadgetGraph()
470 for (NodeAddr<PhiNode *> ArgPhi : in getGadgetGraph()
/freebsd/contrib/llvm-project/llvm/include/llvm-c/
H A DCore.h4007 void LLVMAddIncoming(LLVMValueRef PhiNode, LLVMValueRef *IncomingValues,
4013 unsigned LLVMCountIncoming(LLVMValueRef PhiNode);
4018 LLVMValueRef LLVMGetIncomingValue(LLVMValueRef PhiNode, unsigned Index);
4023 LLVMBasicBlockRef LLVMGetIncomingBlock(LLVMValueRef PhiNode, unsigned Index);
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DCore.cpp3178 void LLVMAddIncoming(LLVMValueRef PhiNode, LLVMValueRef *IncomingValues, in LLVMAddIncoming() argument
3180 PHINode *PhiVal = unwrap<PHINode>(PhiNode); in LLVMAddIncoming()
3185 unsigned LLVMCountIncoming(LLVMValueRef PhiNode) { in LLVMCountIncoming() argument
3186 return unwrap<PHINode>(PhiNode)->getNumIncomingValues(); in LLVMCountIncoming()
3189 LLVMValueRef LLVMGetIncomingValue(LLVMValueRef PhiNode, unsigned Index) { in LLVMGetIncomingValue() argument
3190 return wrap(unwrap<PHINode>(PhiNode)->getIncomingValue(Index)); in LLVMGetIncomingValue()
3193 LLVMBasicBlockRef LLVMGetIncomingBlock(LLVMValueRef PhiNode, unsigned Index) { in LLVMGetIncomingBlock() argument
3194 return wrap(unwrap<PHINode>(PhiNode)->getIncomingBlock(Index)); in LLVMGetIncomingBlock()
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonOptAddrMode.cpp266 NodeAddr<PhiNode *> PA = UA.Addr->getOwner(*DFG); in getAllRealUses()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp3767 const auto *PhiNode = cast<PHINode>(UserInst); in CollectLoopInvariantFixupsAndFormulae() local
3770 for (unsigned int I = 0; I < PhiNode->getNumIncomingValues(); I++) { in CollectLoopInvariantFixupsAndFormulae()
3771 if (PhiNode->getIncomingValue(I) == ExpectedValue) { in CollectLoopInvariantFixupsAndFormulae()
3772 if (PhiNode->getIncomingBlock(I)->getTerminator()->isEHPad()) { in CollectLoopInvariantFixupsAndFormulae()