Home
last modified time | relevance | path

Searched refs:IsPhi (Results 1 – 7 of 7) sorted by relevance

/openbsd/src/gnu/llvm/llvm/lib/IR/
DUser.cpp50 void User::allocHungoffUses(unsigned N, bool IsPhi) { in allocHungoffUses() argument
58 if (IsPhi) in allocHungoffUses()
67 void User::growHungoffUses(unsigned NewNumUses, bool IsPhi) { in growHungoffUses() argument
77 allocHungoffUses(NewNumUses, IsPhi); in growHungoffUses()
84 if (IsPhi) { in growHungoffUses()
/openbsd/src/gnu/llvm/llvm/include/llvm/IR/
DUser.h87 void allocHungoffUses(unsigned N, bool IsPhi = false);
91 void growHungoffUses(unsigned N, bool IsPhi = false);
/openbsd/src/gnu/llvm/llvm/lib/CodeGen/
DRDFLiveness.cpp179 bool IsPhi = TA.Addr->getFlags() & NodeAttrs::PhiRef; in getAllReachingDefs() local
180 if (!IsPhi && !PRI.alias(RefRR, TA.Addr->getRegRef(DFG))) in getAllReachingDefs()
273 bool IsPhi = DFG.IsCode<NodeAttrs::Phi>(TA); in getAllReachingDefs() local
285 if (FullChain || IsPhi || !RRs.hasCoverOf(QR)) in getAllReachingDefs()
DRDFGraph.cpp1507 for (auto P : BA.Addr->members_if(IsPhi, *this)) in removeUnusedPhis()
1535 if (IsPhi(OA)) in removeUnusedPhis()
1684 for (NodeAddr<InstrNode*> IA : SBA.Addr->members_if(IsPhi, *this)) { in linkBlockRefs()
/openbsd/src/gnu/llvm/llvm/lib/Target/Hexagon/
DHexagonLoopIdiomRecognition.cpp1149 bool IsPhi = isa<PHINode>(I); in findCycle() local
1150 if (IsPhi && HadPhi) in findCycle()
1152 HadPhi |= IsPhi; in findCycle()
/openbsd/src/gnu/llvm/llvm/lib/Target/X86/
DX86LoadValueInjectionLoadHardening.cpp473 EntryBlock.Addr->members_if(DataFlowGraph::IsPhi, DFG)) { in getGadgetGraph()
/openbsd/src/gnu/llvm/llvm/include/llvm/CodeGen/
DRDFGraph.h806 static bool IsPhi(const NodeAddr<NodeBase*> BA) { in IsPhi() function