Home
last modified time | relevance | path

Searched refs:OPN (Results 1 – 3 of 3) sorted by relevance

/NextBSD/contrib/gdb/gdb/
HDscm-tags.h336 #define SCM_OPDIRP(x) (SCM_NIMP(x) && (CAR(x)==(scm_tc16_dir | OPN)))
349 #define tc_socket (tc7_port | OPN)
350 #define SCM_SOCKP(x) (((0x7f | OPN | RDNG | WRTNG) & CAR(x))==(tc_socket))
/NextBSD/contrib/llvm/lib/Transforms/Utils/
HDCloneFunction.cpp554 const PHINode *OPN = PHIToResolve[phino]; in CloneAndPruneIntoFromInst() local
555 unsigned NumPreds = OPN->getNumIncomingValues(); in CloneAndPruneIntoFromInst()
556 const BasicBlock *OldBB = OPN->getParent(); in CloneAndPruneIntoFromInst()
563 OPN = PHIToResolve[phino]; in CloneAndPruneIntoFromInst()
564 PHINode *PN = cast<PHINode>(VMap[OPN]); in CloneAndPruneIntoFromInst()
/NextBSD/contrib/llvm/lib/Transforms/InstCombine/
HDInstCombineCasts.cpp212 PHINode *OPN = cast<PHINode>(I); in EvaluateInDifferentType() local
213 PHINode *NPN = PHINode::Create(Ty, OPN->getNumIncomingValues()); in EvaluateInDifferentType()
214 for (unsigned i = 0, e = OPN->getNumIncomingValues(); i != e; ++i) { in EvaluateInDifferentType()
216 EvaluateInDifferentType(OPN->getIncomingValue(i), Ty, isSigned); in EvaluateInDifferentType()
217 NPN->addIncoming(V, OPN->getIncomingBlock(i)); in EvaluateInDifferentType()