OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Site
(Results
1 - 16
of
16
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/tools/llvm-profgen/
PseudoProbe.h
29
// Use func GUID and index as the location info of the inline
site
34
// Tree node to represent the inline relation and its inline
site
, we use a
44
uint64_t operator()(const InlineSite &
Site
) const {
45
return std::get<0>(
Site
) ^ std::get<1>(
Site
);
56
// Inline
site
to indicate the location in its inliner. As the node could also
62
// Caller node of the inline
site
66
PseudoProbeInlineTree(const InlineSite &
Site
) : ISite(
Site
){};
68
PseudoProbeInlineTree *getOrAddNode(const InlineSite &
Site
) {
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
SymbolRecordHelpers.cpp
44
InlineSiteSym
Site
= createRecord<InlineSiteSym>(Sym);
45
return
Site
.End;
75
InlineSiteSym
Site
= createRecord<InlineSiteSym>(Sym);
76
return
Site
.Parent;
/src/external/apache2/llvm/dist/llvm/lib/MC/
MCPseudoProbe.cpp
78
MCPseudoProbeInlineTree::getOrAddNode(InlineSite
Site
) {
79
auto Iter = Inlinees.find(
Site
);
81
auto *Node = new MCPseudoProbeInlineTree(std::get<0>(
Site
));
82
Inlinees[
Site
] = Node;
97
// which means, Function A inlines function B at call
site
with a probe id of
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
WasmException.cpp
69
// Compute the call-
site
table for wasm EH. Even though we use the same function
70
// name to share the common routines, a call
site
entry in the table corresponds
71
// to not a call
site
for possibly-throwing functions but a landing pad. In wasm
92
CallSiteEntry
Site
= {nullptr, nullptr, Info, FirstActions[I]};
95
CallSites[LPadIndex] =
Site
;
EHStreamer.cpp
53
/// pad
site
.
58
// The action table follows the call-
site
table in the LSDA. The individual
139
// Record the first action of the landing pad
site
.
143
// Information used when creating the call-
site
table. The action record
144
// field of the call
site
record is the offset of the first associated
208
/// Compute the call-
site
table. The entry for an invoke has a try-range
215
/// Call-sites are split into one or more call-
site
ranges associated with
219
/// call-
site
-range corresponding to the function section.
221
/// - With -basic-block-sections, one call-
site
range is created for each
225
// Later, one LSDA header will be emitted for each call-
site
range with it
[
all
...]
CodeViewDebug.cpp
244
InlineSite *
Site
= &SiteInsertion.first->second;
252
Site
->SiteFuncId = NextFuncId++;
254
Site
->SiteFuncId, ParentFuncId, maybeRecordFile(InlinedAt->getFile()),
256
Site
->Inlinee = Inlinee;
260
return *
Site
;
488
InlineSite &
Site
= getInlineSite(InlinedAt, Inlinee);
489
Site
.InlinedLocals.emplace_back(Var);
536
// of the inline call
site
.
543
InlineSite &
Site
=
546
addLocIfNotPresent(
Site
.ChildSites, Loc)
[
all
...]
CodeViewDebug.h
112
/// The ID of the inline
site
or function used with .cv_loc. Not a type
135
/// Map from inlined call
site
to inlined instructions and child inlined
338
const InlineSite &
Site
);
359
/// particular, locals from inlined code live inside the inlining
site
.
/src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
MachineModuleInfo.h
105
/// The current call
site
index being processed, if any. 0 if none.
256
/// Set the call
site
currently being processed.
257
void setCurrentCallSite(unsigned
Site
) { CurCallSite =
Site
; }
259
/// Get the call
site
currently being processed, if any. return zero if
MachineFunction.h
337
/// Map a landing pad's EH symbol to the call
site
indexes.
343
/// Map of invoke call
site
index values to associated begin EH_LABEL.
426
/// Map a call instruction to call
site
arguments forwarding info.
429
/// A helper function that returns call
site
info for a give call
1016
/// Map the landing pad's EH symbol to the call
site
indexes.
1035
/// Get the call
site
indexes for a landing pad EH symbol.
1038
"missing call
site
number for landing pad!");
1042
/// Return true if the landing pad Eh symbol has an associated call
site
.
1047
/// Map the begin label for a call
site
.
1048
void setCallSiteBeginLabel(MCSymbol *BeginLabel, unsigned
Site
) {
[
all
...]
/src/external/apache2/llvm/dist/llvm/include/llvm/ProfileData/
InstrProf.h
72
/// for a given
site
.
243
/// Get the value profile data for value
site
\p SiteIdx from \p InstrProfR
245
/// Annotate up to \p MaxMDCount (default 3) number of records per value
site
.
358
/// The number of value
site
count mismatches.
381
/// Get the number of value
site
count mismatches.
660
/// Value profiling data pairs at a given value
site
.
726
///
site
:
Site
.
728
uint32_t
Site
) const;
730
/// Return the array of profiled values at \p
Site
. If \p Total
[
all
...]
/src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCPseudoProbe.h
38
// INLINE
SITE
117
MCPseudoProbeInlineTree *getOrAddNode(InlineSite
Site
);
/src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
CodeViewYAMLDebugSections.cpp
450
for (const auto &
Site
: InlineeLines.Sites) {
451
Result->addInlineSite(TypeIndex(
Site
.Inlinee),
Site
.FileName,
452
Site
.SourceLineNum);
456
for (auto EF :
Site
.ExtraFiles) {
626
InlineeSite
Site
;
630
Site
.FileName = *ExpF;
631
Site
.Inlinee = IL.Header->Inlinee.getIndex();
632
Site
.SourceLineNum = IL.Header->SourceLineNum;
638
Site
.ExtraFiles.push_back(*ExpF2)
[
all
...]
/src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sys/windows/
wininet.d
448
GOPHER_SITE_ATTRIBUTE = "
Site
",
981
LPCTSTR
Site
;
1059
GOPHER_SITE_ATTRIBUTE_TYPE
Site
;
/src/external/apache2/llvm/dist/llvm/lib/ProfileData/
InstrProf.cpp
112
return "Function value
site
count change detected (counter mismatch)";
730
void InstrProfRecord::addValueData(uint32_t ValueKind, uint32_t
Site
,
/src/external/gpl2/gettext/dist/gettext-tools/tests/
xgettext-glade-1
650
<label>My Gnome
Site
</label>
1458
msgid "My Gnome
Site
"
/src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
AsmParser.cpp
1045
// context as it was at the diagnostic
site
.
3779
/// whether the caller is a real function or another inlined call
site
.
5856
InlineSite
Site
(CallerGuid, CallerProbeId);
5857
InlineStack.push_back(
Site
);
Completed in 32 milliseconds
Indexes created Sun Sep 27 00:26:35 UTC 2026