Searched refs:PH (Results 1 - 25 of 25) sorted by relevance

/freebsd-11-stable/usr.sbin/ntp/scripts/
H A Dntptrace24 open(PH, $cmd . "|") || die "failed to start command $cmd: $!";
25 while (<PH>) {
33 close(PH) || die "$cmd failed";
53 open(PH, $cmd . "|") || die "failed to start command $cmd: $!";
55 while (<PH>) {
58 close(PH) || die "$cmd failed";
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/
H A DVerifyDiagnosticConsumer.cpp408 for (ParseHelper PH(S); !PH.Done();) {
409 if (!PH.Search("#", true))
411 PH.C = PH.P;
412 if (!PH.NextMarker()) {
413 PH.Next("#");
414 PH.Advance();
417 PH.Advance();
418 Markers.addMarker(PH
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCOFFYAML.cpp444 COFFYAML::PEHeader &PH) {
446 PH.Header.Subsystem);
448 IO, PH.Header.DLLCharacteristics);
450 IO.mapRequired("AddressOfEntryPoint", PH.Header.AddressOfEntryPoint);
451 IO.mapRequired("ImageBase", PH.Header.ImageBase);
452 IO.mapRequired("SectionAlignment", PH.Header.SectionAlignment);
453 IO.mapRequired("FileAlignment", PH.Header.FileAlignment);
455 PH.Header.MajorOperatingSystemVersion);
457 PH.Header.MinorOperatingSystemVersion);
458 IO.mapRequired("MajorImageVersion", PH
443 mapping(IO &IO, COFFYAML::PEHeader &PH) argument
[all...]
/freebsd-11-stable/usr.bin/tip/tip/
H A Dacu.c120 if ((fd = fopen(PH, "r")) == NOFILE) {
121 printf("%s: ", PH);
H A Dvars.c75 NOSTR, (char *)&PH },
H A Dtip.c172 if ((PH = getenv("PHONES")) == NOSTR)
173 PH = _PATH_PHONES;
H A Dtip.h77 EXTERN char *PH; /* phone number file */ variable
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DVPlanHCFGBuilder.cpp128 // i.e., is not part of: a) the loop nest, b) outermost loop PH and, c)
140 // Check whether Instruction definition is in loop PH.
141 BasicBlock *PH = TheLoop->getLoopPreheader(); local
142 assert(PH && "Expected loop pre-header.");
144 if (InstParent == PH)
145 // Instruction definition is in outermost loop PH.
250 // Loop PH needs to be explicitly visited since it's not taken into account by
257 // Create empty VPBB for Loop H so that we can link PH->H.
H A DSLPVectorizer.cpp2568 auto *PH = cast<PHINode>(VL0);
2572 for (unsigned i = 0, e = PH->getNumIncomingValues(); i < e; ++i) {
2575 PH->getIncomingBlock(i)));
2592 for (unsigned i = 0, e = PH->getNumIncomingValues(); i < e; ++i) {
2597 PH->getIncomingBlock(i)));
4078 auto *PH = cast<PHINode>(VL0);
4079 Builder.SetInsertPoint(PH->getParent()->getFirstNonPHI());
4080 Builder.SetCurrentDebugLocation(PH->getDebugLoc());
4081 PHINode *NewPhi = Builder.CreatePHI(VecTy, PH->getNumIncomingValues());
4093 for (unsigned i = 0, e = PH
[all...]
/freebsd-11-stable/contrib/groff/src/roff/grog/
H A Dgrog.pl98 elsif (/^\.(PH|SA)$sp/) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopLoadElimination.cpp434 auto *PH = L->getLoopPreheader();
436 PH->getTerminator());
440 PH->getTerminator());
444 PHI->addIncoming(Initial, PH);
H A DLoopDistribute.cpp462 // loop before PH along with adding a preheader for the cloned loop. Then
463 // update PH to point to the newly added preheader.
679 BasicBlock *PH = L->getLoopPreheader();
794 // rely on PH having a predecessor.)
795 if (!PH->getSinglePredecessor() || &*PH->begin() != PH->getTerminator())
796 SplitBlock(PH, PH->getTerminator(), DT, LI);
H A DLoopIdiomRecognize.cpp1476 BasicBlock *PH = CurLoop->getLoopPreheader(); local
1483 auto *PreCondBB = PH->getSinglePredecessor();
1489 if (matchCondition(PreCondBI, PH) != InitX)
1519 transformLoopToCountable(IntrinID, PH, CntInst, CntPhi, InitX, DefX,
1549 BasicBlock *PH = CurLoop->getLoopPreheader(); local
1550 if (!PH || &PH->front() != PH->getTerminator())
1552 auto *EntryBI = dyn_cast<BranchInst>(PH->getTerminator());
1558 auto *PreCondBB = PH
[all...]
H A DSimpleLoopUnswitch.cpp474 // Splice it into the old PH to gate reaching the new preheader and re-point
1367 // the unswitched loop. If we never formed a loop, the cloned PH is one of
1394 // Walk the CFG back until we hit the cloned PH adding everything reachable
1584 auto *PH = L.getLoopPreheader(); local
1594 if (Pred == PH)
1694 auto *PH = L.getLoopPreheader(); local
1722 IL->getBlocksSet().erase(PH);
1726 return BB == PH || L.contains(BB);
1730 LI.changeLoopFor(PH, ParentL);
1750 UnloopedBlocks.insert(PH);
[all...]
H A DLoopStrengthReduce.cpp2110 PHINode *PH = dyn_cast<PHINode>(ShadowUse->getOperand(0)); local
2111 if (!PH) continue;
2112 if (PH->getNumIncomingValues() != 2) continue;
2117 const SCEVAddRecExpr *AR = dyn_cast<SCEVAddRecExpr>(SE.getSCEV(PH));
2122 Type *SrcTy = PH->getType();
2129 if (PH->getIncomingBlock(0) == L->getLoopPreheader()) {
2137 ConstantInt *Init = dyn_cast<ConstantInt>(PH->getIncomingValue(Entry));
2144 dyn_cast<BinaryOperator>(PH->getIncomingValue(Latch));
2152 if (Incr->getOperand(0) == PH)
2154 else if (Incr->getOperand(1) == PH)
[all...]
H A DIndVarSimplify.cpp148 bool handleFloatingPointIV(Loop *L, PHINode *PH);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLoopVersioning.cpp96 BasicBlock *PH = local
106 cloneLoopWithPreheader(PH, RuntimeCheckBB, VersionedLoop, VMap,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonHardwareLoops.cpp829 MachineBasicBlock *PH = MLI->findLoopPreheader(Loop, SpecPreheader);
830 assert (PH && "Should have a preheader by now");
831 MachineBasicBlock::iterator InsertPos = PH->getFirstTerminator();
833 if (InsertPos != PH->end())
916 BuildMI(*PH, InsertPos, DL, SubD, SubR);
937 BuildMI(*PH, InsertPos, DL, SubD, SubR);
956 BuildMI(*PH, InsertPos, DL, AddD, AddR)
977 BuildMI(*PH, InsertPos, DL, LsrD, LsrR)
H A DHexagonCommonGEP.cpp867 if (BasicBlock *PH = L->getLoopPreheader())
868 return PH;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DCOFFYAML.h205 static void mapping(IO &IO, COFFYAML::PEHeader &PH);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DInstrProfiling.cpp184 BasicBlock *PH, ArrayRef<BasicBlock *> ExitBlocks,
192 SSA.AddAvailableValue(PH, Init);
329 BasicBlock *PH = LP->getLoopPreheader();
330 if (!PH)
182 PGOCounterPromoterHelper( Instruction *L, Instruction *S, SSAUpdater &SSA, Value *Init, BasicBlock *PH, ArrayRef<BasicBlock *> ExitBlocks, ArrayRef<Instruction *> InsertPts, DenseMap<Loop *, SmallVector<LoadStorePair, 8>> &LoopToCands, LoopInfo &LI) argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DMetadata.cpp161 if (auto *PH = dyn_cast<DistinctMDOperandPlaceholder>(&MD)) {
162 assert(!PH->Use && "Placeholders can only be used once");
164 PH->Use = static_cast<Metadata **>(Ref);
174 else if (auto *PH = dyn_cast<DistinctMDOperandPlaceholder>(&MD))
175 PH->Use = nullptr;
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DTypePrinter.cpp1904 StringRef PH = PlaceHolder.toStringRef(PHBuf); local
1906 TypePrinter(policy, Indentation).print(ty, qs, OS, PH);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DMetadataLoader.cpp379 for (auto &PH : PHs) {
380 auto ID = PH.getID();
/freebsd-11-stable/contrib/sendmail/src/
H A Dsendmail.h1525 ** PH related items
1536 PH *ph; /* PH server handle */

Completed in 614 milliseconds