| /openbsd/src/gnu/llvm/llvm/include/llvm/MC/ |
| D | MCPseudoProbe.h | 209 uint64_t operator()(const InlineSite &Site) const { in operator() 210 return std::get<0>(Site) ^ std::get<1>(Site); in operator() 239 DerivedProbeInlineTreeType *getOrAddNode(const InlineSite &Site) { in getOrAddNode() argument 241 Site, std::make_unique<DerivedProbeInlineTreeType>(Site)); in getOrAddNode() 258 MCPseudoProbeInlineTree(const InlineSite &Site) { in MCPseudoProbeInlineTree() argument 259 this->Guid = std::get<0>(Site); in MCPseudoProbeInlineTree() 278 MCDecodedPseudoProbeInlineTree(const InlineSite &Site) : ISite(Site){}; in MCDecodedPseudoProbeInlineTree() argument
|
| /openbsd/src/gnu/llvm/llvm/lib/DebugInfo/CodeView/ |
| D | SymbolRecordHelpers.cpp | 44 InlineSiteSym Site = createRecord<InlineSiteSym>(Sym); in getScopeEndOffset() local 45 return Site.End; in getScopeEndOffset() 75 InlineSiteSym Site = createRecord<InlineSiteSym>(Sym); in getScopeParentOffset() local 76 return Site.Parent; in getScopeParentOffset()
|
| /openbsd/src/gnu/llvm/llvm/lib/IR/ |
| D | Assumptions.cpp | 51 bool addAssumptionsImpl(AttrSite &Site, in addAssumptionsImpl() argument 56 DenseSet<StringRef> CurAssumptions = getAssumptions(Site); in addAssumptionsImpl() 61 LLVMContext &Ctx = Site.getContext(); in addAssumptionsImpl() 62 Site.addFnAttr(llvm::Attribute::get( in addAssumptionsImpl()
|
| /openbsd/src/gnu/llvm/compiler-rt/lib/profile/ |
| D | InstrProfilingValue.c | 315 ValueProfNode *Site = in initializeValueProfRuntimeRecord() local 317 while (Site) { in initializeValueProfRuntimeRecord() 319 Site = Site->Next; in initializeValueProfRuntimeRecord() 330 static ValueProfNode *getNextNValueData(uint32_t VK, uint32_t Site, in getNextNValueData() argument 334 ValueProfNode *VNode = StartNode ? StartNode : RTRecord.NodesKind[VK][Site]; in getNextNValueData()
|
| D | InstrProfilingInternal.h | 131 uint32_t (*GetNumValueDataForSite)(uint32_t VK, uint32_t Site); 142 struct ValueProfNode *(*GetValueData)(uint32_t ValueKind, uint32_t Site,
|
| /openbsd/src/gnu/llvm/llvm/include/llvm/ProfileData/ |
| D | InstrProf.h | 767 uint32_t Site) const; 773 getValueForSite(uint32_t ValueKind, uint32_t Site, 780 uint32_t Site) const; 786 void addValueData(uint32_t ValueKind, uint32_t Site, 950 uint32_t Site) const { in getNumValueDataForSite() argument 951 return getValueSitesForKind(ValueKind)[Site].ValueData.size(); in getNumValueDataForSite() 955 InstrProfRecord::getValueForSite(uint32_t ValueKind, uint32_t Site, in getValueForSite() argument 959 uint32_t N = getNumValueDataForSite(ValueKind, Site); in getValueForSite() 966 TotalCount = getValueForSite(VD.get(), ValueKind, Site); in getValueForSite() 973 uint32_t Site) const { in getValueForSite() argument [all …]
|
| D | MemProf.h | 411 for (const ArrayRef<FrameId> Site : Record.CallSites) { in MemProfRecord() local 413 for (const FrameId Id : Site) { in MemProfRecord()
|
| /openbsd/src/gnu/llvm/llvm/lib/CodeGen/AsmPrinter/ |
| D | EHStreamer.cpp | 310 CallSiteEntry Site = { in computeCallSiteTable() local 320 if (Site.LPad == Prev.LPad && Site.Action == Prev.Action) { in computeCallSiteTable() 322 Prev.EndLabel = Site.EndLabel; in computeCallSiteTable() 329 CallSites.push_back(Site); in computeCallSiteTable() 336 CallSites[SiteNo - 1] = Site; in computeCallSiteTable() 349 CallSiteEntry Site = {LastLabel, CallSiteRanges.back().FragmentEndLabel, in computeCallSiteTable() local 351 CallSites.push_back(Site); in computeCallSiteTable()
|
| D | WasmException.cpp | 93 CallSiteEntry Site = {nullptr, nullptr, Info, FirstActions[I]}; in computeCallSiteTable() local 96 CallSites[LPadIndex] = Site; in computeCallSiteTable()
|
| D | CodeViewDebug.cpp | 237 InlineSite *Site = &SiteInsertion.first->second; in getInlineSite() local 245 Site->SiteFuncId = NextFuncId++; in getInlineSite() 247 Site->SiteFuncId, ParentFuncId, maybeRecordFile(InlinedAt->getFile()), in getInlineSite() 249 Site->Inlinee = Inlinee; in getInlineSite() 253 return *Site; in getInlineSite() 490 InlineSite &Site = getInlineSite(InlinedAt, Inlinee); in recordLocalVariable() local 491 Site.InlinedLocals.emplace_back(Var); in recordLocalVariable() 545 InlineSite &Site = in maybeRecordLocation() local 548 addLocIfNotPresent(Site.ChildSites, Loc); in maybeRecordLocation() 1000 const InlineSite &Site) { in emitInlinedCallSite() argument [all …]
|
| D | CodeViewDebug.h | 357 const InlineSite &Site);
|
| /openbsd/src/gnu/llvm/llvm/lib/ObjectYAML/ |
| D | CodeViewYAMLDebugSections.cpp | 450 for (const auto &Site : InlineeLines.Sites) { in toCodeViewSubsection() local 451 Result->addInlineSite(TypeIndex(Site.Inlinee), Site.FileName, in toCodeViewSubsection() 452 Site.SourceLineNum); in toCodeViewSubsection() 456 for (auto EF : Site.ExtraFiles) { in toCodeViewSubsection() 626 InlineeSite Site; in fromCodeViewSubsection() local 630 Site.FileName = *ExpF; in fromCodeViewSubsection() 631 Site.Inlinee = IL.Header->Inlinee.getIndex(); in fromCodeViewSubsection() 632 Site.SourceLineNum = IL.Header->SourceLineNum; in fromCodeViewSubsection() 638 Site.ExtraFiles.push_back(*ExpF2); in fromCodeViewSubsection() 641 Result->InlineeLines.Sites.push_back(Site); in fromCodeViewSubsection()
|
| /openbsd/src/gnu/llvm/llvm/include/llvm/CodeGen/ |
| D | MachineModuleInfo.h | 188 void setCurrentCallSite(unsigned Site) { CurCallSite = Site; } in setCurrentCallSite() argument
|
| D | MachineFunction.h | 1188 void setCallSiteBeginLabel(MCSymbol *BeginLabel, unsigned Site) { 1189 CallSiteMap[BeginLabel] = Site;
|
| /openbsd/src/gnu/llvm/llvm/utils/lit/lit/ExampleTests.ObjDir/ |
| D | lit.site.cfg | 3 # Site specific configuration file.
|
| /openbsd/src/usr.bin/ssh/ |
| D | ssh_config | 16 # Site-wide defaults for some commonly used options. For a comprehensive
|
| /openbsd/src/gnu/usr.bin/perl/lib/ |
| D | perlbug.t | 51 like($result, qr/Site configuration information/,
|
| /openbsd/src/gnu/llvm/libcxx/docs/ |
| D | ReleaseNotes.rst | 27 For more information about libc++, please see the `Libc++ Web Site 28 <https://libcxx.llvm.org>`_ or the `LLVM Web Site <https://llvm.org>`_.
|
| D | TestingLibcxx.rst | 74 Using a Custom Site Configuration
|
| /openbsd/src/gnu/usr.bin/perl/ |
| D | README.vos | 59 Site-specific perl extensions and modules can be installed in one of
|
| /openbsd/src/gnu/llvm/llvm/lib/MC/ |
| D | MCAsmStreamer.cpp | 2346 for (const auto &Site : InlineStack) in emitPseudoProbe() local 2347 OS << " @ " << std::get<0>(Site) << ":" << std::get<1>(Site); in emitPseudoProbe()
|
| /openbsd/src/gnu/llvm/llvm/lib/ProfileData/ |
| D | InstrProf.cpp | 788 void InstrProfRecord::addValueData(uint32_t ValueKind, uint32_t Site, in addValueData() argument
|
| /openbsd/src/gnu/llvm/clang/docs/ |
| D | ReleaseNotes.rst | 31 latest release, please see the `Clang Web Site <https://clang.llvm.org>`_ or the 32 `LLVM Web Site <https://llvm.org>`_.
|
| /openbsd/src/gnu/llvm/llvm/lib/MC/MCParser/ |
| D | AsmParser.cpp | 5906 InlineSite Site(CallerGuid, CallerProbeId); in parseDirectivePseudoProbe() local 5907 InlineStack.push_back(Site); in parseDirectivePseudoProbe()
|
| /openbsd/src/gnu/usr.bin/perl/pod/ |
| D | perl5005delta.pod | 499 Configure has many incremental improvements. Site-wide policy for building
|