Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/coreclr/tools/Common/JitInterface/CorInfoBase.cs')
-rw-r--r--src/coreclr/tools/Common/JitInterface/CorInfoBase.cs356
1 files changed, 177 insertions, 179 deletions
diff --git a/src/coreclr/tools/Common/JitInterface/CorInfoBase.cs b/src/coreclr/tools/Common/JitInterface/CorInfoBase.cs
index 541c0dc424c..2aa2105765b 100644
--- a/src/coreclr/tools/Common/JitInterface/CorInfoBase.cs
+++ b/src/coreclr/tools/Common/JitInterface/CorInfoBase.cs
@@ -10,10 +10,10 @@ using System.Runtime.InteropServices;
namespace Internal.JitInterface
{
- unsafe partial class CorInfoImpl
+ internal unsafe partial class CorInfoImpl
{
[UnmanagedCallersOnly]
- static byte _isIntrinsic(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* ftn)
+ private static byte _isIntrinsic(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* ftn)
{
var _this = GetThis(thisHandle);
try
@@ -28,7 +28,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static uint _getMethodAttribs(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* ftn)
+ private static uint _getMethodAttribs(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* ftn)
{
var _this = GetThis(thisHandle);
try
@@ -43,7 +43,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static void _setMethodAttribs(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* ftn, CorInfoMethodRuntimeFlags attribs)
+ private static void _setMethodAttribs(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* ftn, CorInfoMethodRuntimeFlags attribs)
{
var _this = GetThis(thisHandle);
try
@@ -57,7 +57,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static void _getMethodSig(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* ftn, CORINFO_SIG_INFO* sig, CORINFO_CLASS_STRUCT_* memberParent)
+ private static void _getMethodSig(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* ftn, CORINFO_SIG_INFO* sig, CORINFO_CLASS_STRUCT_* memberParent)
{
var _this = GetThis(thisHandle);
try
@@ -71,7 +71,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static byte _getMethodInfo(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* ftn, CORINFO_METHOD_INFO* info)
+ private static byte _getMethodInfo(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* ftn, CORINFO_METHOD_INFO* info)
{
var _this = GetThis(thisHandle);
try
@@ -86,7 +86,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static CorInfoInline _canInline(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* callerHnd, CORINFO_METHOD_STRUCT_* calleeHnd)
+ private static CorInfoInline _canInline(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* callerHnd, CORINFO_METHOD_STRUCT_* calleeHnd)
{
var _this = GetThis(thisHandle);
try
@@ -101,7 +101,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static void _beginInlining(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* inlinerHnd, CORINFO_METHOD_STRUCT_* inlineeHnd)
+ private static void _beginInlining(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* inlinerHnd, CORINFO_METHOD_STRUCT_* inlineeHnd)
{
var _this = GetThis(thisHandle);
try
@@ -115,7 +115,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static void _reportInliningDecision(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* inlinerHnd, CORINFO_METHOD_STRUCT_* inlineeHnd, CorInfoInline inlineResult, byte* reason)
+ private static void _reportInliningDecision(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* inlinerHnd, CORINFO_METHOD_STRUCT_* inlineeHnd, CorInfoInline inlineResult, byte* reason)
{
var _this = GetThis(thisHandle);
try
@@ -129,7 +129,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static byte _canTailCall(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* callerHnd, CORINFO_METHOD_STRUCT_* declaredCalleeHnd, CORINFO_METHOD_STRUCT_* exactCalleeHnd, byte fIsTailPrefix)
+ private static byte _canTailCall(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* callerHnd, CORINFO_METHOD_STRUCT_* declaredCalleeHnd, CORINFO_METHOD_STRUCT_* exactCalleeHnd, byte fIsTailPrefix)
{
var _this = GetThis(thisHandle);
try
@@ -144,7 +144,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static void _reportTailCallDecision(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* callerHnd, CORINFO_METHOD_STRUCT_* calleeHnd, byte fIsTailPrefix, CorInfoTailCall tailCallResult, byte* reason)
+ private static void _reportTailCallDecision(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* callerHnd, CORINFO_METHOD_STRUCT_* calleeHnd, byte fIsTailPrefix, CorInfoTailCall tailCallResult, byte* reason)
{
var _this = GetThis(thisHandle);
try
@@ -158,7 +158,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static void _getEHinfo(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* ftn, uint EHnumber, CORINFO_EH_CLAUSE* clause)
+ private static void _getEHinfo(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* ftn, uint EHnumber, CORINFO_EH_CLAUSE* clause)
{
var _this = GetThis(thisHandle);
try
@@ -172,7 +172,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static CORINFO_CLASS_STRUCT_* _getMethodClass(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* method)
+ private static CORINFO_CLASS_STRUCT_* _getMethodClass(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* method)
{
var _this = GetThis(thisHandle);
try
@@ -187,7 +187,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static CORINFO_MODULE_STRUCT_* _getMethodModule(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* method)
+ private static CORINFO_MODULE_STRUCT_* _getMethodModule(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* method)
{
var _this = GetThis(thisHandle);
try
@@ -202,7 +202,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static void _getMethodVTableOffset(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* method, uint* offsetOfIndirection, uint* offsetAfterIndirection, bool* isRelative)
+ private static void _getMethodVTableOffset(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* method, uint* offsetOfIndirection, uint* offsetAfterIndirection, bool* isRelative)
{
var _this = GetThis(thisHandle);
try
@@ -216,7 +216,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static byte _resolveVirtualMethod(IntPtr thisHandle, IntPtr* ppException, CORINFO_DEVIRTUALIZATION_INFO* info)
+ private static byte _resolveVirtualMethod(IntPtr thisHandle, IntPtr* ppException, CORINFO_DEVIRTUALIZATION_INFO* info)
{
var _this = GetThis(thisHandle);
try
@@ -231,7 +231,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static CORINFO_METHOD_STRUCT_* _getUnboxedEntry(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* ftn, bool* requiresInstMethodTableArg)
+ private static CORINFO_METHOD_STRUCT_* _getUnboxedEntry(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* ftn, bool* requiresInstMethodTableArg)
{
var _this = GetThis(thisHandle);
try
@@ -246,7 +246,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static CORINFO_CLASS_STRUCT_* _getDefaultComparerClass(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* elemType)
+ private static CORINFO_CLASS_STRUCT_* _getDefaultComparerClass(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* elemType)
{
var _this = GetThis(thisHandle);
try
@@ -261,7 +261,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static CORINFO_CLASS_STRUCT_* _getDefaultEqualityComparerClass(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* elemType)
+ private static CORINFO_CLASS_STRUCT_* _getDefaultEqualityComparerClass(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* elemType)
{
var _this = GetThis(thisHandle);
try
@@ -276,7 +276,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static void _expandRawHandleIntrinsic(IntPtr thisHandle, IntPtr* ppException, CORINFO_RESOLVED_TOKEN* pResolvedToken, CORINFO_GENERICHANDLE_RESULT* pResult)
+ private static void _expandRawHandleIntrinsic(IntPtr thisHandle, IntPtr* ppException, CORINFO_RESOLVED_TOKEN* pResolvedToken, CORINFO_GENERICHANDLE_RESULT* pResult)
{
var _this = GetThis(thisHandle);
try
@@ -290,7 +290,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static byte _isIntrinsicType(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* classHnd)
+ private static byte _isIntrinsicType(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* classHnd)
{
var _this = GetThis(thisHandle);
try
@@ -305,7 +305,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static CorInfoCallConvExtension _getUnmanagedCallConv(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* method, CORINFO_SIG_INFO* callSiteSig, bool* pSuppressGCTransition)
+ private static CorInfoCallConvExtension _getUnmanagedCallConv(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* method, CORINFO_SIG_INFO* callSiteSig, bool* pSuppressGCTransition)
{
var _this = GetThis(thisHandle);
try
@@ -320,7 +320,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static byte _pInvokeMarshalingRequired(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* method, CORINFO_SIG_INFO* callSiteSig)
+ private static byte _pInvokeMarshalingRequired(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* method, CORINFO_SIG_INFO* callSiteSig)
{
var _this = GetThis(thisHandle);
try
@@ -335,7 +335,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static byte _satisfiesMethodConstraints(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* parent, CORINFO_METHOD_STRUCT_* method)
+ private static byte _satisfiesMethodConstraints(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* parent, CORINFO_METHOD_STRUCT_* method)
{
var _this = GetThis(thisHandle);
try
@@ -350,7 +350,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static byte _isCompatibleDelegate(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* objCls, CORINFO_CLASS_STRUCT_* methodParentCls, CORINFO_METHOD_STRUCT_* method, CORINFO_CLASS_STRUCT_* delegateCls, bool* pfIsOpenDelegate)
+ private static byte _isCompatibleDelegate(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* objCls, CORINFO_CLASS_STRUCT_* methodParentCls, CORINFO_METHOD_STRUCT_* method, CORINFO_CLASS_STRUCT_* delegateCls, bool* pfIsOpenDelegate)
{
var _this = GetThis(thisHandle);
try
@@ -365,7 +365,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static void _methodMustBeLoadedBeforeCodeIsRun(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* method)
+ private static void _methodMustBeLoadedBeforeCodeIsRun(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* method)
{
var _this = GetThis(thisHandle);
try
@@ -379,7 +379,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static CORINFO_METHOD_STRUCT_* _mapMethodDeclToMethodImpl(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* method)
+ private static CORINFO_METHOD_STRUCT_* _mapMethodDeclToMethodImpl(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* method)
{
var _this = GetThis(thisHandle);
try
@@ -394,7 +394,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static void _getGSCookie(IntPtr thisHandle, IntPtr* ppException, IntPtr* pCookieVal, IntPtr** ppCookieVal)
+ private static void _getGSCookie(IntPtr thisHandle, IntPtr* ppException, IntPtr* pCookieVal, IntPtr** ppCookieVal)
{
var _this = GetThis(thisHandle);
try
@@ -408,7 +408,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static void _setPatchpointInfo(IntPtr thisHandle, IntPtr* ppException, PatchpointInfo* patchpointInfo)
+ private static void _setPatchpointInfo(IntPtr thisHandle, IntPtr* ppException, PatchpointInfo* patchpointInfo)
{
var _this = GetThis(thisHandle);
try
@@ -422,7 +422,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static PatchpointInfo* _getOSRInfo(IntPtr thisHandle, IntPtr* ppException, uint* ilOffset)
+ private static PatchpointInfo* _getOSRInfo(IntPtr thisHandle, IntPtr* ppException, uint* ilOffset)
{
var _this = GetThis(thisHandle);
try
@@ -437,7 +437,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static void _resolveToken(IntPtr thisHandle, IntPtr* ppException, CORINFO_RESOLVED_TOKEN* pResolvedToken)
+ private static void _resolveToken(IntPtr thisHandle, IntPtr* ppException, CORINFO_RESOLVED_TOKEN* pResolvedToken)
{
var _this = GetThis(thisHandle);
try
@@ -451,7 +451,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static byte _tryResolveToken(IntPtr thisHandle, IntPtr* ppException, CORINFO_RESOLVED_TOKEN* pResolvedToken)
+ private static byte _tryResolveToken(IntPtr thisHandle, IntPtr* ppException, CORINFO_RESOLVED_TOKEN* pResolvedToken)
{
var _this = GetThis(thisHandle);
try
@@ -466,7 +466,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static void _findSig(IntPtr thisHandle, IntPtr* ppException, CORINFO_MODULE_STRUCT_* module, uint sigTOK, CORINFO_CONTEXT_STRUCT* context, CORINFO_SIG_INFO* sig)
+ private static void _findSig(IntPtr thisHandle, IntPtr* ppException, CORINFO_MODULE_STRUCT_* module, uint sigTOK, CORINFO_CONTEXT_STRUCT* context, CORINFO_SIG_INFO* sig)
{
var _this = GetThis(thisHandle);
try
@@ -480,7 +480,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static void _findCallSiteSig(IntPtr thisHandle, IntPtr* ppException, CORINFO_MODULE_STRUCT_* module, uint methTOK, CORINFO_CONTEXT_STRUCT* context, CORINFO_SIG_INFO* sig)
+ private static void _findCallSiteSig(IntPtr thisHandle, IntPtr* ppException, CORINFO_MODULE_STRUCT_* module, uint methTOK, CORINFO_CONTEXT_STRUCT* context, CORINFO_SIG_INFO* sig)
{
var _this = GetThis(thisHandle);
try
@@ -494,7 +494,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static CORINFO_CLASS_STRUCT_* _getTokenTypeAsHandle(IntPtr thisHandle, IntPtr* ppException, CORINFO_RESOLVED_TOKEN* pResolvedToken)
+ private static CORINFO_CLASS_STRUCT_* _getTokenTypeAsHandle(IntPtr thisHandle, IntPtr* ppException, CORINFO_RESOLVED_TOKEN* pResolvedToken)
{
var _this = GetThis(thisHandle);
try
@@ -509,7 +509,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static byte _isValidToken(IntPtr thisHandle, IntPtr* ppException, CORINFO_MODULE_STRUCT_* module, uint metaTOK)
+ private static byte _isValidToken(IntPtr thisHandle, IntPtr* ppException, CORINFO_MODULE_STRUCT_* module, uint metaTOK)
{
var _this = GetThis(thisHandle);
try
@@ -524,7 +524,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static byte _isValidStringRef(IntPtr thisHandle, IntPtr* ppException, CORINFO_MODULE_STRUCT_* module, uint metaTOK)
+ private static byte _isValidStringRef(IntPtr thisHandle, IntPtr* ppException, CORINFO_MODULE_STRUCT_* module, uint metaTOK)
{
var _this = GetThis(thisHandle);
try
@@ -539,7 +539,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static int _getStringLiteral(IntPtr thisHandle, IntPtr* ppException, CORINFO_MODULE_STRUCT_* module, uint metaTOK, char* buffer, int bufferSize)
+ private static int _getStringLiteral(IntPtr thisHandle, IntPtr* ppException, CORINFO_MODULE_STRUCT_* module, uint metaTOK, char* buffer, int bufferSize)
{
var _this = GetThis(thisHandle);
try
@@ -554,7 +554,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static CorInfoType _asCorInfoType(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls)
+ private static CorInfoType _asCorInfoType(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls)
{
var _this = GetThis(thisHandle);
try
@@ -569,7 +569,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static byte* _getClassName(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls)
+ private static byte* _getClassName(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls)
{
var _this = GetThis(thisHandle);
try
@@ -584,7 +584,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static byte* _getClassNameFromMetadata(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls, byte** namespaceName)
+ private static byte* _getClassNameFromMetadata(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls, byte** namespaceName)
{
var _this = GetThis(thisHandle);
try
@@ -599,7 +599,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static CORINFO_CLASS_STRUCT_* _getTypeInstantiationArgument(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls, uint index)
+ private static CORINFO_CLASS_STRUCT_* _getTypeInstantiationArgument(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls, uint index)
{
var _this = GetThis(thisHandle);
try
@@ -614,7 +614,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static int _appendClassName(IntPtr thisHandle, IntPtr* ppException, char** ppBuf, int* pnBufLen, CORINFO_CLASS_STRUCT_* cls, byte fNamespace, byte fFullInst, byte fAssembly)
+ private static int _appendClassName(IntPtr thisHandle, IntPtr* ppException, char** ppBuf, int* pnBufLen, CORINFO_CLASS_STRUCT_* cls, byte fNamespace, byte fFullInst, byte fAssembly)
{
var _this = GetThis(thisHandle);
try
@@ -629,7 +629,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static byte _isValueClass(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls)
+ private static byte _isValueClass(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls)
{
var _this = GetThis(thisHandle);
try
@@ -644,7 +644,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static CorInfoInlineTypeCheck _canInlineTypeCheck(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls, CorInfoInlineTypeCheckSource source)
+ private static CorInfoInlineTypeCheck _canInlineTypeCheck(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls, CorInfoInlineTypeCheckSource source)
{
var _this = GetThis(thisHandle);
try
@@ -659,7 +659,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static uint _getClassAttribs(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls)
+ private static uint _getClassAttribs(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls)
{
var _this = GetThis(thisHandle);
try
@@ -674,7 +674,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static CORINFO_MODULE_STRUCT_* _getClassModule(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls)
+ private static CORINFO_MODULE_STRUCT_* _getClassModule(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls)
{
var _this = GetThis(thisHandle);
try
@@ -689,7 +689,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static CORINFO_ASSEMBLY_STRUCT_* _getModuleAssembly(IntPtr thisHandle, IntPtr* ppException, CORINFO_MODULE_STRUCT_* mod)
+ private static CORINFO_ASSEMBLY_STRUCT_* _getModuleAssembly(IntPtr thisHandle, IntPtr* ppException, CORINFO_MODULE_STRUCT_* mod)
{
var _this = GetThis(thisHandle);
try
@@ -704,7 +704,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static byte* _getAssemblyName(IntPtr thisHandle, IntPtr* ppException, CORINFO_ASSEMBLY_STRUCT_* assem)
+ private static byte* _getAssemblyName(IntPtr thisHandle, IntPtr* ppException, CORINFO_ASSEMBLY_STRUCT_* assem)
{
var _this = GetThis(thisHandle);
try
@@ -719,7 +719,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static void* _LongLifetimeMalloc(IntPtr thisHandle, IntPtr* ppException, UIntPtr sz)
+ private static void* _LongLifetimeMalloc(IntPtr thisHandle, IntPtr* ppException, UIntPtr sz)
{
var _this = GetThis(thisHandle);
try
@@ -734,7 +734,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static void _LongLifetimeFree(IntPtr thisHandle, IntPtr* ppException, void* obj)
+ private static void _LongLifetimeFree(IntPtr thisHandle, IntPtr* ppException, void* obj)
{
var _this = GetThis(thisHandle);
try
@@ -748,7 +748,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static UIntPtr _getClassModuleIdForStatics(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls, CORINFO_MODULE_STRUCT_** pModule, void** ppIndirection)
+ private static UIntPtr _getClassModuleIdForStatics(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls, CORINFO_MODULE_STRUCT_** pModule, void** ppIndirection)
{
var _this = GetThis(thisHandle);
try
@@ -763,7 +763,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static uint _getClassSize(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls)
+ private static uint _getClassSize(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls)
{
var _this = GetThis(thisHandle);
try
@@ -778,7 +778,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static uint _getHeapClassSize(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls)
+ private static uint _getHeapClassSize(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls)
{
var _this = GetThis(thisHandle);
try
@@ -793,7 +793,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static byte _canAllocateOnStack(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls)
+ private static byte _canAllocateOnStack(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls)
{
var _this = GetThis(thisHandle);
try
@@ -808,7 +808,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static uint _getClassAlignmentRequirement(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls, byte fDoubleAlignHint)
+ private static uint _getClassAlignmentRequirement(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls, byte fDoubleAlignHint)
{
var _this = GetThis(thisHandle);
try
@@ -823,7 +823,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static uint _getClassGClayout(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls, byte* gcPtrs)
+ private static uint _getClassGClayout(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls, byte* gcPtrs)
{
var _this = GetThis(thisHandle);
try
@@ -838,7 +838,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static uint _getClassNumInstanceFields(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls)
+ private static uint _getClassNumInstanceFields(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls)
{
var _this = GetThis(thisHandle);
try
@@ -853,7 +853,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static CORINFO_FIELD_STRUCT_* _getFieldInClass(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* clsHnd, int num)
+ private static CORINFO_FIELD_STRUCT_* _getFieldInClass(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* clsHnd, int num)
{
var _this = GetThis(thisHandle);
try
@@ -868,7 +868,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static byte _checkMethodModifier(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* hMethod, byte* modifier, byte fOptional)
+ private static byte _checkMethodModifier(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* hMethod, byte* modifier, byte fOptional)
{
var _this = GetThis(thisHandle);
try
@@ -883,7 +883,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static CorInfoHelpFunc _getNewHelper(IntPtr thisHandle, IntPtr* ppException, CORINFO_RESOLVED_TOKEN* pResolvedToken, CORINFO_METHOD_STRUCT_* callerHandle, bool* pHasSideEffects)
+ private static CorInfoHelpFunc _getNewHelper(IntPtr thisHandle, IntPtr* ppException, CORINFO_RESOLVED_TOKEN* pResolvedToken, CORINFO_METHOD_STRUCT_* callerHandle, bool* pHasSideEffects)
{
var _this = GetThis(thisHandle);
try
@@ -898,7 +898,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static CorInfoHelpFunc _getNewArrHelper(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* arrayCls)
+ private static CorInfoHelpFunc _getNewArrHelper(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* arrayCls)
{
var _this = GetThis(thisHandle);
try
@@ -913,7 +913,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static CorInfoHelpFunc _getCastingHelper(IntPtr thisHandle, IntPtr* ppException, CORINFO_RESOLVED_TOKEN* pResolvedToken, byte fThrowing)
+ private static CorInfoHelpFunc _getCastingHelper(IntPtr thisHandle, IntPtr* ppException, CORINFO_RESOLVED_TOKEN* pResolvedToken, byte fThrowing)
{
var _this = GetThis(thisHandle);
try
@@ -928,7 +928,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static CorInfoHelpFunc _getSharedCCtorHelper(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* clsHnd)
+ private static CorInfoHelpFunc _getSharedCCtorHelper(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* clsHnd)
{
var _this = GetThis(thisHandle);
try
@@ -943,7 +943,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static CORINFO_CLASS_STRUCT_* _getTypeForBox(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls)
+ private static CORINFO_CLASS_STRUCT_* _getTypeForBox(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls)
{
var _this = GetThis(thisHandle);
try
@@ -958,7 +958,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static CorInfoHelpFunc _getBoxHelper(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls)
+ private static CorInfoHelpFunc _getBoxHelper(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls)
{
var _this = GetThis(thisHandle);
try
@@ -973,7 +973,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static CorInfoHelpFunc _getUnBoxHelper(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls)
+ private static CorInfoHelpFunc _getUnBoxHelper(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls)
{
var _this = GetThis(thisHandle);
try
@@ -988,7 +988,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static byte _getReadyToRunHelper(IntPtr thisHandle, IntPtr* ppException, CORINFO_RESOLVED_TOKEN* pResolvedToken, CORINFO_LOOKUP_KIND* pGenericLookupKind, CorInfoHelpFunc id, CORINFO_CONST_LOOKUP* pLookup)
+ private static byte _getReadyToRunHelper(IntPtr thisHandle, IntPtr* ppException, CORINFO_RESOLVED_TOKEN* pResolvedToken, CORINFO_LOOKUP_KIND* pGenericLookupKind, CorInfoHelpFunc id, CORINFO_CONST_LOOKUP* pLookup)
{
var _this = GetThis(thisHandle);
try
@@ -1003,7 +1003,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static void _getReadyToRunDelegateCtorHelper(IntPtr thisHandle, IntPtr* ppException, CORINFO_RESOLVED_TOKEN* pTargetMethod, mdToken targetConstraint, CORINFO_CLASS_STRUCT_* delegateType, CORINFO_LOOKUP* pLookup)
+ private static void _getReadyToRunDelegateCtorHelper(IntPtr thisHandle, IntPtr* ppException, CORINFO_RESOLVED_TOKEN* pTargetMethod, mdToken targetConstraint, CORINFO_CLASS_STRUCT_* delegateType, CORINFO_LOOKUP* pLookup)
{
var _this = GetThis(thisHandle);
try
@@ -1017,7 +1017,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static byte* _getHelperName(IntPtr thisHandle, IntPtr* ppException, CorInfoHelpFunc helpFunc)
+ private static byte* _getHelperName(IntPtr thisHandle, IntPtr* ppException, CorInfoHelpFunc helpFunc)
{
var _this = GetThis(thisHandle);
try
@@ -1032,7 +1032,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static CorInfoInitClassResult _initClass(IntPtr thisHandle, IntPtr* ppException, CORINFO_FIELD_STRUCT_* field, CORINFO_METHOD_STRUCT_* method, CORINFO_CONTEXT_STRUCT* context)
+ private static CorInfoInitClassResult _initClass(IntPtr thisHandle, IntPtr* ppException, CORINFO_FIELD_STRUCT_* field, CORINFO_METHOD_STRUCT_* method, CORINFO_CONTEXT_STRUCT* context)
{
var _this = GetThis(thisHandle);
try
@@ -1047,7 +1047,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static void _classMustBeLoadedBeforeCodeIsRun(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls)
+ private static void _classMustBeLoadedBeforeCodeIsRun(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls)
{
var _this = GetThis(thisHandle);
try
@@ -1061,7 +1061,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static CORINFO_CLASS_STRUCT_* _getBuiltinClass(IntPtr thisHandle, IntPtr* ppException, CorInfoClassId classId)
+ private static CORINFO_CLASS_STRUCT_* _getBuiltinClass(IntPtr thisHandle, IntPtr* ppException, CorInfoClassId classId)
{
var _this = GetThis(thisHandle);
try
@@ -1076,7 +1076,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static CorInfoType _getTypeForPrimitiveValueClass(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls)
+ private static CorInfoType _getTypeForPrimitiveValueClass(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls)
{
var _this = GetThis(thisHandle);
try
@@ -1091,7 +1091,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static CorInfoType _getTypeForPrimitiveNumericClass(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls)
+ private static CorInfoType _getTypeForPrimitiveNumericClass(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls)
{
var _this = GetThis(thisHandle);
try
@@ -1106,7 +1106,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static byte _canCast(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* child, CORINFO_CLASS_STRUCT_* parent)
+ private static byte _canCast(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* child, CORINFO_CLASS_STRUCT_* parent)
{
var _this = GetThis(thisHandle);
try
@@ -1121,7 +1121,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static byte _areTypesEquivalent(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls1, CORINFO_CLASS_STRUCT_* cls2)
+ private static byte _areTypesEquivalent(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls1, CORINFO_CLASS_STRUCT_* cls2)
{
var _this = GetThis(thisHandle);
try
@@ -1136,7 +1136,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static TypeCompareState _compareTypesForCast(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* fromClass, CORINFO_CLASS_STRUCT_* toClass)
+ private static TypeCompareState _compareTypesForCast(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* fromClass, CORINFO_CLASS_STRUCT_* toClass)
{
var _this = GetThis(thisHandle);
try
@@ -1151,7 +1151,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static TypeCompareState _compareTypesForEquality(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls1, CORINFO_CLASS_STRUCT_* cls2)
+ private static TypeCompareState _compareTypesForEquality(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls1, CORINFO_CLASS_STRUCT_* cls2)
{
var _this = GetThis(thisHandle);
try
@@ -1166,7 +1166,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static CORINFO_CLASS_STRUCT_* _mergeClasses(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls1, CORINFO_CLASS_STRUCT_* cls2)
+ private static CORINFO_CLASS_STRUCT_* _mergeClasses(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls1, CORINFO_CLASS_STRUCT_* cls2)
{
var _this = GetThis(thisHandle);
try
@@ -1181,7 +1181,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static byte _isMoreSpecificType(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls1, CORINFO_CLASS_STRUCT_* cls2)
+ private static byte _isMoreSpecificType(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls1, CORINFO_CLASS_STRUCT_* cls2)
{
var _this = GetThis(thisHandle);
try
@@ -1196,7 +1196,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static CORINFO_CLASS_STRUCT_* _getParentType(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls)
+ private static CORINFO_CLASS_STRUCT_* _getParentType(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls)
{
var _this = GetThis(thisHandle);
try
@@ -1211,7 +1211,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static CorInfoType _getChildType(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* clsHnd, CORINFO_CLASS_STRUCT_** clsRet)
+ private static CorInfoType _getChildType(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* clsHnd, CORINFO_CLASS_STRUCT_** clsRet)
{
var _this = GetThis(thisHandle);
try
@@ -1226,7 +1226,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static byte _satisfiesClassConstraints(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls)
+ private static byte _satisfiesClassConstraints(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls)
{
var _this = GetThis(thisHandle);
try
@@ -1241,7 +1241,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static byte _isSDArray(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls)
+ private static byte _isSDArray(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls)
{
var _this = GetThis(thisHandle);
try
@@ -1256,7 +1256,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static uint _getArrayRank(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls)
+ private static uint _getArrayRank(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls)
{
var _this = GetThis(thisHandle);
try
@@ -1271,7 +1271,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static CorInfoArrayIntrinsic _getArrayIntrinsicID(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* ftn)
+ private static CorInfoArrayIntrinsic _getArrayIntrinsicID(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* ftn)
{
var _this = GetThis(thisHandle);
try
@@ -1286,7 +1286,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static void* _getArrayInitializationData(IntPtr thisHandle, IntPtr* ppException, CORINFO_FIELD_STRUCT_* field, uint size)
+ private static void* _getArrayInitializationData(IntPtr thisHandle, IntPtr* ppException, CORINFO_FIELD_STRUCT_* field, uint size)
{
var _this = GetThis(thisHandle);
try
@@ -1301,7 +1301,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static CorInfoIsAccessAllowedResult _canAccessClass(IntPtr thisHandle, IntPtr* ppException, CORINFO_RESOLVED_TOKEN* pResolvedToken, CORINFO_METHOD_STRUCT_* callerHandle, CORINFO_HELPER_DESC* pAccessHelper)
+ private static CorInfoIsAccessAllowedResult _canAccessClass(IntPtr thisHandle, IntPtr* ppException, CORINFO_RESOLVED_TOKEN* pResolvedToken, CORINFO_METHOD_STRUCT_* callerHandle, CORINFO_HELPER_DESC* pAccessHelper)
{
var _this = GetThis(thisHandle);
try
@@ -1316,7 +1316,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static byte* _getFieldName(IntPtr thisHandle, IntPtr* ppException, CORINFO_FIELD_STRUCT_* ftn, byte** moduleName)
+ private static byte* _getFieldName(IntPtr thisHandle, IntPtr* ppException, CORINFO_FIELD_STRUCT_* ftn, byte** moduleName)
{
var _this = GetThis(thisHandle);
try
@@ -1331,7 +1331,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static CORINFO_CLASS_STRUCT_* _getFieldClass(IntPtr thisHandle, IntPtr* ppException, CORINFO_FIELD_STRUCT_* field)
+ private static CORINFO_CLASS_STRUCT_* _getFieldClass(IntPtr thisHandle, IntPtr* ppException, CORINFO_FIELD_STRUCT_* field)
{
var _this = GetThis(thisHandle);
try
@@ -1346,7 +1346,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static CorInfoType _getFieldType(IntPtr thisHandle, IntPtr* ppException, CORINFO_FIELD_STRUCT_* field, CORINFO_CLASS_STRUCT_** structType, CORINFO_CLASS_STRUCT_* memberParent)
+ private static CorInfoType _getFieldType(IntPtr thisHandle, IntPtr* ppException, CORINFO_FIELD_STRUCT_* field, CORINFO_CLASS_STRUCT_** structType, CORINFO_CLASS_STRUCT_* memberParent)
{
var _this = GetThis(thisHandle);
try
@@ -1361,7 +1361,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static uint _getFieldOffset(IntPtr thisHandle, IntPtr* ppException, CORINFO_FIELD_STRUCT_* field)
+ private static uint _getFieldOffset(IntPtr thisHandle, IntPtr* ppException, CORINFO_FIELD_STRUCT_* field)
{
var _this = GetThis(thisHandle);
try
@@ -1376,7 +1376,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static void _getFieldInfo(IntPtr thisHandle, IntPtr* ppException, CORINFO_RESOLVED_TOKEN* pResolvedToken, CORINFO_METHOD_STRUCT_* callerHandle, CORINFO_ACCESS_FLAGS flags, CORINFO_FIELD_INFO* pResult)
+ private static void _getFieldInfo(IntPtr thisHandle, IntPtr* ppException, CORINFO_RESOLVED_TOKEN* pResolvedToken, CORINFO_METHOD_STRUCT_* callerHandle, CORINFO_ACCESS_FLAGS flags, CORINFO_FIELD_INFO* pResult)
{
var _this = GetThis(thisHandle);
try
@@ -1390,7 +1390,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static byte _isFieldStatic(IntPtr thisHandle, IntPtr* ppException, CORINFO_FIELD_STRUCT_* fldHnd)
+ private static byte _isFieldStatic(IntPtr thisHandle, IntPtr* ppException, CORINFO_FIELD_STRUCT_* fldHnd)
{
var _this = GetThis(thisHandle);
try
@@ -1405,7 +1405,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static void _getBoundaries(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* ftn, uint* cILOffsets, uint** pILOffsets, BoundaryTypes* implicitBoundaries)
+ private static void _getBoundaries(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* ftn, uint* cILOffsets, uint** pILOffsets, BoundaryTypes* implicitBoundaries)
{
var _this = GetThis(thisHandle);
try
@@ -1419,7 +1419,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static void _setBoundaries(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* ftn, uint cMap, OffsetMapping* pMap)
+ private static void _setBoundaries(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* ftn, uint cMap, OffsetMapping* pMap)
{
var _this = GetThis(thisHandle);
try
@@ -1433,7 +1433,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static void _getVars(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* ftn, uint* cVars, ILVarInfo** vars, bool* extendOthers)
+ private static void _getVars(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* ftn, uint* cVars, ILVarInfo** vars, bool* extendOthers)
{
var _this = GetThis(thisHandle);
try
@@ -1447,7 +1447,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static void _setVars(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* ftn, uint cVars, NativeVarInfo* vars)
+ private static void _setVars(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* ftn, uint cVars, NativeVarInfo* vars)
{
var _this = GetThis(thisHandle);
try
@@ -1461,7 +1461,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static void _reportRichMappings(IntPtr thisHandle, IntPtr* ppException, InlineTreeNode* inlineTreeNodes, uint numInlineTreeNodes, RichOffsetMapping* mappings, uint numMappings)
+ private static void _reportRichMappings(IntPtr thisHandle, IntPtr* ppException, InlineTreeNode* inlineTreeNodes, uint numInlineTreeNodes, RichOffsetMapping* mappings, uint numMappings)
{
var _this = GetThis(thisHandle);
try
@@ -1475,7 +1475,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static void* _allocateArray(IntPtr thisHandle, IntPtr* ppException, UIntPtr cBytes)
+ private static void* _allocateArray(IntPtr thisHandle, IntPtr* ppException, UIntPtr cBytes)
{
var _this = GetThis(thisHandle);
try
@@ -1490,7 +1490,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static void _freeArray(IntPtr thisHandle, IntPtr* ppException, void* array)
+ private static void _freeArray(IntPtr thisHandle, IntPtr* ppException, void* array)
{
var _this = GetThis(thisHandle);
try
@@ -1504,7 +1504,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static CORINFO_ARG_LIST_STRUCT_* _getArgNext(IntPtr thisHandle, IntPtr* ppException, CORINFO_ARG_LIST_STRUCT_* args)
+ private static CORINFO_ARG_LIST_STRUCT_* _getArgNext(IntPtr thisHandle, IntPtr* ppException, CORINFO_ARG_LIST_STRUCT_* args)
{
var _this = GetThis(thisHandle);
try
@@ -1519,7 +1519,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static CorInfoTypeWithMod _getArgType(IntPtr thisHandle, IntPtr* ppException, CORINFO_SIG_INFO* sig, CORINFO_ARG_LIST_STRUCT_* args, CORINFO_CLASS_STRUCT_** vcTypeRet)
+ private static CorInfoTypeWithMod _getArgType(IntPtr thisHandle, IntPtr* ppException, CORINFO_SIG_INFO* sig, CORINFO_ARG_LIST_STRUCT_* args, CORINFO_CLASS_STRUCT_** vcTypeRet)
{
var _this = GetThis(thisHandle);
try
@@ -1534,7 +1534,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static int _getExactClasses(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* baseType, int maxExactClasses, CORINFO_CLASS_STRUCT_** exactClsRet)
+ private static int _getExactClasses(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* baseType, int maxExactClasses, CORINFO_CLASS_STRUCT_** exactClsRet)
{
var _this = GetThis(thisHandle);
try
@@ -1549,7 +1549,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static CORINFO_CLASS_STRUCT_* _getArgClass(IntPtr thisHandle, IntPtr* ppException, CORINFO_SIG_INFO* sig, CORINFO_ARG_LIST_STRUCT_* args)
+ private static CORINFO_CLASS_STRUCT_* _getArgClass(IntPtr thisHandle, IntPtr* ppException, CORINFO_SIG_INFO* sig, CORINFO_ARG_LIST_STRUCT_* args)
{
var _this = GetThis(thisHandle);
try
@@ -1564,7 +1564,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static CorInfoHFAElemType _getHFAType(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* hClass)
+ private static CorInfoHFAElemType _getHFAType(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* hClass)
{
var _this = GetThis(thisHandle);
try
@@ -1579,7 +1579,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static HRESULT _GetErrorHRESULT(IntPtr thisHandle, IntPtr* ppException, _EXCEPTION_POINTERS* pExceptionPointers)
+ private static HRESULT _GetErrorHRESULT(IntPtr thisHandle, IntPtr* ppException, _EXCEPTION_POINTERS* pExceptionPointers)
{
var _this = GetThis(thisHandle);
try
@@ -1594,7 +1594,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static uint _GetErrorMessage(IntPtr thisHandle, IntPtr* ppException, char* buffer, uint bufferLength)
+ private static uint _GetErrorMessage(IntPtr thisHandle, IntPtr* ppException, char* buffer, uint bufferLength)
{
var _this = GetThis(thisHandle);
try
@@ -1609,7 +1609,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static int _FilterException(IntPtr thisHandle, IntPtr* ppException, _EXCEPTION_POINTERS* pExceptionPointers)
+ private static int _FilterException(IntPtr thisHandle, IntPtr* ppException, _EXCEPTION_POINTERS* pExceptionPointers)
{
var _this = GetThis(thisHandle);
try
@@ -1624,7 +1624,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static void _ThrowExceptionForJitResult(IntPtr thisHandle, IntPtr* ppException, HRESULT result)
+ private static void _ThrowExceptionForJitResult(IntPtr thisHandle, IntPtr* ppException, HRESULT result)
{
var _this = GetThis(thisHandle);
try
@@ -1638,7 +1638,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static void _ThrowExceptionForHelper(IntPtr thisHandle, IntPtr* ppException, CORINFO_HELPER_DESC* throwHelper)
+ private static void _ThrowExceptionForHelper(IntPtr thisHandle, IntPtr* ppException, CORINFO_HELPER_DESC* throwHelper)
{
var _this = GetThis(thisHandle);
try
@@ -1652,7 +1652,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static byte _runWithErrorTrap(IntPtr thisHandle, IntPtr* ppException, void* function, void* parameter)
+ private static byte _runWithErrorTrap(IntPtr thisHandle, IntPtr* ppException, void* function, void* parameter)
{
var _this = GetThis(thisHandle);
try
@@ -1667,7 +1667,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static byte _runWithSPMIErrorTrap(IntPtr thisHandle, IntPtr* ppException, void* function, void* parameter)
+ private static byte _runWithSPMIErrorTrap(IntPtr thisHandle, IntPtr* ppException, void* function, void* parameter)
{
var _this = GetThis(thisHandle);
try
@@ -1682,7 +1682,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static void _getEEInfo(IntPtr thisHandle, IntPtr* ppException, CORINFO_EE_INFO* pEEInfoOut)
+ private static void _getEEInfo(IntPtr thisHandle, IntPtr* ppException, CORINFO_EE_INFO* pEEInfoOut)
{
var _this = GetThis(thisHandle);
try
@@ -1696,7 +1696,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static char* _getJitTimeLogFilename(IntPtr thisHandle, IntPtr* ppException)
+ private static char* _getJitTimeLogFilename(IntPtr thisHandle, IntPtr* ppException)
{
var _this = GetThis(thisHandle);
try
@@ -1711,7 +1711,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static mdToken _getMethodDefFromMethod(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* hMethod)
+ private static mdToken _getMethodDefFromMethod(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* hMethod)
{
var _this = GetThis(thisHandle);
try
@@ -1726,7 +1726,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static byte* _getMethodName(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* ftn, byte** moduleName)
+ private static byte* _getMethodName(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* ftn, byte** moduleName)
{
var _this = GetThis(thisHandle);
try
@@ -1741,7 +1741,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static byte* _getMethodNameFromMetadata(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* ftn, byte** className, byte** namespaceName, byte** enclosingClassName)
+ private static byte* _getMethodNameFromMetadata(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* ftn, byte** className, byte** namespaceName, byte** enclosingClassName)
{
var _this = GetThis(thisHandle);
try
@@ -1756,7 +1756,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static uint _getMethodHash(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* ftn)
+ private static uint _getMethodHash(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* ftn)
{
var _this = GetThis(thisHandle);
try
@@ -1771,7 +1771,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static UIntPtr _findNameOfToken(IntPtr thisHandle, IntPtr* ppException, CORINFO_MODULE_STRUCT_* moduleHandle, mdToken token, byte* szFQName, UIntPtr FQNameCapacity)
+ private static UIntPtr _findNameOfToken(IntPtr thisHandle, IntPtr* ppException, CORINFO_MODULE_STRUCT_* moduleHandle, mdToken token, byte* szFQName, UIntPtr FQNameCapacity)
{
var _this = GetThis(thisHandle);
try
@@ -1786,7 +1786,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static byte _getSystemVAmd64PassStructInRegisterDescriptor(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* structHnd, SYSTEMV_AMD64_CORINFO_STRUCT_REG_PASSING_DESCRIPTOR* structPassInRegDescPtr)
+ private static byte _getSystemVAmd64PassStructInRegisterDescriptor(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* structHnd, SYSTEMV_AMD64_CORINFO_STRUCT_REG_PASSING_DESCRIPTOR* structPassInRegDescPtr)
{
var _this = GetThis(thisHandle);
try
@@ -1801,7 +1801,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static uint _getLoongArch64PassStructInRegisterFlags(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* structHnd)
+ private static uint _getLoongArch64PassStructInRegisterFlags(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* structHnd)
{
var _this = GetThis(thisHandle);
try
@@ -1816,7 +1816,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static uint _getThreadTLSIndex(IntPtr thisHandle, IntPtr* ppException, void** ppIndirection)
+ private static uint _getThreadTLSIndex(IntPtr thisHandle, IntPtr* ppException, void** ppIndirection)
{
var _this = GetThis(thisHandle);
try
@@ -1831,7 +1831,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static void* _getInlinedCallFrameVptr(IntPtr thisHandle, IntPtr* ppException, void** ppIndirection)
+ private static void* _getInlinedCallFrameVptr(IntPtr thisHandle, IntPtr* ppException, void** ppIndirection)
{
var _this = GetThis(thisHandle);
try
@@ -1846,7 +1846,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static int* _getAddrOfCaptureThreadGlobal(IntPtr thisHandle, IntPtr* ppException, void** ppIndirection)
+ private static int* _getAddrOfCaptureThreadGlobal(IntPtr thisHandle, IntPtr* ppException, void** ppIndirection)
{
var _this = GetThis(thisHandle);
try
@@ -1861,7 +1861,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static void* _getHelperFtn(IntPtr thisHandle, IntPtr* ppException, CorInfoHelpFunc ftnNum, void** ppIndirection)
+ private static void* _getHelperFtn(IntPtr thisHandle, IntPtr* ppException, CorInfoHelpFunc ftnNum, void** ppIndirection)
{
var _this = GetThis(thisHandle);
try
@@ -1876,7 +1876,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static void _getFunctionEntryPoint(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* ftn, CORINFO_CONST_LOOKUP* pResult, CORINFO_ACCESS_FLAGS accessFlags)
+ private static void _getFunctionEntryPoint(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* ftn, CORINFO_CONST_LOOKUP* pResult, CORINFO_ACCESS_FLAGS accessFlags)
{
var _this = GetThis(thisHandle);
try
@@ -1890,7 +1890,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static void _getFunctionFixedEntryPoint(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* ftn, byte isUnsafeFunctionPointer, CORINFO_CONST_LOOKUP* pResult)
+ private static void _getFunctionFixedEntryPoint(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* ftn, byte isUnsafeFunctionPointer, CORINFO_CONST_LOOKUP* pResult)
{
var _this = GetThis(thisHandle);
try
@@ -1904,7 +1904,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static void* _getMethodSync(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* ftn, void** ppIndirection)
+ private static void* _getMethodSync(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* ftn, void** ppIndirection)
{
var _this = GetThis(thisHandle);
try
@@ -1919,7 +1919,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static CorInfoHelpFunc _getLazyStringLiteralHelper(IntPtr thisHandle, IntPtr* ppException, CORINFO_MODULE_STRUCT_* handle)
+ private static CorInfoHelpFunc _getLazyStringLiteralHelper(IntPtr thisHandle, IntPtr* ppException, CORINFO_MODULE_STRUCT_* handle)
{
var _this = GetThis(thisHandle);
try
@@ -1934,7 +1934,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static CORINFO_MODULE_STRUCT_* _embedModuleHandle(IntPtr thisHandle, IntPtr* ppException, CORINFO_MODULE_STRUCT_* handle, void** ppIndirection)
+ private static CORINFO_MODULE_STRUCT_* _embedModuleHandle(IntPtr thisHandle, IntPtr* ppException, CORINFO_MODULE_STRUCT_* handle, void** ppIndirection)
{
var _this = GetThis(thisHandle);
try
@@ -1949,7 +1949,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static CORINFO_CLASS_STRUCT_* _embedClassHandle(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* handle, void** ppIndirection)
+ private static CORINFO_CLASS_STRUCT_* _embedClassHandle(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* handle, void** ppIndirection)
{
var _this = GetThis(thisHandle);
try
@@ -1964,7 +1964,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static CORINFO_METHOD_STRUCT_* _embedMethodHandle(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* handle, void** ppIndirection)
+ private static CORINFO_METHOD_STRUCT_* _embedMethodHandle(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* handle, void** ppIndirection)
{
var _this = GetThis(thisHandle);
try
@@ -1979,7 +1979,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static CORINFO_FIELD_STRUCT_* _embedFieldHandle(IntPtr thisHandle, IntPtr* ppException, CORINFO_FIELD_STRUCT_* handle, void** ppIndirection)
+ private static CORINFO_FIELD_STRUCT_* _embedFieldHandle(IntPtr thisHandle, IntPtr* ppException, CORINFO_FIELD_STRUCT_* handle, void** ppIndirection)
{
var _this = GetThis(thisHandle);
try
@@ -1994,7 +1994,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static void _embedGenericHandle(IntPtr thisHandle, IntPtr* ppException, CORINFO_RESOLVED_TOKEN* pResolvedToken, byte fEmbedParent, CORINFO_GENERICHANDLE_RESULT* pResult)
+ private static void _embedGenericHandle(IntPtr thisHandle, IntPtr* ppException, CORINFO_RESOLVED_TOKEN* pResolvedToken, byte fEmbedParent, CORINFO_GENERICHANDLE_RESULT* pResult)
{
var _this = GetThis(thisHandle);
try
@@ -2008,7 +2008,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static void _getLocationOfThisType(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* context, CORINFO_LOOKUP_KIND* pLookupKind)
+ private static void _getLocationOfThisType(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* context, CORINFO_LOOKUP_KIND* pLookupKind)
{
var _this = GetThis(thisHandle);
try
@@ -2022,7 +2022,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static void _getAddressOfPInvokeTarget(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* method, CORINFO_CONST_LOOKUP* pLookup)
+ private static void _getAddressOfPInvokeTarget(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* method, CORINFO_CONST_LOOKUP* pLookup)
{
var _this = GetThis(thisHandle);
try
@@ -2036,7 +2036,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static void* _GetCookieForPInvokeCalliSig(IntPtr thisHandle, IntPtr* ppException, CORINFO_SIG_INFO* szMetaSig, void** ppIndirection)
+ private static void* _GetCookieForPInvokeCalliSig(IntPtr thisHandle, IntPtr* ppException, CORINFO_SIG_INFO* szMetaSig, void** ppIndirection)
{
var _this = GetThis(thisHandle);
try
@@ -2051,7 +2051,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static byte _canGetCookieForPInvokeCalliSig(IntPtr thisHandle, IntPtr* ppException, CORINFO_SIG_INFO* szMetaSig)
+ private static byte _canGetCookieForPInvokeCalliSig(IntPtr thisHandle, IntPtr* ppException, CORINFO_SIG_INFO* szMetaSig)
{
var _this = GetThis(thisHandle);
try
@@ -2066,7 +2066,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static CORINFO_JUST_MY_CODE_HANDLE_* _getJustMyCodeHandle(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* method, CORINFO_JUST_MY_CODE_HANDLE_** ppIndirection)
+ private static CORINFO_JUST_MY_CODE_HANDLE_* _getJustMyCodeHandle(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* method, CORINFO_JUST_MY_CODE_HANDLE_** ppIndirection)
{
var _this = GetThis(thisHandle);
try
@@ -2081,7 +2081,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static void _GetProfilingHandle(IntPtr thisHandle, IntPtr* ppException, bool* pbHookFunction, void** pProfilerHandle, bool* pbIndirectedHandles)
+ private static void _GetProfilingHandle(IntPtr thisHandle, IntPtr* ppException, bool* pbHookFunction, void** pProfilerHandle, bool* pbIndirectedHandles)
{
var _this = GetThis(thisHandle);
try
@@ -2095,7 +2095,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static void _getCallInfo(IntPtr thisHandle, IntPtr* ppException, CORINFO_RESOLVED_TOKEN* pResolvedToken, CORINFO_RESOLVED_TOKEN* pConstrainedResolvedToken, CORINFO_METHOD_STRUCT_* callerHandle, CORINFO_CALLINFO_FLAGS flags, CORINFO_CALL_INFO* pResult)
+ private static void _getCallInfo(IntPtr thisHandle, IntPtr* ppException, CORINFO_RESOLVED_TOKEN* pResolvedToken, CORINFO_RESOLVED_TOKEN* pConstrainedResolvedToken, CORINFO_METHOD_STRUCT_* callerHandle, CORINFO_CALLINFO_FLAGS flags, CORINFO_CALL_INFO* pResult)
{
var _this = GetThis(thisHandle);
try
@@ -2109,7 +2109,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static byte _canAccessFamily(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* hCaller, CORINFO_CLASS_STRUCT_* hInstanceType)
+ private static byte _canAccessFamily(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* hCaller, CORINFO_CLASS_STRUCT_* hInstanceType)
{
var _this = GetThis(thisHandle);
try
@@ -2124,7 +2124,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static byte _isRIDClassDomainID(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls)
+ private static byte _isRIDClassDomainID(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls)
{
var _this = GetThis(thisHandle);
try
@@ -2139,7 +2139,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static uint _getClassDomainID(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls, void** ppIndirection)
+ private static uint _getClassDomainID(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls, void** ppIndirection)
{
var _this = GetThis(thisHandle);
try
@@ -2154,7 +2154,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static void* _getFieldAddress(IntPtr thisHandle, IntPtr* ppException, CORINFO_FIELD_STRUCT_* field, void** ppIndirection)
+ private static void* _getFieldAddress(IntPtr thisHandle, IntPtr* ppException, CORINFO_FIELD_STRUCT_* field, void** ppIndirection)
{
var _this = GetThis(thisHandle);
try
@@ -2169,7 +2169,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static CORINFO_CLASS_STRUCT_* _getStaticFieldCurrentClass(IntPtr thisHandle, IntPtr* ppException, CORINFO_FIELD_STRUCT_* field, byte* pIsSpeculative)
+ private static CORINFO_CLASS_STRUCT_* _getStaticFieldCurrentClass(IntPtr thisHandle, IntPtr* ppException, CORINFO_FIELD_STRUCT_* field, byte* pIsSpeculative)
{
var _this = GetThis(thisHandle);
try
@@ -2184,7 +2184,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static IntPtr _getVarArgsHandle(IntPtr thisHandle, IntPtr* ppException, CORINFO_SIG_INFO* pSig, void** ppIndirection)
+ private static IntPtr _getVarArgsHandle(IntPtr thisHandle, IntPtr* ppException, CORINFO_SIG_INFO* pSig, void** ppIndirection)
{
var _this = GetThis(thisHandle);
try
@@ -2199,7 +2199,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static byte _canGetVarArgsHandle(IntPtr thisHandle, IntPtr* ppException, CORINFO_SIG_INFO* pSig)
+ private static byte _canGetVarArgsHandle(IntPtr thisHandle, IntPtr* ppException, CORINFO_SIG_INFO* pSig)
{
var _this = GetThis(thisHandle);
try
@@ -2214,7 +2214,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static InfoAccessType _constructStringLiteral(IntPtr thisHandle, IntPtr* ppException, CORINFO_MODULE_STRUCT_* module, mdToken metaTok, void** ppValue)
+ private static InfoAccessType _constructStringLiteral(IntPtr thisHandle, IntPtr* ppException, CORINFO_MODULE_STRUCT_* module, mdToken metaTok, void** ppValue)
{
var _this = GetThis(thisHandle);
try
@@ -2229,7 +2229,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static InfoAccessType _emptyStringLiteral(IntPtr thisHandle, IntPtr* ppException, void** ppValue)
+ private static InfoAccessType _emptyStringLiteral(IntPtr thisHandle, IntPtr* ppException, void** ppValue)
{
var _this = GetThis(thisHandle);
try
@@ -2244,7 +2244,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static uint _getFieldThreadLocalStoreID(IntPtr thisHandle, IntPtr* ppException, CORINFO_FIELD_STRUCT_* field, void** ppIndirection)
+ private static uint _getFieldThreadLocalStoreID(IntPtr thisHandle, IntPtr* ppException, CORINFO_FIELD_STRUCT_* field, void** ppIndirection)
{
var _this = GetThis(thisHandle);
try
@@ -2259,7 +2259,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static void _addActiveDependency(IntPtr thisHandle, IntPtr* ppException, CORINFO_MODULE_STRUCT_* moduleFrom, CORINFO_MODULE_STRUCT_* moduleTo)
+ private static void _addActiveDependency(IntPtr thisHandle, IntPtr* ppException, CORINFO_MODULE_STRUCT_* moduleFrom, CORINFO_MODULE_STRUCT_* moduleTo)
{
var _this = GetThis(thisHandle);
try
@@ -2273,7 +2273,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static CORINFO_METHOD_STRUCT_* _GetDelegateCtor(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* methHnd, CORINFO_CLASS_STRUCT_* clsHnd, CORINFO_METHOD_STRUCT_* targetMethodHnd, DelegateCtorArgs* pCtorData)
+ private static CORINFO_METHOD_STRUCT_* _GetDelegateCtor(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* methHnd, CORINFO_CLASS_STRUCT_* clsHnd, CORINFO_METHOD_STRUCT_* targetMethodHnd, DelegateCtorArgs* pCtorData)
{
var _this = GetThis(thisHandle);
try
@@ -2288,7 +2288,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static void _MethodCompileComplete(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* methHnd)
+ private static void _MethodCompileComplete(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* methHnd)
{
var _this = GetThis(thisHandle);
try
@@ -2302,7 +2302,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static byte _getTailCallHelpers(IntPtr thisHandle, IntPtr* ppException, CORINFO_RESOLVED_TOKEN* callToken, CORINFO_SIG_INFO* sig, CORINFO_GET_TAILCALL_HELPERS_FLAGS flags, CORINFO_TAILCALL_HELPERS* pResult)
+ private static byte _getTailCallHelpers(IntPtr thisHandle, IntPtr* ppException, CORINFO_RESOLVED_TOKEN* callToken, CORINFO_SIG_INFO* sig, CORINFO_GET_TAILCALL_HELPERS_FLAGS flags, CORINFO_TAILCALL_HELPERS* pResult)
{
var _this = GetThis(thisHandle);
try
@@ -2317,7 +2317,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static byte _convertPInvokeCalliToCall(IntPtr thisHandle, IntPtr* ppException, CORINFO_RESOLVED_TOKEN* pResolvedToken, byte mustConvert)
+ private static byte _convertPInvokeCalliToCall(IntPtr thisHandle, IntPtr* ppException, CORINFO_RESOLVED_TOKEN* pResolvedToken, byte mustConvert)
{
var _this = GetThis(thisHandle);
try
@@ -2332,7 +2332,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static byte _notifyInstructionSetUsage(IntPtr thisHandle, IntPtr* ppException, InstructionSet instructionSet, byte supportEnabled)
+ private static byte _notifyInstructionSetUsage(IntPtr thisHandle, IntPtr* ppException, InstructionSet instructionSet, byte supportEnabled)
{
var _this = GetThis(thisHandle);
try
@@ -2347,7 +2347,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static void _updateEntryPointForTailCall(IntPtr thisHandle, IntPtr* ppException, CORINFO_CONST_LOOKUP* entryPoint)
+ private static void _updateEntryPointForTailCall(IntPtr thisHandle, IntPtr* ppException, CORINFO_CONST_LOOKUP* entryPoint)
{
var _this = GetThis(thisHandle);
try
@@ -2361,7 +2361,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static void _allocMem(IntPtr thisHandle, IntPtr* ppException, AllocMemArgs* pArgs)
+ private static void _allocMem(IntPtr thisHandle, IntPtr* ppException, AllocMemArgs* pArgs)
{
var _this = GetThis(thisHandle);
try
@@ -2375,7 +2375,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static void _reserveUnwindInfo(IntPtr thisHandle, IntPtr* ppException, byte isFunclet, byte isColdCode, uint unwindSize)
+ private static void _reserveUnwindInfo(IntPtr thisHandle, IntPtr* ppException, byte isFunclet, byte isColdCode, uint unwindSize)
{
var _this = GetThis(thisHandle);
try
@@ -2389,7 +2389,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static void _allocUnwindInfo(IntPtr thisHandle, IntPtr* ppException, byte* pHotCode, byte* pColdCode, uint startOffset, uint endOffset, uint unwindSize, byte* pUnwindBlock, CorJitFuncKind funcKind)
+ private static void _allocUnwindInfo(IntPtr thisHandle, IntPtr* ppException, byte* pHotCode, byte* pColdCode, uint startOffset, uint endOffset, uint unwindSize, byte* pUnwindBlock, CorJitFuncKind funcKind)
{
var _this = GetThis(thisHandle);
try
@@ -2403,7 +2403,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static void* _allocGCInfo(IntPtr thisHandle, IntPtr* ppException, UIntPtr size)
+ private static void* _allocGCInfo(IntPtr thisHandle, IntPtr* ppException, UIntPtr size)
{
var _this = GetThis(thisHandle);
try
@@ -2418,7 +2418,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static void _setEHcount(IntPtr thisHandle, IntPtr* ppException, uint cEH)
+ private static void _setEHcount(IntPtr thisHandle, IntPtr* ppException, uint cEH)
{
var _this = GetThis(thisHandle);
try
@@ -2432,7 +2432,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static void _setEHinfo(IntPtr thisHandle, IntPtr* ppException, uint EHnumber, CORINFO_EH_CLAUSE* clause)
+ private static void _setEHinfo(IntPtr thisHandle, IntPtr* ppException, uint EHnumber, CORINFO_EH_CLAUSE* clause)
{
var _this = GetThis(thisHandle);
try
@@ -2446,7 +2446,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static byte _logMsg(IntPtr thisHandle, IntPtr* ppException, uint level, byte* fmt, IntPtr args)
+ private static byte _logMsg(IntPtr thisHandle, IntPtr* ppException, uint level, byte* fmt, IntPtr args)
{
var _this = GetThis(thisHandle);
try
@@ -2461,7 +2461,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static int _doAssert(IntPtr thisHandle, IntPtr* ppException, byte* szFile, int iLine, byte* szExpr)
+ private static int _doAssert(IntPtr thisHandle, IntPtr* ppException, byte* szFile, int iLine, byte* szExpr)
{
var _this = GetThis(thisHandle);
try
@@ -2476,7 +2476,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static void _reportFatalError(IntPtr thisHandle, IntPtr* ppException, CorJitResult result)
+ private static void _reportFatalError(IntPtr thisHandle, IntPtr* ppException, CorJitResult result)
{
var _this = GetThis(thisHandle);
try
@@ -2490,7 +2490,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static HRESULT _getPgoInstrumentationResults(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* ftnHnd, PgoInstrumentationSchema** pSchema, uint* pCountSchemaItems, byte** pInstrumentationData, PgoSource* pgoSource)
+ private static HRESULT _getPgoInstrumentationResults(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* ftnHnd, PgoInstrumentationSchema** pSchema, uint* pCountSchemaItems, byte** pInstrumentationData, PgoSource* pgoSource)
{
var _this = GetThis(thisHandle);
try
@@ -2505,7 +2505,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static HRESULT _allocPgoInstrumentationBySchema(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* ftnHnd, PgoInstrumentationSchema* pSchema, uint countSchemaItems, byte** pInstrumentationData)
+ private static HRESULT _allocPgoInstrumentationBySchema(IntPtr thisHandle, IntPtr* ppException, CORINFO_METHOD_STRUCT_* ftnHnd, PgoInstrumentationSchema* pSchema, uint countSchemaItems, byte** pInstrumentationData)
{
var _this = GetThis(thisHandle);
try
@@ -2520,7 +2520,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static void _recordCallSite(IntPtr thisHandle, IntPtr* ppException, uint instrOffset, CORINFO_SIG_INFO* callSig, CORINFO_METHOD_STRUCT_* methodHandle)
+ private static void _recordCallSite(IntPtr thisHandle, IntPtr* ppException, uint instrOffset, CORINFO_SIG_INFO* callSig, CORINFO_METHOD_STRUCT_* methodHandle)
{
var _this = GetThis(thisHandle);
try
@@ -2534,7 +2534,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static void _recordRelocation(IntPtr thisHandle, IntPtr* ppException, void* location, void* locationRW, void* target, ushort fRelocType, ushort slotNum, int addlDelta)
+ private static void _recordRelocation(IntPtr thisHandle, IntPtr* ppException, void* location, void* locationRW, void* target, ushort fRelocType, ushort slotNum, int addlDelta)
{
var _this = GetThis(thisHandle);
try
@@ -2548,7 +2548,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static ushort _getRelocTypeHint(IntPtr thisHandle, IntPtr* ppException, void* target)
+ private static ushort _getRelocTypeHint(IntPtr thisHandle, IntPtr* ppException, void* target)
{
var _this = GetThis(thisHandle);
try
@@ -2563,7 +2563,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static uint _getExpectedTargetArchitecture(IntPtr thisHandle, IntPtr* ppException)
+ private static uint _getExpectedTargetArchitecture(IntPtr thisHandle, IntPtr* ppException)
{
var _this = GetThis(thisHandle);
try
@@ -2578,7 +2578,7 @@ namespace Internal.JitInterface
}
[UnmanagedCallersOnly]
- static uint _getJitFlags(IntPtr thisHandle, IntPtr* ppException, CORJIT_FLAGS* flags, uint sizeInBytes)
+ private static uint _getJitFlags(IntPtr thisHandle, IntPtr* ppException, CORJIT_FLAGS* flags, uint sizeInBytes)
{
var _this = GetThis(thisHandle);
try
@@ -2592,8 +2592,7 @@ namespace Internal.JitInterface
}
}
-
- static IntPtr GetUnmanagedCallbacks()
+ private static IntPtr GetUnmanagedCallbacks()
{
void** callbacks = (void**)Marshal.AllocCoTaskMem(sizeof(IntPtr) * 175);
@@ -2777,4 +2776,3 @@ namespace Internal.JitInterface
}
}
}
-