您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
78 行
2.5 KiB
78 行
2.5 KiB
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace Unity.UIWidgets.ui {
|
|
class DebugMeta {
|
|
public string objName;
|
|
public int watermark;
|
|
public int prev_watermark;
|
|
public int borrowed;
|
|
public int allocated;
|
|
|
|
public void onAlloc(int allocatedCount) {
|
|
this.borrowed++;
|
|
this.watermark = this.borrowed > this.watermark ? this.borrowed : this.watermark;
|
|
this.allocated = allocatedCount;
|
|
}
|
|
|
|
public void onRelease(int allocatedCount) {
|
|
this.borrowed--;
|
|
this.allocated = allocatedCount;
|
|
}
|
|
}
|
|
|
|
public static class AllocDebugger {
|
|
public const bool enableDebugging = false;
|
|
|
|
static int allocCount = 0;
|
|
|
|
static readonly Dictionary<int, DebugMeta> debugInfos = new Dictionary<int, DebugMeta>();
|
|
|
|
public static void onFrameEnd() {
|
|
if (!enableDebugging) {
|
|
return;
|
|
}
|
|
|
|
allocCount++;
|
|
if (allocCount >= 120) {
|
|
allocCount = 0;
|
|
|
|
string debugInfo = "Alloc Stats: ";
|
|
foreach (var key in debugInfos.Keys) {
|
|
var item = debugInfos[key];
|
|
if (item.watermark <= item.prev_watermark) {
|
|
debugInfo += "|" + item.objName + " = " + item.watermark + "," + item.borrowed + "|";
|
|
continue;
|
|
}
|
|
|
|
item.prev_watermark = item.watermark;
|
|
debugInfo += "|" + item.objName + " = " + item.watermark + "," + item.borrowed + "|";
|
|
}
|
|
|
|
if (debugInfo == "Alloc Stats: ") {
|
|
return;
|
|
}
|
|
|
|
Debug.Log(debugInfo);
|
|
}
|
|
}
|
|
|
|
public static void onAlloc(int objKey, string objName, int allocatedCount) {
|
|
if (!debugInfos.ContainsKey(objKey)) {
|
|
debugInfos[objKey] = new DebugMeta {
|
|
objName = objName,
|
|
watermark = 0,
|
|
borrowed = 0,
|
|
allocated = 0
|
|
};
|
|
}
|
|
|
|
debugInfos[objKey].onAlloc(allocatedCount);
|
|
}
|
|
|
|
public static void onRelease(int objKey, string objName, int allocatedCount) {
|
|
Debug.Assert(debugInfos.ContainsKey(objKey), "An unregistered pool object cannot be released");
|
|
debugInfos[objKey].onRelease(allocatedCount);
|
|
}
|
|
}
|
|
}
|