IDiaSession::getFunctionFragments_VA
Recupera gli indirizzi e le lunghezze dei frammenti disconti per la funzione in corrispondenza dell'indirizzo virtuale specificato.
Sintassi
HRESULT getFunctionFragments_VA(
ULONGLONG vaFunc,
DWORD cbFunc,
DWORD cFragments,
ULONGLONG *pVaFragment,
DWORD *pLenFragment
);
Parametri
vaFunc
[in] Indirizzo virtuale della funzione.
cbFunc
[in] Dimensione totale in byte della funzione , ovvero la lunghezza della funzione.
cFragments
[in] Conteggio degli elementi allocati per pVaFragment
e pLenFragment
.
pVaFragment
[out] Buffer dell'array per ricevere gli indirizzi virtuali di ogni frammento. Questo deve essere almeno cFragments
lungo.
pLenFragment
[out] Buffer di matrice per ricevere la lunghezza, in byte, di ogni frammento. Questo deve essere almeno cFragments
lungo.
Valore restituito
Se ha esito positivo, restituisce S_OK
; in caso contrario, restituisce un codice di errore.
Esempio
Viene illustrato come recuperare l'indirizzo e la lunghezza di una funzione tramite IDiaSymbol
, quindi il numero di frammenti, recuperare il set di frammenti di funzione e quindi stamparli come elenco di indirizzi iniziale e finale.
HRESULT PrintFunctionFragments(CComPtr<IDiaSymbol> pFunc) {
ULONGLONG vaStart = 0;
ULONGLONG cbFunc = 0;
HRESULT hr = pFunc->get_relativeVirtualAddress(&vaStart);
if (FAILED(hr)) {
return hr;
}
hr = pFunc->get_length(&cbFunc);
if (FAILED(hr)) {
return hr;
}
DWORD cFragments = 0;
hr = pSession->getNumberOfFunctionFragments_VA(vaStart, (DWORD) cbFunc, &cFragments);
if (FAILED(hr)) {
return hr;
}
ULONGLONG * rgVA = new (std::nothrow) ULONGLONG[cFragments];
if (rgVA == nullptr) {
return E_OUTOFMEMORY;
}
DWORD * rgLen = new (std::nothrow) DWORD[cFragments];
if (rgLen == nullptr) {
delete[] rgVA;
return E_OUTOFMEMORY;
}
hr = pSession->getFunctionFragments_VA(vaStart, (DWORD) cbFunc, cFragments, rgVA, rgLen);
if (FAILED(hr)) {
delete[] rgVA;
delete[] rgLen;
return hr;
}
for (DWORD i = 0; i < cFragments; i++) {
printf(" %016llX -- %016llX\n", rgVA[i], rgVA[i] + rgLen[i] - 1);
}
delete [] rgVA;
delete [] rgLen;
return S_OK;
}