Add intrinsics nontemporal_store and nontemporal_load

This commit is contained in:
gingerBill
2022-05-27 14:56:36 +01:00
parent 2185dada56
commit 609ddf28b7
4 changed files with 17 additions and 4 deletions
+3
View File
@@ -12,6 +12,9 @@ soa_struct :: proc($N: int, $T: typeid) -> type/#soa[N]T
volatile_load :: proc(dst: ^$T) -> T ---
volatile_store :: proc(dst: ^$T, val: T) -> T ---
nontemporal_load :: proc(dst: ^$T) -> T ---
nontemporal_store :: proc(dst: ^$T, val: T) -> T ---
// Trapping
debug_trap :: proc() ---
trap :: proc() -> ! ---