Lines Matching refs:CU

89     for (const auto &CU : compile_units())  in dump()  local
90 CU->dump(OS); in dump()
147 for (const auto &CU : compile_units()) { in dump() local
148 savedAddressByteSize = CU->getAddressByteSize(); in dump()
149 const auto *CUDIE = CU->getUnitDIE(); in dump()
153 CU.get(), DW_AT_stmt_list, -1U); in dump()
436 static bool getFunctionNameForAddress(DWARFCompileUnit *CU, uint64_t Address, in getFunctionNameForAddress() argument
445 CU->getInlinedChainForAddress(Address); in getFunctionNameForAddress()
461 DWARFCompileUnit *CU = getCompileUnitForAddress(Address); in getLineInfoForAddress() local
462 if (!CU) in getLineInfoForAddress()
464 getFunctionNameForAddress(CU, Address, Spec.FNKind, Result.FunctionName); in getLineInfoForAddress()
466 if (const DWARFLineTable *LineTable = getLineTableForUnit(CU)) in getLineInfoForAddress()
467 LineTable->getFileLineInfoForAddress(Address, CU->getCompilationDir(), in getLineInfoForAddress()
477 DWARFCompileUnit *CU = getCompileUnitForAddress(Address); in getLineInfoForAddressRange() local
478 if (!CU) in getLineInfoForAddressRange()
482 getFunctionNameForAddress(CU, Address, Spec.FNKind, FunctionName); in getLineInfoForAddressRange()
493 const DWARFLineTable *LineTable = getLineTableForUnit(CU); in getLineInfoForAddressRange()
504 LineTable->getFileNameByIndex(Row.File, CU->getCompilationDir(), in getLineInfoForAddressRange()
520 DWARFCompileUnit *CU = getCompileUnitForAddress(Address); in getInliningInfoForAddress() local
521 if (!CU) in getInliningInfoForAddress()
526 CU->getInlinedChainForAddress(Address); in getInliningInfoForAddress()
532 LineTable = getLineTableForUnit(CU); in getInliningInfoForAddress()
534 LineTable->getFileLineInfoForAddress(Address, CU->getCompilationDir(), in getInliningInfoForAddress()
553 LineTable = getLineTableForUnit(CU); in getInliningInfoForAddress()
556 LineTable->getFileLineInfoForAddress(Address, CU->getCompilationDir(), in getInliningInfoForAddress()
562 LineTable->getFileNameByIndex(CallFile, CU->getCompilationDir(), in getInliningInfoForAddress()