This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug tree-optimization/64590] Firefox 34 triggers GCC AVX bug (segfault: XPCCallContext::GetJSContext (this=0xfffc7fffe3e23980))


https://gcc.gnu.org/bugzilla/show_bug.cgi?id=64590

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jakub at gcc dot gnu.org

--- Comment #10 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
That most likely means a failed assertion implemented on the mozilla side as
store to NULL pointer followed to __builtin_trap () just in case.
Anyway, that doesn't look like a reason for the -march=nehalem vs.
-march=sandybridge differences.  If that really turns a working binary into
non-working, perhaps try to bisect between -march=nehalem -O3 and
-march=sandybridge -O3 (forget about -floop-interchange -floop-strip-mine
-floop-block everywhere) built *.o files, until you find the problematic one. 
Then using __attribute__((target ("march=sandybridge"))) in -march=nehalem
compiled object (or vice versa) you could try to bisect between different
routines to find out where the problem is.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]