Home
last modified time | relevance | path

Searched refs:Site (Results 1 – 25 of 83) sorted by relevance

1234

/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/
DSymbolRecordHelpers.cpp44 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()
/external/llvm-project/llvm/lib/DebugInfo/CodeView/
DSymbolRecordHelpers.cpp44 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()
/external/compiler-rt/lib/profile/
DInstrProfilingValue.c284 ValueProfNode *Site = in initializeValueProfRuntimeRecord() local
286 while (Site) { in initializeValueProfRuntimeRecord()
288 Site = Site->Next; in initializeValueProfRuntimeRecord()
299 static ValueProfNode *getNextNValueData(uint32_t VK, uint32_t Site, in getNextNValueData() argument
303 ValueProfNode *VNode = StartNode ? StartNode : RTRecord.NodesKind[VK][Site]; in getNextNValueData()
DInstrProfilingInternal.h119 uint32_t (*GetNumValueDataForSite)(uint32_t VK, uint32_t Site);
130 struct ValueProfNode *(*GetValueData)(uint32_t ValueKind, uint32_t Site,
/external/llvm-project/llvm/test/CodeGen/X86/
Dgnu-eh-alternative.ll58 ; NO128: .long .Lfunc_begin0-.Lfunc_begin0 # >> Call Site 1 <<
62 ; NO128: .long .Ltmp0-.Lfunc_begin0 # >> Call Site 2 <<
66 ; NO128: .long .Ltmp1-.Lfunc_begin0 # >> Call Site 3 <<
76 ; ULEB128: .uleb128 .Lfunc_begin0-.Lfunc_begin0 # >> Call Site 1 <<
80 ; ULEB128: .uleb128 .Ltmp0-.Lfunc_begin0 # >> Call Site 2 <<
84 ; ULEB128: .uleb128 .Ltmp1-.Lfunc_begin0 # >> Call Site 3 <<
/external/llvm/lib/CodeGen/AsmPrinter/
DEHStreamer.cpp263 CallSiteEntry Site = { LastLabel, BeginLabel, nullptr, 0 }; in computeCallSiteTable() local
264 CallSites.push_back(Site); in computeCallSiteTable()
276 CallSiteEntry Site = { in computeCallSiteTable() local
286 if (Site.LPad == Prev.LPad && Site.Action == Prev.Action) { in computeCallSiteTable()
288 Prev.EndLabel = Site.EndLabel; in computeCallSiteTable()
295 CallSites.push_back(Site); in computeCallSiteTable()
302 CallSites[SiteNo - 1] = Site; in computeCallSiteTable()
313 CallSiteEntry Site = { LastLabel, nullptr, nullptr, 0 }; in computeCallSiteTable() local
314 CallSites.push_back(Site); in computeCallSiteTable()
DCodeViewDebug.cpp121 InlineSite *Site = &SiteInsertion.first->second; in getInlineSite() local
123 Site->SiteFuncId = NextFuncId++; in getInlineSite()
124 Site->Inlinee = Inlinee; in getInlineSite()
128 return *Site; in getInlineSite()
292 InlineSite &Site = getInlineSite(InlinedAt, Inlinee); in recordLocalVariable() local
293 Site.InlinedLocals.emplace_back(Var); in recordLocalVariable()
348 InlineSite &Site = in maybeRecordLocation() local
351 addLocIfNotPresent(Site.ChildSites, Loc); in maybeRecordLocation()
533 const InlineSite &Site) { in collectInlineSiteChildren() argument
534 for (const DILocation *ChildSiteLoc : Site.ChildSites) { in collectInlineSiteChildren()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/
DEHStreamer.cpp272 CallSiteEntry Site = { LastLabel, BeginLabel, nullptr, 0 }; in computeCallSiteTable() local
273 CallSites.push_back(Site); in computeCallSiteTable()
285 CallSiteEntry Site = { in computeCallSiteTable() local
295 if (Site.LPad == Prev.LPad && Site.Action == Prev.Action) { in computeCallSiteTable()
297 Prev.EndLabel = Site.EndLabel; in computeCallSiteTable()
304 CallSites.push_back(Site); in computeCallSiteTable()
311 CallSites[SiteNo - 1] = Site; in computeCallSiteTable()
322 CallSiteEntry Site = { LastLabel, nullptr, nullptr, 0 }; in computeCallSiteTable() local
323 CallSites.push_back(Site); in computeCallSiteTable()
DWasmException.cpp91 CallSiteEntry Site = {nullptr, nullptr, Info, FirstActions[I]}; in computeCallSiteTable() local
94 CallSites[LPadIndex] = Site; in computeCallSiteTable()
/external/llvm-project/compiler-rt/lib/profile/
DInstrProfilingValue.c315 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()
/external/llvm/include/llvm/ProfileData/
DInstrProf.h593 uint32_t Site) const;
598 getValueForSite(uint32_t ValueKind, uint32_t Site,
604 uint32_t Site) const;
608 void addValueData(uint32_t ValueKind, uint32_t Site,
692 uint32_t Site) const { in getNumValueDataForSite() argument
693 return getValueSitesForKind(ValueKind)[Site].ValueData.size(); in getNumValueDataForSite()
697 InstrProfRecord::getValueForSite(uint32_t ValueKind, uint32_t Site, in getValueForSite() argument
701 uint32_t N = getNumValueDataForSite(ValueKind, Site); in getValueForSite()
708 TotalCount = getValueForSite(VD.get(), ValueKind, Site); in getValueForSite()
715 uint32_t Site) const { in getValueForSite() argument
[all …]
/external/llvm-project/llvm/include/llvm/ProfileData/
DInstrProf.h728 uint32_t Site) const;
734 getValueForSite(uint32_t ValueKind, uint32_t Site,
741 uint32_t Site) const;
747 void addValueData(uint32_t ValueKind, uint32_t Site,
887 uint32_t Site) const { in getNumValueDataForSite() argument
888 return getValueSitesForKind(ValueKind)[Site].ValueData.size(); in getNumValueDataForSite()
892 InstrProfRecord::getValueForSite(uint32_t ValueKind, uint32_t Site, in getValueForSite() argument
896 uint32_t N = getNumValueDataForSite(ValueKind, Site); in getValueForSite()
903 TotalCount = getValueForSite(VD.get(), ValueKind, Site); in getValueForSite()
910 uint32_t Site) const { in getValueForSite() argument
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ProfileData/
DInstrProf.h722 uint32_t Site) const;
728 getValueForSite(uint32_t ValueKind, uint32_t Site,
735 uint32_t Site) const;
741 void addValueData(uint32_t ValueKind, uint32_t Site,
881 uint32_t Site) const { in getNumValueDataForSite() argument
882 return getValueSitesForKind(ValueKind)[Site].ValueData.size(); in getNumValueDataForSite()
886 InstrProfRecord::getValueForSite(uint32_t ValueKind, uint32_t Site, in getValueForSite() argument
890 uint32_t N = getNumValueDataForSite(ValueKind, Site); in getValueForSite()
897 TotalCount = getValueForSite(VD.get(), ValueKind, Site); in getValueForSite()
904 uint32_t Site) const { in getValueForSite() argument
[all …]
/external/libcxxabi/test/native/arm-linux-eabi/
Dttype-encoding-90.pass.sh.s79 .long .Lfunc_begin0-.Lfunc_begin0 @ >> Call Site 1 <<
83 .long .Ltmp0-.Lfunc_begin0 @ >> Call Site 2 <<
87 .long .Ltmp1-.Lfunc_begin0 @ >> Call Site 3 <<
Dttype-encoding-00.pass.sh.s80 .long .Lfunc_begin0-.Lfunc_begin0 @ >> Call Site 1 <<
84 .long .Ltmp0-.Lfunc_begin0 @ >> Call Site 2 <<
88 .long .Ltmp1-.Lfunc_begin0 @ >> Call Site 3 <<
/external/llvm-project/libcxxabi/test/native/arm-linux-eabi/
Dttype-encoding-90.pass.sh.s79 .long .Lfunc_begin0-.Lfunc_begin0 @ >> Call Site 1 <<
83 .long .Ltmp0-.Lfunc_begin0 @ >> Call Site 2 <<
87 .long .Ltmp1-.Lfunc_begin0 @ >> Call Site 3 <<
Dttype-encoding-00.pass.sh.s80 .long .Lfunc_begin0-.Lfunc_begin0 @ >> Call Site 1 <<
84 .long .Ltmp0-.Lfunc_begin0 @ >> Call Site 2 <<
88 .long .Ltmp1-.Lfunc_begin0 @ >> Call Site 3 <<
/external/llvm/include/llvm/CodeGen/
DMachineModuleInfo.h384 void setCallSiteBeginLabel(MCSymbol *BeginLabel, unsigned Site) { in setCallSiteBeginLabel() argument
385 CallSiteMap[BeginLabel] = Site; in setCallSiteBeginLabel()
402 void setCurrentCallSite(unsigned Site) { CurCallSite = Site; } in setCurrentCallSite() argument
/external/kotlinx.coroutines/site/docs/_sass/
D_layout.scss4 // Site header
27 // Site footer
/external/llvm-project/llvm/lib/CodeGen/AsmPrinter/
DEHStreamer.cpp310 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()
DWasmException.cpp92 CallSiteEntry Site = {nullptr, nullptr, Info, FirstActions[I]}; in computeCallSiteTable() local
95 CallSites[LPadIndex] = Site; in computeCallSiteTable()
/external/llvm/test/tools/llvm-profdata/
Dvalue-prof.proftext48 #ICTXT: Indirect Call Site Count: 3
54 #IC: Indirect Call Site Count: 3
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/
DCodeViewYAMLDebugSections.cpp450 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()
/external/llvm-project/llvm/lib/ObjectYAML/
DCodeViewYAMLDebugSections.cpp450 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()
/external/llvm-project/llvm/test/tools/llvm-profdata/
Dvalue-prof.proftext48 #ICTXT: Indirect Call Site Count: 3
54 #IC: Indirect Call Site Count: 3

1234