IDiaSession::getFunctionFragments_VA
Recupera os endereços e comprimentos de fragmentos não contíguos para a função no VA (endereço virtual) especificado.
Sintaxe
HRESULT getFunctionFragments_VA(
ULONGLONG vaFunc,
DWORD cbFunc,
DWORD cFragments,
ULONGLONG *pVaFragment,
DWORD *pLenFragment
);
Parâmetros
vaFunc
[em] O endereço virtual da função.
cbFunc
[em] O tamanho total em bytes da função (ou seja, o comprimento da função).
cFragments
[em] A contagem de elementos alocados para pVaFragment
e pLenFragment
.
pVaFragment
[fora] Buffer de matriz para receber os endereços virtuais de cada fragmento. Isso deve ser pelo menos cFragments
longo.
pLenFragment
[fora] Buffer de matriz para receber o comprimento, em bytes, de cada fragmento. Isso deve ser pelo menos cFragments
longo.
Valor de retorno
Se tiver êxito, retornará S_OK
. Caso contrário, retornará um código de erro.
Exemplo
Isso mostra como recuperar o endereço e o comprimento de uma função por meio IDiaSymbol
de, em seguida, o número de fragmentos, recuperar o conjunto de fragmentos de função e imprimi-los como uma lista de endereços inicial e final.
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;
}