Home | History | Annotate | Download | only in DWARF

Lines Matching defs:DIE

165   for (auto &DIE : DieArray) {
167 SiblingChain->setSibling(&DIE);
170 DIE.getAbbreviationDeclarationPtr()) {
171 // Normal DIE.
173 ParentChain.push_back(&DIE);
176 SiblingChain = ¨
194 // Set the offset to that of the first DIE and calculate the start of the
198 DWARFDebugInfoEntryMinimal DIE;
202 while (DIEOffset < NextCUOffset && DIE.extractFast(this, &DIEOffset)) {
205 Dies.push_back(DIE);
208 // The average bytes per DIE entry has been seen to be
210 // our DIE entries accordingly.
214 Dies.push_back(DIE);
218 DIE.getAbbreviationDeclarationPtr()) {
219 // Normal DIE
223 // NULL DIE.
250 // If CU DIE was just parsed, copy several attribute values from it.
262 // skeleton CU DIE, so that DWARF users not aware of it are not broken.
328 // Save at least the compile unit DIE
338 // First, check if unit DIE describes address ranges for the whole unit.
370 for (const DWARFDebugInfoEntryMinimal &DIE : DieArray) {
371 if (DIE.isSubprogramDIE() &&
372 DIE.addressRangeContainsAddress(this, Address)) {
373 return &DIE;
393 // Get inlined chain rooted at this subprogram DIE.