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

Test fixes #364

Closed
wants to merge 2 commits into from
Closed

Test fixes #364

wants to merge 2 commits into from

Conversation

chbaker0
Copy link

I fixed a compiler error and various undefined behavior I found in the unit tests.

chbaker0 added 2 commits July 21, 2015 23:02
The fastAbs() function was accessing its argument as if it were a vec4 but it was being called with a float. Also, it relied onundefined behavior. I replaced it with glm::abs().
Fixed an error due to a narrowing conversion in an initializer list in core_func_integer_bit_count.cpp, and various
printf format string issues that caused compiler warnings for me. std::clock_t isn't guaranteed to be any specific
integer type, nor is it even guaranteed to be integral (it can be floating point). So, the safest bet is to cast it to
double and use the %f specifier in printf format strings.
@Groovounet
Copy link
Member

I don't think chbaker0@ff1581d is acceptable. Fixing warnings by converting to double? I fixed the warnings using %ld instead.

@chbaker0
Copy link
Author

std::clock_t is totally unspecified though; it can be an int, a long int, a float, a double, etc. The only safe and portable thing to do is cast it to double and print it as such. Or, better yet, use a better clock timing API. chrono is much better, for example.

Edit: Read http://stackoverflow.com/questions/1083142/what-s-the-correct-way-to-use-printf-to-print-a-clock-t

@chbaker0
Copy link
Author

Also, I hope you realize that this is still undefined behavior:

template <glm::precision P, template <typename, glm::precision> class vecType>
GLM_FUNC_QUALIFIER vecType<float, P> fastAbs(vecType<float, P> x)
{
    int* Pointer = reinterpret_cast<int*>(&x[0]);
    Pointer[0] &= 0x7fffffff;
    Pointer[1] &= 0x7fffffff;
    Pointer[2] &= 0x7fffffff;
    Pointer[3] &= 0x7fffffff;
    return x;
}

if you pass it a vec2 for example, Pointer[2] and Pointer[3] will index into non-existent memory locations, or worse, into other variable's memory. Also, it behaves totally incorrectly if passed a dvec*. And what if it's used on a platform where sizeof(int) != sizeof(float)? I don't understand what this code is supposed to accomplish anyway; it's called fastAbs but I find it really hard to believe this will be any faster than using std::abs on each element, or even just doing

if(x < 0.0)
    x = -x;

for each element x.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants