search for: getlocalvalu

Displaying 2 results from an estimated 2 matches for "getlocalvalu".

Did you mean: getlocalvalue
2018 Feb 27
2
Missed optimization - spill/load generated instead of reg-to-reg move (and two other questions)
...ill not happen? I tried [[gnu::pure]], since the function doesn't write to externally-visible memory, but the vtable pointer reload remained. Finally, I'm inclined to say that this routine should be vectorizable, since it's essentially just an accumulate, but Clang can't prove that GetLocalValue doesn't have side effects that will affect later iterations. Is this correct, and if so, are there any hints I can give Clang besides just manually parallelizing it with #pragma omp or something? I do intend on changing this loop to something a bit less messy, but it'll be part of a large...
2018 Feb 28
0
Missed optimization - spill/load generated instead of reg-to-reg move (and two other questions)
...r on the first iteration, then reuse.  This does require that all Nodes in your array are the exact same type though! > > Finally, I'm inclined to say that this routine should be vectorizable, > since > it's essentially just an accumulate, but Clang can't prove that > GetLocalValue > doesn't have side effects that will affect later iterations. Is this > correct, > and if so, are there any hints I can give Clang besides just manually > parallelizing it with #pragma omp or something? To clarify, is the the GetLocalValue in your example?  Or some more complica...