RESOLVED WONTFIX 143214
[EFL] Fix 18 crashing compositing tests after r182101
https://bugs.webkit.org/show_bug.cgi?id=143214
Summary [EFL] Fix 18 crashing compositing tests after r182101
Csaba Osztrogonác
Reported 2015-03-30 03:00:58 PDT
Attachments
Patch (1.36 KB, patch)
2015-03-31 07:34 PDT, Csaba Osztrogonác
no flags
Csaba Osztrogonác
Comment 1 2015-03-31 07:28:40 PDT
I got it, fix is coming.
Csaba Osztrogonác
Comment 2 2015-03-31 07:33:39 PDT
nullptr check of m_private in GraphicsContext3D::makeContextCurrent() (Source/WebCore/platform/graphics/efl/GraphicsContext3DEfl.cpp) is missing. GraphicsContext3DCairo.cpp and GraphicsContext3DWin.cpp implementations already contain this nullptr check, EFL implementation should do the same. I checked it fixes these crashes. So r182101 is innocent, it only reveales this bug, sorry for blaming this change. :)
Csaba Osztrogonác
Comment 3 2015-03-31 07:34:59 PDT
Gwang Yoon Hwang
Comment 4 2015-03-31 07:52:27 PDT
(In reply to comment #2) > nullptr check of m_private in GraphicsContext3D::makeContextCurrent() > (Source/WebCore/platform/graphics/efl/GraphicsContext3DEfl.cpp) is missing. > > GraphicsContext3DCairo.cpp and GraphicsContext3DWin.cpp implementations > already contain this nullptr check, EFL implementation should do the same. > > I checked it fixes these crashes. > > So r182101 is innocent, it only reveales this bug, > sorry for blaming this change. :) Thanks, Ossy. This fix looks good for me. For GraphicsContext3DCairo, the nullptr check looks redundant, because GraphicsContext3DCairo creates GraphicsContext3DPrivate unconditionally. Unfortunately, I'm not a reviewer. We need another reviewer for stamp. :)
WebKit Commit Bot
Comment 5 2015-03-31 10:33:34 PDT
Comment on attachment 249823 [details] Patch Clearing flags on attachment: 249823 Committed r182187: <http://trac.webkit.org/changeset/182187>
WebKit Commit Bot
Comment 6 2015-03-31 10:33:38 PDT
All reviewed patches have been landed. Closing bug.
Csaba Osztrogonác
Comment 7 2015-03-31 23:44:25 PDT
(In reply to comment #5) > Comment on attachment 249823 [details] > Patch > > Clearing flags on attachment: 249823 > > Committed r182187: <http://trac.webkit.org/changeset/182187> I made something wrong, it seems it didn't fix anything. :( I was sure it fixed the crashes locally, I'll check it soon.
Csaba Osztrogonác
Comment 8 2015-04-01 02:25:16 PDT
Unfortunately it isn't easy to debug it due to this bug: https://bugs.webkit.org/show_bug.cgi?id=123397#c5
Csaba Osztrogonác
Comment 9 2015-04-01 05:38:36 PDT
I managed to get a better backtrace for this crash. Unfortunately the original one was a little confusing because of the optimizations. The crash happens because m_context3D is nullptr here: https://trac.webkit.org/browser/trunk/Source/WebCore/platform/graphics/texmap/BitmapTextureGL.cpp?rev=182101#L116 I'm not familiar with this part of the source. Could you give me a hint where should I continue debugging, and how can we fix it properly?
Csaba Osztrogonác
Comment 10 2015-04-01 05:47:29 PDT
Gwang Yoon Hwang
Comment 11 2015-04-01 06:29:29 PDT
(In reply to comment #10) > I think the problem is instantiating the BitmapTexturePool with the default > constructor here: > https://trac.webkit.org/browser/trunk/Source/WebCore/platform/graphics/ > texmap/TextureMapperImageBuffer.cpp?rev=182101#L32 > TextureMapperImageBuffer is not used in TEXTURE_MAPPER_GL. How about to check passed GraphicsContext3D to BitmapTextureGL is valid or not? Every GraphicsContext3D should be valid when we are creating BitmapTextureGL. > The default constructor doesn't initialize m_context3D: > https://trac.webkit.org/browser/trunk/Source/WebCore/platform/graphics/ > texmap/BitmapTexturePool.cpp?rev=182101#L42 The default constructor of BitmapTexturePool should not be called in TEXTURE_MAPPER_GL It would be good to disable the default constructor using !USE(TEXTURE_MAPPER_GL)
Csaba Osztrogonác
Comment 12 2015-04-01 07:24:02 PDT
After more debugging, the problem is that the default constructor of BitmapTexturePool::BitmapTexturePool() is called which doesn't initialize m_context3D.
Csaba Osztrogonác
Comment 13 2015-04-01 07:38:18 PDT
(In reply to comment #11) > (In reply to comment #10) > > I think the problem is instantiating the BitmapTexturePool with the default > > constructor here: > > https://trac.webkit.org/browser/trunk/Source/WebCore/platform/graphics/ > > texmap/TextureMapperImageBuffer.cpp?rev=182101#L32 > > > > TextureMapperImageBuffer is not used in TEXTURE_MAPPER_GL. How about to check > passed GraphicsContext3D to BitmapTextureGL is valid or not? Every > GraphicsContext3D > should be valid when we are creating BitmapTextureGL. Let's see the crash again. m_context3D is nullptr in BitmapTextureGL::BitmapTextureGL(PassRefPtr<GraphicsContext3D> context3D), because it is called with nullptr from PassRefPtr<BitmapTexture> BitmapTexturePool::createTexture(). And it is nullptr here, because it wasn't initialezed by the default constructor - BitmapTexturePool::BitmapTexturePool() .
Csaba Osztrogonác
Comment 14 2015-04-01 07:44:50 PDT
(In reply to comment #11) > (In reply to comment #10) > > I think the problem is instantiating the BitmapTexturePool with the default > > constructor here: > > https://trac.webkit.org/browser/trunk/Source/WebCore/platform/graphics/ > > texmap/TextureMapperImageBuffer.cpp?rev=182101#L32 > > > > TextureMapperImageBuffer is not used in TEXTURE_MAPPER_GL. How about to check > passed GraphicsContext3D to BitmapTextureGL is valid or not? Every > GraphicsContext3D > should be valid when we are creating BitmapTextureGL. I don't know anything about this part of the code. I don't understand what you mean "TextureMapperImageBuffer is not used in TEXTURE_MAPPER_GL". ifdefink TextureMapperImageBuffer.cpp and h out caused build failure for me, because it is used in TextureMapper.cpp > > The default constructor doesn't initialize m_context3D: > > https://trac.webkit.org/browser/trunk/Source/WebCore/platform/graphics/ > > texmap/BitmapTexturePool.cpp?rev=182101#L42 > > The default constructor of BitmapTexturePool should not be called in > TEXTURE_MAPPER_GL > It would be good to disable the default constructor using > !USE(TEXTURE_MAPPER_GL) It is called from TextureMapperImageBuffer.cpp .
Csaba Osztrogonác
Comment 15 2015-04-03 03:32:08 PDT
any additional hint where should I continue debugging?
Csaba Osztrogonác
Comment 16 2015-04-03 03:56:59 PDT
Just to note, I marked these tests crash in http://trac.webkit.org/changeset/182312 . We should remove these ecpectations once the bug is fixed.
Csaba Osztrogonác
Comment 17 2015-04-03 04:25:41 PDT
(In reply to comment #16) > Just to note, I marked these tests crash in > http://trac.webkit.org/changeset/182312 . We should remove these > ecpectations once the bug is fixed. I had to comment out the original expectations, because the new ones aren't overriden them - http://trac.webkit.org/changeset/182313.
Csaba Osztrogonác
Comment 18 2015-04-07 04:16:21 PDT
(In reply to comment #15) > any additional hint where should I continue debugging? ping?
Csaba Osztrogonác
Comment 19 2015-04-09 01:20:27 PDT
(In reply to comment #18) > (In reply to comment #15) > > any additional hint where should I continue debugging? > ping? ping2?
Gwang Yoon Hwang
Comment 20 2015-04-09 01:34:48 PDT
(In reply to comment #14) > (In reply to comment #11) > > (In reply to comment #10) > > > I think the problem is instantiating the BitmapTexturePool with the default > > > constructor here: > > > https://trac.webkit.org/browser/trunk/Source/WebCore/platform/graphics/ > > > texmap/TextureMapperImageBuffer.cpp?rev=182101#L32 > > > > > > > TextureMapperImageBuffer is not used in TEXTURE_MAPPER_GL. How about to check > > passed GraphicsContext3D to BitmapTextureGL is valid or not? Every > > GraphicsContext3D > > should be valid when we are creating BitmapTextureGL. > > I don't know anything about this part of the code. I don't understand what > you mean "TextureMapperImageBuffer is not used in TEXTURE_MAPPER_GL". > ifdefink TextureMapperImageBuffer.cpp and h out caused build failure > for me, because it is used in TextureMapper.cpp > After taking a look at EFL ports, it uses TextureMapperImageBuffer only if there is no OpenGL surface available. Basically, if we use TEXTURE_MAPPER_GL, it tries to use TextureMapperGL first, and then if it was not successful (this is what I'm facing, efl refuses llvmpipe as a GPU backend), it uses TextureMapper + TextureMapperImageBuffer. But the TextureMapperImageBuffer is not maintained for a while, and I'm planning to remove this. If EFL ports uses OpenGL backend, it uses TextureMapperGL instead of TextureMapperImageBuffer. Because it is done at runtime, you faced build failure when you remove TextureMapperImageBuffer. If you to remove TextureMapperImageBuffer and some related codes, (it is enough to remove line 43,44 in TextureMapper.cpp) and it should be run properly. > > > The default constructor doesn't initialize m_context3D: > > > https://trac.webkit.org/browser/trunk/Source/WebCore/platform/graphics/ > > > texmap/BitmapTexturePool.cpp?rev=182101#L42 > > > > The default constructor of BitmapTexturePool should not be called in > > TEXTURE_MAPPER_GL > > It would be good to disable the default constructor using > > !USE(TEXTURE_MAPPER_GL) > > It is called from TextureMapperImageBuffer.cpp .
Csaba Osztrogonác
Comment 21 2015-04-09 02:59:31 PDT
Thanks for the info, I filed a new bug report to remove TextureMapperImageBuffer - bug143561. It fixes the crashes and many other compositing failures on EFL.
Gwang Yoon Hwang
Comment 22 2015-04-09 22:28:00 PDT
(In reply to comment #21) > Thanks for the info, I filed a new bug report to remove > TextureMapperImageBuffer > - bug143561. It fixes the crashes and many other compositing failures on EFL. It's quite interesting result. It means WebKitEFL uses TextureMapperImageBuffer and TextureMapperGL at same time, which should not be happened.
Csaba Osztrogonác
Comment 23 2015-04-10 05:59:17 PDT
(In reply to comment #22) > (In reply to comment #21) > > Thanks for the info, I filed a new bug report to remove > > TextureMapperImageBuffer > > - bug143561. It fixes the crashes and many other compositing failures on EFL. > > It's quite interesting result. It means WebKitEFL uses > TextureMapperImageBuffer and TextureMapperGL at same time, which should not > be happened. After digging the bug a little bit deeper. The problem is that EFL still refuses using GL backend. It seemed that removing the software based TextureMapperImageBuffer solved the compositing tests crashes ... but we got 72 another crashes instead. :-/
Michael Catanzaro
Comment 24 2017-03-11 10:48:51 PST
Closing this bug because the EFL port has been removed from trunk. If you feel this bug applies to a different upstream WebKit port and was closed in error, please either update the title and reopen the bug, or leave a comment to request this.
Note You need to log in before you can comment on or make changes to this bug.