membound test init. L1 Cache Hit + Cache Miss testing

This commit is contained in:
2025-02-21 12:50:08 +08:00
commit 2bc5bd7379
4 changed files with 168 additions and 0 deletions

11
loadop.ll Normal file
View File

@@ -0,0 +1,11 @@
target triple = "sw_64-sunway-linux-gnu"
define <4 x i64> @load_v4i64(ptr %a) {
%x = load <4 x i64>, ptr %a
ret <4 x i64> %x
}
define <8 x i32> @load_v8i32(ptr %a) {
%x = load <8 x i32>, ptr %a
ret <8 x i32> %x
}