Lines Matching refs:InputDieEntry

1289     const DWARFDebugInfoEntry *InputDieEntry, TypeEntry *ClonedParentTypeDIE,  in cloneDIE()  argument
1293 uint32_t InputDieIdx = getDIEIndex(InputDieEntry); in cloneDIE()
1298 (InputDieEntry->getTag() != dwarf::DW_TAG_compile_unit) && in cloneDIE()
1308 InputDieEntry, PlainDIEGenerator, OutOffset, FuncAddressAdjustment, in cloneDIE()
1318 InputDieEntry, TypeDIEGenerator, ClonedParentTypeDIE, in cloneDIE()
1329 InputDieEntry->getTag() == dwarf::DW_TAG_compile_unit) && in cloneDIE()
1335 getFirstChildEntry(InputDieEntry); in cloneDIE()
1364 const DWARFDebugInfoEntry *InputDieEntry, DIEGenerator &PlainDIEGenerator, in createPlainDIEandCloneAttributes() argument
1367 uint32_t InputDieIdx = getDIEIndex(InputDieEntry); in createPlainDIEandCloneAttributes()
1371 if (InputDieEntry->getTag() == dwarf::DW_TAG_subprogram) { in createPlainDIEandCloneAttributes()
1375 getDIE(InputDieEntry), false); in createPlainDIEandCloneAttributes()
1376 } else if (InputDieEntry->getTag() == dwarf::DW_TAG_label) { in createPlainDIEandCloneAttributes()
1379 dwarf::toAddress(find(InputDieEntry, dwarf::DW_AT_low_pc)); in createPlainDIEandCloneAttributes()
1385 } else if (InputDieEntry->getTag() == dwarf::DW_TAG_variable) { in createPlainDIEandCloneAttributes()
1389 getDIE(InputDieEntry), false); in createPlainDIEandCloneAttributes()
1397 ClonedDIE = PlainDIEGenerator.createDIE(InputDieEntry->getTag(), OutOffset); in createPlainDIEandCloneAttributes()
1404 DIEAttributeCloner AttributesCloner(ClonedDIE, *this, this, InputDieEntry, in createPlainDIEandCloneAttributes()
1412 AccelRecordsSaver.save(InputDieEntry, ClonedDIE, AttributesCloner.AttrInfo, in createPlainDIEandCloneAttributes()
1469 const DWARFDebugInfoEntry *InputDieEntry, DIEGenerator &TypeDIEGenerator, in createTypeDIEandCloneAttributes() argument
1472 uint32_t InputDieIdx = getDIEIndex(InputDieEntry); in createTypeDIEandCloneAttributes()
1483 dwarf::toUnsigned(find(InputDieEntry, dwarf::DW_AT_declaration), 0); in createTypeDIEandCloneAttributes()
1486 if (std::optional<uint32_t> ParentIdx = InputDieEntry->getParentIdx()) in createTypeDIEandCloneAttributes()
1491 allocateTypeDie(EntryBody, TypeDIEGenerator, InputDieEntry->getTag(), in createTypeDIEandCloneAttributes()
1499 InputDieEntry, TypeDIEGenerator, in createTypeDIEandCloneAttributes()
1506 AccelRecordsSaver.save(InputDieEntry, OutDIE, AttributesCloner.AttrInfo, in createTypeDIEandCloneAttributes()