@@ -421,7 +421,6 @@ HRESULT CordbValue::InternalCreateHandle(CorDebugHandleType handleType,
421
421
422
422
DebuggerIPCEvent event;
423
423
CordbProcess *process;
424
- BOOL fStrong = FALSE ;
425
424
426
425
// @dbgtodo- , as part of inspection, convert this path to throwing.
427
426
if (ppHandle == NULL )
@@ -431,13 +430,14 @@ HRESULT CordbValue::InternalCreateHandle(CorDebugHandleType handleType,
431
430
432
431
*ppHandle = NULL ;
433
432
434
- if (handleType == HANDLE_STRONG )
433
+ switch (handleType)
435
434
{
436
- fStrong = TRUE ;
437
- }
438
- else
439
- {
440
- _ASSERTE (handleType == HANDLE_WEAK_TRACK_RESURRECTION);
435
+ case HANDLE_STRONG:
436
+ case HANDLE_WEAK_TRACK_RESURRECTION:
437
+ case HANDLE_PINNED:
438
+ break ;
439
+ default :
440
+ return E_INVALIDARG;
441
441
}
442
442
443
443
@@ -460,7 +460,7 @@ HRESULT CordbValue::InternalCreateHandle(CorDebugHandleType handleType,
460
460
461
461
CORDB_ADDRESS addr = GetValueHome () != NULL ? GetValueHome ()->GetAddress () : NULL ;
462
462
event.CreateHandle .objectToken = CORDB_ADDRESS_TO_PTR (addr);
463
- event.CreateHandle .fStrong = fStrong ;
463
+ event.CreateHandle .handleType = handleType ;
464
464
465
465
// Note: two-way event here...
466
466
HRESULT hr = process->SendIPCEvent (&event, sizeof (DebuggerIPCEvent));
@@ -1827,6 +1827,10 @@ HRESULT CordbObjectValue::QueryInterface(REFIID id, void **pInterface)
1827
1827
{
1828
1828
*pInterface = static_cast <ICorDebugHeapValue3*>(this );
1829
1829
}
1830
+ else if (id == IID_ICorDebugHeapValue4)
1831
+ {
1832
+ *pInterface = static_cast <ICorDebugHeapValue4*>(this );
1833
+ }
1830
1834
else if ((id == IID_ICorDebugStringValue) &&
1831
1835
(m_info.objTypeData .elementType == ELEMENT_TYPE_STRING))
1832
1836
{
@@ -1963,6 +1967,21 @@ HRESULT CordbObjectValue::CreateHandle(
1963
1967
return CordbValue::InternalCreateHandle (handleType, ppHandle);
1964
1968
} // CreateHandle
1965
1969
1970
+ /*
1971
+ * Creates a pinned handle for this heap value.
1972
+ *
1973
+ * Not Implemented In-Proc.
1974
+ */
1975
+ HRESULT CordbObjectValue::CreatePinnedHandle (
1976
+ ICorDebugHandleValue ** ppHandle)
1977
+ {
1978
+ PUBLIC_API_ENTRY (this );
1979
+ FAIL_IF_NEUTERED (this );
1980
+ ATT_REQUIRE_STOPPED_MAY_FAIL (GetProcess ());
1981
+
1982
+ return CordbValue::InternalCreateHandle (HANDLE_PINNED, ppHandle);
1983
+ } // CreatePinnedHandle
1984
+
1966
1985
// Get class information for this object
1967
1986
// Arguments:
1968
1987
// output: ppClass - ICDClass instance for this object
@@ -3325,6 +3344,10 @@ HRESULT CordbBoxValue::QueryInterface(REFIID id, void **pInterface)
3325
3344
{
3326
3345
*pInterface = static_cast <ICorDebugHeapValue3*>(this );
3327
3346
}
3347
+ else if (id == IID_ICorDebugHeapValue4)
3348
+ {
3349
+ *pInterface = static_cast <ICorDebugHeapValue4*>(this );
3350
+ }
3328
3351
else if (id == IID_IUnknown)
3329
3352
{
3330
3353
*pInterface = static_cast <IUnknown*>(static_cast <ICorDebugBoxValue*>(this ));
@@ -3387,6 +3410,24 @@ HRESULT CordbBoxValue::CreateHandle(
3387
3410
return CordbValue::InternalCreateHandle (handleType, ppHandle);
3388
3411
} // CordbBoxValue::CreateHandle
3389
3412
3413
+ // Creates a pinned handle for this heap value.
3414
+ // Not Implemented In-Proc.
3415
+ // Create a handle for a heap object.
3416
+ // @todo: How to prevent this being called by non-heap object?
3417
+ // Arguments:
3418
+ // output: ppHandle - on success, the newly created handle
3419
+ // Return Value: S_OK on success or E_INVALIDARG, E_OUTOFMEMORY, or CORDB_E_HELPER_MAY_DEADLOCK
3420
+ HRESULT CordbBoxValue::CreatePinnedHandle (
3421
+ ICorDebugHandleValue ** ppHandle)
3422
+ {
3423
+ PUBLIC_API_ENTRY (this );
3424
+ FAIL_IF_NEUTERED (this );
3425
+ ATT_REQUIRE_STOPPED_MAY_FAIL (GetProcess ());
3426
+
3427
+ return CordbValue::InternalCreateHandle (HANDLE_PINNED, ppHandle);
3428
+ } // CreatePinnedHandle
3429
+
3430
+
3390
3431
HRESULT CordbBoxValue::GetValue (void *pTo)
3391
3432
{
3392
3433
// Can't get a whole copy of a box.
@@ -3565,6 +3606,10 @@ HRESULT CordbArrayValue::QueryInterface(REFIID id, void **pInterface)
3565
3606
{
3566
3607
*pInterface = static_cast <ICorDebugHeapValue3*>(this );
3567
3608
}
3609
+ else if (id == IID_ICorDebugHeapValue4)
3610
+ {
3611
+ *pInterface = static_cast <ICorDebugHeapValue4*>(this );
3612
+ }
3568
3613
else if (id == IID_IUnknown)
3569
3614
{
3570
3615
*pInterface = static_cast <IUnknown*>(static_cast <ICorDebugArrayValue*>(this ));
@@ -3888,6 +3933,23 @@ HRESULT CordbArrayValue::CreateHandle(
3888
3933
return CordbValue::InternalCreateHandle (handleType, ppHandle);
3889
3934
} // CordbArrayValue::CreateHandle
3890
3935
3936
+ /*
3937
+ * Creates a pinned handle for this heap value.
3938
+ * Not Implemented In-Proc.
3939
+ * Arguments:
3940
+ * output: ppHandle - on success, the newly created handle
3941
+ * Return Value: S_OK on success or E_INVALIDARG, E_OUTOFMEMORY, or CORDB_E_HELPER_MAY_DEADLOCK
3942
+ */
3943
+ HRESULT CordbArrayValue::CreatePinnedHandle (
3944
+ ICorDebugHandleValue ** ppHandle)
3945
+ {
3946
+ PUBLIC_API_ENTRY (this );
3947
+ FAIL_IF_NEUTERED (this );
3948
+ ATT_REQUIRE_STOPPED_MAY_FAIL (GetProcess ());
3949
+
3950
+ return CordbValue::InternalCreateHandle (HANDLE_PINNED, ppHandle);
3951
+ } // CreatePinnedHandle
3952
+
3891
3953
// get a copy of the array
3892
3954
// Arguments
3893
3955
// output: pTo - pointer to a caller-allocated and managed buffer to hold the copy. The caller must guarantee
0 commit comments