Avoid storing an integer in a pointer

C++ does not guarantee that, given an int of sufficient size, converting
int->ptr->int will result in the original value. A pointer may have more than
one integer representation. Only ptr->int->ptr round trips are well-defined.
This commit is contained in:
Chris Robinson
2019-09-21 23:35:24 -07:00
parent 9325f1d507
commit 5f6a35c960
+6 -3
View File
@@ -220,13 +220,16 @@ struct DelayLineI {
* of 2 to allow the use of bit-masking instead of a modulus for wrapping.
*/
size_t Mask{0u};
std::array<float,NUM_LINES> *Line{nullptr};
union {
uintptr_t LineOffset{0u};
std::array<float,NUM_LINES> *Line;
};
/* Given the allocated sample buffer, this function updates each delay line
* offset.
*/
void realizeLineOffset(std::array<float,NUM_LINES> *sampleBuffer) noexcept
{ Line = &sampleBuffer[reinterpret_cast<ptrdiff_t>(Line)]; }
{ Line = sampleBuffer + LineOffset; }
/* Calculate the length of a delay line and store its mask and offset. */
ALuint calcLineLength(const ALfloat length, const uintptr_t offset, const ALfloat frequency,
@@ -240,7 +243,7 @@ struct DelayLineI {
/* All lines share a single sample buffer. */
Mask = samples - 1;
Line = reinterpret_cast<std::array<float,NUM_LINES>*>(offset);
LineOffset = offset;
/* Return the sample count for accumulation. */
return samples;