91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么獲取C#中方法的執行時間以及其代碼注入

發布時間:2021-02-10 10:58:55 來源:億速云 閱讀:202 作者:小新 欄目:編程語言

小編給大家分享一下怎么獲取C#中方法的執行時間以及其代碼注入,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

前言

在優化C#代碼或對比某些API的效率時,通常需要測試某個方法的運行時間,可以通過DateTime來統計指定方法的執行時間,也可以使用命名空間System.Diagnostics中封裝了高精度計時器QueryPerformanceCounter方法的Stopwatch類來統計指定方法的執行時間:

1.使用DateTime方法:

DateTime dateTime = DateTime.Now;

MyFunc();

Console.WriteLine((DateTime.Now - dateTime).TotalMilliseconds);

2.使用Stopwatch方式:

Stopwatch stopwatch = new Stopwatch();
stopwatch.Start();
MyFunc();

stopwatch.Stop();

Console.WriteLine(stopwatch.ElapsedMilliseconds); //本次MyFunc()方法的運行毫秒數

//重置計時器
stopwatch.Restart(); //此處可以使用stopwatch.Reset(); stopwatch.Start();組合代替

MyFunc();

stopwatch.Stop();
Console.WriteLine(stopwatch.ElapsedMilliseconds); //本次MyFunc()方法的運行毫秒數

以上兩種辦法都可以達到獲取方法執行時間的目的,但是在需要對整個項目中的方法都進行監測用時時,除了使用性能分析工具,我們還可以通過代碼注入的方式給程序集中每一個方法加入計時器;

通過命名空間System.Reflection.Emit中的類可以動態的創建程序集、類型和成員,通常類庫Mono.Cecil可以動態讀取并修改已經生成的IL文件,這種在不修改源代碼的情況下給程序集動態添加功能的技術稱為面向切面編程(AOP);

這里給出了一個注入使用Stopwatch來檢測方法執行時間的代碼,這里的Mono.Cecil類庫可以通過nuget進行安裝:

using System;
using System.IO;
using System.Linq;
using System.Diagnostics;
using Mono.Cecil;
using Mono.Cecil.Cil;
using Mono.Collections.Generic;
static void Main(string[] args)
 {
 for (int i = 0; i < args.Length; i++)
 {
 FileStream fileStream = new FileStream(args[i], FileMode.Open);
 if (fileStream != null)
 {
 AssemblyDefinition aD = AssemblyDefinition.ReadAssembly(fileStream);
 ModuleDefinition mD = aD.MainModule;
 Collection<TypeDefinition> typeDefinition = mD.Types;
 foreach (TypeDefinition type in typeDefinition)
 {
  if (type.IsClass)
  {
  foreach (MethodDefinition method in type.Methods)
  {
  if (method.IsPublic && !method.IsConstructor)
  {
  ILProcessor il = method.Body.GetILProcessor();
  TypeReference stT = mD.ImportReference(typeof(Stopwatch));
  VariableDefinition stV = new VariableDefinition(stT);
  method.Body.Variables.Add(stV);
  Instruction first = method.Body.Instructions.First();
  il.InsertBefore(first, il.Create(OpCodes.Newobj,                       mD.ImportReference(typeof(Stopwatch).GetConstructor(new Type[] { }))));
  il.InsertBefore(first, il.Create(OpCodes.Stloc_S, stV));
  il.InsertBefore(first, il.Create(OpCodes.Ldloc_S, stV));
  il.InsertBefore(first, il.Create(OpCodes.Callvirt,                      mD.ImportReference(typeof(Stopwatch).GetMethod("Start"))));

  Instruction @return = method.Body.Instructions.Last();
  il.InsertBefore(@return, il.Create(OpCodes.Ldloc_S, stV));
  il.InsertBefore(@return, il.Create(OpCodes.Callvirt,                       mD.ImportReference(typeof(Stopwatch).GetMethod("Stop"))));

  il.InsertBefore(@return, il.Create(OpCodes.Ldstr, $"{method.FullName} run time: "));
  il.InsertBefore(@return, il.Create(OpCodes.Ldloc_S, stV));
  il.InsertBefore(@return, il.Create(OpCodes.Callvirt,                       mD.ImportReference(typeof(Stopwatch).GetMethod("get_ElapsedMilliseconds"))));
  il.InsertBefore(@return, il.Create(OpCodes.Box, mD.ImportReference(typeof(long))));
  il.InsertBefore(@return, il.Create(OpCodes.Call,                       mD.ImportReference(typeof(string).GetMethod("Concat", new Type[] { typeof(object), typeof(object) }))));
  il.InsertBefore(@return, il.Create(OpCodes.Call,                       mD.ImportReference(typeof(Console).GetMethod("WriteLine", new Type[] { typeof(string) }))));
  }
  }
  }
 }
 FileInfo fileInfo = new FileInfo(args[i]);
 string fileName = fileInfo.Name;
 int pointIndex = fileName.LastIndexOf('.');
 string frontName = fileName.Substring(0, pointIndex);
 string backName = fileName.Substring(pointIndex, fileName.Length - pointIndex);
 string writeFilePath = Path.Combine(fileInfo.Directory.FullName, frontName + "_inject" + backName);
 aD.Write(writeFilePath);
 Console.WriteLine($"Success! Output path: {writeFilePath}");
 fileStream.Dispose();
 }
 }
 Console.Read();
 }

完整的項目傳到了Github上=>InjectionStopwatchCode (本地下載),下載項目后,通過dotnet build命令即可編譯出可執行程序,將目標程序集文件拖入到該應用程序即可在程序集目錄導出注入代碼后的程序集文件,經過測試,包括方法擁有返回值和方法的參數列表中包含out和ref參數等情況都不會對運行結果產生影響;

示例:

using System;

public class MyClass
{
 public void MyFunc()
 {
 int num = 1;
 for (int i = 0; i < int.MaxValue; i++)
 {
 num++;
 }
 }
}
public class Program
{
 public static void Main(string[] args)
 {
 MyClass myObj = new MyClass();
 myObj.MyFunc();
 Console.Read();
 }
}

原始IL代碼:

怎么獲取C#中方法的執行時間以及其代碼注入

代碼注入后IL代碼:

怎么獲取C#中方法的執行時間以及其代碼注入

代碼注入后運行結果:

 怎么獲取C#中方法的執行時間以及其代碼注入

看完了這篇文章,相信你對“怎么獲取C#中方法的執行時間以及其代碼注入”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

吴旗县| 曲沃县| 卢氏县| 尼勒克县| 青州市| 新乐市| 广德县| 思南县| 金川县| 泸州市| 涟源市| 南平市| 蛟河市| 山丹县| 漳州市| 敦化市| 北安市| 宾阳县| 科技| 内黄县| 嘉善县| 沽源县| 永泰县| 获嘉县| 卫辉市| 平昌县| 华宁县| 综艺| 庆阳市| 星座| 牟定县| 徐闻县| 利川市| 邹城市| 临泉县| 鄂托克前旗| 高邑县| 天等县| 德兴市| 普兰县| 海林市|