OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ScopeDIE
(Results
1 - 3
of
3
) sorted by null
/external/llvm/lib/CodeGen/AsmPrinter/
DwarfCompileUnit.cpp
338
DIE *
ScopeDIE
;
340
ScopeDIE
= constructInlinedScopeDIE(Scope);
341
if (!
ScopeDIE
)
372
ScopeDIE
= constructLexicalScopeDIE(Scope);
373
assert(
ScopeDIE
&& "Scope DIE should not be null.");
378
ScopeDIE
->addChild(std::move(I));
380
FinalChildren.push_back(std::move(
ScopeDIE
));
392
void DwarfCompileUnit::addScopeRangeList(DIE &
ScopeDIE
,
406
addSectionDelta(
ScopeDIE
, dwarf::DW_AT_ranges, List.getSym(),
409
addSectionLabel(
ScopeDIE
, dwarf::DW_AT_ranges, List.getSym()
[
all
...]
DwarfCompileUnit.h
153
void addScopeRangeList(DIE &
ScopeDIE
, SmallVector<RangeSpan, 2> Range);
181
DIE *createAndAddScopeChildren(LexicalScope *Scope, DIE &
ScopeDIE
);
/external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
DwarfDebug.cpp
252
DIE *
ScopeDIE
= new DIE(dwarf::DW_TAG_lexical_block);
254
return
ScopeDIE
;
265
TheCU->addUInt(
ScopeDIE
, dwarf::DW_AT_ranges, dwarf::DW_FORM_data4,
275
return
ScopeDIE
;
286
TheCU->addLabel(
ScopeDIE
, dwarf::DW_AT_low_pc, dwarf::DW_FORM_addr, Start);
287
TheCU->addLabel(
ScopeDIE
, dwarf::DW_AT_high_pc, dwarf::DW_FORM_addr, End);
289
return
ScopeDIE
;
325
DIE *
ScopeDIE
= new DIE(dwarf::DW_TAG_inlined_subroutine);
326
TheCU->addDIEEntry(
ScopeDIE
, dwarf::DW_AT_abstract_origin,
333
TheCU->addUInt(
ScopeDIE
, dwarf::DW_AT_ranges, dwarf::DW_FORM_data4
[
all
...]
Completed in 51 milliseconds