Bug 3805 - Strict aliasing; punn+dereference
Status: RESOLVED FIXED
Alias: None
Product: ioquake3
Classification: Unclassified
Component: Platform
Version: GIT MASTER
Hardware: Other Linux
: P3 normal
Assignee: Zachary J. Slater
QA Contact: ioquake3 bugzilla mailing list
URL:
Depends on:
Blocks:
 
Reported: 2008-10-23 06:27 EDT by Przemysław Iskra
Modified: 2008-11-03 12:04:32 EST
0 users

See Also:


Attachments
fixes for strict-aliasing (7.52 KB, patch)
2008-10-23 06:32 EDT, Przemysław Iskra
fixes for strict-aliasing, v2 (7.60 KB, patch)
2008-10-24 08:09 EDT, Przemysław Iskra
fixes for strict-aliasing, v3 (8.12 KB, patch)
2008-10-24 12:31 EDT, Przemysław Iskra
fixes for strict-aliasing, v3b (8.01 KB, patch)
2008-10-24 12:34 EDT, Przemysław Iskra
fixes for strict-aliasing, v4 (11.87 KB, patch)
2008-11-02 21:20 EST, Przemysław Iskra

Description Przemysław Iskra 2008-10-23 06:27:53 EDT
Code tries to force better optimization with -O3, -funroll-loops and similar, while disabling strict-aliasing, which may, or may not, give some nice speedup.
Comment 1 Przemysław Iskra 2008-10-23 06:32:25 EDT
Created attachment 1899 [details]
fixes for strict-aliasing

Patch fixes all cases of passing float argument as int, and vice-versa (uses union instead of punn+dereference). Also replaces -fno-strict-aliasing with -Wstrict-aliasing in Makefile.
I haven't noticed any problems with strict-aliasing after applying those changes. Tested only on Linux/PowerPC, other platforms may need some more work.
Comment 2 Ludwig Nussel 2008-10-24 03:02:06 EDT
Would you mind cleaning up the mess by intoducing a global typedef for the conversion union? I'm guilty of creating some of those in various places already too :)
Comment 3 Przemysław Iskra 2008-10-24 08:09:17 EDT
Created attachment 1901 [details]
fixes for strict-aliasing, v2

typedef union fi_conv moved from qcommon.h to msg.c
Comment 4 Przemysław Iskra 2008-10-24 12:31:40 EDT
Created attachment 1904 [details]
fixes for strict-aliasing, v3

one more fix, found on x86_64
Comment 5 Przemysław Iskra 2008-10-24 12:34:05 EDT
Created attachment 1905 [details]
fixes for strict-aliasing, v3b

oops, correct one
Comment 6 Ludwig Nussel 2008-11-02 11:00:29 EST
Hmm, you misunderstood me. I meant having one definition that union in a header like q_shared.h and getting rid of those local versions that have various different names. Just grep for union
Comment 7 Przemysław Iskra 2008-11-02 14:36:44 EST
OK, I'll do so.
Comment 8 Przemysław Iskra 2008-11-02 21:20:01 EST
Created attachment 1915 [details]
fixes for strict-aliasing, v4

union type is now called "floatint_t" and it is defined globally in code/qcommon/q_shared.h; inside !Q3_VM block, because it may be problematic for lcc.

Patch also resolves Bug 3838.
Comment 9 Ludwig Nussel 2008-11-03 12:04:32 EST
applied, thanks!