OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:DIL
(Results
1 - 8
of
8
) sorted by relevancy
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
AddDiscriminators.cpp
199
const DILocation *
DIL
= I.getDebugLoc();
200
if (!
DIL
)
202
Location L = std::make_pair(
DIL
->getFilename(),
DIL
->getLine());
212
auto NewDIL =
DIL
->cloneWithBaseDiscriminator(Discriminator);
215
<<
DIL
->getFilename() << ":" <<
DIL
->getLine() << ":"
216
<<
DIL
->getColumn() << ":" << Discriminator << " "
220
LLVM_DEBUG(dbgs() <<
DIL
->getFilename() << ":" <<
DIL
->getLine() << ":
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/
MIRFSDiscriminator.cpp
45
const DILocation *
DIL
) {
51
uint64_t Ret = updateHash(std::to_string(
DIL
->getLine()));
53
Ret ^= updateHash(
DIL
->getScope()->getSubprogram()->getLinkageName());
54
for (
DIL
=
DIL
->getInlinedAt();
DIL
;
DIL
=
DIL
->getInlinedAt()) {
55
Ret ^= updateHash(std::to_string(
DIL
->getLine()));
56
Ret ^= updateHash(
DIL
->getScope()->getSubprogram()->getLinkageName())
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/IR/
PseudoProbe.cpp
29
const DILocation *
DIL
= DLoc;
30
auto Discriminator =
DIL
->getDiscriminator();
78
const DILocation *
DIL
= DLoc;
79
auto Discriminator =
DIL
->getDiscriminator();
94
DIL
=
DIL
->cloneWithDiscriminator(V);
95
Inst.setDebugLoc(
DIL
);
/src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
SampleContextTracker.cpp
198
DILocation *
DIL
= Inst.getDebugLoc();
199
if (!
DIL
)
206
ContextTrieNode *CalleeContext = getCalleeContextFor(
DIL
, CalleeName);
220
const DILocation *
DIL
) {
222
if (!
DIL
)
225
ContextTrieNode *CallerNode = getContextFor(
DIL
);
226
LineLocation CallSite = FunctionSamples::getCallSiteIdentifier(
DIL
);
239
SampleContextTracker::getContextSamplesFor(const DILocation *
DIL
) {
240
assert(
DIL
&& "Expect non-null location");
242
ContextTrieNode *ContextNode = getContextFor(
DIL
);
[
all
...]
SampleProfile.cpp
628
const DILocation *
DIL
= Inst.getDebugLoc();
629
if (!
DIL
) {
644
return FS->findFunctionSamplesAt(FunctionSamples::getCallSiteIdentifier(
DIL
),
654
const DILocation *
DIL
= Inst.getDebugLoc();
657
if (!
DIL
) {
671
ContextTracker->getIndirectCalleeContextSamplesFor(
DIL
);
690
auto CallSite = FunctionSamples::getCallSiteIdentifier(
DIL
);
716
const DILocation *
DIL
= Inst.getDebugLoc();
717
if (!
DIL
)
720
auto it = DILocation2SampleMap.try_emplace(
DIL
,nullptr)
[
all
...]
/src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/
SampleProfileLoaderBaseImpl.h
280
const DILocation *
DIL
= DLoc;
281
uint32_t LineOffset = FunctionSamples::getOffset(
DIL
);
282
uint32_t Discriminator =
DIL
->getBaseDiscriminator();
302
<<
DIL
->getBaseDiscriminator() << ":" << Inst
304
<<
DIL
->getBaseDiscriminator() << " - weight: " << R.get()
368
const DILocation *
DIL
= Inst.getDebugLoc();
369
if (!
DIL
)
372
auto it = DILocation2SampleMap.try_emplace(
DIL
, nullptr);
374
it.first->second = Samples->findFunctionSamples(
DIL
, Reader->getRemapper());
/src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp
1049
const DILocation *
DIL
= Inst->getDebugLoc();
1053
if (
DIL
&& Inst->getFunction()->isDebugInfoForProfiling() &&
1057
DIL
->cloneByMultiplyingDuplicationFactor(UF * VF.getKnownMinValue());
1063
<<
DIL
->getFilename() << " Line: " <<
DIL
->getLine());
1065
B.SetCurrentDebugLocation(
DIL
);
/src/external/apache2/llvm/dist/llvm/lib/Frontend/OpenMP/
OMPIRBuilder.cpp
314
DILocation *
DIL
= Loc.DL.get();
315
if (!
DIL
)
318
if (DIFile *DIF =
DIL
->getFile())
321
StringRef Function =
DIL
->getScope()->getSubprogram()->getName();
324
return getOrCreateSrcLocStr(Function, FileName,
DIL
->getLine(),
325
DIL
->getColumn());
Completed in 44 milliseconds
Indexes created Wed Aug 05 00:25:39 UTC 2026