Home | History | Annotate | Download | only in DebugInfo

Lines Matching refs:DIE

134   for (auto &DIE : DieArray) {
136 SiblingChain->setSibling(&DIE);
139 DIE.getAbbreviationDeclarationPtr()) {
140 // Normal DIE.
142 ParentChain.push_back(&DIE);
145 SiblingChain = ¨
163 // Set the offset to that of the first DIE and calculate the start of the
167 DWARFDebugInfoEntryMinimal DIE;
171 while (DIEOffset < NextCUOffset && DIE.extractFast(this, &DIEOffset)) {
174 Dies.push_back(DIE);
177 // The average bytes per DIE entry has been seen to be
179 // our DIE entries accordingly.
183 Dies.push_back(DIE);
187 DIE.getAbbreviationDeclarationPtr()) {
188 // Normal DIE
192 // NULL DIE.
219 // If CU DIE was just parsed, copy several attribute values from it.
231 // skeleton CU DIE, so that DWARF users not aware of it are not broken.
293 // Save at least the compile unit DIE
300 // First, check if CU DIE describes address ranges for the unit.
332 for (const DWARFDebugInfoEntryMinimal &DIE : DieArray) {
333 if (DIE.isSubprogramDIE() &&
334 DIE.addressRangeContainsAddress(this, Address)) {
335 return &DIE;
360 // Get inlined chain rooted at this subprogram DIE.