@@ -217,17 +217,6 @@ virtual bool IsGcSafe(EECodeInfo *pCodeInfo,
217
217
virtual bool HasTailCalls (EECodeInfo *pCodeInfo) = 0;
218
218
#endif // TARGET_ARM || TARGET_ARM64 || TARGET_LOONGARCH64 || TARGET_RISCV64
219
219
220
- #if defined(TARGET_AMD64) && defined(_DEBUG)
221
- /*
222
- Locates the end of the last interruptible region in the given code range.
223
- Returns 0 if the entire range is uninterruptible. Returns the end point
224
- if the entire range is interruptible.
225
- */
226
- virtual unsigned FindEndOfLastInterruptibleRegion (unsigned curOffset,
227
- unsigned endOffset,
228
- GCInfoToken gcInfoToken) = 0;
229
- #endif // TARGET_AMD64 && _DEBUG
230
-
231
220
/*
232
221
Enumerate all live object references in that function using
233
222
the virtual register set. Same reference location cannot be enumerated
@@ -321,11 +310,6 @@ virtual unsigned int GetFrameSize(GCInfoToken gcInfoToken) = 0;
321
310
#ifndef FEATURE_EH_FUNCLETS
322
311
virtual const BYTE* GetFinallyReturnAddr (PREGDISPLAY pReg)=0;
323
312
324
- virtual BOOL IsInFilter (GCInfoToken gcInfoToken,
325
- unsigned offset,
326
- PCONTEXT pCtx,
327
- DWORD curNestLevel) = 0;
328
-
329
313
virtual BOOL LeaveFinally (GCInfoToken gcInfoToken,
330
314
unsigned offset,
331
315
PCONTEXT pCtx) = 0;
@@ -462,18 +446,6 @@ virtual
462
446
bool HasTailCalls (EECodeInfo *pCodeInfo);
463
447
#endif // TARGET_ARM || TARGET_ARM64 || TARGET_LOONGARCH64 || defined(TARGET_RISCV64)
464
448
465
- #if defined(TARGET_AMD64) && defined(_DEBUG)
466
- /*
467
- Locates the end of the last interruptible region in the given code range.
468
- Returns 0 if the entire range is uninterruptible. Returns the end point
469
- if the entire range is interruptible.
470
- */
471
- virtual
472
- unsigned FindEndOfLastInterruptibleRegion (unsigned curOffset,
473
- unsigned endOffset,
474
- GCInfoToken gcInfoToken);
475
- #endif // TARGET_AMD64 && _DEBUG
476
-
477
449
/*
478
450
Enumerate all live object references in that function using
479
451
the virtual register set. Same reference location cannot be enumerated
@@ -588,10 +560,6 @@ unsigned int GetFrameSize(GCInfoToken gcInfoToken);
588
560
589
561
#ifndef FEATURE_EH_FUNCLETS
590
562
virtual const BYTE* GetFinallyReturnAddr (PREGDISPLAY pReg);
591
- virtual BOOL IsInFilter (GCInfoToken gcInfoToken,
592
- unsigned offset,
593
- PCONTEXT pCtx,
594
- DWORD curNestLevel);
595
563
virtual BOOL LeaveFinally (GCInfoToken gcInfoToken,
596
564
unsigned offset,
597
565
PCONTEXT pCtx);
@@ -737,22 +705,6 @@ bool HasTailCalls(EECodeInfo *pCodeInfo)
737
705
}
738
706
#endif // TARGET_ARM || TARGET_ARM64 || TARGET_LOONGARCH64 || defined(TARGET_RISCV64)
739
707
740
- #if defined(TARGET_AMD64) && defined(_DEBUG)
741
- /*
742
- Locates the end of the last interruptible region in the given code range.
743
- Returns 0 if the entire range is uninterruptible. Returns the end point
744
- if the entire range is interruptible.
745
- */
746
- virtual
747
- unsigned FindEndOfLastInterruptibleRegion (unsigned curOffset,
748
- unsigned endOffset,
749
- GCInfoToken gcInfoToken)
750
- {
751
- _ASSERTE (FALSE );
752
- return 0 ;
753
- }
754
- #endif // TARGET_AMD64 && _DEBUG
755
-
756
708
/*
757
709
Enumerate all live object references in that function using
758
710
the virtual register set. Same reference location cannot be enumerated
@@ -867,14 +819,6 @@ virtual const BYTE* GetFinallyReturnAddr(PREGDISPLAY pReg)
867
819
return NULL ;
868
820
}
869
821
870
- virtual BOOL IsInFilter (GCInfoToken gcInfoToken,
871
- unsigned offset,
872
- PCONTEXT pCtx,
873
- DWORD curNestLevel)
874
- {
875
- _ASSERTE (FALSE );
876
- return FALSE ;
877
- }
878
822
virtual BOOL LeaveFinally (GCInfoToken gcInfoToken,
879
823
unsigned offset,
880
824
PCONTEXT pCtx)
0 commit comments