Bug 3838 - Players can't move when connecting to ppc64 server.
Status: RESOLVED FIXED
Alias: None
Product: ioquake3
Classification: Unclassified
Component: Platform
Version: GIT MASTER
Hardware: Macintosh Linux
: P3 normal
Assignee: Zachary J. Slater
QA Contact: ioquake3 bugzilla mailing list
URL:
Depends on:
Blocks:
 
Reported: 2008-11-02 09:31 EST by Przemysław Iskra
Modified: 2008-11-03 12:04:20 EST
0 users

See Also:



Description Przemysław Iskra 2008-11-02 09:31:52 EST
On powerpc with 64 bit userspace connected players are unable to move. They get bounced back to they start position all the time. Effect is exactly the same with both interpreter and Bug 3796 JIT compiler. Also tried "debug" build with same effect.
Maybe there were similar problems with x86_64 so someone could tell me where to look ?
Comment 1 Ludwig Nussel 2008-11-02 10:46:30 EST
I can't remember having seen such problems with x86_64. Works fine AFAICT
Comment 2 Przemysław Iskra 2008-11-02 10:54:07 EST
More info: bots running on the server can't move either. Players can shoot (and kill) but only in the direction they started. Players can turn around in the game, but it isn't reflected on the server.

Any hints ?
Comment 3 Ludwig Nussel 2008-11-02 11:01:31 EST
have you tried turning off strict aliasing (as I suppose you use the patch you posted)?
Comment 4 Przemysław Iskra 2008-11-02 14:25:24 EST
I was building from clean trunk. Both "release" and "debug" (-O0 does not enable strict aliasing), I also tried adding -fwrapv and -fsigned-char.
Other thing I tried was once to force and other time to disable idppc macro.
In all the cases effect is the same.
Comment 5 Przemysław Iskra 2008-11-02 18:53:20 EST
I've got the solution.
Thanks Ludwig ! You probably can't imagine how much help you've been.

Citing your comment from Bug 3805: "Just grep for union". So I did, and I found this flower:

static ID_INLINE float _vmf(intptr_t x)
{
        union { 
                intptr_t l;
                float f;
        } t;
        t.l = x;
        return t.f;
}

Which is wrong, because union of two different size variables is very hard to predict. I don't know why it works on x86_64, but there's no chance it's going to work on ppc64. All the interesting data is in lower bytes of 'l', while the float starts at the beginning of the union.

Code using int-float union works well on both x86_64 and ppc64, it looks like this:

static ID_INLINE float _vmf( intptr_t x )
{
        union { 
                int l;
                float f;
        } t;
        t.l = (int) x;
        return t.f;
}

I'll integrate the change into Bug 3805 patch.
Comment 6 Przemysław Iskra 2008-11-03 09:38:07 EST
OK, I have tested full "release" build, with version 4 of patch in bug 3805, and with JIT compiler. It works now.
Comment 7 Ludwig Nussel 2008-11-03 12:04:20 EST
fixed, thanks!