It seems that a bare Firefox compiled our way without any Tor Browser patches is crashing as well. Thus, I wonder whether we hit a GCC bug or something that is only affecting some 64bit system. Mysterious.
To upload designs, you'll need to enable LFS and have an admin enable hashed storage. More information
Child items 0
Show closed items
No child items are currently assigned. Use child items to break down this issue into smaller parts.
Linked items 0
Link issues together to show that they're related.
Learn more.
Trac: Description: On our blog one user noted that https://browserleaks.com/webgl is crashing their tab reliably using 8.5a6 in the 64bit flavor for Windows. This does not happen with the 32bit variant. And neither does this happen with vanilla Firfox 60.4.0esr.
It seems that a bare Firefox compiled our way without any Tor Browser patches is crashing as well. Thus, I wonder whether we hit a GCC bug or something that is only affecting some 64bit system. Mysterious.
It seems that a bare Firefox compiled our way without any Tor Browser patches is crashing as well. Thus, I wonder whether we hit a GCC bug or something that is only affecting some 64bit system. Mysterious.
It will crash during first start (which is #28875 (moved)) but should work afterwards. It would be interesting to see if we hit any assertions before crashing.
not sure how to test it, but here is what I've got:
it crashed during first start as expected;
it got stuck at connect to tor phase during second and third start due to #28405 (moved) and #28614 (moved);
it connected and "crashed" from webgl as expected during fourth start; nothing in debug logs;
then I set e10s off and got
WARN: initializeD3DDevice(799): Failed creating Debug D3D11 device - falling back to release runtime.Initializing context 000002b11d306db0 surface 000002b11d364500 on display 000002b11fa9e5b0Initializing context 000002b11530efc0 surface 000002b11d362300 on display 000002b11fa9e5b0Initializing context 000002b11c731c20 surface 000002b11d358c00 on display 000002b11fa9e5b0JavaScript error: , line 0: uncaught exception: TagError: adsbygoogle.push() error: All ins elements in the DOM with class=adsbygoogle already have ads in them.JavaScript error: , line 0: uncaught exception: TagError: adsbygoogle.push() error: All ins elements in the DOM with class=adsbygoogle already have ads in them.Initializing context 000002b1140d85f0 surface 000002b115358920 on display 000002b11fa9e5b0ERR: ensureInitialized(141): D3D compiler module not found.[gl:000002b127ca1ee0] void mozilla::gl::GLContext::fLinkProgram(GLuint): Generated unexpected GL_OUT_OF_MEMORY error. (0x0505)Hit MOZ_CRASH(Unexpected error with MOZ_GL_DEBUG_ABORT_ON_ERROR. (Run with MOZ_GL_DEBUG_ABORT_ON_ERROR=0 to disable)) at /var/tmp/build/firefox-8cac0295141b/gfx/gl/GLContext.cpp:3030
with usual "EXCEPTION_ACCESS_VIOLATION_READ" in xul.dll
ERR: ensureInitialized(141): D3D compiler module not found.
I guess that's the reason for the trouble you are seeing. The relevant code around it is:
#if !defined(ANGLE_ENABLE_WINDOWS_STORE)#if defined(ANGLE_PRELOADED_D3DCOMPILER_MODULE_NAMES) // Find a D3DCompiler module that had already been loaded based on a predefined list of versions. static const char *d3dCompilerNames[] = ANGLE_PRELOADED_D3DCOMPILER_MODULE_NAMES; for (size_t i = 0; i < ArraySize(d3dCompilerNames); ++i) { if (GetModuleHandleExA(0, d3dCompilerNames[i], &mD3DCompilerModule)) { break; } }#endif // ANGLE_PRELOADED_D3DCOMPILER_MODULE_NAMES if (!mD3DCompilerModule) { // Load the version of the D3DCompiler DLL associated with the Direct3D version ANGLE was built with. mD3DCompilerModule = LoadLibrary(D3DCOMPILER_DLL); } if (!mD3DCompilerModule) { ERR() << "D3D compiler module not found."; return gl::OutOfMemory() << "D3D compiler module not found."; } mD3DCompileFunc = reinterpret_cast<pD3DCompile>(GetProcAddress(mD3DCompilerModule, "D3DCompile")); ASSERT(mD3DCompileFunc); mD3DDisassembleFunc = reinterpret_cast<pD3DDisassemble>(GetProcAddress(mD3DCompilerModule, "D3DDisassemble")); ASSERT(mD3DDisassembleFunc);#else // D3D Shader compiler is linked already into this module, so the export // can be directly assigned. mD3DCompilerModule = nullptr; mD3DCompileFunc = reinterpret_cast<pD3DCompile>(D3DCompile); mD3DDisassembleFunc = reinterpret_cast<pD3DDisassemble>(D3DDisassemble);#endif
Since all this seems to be related to DirectX; I suppose getting some info about that might be helpful.
Start -> Run -> dxdiag will get diagnostic information. At a minimum I'd say go to the Display page and copy that info (either with a screenshot, or save the info to a text file and copy it out.)
Thanks cypherpunk; that's probably it. I'm sending in some trials on TaskCluster to see if that solves my 8-month old error. I pinged Jacek about whether MinGW should update or we should override.
D3DCOMPILER_DLL define is fixed in upstream mingw-w64 now. I recall that some declarations also vary between d3dcompiler versions, so if similar problems persist, it might be good place to look.
D3DCOMPILER_DLL define is fixed in upstream mingw-w64 now. I recall that some declarations also vary between d3dcompiler versions, so if similar problems persist, it might be good place to look.