Closed WebReflection closed 1 year ago
I am not sure how much of a performance gain it is but it's very safe to just access or set the index of the arrays directly instead of using Atomics.load(ta, i) and/or Atomics.store(ta, i, v) and the final code size is reduced too.
Atomics.load(ta, i)
Atomics.store(ta, i, v)
I am not sure how much of a performance gain it is but it's very safe to just access or set the index of the arrays directly instead of using
Atomics.load(ta, i)
and/orAtomics.store(ta, i, v)
and the final code size is reduced too.