如何使用 Mono.Cecil 确定值类型的大小

发布于 2024-10-05 08:21:24 字数 240 浏览 5 评论 0原文

我正在寻找一种方法来确定 Mono.Cecil 中值类型 (TypeReference) 的字节大小。

我需要它来优化可空相等比较代码生成。

  • 如果值类型大小> 4、先比较HasValue,然后比较值。
  • 如果值类型大小 <= 4,则先比较 GetValueOrDefault,然后比较 HasValue。

但要做到这一点,我需要以某种方式获得 sizeof(T)。

I'm looking a way to determine size in bytes of a value type (TypeReference) in Mono.Cecil.

I need it to optimize Nullable equality compare code generation.

  • If value type size > 4, compare HasValue first, then compare values.
  • If value type size <= 4, compare GetValueOrDefault first, then compare HasValue.

But to do so, I need to get somehow sizeof(T).

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

萌酱 2024-10-12 08:21:25

它不是 100% 完美(因为会根据 32/64 位架构而有所不同),但 Gendarme 拥有执行此任务的代码。看里面的SizeOf方法:

https://raw.github.com/mono/mono-tools/master/gendarme/rules/Gendarme.Rules.Performance/AvoidLargeStructureRule.cs

It's not 100% perfect (since since will vary based on 32/64 bits arch) but Gendarme has the code to do this task. Look at the SizeOf method inside:

https://raw.github.com/mono/mono-tools/master/gendarme/rules/Gendarme.Rules.Performance/AvoidLargeStructureRule.cs

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文