| /openbsd-src/gnu/llvm/llvm/lib/IR/ |
| H A D | PseudoProbe.cpp | 33 PseudoProbe Probe; in extractProbeFromDiscriminator() local 34 Probe.Id = in extractProbeFromDiscriminator() 36 Probe.Type = in extractProbeFromDiscriminator() 38 Probe.Attr = in extractProbeFromDiscriminator() 40 Probe.Factor = in extractProbeFromDiscriminator() 43 return Probe; in extractProbeFromDiscriminator() 51 PseudoProbe Probe; in extractProbe() local 52 Probe.Id = II->getIndex()->getZExtValue(); in extractProbe() 53 Probe.Type = (uint32_t)PseudoProbeType::Block; in extractProbe() 54 Probe.Attr = II->getAttributes()->getZExtValue(); in extractProbe() [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/MC/ |
| H A D | MCPseudoProbe.cpp | 91 const MCPseudoProbe &Probe, const MCPseudoProbeInlineStack &InlineStack) { in addPseudoProbe() argument 109 Top = InlineSite(Probe.getGuid(), 0); in addPseudoProbe() 127 Cur = Cur->getOrAddNode(InlineSite(Probe.getGuid(), Index)); in addPseudoProbe() 130 Cur->Probes.push_back(Probe); in addPseudoProbe() 168 for (const auto &Probe : Probes) { in emit() local 169 Probe.emit(MCOS, LastProbe); in emit() 170 LastProbe = &Probe; in emit() 230 const MCPseudoProbe *Probe = &SentinelProbe; in emit() local 231 Inlinee.second->emit(MCOS, Probe); in emit() 539 for (auto &Probe : It->second) { in printProbeForAddress() local [all …]
|
| H A D | MCStreamer.cpp | 1116 MCPseudoProbe Probe(ProbeSym, Guid, Index, Type, Attr); in emitPseudoProbe() local 1120 FnSym, Probe, InlineStack); in emitPseudoProbe()
|
| /openbsd-src/gnu/llvm/llvm/lib/Support/ |
| H A D | FoldingSet.cpp | 241 void *Probe = OldBuckets[i]; in GrowBucketCount() local 242 if (!Probe) continue; in GrowBucketCount() 243 while (Node *NodeInBucket = GetNextPtr(Probe)) { in GrowBucketCount() 245 Probe = NodeInBucket->getNextInBucket(); in GrowBucketCount() 282 void *Probe = *Bucket; in FindNodeOrInsertPos() local 287 while (Node *NodeInBucket = GetNextPtr(Probe)) { in FindNodeOrInsertPos() 292 Probe = NodeInBucket->getNextInBucket(); in FindNodeOrInsertPos() 401 void *Probe = NodePtr->getNextInBucket(); in advance() local 403 if (FoldingSetNode *NextNodeInBucket = GetNextPtr(Probe)) in advance() 407 void **Bucket = GetBucketPtr(Probe); in advance()
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/ubsan/ |
| H A D | ubsan_type_hash_itanium.cpp | 114 unsigned Probe = First; in getTypeCacheHashTableBucket() local 116 if (!__ubsan_vptr_hash_set[Probe] || __ubsan_vptr_hash_set[Probe] == V) in getTypeCacheHashTableBucket() 117 return &__ubsan_vptr_hash_set[Probe]; in getTypeCacheHashTableBucket() 118 Probe += ((V >> 16) & 65535) + 1; in getTypeCacheHashTableBucket() 119 if (Probe >= HashTableSize) in getTypeCacheHashTableBucket() 120 Probe -= HashTableSize; in getTypeCacheHashTableBucket()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/MC/ |
| H A D | MCPseudoProbe.h | 236 void addProbes(ProbeType Probe) { Probes.push_back(Probe); } in addProbes() argument 263 void addPseudoProbe(const MCPseudoProbe &Probe, 288 void addPseudoProbe(MCSymbol *FuncSym, const MCPseudoProbe &Probe, in addPseudoProbe() argument 290 MCProbeDivisions[FuncSym].addPseudoProbe(Probe, InlineStack); in addPseudoProbe() 396 const MCDecodedPseudoProbe *Probe, 411 getInlinerDescForProbe(const MCDecodedPseudoProbe *Probe) const;
|
| /openbsd-src/gnu/llvm/llvm/lib/Transforms/IPO/ |
| H A D | SampleProfileProbe.cpp | 140 if (std::optional<PseudoProbe> Probe = extractProbe(I)) { in collectProbeFactors() local 142 ProbeFactors[{Probe->Id, Hash}] += Probe->Factor; in collectProbeFactors() 340 auto *Probe = Builder.CreateCall(ProbeFn, Args); in instrumentOneFunc() local 341 AssignDebugLoc(Probe); in instrumentOneFunc() 424 if (std::optional<PseudoProbe> Probe = extractProbe(I)) { in runOnFunction() local 426 ProbeFactors[{Probe->Id, Hash}] += BBProfileCount(&Block); in runOnFunction() 434 if (std::optional<PseudoProbe> Probe = extractProbe(I)) { in runOnFunction() local 436 float Sum = ProbeFactors[{Probe->Id, Hash}]; in runOnFunction()
|
| H A D | SampleProfile.cpp | 623 std::optional<PseudoProbe> Probe = extractProbe(Inst); in getProbeWeight() local 626 if (!Probe) in getProbeWeight() 653 const ErrorOr<uint64_t> &R = FS->findSamplesAt(Probe->Id, 0); in getProbeWeight() 655 uint64_t Samples = R.get() * Probe->Factor; in getProbeWeight() 656 bool FirstMark = CoverageTracker.markSamplesUsed(FS, Probe->Id, 0, Samples); in getProbeWeight() 662 Remark << ore::NV("ProbeId", Probe->Id); in getProbeWeight() 664 Remark << ore::NV("Factor", Probe->Factor); in getProbeWeight() 671 LLVM_DEBUG(dbgs() << " " << Probe->Id << ":" << Inst in getProbeWeight() 673 << format("%0.2f", Probe->Factor) << ")\n"); in getProbeWeight() 776 std::optional<PseudoProbe> Probe = extractProbe(Inst); in findFunctionSamples() local [all …]
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/ProfileData/ |
| H A D | InstrProfCorrelator.h | 85 struct Probe { struct 96 std::vector<Probe> Probes; argument 99 friend struct yaml::MappingTraits<Probe>; 100 friend struct yaml::SequenceElementTraits<Probe>;
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-profgen/ |
| H A D | ProfileGenerator.cpp | 559 const MCDecodedPseudoProbe *Probe = PI.first; in populateBodySamplesWithProbesForAllFunctions() local 562 Binary->getInlineContextForProbe(Probe, FrameVec, true); in populateBodySamplesWithProbesForAllFunctions() 565 FunctionProfile.addBodySamplesForProbe(Probe->getIndex(), Count); in populateBodySamplesWithProbesForAllFunctions() 566 if (Probe->isEntry()) in populateBodySamplesWithProbesForAllFunctions() 1089 for (const auto &Probe : It->second) { in extractProbesFromRange() local 1090 ProbeCounter[&Probe] += Count; in extractProbesFromRange() 1150 const MCDecodedPseudoProbe *Probe = PI.first; in populateBodySamplesWithProbes() local 1154 if (!Probe->isBlock() || Count == 0) in populateBodySamplesWithProbes() 1157 ContextTrieNode *ContextNode = getContextNodeForLeafProbe(CtxKey, Probe); in populateBodySamplesWithProbes() 1162 FrameSamples[Probe->getInlineTreeNode()].insert(&FunctionProfile); in populateBodySamplesWithProbes() [all …]
|
| H A D | ProfiledBinary.h | 542 void getInlineContextForProbe(const MCDecodedPseudoProbe *Probe, 546 ProbeDecoder.getInlineContextForProbe(Probe, ProbeInlineContext, 567 getInlinerDescForProbe(const MCDecodedPseudoProbe *Probe) { in getInlinerDescForProbe() argument 568 return ProbeDecoder.getInlinerDescForProbe(Probe); in getInlinerDescForProbe()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/X86/ |
| H A D | X86DynAllocaExpander.cpp | 44 enum Lowering { TouchAndSub, Sub, Probe }; enumerator 101 return Probe; in getLowering() 169 case Probe: in computeLowerings() 251 case Probe: in lower()
|
| /openbsd-src/gnu/llvm/llvm/lib/ProfileData/ |
| H A D | InstrProfCorrelator.cpp | 166 template <> struct yaml::MappingTraits<InstrProfCorrelator::Probe> { 167 static void mapping(yaml::IO &io, InstrProfCorrelator::Probe &P) { in mapping() 178 template <> struct yaml::SequenceElementTraits<InstrProfCorrelator::Probe> { 326 InstrProfCorrelator::Probe P; in correlateProfileDataImpl()
|
| /openbsd-src/sys/arch/mips64/mips64/ |
| H A D | tlbhandler.S | 167 tlbp # Probe the invalid entry 380 tlbp # Probe for the entry. 428 tlbp # Probe for the entry.
|
| /openbsd-src/lib/libcrypto/ |
| H A D | sparccpuid.S | |
| /openbsd-src/gnu/llvm/llvm/include/llvm/ADT/ |
| H A D | FoldingSet.h | 743 void *Probe = static_cast<FoldingSetNode*>(Ptr)->getNextInBucket(); in advance() local 744 uintptr_t x = reinterpret_cast<uintptr_t>(Probe) & ~0x1; in advance()
|
| /openbsd-src/regress/sys/netinet/arp/ |
| H A D | Makefile | 133 @echo Send ARP Probe for existing address and expect correct reply
|
| /openbsd-src/gnu/llvm/llvm/docs/ |
| H A D | Extensions.rst | 566 Stack Probe Emission 607 Stack Probe Emission
|
| /openbsd-src/gnu/gcc/fixincludes/ |
| H A D | aclocal.m4 | 409 dnl Probe number of bits in a byte.
|
| /openbsd-src/usr.bin/file/magdir/ |
| H A D | images | 589 0 string \x0b\x00\x03\x00 Cytovision FISH Probe file
|
| /openbsd-src/sys/arch/i386/conf/ |
| H A D | GENERIC | 742 # Joystick driver. Probe is a little strange; add only if you have one.
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/ |
| H A D | aclocal.m4 | 564 dnl Probe number of bits in a byte.
|
| /openbsd-src/gnu/lib/libstdc++/libstdc++/ |
| H A D | acinclude.m4 | 1205 dnl Probe for locale support if no specific model is specified.
|
| H A D | aclocal.m4 | 1217 dnl Probe for locale support if no specific model is specified.
|
| /openbsd-src/gnu/usr.bin/binutils-2.17/cpu/ |
| H A D | frv.cpu | 2046 (dnf f-TLBPRopx "TLB Probe operation number" () 28 3) 2047 (dnf f-TLBPRL "TLB Probe L flag" () 25 1) 3180 (dnop TLBPRopx "TLB Probe operation number" () h-uint f-TLBPRopx) 3181 (dnop TLBPRL "TLB Probe L flag" () h-uint f-TLBPRL) 6938 "TLB Probe"
|