OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:InlinedAt
(Results
1 - 25
of
30
) sorted by relevancy
1
2
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
PseudoProbePrinter.cpp
56
auto *
InlinedAt
= DebugLoc ? DebugLoc->getInlinedAt() : nullptr;
57
while (
InlinedAt
) {
58
const DISubprogram *SP =
InlinedAt
->getScope()->getSubprogram();
66
InlinedAt
->getDiscriminator());
68
InlinedAt
=
InlinedAt
->getInlinedAt();
DwarfDebug.h
69
const DILocation *
InlinedAt
;
80
: Entity(N),
InlinedAt
(IA), SubclassID(ID) {}
86
const DILocation *getInlinedAt() const { return
InlinedAt
; }
CodeViewDebug.h
225
InlineSite &getInlineSite(const DILocation *
InlinedAt
,
337
void emitInlinedCallSite(const FunctionInfo &FI, const DILocation *
InlinedAt
,
CodeViewDebug.cpp
241
CodeViewDebug::getInlineSite(const DILocation *
InlinedAt
,
243
auto SiteInsertion = CurFn->InlineSites.insert({
InlinedAt
, InlineSite()});
247
if (const DILocation *OuterIA =
InlinedAt
->getInlinedAt())
249
getInlineSite(OuterIA,
InlinedAt
->getScope()->getSubprogram())
254
Site->SiteFuncId, ParentFuncId, maybeRecordFile(
InlinedAt
->getFile()),
255
InlinedAt
->getLine(),
InlinedAt
->getColumn(), SMLoc());
485
if (const DILocation *
InlinedAt
= LS->getInlinedAt()) {
488
InlineSite &Site = getInlineSite(
InlinedAt
, Inlinee);
918
const DILocation *
InlinedAt
,
[
all
...]
DbgEntityHistoryCalculator.cpp
151
if (const DILocation *
InlinedAt
= Entity.second) {
152
Scope = LScopes.findInlinedScope(LocalVar->getScope(),
InlinedAt
);
/src/external/apache2/llvm/dist/llvm/bindings/go/llvm/
IRBindings.cpp
55
LLVMMetadataRef
InlinedAt
) {
61
InlinedAt
? unwrap<MDNode>(
InlinedAt
) : nullptr));
66
const auto*
InlinedAt
= Loc.getInlinedAt();
71
InlinedAt
== nullptr ? nullptr : wrap(
InlinedAt
->getRawInlinedAt()),
IRBindings.h
33
LLVMMetadataRef
InlinedAt
;
48
LLVMMetadataRef
InlinedAt
);
dibuilder.go
579
d.m.Context().C, C.uint(l.Line), C.uint(l.Col), l.Scope.C, l.
InlinedAt
.C)
588
d.m.Context().C, C.uint(l.Line), C.uint(l.Col), l.Scope.C, l.
InlinedAt
.C)
/src/external/apache2/llvm/dist/llvm/lib/IR/
DebugLoc.cpp
71
DebugLoc DebugLoc::appendInlinedAt(const DebugLoc &DL, DILocation *
InlinedAt
,
75
DILocation *Last =
InlinedAt
;
DebugInfo.cpp
585
auto *
InlinedAt
= map(MLD->getInlinedAt());
588
MLD->getColumn(), Scope,
InlinedAt
);
590
Scope,
InlinedAt
);
732
MDNode *
InlinedAt
= DL.getInlinedAt();
734
InlinedAt
= remap(
InlinedAt
);
736
Scope,
InlinedAt
);
812
//
inlinedAt
info. The location might be sensitive to when inlining occurs.
1010
LLVMMetadataRef
InlinedAt
) {
1012
unwrap(
InlinedAt
)));
[
all
...]
LLVMContextImpl.h
260
Metadata *
InlinedAt
;
264
Metadata *
InlinedAt
, bool ImplicitCode)
265
: Line(Line), Column(Column), Scope(Scope),
InlinedAt
(
InlinedAt
),
269
InlinedAt
(L->getRawInlinedAt()), ImplicitCode(L->isImplicitCode()) {}
273
Scope == RHS->getRawScope() &&
InlinedAt
== RHS->getRawInlinedAt() &&
278
return hash_combine(Line, Column, Scope,
InlinedAt
, ImplicitCode);
DebugInfoMetadata.cpp
60
Metadata *
InlinedAt
, bool ImplicitCode,
68
InlinedAt
, ImplicitCode)))
78
if (
InlinedAt
)
79
Ops.push_back(
InlinedAt
);
/src/external/apache2/llvm/dist/llvm/include/llvm/IR/
DebugLoc.h
74
/// \param
InlinedAt
The new outermost inlined-at in the chain.
75
static DebugLoc appendInlinedAt(const DebugLoc &DL, DILocation *
InlinedAt
,
DebugInfoMetadata.h
1572
Metadata *
InlinedAt
, bool ImplicitCode,
1576
DILocation *
InlinedAt
, bool ImplicitCode,
1579
static_cast<Metadata *>(
InlinedAt
), ImplicitCode, Storage,
1584
// Get the raw scope/
inlinedAt
since it is possible to invoke this on
1596
Metadata *
InlinedAt
= nullptr, bool ImplicitCode = false),
1597
(Line, Column, Scope,
InlinedAt
, ImplicitCode))
1600
DILocation *
InlinedAt
= nullptr,
1602
(Line, Column, Scope,
InlinedAt
, ImplicitCode))
3603
const DILocation *
InlinedAt
;
3611
const DILocation *
InlinedAt
)
[
all
...]
/src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
SampleProfileProbe.cpp
55
const DILocation *
InlinedAt
= DIL ? DIL->getInlinedAt() : nullptr;
56
while (
InlinedAt
) {
57
Hash ^= MD5Hash(std::to_string(
InlinedAt
->getLine()));
58
Hash ^= MD5Hash(std::to_string(
InlinedAt
->getColumn()));
59
const DISubprogram *SP =
InlinedAt
->getScope()->getSubprogram();
65
InlinedAt
=
InlinedAt
->getInlinedAt();
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/
LexicalScopes.cpp
189
const DILocation *
InlinedAt
) {
192
std::pair<const DILocalScope *, const DILocation *> P(Scope,
InlinedAt
);
199
Parent = getOrCreateInlinedScope(Block->getScope(),
InlinedAt
);
201
Parent = getOrCreateLexicalScope(
InlinedAt
);
205
std::forward_as_tuple(Parent, Scope,
InlinedAt
, false))
LiveDebugVariables.cpp
680
auto *
InlinedAt
= DL ? DL->getInlinedAt() : nullptr;
681
if (
InlinedAt
) {
682
if (DebugLoc InlinedAtDL =
InlinedAt
) {
/src/external/apache2/llvm/dist/llvm/lib/MC/
MCCodeView.cpp
109
MCCVFunctionInfo::LineInfo
InlinedAt
;
110
InlinedAt
.File = IAFile;
111
InlinedAt
.Line = IALine;
112
InlinedAt
.Col = IACol;
117
Info->
InlinedAt
=
InlinedAt
;
122
InlinedAt
= Info->
InlinedAt
;
124
Info->InlinedAtMap[FuncId] =
InlinedAt
;
/src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCCodeView.h
107
LineInfo
InlinedAt
;
/src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
LexicalScopes.h
215
const DILocation *
InlinedAt
);
/src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGDebugInfo.h
406
/// will create a location with this
inlinedAt
field.
407
void setInlinedAt(llvm::MDNode *
InlinedAt
) { CurInlinedAt =
InlinedAt
; }
/src/external/apache2/llvm/dist/llvm/bindings/ocaml/debuginfo/
debuginfo_ocaml.c
322
LLVMMetadataRef
InlinedAt
) {
324
Scope,
InlinedAt
);
/src/external/apache2/llvm/dist/llvm/include/llvm-c/
DebugInfo.h
440
* \param
InlinedAt
The scope where this location was inlined, if at all.
448
LLVMMetadataRef
InlinedAt
);
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/LiveDebugValues/
InstrRefBasedImpl.cpp
1596
const DILocation *
InlinedAt
= DebugLoc->getInlinedAt();
1600
DebugVariable V(Var, Expr,
InlinedAt
);
1655
const DILocation *
InlinedAt
= DebugLoc->getInlinedAt();
1659
DebugVariable V(Var, Expr,
InlinedAt
);
/src/external/apache2/llvm/dist/llvm/lib/CodeGen/MIRParser/
MIParser.cpp
2076
MDNode *
InlinedAt
= nullptr;
2118
if (Token.stringValue() == "
inlinedAt
") {
2123
if (parseMDNode(
InlinedAt
))
2126
if (parseDILocation(
InlinedAt
))
2130
if (!isa<DILocation>(
InlinedAt
))
2167
InlinedAt
, ImplicitCode);
Completed in 43 milliseconds
1
2
Indexes created Sat Sep 19 00:25:42 UTC 2026