Closed papstuc closed 1 month ago
I'm not so sure if Intel Smart Cache really matters. Your i7-8700K also uses Intel Smart Cache.
To confirm, I think you should use perfmon /sys
and compare the cache hit rate.
Yes, I just noticed the 8700K also has smart cache. However each individual core has it's own L2 cache, which is not the case on hybrid CPUs with E-cores (4 E-cores share one L2 cache).
I will continue testing with perfmon, thank you!
Finally fixed this issue. It works when having one global EPT paging structure that is shared across all cores. I guess having one for each core is just not really cache-friendly when having a shared cache across cores.
Great feedback!
As soon as calling nvc_ept_split_pde on an often called GPA (in this case NtProtectVirtualMemory in ntoskrnl) the system becomes noticeably slow on newer Intel CPUs (12th gen and higher), however testing it on my old 8700K it worked completely fine, so I tried to disable all E-Cores which fixed the issue. The only problem is that the E-cores are now unusable.
Checking the CPU's specification I found that it uses the Intel Smart Cache Technology, which basically states that 4 E-Cores share the same L2 cache which I think leads to a lot of cache misses when the page granularity is 4KiB.
I tested it on an Intel Core i7 14700K both on Windows 10 and Windows 11 but got the same problem.
Any help or push in the right direction would be greatly appreciated. Your project is amazing and I have loads of fun tinkering around with it!