File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ Certain intrinsics in the table below are marked "virtual". This means that ther
73
73
* - _mm_setzero_ps
74
74
- 💡 emulated with wasm_f32x4_const(0)
75
75
* - _mm_load_ps
76
- - 🟡 wasm_v128_load. VM must guess type.
76
+ - 🟡 wasm_v128_load. VM must guess type. Unaligned load on x86 CPUs.
77
77
* - _mm_loadl_pi
78
78
- ❌ scalar loads + shuffle
79
79
* - _mm_loadh_pi
@@ -91,7 +91,7 @@ Certain intrinsics in the table below are marked "virtual". This means that ther
91
91
* - _mm_storeh_pi
92
92
- ❌ shuffle + scalar stores
93
93
* - _mm_store_ps
94
- - 🟡 wasm_v128_store. VM must guess type.
94
+ - 🟡 wasm_v128_store. VM must guess type. Unaligned store on x86 CPUs.
95
95
* - _mm_stream_ps
96
96
- 🟡 wasm_v128_store. VM must guess type.
97
97
* - _mm_prefetch
@@ -103,7 +103,7 @@ Certain intrinsics in the table below are marked "virtual". This means that ther
103
103
* - _mm_storer_ps
104
104
- 💡 Virtual. Shuffle + Simd store.
105
105
* - _mm_store_ps1 (_mm_store1_ps)
106
- - 💡 Virtual. Emulated with shuffle.
106
+ - 🟡 Virtual. Emulated with shuffle. Unaligned store on x86 CPUs .
107
107
* - _mm_store_ss
108
108
- 💡 emulated with scalar store
109
109
* - _mm_storeu_ps
You can’t perform that action at this time.
0 commit comments