Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8351233: [ASAN] avx2-emu-funcs.hpp:151:20: error: ‘D.82188’ is used uninitialized #164

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/java.base/linux/native/libsimdsort/avx2-emu-funcs.hpp
Original file line number Diff line number Diff line change
@@ -127,9 +127,9 @@ void avx2_emu_mask_compressstoreu32(void *base_addr,
T *leftStore = (T *)base_addr;

int32_t shortMask = convert_avx2_mask_to_int(k);
const __m256i &perm = _mm256_loadu_si256(
const __m256i perm = _mm256_loadu_si256(
(const __m256i *)avx2_compressstore_lut32_perm[shortMask].data());
const __m256i &left = _mm256_loadu_si256(
const __m256i left = _mm256_loadu_si256(
(const __m256i *)avx2_compressstore_lut32_left[shortMask].data());

typename vtype::reg_t temp = vtype::permutevar(reg, perm);
@@ -148,7 +148,7 @@ int avx2_double_compressstore32(void *left_addr, void *right_addr,
T *rightStore = (T *)right_addr;

int32_t shortMask = convert_avx2_mask_to_int(k);
const __m256i &perm = _mm256_loadu_si256(
const __m256i perm = _mm256_loadu_si256(
(const __m256i *)avx2_compressstore_lut32_perm[shortMask].data());

typename vtype::reg_t temp = vtype::permutevar(reg, perm);