如何使用 Mono.Cecil 确定值类型的大小
我正在寻找一种方法来确定 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它不是 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