OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DIL
(Results
1 - 20
of
20
) sorted by relevancy
/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
...]
MachineInstr.cpp
1732
auto *
DIL
= dyn_cast<DILabel>(MO.getMetadata());
1733
if (
DIL
&& !
DIL
->getName().empty())
1734
OS << "\"" <<
DIL
->getName() << '\"';
/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
...]
LoopUnroll.cpp
583
if (const DILocation *
DIL
= I.getDebugLoc()) {
584
auto NewDIL =
DIL
->cloneByMultiplyingDuplicationFactor(ULO.Count);
590
<<
DIL
->getFilename() << " Line: " <<
DIL
->getLine());
LoopUnrollAndJam.cpp
358
if (const DILocation *
DIL
= I.getDebugLoc()) {
359
auto NewDIL =
DIL
->cloneByMultiplyingDuplicationFactor(Count);
365
<<
DIL
->getFilename() << " Line: " <<
DIL
->getLine());
/src/external/apache2/llvm/dist/llvm/lib/Analysis/
InlineAdvisor.cpp
387
for (DILocation *
DIL
= DLoc.get();
DIL
;
DIL
=
DIL
->getInlinedAt()) {
394
DIL
->getLine() -
DIL
->getScope()->getSubprogram()->getLine();
395
uint32_t Discriminator =
DIL
->getBaseDiscriminator();
396
StringRef Name =
DIL
->getScope()->getSubprogram()->getLinkageName();
398
Name =
DIL
->getScope()->getSubprogram()->getName();
400
<< llvm::utostr(
DIL
->getColumn())
[
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
...]
SampleProfileProbe.cpp
53
static uint64_t getCallStackHash(const DILocation *
DIL
) {
55
const DILocation *InlinedAt =
DIL
?
DIL
->getInlinedAt() : nullptr;
301
auto
DIL
= DILocation::get(SP->getContext(), 0, 0, SP);
302
I->setDebugLoc(
DIL
);
360
if (auto
DIL
= Call->getDebugLoc()) {
361
DIL
=
DIL
->cloneWithDiscriminator(V);
362
Call->setDebugLoc(
DIL
);
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/lib/ProfileData/
SampleProf.cpp
209
unsigned FunctionSamples::getOffset(const DILocation *
DIL
) {
210
return (
DIL
->getLine() -
DIL
->getScope()->getSubprogram()->getLine()) &
214
LineLocation FunctionSamples::getCallSiteIdentifier(const DILocation *
DIL
) {
221
DIL
->getDiscriminator()),
224
return LineLocation(FunctionSamples::getOffset(
DIL
),
225
DIL
->getBaseDiscriminator());
229
const DILocation *
DIL
, SampleProfileReaderItaniumRemapper *Remapper) const {
230
assert(
DIL
);
233
const DILocation *PrevDIL =
DIL
;
[
all
...]
/src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/IPO/
SampleContextTracker.h
102
getIndirectCalleeContextSamplesFor(const DILocation *
DIL
);
105
FunctionSamples *getContextSamplesFor(const DILocation *
DIL
);
130
ContextTrieNode *getContextFor(const DILocation *
DIL
);
131
ContextTrieNode *getCalleeContextFor(const DILocation *
DIL
,
/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/Target/X86/MCTargetDesc/
X86MCTargetDesc.cpp
151
{codeview::RegisterId::
DIL
, X86::
DIL
},
621
case X86::
DIL
: case X86::DI: case X86::EDI: case X86::RDI:
649
case X86::
DIL
: case X86::DI: case X86::EDI: case X86::RDI:
650
return X86::
DIL
;
686
case X86::
DIL
: case X86::DI: case X86::EDI: case X86::RDI:
722
case X86::
DIL
: case X86::DI: case X86::EDI: case X86::RDI:
758
case X86::
DIL
: case X86::DI: case X86::EDI: case X86::RDI:
X86BaseInfo.h
1212
reg == X86::SIL || reg == X86::
DIL
);
/src/external/apache2/llvm/dist/llvm/include/llvm/ProfileData/
SampleProf.h
851
static unsigned getOffset(const DILocation *
DIL
);
857
static LineLocation getCallSiteIdentifier(const DILocation *
DIL
);
859
/// Get the FunctionSamples of the inline instance where
DIL
originates
863
/// \p
DIL
is the inlined instance in which that instruction is coming from.
871
const DILocation *
DIL
,
/src/external/apache2/llvm/dist/llvm/lib/Target/X86/
X86RegisterInfo.cpp
590
Reserved.set(X86::
DIL
);
616
{X86::SIL, X86::
DIL
, X86::BPL, X86::SPL,
/src/external/apache2/llvm/dist/llvm/lib/Target/X86/Disassembler/
X86DisassemblerDecoder.h
95
ENTRY(
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());
/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
);
Completed in 35 milliseconds
Indexes created Mon Jun 08 00:24:58 UTC 2026