@@ -1848,11 +1848,6 @@ IDacDbiInterface : public IUnknown
18481848 // Check whether the argument is a runtime callable wrapper.
18491849 virtual HRESULT STDMETHODCALLTYPE IsRcw (VMPTR_Object vmObject, OUT BOOL * pResult) = 0 ;
18501850
1851- // retrieves the list of COM interfaces implemented by vmObject, as it is known at
1852- // the time of the call (the list may change as new interface types become available
1853- // in the runtime)
1854- virtual HRESULT STDMETHODCALLTYPE GetRcwCachedInterfaceTypes (VMPTR_Object vmObject, VMPTR_AppDomain vmAppDomain, BOOL bIInspectableOnly, OUT DacDbiArrayList<DebuggerIPCE_ExpandedTypeData> * pDacInterfaces) = 0 ;
1855-
18561851 // retrieves the list of interfaces pointers implemented by vmObject, as it is known at
18571852 // the time of the call (the list may change as new interface types become available
18581853 // in the runtime)
@@ -1996,8 +1991,6 @@ IDacDbiInterface : public IUnknown
19961991 // Return Value:
19971992 // S_OK on success; otherwise, an appropriate failure HRESULT.
19981993 //
1999- virtual HRESULT STDMETHODCALLTYPE EnableNGENPolicy (CorDebugNGENPolicy ePolicy) = 0 ;
2000-
20011994 // Sets the NGEN compiler flags. This restricts NGEN to only use images with certain
20021995 // types of pregenerated code. With respect to debugging this is used to specify that
20031996 // the NGEN image must be debuggable aka non-optimized code. Note that these flags
@@ -2020,8 +2013,6 @@ IDacDbiInterface : public IUnknown
20202013 // Return Value:
20212014 // S_OK on success; otherwise, an appropriate failure HRESULT.
20222015 //
2023- virtual HRESULT STDMETHODCALLTYPE SetNGENCompilerFlags (DWORD dwFlags) = 0 ;
2024-
20252016 // Gets the NGEN compiler flags currently in effect. This accounts for settings that
20262017 // were caused by SetDesiredNGENCompilerFlags as well as other configuration sources.
20272018 // See SetDesiredNGENCompilerFlags for more info
@@ -2032,8 +2023,6 @@ IDacDbiInterface : public IUnknown
20322023 // Return Value:
20332024 // S_OK on success; otherwise, an appropriate failure HRESULT.
20342025 //
2035- virtual HRESULT STDMETHODCALLTYPE GetNGENCompilerFlags (DWORD *pdwFlags) = 0 ;
2036-
20372026 // Create a VMPTR_OBJECTHANDLE from a CORDB_ADDRESS pointing to an object handle
20382027 //
20392028 // Arguments:
@@ -2277,8 +2266,6 @@ IDacDbiInterface : public IUnknown
22772266 // S_OK regardless of whether a rejit request is active or not, as long as the answer is certain
22782267 // error HRESULTs such as CORDBG_READ_VIRTUAL_FAILURE are possible
22792268 //
2280- virtual HRESULT STDMETHODCALLTYPE GetReJitInfo (VMPTR_Module vmModule, mdMethodDef methodTk, OUT VMPTR_ReJitInfo* pReJitInfo) = 0 ;
2281-
22822269 // DEPRECATED - use GetNativeCodeVersionNode
22832270 // Retrieves the ReJitInfo for a given MethodDesc/code address, if it exists.
22842271 //
@@ -2294,8 +2281,6 @@ IDacDbiInterface : public IUnknown
22942281 // S_OK regardless of whether a rejit request is active or not, as long as the answer is certain
22952282 // error HRESULTs such as CORDBG_READ_VIRTUAL_FAILURE are possible
22962283 //
2297- virtual HRESULT STDMETHODCALLTYPE GetReJitInfoByAddress (VMPTR_MethodDesc vmMethod, CORDB_ADDRESS codeStartAddress, OUT VMPTR_ReJitInfo* pReJitInfo) = 0 ;
2298-
22992284 // DEPRECATED - use GetILCodeVersion
23002285 // Retrieves the SharedReJitInfo for a given ReJitInfo.
23012286 //
@@ -2308,8 +2293,6 @@ IDacDbiInterface : public IUnknown
23082293 // S_OK if no error
23092294 // error HRESULTs such as CORDBG_READ_VIRTUAL_FAILURE are possible
23102295 //
2311- virtual HRESULT STDMETHODCALLTYPE GetSharedReJitInfo (VMPTR_ReJitInfo vmReJitInfo, VMPTR_SharedReJitInfo* pSharedReJitInfo) = 0 ;
2312-
23132296 // DEPRECATED - use GetILCodeVersionData
23142297 // Retrieves useful data from a SharedReJitInfo such as IL code and IL mapping.
23152298 //
@@ -2322,8 +2305,6 @@ IDacDbiInterface : public IUnknown
23222305 // S_OK if no error
23232306 // error HRESULTs such as CORDBG_READ_VIRTUAL_FAILURE are possible
23242307 //
2325- virtual HRESULT STDMETHODCALLTYPE GetSharedReJitInfoData (VMPTR_SharedReJitInfo sharedReJitInfo, DacSharedReJitInfo* pData) = 0 ;
2326-
23272308 // Retrieves a bool indicating whether or not a method's optimizations have been disabled
23282309 // defined in Debugger::IsMethodDeoptimized
23292310 //
0 commit comments