Lines Matching refs:CU
88 for (const auto &CU : compile_units()) in dump() local
89 CU->dump(OS); in dump()
141 for (const auto &CU : compile_units()) { in dump() local
142 savedAddressByteSize = CU->getAddressByteSize(); in dump()
143 const auto *CUDIE = CU->getUnitDIE(); in dump()
147 CU.get(), DW_AT_stmt_list, -1U); in dump()
385 static bool getFunctionNameForAddress(DWARFCompileUnit *CU, uint64_t Address, in getFunctionNameForAddress() argument
394 CU->getInlinedChainForAddress(Address); in getFunctionNameForAddress()
410 DWARFCompileUnit *CU = getCompileUnitForAddress(Address); in getLineInfoForAddress() local
411 if (!CU) in getLineInfoForAddress()
413 getFunctionNameForAddress(CU, Address, Spec.FNKind, Result.FunctionName); in getLineInfoForAddress()
415 if (const DWARFLineTable *LineTable = getLineTableForUnit(CU)) in getLineInfoForAddress()
416 LineTable->getFileLineInfoForAddress(Address, CU->getCompilationDir(), in getLineInfoForAddress()
426 DWARFCompileUnit *CU = getCompileUnitForAddress(Address); in getLineInfoForAddressRange() local
427 if (!CU) in getLineInfoForAddressRange()
431 getFunctionNameForAddress(CU, Address, Spec.FNKind, FunctionName); in getLineInfoForAddressRange()
442 const DWARFLineTable *LineTable = getLineTableForUnit(CU); in getLineInfoForAddressRange()
453 LineTable->getFileNameByIndex(Row.File, CU->getCompilationDir(), in getLineInfoForAddressRange()
469 DWARFCompileUnit *CU = getCompileUnitForAddress(Address); in getInliningInfoForAddress() local
470 if (!CU) in getInliningInfoForAddress()
475 CU->getInlinedChainForAddress(Address); in getInliningInfoForAddress()
481 LineTable = getLineTableForUnit(CU); in getInliningInfoForAddress()
483 LineTable->getFileLineInfoForAddress(Address, CU->getCompilationDir(), in getInliningInfoForAddress()
502 LineTable = getLineTableForUnit(CU); in getInliningInfoForAddress()
505 LineTable->getFileLineInfoForAddress(Address, CU->getCompilationDir(), in getInliningInfoForAddress()
511 LineTable->getFileNameByIndex(CallFile, CU->getCompilationDir(), in getInliningInfoForAddress()