• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

C# JitInterface.CORINFO_MODULE_STRUCT_类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了C#中Internal.JitInterface.CORINFO_MODULE_STRUCT_的典型用法代码示例。如果您正苦于以下问题:C# CORINFO_MODULE_STRUCT_类的具体用法?C# CORINFO_MODULE_STRUCT_怎么用?C# CORINFO_MODULE_STRUCT_使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



CORINFO_MODULE_STRUCT_类属于Internal.JitInterface命名空间,在下文中一共展示了CORINFO_MODULE_STRUCT_类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C#代码示例。

示例1: _getClassModuleIdForStatics

 static byte* _getClassModuleIdForStatics(IntPtr thisHandle, IntPtr* ppException, CORINFO_CLASS_STRUCT_* cls, CORINFO_MODULE_STRUCT_** pModule, void** ppIndirection)
 {
     var _this = GetThis(thisHandle);
     try
     {
         return _this.getClassModuleIdForStatics(cls, pModule, ppIndirection);
     }
     catch (Exception ex)
     {
         *ppException = _this.AllocException(ex);
         return default(byte*);
     }
 }
开发者ID:tijoytom,项目名称:corert,代码行数:13,代码来源:CorInfoBase.cs


示例2: isValidStringRef

 private bool isValidStringRef(IntPtr _this, CORINFO_MODULE_STRUCT_* module, uint metaTOK)
 { throw new NotImplementedException("isValidStringRef"); }
开发者ID:smartmaster,项目名称:corert,代码行数:2,代码来源:CorInfoImpl.cs


示例3: getModuleAssembly

 private CORINFO_ASSEMBLY_STRUCT_* getModuleAssembly(IntPtr _this, CORINFO_MODULE_STRUCT_* mod)
 { throw new NotImplementedException("getModuleAssembly"); }
开发者ID:smartmaster,项目名称:corert,代码行数:2,代码来源:CorInfoImpl.cs


示例4: addActiveDependency

 private void addActiveDependency(IntPtr _this, CORINFO_MODULE_STRUCT_* moduleFrom, CORINFO_MODULE_STRUCT_* moduleTo)
 { throw new NotImplementedException("addActiveDependency"); }
开发者ID:smartmaster,项目名称:corert,代码行数:2,代码来源:CorInfoImpl.cs


示例5: findCallSiteSig

 private void findCallSiteSig(IntPtr _this, CORINFO_MODULE_STRUCT_* module, uint methTOK, CORINFO_CONTEXT_STRUCT* context, CORINFO_SIG_INFO* sig)
 {
     // TODO: dynamic scopes
     // TODO: verification
     var methodIL = (MethodIL)HandleToObject((IntPtr)module);
     Get_CORINFO_SIG_INFO(((MethodDesc)methodIL.GetObject((int)methTOK)).Signature, out *sig);
 }
开发者ID:smartmaster,项目名称:corert,代码行数:7,代码来源:CorInfoImpl.cs


示例6: getAddrModuleDomainID

 private SIZE_T* getAddrModuleDomainID(IntPtr _this, CORINFO_MODULE_STRUCT_* module)
 { throw new NotImplementedException("getAddrModuleDomainID"); }
开发者ID:smartmaster,项目名称:corert,代码行数:2,代码来源:CorInfoImpl.cs


示例7: embedModuleHandle

 private CORINFO_MODULE_STRUCT_* embedModuleHandle(IntPtr _this, CORINFO_MODULE_STRUCT_* handle, ref void* ppIndirection)
 { throw new NotImplementedException("embedModuleHandle"); }
开发者ID:smartmaster,项目名称:corert,代码行数:2,代码来源:CorInfoImpl.cs


示例8: constructStringLiteral_wrapper

        public virtual InfoAccessType constructStringLiteral_wrapper(IntPtr _this, out IntPtr exception, CORINFO_MODULE_STRUCT_* module, mdToken metaTok, ref void* ppValue)
        {
            exception = IntPtr.Zero;
            try
            {
                return constructStringLiteral(module, metaTok, ref ppValue);

            }
            catch (Exception ex)
            {
                exception = AllocException(ex);
            }
            return (InfoAccessType)0;
        }
开发者ID:nguerrera,项目名称:corert,代码行数:14,代码来源:CorInfoBase.cs


示例9: addActiveDependency_wrapper

 public virtual void addActiveDependency_wrapper(IntPtr _this, out IntPtr exception, CORINFO_MODULE_STRUCT_* moduleFrom, CORINFO_MODULE_STRUCT_* moduleTo)
 {
     exception = IntPtr.Zero;
     try
     {
         addActiveDependency(moduleFrom, moduleTo);
         return;
     }
     catch (Exception ex)
     {
         exception = AllocException(ex);
     }
 }
开发者ID:nguerrera,项目名称:corert,代码行数:13,代码来源:CorInfoBase.cs


示例10: getLazyStringLiteralHelper_wrapper

        public virtual CorInfoHelpFunc getLazyStringLiteralHelper_wrapper(IntPtr _this, out IntPtr exception, CORINFO_MODULE_STRUCT_* handle)
        {
            exception = IntPtr.Zero;
            try
            {
                return getLazyStringLiteralHelper(handle);

            }
            catch (Exception ex)
            {
                exception = AllocException(ex);
            }
            return (CorInfoHelpFunc)0;
        }
开发者ID:nguerrera,项目名称:corert,代码行数:14,代码来源:CorInfoBase.cs


示例11: embedModuleHandle_wrapper

        public virtual CORINFO_MODULE_STRUCT_* embedModuleHandle_wrapper(IntPtr _this, out IntPtr exception, CORINFO_MODULE_STRUCT_* handle, ref void* ppIndirection)
        {
            exception = IntPtr.Zero;
            try
            {
                return embedModuleHandle(handle, ref ppIndirection);

            }
            catch (Exception ex)
            {
                exception = AllocException(ex);
            }
            return (CORINFO_MODULE_STRUCT_*)0;
        }
开发者ID:nguerrera,项目名称:corert,代码行数:14,代码来源:CorInfoBase.cs


示例12: getAddrModuleDomainID_wrapper

        public virtual SIZE_T* getAddrModuleDomainID_wrapper(IntPtr _this, out IntPtr exception, CORINFO_MODULE_STRUCT_* module)
        {
            exception = IntPtr.Zero;
            try
            {
                return getAddrModuleDomainID(module);

            }
            catch (Exception ex)
            {
                exception = AllocException(ex);
            }
            return (SIZE_T*)0;
        }
开发者ID:nguerrera,项目名称:corert,代码行数:14,代码来源:CorInfoBase.cs


示例13: findNameOfToken_wrapper

        public virtual byte* findNameOfToken_wrapper(IntPtr _this, out IntPtr exception, CORINFO_MODULE_STRUCT_* moduleHandle, mdToken token, byte* szFQName, UIntPtr FQNameCapacity)
        {
            exception = IntPtr.Zero;
            try
            {
                return findNameOfToken(moduleHandle, token, szFQName, FQNameCapacity);

            }
            catch (Exception ex)
            {
                exception = AllocException(ex);
            }
            return (byte*)0;
        }
开发者ID:nguerrera,项目名称:corert,代码行数:14,代码来源:CorInfoBase.cs


示例14: getClassModuleIdForStatics_wrapper

        public virtual byte* getClassModuleIdForStatics_wrapper(IntPtr _this, out IntPtr exception, CORINFO_CLASS_STRUCT_* cls, CORINFO_MODULE_STRUCT_** pModule, void** ppIndirection)
        {
            exception = IntPtr.Zero;
            try
            {
                return getClassModuleIdForStatics(cls, pModule, ppIndirection);

            }
            catch (Exception ex)
            {
                exception = AllocException(ex);
            }
            return (byte*)0;
        }
开发者ID:nguerrera,项目名称:corert,代码行数:14,代码来源:CorInfoBase.cs


示例15: isValidToken

 private bool isValidToken(CORINFO_MODULE_STRUCT_* module, uint metaTOK)
 { throw new NotImplementedException("isValidToken"); }
开发者ID:hoyMS,项目名称:corert,代码行数:2,代码来源:CorInfoImpl.cs


示例16: findCallSiteSig_wrapper

 public virtual void findCallSiteSig_wrapper(IntPtr _this, out IntPtr exception, CORINFO_MODULE_STRUCT_* module, uint methTOK, CORINFO_CONTEXT_STRUCT* context, CORINFO_SIG_INFO* sig)
 {
     exception = IntPtr.Zero;
     try
     {
         findCallSiteSig(module, methTOK, context, sig);
         return;
     }
     catch (Exception ex)
     {
         exception = AllocException(ex);
     }
 }
开发者ID:nguerrera,项目名称:corert,代码行数:13,代码来源:CorInfoBase.cs


示例17: findNameOfToken

 private byte* findNameOfToken(IntPtr _this, CORINFO_MODULE_STRUCT_* moduleHandle, mdToken token, byte* szFQName, UIntPtr FQNameCapacity)
 { throw new NotImplementedException("findNameOfToken"); }
开发者ID:smartmaster,项目名称:corert,代码行数:2,代码来源:CorInfoImpl.cs


示例18: canSkipVerification_wrapper

        public virtual CorInfoCanSkipVerificationResult canSkipVerification_wrapper(IntPtr _this, out IntPtr exception, CORINFO_MODULE_STRUCT_* module)
        {
            exception = IntPtr.Zero;
            try
            {
                return canSkipVerification(module);

            }
            catch (Exception ex)
            {
                exception = AllocException(ex);
            }
            return (CorInfoCanSkipVerificationResult)0;
        }
开发者ID:nguerrera,项目名称:corert,代码行数:14,代码来源:CorInfoBase.cs


示例19: getLazyStringLiteralHelper

 private CorInfoHelpFunc getLazyStringLiteralHelper(IntPtr _this, CORINFO_MODULE_STRUCT_* handle)
 {
     // TODO: Lazy string literal helper
     return CorInfoHelpFunc.CORINFO_HELP_UNDEF;
 }
开发者ID:smartmaster,项目名称:corert,代码行数:5,代码来源:CorInfoImpl.cs


示例20: MarshalAs

        [return: MarshalAs(UnmanagedType.Bool)]public virtual bool isValidStringRef_wrapper(IntPtr _this, out IntPtr exception, CORINFO_MODULE_STRUCT_* module, uint metaTOK)
        {
            exception = IntPtr.Zero;
            try
            {
                return isValidStringRef(module, metaTOK);

            }
            catch (Exception ex)
            {
                exception = AllocException(ex);
            }
            return false;
        }
开发者ID:nguerrera,项目名称:corert,代码行数:14,代码来源:CorInfoBase.cs



注:本文中的Internal.JitInterface.CORINFO_MODULE_STRUCT_类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C# JitInterface.CORINFO_RESOLVED_TOKEN类代码示例发布时间:2022-05-26
下一篇:
C# JitInterface.CORINFO_METHOD_STRUCT_类代码示例发布时间:2022-05-26
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap