gpt4 book ai didi

c# - 我可以比较 IL 代码以确定哪种技术更快或更好吗?

转载 作者:太空狗 更新时间:2023-10-29 21:11:24 25 4
gpt4 key购买 nike

背景

This question让我想到了一些事情。最近,因为我一直在看 linq pad 的 IL 功能,我一直在比较解决同一问题的两种方法的 IL 代码,以“确定”哪种方法最好。

使用上面链接的问题,关于转换数组,我为两个答案生成了 IL 代码:

var arr = new string[] { "1", "2", "3", "4" };
var result = Array.ConvertAll(arr, s => Int32.Parse(s));

制作:

IL_0001:  ldc.i4.4    
IL_0002: newarr System.String
IL_0007: stloc.2
IL_0008: ldloc.2
IL_0009: ldc.i4.0
IL_000A: ldstr "1"
IL_000F: stelem.ref
IL_0010: ldloc.2
IL_0011: ldc.i4.1
IL_0012: ldstr "2"
IL_0017: stelem.ref
IL_0018: ldloc.2
IL_0019: ldc.i4.2
IL_001A: ldstr "3"
IL_001F: stelem.ref
IL_0020: ldloc.2
IL_0021: ldc.i4.3
IL_0022: ldstr "4"
IL_0027: stelem.ref
IL_0028: ldloc.2
IL_0029: stloc.0
IL_002A: ldloc.0
IL_002B: ldsfld UserQuery.CS$<>9__CachedAnonymousMethodDelegate1
IL_0030: brtrue.s IL_0045
IL_0032: ldnull
IL_0033: ldftn b__0
IL_0039: newobj System.Converter<System.String,System.Int32>..ctor
IL_003E: stsfld UserQuery.CS$<>9__CachedAnonymousMethodDelegate1
IL_0043: br.s IL_0045
IL_0045: ldsfld UserQuery.CS$<>9__CachedAnonymousMethodDelegate1
IL_004A: call System.Array.ConvertAll
IL_004F: stloc.1

b__0:
IL_0000: ldarg.0
IL_0001: call System.Int32.Parse
IL_0006: stloc.0
IL_0007: br.s IL_0009
IL_0009: ldloc.0
IL_000A: ret

和另一个答案:

var arr = new string[] { "1", "2", "3", "4" };
var result = arr.Select(s => int.Parse(s)).ToArray();

制作:

IL_0001:  ldc.i4.4    
IL_0002: newarr System.String
IL_0007: stloc.2
IL_0008: ldloc.2
IL_0009: ldc.i4.0
IL_000A: ldstr "1"
IL_000F: stelem.ref
IL_0010: ldloc.2
IL_0011: ldc.i4.1
IL_0012: ldstr "2"
IL_0017: stelem.ref
IL_0018: ldloc.2
IL_0019: ldc.i4.2
IL_001A: ldstr "3"
IL_001F: stelem.ref
IL_0020: ldloc.2
IL_0021: ldc.i4.3
IL_0022: ldstr "4"
IL_0027: stelem.ref
IL_0028: ldloc.2
IL_0029: stloc.0
IL_002A: ldloc.0
IL_002B: ldsfld UserQuery.CS$<>9__CachedAnonymousMethodDelegate1
IL_0030: brtrue.s IL_0045
IL_0032: ldnull
IL_0033: ldftn b__0
IL_0039: newobj System.Func<System.String,System.Int32>..ctor
IL_003E: stsfld UserQuery.CS$<>9__CachedAnonymousMethodDelegate1
IL_0043: br.s IL_0045
IL_0045: ldsfld UserQuery.CS$<>9__CachedAnonymousMethodDelegate1
IL_004A: call System.Linq.Enumerable.Select
IL_004F: call System.Linq.Enumerable.ToArray
IL_0054: stloc.1

b__0:
IL_0000: ldarg.0
IL_0001: call System.Int32.Parse
IL_0006: stloc.0
IL_0007: br.s IL_0009
IL_0009: ldloc.0
IL_000A: ret

看到这里,我只能说是后一种选择

  • 需要 1 条额外的线
  • 当第一个答案不是时使用 linq
  • 通过 IL_0039 以不同方式创建 Int。

问题

  • 对于这个具体示例,我的假设是否正确?
  • 一般来说,我应该如何通过 IL 代码比较两个解决方案?
  • 一般来说,具有较少 IL LOC 的解决方案是否意味着它会更快或使用更少的内存?
  • 正如标题所说,我可以比较 IL 代码以确定哪种技术更快或更好吗?

FWIW,我并不经常这样做,只是偶尔在工作中的开发人员之间进行一些讨论时才这样做。有人会说“哦,这样效率更高”,我们会把它丢进 linqpad 中,检查 IL 代码。此外,FWIW,我几乎总是遵守在获得高效/快速方法之前让它工作。这样人们就不会认为我一直在比较我正在开发的 IL 代码:)

最佳答案

  • For this specific example, are my assumptions correct?
  • In general, how should I go about comparing two solutions via IL code?
  • In general, does a solution with fewer IL LOC mean that it will be faster or use less memory?
  • As the title says, Can I compare IL code to determine which technique is faster or better?

1) 你对正在发生的事情的假设是正确的。

2) 您需要了解 IL 代码在做什么,以便确定哪个“更好”

3) 不。这意味着它需要更少的指令来运行。但是,这些单独的指令可能会使用更多或更少的内存。例如,您引用的指令在一种情况下是创建 Func 委托(delegate),而在另一种情况下是创建 Converter 对象。在没有更多信息的情况下,很难判断这两种东西中哪一种更贵。

4) 是和不是....

问题是 IL 代码会告诉您发生了什么,但实际上 IL 中的嵌套调用将成为大型性能驱动程序。如果 IL 代码到处都在做简单的操作,一般来说越短越好(尽管个别 IL 操作本身的速度可能会有所不同)。当代码调用其他类型(例如您的类型)的方法或构造函数时,仅凭这一点就无法分辨。在一种情况下(例如,如果它正在调用一个昂贵的方法),一行 IL 可能比在另一种情况下(他们正在执行简单操作)花费 50 行更长的时间。

例如,在您上面的案例中,前 20 个操作非常非常快,而后几个操作几乎占用了您所有的可执行时间。

关于c# - 我可以比较 IL 代码以确定哪种技术更快或更好吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1297325/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com