@@ -1033,7 +1033,7 @@ void IJitManager::EnumMemoryRegions(CLRDataEnumMemoryFlags flags)
10331033
10341034#endif // #ifdef DACCESS_COMPILE
10351035
1036- PTR_VOID EECodeInfo:: GetUnwindDataBlob (TADDR moduleBase, PTR_RUNTIME_FUNCTION pRuntimeFunction, /* out */ SIZE_T * pSize)
1036+ PTR_VOID GetUnwindDataBlob (TADDR moduleBase, PTR_RUNTIME_FUNCTION pRuntimeFunction, /* out */ SIZE_T * pSize)
10371037{
10381038 LIMITED_METHOD_CONTRACT;
10391039
@@ -6463,7 +6463,7 @@ GCInfoToken ReadyToRunJitManager::GetGCInfoToken(const METHODTOKEN& MethodToken)
64636463 TADDR baseAddress = JitTokenToModuleBase (MethodToken);
64646464
64656465 SIZE_T nUnwindDataSize;
6466- PTR_VOID pUnwindData = EECodeInfo:: GetUnwindDataBlob (baseAddress, pRuntimeFunction, &nUnwindDataSize);
6466+ PTR_VOID pUnwindData = GetUnwindDataBlob (baseAddress, pRuntimeFunction, &nUnwindDataSize);
64676467
64686468 // GCInfo immediately follows unwind data
64696469 PTR_BYTE gcInfo = dac_cast<PTR_BYTE>(pUnwindData) + nUnwindDataSize;
@@ -6951,7 +6951,7 @@ BOOL ReadyToRunJitManager::LazyIsFunclet(EECodeInfo* pCodeInfo)
69516951 {
69526952 // This maps to a hot entry in the lookup table, so check its unwind info
69536953 SIZE_T unwindSize;
6954- PTR_VOID pUnwindData = EECodeInfo:: GetUnwindDataBlob (pCodeInfo->GetModuleBase (), pCodeInfo->GetFunctionEntry (), &unwindSize);
6954+ PTR_VOID pUnwindData = GetUnwindDataBlob (pCodeInfo->GetModuleBase (), pCodeInfo->GetFunctionEntry (), &unwindSize);
69556955 _ASSERTE (pUnwindData != NULL );
69566956
69576957#ifdef TARGET_AMD64
@@ -6991,7 +6991,7 @@ BOOL ReadyToRunJitManager::IsFilterFunclet(EECodeInfo * pCodeInfo)
69916991#else
69926992 // Get address of the personality routine for the function being queried.
69936993 SIZE_T size;
6994- PTR_VOID pUnwindData = EECodeInfo:: GetUnwindDataBlob (pCodeInfo->GetModuleBase (), pCodeInfo->GetFunctionEntry (), &size);
6994+ PTR_VOID pUnwindData = GetUnwindDataBlob (pCodeInfo->GetModuleBase (), pCodeInfo->GetFunctionEntry (), &size);
69956995 _ASSERTE (pUnwindData != NULL );
69966996
69976997 // Personality routine is always the last element of the unwind data
@@ -7002,7 +7002,7 @@ BOOL ReadyToRunJitManager::IsFilterFunclet(EECodeInfo * pCodeInfo)
70027002 if (pInfo->m_nRuntimeFunctions == 0 )
70037003 return FALSE ;
70047004
7005- PTR_VOID pFirstUnwindData = EECodeInfo:: GetUnwindDataBlob (pCodeInfo->GetModuleBase (), pInfo->m_pRuntimeFunctions , &size);
7005+ PTR_VOID pFirstUnwindData = GetUnwindDataBlob (pCodeInfo->GetModuleBase (), pInfo->m_pRuntimeFunctions , &size);
70067006 _ASSERTE (pFirstUnwindData != NULL );
70077007 DWORD rvaFirstPersonalityRoutine = *(dac_cast<PTR_DWORD>(dac_cast<TADDR>(pFirstUnwindData) + size) - 1 );
70087008
@@ -7109,7 +7109,7 @@ void ReadyToRunJitManager::EnumMemoryRegionsForMethodUnwindInfo(CLRDataEnumMemor
71097109 EnumRuntimeFunctionEntriesToFindEntry (pRtf, pReadyToRunInfo->m_pRuntimeFunctions , pReadyToRunInfo->m_nRuntimeFunctions );
71107110
71117111 SIZE_T size;
7112- PTR_VOID pUnwindData = EECodeInfo:: GetUnwindDataBlob (pCodeInfo->GetModuleBase (), pRtf, &size);
7112+ PTR_VOID pUnwindData = GetUnwindDataBlob (pCodeInfo->GetModuleBase (), pRtf, &size);
71137113 if (pUnwindData != NULL )
71147114 DacEnumMemoryRegion (PTR_TO_TADDR (pUnwindData), size);
71157115}
0 commit comments